@charset "UTF-8";
:root {
  --primary-color: #1f3b9e;
  --primary-color-light: #c3ecfc;
  --primary-color-dark: #1e2b5a;

  --secondary-color: #daeaff;
  --secondary-color-light: #cdd8ff;
  --secondary-color-dark: #4566da;

  --accent-color: #fffc00;
  --accent-color-light: #fffec6;
  --background-color: #ffffff;
  --background-color-secondary: #fdfccf;
  --text-color: #1e2b5a;
  --text-color-secondary: #ffffff;

  --Zen-Maru: 'Zen Maru Gothic', sans-serif;
  --Noto-Sans-JP: Noto Sans JP, Hiragino Sans, Meiryo, sans-serif;
  --Roboto: 'Roboto', sans-serif;

  --shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
body {
  background-color: var(--background-color);
  color: var(--text-color);
}
main {
  font-family: var(--Zen-Maru);
}
#main img {
  display: block;
  margin: auto;
}
@media (any-hover: hover) {
  main a {
    opacity: 1;
    transition: all ease 0.3s;
    cursor: pointer;
  }
  main a:hover {
    opacity: 0.7;
  }
}

/*============================
  common
============================*/
.pc {
  display: none;
}
.sp {
  display: block;
}
section[id] {
  position: relative;
}
.layout-inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}
.--text-highlight {
  background: linear-gradient(transparent 50%, var(--accent-color) 80%, transparent 100%);
}
.--text-center {
  text-align: center;
}
.--text-left {
  text-align: left;
}
.--text-right {
  text-align: right;
}
.--rounded-rectangle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color-light);
  color: var(--text-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  border-radius: 50px;
  padding: 4px 0;
}
@media (min-width: 1025px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .layout-inner {
    max-width: 1000px;
    /* max-width: 1065px;
    padding: 0; */
  }
}

/*============================
  CTA
============================*/
.md-contact {
  background-color: var(--background-color);
}

/*============================
#mainvisual
============================*/
#mainvisual {
  width: 100%;
  height: auto;
  text-align: center;
}
#mainvisual h1 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/*============================
#overview
============================*/
#overview {
  background-color: var(--primary-color-light);
  padding: 40px 0;
}
#overview .overview__content {
  font-weight: 900;
  line-height: 1.6;
}
#overview .overview__title {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}
#overview .overview__title .--fz-lg {
  font-size: 30px;
}
#overview .overview__img {
  margin-bottom: 30px;
}
#overview .overview__description {
  font-size: 16px;
  text-align: center;
  margin-bottom: 28px;
}
#overview .overview__description .--fz-lg {
  font-size: 23px;
}
#overview .overview__img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#overview .overview__img-wrap img {
  width: calc(100% / 2 - 5px);
  height: auto;
}

@media (min-width: 1025px) {
  #overview {
    padding: 50px 0;
  }
  #overview .overview__title {
    font-size: 34px;
    margin-bottom: 20px;
  }
  #overview .overview__title .--fz-lg {
    font-size: 48px;
  }
  #overview .overview__img {
    width: 45%;
    margin-bottom: 50px;
  }
  #overview .overview__description {
    font-size: 28px;
    padding: 0 20px;
    margin-bottom: 40px;
  }
  #overview .overview__description .--fz-lg {
    font-size: 32px;
  }
  #overview .overview__img-wrap {
    gap: 30px;
    width: 70%;
    margin: auto;
  }
  #overview .overview__img-wrap img {
    width: calc(100% / 2 - 15px);
    height: auto;
  }
}

