/* =============================================
基本設定
============================================= */
:root {
    --header-height: 70px; /* ヘッダーの高さを変数として定義 */
}
html {
    scroll-behavior: smooth; /* スムーズスクロールを有効化 */
    scroll-padding-top: var(--header-height); /* スクロール位置をヘッダーの高さ分調整 */
}
body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    background-color: white;
    line-height: 1.7;
	padding-top: var(--header-height);
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.highlight {
    color: #FE6323;
    font-weight: 700;
}
.br-mobile {
    display: none;
}

/* =============================================
ヘッダーのスタイル 
============================================= */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    height: var(--header-height);
    width: 100%;
    position: fixed; 
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
}
.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-logo img {
    height: 60px;
    width: auto;
}
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}
.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #209DD5;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.main-nav a:hover::after {
    transform: scaleX(1);
}
.hamburger-menu {
    display: none; /* PCでは非表示 */
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 101;
}
.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* =============================================
   ヒーローセクションのスタイル
   ============================================= */

/* セクション全体の背景とサイズ設定 */
.hero-section {
  min-height: 675px;
  width: 100%;
  background-image: url('./images/bff92845beb7f001bc78dc67f933b540a04a531f.webp');
  background-size: cover;
  background-position: center top;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
   background: linear-gradient(70deg, rgba(255, 255, 255, 0.9) 60%, transparent 75%);
}
.hero-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.hero-text-content {
  flex-basis: 55%;
}
.hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #333333;
  font-size: 48px;
  line-height: 1.5;
  margin: 0;
}
.hero-title .hero-highlight {
  color: #209DD5;
  font-size: 60px;
}
.hero-title .hero-highlight-small {
  color: #333333; 
}
.hero-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
  margin-top: 40px;
}
.hero-awards {
  flex-basis: 40%;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.hero-awards img {
  width: 174px;
  height: 174px;
}

/* =============================================
   3つのポイント セクションのスタイル
   ============================================= */
.points-section {
  background-color: white;
  padding: 80px 0;
}
.points-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: -120px;
}
.point-card {
  background-color: white;
  border: 3px solid #002357;
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 35, 87, 0.50);
  width: 31%;
  padding: 0px 20px;
  text-align: center;
  position: relative;
}
.point-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 211px; /* 元のデザインの幅 */
  height: 25px; /* 元のデザインの高さ */
  background-color: white;
  z-index: 0; /* バッジより奥に配置 */
}

.point-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #002357;
  color: white;
  border-radius: 10px;
  padding: 2px 15px;
  display: flex;
  align-items: center;
}
.point-badge-check {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #209DD5;
  background-color: white;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  line-height: 21px;
  text-align: center;
  margin-right: 8px;
}
.point-badge-text {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
}
.point-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  color: #333333;
  margin-top: 20px;
}
.point-title-highlight {
  color: #FE6323;
  font-size: 32px;
}

/* =============================================
   CTA（行動喚起）セクションのスタイル
   ============================================= */
.cta-section {
  background-color: rgba(0, 35, 87, 0.50);
  padding: 15px 20px;
  text-align: center;
}

.cta-banner-text {
  color: white;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 4px; 
  margin-bottom: 20px;
}

/* CTAボタンのスタイル*/
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 389px;
  height: 64px;
  max-width: 90%;
  background: white;
  box-shadow: 0px 4px 4px #209DD5;
  border-radius: 10px;
  border: 1px #209DD5 solid;
  color: black;
  font-size: 20px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 7px 15px rgba(32, 157, 213, 0.5);
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0px 2px 5px rgba(32, 157, 213, 0.4);
}

/* =============================================
   お悩みセクションのスタイル
   ============================================= */
.problems-section {
  padding: 60px 0 0 0;
  background-color: white;
}

.problems-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative; 
}

.problems-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* 6つのお悩みをグリッドで配置 */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCでは3列 */
  gap: 50px 30px; /* 縦の隙間50px、横の隙間30px */
}

