* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /*font-family: "Yu Gothic", "Hiragino Sans", "Meiryo", sans-serif;*/
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.875;
  color: #333;
  font-size: 1rem;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  /* text-decoration: none; */
  background-color: transparent;
  outline: 0;
  color: #0047b3;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/*html {
  scroll-behavior: smooth;
}*/

.gFooter_copys {
  padding: 40px 0;
  text-align: center;
  line-height: 1;
  background-color: #f8f8f8;
}
.gFooter_copy {
  color: #333;
  font-size: 0.75rem;
  line-height: 1;
}

/* =====================================
MV
===================================== */

.mv {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.mv-pc,
.mv-sp {
  position: relative;
}

.mv-pc img,
.mv-sp img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
PCボタン
========================= */

.mv-btn-pc {
  position: absolute;
  left: 3.2%;
  top: 63.8%;
  width: 46.2%;
  height: 10.7%;
  display: block;
  cursor: pointer;
  z-index: 2;
}

/* =========================
スマホボタン
========================= */

.mv-btn-sp {
  position: absolute;
  left: 4%;
  top: 53.8%;
  width: 92%;
  height: 8.8%;
  display: block;
  cursor: pointer;
  z-index: 2;
}

/* =========================
表示切替
========================= */

.mv-pc {
  display: block;
}

.mv-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .mv-pc {
    display: none;
  }

  .mv-sp {
    display: block;
  }
}
<!--.hero-image-section {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.hero-image-wrap {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

/* PC用ボタン位置 */
.hero-button-link {
  position: absolute;

  left: 3.5%;
  top: 59%;

  width: 45%;
  height: 10%;

  display: block;
  z-index: 10;
}

/* スマホ */
@media (max-width: 768px) {
  .hero-button-link {
    left: 6%;
    top: 58%;
    width: 88%;
    height: 11%;
  }
}
-->

/* ---------- Hero ---------- */

.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #edf6ff 0%, #dcecff 100%);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.4;
  color: #0047b3;
  margin-bottom: 25px;
}
.hero-title span {
  font-size: 32px;
  display: inline-block;
}

.hero-sub {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 700;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.cta-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff6b00;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 20px 60px;
  border-radius: 60px;
  transition: 0.3s;
  text-decoration: none;
}

.cta-btn a:hover {
  transform: translateY(-3px);
}

.note {
  margin-top: 15px;
  font-size: 12px;
  color: #666;
}

/* ---------- Section ---------- */

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #0047b3;
  margin-bottom: 60px;
  font-weight: 700;
  line-height: 1.5;
}
.section-txt {
  max-width: 900px;
  margin: 60px auto;
}
.section-txt p {
  display: flex;
  justify-content: center;
}

/* ---------- Trouble ---------- */

.trouble {
  background: #fff;
}

.trouble-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trouble-card {
  background: #f7f9fc;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.trouble-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #0047b3;
}

.solution {
  margin-top: 50px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #0047b3;
}

/* ---------- Scholarship ---------- */

.scholarship {
  background: #fafaf2;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.type-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.type-card h3 {
  margin-bottom: 10px;
  color: #0047b3;
}

/* ---------- Feature ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  padding: 25px;
  border-left: 5px solid #0056c7;
  /*background: #f8fbff;*/
  background: #fff;
}

.feature-item h3 {
  color: #0056c7;
  margin-bottom: 10px;
}

/* ---------- MOVIE ---------- */

.movie {
  background: #f5f9ff;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.movie-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.movie-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.movie-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.movie-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0047b3;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 40px;
  border-radius: 60px;
  transition: 0.3s;
  margin-top: 20px;
  text-decoration: none;
}
.movie-btn a:hover {
  transform: translateY(-3px);
}

/* ---------- STEP ---------- */

.step {
  background: #f5f9ff;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.step-number {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #0056c7;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 20px;
}

/* ---------- CTA ---------- */

.bottom-cta {
  background: linear-gradient(135deg, #0056c7, #007dff);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.bottom-cta h2 {
  font-size: 48px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.bottom-cta .cta-btn {
  background: #ff6b00;
}

/* ==========================
COMPARE
========================== */

.compare {
  background: #fff;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.compare-card {
  position: relative;
  background: #fff;
  border: 1px solid #dbe7f8;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.compare-card h3 {
  color: #0047b3;
  margin-bottom: 20px;
  font-size: 24px;
  order: 2;
}

.compare-card .compare-sub-title {
  font-weight: 700;
  margin-bottom: 25px;
  order: 1;
}
.compare-card .compare-sub-title span {
  background: linear-gradient(transparent 82%, #cddc39 82%);
  padding-bottom: 10px;
}

.compare-card p {
  margin-bottom: 25px;
  order: 3;
}

.compare-card a {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #0047b3;
  border-radius: 50px;
  color: #0047b3;
  font-weight: 700;
  order: 4;
  width: 60%;
  text-align: center;
  margin: auto;
  text-decoration: none;
}

.recommend {
  background: #0047b3;
  color: #fff;
}

.recommend h3 {
  color: #fff;
}

.recommend a {
  background: #fff;
  color: #0047b3;
  border: none;
}

.label {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #ffcf00;
  color: #333;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
}

.icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 900px;
  margin: auto;
}
.link-list p {
  position: relative;
  padding-left: 20px;
}
.link-list p::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  /*border-radius: 1px;*/
  background: #0047b3;
}

/* ---------- SP ---------- */

@media (max-width: 768px) {
  .hero {
    padding-top: 110px;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
  .section-txt {
    margin: 40px auto;
  }

  .trouble-grid,
  .type-grid,
  .step-grid,
  .movie-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .solution {
    font-size: 28px;
  }

  .bottom-cta h2 {
    font-size: 32px;
  }

  .cta-btn {
    width: 100%;
    margin-top: 40px;
  }
  .cta-btn a {
    font-size: 1.0625rem;
    padding: 20px 30px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-card {
    padding: 30px 20px;
  }
}