/*============================
#case-example
============================*/
#case-example {
  padding: 40px 0;
}
#case-example::after {
  content: '';
  position: absolute;
  display: block;
  background: url(../img/icon-arrow-02.webp) no-repeat center center / contain;
  width: 220px;
  aspect-ratio: 6/1;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#case-example .case-example__content {
  font-weight: 900;
  line-height: 1.6;
}
#case-example .case-example__question {
  margin-bottom: 30px;
}
#case-example .case-example__img {
  max-width: 180px;
  margin-bottom: 10px;
}
#case-example .arrow-text {
  background: url('../img/icon-arrow-01.webp') no-repeat bottom / contain;
  max-width: 100px;
  font-size: 16px;
  text-align: center;
  padding-bottom: 15px;
  margin: 20px auto;
}
#case-example .case-example__description {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
#case-example .case-example__item {
  /* border: 2px solid #343a5a;
  border-radius: 18px; */
}
#case-example .case-example__item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-color-secondary);
  background: #343a5a;
  border-radius: 16px 16px 0 0;
  padding: 10px 5px;
}
#case-example .case-example__item-title .sub-title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
}
#case-example .case-example__item-title .sub-title::before,
#case-example .case-example__item-title .sub-title::after {
  content: '';
  width: 8px;
  aspect-ratio: 43/54;
}
#case-example .case-example__item-title .sub-title::before {
  background: url('../img/title-decoration.webp') no-repeat center center / contain;
}
#case-example .case-example__item-title .sub-title::after {
  background: url('../img/title-decoration.webp') no-repeat center center / contain;
  transform: scaleX(-1);
}
#case-example .case-example__item-title-name {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  /* flex: 1; */
}
#case-example .case-example__item-description {
  border: 2px solid #343a5a;
  border-radius: 0 0 18px 18px;
  padding: 15px;
}
#case-example .case-example__item-subtitle {
  font-size: 16px;
}
#case-example .case-example__item-subtitle.--rounded-rectangle {
  background: #a6ccff;
  padding: 5px 15px;
  width: 160px;
  gap: 5px;
  margin: 0 auto 10px;
  font-size: 14px;
}
#case-example .case-example__item-subtitle.--rounded-rectangle .--rounded-rectangle {
  background: var(--background-color);
  padding: 0 12px;
  width: auto;
  font-size: 14px;
}
#case-example .case-example__item-text {
  font-size: 14px;
  margin-bottom: 20px;
}
#case-example .case-example__item-message {
  position: relative;
}
#case-example .case-example__item-message::before {
  position: absolute;
  left: 0;
  content: '';
  display: block;
  background: url('../img/icon-point.webp') no-repeat center center / contain;
  width: 60px;
  aspect-ratio: 91/25;
  transform: translateX(-10px);
}
#case-example .case-example__item-message.--rounded-rectangle {
  font-size: 16px;
  background: #cce2ff;
  padding: 7px 10px 7px 50px;
}
#case-example .case-example__img-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 80%;
  margin: 0 auto 20px;
}
#case-example .case-example__img-wrap img {
}

@media (min-width: 1025px) {
  #case-example {
    padding: 50px 0;
  }
  #case-example::after {
    width: 500px;
    bottom: -80px;
  }
  #case-example .case-example__content {
    font-weight: 900;
    line-height: 1.6;
  }
  #case-example .case-example__question {
    margin-bottom: 50px;
    max-width: 750px;
    margin: 0 auto 50px;
  }
  #case-example .case-example__img {
    max-width: 100%;
    margin-bottom: 20px;
  }
  #case-example .case-example__answer {
    margin-bottom: 30px;
    max-width: 750px;
    margin: 0 auto 30px;
  }
  #case-example .arrow-text {
    max-width: 150px;
    font-size: 24px;
    padding-bottom: 20px;
    margin: 30px auto;
  }
  #case-example .case-example__description {
    font-size: 36px;
    width: 80%;
    margin: 0 auto 30px;
  }
  #case-example .case-example__list {
    max-width: 900px;
    margin: auto;
  }
  #case-example .case-example__item {
    /* border: 2px solid #343a5a;
    border-radius: 18px; */
  }
  #case-example .case-example__item-title {
    align-items: baseline;
    gap: 20px;
    font-size: 24px;
    border-radius: 16px 16px 0 0;
    padding: 15px;
  }
  #case-example .case-example__item-title .sub-title {
    gap: 5px;
    font-size: 24px;
  }
  #case-example .case-example__item-title .sub-title::before,
  #case-example .case-example__item-title .sub-title::after {
    width: 16px;
  }
  #case-example .case-example__item-title-name {
    gap: 40px;
    font-size: 36px;
  }
  #case-example .case-example__item-description {
    padding: 20px 40px;
  }
  #case-example .case-example__item-subtitle {
    font-size: 16px;
  }
  #case-example .case-example__item-subtitle.--rounded-rectangle {
    padding: 5px 11px;
    width: 180px;
    gap: 5px;
    margin: 0 auto 15px;
    font-size: 20px;
  }
  #case-example .case-example__item-subtitle.--rounded-rectangle .--rounded-rectangle {
    font-size: 20px;
  }
  #case-example .case-example__item-text {
    font-size: 20px;
    margin-bottom: 20px;
  }
  #case-example .case-example__item-message {
    position: relative;
  }
  #case-example .case-example__item-message::before {
    width: 90px;
    transform: translateX(-20px);
  }
  #case-example .case-example__item-message.--rounded-rectangle {
    font-size: 24px;
    padding: 7px 10px 7px 80px;
  }
  #case-example .case-example__img-wrap {
    display: flex;
    flex-direction: row;
    gap: 60px;
  }
  #case-example .case-example__img-wrap img {
    width: calc(100% / 2 - 30px);
  }
}

