@charset "utf-8";

/* =========================
   Base / Variables
   ========================= */
:root {
  --maxw: 1100px;
  --bp-sp: 566px;
  --c-main: #1e78d7;
  --c-main-deep: #165db4;
  --c-sub: #69b7ff;
  --c-accent: #00a8a8;
  --c-bg: #f5faff;
  --c-card: #ffffff;
  --c-text: #1c2b3a;
  --c-muted: #5a6b7c;
  --c-border: #dbe8f6;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(23, 72, 133, .10);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--c-text);
  background: linear-gradient(180deg, #f8fcff 0%, #f2f8ff 100%);
  line-height: 1.9;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.inner {
  width: min(100% - 48px, var(--maxw)); /* PC左右24px */
  margin-inline: auto;
}

/* =========================
   Header
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid #e6eef8;
}

.topline {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
}

.topline h1 {
  margin: 0;
  font-size: clamp(1rem, 4vw, 1.8rem);
  line-height: 1;
  color: #555;
  letter-spacing: .01em;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: bold;
}

.color_red {
  color: #C42626;
}

.color_blue {
  color: var(--c-main);
}

.com {
  font-weight: normal;
  font-size: clamp(0.8rem, 4vw, 1.4rem);
  letter-spacing: -.05em;
}

.logo-link {
  flex-shrink: 0;
}

.subtitle {
  margin: 0;
  font-size: 0.92rem;
  color: #2d4d70;
  font-weight: normal;
  text-align: right;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-variant: normal;
  font-style: normal;
}

.global-nav {
  background: linear-gradient(90deg, var(--c-main) 0%, #2f90f5 100%);
  border-top: 1px solid rgba(255, 255, 255, .35);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.global-nav li {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.global-nav li:first-child {
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.global-nav a {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 12px 10px;
  transition: background .2s ease;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: .08em;
}

.global-nav a:hover {
  background: rgba(255, 255, 255, .13);
}

.global-nav a[aria-current="page"] {
  background: rgba(0, 0, 0, .16);
}

/* =========================
   Page Hero
   ========================= */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef7ff 0%, #e8f4ff 100%);
  border-bottom: 1px solid #d8e9fb;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 220px at 10% 0%, rgba(115, 185, 255, .16), transparent 65%),
    radial-gradient(900px 180px at 90% 20%, rgba(54, 146, 233, .12), transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 38px 0 34px;
  position: relative;
  z-index: 1;
}

.hero-icon-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  border: 1px solid #d6e7fa;
  box-shadow: 0 8px 20px rgba(26, 94, 165, .12);
  display: grid;
  place-items: center;
}

.hero-icon {
  width: 82px;
  height: auto;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #2f7dcf;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-title {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3.6vw, 2.45rem);
  line-height: 1.3;
  color: #175ba8;
  font-weight: 800;
}

.page-title ruby {
  white-space: nowrap;
  ruby-position: over;
}

.page-title rt {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0;
    color: #C42626;
    line-height: 1;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-variant: normal;
    font-style: normal;
}

.page-hero .lead {
  margin: 0;
  color: #295981;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.8;
}

/* =========================
   Divider wave
   ========================= */
.section-divider-wave {
  position: relative;
  z-index: 6;
  line-height: 0;
  pointer-events: none;
  height: 92px;
  margin-top: -24px;
  margin-bottom: -22px;
  background: linear-gradient(180deg, rgba(232, 244, 255, 0) 0%, #D9ECFB 62%, #F6FBFF 100%);
}

.section-divider-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.section-divider-wave .wave-back {
  fill: #B0D7F5;
}

.section-divider-wave .wave-mid {
  fill: #C2E1F8;
}

.section-divider-wave .wave-front {
  fill: url(#waveBottomGradTraining);
}

.section-divider-wave .wave-under {
  fill: url(#waveUnderGradTraining);
}

.section-divider-wave .wave-line {
  fill: none;
  stroke: #9FCEF3;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================
   Generic Section
   ========================= */
.section {
  padding: 44px 0;
}

.training-main {
  padding-top: 56px;
}

.card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  color: #1968bf;
  line-height: 1.35;
  font-weight: 800;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(194, 224, 247, 1) 0%, rgba(213, 233, 249, 1) 100%);
  padding: 0.6rem 1rem;
  text-align: center;
}

.card p {
  margin: 0;
  color: #24415f;
  font-size: 1.02rem;
  line-height: 1.9;
}

.card p + p {
  margin-top: 16px;
}

.lead-text {
  margin-bottom: 14px !important;
}

/* =========================
   highlight note
   ========================= */
.highlight-note {
  margin-top: 14px;
  border: 1px solid #d7e9fb;
  background: linear-gradient(180deg, #f7fcff 0%, #eef7ff 100%);
  color: #1f4f7e;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 700;
  line-height: 1.7;
}

/* =========================
   exercise cards
   ========================= */
.exercise-grid {
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 12px;
}

.exercise-card {
  border: 1px solid #d9e9fa;
  background: #f9fcff;
  border-radius: 12px;
  padding: 14px 12px 13px;
}

.exercise-card h4 {
    margin: 0 0 7px;
    color: #1b61ab;
    font-size: 1.4rem;
    line-height: 1.55;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.exercise-card .num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #2f8ae8;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 800;
}

.exercise-card p {
  margin: 0;
  color: #2a4f74;
  font-size: 0.94rem;
  line-height: 1.75;
  font-weight: 700;
}

/* step list */
.step-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.step-list li {
    position: relative;
    padding: 8px 8px 8px 28px;
    border: 1px solid #d9eaf9;
    border-radius: 8px;
    background: #ffffff;
    color: #B30000;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
}

.step-list li::before {
  content: "●";
  position: absolute;
  left: 12px;
  top: 12px;
  color: #B30000;
  font-size: 0.75rem;
}

/* =========================
   tool section
   ========================= */
.tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tool-card {
  border: 1px solid #d9e9fa;
  background: #f9fcff;
  border-radius: 12px;
  padding: 14px 12px 13px;
}

.tool-card h4 {
    margin: 0 0 7px;
    color: #1b61ab;
    font-size: 1.2rem;
    line-height: 1.55;
    font-weight: 800;
    text-align: center;
}

.tool-card p {
  margin: 0;
  color: #2a4f74;
  font-size: 0.94rem;
  line-height: 1.75;
  font-weight: 700;
}

/* =========================
   points section
   ========================= */
.point-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.point-card {
  border: 1px solid #d9e9fa;
  background: #f9fcff;
  border-radius: 12px;
  padding: 14px 12px 13px;
}

.point-card h4 {
    margin: 0 0 7px;
    color: #1b61ab;
    font-size: 1.2rem;
    line-height: 1.55;
    font-weight: 800;
    text-align: center;
}

.point-card p {
  margin: 0;
  color: #2a4f74;
  font-size: 0.94rem;
  line-height: 1.75;
  font-weight: 700;
}

.alert-note {
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid #f4cdcd;
  background: #fff4f4;
  color: #922a2a;
  font-weight: 700;
  padding: 12px 14px;
  line-height: 1.7;
}

/* =========================
   CTA
   ========================= */
.cta-section {
  padding-top: 0;
}

.cta-card {
  border-radius: var(--radius);
  border: 1px solid #d9eafb;
  background: linear-gradient(180deg, #f6fbff 0%, #edf6ff 100%);
  box-shadow: 0 8px 22px rgba(20, 81, 146, .08);
  padding: 28px 24px;
  text-align: center;
}

.cta-card img {
  margin-right: auto;
  margin-left: auto;
  display: block;
  max-height: 250px;
  width: auto;
  margin-bottom: 1rem;
}

.cta-card h3 {
  margin: 0 0 10px;
  color: #1a5ea8;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 800;
  line-height: 1.4;
}

.cta-card p {
  margin: 0;
  color: #325170;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 700;
}

.card2 {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px 28px;
    text-align: center;	/*
  border-radius: var(--radius);
  border: 1px solid #d9eafb;
  background: linear-gradient(180deg, #f6fbff 0%, #edf6ff 100%);
  box-shadow: 0 8px 22px rgba(20, 81, 146, .08);
  padding: 28px 24px;
  text-align: center;
	*/
}
.card2 img{
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-height: 250px;
    width: auto;
    margin-bottom: 1rem;
}
.card2 h3 {
    margin: 0 0 10px;
    color: #1a5ea8;
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
}

.card2 p {
  margin: 0;
  color: #325170;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 700;
}

.cta-buttons {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content:center;
}

.btn {
  display: inline-block;
  text-align: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  min-width: 270px;
  padding: 12px 18px;
  border: 1px solid #2f8ae8;
  color: #2f8ae8;
  background: #fff;
}

.btn-outline:hover {
  background: #eef6ff;
}

.btn-primary {
  min-width: 270px;
  padding: 12px 18px;
  border: 1px solid #c43838;
  color: #fff;
  background: linear-gradient(180deg, rgba(196, 38, 38, 1) 0%, rgba(220, 77, 77, 1) 68.4%, rgba(196, 38, 38, 1) 100%);
  box-shadow: 0 8px 18px #FCF2F2;
}


/* =========================
   Contact strip
   ========================= */
.contact-strip {
  padding: 36px 0 28px;
  background: linear-gradient(180deg, #eaf5ff 0%, #e2f1ff 100%);
  border-top: 1px solid #d5e8fb;
  border-bottom: 1px solid #d5e8fb;
}

.contact-strip .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.contact-strip p {
  margin: 0;
  color: #244f7b;
  font-weight: 700;
}

.btn-contact {
  flex-shrink: 0;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background-image: linear-gradient(180deg, rgba(196, 38, 38, 1) 0%, rgba(220, 77, 77, 1) 68.4%, rgba(196, 38, 38, 1) 100%);
  box-shadow: 0 8px 18px #FCF2F2;
  transition: transform .15s ease, box-shadow .2s ease;
}

.btn-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(196, 38, 38, .35);
}

/* =========================
   Footer
   ========================= */
.site-footer {
  background: #eef6ff;
  border-top: 1px solid #dbeafa;
  padding: 22px 0 24px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.footer-links a {
  color: #2c567f;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}

.footer-links a:hover {
  color: #1c6cc8;
  border-color: #1c6cc8;
}

.copyright {
  margin: 14px 0 0;
  text-align: center;
  color: #4f6881;
  font-size: .92rem;
  font-weight: 700;
}



.exercise_img{
    max-width: 800px;
    height: auto;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: block;
	margin-bottom: 1rem;
}
}
.exercise_img2{
    height: 100%;
    width: auto;
    margin-right: auto !important;
    margin-left: auto !important;
    display: block;
    max-height: 300px;
    margin-bottom: 1rem;
}
.exercise_img3{
    height: 100%;
    width: auto;
    margin-right: auto !important;
    margin-left: auto !important;
    display: block;
    max-height: 300px;
    margin-bottom: 2rem;
}
/* =========================
   Medium
   ========================= */
@media (max-width: 980px) {
  .exercise-grid {
    grid-template-columns: 1fr;
  }

  .tool-grid,
  .point-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .global-nav li {
    text-align: center;
  }

  .global-nav a {
    font-size: 0.92rem;
    padding: 11px 8px;
    letter-spacing: 0;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }

  .page-hero-inner {
    min-height: 220px;
  }

  .hero-icon-wrap {
    width: 104px;
    height: 104px;
  }

  .hero-icon {
    width: 72px;
  }
}

/* =========================
   Responsive (SP): 566px以下
   ========================= */
@media (max-width: 566px) {
  body {
    font-size: 15px;
    line-height: 1.8;
  }

  .inner {
    width: min(100% - 24px, var(--maxw));
  }

  .site-header {
    position: static;
  }

  .topline {
    min-height: auto;
    display: block;
    padding: 12px 0 10px;
  }

  .topline h1 {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
  }

  .subtitle {
    margin-top: 8px;
    text-align: center;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .global-nav ul {
    flex-wrap: wrap;
  }

  .global-nav li {
    flex: 1 1 50%;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

  .global-nav li:nth-child(3),
  .global-nav li:nth-child(5) {
    border-left: 1px solid rgba(255, 255, 255, .25);
  }

  .global-nav a {
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    display: block;
    text-align: center;
    color: #fff;
    font-weight: normal;
    font-size: 0.98rem;
    padding: 12px 10px;
    transition: background .2s ease;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    letter-spacing: .08em;
    font-variant: normal;
    font-style: normal;
  }

  .page-hero-inner {
    min-height: 180px;
    padding: 22px 0 18px;
    align-items: center;
    gap: 0;
  }

  .hero-icon-wrap {
    display: none;
  }

  .eyebrow {
    font-size: .78rem;
  }

  .page-title {
    font-size: 1.5rem;
    margin-bottom: 6px;
    line-height: 1.35;
  }

  .page-title rt {
    font-size: 0.6em;
  }

  .page-hero .lead {
    font-size: .96rem;
    line-height: 1.65;
  }

  .section-divider-wave {
    height: 68px;
    margin-top: -24px;
    margin-bottom: -14px;
  }

  .section-divider-wave .wave-line {
    stroke-width: 1.8;
  }

  .section {
    padding: 30px 0;
  }

  .training-main {
    padding-top: 40px;
  }

  .card {
    padding: 18px 14px;
  }

  .section-title {
    margin-bottom: 14px;
    font-size: 1.35rem;
    border-radius: 14px;
    padding: .58rem .72rem;
  }

  .card p {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .highlight-note {
    margin-top: 12px;
    padding: 10px 11px;
    font-size: 0.9rem;
  }

  .exercise-card,
  .tool-card,
  .point-card {
    padding: 11px 10px 10px;
  }

  .exercise-card h4,
  .tool-card h4,
  .point-card h4 {
    font-size: 0.95rem;
  }

  .exercise-card p,
  .tool-card p,
  .point-card p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .step-list li {
    padding: 8px 8px 8px 26px;
    font-size: 0.86rem;
  }

  .step-list li::before {
    left: 9px;
    top: 7px;
  }

  .alert-note {
    font-size: .9rem;
    padding: 10px 11px;
  }

  .cta-card {
    padding: 18px 14px;
  }

  .cta-card h3 {
    font-size: 1.12rem;
  }

  .cta-card p {
    font-size: 0.92rem;
  }

  .btn-primary {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding: 12px 14px;
  }

  .contact-strip {
    padding: 22px 0;
  }

  .contact-strip .inner {
    display: block;
    text-align: center;
  }

  .contact-strip p {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .btn-contact {
    width: 100%;
    max-width: 320px;
    padding: 12px 14px;
  }

	