*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  color: #0b7689;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

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

@media screen and (min-width: 1024px) {
  .hidden-pc--lg {
    display: none;
  }
}

.header {
  background-color: #FFF;
  padding-block: 0.25rem 0.1875rem;
}
@media screen and (min-width: 768px) {
  .header {
    padding-block: 0.5rem 0.4375rem;
  }
}

.header__logo {
  display: block;
  width: 8.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 16rem;
    margin-left: 8.75rem;
  }
}

.footer {
  background-color: #0b7689;
  padding-block: 0.5625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 1.875rem 1.75rem;
  }
}

.footer__logo {
  display: block;
  width: 13.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 25.25rem;
  }
}

.footer__heading {
  text-align: center;
  color: #FFF;
  line-height: 1.8;
  letter-spacing: 0.11em;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .footer__heading {
    font-size: 2.1875rem;
    line-height: 1.5;
    margin-top: 0.75rem;
  }
}

.footer__text {
  color: #FFF;
  line-height: 1.8;
  letter-spacing: 0.11em;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__text {
    line-height: 1.7;
    margin-top: 0.875rem;
  }
}

.footer__link {
  display: block;
  text-align: center;
  color: #FFF;
  font-size: 0.8125rem;
  letter-spacing: 0.11em;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .footer__link {
    margin-top: 0rem;
  }
}

.footer__copyright {
  text-align: center;
  color: #FFF;
  font-size: 0.8125rem;
  letter-spacing: 0.11em;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 1.6875rem;
  }
}

.inner {
  padding-inline: 1.125rem;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 77.75rem;
    padding-inline: 2rem;
    margin-inline: auto;
  }
}

.button {
  max-width: 20.4375rem;
  display: block;
  box-shadow: 3px 3px 3px rgba(163, 166, 167, 0.5);
  border-radius: 3.5625rem;
  margin-inline: auto;
  visibility: visible;
  animation-duration: 2s;
  animation-iteration-count: 1000;
  animation-name: pulse;
}
@media screen and (min-width: 768px) {
  .button {
    max-width: 50rem;
    border-radius: 8.4375rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(0.9);
  }
}
.heading {
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: clamp(3rem, 2.1428571429rem + 1.7857142857vw, 3.75rem);
  }
}

.heading--xs {
  color: #333;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .heading--xs {
    font-size: clamp(1.5rem, 1.0714285714rem + 0.8928571429vw, 1.875rem);
  }
}

.heading--small-sp {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading--small-sp {
    font-size: clamp(3rem, 2.1428571429rem + 1.7857142857vw, 3.75rem);
  }
}

.heading--small {
  color: #333;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading--small {
    font-size: clamp(2rem, 1.4285714286rem + 1.1904761905vw, 2.5rem);
  }
}

@media (any-hover: hover) {
  a,
  .button-hover {
    transition: opacity 0.3s;
  }
  a:hover,
  .button-hover:hover {
    opacity: 0.7;
  }
}
.main-visual {
  position: relative;
  width: 100%;
  max-height: 50rem;
  background: url(../img/main-visual-bg-sp.webp) center top/cover no-repeat;
  background: url(../img/main-visual-bg-sp.webp) center top/cover no-repeat;
  aspect-ratio: 375/446;
  padding-block: clamp(0rem, -4.7709923664rem + 20.3562340967vw, 5rem) 3.125rem;
}
@media screen and (min-width: 768px) {
  .main-visual {
    background-image: url(../img/main-visual-bg-pc.webp);
    aspect-ratio: 768/427;
    padding-block: clamp(3.125rem, -0.3035714286rem + 7.1428571429vw, 6.125rem) clamp(4.875rem, -0.4821428571rem + 11.1607142857vw, 9.5625rem);
  }
}