.problem-card {
  background: white;
  border-radius: 15px;
  border: 2px solid #002357;
  padding: 0px 20px;
  text-align: center;
  font-size: 20px; 
  line-height: 1.6;
  font-weight: 700;
  color: #333333;
  
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
}

.problem-highlight {
  color: #209DD5; /* 青色のハイライト */
}

.thinking-person-wrapper {
  text-align: center;
  margin-top: 25px; 
  position: relative;
  z-index: 10;
}

.thinking-person-img {
  width: 359px;
  max-width: 80%;
  height: auto;
}

/* 装飾用の矢印（PCでのみ表示）*/
.problem-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url('./images/Polygon 1.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.problem-line {
  position: absolute;
  width: 35px;
  height: 0;
  transform-origin: top left;
  outline: 2px #002357 solid;
  outline-offset: -1px;
}


/* =============================================
   お約束セクションのスタイル
   ============================================= */
.promise-section {
    padding: 60px 20px 35px 20px; 
    background-color: white;
}

.promise-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.promise-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 80px;
    color: #333333;
    margin: 0 0 20px 0;
}
.promise-highlight {
    color: #FE6323; 
    font-size: 48px;
}

.promise-sub-text {
    font-size: 32px;
}

.reasons-title-wrapper {
    margin-top: 60px;
    display: inline-flex;
    align-items: flex-end;
    gap: 15px;
}

.reasons-title-logo {
    height: 107px;
    width: auto;
}

.reasons-title-block {
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    color: #333333;
    font-size: 36px;
}

.reasons-title-bottom {
    display: block;
    background-color: #002357;
    color: white;
    padding: 5px 20px;
}

/* =============================================
   選ばれる理由 セクションのスタイル 
   ============================================= */
.reasons-section {
    padding: 60px 0;
    background-color: white;
}

.reasons-container {
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
    display: grid; /* Gridレイアウトを採用 */
    gap: 60px; /* 各カードの間の隙間 */
}

.reason-card {
    background-color: white;
    border-radius: 5px;
	border: 1px solid #002357;
    box-shadow: 10px 10px 10px -7px #002357;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative; /* バッジを配置する基準点 */
    overflow: hidden; /* バッジのはみ出しを制御 */
}

.reason-card-number-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 130px;
    background-color: #002357; /* 紺色の背景 */
    color: white;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Noto Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;

    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.reason-card-number {
    transform: translate(-57%, -50%);
}

.reason-card-content {
    flex: 1.5; 
    padding-left: 20px;
}

.reason-card-image {
    flex: 1;
    text-align: right;
}

.reason-card-image img {
    width: 100%;
    border-radius: 10px;
}

.reason-card-point {
    color: #002357;
    font-size: 20px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    margin: 10px 0 0 15px;
}

.reason-card-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.6;
    color: #333;
    margin: 10px 0 20px 0;
}

.reason-card-description {
    font-family: 'Noto Sans JP', sans-serif; /* 説明文はゴシック体 */
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.reason-card-description-highlight {
    color: #FE6323;
    font-weight: 700;
}
.reason-card--reverse {
    flex-direction: row-reverse; 
}

.reason-card--reverse .reason-card-number-badge {
    left: auto; 
    right: 0; 
    clip-path: polygon(100% 0, 0 0, 100% 100%); 
}

.reason-card--reverse .reason-card-number {
    transform: translate(60%, -50%); /* 右上の三角形用に位置を調整 */
}

.reason-card--reverse .reason-card-content {
    padding-left: 0;
    padding-right: 20px;
}

/* =============================================
   スタッフインタビュー セクションのスタイル
   ============================================= */
.interview-section {
    padding: 60px 0;
    background-color: white;
}

.interview-container {
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
}

.interview-section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.interview-section-subtitle {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 10px 0 40px 0;
}

.interview-card {
    background-color: white;
    border: 1px solid #002357;
    box-shadow: 0px 4px 4px #002357;
    padding: 20px 30px 40px 30px;
    margin-bottom: 60px;
}

.interview-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;	
}

