@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/

/* フリスケランディングページ用スタイル */

/* リセット */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.frisuke-landing {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  /* PC: 通常スクロール */
  overflow-y: auto;
  height: auto;
}

/* PC: 各セクションは自動高さ */
.frisuke-landing > section {
  min-height: auto;
  height: auto;
  display: flex;
  align-items: center;
  overflow: visible;
  position: relative;
  box-sizing: border-box;
  padding: 80px 0;
}

/* スマホのみ: スワイプ型スクロール */
@media screen and (max-width: 834px) {
  .frisuke-landing {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
  }

  .frisuke-landing > section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    padding: 0;
  }
}

/* セクション内のコンテナをセンタリング */
.frisuke-landing > section > .frisuke-container {
  width: 100%;
  max-height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
}

/* スクロールヒント - PCでは非表示 */
.frisuke-scroll-hint {
  display: none;
}

/* スマホのみ: ランディングページのナビ非表示 */
@media screen and (max-width: 834px) {
  .frisuke-landing .frisuke-nav {
    display: none;
  }

  /* スクロールヒント - 中央下に配置 */
  .frisuke-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
    color: rgba(180, 50, 50, 0.7);
    font-size: 0.75rem;
    cursor: pointer;
    z-index: 10;
    text-align: center;
    opacity: 0;
    pointer-events: none;
  }

  /* アニメーション用クラス */
  .frisuke-scroll-hint.visible {
    animation: fadeInOut 3s ease-out forwards;
    pointer-events: auto;
  }

  @keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 0.7; }
    70% { opacity: 0.7; }
    100% { opacity: 0; }
  }

  .frisuke-scroll-hint-text {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
  }

  /* 全セクション共通で赤色 */
  .frisuke-hero .frisuke-scroll-hint,
  .frisuke-features-school .frisuke-scroll-hint,
  .frisuke-flow .frisuke-scroll-hint,
  .frisuke-contact .frisuke-scroll-hint {
    color: rgba(180, 50, 50, 0.7);
  }

  /* グレー背景セクションのヒント */
  .frisuke-problems .frisuke-scroll-hint,
  .frisuke-solution .frisuke-scroll-hint,
  .frisuke-features-parent .frisuke-scroll-hint,
  .frisuke-benefits .frisuke-scroll-hint,
  .frisuke-faq .frisuke-scroll-hint {
    color: rgba(0, 0, 0, 0.35);
  }

  .frisuke-scroll-hint-icon {
    display: block;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1;
  }
}