.main-visual__heading {
  position: relative;
  text-shadow: 0 0 10px rgb(0, 151, 178), 0 5px 10px rgba(0, 151, 178, 0.7), 5px 0 10px rgba(0, 151, 178, 0.7), 0 -5px 10px rgba(0, 151, 178, 0.7), -5px 0 10px rgba(0, 151, 178, 0.7);
  color: #FFF;
  font-size: clamp(2.0625rem, 1.0486641221rem + 4.3256997455vw, 3.125rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-left: clamp(0rem, -1.7891221374rem + 7.6335877863vw, 1.875rem);
  margin-bottom: clamp(1.8125rem, 0.9179389313rem + 3.8167938931vw, 2.75rem);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .main-visual__heading {
    font-size: clamp(2.5rem, 0.7857142857rem + 3.5714285714vw, 4rem);
    letter-spacing: 0;
    margin-left: 0;
    margin-bottom: clamp(1.75rem, 0.3214285714rem + 2.9761904762vw, 3rem);
  }
}
.main-visual__heading::before {
  content: "";
  position: absolute;
  top: clamp(3.3125rem, 1.7022900763rem + 6.8702290076vw, 5rem);
  left: clamp(0.375rem, 0.1960877863rem + 0.7633587786vw, 0.5625rem);
  width: clamp(3.125rem, 1.6340648855rem + 6.3613231552vw, 4.6875rem);
  aspect-ratio: 50/135;
  background: url(../img/main-visual-text-sp.png) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .main-visual__heading::before {
    top: clamp(0.875rem, 0.3035714286rem + 1.1904761905vw, 1.375rem);
    left: clamp(10.125rem, 3.125rem + 14.5833333333vw, 16.25rem);
    width: clamp(12.3125rem, 3.8839285714rem + 17.5595238095vw, 19.6875rem);
    aspect-ratio: 315/98;
    background-image: url(../img/main-visual-text-pc.png);
  }
}

.main-visual__heading--green {
  position: relative;
  text-shadow: none;
  color: #0b7689;
  font-size: clamp(2.9375rem, 1.5658396947rem + 5.8524173028vw, 4.375rem);
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .main-visual__heading--green {
    font-size: clamp(3.5625rem, 1.0982142857rem + 5.1339285714vw, 5.71875rem);
  }
}
.main-visual__heading--green:nth-of-type(1) {
  margin-inline: clamp(3.25rem, 1.6994274809rem + 6.6157760814vw, 4.875rem) 0.625rem;
}
@media screen and (min-width: 768px) {
  .main-visual__heading--green:nth-of-type(1) {
    margin-inline: 1.5rem 1.25rem;
  }
}
.main-visual__heading--green:nth-of-type(3) {
  margin-left: clamp(0.875rem, 0.4575381679rem + 1.7811704835vw, 1.3125rem);
}
@media screen and (min-width: 768px) {
  .main-visual__heading--green:nth-of-type(3) {
    margin-inline: 1.5rem 1.25rem;
  }
}
.main-visual__heading--green::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: -0.5rem;
  width: calc(100% + 1rem);
  height: calc(100% - 0.5rem);
  background-color: #FFF;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .main-visual__heading--green::before {
    top: 0.625rem;
    left: -1rem;
    width: calc(100% + 2.0625rem);
    height: calc(100% - 0.75rem);
  }
}

.main-visual__heading--orange {
  position: relative;
  text-shadow: none;
  color: #f57e2c;
  font-size: clamp(2.9375rem, 1.5658396947rem + 5.8524173028vw, 4.375rem);
  font-weight: 700;
  letter-spacing: 0;
  margin-left: clamp(3.375rem, 1.7647900763rem + 6.8702290076vw, 5.0625rem);
}
@media screen and (min-width: 768px) {
  .main-visual__heading--orange {
    font-size: clamp(3.5625rem, 1.0982142857rem + 5.1339285714vw, 5.71875rem);
    margin-left: 1.125rem;
  }
}
.main-visual__heading--orange::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: -0.625rem;
  width: calc(100% + 1rem);
  height: calc(100% - 0.5rem);
  background-color: #FFF;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .main-visual__heading--orange::before {
    top: 0.625rem;
    left: -1.25rem;
    width: calc(100% + 2.0625rem);
    height: calc(100% - 0.75rem);
  }
}