/*============================
#solution
============================*/
#solution {
  background: var(--secondary-color);
  padding: 30px 0 40px;
}
#solution .solution__title {
  text-align: center;
  padding: 0 10px;
}
#solution .solution__description {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  border: 5px solid var(--primary-color-dark);
  background: var(--background-color);
  padding: 15px;
}
#solution .solution__description .--rounded-rectangle {
  color: var(--accent-color-light);
  font-size: 18px;
  line-height: 1.4;
  background: var(--primary-color-dark);
  padding: 5px 2px;
}
#solution .solution__description .--rounded-rectangle:not(:first-child) {
  margin: 10px 0;
}
#solution .solution__description .--fz-lg {
  font-size: 18px;
}

@media (min-width: 1025px) {
  #solution {
    padding: 60px 0 50px;
  }
  #solution .solution__title {
    text-align: center;
    padding: 0;
    max-width: 760px;
    margin: auto;
  }
  #solution .solution__description {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    border: 5px solid var(--primary-color-dark);
    background: var(--background-color);
    padding: 15px;
  }
  #solution .solution__description .--rounded-rectangle {
    font-size: 40px;
    padding: 10px;
  }
  #solution .solution__description .--rounded-rectangle:not(:first-child) {
    margin: 20px 0;
  }
  #solution .solution__description .--fz-lg {
    font-size: 40px;
  }
}

/*============================
#support
============================*/
#support {
  padding: 40px 0;
}
#support::after {
  content: '';
  position: absolute;
  display: block;
  background: url(../img/icon-arrow-03.webp) no-repeat center center / contain;
  width: 300px;
  aspect-ratio: 6/1;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#support .support__title {
  position: relative;
  background: var(--primary-color-dark);
  border-radius: 10px;
  color: var(--text-color-secondary);
  font-size: 18px;
  text-align: center;
  padding: 30px 8px 20px;
  margin-bottom: 20px;
}
#support .support__title-sub {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 240px;
}
#support .support__list {
}
#support .support__item {
  position: relative;
  border: 4px solid var(--primary-color-dark);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
