* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #1b1b1b;
  background: #f5f7fb;
  line-height: 1.7;
}

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

.container {
  width: min(680px, 92vw);
  margin: 0 auto;
}

.l-page {
  overflow-x: hidden;
}

.fv {
  position: relative;
  background: #ffffff;
  padding: 100px 0 0;
}

.fv__bg {
  position: absolute;
  inset: 0 0 auto 0;
  height: 210px;
  z-index: 0;
  overflow: hidden;
}

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

.fv__inner {
  position: relative;
  z-index: 1;
  padding: 12px 20px 24px;
  max-width: 400px;
  margin: auto;
}

.fv__logo {
  width: 120px;
  margin: 0 auto 16px;
}

.fv__title {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.35;
  color: #0a59a6;
  font-weight: 700;
}
.fv__title-highlight {
  font-size: 50px;
}
.fv__lead {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #2f2f2f;
  position: relative;
  z-index: 2;
}

.fv__lead-highlight {
  display: inline-block;
  background: #f7ea4c;
  padding: 2px 6px;
  font-weight: 700;
  margin-bottom: 6px;
}

.fv__illustration {
  position: absolute;
  right: -20px;
  top: 60px;
  width: 160px;
  z-index: 1;
}

.fv__photo {
  margin-top: 16px;
}

.fv__photo img {
  width: 100%;
  height: auto;
}

@media (min-width: 480px) {
  .fv {
    max-width: 400px;
    margin: auto;
    overflow: hidden;
  }
}

.intro {
  padding: 28px 0 40px;
  background: #ffffff;
  background-image: url(../image/intro-bg.png);
  background-position: center bottom;
  background-size: cover;
}

.intro__catch {
  color: #0a59a6;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 12px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 24px;
}
.intro__catch::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #0a59a6;
}
.intro__title {
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: #0a59a6;
}

.intro__text {
  font-size: 13px;
  line-height: 2.2;
  color: #1b1b1b;
}

.intro__text p {
  margin: 0;
}

.intro__strong {
  font-weight: 700;
  color: #0a59a6;
}
.intro__red {
  font-weight: 700;
  color: #C0272D;
  font-size: 20px;
}
.intro__yellow {
  display: inline;
  background: #f7ea4c;
  padding: 2px 6px;
  font-weight: 700;
}

.intro__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0 18px;
}

.intro__point {
  aspect-ratio: 1 / 1;
  background: #CBE7FC;
  border-radius: 50%;
  padding: 20px 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: #0a59a6;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.intro__point p {
  margin: 0;
}
.intro__point-icon {
  width: auto;
  height: 56px;
  margin: 0 auto 8px;
}
.intro__point-icon:first-child {
  height: 40px;
}
.intro__point-icon img {
  display: block;
  margin: auto;
  height: 100%;
}
.intro__cta {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #E6AB52 0%, #DE8055 100%);
  border: 5px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 0 #d88a2a;
  margin-bottom: 20px;
  box-shadow:
  0 4px 0 rgba(0, 0, 0, 0.08),
  0 7px 0 rgba(0, 0, 0, 0.05),
  0 6px 6px rgba(0, 0, 0, 0.12);
  font-size: 18px;
  position: relative;
  transition: .3s;
}
.intro__cta:hover {
  opacity: .8;
}
.intro__cta img {
  width: 30px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.intro__divider {
  border-bottom: 2px dashed #78a9dc;
  margin: 22px 0;
}

.intro__reason {
  margin-top: 56px;
}
.intro__reason h3 {
  font-size: 18px;
  color: #0a59a6;
  margin: 0 0 10px;
  padding-left: 15px;
  position: relative;
}
.intro__reason h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #81B0D4;
}

.intro__reason p {
  font-size: 13px;
  margin: 0 0 6px;
}

.intro__highlight {
  font-weight: 700;
  color: #0a59a6;
  background: #f7ea4c;
  display: inline-block;
  padding: 2px 4px;
}

.intro__note {
  font-size: 12px;
  color: #4a4a4a;
}

.intro__image {
  margin: 12px 0 18px;
}