.main-visual__heading--small {
  color: #333;
  font-size: 2.0625rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .main-visual__heading--small {
    font-size: clamp(2.5rem, 1.0714285714rem + 2.9761904762vw, 3.75rem);
  }
}

.main-visual__heading--wide {
  letter-spacing: 0.1em;
}

.main-visual__button {
  max-width: clamp(20.4375rem, 10.7166030534rem + 41.475826972vw, 30.625rem);
}
@media screen and (min-width: 768px) {
  .main-visual__button {
    max-width: clamp(30.5rem, 9.6428571429rem + 43.4523809524vw, 48.75rem);
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  #cta-04 {
    display: none;
  }
}

.cta {
  position: relative;
  z-index: 5;
}

.cta__head {
  height: 4.1875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  background-color: #0b7689;
}
@media screen and (min-width: 768px) {
  .cta__head {
    height: 8.25rem;
    gap: 1.875rem;
  }
}

.cta__head-circle {
  width: 6.03125rem;
  height: 6.03125rem;
  border-radius: 50%;
  background-color: #f57e2c;
  text-align: center;
  color: #FFF;
  font-size: 1.875rem;
  line-height: 1.1;
  letter-spacing: 0.1em;
  padding: 0.625rem 0 0 0.25rem;
}
@media screen and (min-width: 768px) {
  .cta__head-circle {
    width: clamp(10rem, 7.1428571429rem + 5.9523809524vw, 12.5rem);
    height: clamp(10rem, 7.1428571429rem + 5.9523809524vw, 12.5rem);
    font-size: clamp(3.125rem, 2.2678571429rem + 1.7857142857vw, 3.875rem);
    padding: clamp(1rem, 0.7142857143rem + 0.5952380952vw, 1.25rem) 0 0 0.5rem;
  }
}

.cta__head-circle--small {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cta__head-circle--small {
    font-size: clamp(2.0625rem, 1.4553571429rem + 1.2648809524vw, 2.59375rem);
  }
}

.cta__head-text {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .cta__head-text {
    font-size: clamp(3rem, 2.1428571429rem + 1.7857142857vw, 3.75rem);
  }
}

.cta__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/cta-bg-sp.png) left center/cover no-repeat;
  padding-block: 2.1875rem 3.0625rem;
}
@media screen and (min-width: 768px) {
  .cta__body {
    padding: 5rem 2rem 4.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .cta__body {
    background-image: url(../img/cta-bg-pc.webp);
  }
}

.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3125rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .cta__content {
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .cta__content {
    flex-direction: row;
    gap: 3.125rem;
    margin-bottom: 4.375rem;
  }
}

.cta__image {
  width: 13.875rem;
}
@media screen and (min-width: 768px) {
  .cta__image {
    width: 100%;
    max-width: 24.9375rem;
  }
}

.cta__text {
  width: 19.375rem;
  border-block: 3px solid #0097b2;
  text-transform: uppercase;
  text-align: center;
  color: #f57e2c;
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding-block: 1rem;
}
@media screen and (min-width: 768px) {
  .cta__text {
    width: 38rem;
    flex-shrink: 0;
    font-size: 3.71875rem;
    padding-block: 2.25rem 2rem;
  }
}

.cta__text-small {
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .cta__text-small {
    font-size: 2.5rem;
  }
}

.introduction {
  background-color: #0b7689;
  padding-block: 2.5625rem 2.875rem;
}
@media screen and (min-width: 768px) {
  .introduction {
    padding-block: 5.375rem 5.9375rem;
  }
}

.introduction__title {
  text-align: center;
  color: #FFF;
  font-size: 1.875rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .introduction__title {
    font-size: 3.75rem;
  }
}

.introduction__text {
  color: #FFF;
  font-size: 1.125rem;
  line-height: 1.8888888889;
  letter-spacing: 0.1em;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .introduction__text {
    text-align: center;
    margin-top: 4.375rem;
  }
}
.introduction__text + .introduction__text {
  margin-top: 1.5rem;
}

.introduction__text--large {
  font-size: 1.5625rem;
  line-height: 1.2;
}

.concept {
  background: url(../img/concept-bg-sp.webp) center/cover no-repeat;
  padding-block: 2.5rem 12.9375rem;
}
@media screen and (min-width: 768px) {
  .concept {
    padding-bottom: 15rem;
  }
}
@media screen and (min-width: 1024px) {
  .concept {
    background-image: url(../img/concept-bg-pc.webp);
    padding-block: 4.125rem 6.375rem;
  }
}

.concept__content {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 1.375rem auto 0;
}
@media screen and (min-width: 768px) {
  .concept__content {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .concept__content {
    padding-left: 2.1875rem;
    margin: 5.5rem 0 0;
  }
}

.concept__text {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  color: #333;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .concept__text {
    font-size: 1.25rem;
  }
}
.concept__text + .concept__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .concept__text + .concept__text {
    margin-top: 1.8125rem;
  }
}
.concept__text::before {
  content: "";
  width: 1.3125rem;
  height: 1.1875rem;
  background: url(../img/check-icon.png) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .concept__text::before {
    width: 1.9375rem;
    height: 1.75rem;
  }
}

