@charset "UTF-8";

/* ==========================================
 * 基本スタイル & PCレスポンシブ（中央配置）
 * ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* 指定のPC背景色 */
  background-color: #D9F4FF;
  font-family: 'Noto Sans JP', sans-serif;
  color: #111827;
  line-height: 1.7;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  /* 基準文字サイズを18ptに設定 */
  font-size: 18pt; 
}

.lp-container {
  width: 100%;
  max-width: 480px; /* 文字拡大に合わせて全体幅を少しだけ広げて調整 */
  background-color: #F8FAFC;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  overflow: hidden;
}

/* ==========================================
 * 共通コンポーネント
 * ========================================== */
.section-badge {
  display: inline-block;
  background-color: #E0F2FE;
  color: #0284C7;
  font-size: 16pt;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 24pt;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 18pt;
  color: #475569;
  margin-bottom: 28px;
}

/* CTRボタン */
.btn-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 68px; /* 文字サイズ拡大に伴いボタンの高さを広げました */
  border-radius: 34px;
  font-size: 20pt;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, opacity 0.2s;
  padding: 10px 40px 10px 20px;
}

.btn-cta:active {
  transform: scale(0.98);
}

.btn-black {
  background-color: #0F172A;
  color: #FFFFFF;
}

.btn-blue {
  background-color: #0284C7; /* 見やすさ向上のため青色を少しだけ濃く変更 */
  color: #FFFFFF;
}

.btn-cta .arrow {
  position: absolute;
  right: 20px;
  font-size: 22pt;
}

/* ==========================================
 * 1. FIRST-VIEW
 * ========================================== */
.section-fv {
  position: relative;
  background-color: #FFFFFF;
  padding-bottom: 24px;
}

.fv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}

.company-logo {
  font-size: 18pt;
  font-weight: 800;
  color: #0F172A;
}

.btn-entry-top {
  background-color: #0F172A;
  color: #FFFFFF;
  font-size: 16pt;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 24px;
  text-decoration: none;
  flex-shrink: 0;
}

/* .fv-hero {
  position: relative;
  min-height: 520px;
  padding: 24px 20px;
  background: linear-gradient(135deg, #E0F2FE 0%, #FFFFFF 100%);
} */

/* テスト */
.fv-hero {
  position: relative; /* 絶対配置の基準にする */
  padding: 0 !important; /* 上下左右のパディングをなくす */
  margin: 0;             /* 必要に応じてマージンもリセット */
  background-color: transparent; /* 背景色を出さない */
}

.fv-hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/*  */

.fv-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background: url('images/hero-first-view.jpg') no-repeat top right / cover;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.fv-water-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top right, rgba(186, 230, 253, 0.6), transparent);
  z-index: 2;
}

.fv-content {
  position: relative;
  z-index: 3;
}

.fv-catch {
  font-size: 26pt;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #0F172A;
}

.fv-catch .highlight {
  color: #0284C7;
}

.fv-desc {
  font-size: 18pt;
  font-weight: 700;
  line-height: 1.7;
  color: #1E293B;
  background: rgba(255, 255, 255, 0.85); /* 写真の上に重なっても読みやすいよう半透明背景を付与 */
  padding: 12px;
  border-radius: 8px;
}

.fv-cta-container {
  position: absolute;
  bottom: 30px; /* 画像の下端からどのくらい上に配置するか（数字で微調整） */
  left: 50%;
  transform: translateX(-50%); /* 中央寄せ */
  width: 90%; /* 必要に応じた幅指定 */
  z-index: 10; /* 画像より前面に表示 */
}

/* ==========================================
 * 2. LEAD
 * ========================================== */
.section-lead {
  background-color: #FFFFFF;
  padding: 40px 24px;
}

.lead-title {
  font-size: 26pt;
  font-weight: 900;
  line-height: 1.35;
  color: #0F172A;
  margin-bottom: 28px;
}

.lead-list {
  list-style: none;
}