.intro__bottom {
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0px;
  font-size: 24px;
  color: #0a59a6;
  font-weight: 700;
}
.intro__bottom p {
  margin-bottom: 8px;
}

.intro__arrows {
  display: grid;
  gap: 6px;
  justify-items: center;
  margin-top: 6px;
}

.intro__arrows span {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 12px solid #0a59a6;
  opacity: 0.9;
}

@media (min-width: 480px) {
  .container {
    width: min(820px, 92vw);
    max-width: 400px;
  }

  .intro {
    padding: 48px 0 60px;
  }

  .intro__title {
    font-size: 24px;
  }

  .intro__text,
  .intro__reason p {
    font-size: 14px;
  }

  .intro__reason h3 {
    font-size: 20px;
  }
}

.online {
  padding: 40px 0;
  background-color: #fff;
}

.online__block {
  margin-bottom: 12px;
  background-color: #FEFFFF;
}

.online__image {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 12px;
  padding-bottom: 0;
}

.online__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 10px;
}

.online__card-title {
  background: #0a59a6;
  color: #fff;
  padding: 5px 16px;
  border-radius: 8px 8px 0 0;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin: 0;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.online__card-text {
  background: #F6F7F2;
  color: #000;
  padding: 12px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

.online__highlight {
  margin: 24px 0 16px;
  font-size: 18px;
  color: #0a59a6;
  font-weight: 700;
  line-height: 1.7;
}

.online__highlight span {
  background: #f7ea4c;
  padding: 2px 4px;
}
.online__highlight--red {
  color: #C0272D;
}

.online__photo {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .online {
    padding: 48px 0 60px;
  }

  .online__card-title {
    font-size: 17px;
  }

  .online__card-text {
    font-size: 13px;
  }

  .online__highlight {
    font-size: 16px;
    text-align: center;
  }
}

.reason {
  padding: 0 0 40px;
  background: #ffffff;
}

.reason__header {
  text-align: center;
  margin-bottom: 24px;
}

.reason__logo {
  width: 160px;
  margin: 0 auto 6px;
}

.reason__title {
  margin: 0;
  font-size: 22px;
  color: #0a59a6;
  font-weight: 700;
}

.reason__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0 22px;
}

.reason__card {
  border: 2px solid #0a59a6;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.reason__card-title {
  background: #0a59a6;
  color: #fff;
  font-weight: 700;
  margin: 0;
  padding: 8px 4px;
  font-size: 16px;
}

.reason__card-sub {
  margin: 10px 0 6px;
  font-weight: 700;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}

.reason__card-image {
  width: 80%;
  margin: auto;
  padding: 8px 10px 12px;
}

.reason__text {
  font-size: 13px;
  line-height: 2;
  color: #1b1b1b;
}

.reason__text p {
  margin: 0;
}

.reason__highlight {
  color: #0060AF;
  background: #f7ea4c;
  display: inline-block;
  padding: 2px 4px;
  font-weight: 700;
}

.reason__red {
  color: #C0272D;
  font-weight: 700;
  font-size: 18px;
}

@media (min-width: 768px) {
  .reason__cards {
    gap: 18px;
  }

  .reason__title {
    font-size: 24px;
  }

  .reason__text {
    font-size: 14px;
  }
}

.support {
  background: #FEEECA;
  padding: 40px 0;
}

.support__header {
  text-align: center;
  color: #D1690C;
}

.support__header h2 {
  font-size: 28px;
  margin: 0 0 12px;
  font-weight: 700;
  border-top: 2px solid #D1690C;
  border-bottom: 2px solid #D1690C;
}

.support__header p {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #2f2f2f;
}

.support__list {
  display: grid;
  gap: 18px;
}

.support__card {
  background: #ffffff;
  border: 2px solid #5A4B24;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  padding: 8px;
}

.support__image img {
  width: 100%;
  height: auto;
  display: block;
}

.support__body {
  padding: 14px 14px 18px;
  color: #2f2f2f;
  line-height: 1.8;
  text-align: center;
}

.support__num {
  margin: 0;
  font-weight: 600;
  color: #D77800;
  margin-right: 5px;
}

.support__body h3 {
  margin: 6px 0 10px;
  font-size: 20px;
  color: #D77800;
  font-weight: 700;
  line-height: 1.6;
}

.support__body p {
  text-align: left;
  margin: 0;
  font-size: 13px;
}

@media (min-width: 768px) {
  .support {
    padding: 56px 0 64px;
  }

  .support__header h2 {
    font-size: 24px;
  }

  .support__list {
    gap: 22px;
  }
}

.easy {
  background: #F8EFEF;
  padding: 40px 0;
  color: #FF715C;
}

.easy__title {
  text-align: center;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  border-top: 2px solid #FF715C;
  border-bottom: 2px solid #FF715C;
  margin-bottom: 32px;
}

.easy__cards {
  display: grid;
  gap: 16px;
}

.easy__card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  color: #1b1b1b;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.easy__card-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 10px;
  background: #ff7b6b;
  color: #fff;
  padding: 10px 12px;
}