#support .support__item-num {
  position: absolute;
  top: -20px;
  left: -10px;
  max-width: 70px;
}
#support .support__item:nth-of-type(2n) .support__item-num {
  left: unset;
  right: -10px;
}
#support .support__item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
#support .support__item-img {
  width: 60%;
  max-width: 200px;
}
#support .support__item-text {
  font-weight: 700;
}
#support .support__item-title {
  font-size: 20px;
  margin-bottom: 8px;
}
#support .--emp {
  text-shadow: 2px 1px 0px var(--accent-color);
}
#support .support__item-description {
  font-weight: 500;
  font-size: 16px;
}
#support .support__item-description--notes {
  font-weight: 400;
  font-size: 12px;
  margin-top: 5px;
}
#support .support__item-footer {
  border-top: 3px dotted var(--primary-color-dark);
  text-align: center;
  padding: 10px;
  margin-top: 20px;
}
#support .support__item-footer .support__item-description {
  font-weight: 700;
  font-size: 18px;
}
#support .support__item-footer .support__item-description--notes {
  text-align: center;
}
#support .support__item-footer .support__item-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}
#support .support__item-footer .support__item-links-btn {
  position: relative;
  flex: 1;
  background: var(--secondary-color-light);
  text-align: center;
  border-radius: 50px;
  box-shadow: 2px 2px 3px var(--primary-color-dark);
}
#support .support__item-footer .support__item-links-btn::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: url('../img/icon-arrow-04.webp') no-repeat center center / contain;
  width: 22px;
  aspect-ratio: 1/1;
}
#support .support__item-footer .support__item-links-btn a {
  width: 100%;
  height: 100%;
  color: var(--text-color);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
}
#support .support__point {
}

@media (min-width: 1025px) {
  #support {
    padding: 80px 0 50px;
  }
  #support::after {
    width: 918px;
    aspect-ratio: 6/1;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  #support .support__title {
    border-radius: 16px;
    font-size: 40px;
    padding: 40px 40px 30px;
    margin-bottom: 30px;
  }
  #support .support__title-sub {
    top: -68px;
    max-width: 400px;
  }
  #support .support__list {
  }
  #support .support__item {
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 30px;
  }
  #support .support__item-num {
    top: -23px;
    left: -15px;
    max-width: 95px;
  }
  #support .support__item:nth-of-type(2n) .support__item-num {
    left: unset;
    right: -10px;
  }
  #support .support__item-content {
    flex-direction: row;
    gap: 15px;
  }
  #support .support__item:nth-of-type(2n) .support__item-content {
    flex-direction: row-reverse;
  }
  #support .support__item-img {
    max-width: 100%;
    flex: 0 0 300px;
  }
  #support .support__item-text {
    font-weight: 700;
  }
  #support .support__item-title {
    font-size: 40px;
    margin-bottom: 8px;
  }
  #support .--emp {
    text-shadow: 2px 1px 0px var(--accent-color);
  }
  #support .support__item-description {
    font-size: 24px;
  }
  #support .support__item-description--notes {
    text-align: right;
  }
  #support .support__item-footer {
    border-top: 3px dotted var(--primary-color-dark);
    text-align: center;
    padding: 10px;
    max-width: 80%;
    margin: 20px auto 0;
  }
  #support .support__item-footer .support__item-description {
    font-size: 30px;
  }
  #support .support__item-footer .support__item-description--notes {
    font-size: 16px;
  }
  #support .support__item-footer .support__item-links {
    flex-direction: row;
    gap: 15px;
    max-width: 95%;
    margin: 15px auto 0;
  }
  #support .support__item-footer .support__item-links-btn {
    justify-content: center;
    gap: 30px;
  }
  #support .support__item-footer .support__item-links-btn::after {
    position: absolute;
    right: 12px;
    width: 40px;
  }
  #support .support__item-footer .support__item-links-btn a {
    font-size: 20px;
    line-height: 1.2;
    padding: 8px 20px 8px 20px;
  }
  #support .support__point {
    width: 75%;
    margin: auto;
  }
}