.map {
  background: url(../img/map-bg-sp.webp) center/cover no-repeat;
  padding-block: 2.125rem 2.875rem;
}
@media screen and (min-width: 768px) {
  .map {
    background-image: url(../img/map-bg-pc.webp);
    padding-block: 5.0625rem 5.1875rem;
  }
}

.map__heading {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .map__heading {
    line-height: 1.5;
  }
}

.map__heading--small-sp {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .map__heading--small-sp {
    font-size: clamp(3rem, 2.1428571429rem + 1.7857142857vw, 3.75rem);
  }
}

.map__heading--small {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .map__heading--small {
    font-size: clamp(2rem, 1.4285714286rem + 1.1904761905vw, 2.5rem);
  }
}

.feature {
  padding-block: 1.875rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .feature {
    padding-block: 6.25rem 8.375rem;
  }
}

.feature__head {
  display: flex;
  justify-content: center;
  gap: 1.3125rem;
  margin-bottom: 1.125rem;
}
@media screen and (min-width: 768px) {
  .feature__head {
    gap: 3.125rem;
    margin-bottom: 5.1875rem;
  }
}

.feature__head-arrow {
  width: 5.9375rem;
  height: 3.75rem;
  background: url(../img/down-arrow-green.png) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .feature__head-arrow {
    width: clamp(11.5rem, 8.2857142857rem + 6.6964285714vw, 14.3125rem);
    height: clamp(7.25rem, 5.1785714286rem + 4.3154761905vw, 9.0625rem);
  }
}

.feature__list {
  max-width: 30rem;
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
  margin: 1.4375rem auto 0;
}
@media screen and (min-width: 768px) {
  .feature__list {
    max-width: 40rem;
    gap: 4.5rem;
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .feature__list {
    max-width: unset;
  }
}

.feature__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .feature__item {
    flex-direction: row;
    align-items: center;
    gap: 6.9444444444vw;
  }
}
.feature__item:nth-of-type(1) .feature__item-image {
  border-block: 1px solid #333;
}
@media screen and (min-width: 1024px) {
  .feature__item:nth-of-type(2) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .feature__item:nth-of-type(3) .feature__item-text {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1440px) {
  .feature__item:nth-of-type(3) .feature__item-text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .feature__item-head {
    flex-shrink: 0;
  }
}

.feature__item-point {
  text-transform: capitalize;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .feature__item-point {
    font-size: clamp(2.375rem, 1.7321428571rem + 1.3392857143vw, 2.9375rem);
  }
}

.feature__item-title {
  color: #333;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .feature__item-title {
    font-size: clamp(1.5625rem, 1.1339285714rem + 0.8928571429vw, 1.9375rem);
    margin-top: 1.25rem;
  }
}
.feature__item-title rt {
  translate: 0 0.25rem;
  font-size: inherit;
  margin-bottom: -0.625rem;
}
@media screen and (min-width: 768px) {
  .feature__item-title rt {
    margin-bottom: -0.875rem;
  }
}