.interview-header .interview-company-name,
.interview-header .interviewee-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    position: relative;
    padding-left: 20px;
	border-left: 4px solid royalblue;
	
}

.interviewee-name::before {
    display: none; /* 名前の方の線は非表示に */
}

.interview-body {
    display: flex;
    gap: 30px;
}

.interview-image {
    flex-basis: 35%;
}
.interview-image img {
    width: 100%;
    border-radius: 5px;
}

.interview-qa-list {
    flex-basis: 65%;
    display: grid;
    gap: 20px;
}


.interview-qa-item {
    border: 1px solid #002357;
    border-radius: 3px;
    position: relative;
    padding: 15px; 
    margin-top: 20px;
}

.qa-question {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    background-color: white; 
    padding: 0 10px;
    
    /* 枠線の上に乗るように配置 */
    position: absolute;
    top: 0;
    left: 15px;
    transform: translateY(-50%); 
    
    margin: 0;
}

.qa-answer {
    font-size: 14px;
    line-height: 1.9;	
    color: #333;
}
.qa-answer .highlight {
    color: #FE6323;
    font-weight: 700;
}

/* =============================================
   料金紹介 セクションのスタイル 
   ============================================= */
.pricing-section {
    padding: 0px 0;
    background-color: white;
}

.pricing-container {
    width: 90%;
    max-width: 880px; /* デザインに合わせて少し幅を調整 */
    margin: 0 auto;
}

.pricing-section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.pricing-section-subtitle {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 10px 0 40px 0;
}

.pricing-table {
    border: 1px solid #ddd;
}

.pricing-header {
    background-color: #002357;
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 15px;
    text-align: center;
    letter-spacing: 1px;
}

.pricing-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}
.pricing-row:last-child {
    border-bottom: none;
}

.pricing-service {
    flex-basis: 30%;
    background-color: #F5F5F5;
    padding: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-price {
    flex-basis: 70%;
    background-color: #fafafa;
    padding: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}

.price-number {
    font-size: 36px;
    margin-right: 5px;
}

.pricing-price--small-text {
    font-size: 20px;
}
.pricing-price--small-text .price-number {
    font-size: 36px;
}

/* =============================================
   お問い合わせフォーム セクションのスタイル
   ============================================= */
.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-container {
    width: 90%;
    max-width: 800px; /* フォームの最大幅 */
    margin: 0 auto;
    background-color: white;
    padding: 40px 60px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.form-section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin: 10px 0 40px 0;
}

.form-group {
    margin-bottom: 25px;
}
.form-group-center {
    text-align: center;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-required {
    background-color: #FE6323;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: normal;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* paddingを含めて幅を100%に */
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #002357;
    box-shadow: 0 0 5px rgba(0, 35, 87, 0.3);
}

.form-textarea {
    resize: vertical; /* 縦方向のみリサイズ可能に */
}

.form-checkbox-label {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        /* 無効状態のスタイル */
        .form-checkbox-label.is-disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        .form-checkbox-label a { color: #209DD5; text-decoration: none; }
        .form-checkbox-label a:hover { text-decoration: underline; }
        .form-checkbox-label input[type="checkbox"] { display: none; }
        .checkbox-custom {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid #ccc;
            border-radius: 4px;
            margin-right: 10px;
            position: relative;
            transition: background-color 0.2s, border-color 0.2s;
        }
        .form-checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
            background-color: #002357;
            border-color: #002357;
        }
        .form-checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
            content: '✓';
            color: white;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: bold;
        }
        .privacy-notice {
            font-size: 12px;
            color: #e74c3c;
            margin-top: 8px;
            font-weight: 500;
        }

        .form-submit-btn {
            background-color: #FE6323;
            color: white;
            font-size: 18px;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            padding: 15px 60px;
            cursor: pointer;
            transition: opacity 0.3s, background-color 0.3s;
        }
        .form-submit-btn:hover { opacity: 0.8; }
        /* 無効状態の送信ボタン */
        .form-submit-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
            opacity: 0.7;
        }
/* ===============================================
   フッター
   =============================================== */
/* フッターのメインナビゲーションエリア */
.footer-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto; /* 中央寄せ */
  padding: 20px 0;
}

