/* =========================
基本設定
========================= */

:root {
  --navy: #071c33;
  --navy-light: #102c49;
  --blue: #1769aa;
  --light-blue: #dcecf5;
  --gold: #c9a45c;
  --cream: #f7f3eb;
  --white: #ffffff;
  --text: #18222c;
  --gray: #687482;
  --line: #d9e0e6;
  --shadow: 0 24px 60px rgba(7, 28, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =========================
ヘッダーメニュー
========================= */

.header-nav {
  margin-left: auto;
  margin-right: 28px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.header-menu a {
  position: relative;
  display: block;
  padding: 8px 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.header-menu a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background-color: var(--blue);
  content: "";
  transition: transform 0.25s ease;
}

.header-menu a:hover {
  color: var(--blue);
}

.header-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.logo-image {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

/* =========================
ハンバーガーメニュー
========================= */

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 7px auto;
  background-color: var(--navy);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.mobile-contact {
  display: none;
}

body {
  margin: 0;
  color: var(--text);
  background-color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section {
  padding: 120px 0;
}

.section-subtitle {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.section-subtitle-light {
  color: #bcd6e8;
}

.section-title {
  margin-bottom: 24px;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.35;
}

.section-title-light {
  color: var(--white);
}

.section-text {
  max-width: 680px;
  margin: 0 auto;
  color: var(--gray);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.section-heading .section-title {
  margin-bottom: 0;
}

.heading-text {
  margin-bottom: 5px;
  color: var(--gray);
  font-size: 15px;
}


/* =========================
ヘッダー
========================= */

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;

  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;

  padding: 16px 4%;

  border-bottom: 1px solid rgba(23, 105, 170, 0.1);
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(7, 28, 51, 0.06);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.logo-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background-color: var(--navy);
}

.header-button {
  padding: 11px 24px;
  border: 1px solid rgba(7, 28, 51, 0.3);
  border-radius: 50px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}


/* =========================
ファーストビュー
========================= */

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 150px 24px 90px;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.93) 48%,
      rgba(220, 236, 245, 0.85) 100%
    );
}

.hero::before {
  position: absolute;
  top: -15%;
  right: -12%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(23, 105, 170, 0.14);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  top: 16%;
  right: 2%;
  width: 35vw;
  height: 35vw;
  border: 1px solid rgba(23, 105, 170, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
}

.hero-circle01 {
  top: 22%;
  right: 15%;
  width: 170px;
  height: 170px;
  background-color: rgba(201, 164, 92, 0.16);
}

.hero-circle02 {
  right: 28%;
  bottom: 12%;
  width: 58px;
  height: 58px;
  background-color: rgba(23, 105, 170, 0.18);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
}

.hero-subtitle {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.hero-title {
  max-width: 1050px;
  margin-bottom: 30px;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(38px, 5.8vw, 78px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.hero-title > span {
  color: var(--blue);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2em;
  font-weight: 900;
}

.hero-title strong {
  background:
    linear-gradient(
      transparent 67%,
      rgba(201, 164, 92, 0.35) 67%
    );
  font-weight: 700;
}

.hero-text {
  margin-bottom: 38px;
  color: #455565;
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 58px;
}

.main-button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 0 34px;
  border-radius: 50px;
  color: var(--white);
  background-color: var(--navy);
  box-shadow: 0 16px 34px rgba(7, 28, 51, 0.18);
  font-weight: 700;
  transition: 0.3s;
}

.main-button:hover {
  transform: translateY(-3px);
  background-color: var(--blue);
}

.text-button {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.hero-points {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(7, 28, 51, 0.14);
  border-bottom: 1px solid rgba(7, 28, 51, 0.14);
}

.hero-point {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 30px;
  border-right: 1px solid rgba(7, 28, 51, 0.14);
}

.hero-point:last-child {
  border-right: none;
}

.hero-point strong {
  color: var(--navy);
  font-size: 25px;
}

.hero-point span {
  color: var(--gray);
  font-size: 12px;
}

.small-note {
  max-width: 760px;
  margin-top: 18px;
  margin-bottom: 0;
  color: #7c8792;
  font-size: 11px;
}


/* =========================
メッセージ
========================= */

.message {
  background-color: var(--cream);
}

.message-inner {
  max-width: 820px;
  text-align: center;
}


/* =========================
選ばれる理由
========================= */

.risk{
    background:#eef8ff;
}

.risk-heading-box {
  display: inline-block;
  margin-bottom: 70px;
  padding: 10px 42px 16px;
  background:#cfeeff;
  border-radius:10px;

}

.risk-heading-box .section-subtitle {
  margin-bottom: 2px;
}

.risk-heading-box .section-title {
  margin-bottom: 0;
}

.reason-cards {
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  background:#fff;
  border:2px solid #d8edf8;
}

.reason-card {
  position: relative;
  min-height: 490px;
  padding: 80px 72px 60px;
  border-right: 3px solid #d9eef9;
  background-color: #ffffff;
}

.reason-card:last-child {
  border-right: none;
}

.reason-card-main {
  z-index: 2;
  transform: translateY(-8px);
  border-top:6px solid #29a8f3;
    box-shadow:0 10px 25px rgba(41,168,243,.12);
}

.reason-catch {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #11a7ea;
  font-family: "Shippori Mincho", serif;
}

.reason-big {
  font-size: 90px;
  font-weight: 500;
  line-height: 1;
  color:#21a7ef;
}

.reason-small {
  margin-top: 15px;
  margin-left: 8px;
  font-size: 28px;
  font-style: italic;
  line-height: 1.2;
  color:#2baef2;
}

.reason-card h3 {
  margin-bottom: 20px;
 color:#13283f;
  font-size: 27px;
  font-weight: 700;
}

.reason-card p {
  margin-bottom: 0;
  color:#6f879d;
  line-height:2;
  font-size: 16px;
}

.risk-number {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.risk-english {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.risk-content h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
}

.risk-content > p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 15px;
}

.risk-icon {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  font-size: 38px;
}

/* About */

.about{

    background:#fff;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.about-lead{

    margin:30px 0;

    color:var(--blue);

    font-size:26px;

    font-weight:700;

    line-height:1.7;

}

.about-text p:last-of-type{

    color:#6f879d;

}

.about .section-title {
    font-size: 41px;
    line-height: 1.3;
}

.about-list{

    margin-top:40px;

}

.about-list li{

    position:relative;

    margin-bottom:18px;

    padding-left:35px;

    font-size:17px;

}

.about-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#2baef2;

    font-weight:bold;

}

/* =========================
航空教育職員免許
========================= */

.license {
  background:
    linear-gradient(
      135deg,
      #f7fbfe 0%,
      #eef8ff 100%
    );
}

.license-en {
  position: relative;
  margin-bottom: 24px;
  padding-left: 50px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
}

.license-en::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 1px;
  transform: translateY(-50%);
  background-color: var(--blue);
  content: "";
}


/* 見出しボックス */

.license-title-box {
  display: inline-block;
  margin-bottom: 34px;
  padding: 28px 42px 26px;
  border-radius: 10px;
  background-color: #dff2ff;
}

.license-title-box h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.35;
}

.license-title-box p {
  margin-bottom: 0;
  color: var(--blue);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 700;
}


/* 導入文 */

.license-intro {
  max-width: 760px;
  margin-bottom: 70px;
  color: #6f879d;
  font-size: 16px;
  line-height: 2;
}


/* 2カラム */

.license-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}


/* 左側の認定証風デザイン */

.license-image-area {
  position: relative;
}

.license-certificate {
  position: relative;
  min-height: 510px;
  padding: 62px 42px 42px;
  overflow: hidden;
  border: 2px solid #cfe7f5;
  border-radius: 12px;
  text-align: center;
  background:
    radial-gradient(
      circle at center,
      rgba(40, 169, 239, 0.08),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fcff 100%
    );
  box-shadow: 0 24px 50px rgba(7, 28, 51, 0.09);
}

.license-certificate::before {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid #d8edf8;
  border-radius: 8px;
  content: "";
}

.certificate-label {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  padding: 9px 18px;
  border-radius: 4px;
  color: var(--white);
  background-color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(23, 105, 170, 0.2);
}

.certificate-en {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: var(--blue);
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.35em;
}

.certificate-circle {
  position: relative;
  z-index: 2;
  display: grid;
  width: 210px;
  height: 210px;
  margin: 0 auto 30px;
  place-items: center;
  border: 3px double var(--blue);
  border-radius: 50%;
  color: var(--blue);
  background-color: rgba(255, 255, 255, 0.85);
  font-family: "Shippori Mincho", serif;
  font-size: 72px;
  box-shadow:
    inset 0 0 0 12px rgba(40, 169, 239, 0.05),
    0 15px 30px rgba(23, 105, 170, 0.08);
}

.license-certificate h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
}

.license-certificate > p:last-child {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: #88a0b4;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.12em;
}


/* 右側 */

.license-definition {
  margin-bottom: 34px;
  padding: 28px 32px;
  border-left: 5px solid var(--blue);
  background-color: var(--white);
  box-shadow: 0 12px 30px rgba(7, 28, 51, 0.06);
}

.license-definition h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
}

.license-definition p {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 15px;
}

.license-description p {
  margin-bottom: 28px;
  color: #587286;
  font-size: 16px;
  line-height: 2.1;
}

.license-description strong {
  color: var(--navy);
  background:
    linear-gradient(
      transparent 70%,
      rgba(40, 169, 239, 0.16) 70%
    );
}

.license-description b {
  color: var(--navy);
}

.license-highlight {
  display: inline-block;
  position: relative;
  color: var(--blue);
  font-weight: 800;
}

.license-highlight::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background-color: var(--blue);
  content: "";
}