/* 右側配置用のバウンスアニメーション */
@keyframes bounceRight {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(-50%);
  }
  40% {
    transform: translateY(calc(-50% + 10px));
  }
  60% {
    transform: translateY(calc(-50% + 5px));
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* コンテナ */
.frisuke-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* セクション共通 */
.frisuke-section-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

/* ヒーローセクション */
.frisuke-hero {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.frisuke-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.frisuke-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.frisuke-hero-badge span {
  font-size: 0.95rem;
  font-weight: bold;
  color: white;
}

.frisuke-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.frisuke-highlight {
  color: #ff9800;
  position: relative;
  display: inline-block;
}

.frisuke-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.frisuke-hero-subtitle strong {
  color: #ffeb3b;
  font-weight: bold;
}

.frisuke-hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

.frisuke-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ヒーロー - 2カラムレイアウト */
.frisuke-hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.frisuke-hero-wrapper .frisuke-hero-content {
  flex: 1;
  text-align: left;
}

.frisuke-hero-image {
  flex-shrink: 0;
}

/* ヒーロー - スマホモックアップ */
.frisuke-hero-phone {
  width: 280px;
  background: #1a1a1a;
  border-radius: 35px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.frisuke-hero-phone-screen {
  background: #f5f5f5;
  border-radius: 25px;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
}

.frisuke-hero-line-header {
  background: #06c755;
  color: white;
  padding: 12px 15px;
  font-weight: bold;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.frisuke-hero-line-icon {
  font-size: 0.8rem;
}

.frisuke-hero-line-chat {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.frisuke-hero-line-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.frisuke-hero-line-msg p {
  margin: 0;
  color: #333;
}

.frisuke-hero-line-msg-bot {
  background: white;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.frisuke-hero-line-msg-user {
  background: #06c755;
  align-self: flex-end;
}

.frisuke-hero-line-msg-user p {
  color: white;
}

.frisuke-hero-line-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-start;
}

.frisuke-hero-line-buttons button {
  background: white;
  border: 1px solid #06c755;
  color: #06c755;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}

.frisuke-hero-line-buttons button:hover {
  background: #06c755;
  color: white;
}

/* ヒーロー - LIFF風デザイン */
.frisuke-hero-liff {
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}

.frisuke-liff-header {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  padding: 20px 15px 15px;
  border-radius: 0 0 20px 20px;
}

.frisuke-liff-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.frisuke-liff-greeting {
  font-size: 0.85rem;
  opacity: 0.95;
  margin-bottom: 12px;
}

.frisuke-liff-student {
  background: rgba(255,255,255,0.15);
  border-radius: 25px;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.frisuke-liff-student button {
  background: white;
  color: #06c755;
  border: none;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: bold;
  cursor: pointer;
}

.frisuke-liff-menu {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.frisuke-liff-menu-item {
  background: white;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #06c755;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.frisuke-liff-menu-text {
  flex: 1;
}

.frisuke-liff-menu-title {
  font-size: 0.95rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 3px;
}

.frisuke-liff-menu-desc {
  font-size: 0.7rem;
  color: #888;
}

.frisuke-liff-menu-arrow {
  color: #06c755;
  font-size: 1.5rem;
  font-weight: bold;
}

/* ボタンスタイル */
.frisuke-btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.frisuke-btn-primary {
  background: white;
  color: #06c755;
}

.frisuke-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.frisuke-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.frisuke-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.frisuke-btn-line {
  background: #06c755;
  color: white;
}

.frisuke-btn-line:hover {
  background: #05b04c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
}

/* 開発ストーリーセクション */
.frisuke-story {
  padding: 80px 0;
  background: #f8f9fa;
}

.frisuke-story-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.frisuke-story-image {
  text-align: center;
}

.frisuke-story-icon {
  font-size: 8rem;
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(6, 199, 85, 0.3);
}

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

.frisuke-story-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.frisuke-story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.2rem;
}

.frisuke-story-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #06c755;
}

.frisuke-story-signature p {
  margin-bottom: 0.3rem;
}

.frisuke-story-role {
  color: #06c755;
  font-size: 0.95rem;
  font-weight: bold;
}

/* 課題セクション */
.frisuke-problems {
  padding: 80px 0;
  background: white;
}

.frisuke-problems-main {
  margin-top: 3rem;
}

.frisuke-problem-highlight {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border: 2px solid #ffcccc;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.frisuke-problem-highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.frisuke-problem-highlight h3 {
  font-size: 1.5rem;
  color: #c44;
  margin-bottom: 1rem;
  font-weight: bold;
}

.frisuke-problem-highlight p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.frisuke-problem-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.frisuke-problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.frisuke-problem-card {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.frisuke-problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.frisuke-problem-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.frisuke-problem-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #444;
  line-height: 1.6;
}

.frisuke-problem-card p {
  color: #666;
  line-height: 1.4;
  font-size: 0.85rem;
  margin: 0;
}

/* 課題セクション - 「正直に言うと」ボックス */
.frisuke-problem-reality {
  background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
  border: 2px solid #e74c3c;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.frisuke-problem-reality-title {
  font-size: 0.85rem;
  color: #e74c3c;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.frisuke-problem-reality-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.frisuke-problem-reality-text strong {
  color: #c0392b;
  font-size: 1.1rem;
}

.frisuke-problem-emphasis {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #c0392b;
  font-size: 1.15rem;
  background: linear-gradient(transparent 60%, #ffe0e0 60%);
}

/* 課題カードの補足テキスト */
.frisuke-problem-card-note {
  font-size: 0.75rem !important;
  color: #888 !important;
  margin-top: 0.5rem !important;
  line-height: 1.5 !important;
}

/* 理由02 - お客様の本音ボックス */
.frisuke-customer-voice {
  background: #f8f8f8;
  border-left: 4px solid #888;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.frisuke-customer-voice-title {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.frisuke-customer-voice-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

.frisuke-reason-solution {
  font-size: 1.1rem;
  text-align: center;
  color: #333;
  line-height: 1.8;
  margin-top: 1rem;
}

.frisuke-reason-solution strong {
  color: #06c755;
  font-weight: bold;
}

/* ソリューションセクション */
.frisuke-solution {
  padding: 80px 0;
  background: #f8f9fa;
}

.frisuke-solution-lead {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.frisuke-solution-lead strong {
  color: #06c755;
  font-weight: bold;
}

.frisuke-solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.frisuke-phone-mockup {
  max-width: 300px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.frisuke-phone-screen {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.frisuke-line-ui {
  padding: 1rem;
}

.frisuke-line-header {
  background: #06c755;
  color: white;
  padding: 1rem;
  font-weight: bold;
  margin: -1rem -1rem 1rem -1rem;
}

.frisuke-line-message {
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.frisuke-line-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.frisuke-line-btn:hover {
  background: #f8f8f8;
}

.frisuke-solution-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.frisuke-solution-list {
  list-style: none;
  padding: 0;
}

.frisuke-solution-list li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-left: 0;
  color: #333;
}

/* 機能セクション */
.frisuke-features {
  padding: 80px 0;
  background: white;
}

.frisuke-feature-block {
  margin-bottom: 4rem;
}

.frisuke-feature-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #06c755;
}

.frisuke-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.frisuke-feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.frisuke-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.frisuke-feature-number {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.frisuke-feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.frisuke-feature-card p {
  color: #666;
  line-height: 1.6;
}

/* 選ばれる理由セクション（シンプルカード） */
.frisuke-differentiators {
  padding: 80px 0;
  background: white;
}

.frisuke-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.frisuke-diff-card-simple {
  background: white;
  border: 2px solid #e8f5e9;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.frisuke-diff-card-simple:hover {
  border-color: #06c755;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.15);
}

.frisuke-diff-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.frisuke-diff-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  margin-top: 0.5rem;
}

.frisuke-diff-title {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  font-weight: bold;
}

.frisuke-diff-summary {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* 理由詳細セクション共通 */
.frisuke-reason {
  padding: 80px 0;
}

.frisuke-reason-pricing {
  background: #f8f9fa;
}

.frisuke-reason-line {
  background: white;
}

.frisuke-reason-payment {
  background: #f8f9fa;
}

.frisuke-reason-schedule {
  background: white;
}

.frisuke-reason-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.frisuke-reason-number {
  display: inline-block;
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.frisuke-reason-title {
  font-size: 2rem;
  color: #1a1a1a;
  margin: 0;
}

.frisuke-reason-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.frisuke-reason-main {
  text-align: center;
}

.frisuke-reason-desc {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.frisuke-reason-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.frisuke-reason-points li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.5;
}

.frisuke-reason-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #06c755;
  font-weight: bold;
  font-size: 1.2rem;
}

/* 中央寄せ（メイン表示がない場合） */
.frisuke-reason-points-center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.frisuke-reason-points-center ul {
  text-align: left;
}

/* 手数料の小さな注記 */
.frisuke-fee-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}

/* 理由1: 料金体系 */
.frisuke-price-display {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.frisuke-price-box {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
}

.frisuke-price-amount {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1;
}

.frisuke-price-amount small {
  font-size: 1.5rem;
}

.frisuke-price-unit {
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.frisuke-price-cap-box {
  background: #fff3e0;
  color: #e65100;
  padding: 1rem;
  border-radius: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.frisuke-price-cap-label {
  font-size: 0.9rem;
}

.frisuke-price-cap-amount {
  font-size: 1.8rem;
}

.frisuke-price-cap-amount small {
  font-size: 1rem;
}

/* 初期費用ボックス */
.frisuke-price-initial {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.frisuke-price-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

/* 理由2: LINE完結 */
.frisuke-line-display {
  background: #06c755;
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.frisuke-line-logo-big {
  background: white;
  color: #06c755;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: bold;
}

/* 理由3: 決済機能 */
.frisuke-fee-display {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
}

.frisuke-fee-label {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.frisuke-fee-amount {
  font-size: 3.5rem;
  font-weight: bold;
}

.frisuke-fee-amount small {
  font-size: 1.5rem;
}

/* 理由4: スケジュール管理 */
.frisuke-schedule-display {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.frisuke-schedule-item {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.frisuke-schedule-label {
  font-size: 1rem;
  font-weight: 500;
}

.frisuke-schedule-value {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.frisuke-schedule-value small {
  font-size: 1rem;
  font-weight: normal;
}

/* タブレット用 選ばれる理由セクション */
@media screen and (max-width: 1023px) {
  .frisuke-diff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .frisuke-diff-card-simple {
    padding: 1.5rem 1rem;
  }

  .frisuke-diff-title {
    font-size: 1.1rem;
  }

  .frisuke-reason-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .frisuke-reason-title {
    font-size: 1.6rem;
  }

  .frisuke-price-amount {
    font-size: 3rem;
  }

  .frisuke-fee-amount {
    font-size: 3rem;
  }
}

/* スマホ用 選ばれる理由セクション */
@media screen and (max-width: 834px) {
  .frisuke-differentiators {
    padding: 60px 0;
  }

  .frisuke-diff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .frisuke-diff-card-simple {
    padding: 1.5rem 1rem;
  }

  .frisuke-diff-icon {
    font-size: 2rem;
  }

  .frisuke-diff-title {
    font-size: 1rem;
  }

  .frisuke-diff-summary {
    font-size: 0.8rem;
  }

  .frisuke-reason {
    padding: 60px 0;
  }

  .frisuke-reason-title {
    font-size: 1.4rem;
  }

  .frisuke-reason-points li {
    font-size: 0.95rem;
  }

  .frisuke-price-amount {
    font-size: 2.5rem;
  }

  .frisuke-fee-amount {
    font-size: 2.5rem;
  }

  .frisuke-schedule-value {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .frisuke-diff-card-simple {
    padding: 1rem 0.6rem;
  }

  .frisuke-diff-icon {
    font-size: 1.8rem;
  }

  .frisuke-diff-title {
    font-size: 0.9rem;
  }

  .frisuke-diff-summary {
    font-size: 0.75rem;
  }

  .frisuke-diff-number {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    top: -10px;
  }

  .frisuke-reason {
    padding: 50px 0;
  }

  .frisuke-reason-title {
    font-size: 1.2rem;
  }

  .frisuke-reason-number {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }

  .frisuke-price-amount {
    font-size: 2rem;
  }

  .frisuke-price-cap-amount {
    font-size: 1.5rem;
  }

  .frisuke-fee-amount {
    font-size: 2rem;
  }

  .frisuke-schedule-value {
    font-size: 1.5rem;
  }

  .frisuke-reason-points li {
    font-size: 0.9rem;
    padding: 0.6rem 0 0.6rem 1.8rem;
  }
}

/* LINEマーケティングセクション */
.frisuke-marketing {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.frisuke-marketing-lead {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.frisuke-marketing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.frisuke-marketing-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frisuke-marketing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.2);
}

.frisuke-marketing-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.frisuke-marketing-card h3 {
  font-size: 1.1rem;
  color: #06c755;
  margin-bottom: 0.8rem;
}

.frisuke-marketing-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.frisuke-marketing-card strong {
  color: #06c755;
}

.frisuke-marketing-note {
  background: white;
  border-left: 4px solid #06c755;
  padding: 1.2rem 1.5rem;
  border-radius: 0 8px 8px 0;
  max-width: 600px;
  margin: 0 auto;
}

.frisuke-marketing-note p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.sp-only {
  display: none;
}

/* レスポンシブ - LINEマーケティング */
@media screen and (max-width: 1023px) {
  .frisuke-marketing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 834px) {
  .sp-only {
    display: inline;
  }

  .frisuke-marketing {
    padding: 60px 0;
  }

  .frisuke-marketing-lead {
    font-size: 1rem;
  }

  .frisuke-marketing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .frisuke-marketing-card {
    padding: 1.2rem 1rem;
  }

  .frisuke-marketing-icon {
    font-size: 2rem;
  }

  .frisuke-marketing-card h3 {
    font-size: 1rem;
  }

  .frisuke-marketing-card p {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 480px) {
  .frisuke-marketing-card {
    padding: 1rem 0.8rem;
  }

  .frisuke-marketing-icon {
    font-size: 1.8rem;
  }

  .frisuke-marketing-card h3 {
    font-size: 0.9rem;
  }

  .frisuke-marketing-card p {
    font-size: 0.8rem;
  }

  .frisuke-marketing-note {
    padding: 1rem;
  }

  .frisuke-marketing-note p {
    font-size: 0.85rem;
  }
}

/* 教室のお客様向け機能セクション */
.frisuke-features-customer {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
}

.frisuke-customer-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.frisuke-customer-main {
  margin-bottom: 2.5rem;
}

.frisuke-customer-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.frisuke-line-badge {
  background: #06c755;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

.frisuke-customer-headline-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1a1a1a;
}

.frisuke-customer-lead {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

.frisuke-customer-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.frisuke-customer-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  color: #333;
}

.frisuke-customer-check {
  color: #06c755;
  font-weight: bold;
  font-size: 1.2rem;
}

.frisuke-customer-note {
  font-size: 1.1rem;
  font-weight: bold;
  color: #06c755;
}

@media screen and (max-width: 834px) {
  .frisuke-customer-headline {
    flex-direction: column;
    gap: 0.8rem;
  }

  .frisuke-customer-headline-text {
    font-size: 1.3rem;
  }

  .frisuke-customer-lead {
    font-size: 1rem;
  }

  .frisuke-customer-feature {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .frisuke-line-badge {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }

  .frisuke-customer-headline-text {
    font-size: 1.1rem;
  }

  .frisuke-customer-lead {
    font-size: 0.95rem;
  }

  .frisuke-customer-feature {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .frisuke-customer-note {
    font-size: 1rem;
  }
}

/* 教室向け機能セクション（6カード） */
.frisuke-school-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.frisuke-school-feature-card {
  background: white;
  border: 2px solid #e8f5e9;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.frisuke-school-feature-card:hover {
  border-color: #06c755;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.15);
}

.frisuke-school-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #06c755;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frisuke-school-feature-icon span {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
}

/* 振替アイコン（矢印2つ） */
.icon-transfer::before,
.icon-transfer::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
}
.icon-transfer::before {
  top: 2px;
  left: 2px;
  transform: rotate(45deg);
}
.icon-transfer::after {
  bottom: 2px;
  right: 2px;
  transform: rotate(-135deg);
}

/* カレンダーアイコン */
.icon-calendar::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 14px;
  border: 2px solid white;
  border-radius: 2px;
}
.icon-calendar::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 16px;
  height: 2px;
  background: white;
}

/* 報告書アイコン（ドキュメント） */
.icon-report::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 14px;
  height: 18px;
  border: 2px solid white;
  border-radius: 2px;
}
.icon-report::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 2px;
  background: white;
  box-shadow: 0 4px 0 white;
}

/* マーケティングアイコン（メガホン） */
.icon-marketing::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 4px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 14px solid white;
}
.icon-marketing::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px 0 0 2px;
}

/* 決済アイコン（カード） */
.icon-payment::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 2px;
  width: 20px;
  height: 14px;
  border: 2px solid white;
  border-radius: 3px;
}
.icon-payment::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 2px;
  width: 20px;
  height: 3px;
  background: white;
}

/* 入退室アイコン（チェックイン） */
.icon-attendance::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 12px;
  height: 16px;
  border: 2px solid white;
  border-radius: 2px;
}
.icon-attendance::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(-45deg);
}

.frisuke-school-feature-card h4 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  font-weight: bold;
}

.frisuke-school-feature-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  .frisuke-school-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media screen and (max-width: 834px) {
  .frisuke-school-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .frisuke-school-feature-card {
    padding: 1.5rem 1rem;
  }

  .frisuke-school-feature-icon {
    width: 48px;
    height: 48px;
  }

  .frisuke-school-feature-icon span {
    width: 20px;
    height: 20px;
  }

  .frisuke-school-feature-card h4 {
    font-size: 1rem;
  }

  .frisuke-school-feature-card p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .frisuke-school-feature-card {
    padding: 1rem 0.8rem;
  }

  .frisuke-school-feature-icon {
    width: 44px;
    height: 44px;
  }

  .frisuke-school-feature-icon span {
    width: 18px;
    height: 18px;
  }

  .frisuke-school-feature-card h4 {
    font-size: 0.9rem;
  }

  .frisuke-school-feature-card p {
    font-size: 0.75rem;
  }
}

/* 開発者メッセージセクション */
.frisuke-developer-message {
  padding: 80px 0;
  background: url('./images/programming-school-bg.png') center center / cover no-repeat;
  color: white;
  position: relative;
}

.frisuke-developer-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 30, 30, 0.85);
  z-index: 1;
}

.frisuke-developer-message .frisuke-container {
  position: relative;
  z-index: 2;
}

.frisuke-developer-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.frisuke-developer-badge {
  display: inline-block;
  background: #06c755;
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.frisuke-developer-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.frisuke-developer-points {
  margin-bottom: 2rem;
}

.frisuke-developer-points p {
  font-size: 1.2rem;
  line-height: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.frisuke-developer-points strong {
  color: #06c755;
}

.frisuke-developer-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin: 0;
}

.frisuke-developer-note strong {
  color: #06c755;
}

@media screen and (max-width: 834px) {
  .frisuke-developer-message {
    padding: 60px 0;
  }

  .frisuke-developer-title {
    font-size: 1.6rem;
  }

  .frisuke-developer-points p {
    font-size: 1.05rem;
  }

  .frisuke-developer-note {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .frisuke-developer-message {
    padding: 50px 0;
  }

  .frisuke-developer-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .frisuke-developer-title {
    font-size: 1.4rem;
  }

  .frisuke-developer-points p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .frisuke-developer-note {
    font-size: 0.9rem;
  }
}

/* メリットセクション */
.frisuke-benefits {
  padding: 50px 0;
  background: #f8f9fa;
}

.frisuke-benefits-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.frisuke-benefit-step {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(6, 199, 85, 0.3);
  flex: 1;
  max-width: 280px;
}

.frisuke-benefit-step .frisuke-benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.frisuke-benefit-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: bold;
}

.frisuke-benefit-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

.frisuke-benefit-arrow {
  font-size: 2rem;
  color: #06c755;
  font-weight: bold;
  flex-shrink: 0;
}

/* LINEチャット風メリットセクション */
.frisuke-chat-container {
  max-width: 600px;
  margin: 1.5rem auto 0;
  padding: 1rem;
  background: #8cabd9;
  border-radius: 16px;
}

.frisuke-chat-message {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.frisuke-chat-message:last-child {
  margin-bottom: 0;
}

.frisuke-chat-left {
  justify-content: flex-start;
}

.frisuke-chat-right {
  justify-content: flex-end;
}

.frisuke-chat-avatar {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.frisuke-chat-avatar-green {
  background: #06c755;
  color: white;
  font-weight: bold;
  font-size: 1rem;
}

.frisuke-chat-bubble {
  max-width: 75%;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: white;
  position: relative;
}

.frisuke-chat-left .frisuke-chat-bubble {
  border-bottom-left-radius: 4px;
}

.frisuke-chat-right .frisuke-chat-bubble {
  border-bottom-right-radius: 4px;
}

.frisuke-chat-bubble-green {
  background: #06c755;
  color: white;
}

.frisuke-chat-bubble p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.frisuke-chat-bubble strong {
  display: block;
  margin-bottom: 0.3rem;
}

.frisuke-chat-bubble-green strong {
  color: #fff;
}

@media screen and (max-width: 834px) {
  .frisuke-chat-container {
    padding: 1rem;
    margin: 1.5rem auto 0;
  }

  .frisuke-chat-avatar {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .frisuke-chat-bubble {
    max-width: 80%;
    padding: 0.7rem 0.9rem;
  }

  .frisuke-chat-bubble p {
    font-size: 0.85rem;
  }
}

.frisuke-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.frisuke-benefit-card {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(6, 199, 85, 0.3);
}

.frisuke-benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.frisuke-benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.frisuke-benefit-detail {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.frisuke-benefit-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ff9800;
  display: inline-block;
  margin: 0 0.5rem;
}

.frisuke-benefit-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* 導入の流れ */
.frisuke-flow {
  padding: 80px 0;
  background: white;
}

.frisuke-flow-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 3rem auto;
  flex-wrap: wrap;
}

.frisuke-flow-step {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.frisuke-flow-number {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

.frisuke-flow-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.frisuke-flow-step p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.frisuke-flow-arrow {
  font-size: 2rem;
  color: #06c755;
  margin: 0 1rem;
}

.frisuke-flow-note {
  text-align: center;
  margin-top: 2rem;
  color: #666;
  font-size: 0.95rem;
}

/* ブログセクション */
.frisuke-blog {
  padding: 80px 0;
  background: #f8f9fa;
}

.frisuke-blog-description {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.frisuke-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.frisuke-blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.frisuke-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.frisuke-blog-thumbnail {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.frisuke-blog-thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}

.frisuke-blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.frisuke-blog-card:hover .frisuke-blog-thumbnail img {
  transform: scale(1.05);
}

.frisuke-blog-thumbnail-default {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
}

.frisuke-blog-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

.frisuke-blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.frisuke-blog-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.frisuke-blog-date {
  color: #999;
  font-size: 0.9rem;
}

.frisuke-blog-category {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.frisuke-blog-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.frisuke-blog-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s;
}

.frisuke-blog-title a:hover {
  color: #06c755;
}

.frisuke-blog-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.frisuke-blog-read-more {
  color: #06c755;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  align-self: flex-start;
}

.frisuke-blog-read-more:hover {
  color: #04a043;
}

.frisuke-blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #999;
  font-size: 1.1rem;
}

.frisuke-blog-more {
  text-align: center;
}

.frisuke-btn-secondary-dark {
  background: transparent;
  color: #06c755;
  border: 2px solid #06c755;
}

.frisuke-btn-secondary-dark:hover {
  background: #06c755;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
}

/* Q&Aセクション */
.frisuke-faq {
  padding: 80px 0;
  background: white;
}

.frisuke-faq-description {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

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

.frisuke-faq-item {
  background: white;
  border: 2px solid #e8f5e9;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.frisuke-faq-item:hover {
  border-color: #06c755;
  box-shadow: 0 2px 10px rgba(6, 199, 85, 0.1);
}

.frisuke-faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #1a1a1a;
  transition: background 0.3s ease;
}

.frisuke-faq-question:hover {
  background: #f8f9fa;
}

.frisuke-faq-q-mark {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.frisuke-faq-q-text {
  flex: 1;
}

.frisuke-faq-toggle {
  width: 30px;
  height: 30px;
  background: #e8f5e9;
  color: #06c755;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.frisuke-faq-item.active .frisuke-faq-toggle {
  transform: rotate(45deg);
  background: #06c755;
  color: white;
}

.frisuke-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8f9fa;
}

.frisuke-faq-item.active .frisuke-faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.frisuke-faq-answer {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.frisuke-faq-a-mark {
  background: #ff9800;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1.5rem;
}

.frisuke-faq-a-text {
  flex: 1;
  padding-top: 1.5rem;
}

.frisuke-faq-a-text p {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

/* お問い合わせセクション */
.frisuke-contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  text-align: center;
}

.frisuke-contact .frisuke-section-title {
  color: white;
}

.frisuke-contact-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.frisuke-contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.frisuke-contact-method {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.frisuke-contact-method h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* フッター */
.frisuke-footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 5rem;
  scroll-snap-align: none;
  min-height: auto;
}

.frisuke-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.frisuke-footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.frisuke-footer-brand p {
  color: #999;
  font-size: 0.9rem;
}

.frisuke-footer-made {
  color: #06c755 !important;
  font-weight: bold;
  margin-top: 0.5rem;
}

.frisuke-footer-company {
  color: #ccc !important;
  font-weight: bold;
  margin-top: 0.8rem;
}

.frisuke-footer-address {
  color: #888 !important;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.frisuke-footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.frisuke-footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.frisuke-footer-links a:hover {
  color: #06c755;
}

.frisuke-footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #999;
  font-size: 0.9rem;
}

/* 固定問い合わせバー（ボタン + スクロールヒント） */
.frisuke-fixed-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
}

.frisuke-fixed-cta-btn {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.frisuke-fixed-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.6);
  background: linear-gradient(135deg, #05b04c 0%, #038a3a 100%);
}

/* 固定バー内のスクロールヒント - PCでは非表示 */
.frisuke-fixed-cta .frisuke-scroll-hint {
  display: none;
}

@media screen and (max-width: 834px) {
  /* スマホ: 固定バーを画面幅いっぱいに配置 */
  .frisuke-fixed-cta {
    left: 15px;
    right: 15px;
    bottom: 15px;
    display: flex;
    align-items: center;
    gap: 0;
  }

  .frisuke-fixed-cta-btn {
    flex-shrink: 0;
  }

  /* スクロールヒント: 常時表示、右側余白の中央に配置 */
  .frisuke-fixed-cta .frisuke-scroll-hint {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    position: static;
    transform: none;
    color: rgba(180, 50, 50, 0.9);
    cursor: pointer;
    white-space: nowrap;
    opacity: 1 !important;
    pointer-events: auto !important;
    animation: hintPulse 2s ease-in-out infinite;
  }

  /* 常時パルスアニメーション */
  @keyframes hintPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
  }

  .frisuke-fixed-cta .frisuke-scroll-hint-text {
    display: inline;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0.02em;
  }

  .frisuke-fixed-cta .frisuke-scroll-hint-icon {
    display: inline;
    font-size: 1rem;
    line-height: 1;
  }
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  .frisuke-hero-wrapper {
    gap: 2rem;
  }

  .frisuke-hero-phone {
    width: 240px;
  }

  .frisuke-hero-phone-screen {
    height: 400px;
  }

  .frisuke-hero-title {
    font-size: 2.5rem;
  }

  .frisuke-story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .frisuke-story-icon {
    width: 150px;
    height: 150px;
    font-size: 6rem;
  }

  .frisuke-solution-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .frisuke-flow-arrow {
    display: none;
  }

  .frisuke-flow-steps {
    flex-direction: column;
    gap: 1rem;
  }

  .frisuke-flow-step {
    width: 100%;
  }
}

/*834px以下*/
@media screen and (max-width: 834px){
  .frisuke-section-title {
    font-size: 2rem;
  }

  .frisuke-hero-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .frisuke-hero-wrapper .frisuke-hero-content {
    text-align: center;
  }

  .frisuke-hero-image {
    order: -1;
  }

  .frisuke-hero-phone {
    width: 150px;
    padding: 6px;
    border-radius: 25px;
  }

  .frisuke-hero-phone-screen {
    height: 260px;
    border-radius: 18px;
  }

  .frisuke-hero-wrapper {
    gap: 1rem;
    padding-bottom: 80px;
  }

  .frisuke-hero-title {
    font-size: 1.6rem;
  }

  .frisuke-hero-subtitle {
    font-size: 1rem;
  }

  .frisuke-hero-badge {
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .frisuke-hero-badge span {
    font-size: 0.8rem;
  }

  .frisuke-hero-cta .frisuke-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .frisuke-hero-line-header {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .frisuke-hero-line-chat {
    padding: 10px;
    gap: 8px;
  }

  .frisuke-hero-line-msg {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .frisuke-hero-line-buttons button {
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  /* LIFF風デザイン - モバイル */
  .frisuke-liff-header {
    padding: 10px 8px 8px;
    border-radius: 0 0 12px 12px;
  }

  .frisuke-liff-title {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  .frisuke-liff-greeting {
    font-size: 0.55rem;
    margin-bottom: 6px;
  }

  .frisuke-liff-student {
    padding: 4px 8px;
    font-size: 0.5rem;
    border-radius: 15px;
  }

  .frisuke-liff-student button {
    padding: 2px 6px;
    font-size: 0.45rem;
    border-radius: 10px;
  }

  .frisuke-liff-menu {
    padding: 6px;
    gap: 5px;
  }

  .frisuke-liff-menu-item {
    padding: 6px 8px;
    border-radius: 6px;
    border-left-width: 3px;
  }

  .frisuke-liff-menu-title {
    font-size: 0.6rem;
    margin-bottom: 1px;
  }

  .frisuke-liff-menu-desc {
    font-size: 0.45rem;
    display: none;
  }

  .frisuke-liff-menu-arrow {
    font-size: 0.8rem;
  }

  .frisuke-hero-title {
    font-size: 2rem;
  }

  .frisuke-hero-subtitle {
    font-size: 1.2rem;
  }

  .frisuke-hero-description {
    font-size: 1rem;
  }

  .frisuke-problems-grid,
  .frisuke-features-grid,
  .frisuke-benefits-grid {
    grid-template-columns: 1fr;
  }

  .frisuke-blog-grid {
    grid-template-columns: 1fr;
  }

  .frisuke-footer-content {
    flex-direction: column;
    text-align: center;
  }

  .frisuke-footer-links {
    justify-content: center;
  }

  .frisuke-faq-question {
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
  }

  .frisuke-faq-q-mark,
  .frisuke-faq-a-mark {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .frisuke-fixed-cta-btn {
    font-size: 0.8rem;
    padding: 10px 18px;
  }
}

/*480px以下*/
@media screen and (max-width: 480px){
  .frisuke-hero {
    padding: 60px 0;
  }

  .frisuke-hero-badge {
    padding: 0.5rem 1rem;
  }

  .frisuke-hero-badge span {
    font-size: 0.85rem;
  }

  .frisuke-hero-title {
    font-size: 1.8rem;
  }

  .frisuke-hero-subtitle {
    font-size: 1.1rem;
  }

  .frisuke-section-title {
    font-size: 1.8rem;
  }

  .frisuke-story-text h3 {
    font-size: 1.5rem;
  }

  .frisuke-story-text p {
    font-size: 1rem;
  }

  .frisuke-story-icon {
    width: 120px;
    height: 120px;
    font-size: 4rem;
  }

  .frisuke-btn {
    font-size: 1rem;
    padding: 12px 30px;
  }

  .frisuke-hero-cta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .frisuke-hero-cta .frisuke-btn {
    width: 100%;
  }

  .frisuke-problems,
  .frisuke-features,
  .frisuke-benefits,
  .frisuke-flow,
  .frisuke-blog,
  .frisuke-faq,
  .frisuke-contact {
    padding: 60px 0;
  }

  .frisuke-faq-question {
    font-size: 0.95rem;
    padding: 1rem 1.2rem;
  }

  .frisuke-faq-q-mark,
  .frisuke-faq-a-mark {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .frisuke-faq-toggle {
    width: 26px;
    height: 26px;
    font-size: 1.3rem;
  }

  .frisuke-faq-item.active .frisuke-faq-answer {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }

  .frisuke-fixed-cta {
    bottom: 15px;
    width: calc(100% - 30px);
  }

  .frisuke-fixed-cta-btn {
    font-size: 1rem;
    padding: 14px 20px;
  }

  /* ソリューションセクション - モバイル */
  .frisuke-solution-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .frisuke-solution-image {
    flex-shrink: 0;
  }

  .frisuke-phone-mockup {
    max-width: 120px;
    padding: 8px;
    border-radius: 20px;
  }

  .frisuke-phone-screen {
    border-radius: 14px;
    aspect-ratio: 9/16;
  }

  .frisuke-line-header {
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .frisuke-line-message {
    padding: 8px;
  }

  .frisuke-line-message p {
    font-size: 0.6rem;
    margin-bottom: 5px;
  }

  .frisuke-line-btn {
    font-size: 0.5rem;
    padding: 4px 8px;
    margin-bottom: 4px;
  }

  .frisuke-solution-text {
    flex: 1;
  }

  .frisuke-solution-text h3 {
    font-size: 1.2rem;
    display: none;
  }

  .frisuke-solution-list {
    gap: 0.5rem;
  }

  .frisuke-solution-list li {
    font-size: 0.85rem;
    padding: 0.4rem 0;
  }

  .frisuke-solution-lead {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .frisuke-footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/************************************
** ブログ一覧ページ用スタイル
************************************/
.frisuke-blog-page {
  background: #f8f9fa;
}

.frisuke-blog-header {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  padding: 120px 0 60px;
  text-align: center;
}

.frisuke-blog-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.frisuke-blog-header-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.frisuke-blog-header-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.frisuke-blog-list-section {
  padding: 80px 0;
  min-height: calc(100vh - 400px);
}

.frisuke-blog-empty {
  text-align: center;
  padding: 5rem 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.frisuke-blog-empty-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.frisuke-blog-empty h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.frisuke-blog-empty p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* ページネーション */
.frisuke-pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.frisuke-pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}

.frisuke-pagination li {
  display: inline-block;
}

.frisuke-pagination a,
.frisuke-pagination span {
  display: inline-block;
  padding: 10px 18px;
  background: white;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  font-weight: 500;
}

.frisuke-pagination a:hover {
  background: #06c755;
  color: white;
  border-color: #06c755;
  transform: translateY(-2px);
}

.frisuke-pagination .current {
  background: #06c755;
  color: white;
  border-color: #06c755;
}

.frisuke-pagination .prev,
.frisuke-pagination .next {
  font-weight: bold;
}

/* レスポンシブ - ブログ一覧ページ */
@media screen and (max-width: 834px) {
  .frisuke-blog-header {
    padding: 100px 0 40px;
  }

  .frisuke-blog-header-title {
    font-size: 2rem;
  }

  .frisuke-blog-header-description {
    font-size: 1rem;
  }

  .frisuke-blog-list-section {
    padding: 60px 0;
  }
}

@media screen and (max-width: 480px) {
  .frisuke-blog-header {
    padding: 80px 0 30px;
  }

  .frisuke-blog-header-title {
    font-size: 1.8rem;
  }

  .frisuke-blog-empty {
    padding: 3rem 1.5rem;
  }

  .frisuke-blog-empty-icon {
    font-size: 3.5rem;
  }

  .frisuke-blog-empty h2 {
    font-size: 1.5rem;
  }

  .frisuke-pagination a,
  .frisuke-pagination span {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

/************************************
** スワイプ用コンパクトスタイル
************************************/

/* コンパクト機能カード */
.frisuke-features-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.frisuke-feature-card-compact {
  background: white;
  padding: 1.2rem 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.frisuke-feature-card-compact .frisuke-feature-number {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  margin: 0 auto 0.8rem;
}

.frisuke-feature-card-compact h4 {
  font-size: 0.95rem;
  margin: 0;
  color: #1a1a1a;
}

/* 保護者向け機能セクション */
.frisuke-features-parent {
  background: #f8f9fa;
}

/* 教室向け機能セクション */
.frisuke-features-school {
  background: white;
}

/* コンパクトFAQ */
.frisuke-faq-compact {
  max-width: 700px;
  margin: 0 auto;
}

.frisuke-faq-compact .frisuke-faq-item {
  margin-bottom: 0.5rem;
}

.frisuke-faq-compact .frisuke-faq-question {
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
}

.frisuke-faq-compact .frisuke-faq-q-mark,
.frisuke-faq-compact .frisuke-faq-a-mark {
  width: 30px;
  height: 30px;
  font-size: 0.8rem;
}

.frisuke-faq-compact .frisuke-faq-a-text p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* コンパクトメリット */
.frisuke-benefits .frisuke-benefits-grid {
  gap: 1rem;
}

.frisuke-benefits .frisuke-benefit-card {
  padding: 1.5rem 1rem;
}

.frisuke-benefits .frisuke-benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.frisuke-benefits .frisuke-benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.frisuke-benefits .frisuke-benefit-detail {
  font-size: 1rem;
  margin-bottom: 0;
}

.frisuke-benefits .frisuke-benefit-number {
  font-size: 1.5rem;
}

.frisuke-benefits .frisuke-benefit-card > p:last-child {
  display: none;
}

/* コンパクト導入の流れ */
.frisuke-flow .frisuke-flow-steps {
  margin: 1.5rem auto;
}

.frisuke-flow .frisuke-flow-step {
  padding: 1.2rem;
  min-width: 150px;
}

.frisuke-flow .frisuke-flow-step h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.frisuke-flow .frisuke-flow-step p {
  display: none;
}

.frisuke-flow .frisuke-flow-number {
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
}

/* コンパクト問い合わせ */
.frisuke-contact .frisuke-contact-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.frisuke-contact .frisuke-contact-methods {
  gap: 1rem;
}

.frisuke-contact .frisuke-contact-method {
  padding: 1rem;
}

.frisuke-contact .frisuke-contact-method h3 {
  display: none;
}

/************************************
** スワイプ用モバイルレスポンシブ
************************************/
@media screen and (max-width: 834px) {
  .frisuke-section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .frisuke-features-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .frisuke-feature-card-compact {
    padding: 1rem 0.8rem;
  }

  .frisuke-feature-card-compact .frisuke-feature-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .frisuke-feature-card-compact h4 {
    font-size: 0.85rem;
  }

  .frisuke-problems-main {
    margin-top: 1.5rem;
  }

  .frisuke-problem-highlight {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .frisuke-problem-highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .frisuke-problem-highlight h3 {
    font-size: 1.2rem;
  }

  .frisuke-problem-highlight p {
    font-size: 0.9rem;
  }

  .frisuke-problem-detail {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .frisuke-problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .frisuke-problem-card {
    padding: 1rem;
  }

  .frisuke-problem-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .frisuke-problem-card h3 {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  /* 課題セクション - 「正直に言うと」ボックス（モバイル） */
  .frisuke-problem-reality {
    padding: 1rem;
    margin: 1rem 0;
  }

  .frisuke-problem-reality-title {
    font-size: 0.75rem;
  }

  .frisuke-problem-reality-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .frisuke-problem-reality-text strong {
    font-size: 0.95rem;
  }

  .frisuke-problem-emphasis {
    font-size: 1rem;
  }

  .frisuke-problem-card-note {
    font-size: 0.65rem !important;
    margin-top: 0.3rem !important;
  }

  /* 理由02 - お客様の本音（モバイル） */
  .frisuke-customer-voice {
    padding: 0.8rem 1rem;
    margin: 1rem 0;
  }

  .frisuke-customer-voice-title {
    font-size: 0.7rem;
  }

  .frisuke-customer-voice-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .frisuke-reason-solution {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .frisuke-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .frisuke-benefits-flow {
    flex-direction: row;
    gap: 0.5rem;
  }

  .frisuke-benefit-step {
    padding: 1rem 0.8rem;
    max-width: none;
  }

  .frisuke-benefit-step .frisuke-benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .frisuke-benefit-step h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .frisuke-benefit-step p {
    font-size: 0.75rem;
  }

  .frisuke-benefit-arrow {
    font-size: 1.2rem;
  }

  .frisuke-benefit-card {
    padding: 1rem 0.5rem !important;
  }

  .frisuke-benefit-icon {
    font-size: 1.5rem !important;
  }

  .frisuke-benefit-card h3 {
    font-size: 0.9rem !important;
  }

  .frisuke-benefit-number {
    font-size: 1.2rem !important;
  }

  .frisuke-flow-steps {
    flex-direction: row;
    gap: 0.5rem;
  }

  .frisuke-flow-step {
    padding: 0.8rem !important;
    min-width: auto !important;
    flex: 1;
  }

  .frisuke-flow-step h3 {
    font-size: 0.85rem !important;
  }

  .frisuke-flow-arrow {
    display: block !important;
    font-size: 1rem;
    margin: 0;
  }

  .frisuke-faq-compact .frisuke-faq-question {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 480px) {
  .frisuke-section-title {
    font-size: 1.3rem;
  }

  .frisuke-hero-title {
    font-size: 1.5rem;
  }

  .frisuke-hero-subtitle {
    font-size: 0.95rem;
  }

  .frisuke-features-compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .frisuke-benefits-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .frisuke-problem-highlight {
    padding: 1.2rem;
  }

  .frisuke-problem-highlight-icon {
    font-size: 2rem;
  }

  .frisuke-problem-highlight h3 {
    font-size: 1.1rem;
  }

  .frisuke-problem-highlight p {
    font-size: 0.85rem;
  }

  .frisuke-problem-detail {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .frisuke-problem-card {
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
  }

  .frisuke-problem-icon {
    font-size: 1.3rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .frisuke-problem-card h3 {
    font-size: 0.85rem;
  }

  .frisuke-problem-card h3 br {
    display: none;
  }

  /* 課題セクション - 超小型画面用 */
  .frisuke-problem-reality {
    padding: 0.8rem;
    margin: 0.8rem 0;
  }

  .frisuke-problem-reality-title {
    font-size: 0.7rem;
  }

  .frisuke-problem-reality-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .frisuke-problem-reality-text br {
    display: none;
  }

  .frisuke-problem-emphasis {
    font-size: 0.9rem;
  }

  .frisuke-problem-card-note {
    display: none;
  }

  /* 理由02 - 超小型画面用 */
  .frisuke-customer-voice {
    padding: 0.6rem 0.8rem;
    margin: 0.8rem 0;
  }

  .frisuke-customer-voice-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .frisuke-reason-solution {
    font-size: 0.85rem;
  }

  .frisuke-scroll-hint {
    right: 10px;
  }

  .frisuke-scroll-hint-icon {
    font-size: 2.5rem;
  }

  .frisuke-fixed-cta-btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  .frisuke-benefits-flow {
    flex-direction: column;
    gap: 0.8rem;
  }

  .frisuke-benefit-step {
    padding: 1.2rem;
    max-width: 100%;
  }

  .frisuke-benefit-step .frisuke-benefit-icon {
    font-size: 2rem;
  }

  .frisuke-benefit-step h3 {
    font-size: 1rem;
  }

  .frisuke-benefit-step p {
    font-size: 0.85rem;
  }

  .frisuke-benefit-step p br {
    display: none;
  }

  .frisuke-benefit-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
}

/************************************
** トップページ用スタイル
************************************/
.frisuke-home-page {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ナビゲーション */
.frisuke-nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.frisuke-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.frisuke-nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #06c755;
  text-decoration: none;
}

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

.frisuke-nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.frisuke-nav-links a:hover {
  color: #06c755;
}

/* 透明ナビゲーション（ランディングページ用） */
.frisuke-nav-transparent {
  background: transparent;
  box-shadow: none;
}

.frisuke-nav-transparent .frisuke-nav-logo {
  color: white;
}

.frisuke-nav-transparent .frisuke-nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.frisuke-nav-transparent .frisuke-nav-links a:hover {
  color: white;
}

/* トップページヒーロー */
.frisuke-home-hero {
  background: linear-gradient(135deg, #06c755 0%, #04a043 100%);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
}

.frisuke-home-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.frisuke-home-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.frisuke-home-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.frisuke-home-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* トップページブログセクション */
.frisuke-home-blog {
  padding: 80px 0;
  background: #f8f9fa;
}

.frisuke-section-description {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.frisuke-blog-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.frisuke-home-blog-more {
  text-align: center;
}

.frisuke-btn-outline {
  background: transparent;
  color: #06c755;
  border: 2px solid #06c755;
}

.frisuke-btn-outline:hover {
  background: #06c755;
  color: white;
}

.frisuke-blog-empty-home {
  text-align: center;
  padding: 3rem;
  color: #666;
}

/* トップページお問い合わせセクション */
.frisuke-home-contact {
  padding: 80px 0;
  background: white;
}

.frisuke-home-contact .frisuke-contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.frisuke-home-contact .frisuke-contact-method {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
}

.frisuke-contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.frisuke-home-contact .frisuke-contact-method h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.frisuke-home-contact .frisuke-contact-method p {
  color: #666;
  margin-bottom: 1.5rem;
}

/************************************
** 法的ページ用スタイル（プライバシーポリシー、特商法）
************************************/
.frisuke-legal-page {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: #f8f9fa;
}

.frisuke-legal-main {
  padding: 120px 0 80px;
  min-height: calc(100vh - 300px);
}

.frisuke-legal-content {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.frisuke-legal-title {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  text-align: center;
}

.frisuke-legal-updated {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.frisuke-legal-section {
  margin-bottom: 2.5rem;
}

.frisuke-legal-section h2 {
  font-size: 1.3rem;
  color: #06c755;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8f5e9;
}

.frisuke-legal-section p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.frisuke-legal-section ul {
  padding-left: 1.5rem;
  color: #333;
  line-height: 2;
}

.frisuke-legal-section ul li {
  margin-bottom: 0.5rem;
}

.frisuke-legal-contact {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.frisuke-legal-contact p {
  margin: 0;
}

.frisuke-legal-contact a {
  color: #06c755;
  text-decoration: none;
}

.frisuke-legal-contact a:hover {
  text-decoration: underline;
}

.frisuke-legal-back {
  text-align: center;
  margin-top: 3rem;
}

/* 特定商取引法テーブル */
.frisuke-tokushoho-table {
  overflow-x: auto;
}

.frisuke-tokushoho-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.frisuke-tokushoho-table th,
.frisuke-tokushoho-table td {
  padding: 1.2rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.frisuke-tokushoho-table th {
  background: #f8f9fa;
  color: #1a1a1a;
  font-weight: bold;
  width: 30%;
  white-space: nowrap;
}

.frisuke-tokushoho-table td {
  color: #333;
  line-height: 1.8;
}

.frisuke-tokushoho-table a {
  color: #06c755;
  text-decoration: none;
}

.frisuke-tokushoho-table a:hover {
  text-decoration: underline;
}

/* レスポンシブ - トップページ */
@media screen and (max-width: 834px) {
  .frisuke-nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .frisuke-home-hero {
    padding: 120px 0 80px;
  }

  .frisuke-home-hero-title {
    font-size: 2rem;
  }

  .frisuke-home-hero-subtitle {
    font-size: 1.1rem;
  }

  .frisuke-blog-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }

  .frisuke-home-contact .frisuke-contact-methods {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .frisuke-nav-links {
    gap: 0.8rem;
    font-size: 0.8rem;
  }

  .frisuke-home-hero {
    padding: 100px 0 60px;
  }

  .frisuke-home-hero-title {
    font-size: 1.6rem;
  }

  .frisuke-home-hero-subtitle {
    font-size: 1rem;
  }

  .frisuke-home-hero-cta {
    flex-direction: column;
  }

  .frisuke-home-hero-cta .frisuke-btn {
    width: 100%;
  }

  .frisuke-blog-grid-home {
    grid-template-columns: 1fr;
  }

  .frisuke-legal-content {
    padding: 2rem 1.5rem;
  }

  .frisuke-legal-title {
    font-size: 1.6rem;
  }

  .frisuke-legal-section h2 {
    font-size: 1.1rem;
  }

  .frisuke-tokushoho-table th {
    width: 35%;
    font-size: 0.9rem;
  }

  .frisuke-tokushoho-table td {
    font-size: 0.9rem;
  }
}