/*============================
#passing-achievement
============================*/
#passing-achievement {
  background: var(--accent-color-light);
  padding: 50px 0 40px;
}
#passing-achievement .passing-achievement__title-sub {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 20px;
  z-index: 2;
  width: 100%;
  text-align: center;
}
#passing-achievement .passing-achievement__title {
  margin-bottom: 5px;
}
#passing-achievement .passing-achievement__img-wrap {
  margin-bottom: 20px;
}
#passing-achievement .--rounded-rectangle {
  background: var(--background-color);
  border: 2px solid var(--primary-color-dark);
  font-size: 16px;
  padding: 10px;
  margin-bottom: 20px;
}
#passing-achievement .passing-achievement__voice-item:not(:first-child) {
  margin-top: 35px;
}
#passing-achievement .passing-achievement__voice-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
}
#passing-achievement .passing-achievement__voice-title .--fz-lg {
  font-size: 26px;
}
#passing-achievement .passing-achievement__voice-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#passing-achievement .passing-achievement__voice-img {
  width: 50%;
  max-width: 200px;
}
#passing-achievement .passing-achievement__voice-description {
  font-size: 16px;
}
#passing-achievement .passing-achievement__notes {
  font-size: 12px;
  text-align: right;
  margin-top: 10px;
}

@media (min-width: 1025px) {
  #passing-achievement {
    padding: 150px 0 50px;
  }
  #passing-achievement .passing-achievement__title-sub {
    top: 15px;
    font-size: 50px;
  }
  #passing-achievement .passing-achievement__title {
    width: 80%;
    margin: 0 auto 5px;
  }
  #passing-achievement .passing-achievement__img-wrap {
    margin-bottom: 30px;
  }
  #passing-achievement .--rounded-rectangle {
    border: 3px solid var(--primary-color-dark);
    font-size: 22px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
  }
  #passing-achievement .passing-achievement__voice-list {
    width: 84%;
    margin: auto;
  }
  #passing-achievement .passing-achievement__voice-item:not(:first-child) {
    margin-top: 40px;
  }
  #passing-achievement .passing-achievement__voice-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 20px;
  }
  #passing-achievement .passing-achievement__voice-title .--fz-lg {
    font-size: 34px;
  }
  #passing-achievement .passing-achievement__voice-wrap {
    flex-direction: row;
    gap: 40px;
  }
  #passing-achievement .passing-achievement__voice-img {
    max-width: 100%;
    flex: 0 0 180px;
  }
  #passing-achievement .passing-achievement__voice-description {
    font-size: 18px;
  }
}

/*============================
#combination
============================*/
#combination {
  padding: 0 0 20px;
}
#combination .combination__title {
  background: var(--primary-color);
  color: var(--text-color-secondary);
  text-align: center;
  font-size: 20px;
  padding: 10px;
  margin-bottom: 30px;
}
#combination .combination__img {
  display: block;
  margin-bottom: 20px;
}
#combination .combination__description {
  font-size: 16px;
  margin-bottom: 20px;
}
#combination .combination__second-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
#combination .combination__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
#combination .combination__links-btn {
  flex: 1;
  background: var(--primary-color-light);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 24px;
  box-shadow: 2px 2px 3px var(--primary-color-dark);
}
#combination .combination__links-btn .--rounded-rectangle {
  position: relative;
  background: var(--background-color);
  font-size: 12px;
  max-width: 180px;
}
#combination .combination__links-btn .--rounded-rectangle::after {
  content: '▶';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 12px;
}
#combination .combination__links-btn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  padding: 8px 20px;
}
#combination .combination__message {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1025px) {
  #combination {
    padding: 0 0 40px;
  }
  #combination .combination__title {
    font-size: 40px;
    padding: 20px;
    margin-bottom: 60px;
    line-height: 1.4;
  }
  #combination .combination__img {
    margin-bottom: 20px;
    width: 85%;
    margin: 0 auto 30px;
  }
  #combination .combination__description {
    font-size: 22px;
    margin-bottom: 50px;
    width: 90%;
    margin: 0 auto 50px;
    font-weight: 700;
    line-height: 2;
  }
  #combination .combination__second-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  #combination .combination__links {
    flex-direction: row;
    gap: 25px;
    margin-bottom: 50px;
  }
  #combination .combination__links-btn {
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 32px;
    box-shadow: 2px 2px 3px var(--primary-color-dark);
  }
  #combination .combination__links-btn .--rounded-rectangle {
    max-width: 180px;
    position: relative;
    background: var(--background-color);
    font-size: 14px;
  }
  #combination .combination__message {
    font-size: 36px;
  }
}