/* =========================
10個の魅力・蜂の巣
========================= */

.appeal {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(41, 168, 243, 0.08),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #eef8ff 100%
    );
}

.appeal-heading {
  max-width: 760px;
  margin-bottom: 70px;
}

.appeal-lead {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 15px;
}


/* 蜂の巣全体 */

.honeycomb {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px 8px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}


/* 1段目：3個 */

.hexagon:nth-child(1) {
  grid-column: 2 / span 2;
}

.hexagon:nth-child(2) {
  grid-column: 4 / span 2;
}

.hexagon:nth-child(3) {
  grid-column: 6 / span 2;
}


/* 2段目：4個 */

.hexagon:nth-child(4) {
  grid-column: 1 / span 2;
}

.hexagon:nth-child(5) {
  grid-column: 3 / span 2;
}

.hexagon:nth-child(6) {
  grid-column: 5 / span 2;
}

.hexagon:nth-child(7) {
  grid-column: 7 / span 2;
}


/* 3段目：3個 */

.hexagon:nth-child(8) {
  grid-column: 2 / span 2;
}

.hexagon:nth-child(9) {
  grid-column: 4 / span 2;
}

.hexagon:nth-child(10) {
  grid-column: 6 / span 2;
}


/* 六角形 */

.hexagon {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  filter: drop-shadow(0 15px 22px rgba(7, 28, 51, 0.08));
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.hexagon::before {
  position: absolute;
  inset: 0;
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
  background: linear-gradient(
    145deg,
    #cceafb 0%,
    #1769aa 100%
  );
  content: "";
}

.hexagon::after {
  position: absolute;
  inset: 2px;
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
  background: linear-gradient(
    145deg,
    #ffffff 0%,
    #f4fbff 100%
  );
  content: "";
}

.hexagon:hover {
  z-index: 3;
  transform: translateY(-8px);
  filter: drop-shadow(0 22px 30px rgba(7, 28, 51, 0.15));
}


/* 六角形の中 */

.hexagon-inner {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px 25px;
  text-align: center;
}

.hexagon-number {
  position: absolute;
  top: 19%;
  left: 17%;
  color: rgba(23, 105, 170, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hexagon-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background-color: #dff2ff;
  font-size: 19px;
  font-weight: 900;
}

.hexagon h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
}

.hexagon p {
  max-width: 190px;
  margin: 0;
  color: #6f879d;
  font-size: 11px;
  line-height: 1.75;
}


/* 中央を強調 */

.hexagon-main {
  transform: scale(1.05);
  filter: drop-shadow(0 20px 30px rgba(23, 105, 170, 0.18));
}

.hexagon-main::before {
  background: linear-gradient(
    145deg,
    #29a8f3 0%,
    #071c33 100%
  );
}

.hexagon-main::after {
  background: linear-gradient(
    145deg,
    #0e3152 0%,
    #071c33 100%
  );
}

.hexagon-main .hexagon-number {
  color: rgba(255, 255, 255, 0.25);
}

.hexagon-main .hexagon-icon {
  color: var(--navy);
  background-color: #ffffff;
}

.hexagon-main h3 {
  color: #ffffff;
}

.hexagon-main p {
  color: #c9ddeb;
}



/* =========================
比較表
========================= */

.comparison{
    background:linear-gradient(135deg,#0b223d,#16385e);
    padding:120px 0;
}

.comparison .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 80px;
}

.comparison .section-subtitle{
    color:#8fd3ff;
}

.comparison .section-title{
    color:#fff;
}

.comparison-table-wrap {
  margin-top: 70px;
  transform:translateY(20px);
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(7, 28, 51, 0.08);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 92%;
  margin:0 auto;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #ffffff;
}

.comparison-table th,
.comparison-table td {
  padding: 25px 22px;
  border: 1px solid #d8edf8;
  vertical-align: middle;
}

.comparison-table thead th {
  color: var(--navy);
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.comparison-table thead .comparison-item-title {
  width: 24%;
  text-align: left;
  background-color: #dff2ff;
}

.comparison-table thead .comparison-main-title {
  width: 27%;
  color: #ffffff;
  background-color: var(--navy);
}

.comparison-main-title span {
  margin-right: 8px;
}

.comparison-table tbody th {
  width: 24%;
  color: var(--navy);
  background-color: #f8fbfd;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
}

.comparison-table tbody td {
  color: #607589;
  background-color: #ffffff;
  font-size: 15px;
  text-align: center;
}

.comparison-table tbody tr:nth-child(even) th {
  background-color: #eef8ff;
}

.comparison-table tbody tr:nth-child(even) td {
  background-color: #fbfdff;
}

.comparison-table td.comparison-best {
  color: var(--blue);
  background-color: #e7f5ff;
  font-size: 16px;
}

.comparison-table tbody tr:nth-child(even) td.comparison-best {
  background-color: #dff2ff;
}

.comparison-best strong {
  font-weight: 800;
}

.mark-ok,
.mark-ng,
.mark-caution {
  display: inline-block;
  margin-right: 4px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.mark-ok {
  color: #16a45b;
}

.mark-ng {
  color: #e24343;
}

.mark-caution {
  color: #f0a04b;
}

.comparison-table tbody tr {
  transition: background-color 0.2s;
}

.comparison-table tbody tr:hover th,
.comparison-table tbody tr:hover td {
  background-color: #f2f9fd;
}

.comparison-table tbody tr:hover td.comparison-best {
  background-color: #d8effc;
}

.comparison-note {
  margin: 24px 0 0;
  color: #71879a;
  font-size: 11px;
  line-height: 1.8;
}

.comparison {
  color: var(--white);
  background-color: var(--navy);
}

.comparison-school .comparison-label {
  color: var(--blue);
}

.comparison-card h3 {
  margin-bottom: 36px;
  font-family: "Shippori Mincho", serif;
  font-size: 34px;
  line-height: 1.45;
}

.comparison-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 14px;
}

.comparison-school li {
  border-bottom-color: var(--line);
}

.comparison-school li strong {
  color: var(--blue);
  font-size: 18px;
}

.comparison-note {
  margin-top: 34px;
  margin-bottom: 0;
  color: #91a4b6;
  font-size: 11px;
}

.comparison .container{
    max-width:1280px;
    padding:0 80px;
}

.comparison-table{
    width:90%;
    margin:auto;
}

.comparison-table th,
.comparison-table td{
    padding:20px 18px;
}

.comparison-item-title{
    width:30%;
}

/* =========================
比較セクションのバランス調整
========================= */

.comparison {
  padding: 110px 0 90px;
}

/* 比較セクション全体の横幅 */
.comparison .container {
  width: min(1280px, calc(100% - 120px));
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

/* 英語タイトル */
.comparison .section-subtitle {
  margin-bottom: 18px;
  color: #8fd3ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

/* 日本語タイトル */
.comparison .section-title {
  margin-bottom: 55px;
  color: #ffffff;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* 表の外側 */
.comparison-table-wrap {
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  overflow-x: auto;
  background-color: #ffffff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

/* 表本体 */
.comparison-table {
  width: 100%;
  min-width: 1000px;
  margin: 0;
}

/* セルの高さ・文字サイズ */
.comparison-table th,
.comparison-table td {
  padding: 22px 20px;
  line-height: 1.55;
}

/* ヘッダー */
.comparison-table thead th {
  height: 70px;
  font-size: 15px;
}

/* 左側の項目名 */
.comparison-table tbody th {
  font-size: 15px;
}

/* 中の文章 */
.comparison-table tbody td {
  font-size: 14px;
}

/* チェックなど */
.mark-ok,
.mark-ng,
.mark-caution {
  margin-right: 7px;
  font-size: 21px;
  vertical-align: -2px;
}

/* 注意書き */
.comparison-note {
  width: 100%;
  margin: 18px auto 0;
  color: #8ea4b8;
  font-size: 11px;
  line-height: 1.8;
  text-align: left;
}

/* =========================
仕事内容
========================= */

.work {
  background-color: #f7fafc;
}

.work-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.work-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background-color: var(--white);
  transition: 0.3s;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.work-number {
  position: absolute;
  right: 28px;
  bottom: -30px;
  color: rgba(23, 105, 170, 0.07);
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
}

.work-english {
  margin-bottom: 48px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.work-card h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 30px;
}

.work-card > p:last-child {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin-bottom: 0;
  color: var(--gray);
}

.work-time{
    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-bottom:22px;
    padding:8px 16px;

    border-radius:30px;

    background:#eef8ff;

    color:var(--blue);

    font-size:13px;
    font-weight:700;
}

/* =========================
左側：収益パターン
========================= */

.income-section {
  background-color: #f7fbfe;
}

.income-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.income-lead {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 15px;
}

/* パターン全体 */
.income-patterns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 各カード */
.income-pattern-card {
  position: relative;
  display: block;
  padding: 34px 36px;
  border: 1px solid #d8edf8;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    #eef8ff 0%,
    #ffffff 100%
  );
  box-shadow: 0 12px 30px rgba(7, 28, 51, 0.06);
  visibility: visible;
  opacity: 1;
}

.income-pattern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(7, 28, 51, 0.1);
}

/* カード上部 */
.pattern-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.pattern-label {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid #8fd3ff;
  border-radius: 30px;
  color: var(--blue);
  background-color: #f8fcff;
  font-size: 11px;
  font-weight: 700;
}

.pattern-number {
  color: rgba(23, 105, 170, 0.12);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

/* カードタイトル */
.pattern-title-small {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
}

/* 金額 */
.pattern-price {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-bottom: 7px;
  color: var(--blue);
  line-height: 1;
}

.pattern-price strong {
  font-family: "Shippori Mincho", serif;
  font-size: 54px;
  font-weight: 600;
}

.pattern-price span {
  padding-bottom: 7px;
  font-size: 18px;
  font-weight: 700;
}

.pattern-price-note {
  margin-bottom: 20px;
  color: #7a91a4;
  font-size: 11px;
}

/* 説明文 */
.pattern-description {
  margin-bottom: 22px;
  color: #61798d;
  font-size: 14px;
  line-height: 1.9;
}

/* チェックリスト */
.pattern-points {
  display: grid;
  gap: 9px;
  margin: 0;
}

.pattern-points li {
  position: relative;
  padding-left: 23px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
}

.pattern-points li::before {
  position: absolute;
  left: 0;
  color: #21a7ef;
  content: "✓";
  font-weight: 900;
}

/* パターンB */
.pattern-recommend {
  border: 2px solid #29a8f3;
  background: linear-gradient(
    135deg,
    #e8f7ff 0%,
    #ffffff 100%
  );
}

.recommend-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 18px;
  border-radius: 0 18px 0 16px;
  color: #ffffff;
  background-color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

/* 長期コース */
.pattern-long {
  background: linear-gradient(
    135deg,
    #f1f8fc 0%,
    #ffffff 100%
  );
}

.pattern-catch {
  margin-bottom: 18px;
  color: var(--blue);
  font-family: "Shippori Mincho", serif;
  font-size: 48px;
  line-height: 1.2;
}

/* =========================
右側：月収シミュレーター
========================= */

/* 左右2カラム */
.income-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 48px;
}

/* シミュレーターボックス */
.simulator-panel {
  position: sticky;
  top: 30px;
  padding: 52px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #071c33 0%,
    #102c49 100%
  );
  box-shadow: 0 24px 60px rgba(7, 28, 51, 0.18);
}

/* タイトル */
.simulator-title {
  margin-bottom: 48px;
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  line-height: 1.5;
}

/* 各入力項目 */
.range-group {
  margin-bottom: 42px;
}

.range-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.range-heading label {
  color: #a9bdcd;
  font-size: 14px;
  font-weight: 600;
}

/* 選択中の数字 */
.range-value {
  margin: 0;
  color: #29a8f3;
  line-height: 1;
}

.range-value span {
  font-size: 32px;
  font-weight: 800;
}

.range-value small {
  margin-left: 5px;
  font-size: 17px;
  font-weight: 700;
}

/* スライダー */
.range-group input[type="range"] {
  width: 100%;
  height: 5px;
  margin: 0;
  border-radius: 999px;
  outline: none;
  background: #34495d;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.range-group input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: #29a8f3;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 0 0 5px rgba(41, 168, 243, 0.15);
}

.range-group input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: #29a8f3;
  box-shadow: 0 0 0 5px rgba(41, 168, 243, 0.15);
}

/* 最小値・最大値 */
.range-minmax {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #758a9c;
  font-size: 10px;
}

/* 計算結果 */
.simulator-result {
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.result-label {
  margin-bottom: 14px;
  color: #9eb1c0;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.result-price {
  margin-bottom: 18px;
  color: #f0d99a;
  line-height: 1;
}

.result-price span {
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.result-price small {
  margin-left: 8px;
  font-size: 22px;
}

.result-note {
  margin: 0;
  color: #899eb0;
  font-size: 11px;
  line-height: 1.8;
}

/* 下の注意書き */
.simulator-note {
  margin: 20px 0 0;
  color: #75899a;
  font-size: 10px;
  line-height: 1.8;
}


/*=========================
こんな方におすすめ
=========================*/

.recommend-circle{

padding:120px 0;

background:#fff;

text-align:center;

}

.recommend-text{

margin:20px auto 70px;

max-width:700px;

color:#6c8092;

line-height:2;

}

.circle-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:60px 40px;

}

.circle-item{

display:flex;

flex-direction:column;

align-items:center;

}

.circle{

width:180px;

height:180px;

border-radius:50%;

background:#f7fbff;

border:2px solid #d7edf9;

display:flex;

justify-content:center;

align-items:center;

font-size:55px;

transition:.3s;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.circle:hover{

transform:translateY(-8px);

border-color:#29a8f3;

box-shadow:0 20px 40px rgba(23,105,170,.12);

}

.circle-item h3{

margin-top:24px;

font-size:22px;

line-height:1.6;

color:#071c33;

}

/* =========================
サポート体制
========================= */

.support {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 5% 15%,
      rgba(41, 168, 243, 0.1),
      transparent 28%
    ),
    #f7fbfe;
}

.support-container {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 100px;
}


/* 左側 */

.support-heading {
  position: sticky;
  top: 50px;
}

.support-heading .section-title {
  margin-bottom: 28px;
}

.support-lead {
  max-width: 430px;
  margin-bottom: 45px;
  color: var(--gray);
  font-size: 15px;
  line-height: 2;
}

.support-message {
  max-width: 360px;
  padding: 28px;
  border-left: 3px solid var(--blue);
  background-color: #ffffff;
}

.support-message span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.support-message p {
  margin: 0;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  line-height: 1.7;
}


/* 右側の流れ */

.support-flow {
  position: relative;
}

.support-flow::before {
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 34px;
  width: 1px;
  background-color: #b9dff3;
  content: "";
}

.support-item {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 30px;
  padding: 0 0 55px;
}

.support-item:last-child {
  padding-bottom: 0;
}

.support-number {
  position: absolute;
  top: -7px;
  right: 0;
  color: rgba(23, 105, 170, 0.08);
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
}

.support-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 2px solid #b9e2f7;
  border-radius: 50%;
  color: var(--blue);
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(7, 28, 51, 0.08);
  font-size: 23px;
  font-weight: 800;
}

.support-content {
  position: relative;
  padding: 34px 38px;
  border: 1px solid #d8edf8;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 14px 35px rgba(7, 28, 51, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.support-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(7, 28, 51, 0.1);
}

.support-en {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.support-content h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 25px;
}

.support-content > p {
  margin-bottom: 22px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.9;
}

.support-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-content li {
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--blue);
  background-color: #eef8ff;
  font-size: 11px;
  font-weight: 700;
}

/* =========================
料金
========================= */

.price {
  background-color: var(--cream);
}

.price-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.price-text > p:last-child {
  color: var(--gray);
}

.price-card {
  padding: 52px;
  border-radius: 28px;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.price-label {
  margin-bottom: 8px;
  color: var(--gray);
  font-size: 14px;
  font-weight: 700;
}

.price-number {
  margin-bottom: 0;
  color: var(--navy);
  line-height: 1.1;
}

.price-number strong {
  font-size: clamp(50px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price-tax {
  margin-bottom: 34px;
  color: var(--gray);
  font-size: 12px;
}

.price-list {
  border-top: 1px solid var(--line);
}

.price-list p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.price-list strong {
  color: var(--blue);
  font-size: 18px;
}

.price-note {
  margin-top: 22px;
  margin-bottom: 0;
  color: #87919a;
  font-size: 10px;
}


/* =========================
代表挨拶
========================= */

.greeting {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(41, 168, 243, 0.08),
      transparent 30%
    ),
    #ffffff;
}

.greeting::before {
  position: absolute;
  top: 80px;
  right: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(41, 168, 243, 0.12);
  border-radius: 50%;
  content: "";
}

.greeting-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}


/* 左側 */

.greeting-image-area {
  position: relative;
  padding-bottom: 70px;
}

.greeting-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  background-color: #eef8ff;
  box-shadow: 0 24px 55px rgba(7, 28, 51, 0.12);
}

.greeting-image::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.greeting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.greeting-name-box {
  position: absolute;
  right: -28px;
  bottom: 0;
  width: min(320px, 85%);
  padding: 24px 28px;
  border-left: 4px solid var(--blue);
  background-color: #ffffff;
  box-shadow: 0 18px 40px rgba(7, 28, 51, 0.1);
}

.greeting-position {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.greeting-name {
  margin-bottom: 2px;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: 25px;
  font-weight: 700;
}

.greeting-name-en {
  margin: 0;
  color: #8ca0b2;
  font-size: 9px;
  letter-spacing: 0.2em;
}


/* 右側 */

.greeting-content .section-title {
  margin-bottom: 30px;
}

.greeting-catch {
  margin-bottom: 36px;
  color: var(--blue);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.8;
}

.greeting-text {
  color: #61798d;
  font-size: 15px;
  line-height: 2.1;
}

.greeting-text p {
  margin-bottom: 22px;
}

.greeting-text p:last-child {
  margin-bottom: 0;
}

.greeting-sign {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  gap: 4px;
  margin-top: 42px;
  padding-top: 25px;
  border-top: 1px solid #d8edf8;
}

.greeting-sign span {
  color: #7f93a5;
  font-size: 11px;
}

.greeting-sign strong {
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: 21px;
}




/* =========================
よくある質問
========================= */

.faq {
  background-color: #eef8ff;
}

.faq-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.faq-lead {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 15px;
}

.faq-list {
  display: grid;
  gap: 12px;
}


/* 質問全体 */

.faq-item {
  overflow: hidden;
  border: 1px solid #d8edf8;
  border-radius: 16px;
  background-color: #ffffff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: #9bd7f7;
  box-shadow: 0 14px 35px rgba(7, 28, 51, 0.07);
}


/* 質問部分 */

.faq-question {
  display: grid;
  grid-template-columns: 42px 1fr 44px;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-q,
.faq-a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  font-weight: 700;
}

.faq-q {
  color: var(--blue);
  background-color: #e5f5ff;
}

.faq-question-text {
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}


/* 右側の＋ */

.faq-toggle {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #e5f5ff;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
  background-color: #29a8f3;
  content: "";
  transition: transform 0.25s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いたら＋を−にする */

.faq-item[open] .faq-toggle {
  background-color: #29a8f3;
}

.faq-item[open] .faq-toggle::before {
  background-color: #ffffff;
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
  background-color: #ffffff;
}


/* 回答部分 */

.faq-answer {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 0 88px 30px 28px;
}

.faq-a {
  color: #ffffff;
  background-color: var(--blue);
}

.faq-answer p {
  margin: 0;
  padding-top: 5px;
  color: #657d91;
  font-size: 14px;
  line-height: 2;
}


/* ホバー */

.faq-item:hover {
  border-color: #a9dcf7;
}

/* =========================
お問い合わせ・申し込みフォーム
========================= */

.application {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(41, 168, 243, 0.09),
      transparent 28%
    ),
    #f7fbfe;
}

.application-container {
  max-width: 1040px;
}

.application-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.application-lead {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 15px;
  line-height: 2;
}


/* フォーム全体 */

.application-form {
  padding: 56px;
  border: 1px solid #d8edf8;
  border-radius: 26px;
  background-color: #ffffff;
  box-shadow: 0 24px 60px rgba(7, 28, 51, 0.08);
}

.form-required-note {
  margin-bottom: 35px;
  color: #778b9d;
  font-size: 12px;
  text-align: right;
}

.form-required-note span {
  margin-right: 5px;
  color: #ffffff;
  background-color: var(--blue);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}


/* 2列 */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 28px;
}

.form-field {
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}


/* ラベル */

.form-field label,
.form-choice legend {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.required,
.optional {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 7px;
  border-radius: 4px;
  vertical-align: 2px;
  font-size: 9px;
  font-weight: 700;
}

.required {
  color: #ffffff;
  background-color: var(--blue);
}

.optional {
  color: #70899d;
  background-color: #edf5fa;
}


/* 入力欄 */

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfe3ef;
  border-radius: 11px;
  outline: none;
  color: var(--navy);
  background-color: #fbfdff;
  font-family: inherit;
  font-size: 15px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background-color 0.2s;
}

.form-field input {
  height: 58px;
  padding: 0 17px;
}

.form-field textarea {
  min-height: 170px;
  padding: 17px;
  resize: vertical;
  line-height: 1.8;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a3b1bd;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #29a8f3;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(41, 168, 243, 0.1);
}


/* 単位付き入力 */

.form-unit {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #cfe3ef;
  border-radius: 11px;
  background-color: #fbfdff;
}

.form-unit:focus-within {
  border-color: #29a8f3;
  box-shadow: 0 0 0 4px rgba(41, 168, 243, 0.1);
}

.form-unit input {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.form-unit input:focus {
  box-shadow: none;
}

.form-unit > span {
  flex-shrink: 0;
  padding: 0 19px;
  color: #778c9e;
  font-size: 14px;
  font-weight: 700;
}


/* ラジオボタン */

.form-choice {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
}

.radio-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.radio-card {
  display: flex !important;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  margin: 0 !important;
  padding: 14px 16px;
  border: 1px solid #cfe3ef;
  border-radius: 11px;
  background-color: #fbfdff;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background-color 0.2s;
}

.radio-card:hover {
  border-color: #8fd3ff;
  background-color: #f3faff;
}

.radio-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.radio-mark {
  position: relative;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  border: 2px solid #b8d6e7;
  border-radius: 50%;
  background-color: #ffffff;
}

.radio-card input:checked + .radio-mark {
  border-color: #29a8f3;
}

.radio-card input:checked + .radio-mark::after {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background-color: #29a8f3;
  content: "";
}

.radio-card:has(input:checked) {
  border-color: #29a8f3;
  background-color: #eef8ff;
}


/* 同意欄 */

.privacy-check {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  max-width: 720px;
  margin: 42px auto 0;
  color: var(--navy);
  font-size: 13px;
  cursor: pointer;
}

.privacy-check input {
  position: absolute;
  opacity: 0;
}

.checkbox-mark {
  position: relative;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  border: 2px solid #b8d6e7;
  border-radius: 5px;
  background-color: #ffffff;
}

.privacy-check input:checked + .checkbox-mark {
  border-color: var(--blue);
  background-color: var(--blue);
}

.privacy-check input:checked + .checkbox-mark::after {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  transform: rotate(45deg);
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  content: "";
}

.privacy-check small {
  display: block;
  margin-top: 5px;
  color: #8093a3;
  font-size: 10px;
  line-height: 1.7;
}


/* 送信ボタン */

.form-submit-area {
  margin-top: 35px;
  text-align: center;
}

.form-submit {
  display: inline-flex;
  min-width: 360px;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 34px;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #071c33 0%,
      #1769aa 100%
    );
  box-shadow: 0 18px 35px rgba(7, 28, 51, 0.18);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 45px rgba(7, 28, 51, 0.24);
}

.form-submit-area p {
  margin: 15px 0 0;
  color: #8597a6;
  font-size: 10px;
}




/* =========================
フッター
========================= */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 4%;
  background-color: var(--navy);
}