.footer-nav.row {
  display: flex; /* Flexboxで横並びにする */
  justify-content: space-between; /* 各列を均等に配置 */
  flex-wrap: wrap; /* 画面が狭くなったら折り返す */
}

.footer-nav .col {
  width: 23%; /* 4列にしたいので、1列あたり約23%の幅 */
}

.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav__list--lv1 a {
  color: #002357; /* 紺色 */
  font-weight: bold;
  text-decoration: none;
}

.footer-nav__list--lv2 {
  margin-top: 10px;
}

.footer-nav__list--lv2 a {
  color: #333; /* 濃いグレー */
  font-size: 14px;
  text-decoration: none;
}
.footer-nav__list--lv2 a:hover {
  text-decoration: underline; /* ホバー時に下線をつける */
}


/* サブフッター（一番下の黒い帯） */
.footer-sub {
  background-color: #333;
  color: #f5f5f5; /* 少し明るい白 */
  padding: 20px 0;
  font-size: 12px;
}

.footer-sub .footer-inner {
  padding: 0; /* 上下のpaddingをリセット */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  display: inline-block; /* 横並びにする */
  margin-right: 20px;
  border-right: 1px solid #f5f5f5; /* 区切り線 */
  padding-right: 20px;
}
.footer-menu li:last-child {
  border-right: none; /* 最後の要素の区切り線は消す */
}

.footer-menu a {
  color: #f5f5f5;
  text-decoration: none;
}
.footer-menu a:hover {
  text-decoration: underline;
}

.footer-copyright {
  text-align: right;
}
/* =============================================
   スクロールアニメーション用のスタイル
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.point-card:nth-child(2), .problem-card:nth-child(2), .problem-card:nth-child(5) {
  transition-delay: 0.1s;
}
.point-card:nth-child(3), .problem-card:nth-child(3), .problem-card:nth-child(6) {
  transition-delay: 0.2s;
}

/* =============================================
     追従ダウンロードボタンのスタイル
     ============================================= */
.sticky-download-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FE6323; /* オレンジ色 */
  color: white;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  
  /* ページ読み込み時のアニメーション */
  animation: fadeInFromBottom 0.5s 0.5s ease-out forwards;
  opacity: 0; /* アニメーション開始前の初期状態 */
}

/* ボタン表示用のアニメーションを定義 */
@keyframes fadeInFromBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sticky-download-icon svg {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}