/*============================
#faq
============================*/
#faq {
  padding: 20px 0 40px;
}
#faq .faq__content .faq__title {
  width: 80%;
  background: var(--secondary-color-dark);
  color: var(--text-color-secondary);
  font-size: 20px;
  text-align: center;
  margin: 0 auto;
}
#faq .faq__content .faq__item {
  margin-top: 20px;
}
#faq .faq__content .faq__item-question,
#faq .faq__content .faq__item-answer {
  display: flex;
  gap: 30px;
}
#faq .faq__content .faq__item-question {
  margin-bottom: 10px;
  justify-content: start;
}
#faq .faq__content .faq__item-question-img,
#faq .faq__content .faq__item-answer-img {
  max-width: 30px;
  flex: 1 0 auto;
}
#faq .faq__content .faq__item-question-text,
#faq .faq__content .faq__item-answer-text {
  font-size: 12px;
  font-weight: 500;
}
#faq .faq__content .faq__item-question-text .--fz-xl,
#faq .faq__content .faq__item-answer-text .--fz-xl {
  font-size: 16px;
  font-weight: 800;
}

@media (min-width: 1025px) {
  #faq {
    padding: 40px 0 50px;
  }
  #faq .faq__content .faq__title {
    width: 50%;
    font-size: 40px;
  }
  #faq .faq__content .faq__list {
    width: 90%;
    margin: 60px auto 0;
  }
  #faq .faq__content .faq__item {
    margin-top: 40px;
  }
  #faq .faq__content .faq__item-question,
  #faq .faq__content .faq__item-answer {
    display: flex;
    gap: 30px;
  }
  #faq .faq__content .faq__item-question-img,
  #faq .faq__content .faq__item-answer-img {
    max-width: 45px;
  }
  #faq .faq__content .faq__item-question-text,
  #faq .faq__content .faq__item-answer-text {
    font-size: 16px;
    font-weight: 500;
  }
  #faq .faq__content .faq__item-question-text .--fz-xl,
  #faq .faq__content .faq__item-answer-text .--fz-xl {
    font-size: 20px;
    font-weight: 800;
  }
}

/*============================
#flow
============================*/
#flow {
  background: var(--primary-color-light);
  padding: 50px 0 40px;
}
#flow .flow__content {
  font-family: var(--Noto-Sans-JP);
  position: relative;
  background: var(--background-color);
  padding: 30px 15px 0;
  background-size: 240px auto;
  background-position: right -20px bottom;
  border-radius: 20px;
}
#flow .flow__title {
  font-family: var(--Zen-Maru);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  font-size: 20px;
  font-weight: 700;
  background: var(--primary-color-light);
  color: var(--text-color);
  border: 2px solid #fff;
  text-align: center;
}
#flow .flow__content .flow__list {
  position: relative;
  list-style: none;
}
#flow .flow__content .flow__list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  width: 0;
  height: calc(100% - 60px);
  border-left: 6px dotted #6c7490;
}
#flow .flow__content .flow__item {
  position: relative;
  padding: 10px 0 30px 60px;
}
#flow .flow__content .flow__item-num {
  font-family: var(--Roboto);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--primary-color-dark);
  border-radius: 50%;
  color: var(--text-color-secondary);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  width: 50px;
  aspect-ratio: 1/1;
}
#flow .flow__content .flow__item-num .--fz-xl {
  font-size: 2.4rem;
}
#flow .flow__content .flow__item-title {
  font-size: 20px;
  font-weight: 900;
}
#flow .flow__content .flow__item-text {
  font-size: 14px;
}
#flow .flow__content .flow__item-cta {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#flow .flow__content .flow__item-cta .flow__item-cta-head {
  width: 75%;
  margin: 0 auto;
  text-align: center;
}
#flow .flow__content .flow__item.--sub {
  padding: 10px 0 10px 60px;
}
#flow .flow__content .flow__item.--sub:nth-of-type(5) {
  margin-bottom: 20px;
}
#flow .flow__content .flow__item.--sub::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 16px;
  width: 18px;
  height: 18px;
  background: var(--primary-color-dark);
  border-radius: 50%;
}
#flow .flow__content .flow__item.--sub .flow__item-title {
  font-size: 16px;
}