.easy__num {
  font-size: 32px;
  font-weight: 700;
}

.easy__card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.easy__card p {
  margin: 0;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  text-align: center;
}

.easy__text {
  text-align: center;
  margin: 24px 0 18px;
  font-size: 13px;
  color: #333;
  line-height: 1.8;
}

.easy__text p {
  margin: 0 0 8px;
}

.easy__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(to right, #F9BC00, #D57400);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 5px 0 #d88a2a;
  position: relative;
  transition: .3s;
}
.easy__cta:hover {
  opacity: .8;
}
.easy__cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: #f7a62b;
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .easy {
    padding: 56px 0 64px;
  }

  .easy__title {
    font-size: 30px;
  }

  .easy__cards {
    gap: 20px;
  }
}

.faqflow {
  background: #ffffff;
  padding: 40px 0;
}

.faqflow__title {
  text-align: center;
  font-size: 24px;
  color: #0a59a6;
  margin: 0 0 20px;
  font-weight: 700;
}

.faqflow__item {
  margin-bottom: 22px;
}

.faqflow__question {
  font-size: 18px;
  font-weight: 700;
  color: #0a59a6;
  margin: 0 0 10px;
  text-align: center;
}

.faqflow__box {
  background: #f6f7f2;
  border-radius: 5px;
  padding: 14px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.faqflow__box p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #2f2f2f;
}

.faqflow__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a59a6;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  transition: .3s;
}
.faqflow__btn:hover {
  opacity: .8;
}
.faqflow__btn::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.flow {
  display: grid;
  gap: 24px;
  margin-bottom: 22px;
}

.flow__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f6f7f2;
  border-radius: 5px;
  position: relative;
}

.flow__num {
  width: 36px;
  height: 36px;
  background: #5aa046;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 0 auto;
  position: absolute;
  top: -12px;
  left: -12px;
}
.flow__icon {
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0068B4;
  border-radius: 5px 0 0 5px;
}
.flow__icon img {
  display: block;
  margin: auto;
  width: 50%;
  height: auto;
}
.flow__body {
  padding: 10px;
  width: calc(100% - 80px);
}
.flow__body h3 {
  margin: 0 0 4px;
  color: #0a59a6;
  font-size: 16px;
  font-weight: 700;
}

.flow__body p {
  margin: 0;
  font-size: 12px;
  color: #2f2f2f;
}

.flow__cta {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #E6AB52 0%, #DE8055 100%);
  border: 5px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 0 #d88a2a;
  margin-bottom: 20px;
  box-shadow:
  0 4px 0 rgba(0, 0, 0, 0.08),
  0 7px 0 rgba(0, 0, 0, 0.05),
  0 6px 6px rgba(0, 0, 0, 0.12);
  font-size: 18px;
  position: relative;
  transition: .3s;
}
.flow__cta:hover {
  opacity: .8;
}
.flow__cta img {
  width: 30px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .faqflow {
    padding: 56px 0 72px;
  }

  .faqflow__title {
    font-size: 26px;
  }

  .flow__item {
    grid-template-columns: 56px 90px 1fr;
  }
}