.footer-logo {
  color: var(--white);
}

.footer-logo .logo-mark {
  color: var(--navy);
  background-color: var(--white);
}

.footer p {
  margin-bottom: 0;
  color: #8193a6;
  font-size: 11px;
}

/* 仕事内容だけ */
.work .section-heading{
    display: block;
}

.work .heading-text{
    margin-top: 24px;
    margin-left: 0;
    max-width: 520px;
    text-align: left;
}


/* =========================
タブレット
========================= */

@media screen and (max-width: 1000px) {

  .header {
  min-height: 68px;
  padding: 12px 16px;
}

  .reason-card {
    padding: 70px 40px 50px;
  }

  .reason-big {
    font-size: 70px;
  }

  .reason-small {
    font-size: 22px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    display: block;
  }

  .heading-text {
    margin-top: 24px;
  }

  .comparison-area {
    grid-template-columns: 1fr;
  }

  .comparison-arrow {
    margin: -10px auto;
    transform: rotate(90deg);
  }

  .work-list{
    grid-template-columns:repeat(2,1fr);
}

  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

   .license-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .license-image-area {
    max-width: 520px;
    margin: 0 auto;
  }

  .income-layout {
    grid-template-columns: 1fr;
  }

  .simulator-panel {
    position: static;
  }

  .honeycomb {
    max-width: 780px;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px 7px;
  }

  .hexagon:nth-child(1),
  .hexagon:nth-child(4),
  .hexagon:nth-child(7),
  .hexagon:nth-child(10) {
    grid-column: 1 / span 2;
  }

  .hexagon:nth-child(2),
  .hexagon:nth-child(5),
  .hexagon:nth-child(8) {
    grid-column: 3 / span 2;
  }

  .hexagon:nth-child(3),
  .hexagon:nth-child(6),
  .hexagon:nth-child(9) {
    grid-column: 5 / span 2;
  }
  .support-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .support-heading {
    position: static;
  }

  .support-lead {
    max-width: 620px;
  }

  .greeting-container {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .greeting-image-area {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .application-form {
    padding: 42px 34px;
  }

  .radio-list {
    grid-template-columns: 1fr;
  }


}


/* スマホ */

@media screen and (max-width: 700px) {


  .logo-image {
  width: 38px;
  height: 38px;
}

  .greeting-container {
    gap: 52px;
  }

  .greeting-image-area {
    padding-bottom: 55px;
  }

  .greeting-image {
    border-radius: 20px;
  }

  .greeting-name-box {
    right: 0;
    padding: 20px 22px;
  }

  .greeting-name {
    font-size: 22px;
  }

  .greeting-catch {
    margin-bottom: 28px;
    font-size: 21px;
  }

  .greeting-text {
    font-size: 14px;
    line-height: 2;
  }

  .greeting-sign {
    margin-top: 32px;
  }

}



/* =========================
スマホ
========================= */

@media screen and (max-width: 700px) {

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 72px 0;
  }

  .header {
    padding: 18px 16px;
  }

  .logo {
    font-size: 12px;
  }

  

  .header-button {
    padding: 9px 17px;
    font-size: 11px;
  }


  /* ファーストビュー */

  .hero {
    min-height: auto;
    padding: 130px 20px 72px;
  }

  .hero::before {
    top: 4%;
    right: -55%;
    width: 120vw;
    height: 120vw;
  }

  .hero::after {
    display: none;
  }

  .hero-subtitle {
    font-size: 9px;
  }

  .hero-title {
    margin-bottom: 24px;
    font-size: clamp(39px, 12vw, 59px);
    line-height: 1.35;
  }

  .hero-text br {
    display: none;
  }

  .hero-buttons {
    display: block;
    margin-bottom: 42px;
  }

  .main-button {
    width: 100%;
  }

  .text-button {
    display: table;
    margin: 22px auto 0;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-point {
    min-height: 85px;
    border-right: none;
    border-bottom: 1px solid rgba(7, 28, 51, 0.14);
  }

  .hero-point:last-child {
    border-bottom: none;
  }


  /* 共通 */

  .section-title {
    font-size: 34px;
  }


  /* 3つのなし */

  .risk-heading-box {
    margin-bottom: 45px;
    padding: 8px 24px 12px;
  }

  .reason-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    border: none;
    background-color: transparent;
  }

  .reason-card {
    min-height: auto;
    padding: 58px 28px 42px;
    border: 2px solid #d9eef9;
  }

  .reason-card:last-child {
    border-right: 2px solid #d9eef9;
  }

  .reason-card-main {
    transform: none;
    border-top: 5px solid #13a9ea;
  }

   .reason-icon {
    top: 30px;
    right: 25px;
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .reason-big {
    font-size: 72px;
  }

  .reason-small {
    margin-top: 12px;
    font-size: 22px;
  }

  .reason-card h3 {
    font-size: 24px;
  }

  .reason-card p {
    font-size: 14px;
  }


  .risk-item {
    position: relative;
    min-height: auto;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 42px 0;
  }

  .risk-icon {
    display: none;
  }

  .risk-content h3 {
    font-size: 28px;
  }

  .about-container{

grid-template-columns:1fr;

gap:50px;

}

.about-image{

order:1;

}

.about-text{

order:2;

}

.about-lead{

font-size:22px;

}

.license-title-box {
    width: 100%;
    padding: 22px 20px;
  }

  .license-title-box h2 {
    font-size: 36px;
  }

  .license-title-box p {
    font-size: 21px;
  }

  .license-intro {
    margin-bottom: 45px;
    font-size: 14px;
  }

  .license-certificate {
    min-height: 420px;
    padding: 60px 24px 34px;
  }

  .certificate-circle {
    width: 170px;
    height: 170px;
    font-size: 58px;
  }

  .license-definition {
    padding: 24px 22px;
  }

  .license-description p {
    font-size: 14px;
  }


  .appeal-heading {
    margin-bottom: 45px;
  }

 /* 10の魅力をスマホで3・4・3配置 */

.honeycomb {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px 4px;
  width: 100%;
}

/* いったん全て解除 */
.hexagon:nth-child(n) {
  grid-column: auto;
}

/* 1段目：3個 */
.hexagon:nth-child(1) {
  grid-column: 1 / span 4;
}

.hexagon:nth-child(2) {
  grid-column: 5 / span 4;
}

.hexagon:nth-child(3) {
  grid-column: 9 / span 4;
}

/* 2段目：4個 */
.hexagon:nth-child(4) {
  grid-column: 1 / span 3;
}

.hexagon:nth-child(5) {
  grid-column: 4 / span 3;
}

.hexagon:nth-child(6) {
  grid-column: 7 / span 3;
}

.hexagon:nth-child(7) {
  grid-column: 10 / span 3;
}

/* 3段目：3個 */
.hexagon:nth-child(8) {
  grid-column: 1 / span 4;
}

.hexagon:nth-child(9) {
  grid-column: 5 / span 4;
}

.hexagon:nth-child(10) {
  grid-column: 9 / span 4;
}

.hexagon {
  width: 100%;
  aspect-ratio: 1 / 1.12;
}

.hexagon-inner {
  padding: 10px 4px;
}

.hexagon-icon {
  width: 27px;
  height: 27px;
  margin-bottom: 5px;
  font-size: 11px;
}

.hexagon h3 {
  margin-bottom: 0;
  font-size: 10px;
  line-height: 1.35;
}

.hexagon p {
  display: none;
}

.hexagon-number {
  top: 17%;
  left: 15%;
  font-size: 7px;
}

.hexagon-main {
  transform: none;
}

  .hexagon {
    aspect-ratio: 1 / 1.12;
  }

  .hexagon-main {
    transform: none;
  }

  .hexagon-inner {
    padding: 22px 14px;
  }

  .hexagon-number {
    top: 18%;
    left: 15%;
    font-size: 9px;
  }

  .hexagon-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    font-size: 15px;
  }

  .hexagon h3 {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.4;
  }

  .hexagon p {
    display: none;
  }


/* 比較・スマホ */

.comparison {
  padding: 70px 0 60px;
}

.comparison .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.comparison-heading {
  margin-bottom: 30px;
  padding: 0 20px;
}

.comparison .section-subtitle {
  margin-bottom: 10px;
  font-size: 10px;
}

.comparison .section-title {
  margin: 0;
  font-size: 38px;
}

.comparison-table-wrap {
  width: 100%;
  margin: 0;
  overflow-x: auto;
  border-radius: 0;
}

.comparison-table {
  width: 100%;
  min-width: 780px;
  margin: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 14px;
}

.comparison-table thead th,
.comparison-table tbody th {
  font-size: 14px;
}

.comparison-table tbody td {
  font-size: 13px;
}

.comparison-table-wrap::after {
  display: block;
  padding: 12px 0;
  color: #71879a;
  background-color: #eef8ff;
  content: "← 横にスクロールできます →";
  font-size: 11px;
  text-align: center;
}

.comparison-note {
  margin: 15px 0 0;
  padding: 0 20px;
  font-size: 10px;
}

  /* 仕事内容 */

  .work-list {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 330px;
    padding: 35px 28px;
  }

  .simulator-heading {
    margin-bottom: 35px;
  }

  .simulator-box {
    width: 100%;
  }

  .simulator-panel {
    padding: 34px 24px;
    border-radius: 18px;
  }

  .simulator-title {
    margin-bottom: 38px;
    font-size: 22px;
  }

  .range-group {
    margin-bottom: 34px;
  }

  .range-value span {
    font-size: 27px;
  }

  .range-value small {
    font-size: 15px;
  }

  .result-price span {
    font-size: 52px;
  }

.income-pattern-card{

padding:28px 22px;

}

.pattern-title-small{

font-size:21px;

}

.pattern-price strong{

font-size:46px;

}

.pattern-catch{

font-size:42px;

}

.pattern-number{

font-size:42px;

}
.income-layout {
    gap: 30px;
  }

  .simulator-panel {
    padding: 34px 24px;
    border-radius: 18px;
  }

  .simulator-title {
    margin-bottom: 38px;
    font-size: 22px;
  }

  .range-group {
    margin-bottom: 34px;
  }

  .range-value span {
    font-size: 27px;
  }

  .range-value small {
    font-size: 15px;
  }

  .result-price span {
    font-size: 52px;
  }

 .circle-grid{

grid-template-columns:repeat(2,1fr);

gap:35px 20px;

}

.circle{

width:130px;

height:130px;

font-size:40px;

}

.circle-item h3{

font-size:16px;

}

.support-container {
    gap: 42px;
  }

  .support-message {
    max-width: 100%;
    padding: 22px;
  }

  .support-message p {
    font-size: 19px;
  }

  .support-flow::before {
    left: 24px;
  }

  .support-item {
    grid-template-columns: 48px 1fr;
    gap: 17px;
    padding-bottom: 35px;
  }

  .support-icon {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }
  .support-number {
    display: none;
  }

  .support-content {
    padding: 26px 21px;
    border-radius: 16px;
  }

  .support-content h3 {
    font-size: 21px;
  }

  .support-content > p {
    font-size: 13px;
  }

  .support-content ul {
    display: grid;
  }

  .support-content li {
    width: fit-content;
  }


  /* 料金 */

  .price-card {
    padding: 34px 24px;
  }

  .price-number strong {
    font-size: 54px;
  }

  .greeting-container {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .greeting-image-area {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .greeting-container {
    gap: 52px;
  }

  .greeting-image-area {
    padding-bottom: 55px;
  }

  .greeting-image {
    border-radius: 20px;
  }

  .greeting-name-box {
    right: 0;
    padding: 20px 22px;
  }

  .greeting-name {
    font-size: 22px;
  }

  .greeting-catch {
    margin-bottom: 28px;
    font-size: 21px;
  }

  .greeting-text {
    font-size: 14px;
    line-height: 2;
  }

  .greeting-sign {
    margin-top: 32px;
  }

  .faq-heading {
    margin-bottom: 36px;
  }

  .faq-question {
    grid-template-columns: 34px 1fr 36px;
    gap: 12px;
    min-height: 78px;
    padding: 18px 16px;
  }

  .faq-q,
  .faq-a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .faq-question-text {
    font-size: 14px;
  }

  .faq-toggle {
    width: 34px;
    height: 34px;
  }

  .faq-answer {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 0 18px 24px 16px;
  }

  .faq-answer p {
    font-size: 13px;
    line-height: 1.9;
  }

  .application-heading {
    margin-bottom: 38px;
  }

  .application-form {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .form-required-note {
    margin-bottom: 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-field input {
    height: 54px;
    font-size: 14px;
  }

  .form-field textarea {
    font-size: 14px;
  }

  .privacy-check {
    margin-top: 32px;
  }

  .form-submit {
    width: 100%;
    min-width: 0;
    min-height: 62px;
  }



  /* フッター */

  .footer {
    display: block;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 22px;
  }

#about,
#appeal,
#work,
#price,
#greeting,
#faq,
#application {
  scroll-margin-top: 100px;
}
}

/* =========================
スマホ・ハンバーガーメニュー最終版
========================= */

@media screen and (max-width: 1000px) {
  .header {
    min-height: 74px;
    padding: 12px 20px;
  }

  /* PC用の問い合わせボタンを隠す */
  .header > .header-button {
    display: none;
  }

  /* ハンバーガーボタンを表示 */
  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: block;
    flex-shrink: 0;
    margin-left: auto;
  }

  /* 右から出るメニュー */
  .header-nav {
    position: fixed;
    z-index: 1001;
    top: 74px;
    right: 0;

    display: block;
    width: min(340px, 88%);
    height: calc(100vh - 74px);
    margin: 0;
    padding: 32px 24px;

    overflow-y: auto;
    visibility: hidden;

    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: -15px 20px 45px rgba(7, 28, 51, 0.15);

    opacity: 0;
    transform: translateX(100%);

    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  /* 開いた状態 */
  .header-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .header-menu {
    display: block;
  }

  .header-menu li {
    border-bottom: 1px solid #d8edf8;
  }

  .header-menu a {
    display: block;
    padding: 18px 4px;
    color: var(--navy);
    font-size: 15px;
  }

  .header-menu a::after {
    display: none;
  }

  /* 三本線から×へ */
  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mobile-contact{
    display:block;
    margin-top:30px;
}

.mobile-contact-btn{
    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;
    height:56px;

    background:#1769aa;
    color:#fff;
    border-radius:50px;

    font-weight:700;
    font-size:15px;

    transition:.3s;
}

.mobile-contact-btn:hover{
    background:#0d5488;
}

  .about-container {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  /* 画像を上に表示 */
  .about-image {
    width: 100%;
    order: 1;
  }

  .about-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px;
  }

  /* タイトルと文章を画像の下へ */
  .about-text {
    width: 100%;
    order: 2;
  }

  .about-text .section-subtitle {
    margin-bottom: 10px;
  }

  .about-text .section-title {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1.4;
  }

  .about-lead {
    margin: 20px 0;
    font-size: 19px;
    line-height: 1.8;
  }

  .about-text p {
    font-size: 14px;
    line-height: 2;
  }

  .about-list {
    margin-top: 28px;
  }

  .about-list li {
    margin-bottom: 14px;
    padding-left: 28px;
    font-size: 14px;
    line-height: 1.8;
  }

 
}