@media (min-width: 1025px) {
  #flow {
    padding: 80px 0 60px;
  }
  #flow .flow__title {
    font-size: 40px;
    line-height: 1.4;
    width: 50%;
    top: -36px;
  }
  #flow .flow__title .--fz-xl {
    font-size: 46px;
  }
  #flow .flow__content {
    padding: 80px 100px 50px;
    border-radius: 16px;
  }
  #flow .flow__content .flow__list::before {
    left: 38px;
    height: calc(100% - 40px);
  }
  #flow .flow__content .flow__item {
    padding: 12px 0 40px 100px;
  }
  #flow .flow__content .flow__item-num {
    width: 80px;
    font-size: 1.8rem;
  }
  #flow .flow__content .flow__item-num .--fz-xl {
    font-size: 3.2rem;
  }
  #flow .flow__content .flow__item-title {
    font-size: 36px;
  }
  #flow .flow__content .flow__item-text {
    font-size: 20px;
  }
  #flow .flow__content .flow__item-cta {
    gap: 10px;
    width: 70%;
  }
  #flow .flow__content .flow__item-cta .flow__item-cta-head {
    width: auto;
  }
  #flow .flow__content .flow__item.--sub {
    padding: 11px 0 10px 100px;
  }
  #flow .flow__content .flow__item.--sub:nth-of-type(5) {
    margin-bottom: 30px;
  }
  #flow .flow__content .flow__item.--sub::before {
    top: 15px;
    left: 27px;
    width: 28px;
    height: 28px;
  }
  #flow .flow__content .flow__item.--sub .flow__item-title {
    font-size: 22px;
  }
}

/* CTA TELボタン */
#flow .c-tel-btn-common__number {
  font-size: 6vw;
}
#flow .c-tel-btn-common__text {
  font-size: 2vw;
  top: 70%;
}
#flow .c-tel-btn__arrow {
  width: 2em;
  height: 2em;
  top: 44%;
  right: 5%;
}
#flow .c-tel-btn__icon._sp {
  font-size: 4.6vw;
}

@media (min-width: 768px) {
  #flow .c-tel-btn-common__number {
    font-size: 3.5rem;
  }
  #flow .c-tel-btn-common__text {
    font-size: 1.2rem;
  }
  #flow .c-tel-btn__arrow {
    width: 2.4em;
    height: 2.4em;
  }
}

/*============================
#banner
============================*/
#banner {
  padding: 60px 0 0;
}
#banner .banner__content {
  text-align: center;
}

/*============================
splide
============================*/
.splide__track {
  margin: 0 -20px;
  padding-bottom: 30px;
}
.splide__pagination__page {
  opacity: 1;
}
.splide__pagination {
  bottom: 0;
}
.splide__pagination__page.is-active {
  background: var(--primary-color-dark);
}
/* splide__arrow */
.splide__arrow {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0;
  height: 41px;
  opacity: 0.7;
  width: 41px;
}
.splide__arrow svg {
  fill: #fff;
  height: 18px;
  width: 18px;
}
.splide__arrow--next {
  right: -18px;
}
.splide__arrow--prev {
  left: -18px;
}
@media screen and (min-width: 1025px) {
  /* md-top.cssの相殺 */
  /* .splide__slide {
    width: calc(33.3333% - 16px) !important;
  } */
  .splide__track {
    margin: 0;
  }
  .splide__pagination__page.is-active {
    background: var(--primary-color-dark);
  }
  /* splide__arrow */
  .splide__arrow {
    background: #0014284d;
    border-radius: 0;
    width: 50px;
    height: 50px;
    opacity: 0.7;
  }
  .splide__arrow svg {
    fill: #fff;
    height: 22px;
    width: 22px;
  }
  .splide__arrow--next {
    right: 65px;
  }
  .splide__arrow--prev {
    left: 65px;
  }
}