@media (max-width: 900px) { /* ハンバーガーメニューに切り替える画面幅 */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* 初期状態では画面右外に隠す */
        width: 70%;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
        padding-top: 100px;
    }
    .main-nav.is-active {
        right: 0; /* アクティブになったら表示 */
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .main-nav a {
        font-size: 18px;
    }
    .hamburger-menu {
        display: block;
    }
    .hamburger-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* =============================================
   スマートフォン表示への対応（メディアクエリ）
   ============================================= */
@media (max-width: 768px) {
  .hero-container {
	height: 390px;
    flex-direction: column;
    text-align: center;
  }	
  .hero-section {
	min-height: 400px;
	background-position: center center;
  }
  .hero-section::before {
	width: 75%;
    height: 100%;
   background: linear-gradient(70deg, rgba(255, 255, 255, 0.9) 65%, transparent 90%);
  }		
  .hero-awards {
    margin-top: -20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-awards img {
    width: 110px;
    height: 110px;
  }
  .hero-title{
	font-size: 20px;
	text-align: left;
	margin-top: 75px
  }	
  .hero-title .hero-highlight{
    font-size: 30px;	
  }
  .hero-description {
    margin-top: 20px;
	font-size: 13px;
	text-align: left;
  }
  .points-section {
    padding: 20px 0;
  }
  .points-container {
    flex-direction: column;
    margin-top: 0;
  }
  .point-card {
    width: auto;
  }
  .problems-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
  }
  .problem-card {
    min-height: auto;
    padding: 0px 8px;
    font-size: 12px;
  }
  .problem-arrow { width: 30px; height: 30px; }
  .problem-line{ width: 20px; }
  .arrow-1 { top: 44%; left: 21%; }
  .arrow-2 { top: 44%; left: 75%; }
  .arrow-3 { top: 74%; left: 21%; }
  .arrow-4 { top: 74%; left: 75%; }
  .arrow-5 { top: 99%; left: 21%; } 
  .arrow-6 { top: 99%; left: 75%; } 
  .line-1 { top: 50.2%; left: 25.5%; transform: rotate(-60deg); }
  .line-2 { top: 50.2%; left: 79.6%; transform: rotate(-60deg); }
  .line-3 { top: 79.7%; left: 25.5%; transform: rotate(-60deg); }
  .line-4 { top: 79.7%; left: 79.6%; transform: rotate(-60deg); }
  .line-5 { top: 105.1%; left: 25.5%; transform: rotate(-60deg); }
  .line-6 { top: 105.1%; left: 79.6%; transform: rotate(-60deg); }
  /* スマホでは矢印を非表示に */
  .problem-arrow {
    /*display: none;*/
  }
  .thinking-person-wrapper {
    margin-top: 20px; 
  }
  .promise-section {
    padding: 40px 20px;
  }
  .promise-text {
    font-size: 24px; 
    line-height: 1.6; 
  }
  .promise-highlight {
    font-size: 28px;
  }
  .promise-sub-text {
    font-size: 20px;
  }
  .reasons-title-wrapper {
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
  }
  .reasons-title-logo {
    height: 80px;
  }
  .reasons-title-block {
    font-size: 28px;
  }

    .reasons-section {
        padding: 40px 0;
    }
    .reasons-container {
        gap: 30px;
    }
    .reason-card {
        flex-direction: column;
        padding: 20px;
    }
    .reason-card-number-badge {
        width: 100px;
        height: 100px;
        font-size: 32px;
    }
    .reason-card-content {
        padding-left: 0;
        text-align: center;
    }
    .reason-card-title {
        font-size: 24px;
    }
    .reason-card-description {
        font-size: 15px;
        text-align: left;
    }
	    .interview-body {
        flex-direction: column;
    }
    .interview-header {
        flex-direction: column;
        gap: 10px;
    }
    .interview-header .interview-company-name::before,
    .interview-header .interviewee-name::before {
        display: none; /* スマホでは縦線を非表示 */
    }

    .qa-answer {
        font-size: 13px;
    }
   .pricing-row {
        flex-direction: column;
    }
    .pricing-service,
    .pricing-price {
        flex-basis: auto;
        padding: 20px;
    }
    .pricing-service {
        border-bottom: 1px solid #ddd;
    }
    .price-number {
        font-size: 28px;
    }
    .pricing-price--small-text {
        font-size: 16px;
    }
    .pricing-price--small-text .price-number {
        font-size: 28px;
    }
	    .form-section {
        padding: 40px 10px;
    }
    .google-form-wrapper iframe {
        height: 1690px;
    }
	
  .sticky-download-btn {
    width: 90px;
    height: 90px;
    font-size: 11px;
  }
  .sticky-download-icon svg {
    width: 24px;
    height: 24px;
  }
  .form-container{
	padding:40px 10px;	
		
  }
}