.feature__item-title--small {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .feature__item-title--small {
    font-size: 1.5625rem;
  }
}

.feature__item-image {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .feature__item-image {
    max-width: 31.875rem;
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .feature__item-image {
    max-width: 35.4166666667vw;
  }
}

.feature__item-text {
  color: #333;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1440px) {
  .feature__item-text {
    font-size: 1.125rem;
    line-height: 1.3888888889;
  }
}
.feature__item-text + .feature__item-text {
  margin-top: 1.5rem;
}

.voice {
  position: relative;
  background-color: #daeeed;
  padding-block: 2.75rem 3.125rem;
  margin-bottom: 6.5rem;
}
@media screen and (min-width: 768px) {
  .voice {
    padding-block: 5.875rem 6.25rem;
    margin-bottom: 12.5rem;
  }
}
.voice::after {
  content: "";
  position: absolute;
  bottom: -2.4375rem;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-color: inherit;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (min-width: 768px) {
  .voice::after {
    bottom: -6.1875rem;
    height: 6.25rem;
  }
}

.voice__lead {
  text-align: center;
  color: #333;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .voice__lead {
    font-size: clamp(1.5rem, 1.0714285714rem + 0.8928571429vw, 1.875rem);
    margin-top: 0.125rem;
  }
}

.swiper-container {
  position: relative;
  max-width: 30.125rem;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .swiper-container {
    max-width: 47rem;
    padding-inline: 3.5rem;
    margin-top: 4.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .swiper-container {
    max-width: unset;
  }
}

.voice__slider {
  max-width: 30rem;
}
@media screen and (min-width: 768px) {
  .voice__slider {
    max-width: 40rem;
  }
}
@media screen and (min-width: 1024px) {
  .voice__slider {
    max-width: 65.1875rem;
  }
}

.voice__slide {
  position: relative;
  background-color: #FFF;
  padding: 1.25rem 1.125rem 3.5625rem;
}
@media screen and (min-width: 768px) {
  .voice__slide {
    border-radius: 0.625rem;
    padding: 5rem 2.5rem 6.75rem;
  }
}

.voice__slide--03 .voice__slide-change {
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .voice__slide--03 .voice__slide-change {
    gap: 1.875rem;
  }
}
.voice__slide--03 .voice__slide-change-text {
  letter-spacing: 0.06em;
}

.voice__slide-head {
  border-bottom: 3px dashed #0b7689;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 1024px) {
  .voice__slide-head {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-bottom: 1.875rem;
  }
}

.voice__slide-head-image {
  width: 17.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .voice__slide-head-image {
    width: 100%;
    max-width: 28.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .voice__slide-head-image {
    margin: 0;
  }
}

.voice__slide-head-content {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 1024px) {
  .voice__slide-head-content {
    flex-shrink: 0;
    margin: 0;
  }
}

.voice__slide-name {
  color: #333;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .voice__slide-name {
    font-size: 1.875rem;
    line-height: 1.6;
    margin: 0;
  }
}

.voice__slide-change {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .voice__slide-change {
    gap: 1.875rem;
    margin-top: 1.25rem;
  }
}

.voice__slide-change-text {
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .voice__slide-change-text {
    font-size: 1.5625rem;
  }
}

.voice__slide-change-text-small {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .voice__slide-change-text-small {
    font-size: 1.25rem;
  }
}

.voice__slide-change-text-large {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .voice__slide-change-text-large {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.voice__slide-change-text-orange {
  color: #f57e2c;
}

.voice__slide-change-text-xl {
  font-size: 1.875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .voice__slide-change-text-xl {
    font-size: 3.75rem;
  }
}

.voice__slide-change-arrow {
  width: 1.1875rem;
  height: 1.875rem;
  background: url(../img/right-arrow-green.png) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .voice__slide-change-arrow {
    width: 1.875rem;
    height: 3rem;
  }
}

.voice__slide-content {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .voice__slide-content {
    margin-top: 0.9375rem;
  }
}

.voice__slide-text--01 {
  color: #333;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0.1em;
}
.voice__slide-text--01 + .voice__slide-text--01 {
  margin-top: 1.5rem;
}

.voice__slide-image {
  width: 17.875rem;
  margin: 0.9375rem auto 0;
}
@media screen and (min-width: 768px) {
  .voice__slide-image {
    width: 100%;
    max-width: 37.5rem;
    margin-top: 1.5625rem;
  }
}

.voice__slide--text--02 {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
  color: #333;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .voice__slide--text--02 {
    bottom: 4.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.swiper-button-prev,
.swiper-button-next {
  top: 40rem;
  width: 1.1875rem;
  height: 1.875rem;
  background: center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: 39rem;
    width: 2.5rem;
    height: 4rem;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  left: -0.5625rem;
  background-image: url(../img/left-arrow-green.png);
}
@media screen and (min-width: 768px) {
  .swiper-button-prev {
    left: 0.5rem;
  }
}

.swiper-button-next {
  right: -0.5625rem;
  background-image: url(../img/right-arrow-green.png);
}
@media screen and (min-width: 768px) {
  .swiper-button-next {
    right: 0.5rem;
  }
}

.flow {
  padding-block: 2.75rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .flow {
    padding-block: 5.875rem 6.25rem;
  }
}

.flow__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .flow__list {
    width: 43.75rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 4.375rem auto 0;
  }
}
@media screen and (min-width: 1440px) {
  .flow__list {
    width: 100%;
    flex-wrap: nowrap;
    gap: 2.75rem;
  }
}

.flow__item {
  width: 14.25rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .flow__item {
    gap: 0.25rem;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column;
  }
}

.flow__item-number {
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0b7689;
  border-radius: 50%;
  color: #FFF;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  padding-left: 0.125rem;
}
@media screen and (min-width: 768px) {
  .flow__item-number {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 1.875rem;
    padding-left: 0.1875rem;
  }
}

.flow__item-text {
  color: #333;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .flow__item-text {
    white-space: nowrap;
    font-size: 1.5625rem;
    line-height: 1.2;
  }
}

.flow__arrow {
  width: 1.875rem;
  height: 1.1875rem;
  background: url(../img/down-arrow-green.png) center/contain no-repeat;
  margin-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .flow__arrow {
    width: 3.125rem;
    height: 4.9375rem;
    background-image: url(../img/right-arrow-green.png);
    margin: 0;
  }
}

.faq {
  position: relative;
  background-color: #daeeed;
  padding-block: 1.625rem 3.125rem;
  margin-bottom: 6.5625rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-block: 5.875rem 6.25rem;
    margin: 0;
  }
}
.faq::after {
  content: "";
  position: absolute;
  bottom: -2.4375rem;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-color: inherit;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (min-width: 768px) {
  .faq::after {
    display: none;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.8125rem;
  max-width: 30rem;
  margin: 1.625rem auto 0;
}
@media screen and (min-width: 768px) {
  .faq__list {
    gap: 3.125rem;
    max-width: 43.75rem;
    margin-top: 5.125rem;
  }
}

.faq__item-head {
  display: flex;
  gap: 0.5rem;
  background-color: #0b7689;
  padding: 0.9375rem 0 0.9375rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .faq__item-head {
    border-radius: 0.3125rem 0.3125rem 0 0;
    padding: 0.8125rem 0 0.8125rem 2.375rem;
  }
}

.faq__item-head-icon {
  color: #FFF;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.faq__item-head-text {
  color: #FFF;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.faq__item-body {
  display: flex;
  gap: 0.5rem;
  background-color: #FFF;
  padding: 0.9375rem 0 0.9375rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .faq__item-body {
    border-radius: 0 0 0.3125rem 0.3125rem;
    padding-left: 2.375rem;
  }
}

.faq__item-icon {
  color: #0097b2;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.faq__item-text {
  color: #0097b2;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.faq__item-text + .faq__item-text {
  margin-top: 1.6875rem;
}