.lead-list li {
  font-size: 18pt;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ==========================================
 * 3. ISSUE
 * ========================================== */
.section-issue {
  padding: 40px 20px;
  background-color: #F8FAFC;
  text-align: center;
}

.issue-list {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.issue-list li {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
  font-size: 18pt;
  font-weight: 700;
  color: #1E293B;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.check-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #0284C7;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 16pt;
  margin-right: 14px;
  flex-shrink: 0;
}

.issue-banner {
  background-color: #0284C7;
  color: #FFFFFF;
  font-size: 20pt;
  font-weight: 800;
  padding: 20px;
  border-radius: 8px;
  line-height: 1.4;
}

/* ==========================================
 * 4. MERIT
 * ========================================== */
.section-merit {
  padding: 40px 20px;
  background-color: #F8FAFC;
  text-align: center;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.merit-card {
  background-color: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.card-header h3 {
  font-size: 20pt;
  font-weight: 800;
  color: #0F172A;
}

.icon-circle {
  width: 44px;
  height: 44px;
  background-color: #0284C7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 20pt;
  flex-shrink: 0;
}

.merit-card p {
  font-size: 18pt;
  color: #334155;
  line-height: 1.6;
}

/* ==========================================
 * 5. JOB
 * ========================================== */
.section-job {
  padding: 40px 20px;
  background-color: #F8FAFC;
  text-align: center;
}

.job-box {
  background-color: #FFFFFF;
  border: 2px solid #0284C7;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  margin-bottom: 28px;
}

.job-item {
  border-bottom: 2px solid #F1F5F9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.job-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.job-label {
  color: #0284C7;
  font-size: 18pt;
  font-weight: 800;
  margin-bottom: 10px;
}

.job-desc p {
  font-size: 18pt;
  color: #334155;
  line-height: 1.6;
}

.job-desc p.bold {
  font-weight: 700;
  color: #0F172A;
}

.job-desc p.bold-large {
  font-weight: 800;
  font-size: 20pt;
  color: #0F172A;
}

/* ==========================================
 * 6. MESSAGE
 * ========================================== */
.section-message {
  padding: 40px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.message-photo {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.message-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.message-catch {
  font-size: 22pt;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 24px;
  line-height: 1.35;
}

.message-body {
  text-align: left;
  font-size: 18pt;
  color: #334155;
  line-height: 1.7;
}

.message-body p {
  margin-bottom: 20px;
}

.message-author {
  text-align: left;
  margin-top: 28px;
}

.message-author .company-name {
  font-size: 18pt;
  font-weight: 800;
  color: #0F172A;
}

.message-author .ceo-name {
  font-size: 18pt;
  font-weight: 700;
  color: #0F172A;
}

/* ==========================================
 * FAQ
 * ========================================== */
.section-faq {
  padding: 40px 20px;
  background-color: #F8FAFC;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.faq-card {
  background-color: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.q-icon {
  width: 32px;
  height: 32px;
  background-color: #0284C7;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16pt;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-q h4 {
  font-size: 18pt;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.4;
}

.faq-a {
  font-size: 18pt;
  color: #334155;
  line-height: 1.6;
}

/* ==========================================
 * 7. FOOTER
 * ========================================== */
.section-footer {
  padding: 40px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.footer-catch {
  font-size: 24pt;
  font-weight: 900;
  color: #0284C7;
  line-height: 1.35;
  margin-bottom: 28px;
}

.footer-hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 36px;
}

.footer-photo {
  width: 100%;
  height: auto;
  display: block;
}

.footer-cta-overlay {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
}

.company-info {
  text-align: left;
  font-size: 18pt;
  color: #475569;
  line-height: 1.7;
}

.company-info .info-label {
  font-size: 16pt;
  margin-bottom: 4px;
}

.company-info .info-name {
  font-size: 18pt;
  font-weight: 800;
  color: #0F172A;
}

.company-info .info-tel {
  margin-top: 6px;
  font-weight: 700;
  font-size: 20pt;
  color: #0F172A;
}