@charset "UTF-8";
:root {
  --black01: #1f2123;
  --red01: #c14625;
  --orange01: #e56e1f;
  --blue01: #004c9e;
  --blue02: #12556d;
  --lightBlue01: #ecf1f5;
  --lightBlue02: #5cb7e8;
  --shadow01: 17 59 76;
  --gradientOrange01: linear-gradient(0deg,rgba(229, 110, 31, 1) 0%, rgba(229, 110, 31, 1) 51%, rgba(236, 150, 93, 1) 51%, rgba(236, 150, 93, 1) 100%);
  --gradientBlue01: linear-gradient(90deg,rgba(1, 76, 151, 1) 0%, rgba(92, 183, 234, 1) 100%);
  --headerHeight: 60px;
  --duration03: 0.3s;
  --wrapPaddingHorizontal: 4rem;
  --wrap: 110rem;
  --buttonOrange01Width: 55.6rem;
  --bgGradientPadding: 0 0.4em 0.06em 0.6em;
}
@media screen and (max-width: 849px) {
  :root {
    --headerHeight: 50px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --wrapPaddingHorizontal: 3rem;
    --buttonOrange01Width: 63rem;
  }
}

html {
  font-size: 62.5%;
}
@media screen and (min-width: 768px) {
  html {
    overflow-y: scroll;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
figure,
figcaption,
form,
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 1.5;
  list-style-type: none;
  font-style: normal;
  font-weight: 500;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: var(--black01);
  font-size: 1.6rem;
  line-break: strict;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  address,
  time,
  ul,
  ol,
  li,
  dl,
  dt,
  dd,
  table,
  th,
  td,
  img,
  figure,
  figcaption,
  form,
  input,
  button,
  textarea,
  select {
    font-size: 2.8rem;
  }
}

img,
object {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

body {
  padding-top: var(--headerHeight);
  min-width: calc(var(--wrap) + var(--wrapPaddingHorizontal) * 2);
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 1%;
    overflow-x: hidden;
    position: relative;
  }
}
body.is-menuOpen {
  position: fixed;
  left: 0;
  width: 100%;
}

main {
  display: block;
}

section {
  position: relative;
}

label {
  cursor: pointer;
}

picture {
  display: block;
}

.l-allwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.l-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* link
--------------------------------------------------*/
a {
  color: inherit;
}
a:link, a:active, a:visited, a:focus {
  text-decoration: none;
}
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity var(--duration03);
    transition: opacity var(--duration03);
  }
  a:hover {
    opacity: 0.5;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}

/* --------------------------------------------------
  l-header
-------------------------------------------------- */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--headerHeight);
  background: white;
  z-index: 10;
}

.l-header__logo {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 10px;
  width: clamp(130px, 14.1525423729vw, 167px);
}
@media screen and (max-width: 849px) {
  .l-header__logo {
    left: 0;
    width: 112px;
  }
}

.l-headerNav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: min(25.4237288136vw, 300px);
}
@media screen and (max-width: 849px) {
  .l-headerNav {
    position: fixed;
    top: var(--headerHeight);
    translate: 0 0;
    right: 0;
    overflow-y: auto;
    width: 100%;
    height: calc(100dvh - var(--headerHeight));
    visibility: hidden;
    -webkit-transition: visibility 0.3s;
    transition: visibility 0.3s;
    padding: 24px 20px 35px;
    background: var(--blue01);
  }
}
@media screen and (max-width: 767px) {
  .l-headerNav {
    -webkit-overflow-scrolling: touch;
  }
}
body.is-menuOpen .l-headerNav {
  visibility: visible;
}

.l-headerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(2.5423728814vw, 30px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1300px) {
  .l-headerMenu {
    gap: 47px;
  }
}
@media screen and (max-width: 849px) {
  .l-headerMenu {
    display: block;
    max-width: 290px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 849px) {
  .l-headerMenu__item {
    border-bottom: 1px solid white;
  }
}
.l-headerMenu__item a {
  font-weight: 700;
  font-size: min(1.4406779661vw, 17px);
}
@media screen and (min-width: 1300px) {
  .l-headerMenu__item a {
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 849px) {
  .l-headerMenu__item a {
    color: white;
    font-size: 17px;
    display: block;
    width: 100%;
    padding-block: 13px;
    text-align: center;
    letter-spacing: 0.08em;
  }
}

.l-header__button {
  position: absolute;
  top: 0;
  right: 0;
  width: min(21.186440678vw, 250px);
  height: 100%;
}
@media screen and (max-width: 849px) {
  .l-header__button {
    top: 50%;
    translate: 0 -50%;
    right: 60px;
    width: 144px;
    height: 39px;
  }
}
.l-header__button a {
  display: grid;
  grid-template-columns: min(1.6101694915vw, 19px) auto;
  gap: 9px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--orange01);
  color: white;
  font-weight: 700;
  font-size: min(1.4406779661vw, 17px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 849px) {
  .l-header__button a {
    grid-template-columns: 11px auto;
    gap: 6px;
    border-radius: calc(infinity * 1px);
    border: 2px solid white;
    background: var(--gradientOrange01);
    font-size: 11px;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    padding-bottom: 2px;
  }
}
.l-header__button a::before {
  content: "";
  width: min(1.6101694915vw, 19px);
  aspect-ratio: 19/14;
  background: url(../img/icn_mail01.svg) no-repeat center center/contain;
  translate: 0 1px;
}
@media screen and (max-width: 849px) {
  .l-header__button a::before {
    width: 12px;
  }
}

.l-toggleButton {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  aspect-ratio: 1/1;
  background: var(--blue01);
  cursor: pointer;
}
@media screen and (min-width: 850px) {
  .l-toggleButton {
    display: none;
  }
}
@media (any-hover: hover) {
  .l-toggleButton {
    -webkit-transition: opacity var(--duration03);
    transition: opacity var(--duration03);
  }
  .l-toggleButton:hover {
    opacity: 0.5;
    text-decoration: none;
  }
}
.l-toggleButton span {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 26px;
  height: 1px;
  background: white;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.l-toggleButton span:nth-child(1) {
  top: 15px;
}
.l-toggleButton span:nth-child(2) {
  top: 25px;
}
.l-toggleButton span:nth-child(3) {
  top: 35px;
}
body.is-menuOpen .l-toggleButton span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 25px;
}
body.is-menuOpen .l-toggleButton span:nth-child(2) {
  opacity: 0;
}
body.is-menuOpen .l-toggleButton span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 25px;
}

.l-headerStrong {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 215px;
  width: 46px;
  height: 30px;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(2, 13px);
  gap: 3px;
}
@media screen and (min-width: 850px) {
  .l-headerStrong {
    display: none;
  }
}

.l-headerStrong__text {
  color: white;
  font-weight: 900;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.09em;
  background: var(--red01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 2px;
}

/* --------------------------------------------------
  footer
-------------------------------------------------- */
.l-footer {
  padding-block: 2.5rem calc(2.5rem + 77px);
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: 5rem calc(5rem + 77px);
  }
}
.l-footer .u-wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer .u-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
  }
}

.l-footer__copy {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.091em;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    width: 100%;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    text-align: center;
  }
}

.l-footer__link {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.091em;
}
@media screen and (max-width: 767px) {
  .l-footer__link {
    width: 100%;
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    text-align: center;
  }
}
.l-footer__link a {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

/* --------------------------------------------------
  title
-------------------------------------------------- */
.c-title50 {
  font-weight: 900;
  font-size: 5rem;
  letter-spacing: 0.091em;
  line-height: 1.35;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title50 {
    font-size: 7.6rem;
  }
}

/* --------------------------------------------------
  text
-------------------------------------------------- */
.c-bgGradient {
  background: var(--gradientBlue01);
  padding: var(--bgGradientPadding);
  color: white;
}

/* --------------------------------------------------
  cta
-------------------------------------------------- */
.c-cta {
  background: var(--gradientBlue01);
  padding-block: 4rem;
}

.c-ctaBox {
  background: white;
  border-radius: 20px;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  padding-block: 4.5rem 3.8rem;
}

.c-ctaBoxHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-ctaBoxHeading {
    gap: 1.5rem 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-ctaBoxHeading__text {
  background: var(--red01);
  width: 11.8rem;
  height: 3.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.091em;
  line-height: 1;
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 767px) {
  .c-ctaBoxHeading__text {
    width: 15.3rem;
    height: 4.5rem;
    font-size: 3rem;
  }
}

.c-ctaBoxHeading__title {
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .c-ctaBoxHeading__title {
    width: 100%;
    font-size: 3.5rem;
    line-height: 1.3;
    text-align: center;
  }
}

.c-ctaBox .c-buttonOrange01 {
  margin: 2.3rem auto 0;
}

/* --------------------------------------------------
  button
-------------------------------------------------- */
.c-buttonOrange01 {
  width: var(--buttonOrange01Width);
  height: 8.6rem;
  border-radius: calc(infinity * 1px);
  background: white;
}
@media screen and (max-width: 767px) {
  .c-buttonOrange01 {
    height: 10rem;
  }
}
.c-buttonOrange01 a {
  position: relative;
  display: grid;
  grid-template-columns: 2.4rem auto;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--gradientOrange01);
  border-radius: calc(infinity * 1px);
  border: 3px solid white;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  color: white;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.08em;
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-buttonOrange01 a {
    grid-template-columns: 3.6rem auto;
    gap: 1.4rem;
    border: 2px solid white;
    font-size: 2.8rem;
    padding-right: 3.5rem;
  }
}
.c-buttonOrange01 a::before {
  content: "";
  width: 2.4rem;
  aspect-ratio: 19/14;
  background: url(../img/icn_mail01.svg) no-repeat center center/contain;
  translate: 0 0.1rem;
}
@media screen and (max-width: 767px) {
  .c-buttonOrange01 a::before {
    width: 3.6rem;
  }
}
.c-buttonOrange01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 2.8rem;
  width: 1.7rem;
  aspect-ratio: 1/1;
  background: url(../img/arw_right01.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-buttonOrange01 a::after {
    right: 3.5rem;
    width: 2rem;
  }
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 767px) {
  .u-minsp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  text
-------------------------------------------------- */
.u-weight900 {
  font-weight: 900;
}

.u-weight700 {
  font-weight: 700;
}

.u-red01 {
  color: var(--red01);
}

.u-yellow01 {
  color: #ffff3a;
}

.u-lightBlue01 {
  color: var(--lightBlue02);
}

.u-size130 {
  font-size: 130%;
}

/* --------------------------------------------------
  u-preload
-------------------------------------------------- */
.u-preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

/* --------------------------------------------------
  u-wrap
-------------------------------------------------- */
.u-wrap {
  position: relative;
  width: calc(var(--wrap) + var(--wrapPaddingHorizontal) * 2);
  padding: 0 var(--wrapPaddingHorizontal);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .u-wrap {
    width: 100%;
  }
}

/* --------------------------------------------------
  u-over
-------------------------------------------------- */
@media (any-hover: hover) {
  .u-over {
    -webkit-transition: opacity var(--duration03);
    transition: opacity var(--duration03);
  }
  .u-over:hover {
    opacity: 0.5;
    text-decoration: none;
  }
}

/* --------------------------------------------------
  l-contents
-------------------------------------------------- */
.fv-sec {
  width: 100%;
  height: 69.8rem;
  background: url(../img/bg_fv01_pc.jpg) no-repeat center bottom/cover;
  padding-top: 5.1rem;
}
@media screen and (max-width: 767px) {
  .fv-sec {
    height: 104.7rem;
    background: url(../img/bg_fv01_sp.jpg) no-repeat center bottom/cover;
    padding-top: 4rem;
  }
}
.fv-sec .u-wrap {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .fv-sec .u-wrap {
    --wrapPaddingHorizontal: 0;
  }
}

.fv-sec__title {
  width: 80.8rem;
  aspect-ratio: 1616/540;
  margin-inline: auto;
  background: url(../img/ttl_fv01_pc.png) no-repeat center top/contain;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
  translate: -1.8rem 0;
}
@media screen and (max-width: 767px) {
  .fv-sec__title {
    width: 68.2rem;
    aspect-ratio: 1364/900;
    background: url(../img/ttl_fv01_sp.png) no-repeat center top/contain;
    translate: 0.2rem 0;
  }
}

.fv-sec__text {
  width: 91.8rem;
  margin: 0.8rem auto 0;
}
@media screen and (max-width: 767px) {
  .fv-sec__text {
    width: 74.1rem;
  }
}

.fv-sec .c-buttonOrange01 {
  margin: 0.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .fv-sec .c-buttonOrange01 {
    margin: 0 auto;
    --buttonOrange01Width: 66.4rem;
  }
}

.fv-sec__note {
  color: white;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.051em;
  text-align: center;
  margin-top: 1.5rem;
}

.sec01 {
  position: relative;
  padding-top: 9.8rem;
}
@media screen and (max-width: 767px) {
  .sec01 {
    padding-top: 8.3rem;
  }
}
.sec01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 73.3rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), to(rgb(215, 215, 215)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(215, 215, 215) 100%);
}
.sec01::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: url(../img/bg_sec01_01_pc.png) no-repeat left top/136.6rem auto;
}
@media screen and (max-width: 767px) {
  .sec01::after {
    background: url(../img/bg_sec01_01_sp.png) no-repeat left top/75rem auto;
    padding-top: 8.3rem;
  }
}
.sec01 .u-wrap {
  z-index: 1;
}

.sec01__title {
  width: 64rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .sec01__title {
    width: 64.7rem;
  }
}

.sec01__list {
  position: relative;
  background: white;
  padding: 2.2rem 4rem 1.8rem;
  -webkit-box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.2);
          box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.2);
  width: 80rem;
  margin: 2.7rem auto 0;
}
@media screen and (max-width: 767px) {
  .sec01__list {
    margin: 2.9rem auto 0;
    padding: 3rem 3.6rem 2.5rem;
    width: 100%;
  }
}
.sec01__list::before {
  content: "";
  position: absolute;
  bottom: -0.7rem;
  right: -14rem;
  width: 22.8rem;
  aspect-ratio: 456/548;
  background: url(../img/img_sec01_01.png) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec01__list::before {
    bottom: -0.5rem;
    right: 0;
    width: 19.5rem;
  }
}
.sec01__list li {
  position: relative;
  font-size: 2rem;
  letter-spacing: 0.091em;
  padding: 1.8rem 1.8rem 1.8rem 6.6rem;
}
@media screen and (max-width: 767px) {
  .sec01__list li {
    font-size: 2.7rem;
    line-height: 1.4814814815;
    letter-spacing: 0.061em;
    padding: 1.8rem 0 1.8rem 5.5rem;
  }
  .sec01__list li.m-ls01 {
    letter-spacing: -0.019em;
  }
}
.sec01__list li::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: 2rem;
  width: 2.6rem;
  aspect-ratio: 26/25;
  background: url(../img/icn_check01.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .sec01__list li::before {
    top: 2.3rem;
    left: 0;
    width: 3rem;
  }
}
.sec01__list li:nth-child(n+2) {
  border-top: 1px solid #b8ccd1;
}

.sec01Lead {
  text-align: center;
  margin-top: 3.2rem;
}

.sec01Lead__text01 {
  color: var(--blue02);
  font-weight: 700;
  font-size: 3.6rem;
  letter-spacing: 0.091em;
}
@media screen and (max-width: 767px) {
  .sec01Lead__text01 {
    font-size: 4rem;
  }
}

.sec01Lead__text02 {
  color: var(--blue02);
  font-weight: 900;
  font-size: 5.76rem;
  letter-spacing: 0.091em;
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  .sec01Lead__text02 {
    font-size: 6.4rem;
  }
}

.sec02 {
  position: relative;
  background: var(--lightBlue01);
  padding-block: 12rem 10rem;
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  .sec02 {
    margin-top: 1rem;
  }
}

.sec02__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  -webkit-filter: drop-shadow(0 10px 5px rgb(var(--shadow01)/0.05));
          filter: drop-shadow(0 10px 5px rgb(var(--shadow01)/0.05));
}
@media screen and (max-width: 767px) {
  .sec02__bg {
    height: 6.3rem;
  }
}
.sec02__bg::before {
  content: "";
  position: absolute;
  background-color: white;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  height: 100%;
  width: 100%;
}

.sec02__title {
  width: 109rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .sec02__title {
    width: 68.6rem;
  }
}

.sec02__grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 51.2rem 1fr;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .sec02__grid {
    margin-top: 6rem;
    grid-template-columns: 100%;
    gap: 9rem;
  }
}

.sec02__image img {
  display: block;
  width: 47.3rem;
  margin-left: auto;
  -webkit-box-shadow: -3.7rem 3.7rem 0 #93b2ba;
          box-shadow: -3.7rem 3.7rem 0 #93b2ba;
}
@media screen and (max-width: 767px) {
  .sec02__image img {
    width: 65rem;
    -webkit-box-shadow: -4rem 4rem 0 #93b2ba;
            box-shadow: -4rem 4rem 0 #93b2ba;
  }
}

.sec02__texts {
  display: grid;
  grid-template-columns: 100%;
  gap: 4.2rem;
}

.sec02__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.09rem;
}
.sec02__text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.666) * 0.5em);
  content: "";
}
.sec02__text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.666) * 0.5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .sec02__text {
    font-size: 2.7rem;
    line-height: 1.8518518519;
  }
  .sec02__text::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.85) * 0.5em);
    content: "";
  }
  .sec02__text::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.85) * 0.5em);
    content: "";
  }
}

.sec03 {
  padding-block: 8.8rem 10.5rem;
  background: url(../img/bg_sec03_01.png), url(../img/bg_sec03_02.png);
  background-size: 50.7rem auto, 50.7rem auto;
  background-repeat: no-repeat;
  background-position: left top, right bottom;
}
@media screen and (max-width: 767px) {
  .sec03 {
    background-size: 40rem auto, 40rem auto;
  }
}

.sec03Grid {
  margin-top: 7.9rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.9rem;
}
@media screen and (max-width: 767px) {
  .sec03Grid {
    margin-top: 6rem;
    grid-template-columns: 100%;
    gap: 4rem;
  }
}

.sec03Grid__item {
  background: white;
  -webkit-box-shadow: 1px 1px 5px rgb(var(--shadow01)/0.4);
          box-shadow: 1px 1px 5px rgb(var(--shadow01)/0.4);
}

.sec03Grid__image {
  width: 100%;
  aspect-ratio: 1040/686;
}

.sec03Grid__texts {
  padding: 2.2rem 5rem 3.4rem;
}

.sec03Grid__title {
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: 0.091em;
  text-align: center;
  padding-bottom: 2.3rem;
  border-bottom: 2px solid var(--lightBlue02);
}
@media screen and (max-width: 767px) {
  .sec03Grid__title {
    font-size: 4rem;
    border-bottom: 1px solid var(--lightBlue02);
  }
}

.sec03Grid__list {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 100%;
  gap: 0.9rem;
}
.sec03Grid__list li {
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  padding-left: 2.7rem;
}
@media screen and (max-width: 767px) {
  .sec03Grid__list li {
    font-size: 2.7rem;
    padding-left: 5.4rem;
  }
}
.sec03Grid__list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 1.6rem;
  aspect-ratio: 16/15;
  background: url(../img/icn_check02.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .sec03Grid__list li::before {
    width: 3.1rem;
  }
}

.sec04 {
  padding-block: 8.9rem 5.6rem;
  background-color: #f3faff;
  background-image: linear-gradient(90deg, #e7eef4 1px, transparent 1px), linear-gradient(#e7eef4 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 19px 19px;
}
@media screen and (max-width: 767px) {
  .sec04 {
    background-size: 12px 12px;
  }
}
.sec04 .c-title50 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.sec04__titleBalloon {
  position: absolute;
  top: -3.4rem;
  left: -7.2rem;
  width: 6.9rem;
  aspect-ratio: 69/70;
  background: url(../img/ttl_sec03_01.svg) no-repeat center center/contain;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .sec04__titleBalloon {
    left: calc(50% - 26rem);
    width: 9rem;
  }
}

.sec04__image {
  width: 101.8rem;
  margin: 4.8rem auto 0;
}
@media screen and (max-width: 767px) {
  .sec04__image {
    width: 100%;
    margin: 6rem auto 0;
  }
}

.sec04__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.09em;
  width: 100rem;
  margin: 2.2rem auto 0;
}
@media screen and (max-width: 767px) {
  .sec04__text {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    width: 100%;
    margin: 4rem auto 0;
  }
}

.sec04Lead {
  margin-top: 4.3rem;
  text-align: center;
}

.sec04Lead__text01 {
  font-weight: 900;
  font-size: 4rem;
  letter-spacing: 0.091em;
}
@media screen and (max-width: 767px) {
  .sec04Lead__text01 {
    font-size: 5.5rem;
    line-height: 1.3;
  }
}

.sec04Lead__text02 {
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: 0.091em;
}
@media screen and (max-width: 767px) {
  .sec04Lead__text02 {
    font-size: 4rem;
    line-height: 1.3;
    margin-top: 2rem;
  }
}

.sec05 {
  background: var(--lightBlue01);
  padding-block: 10.2rem 3.3rem;
}
@media screen and (max-width: 767px) {
  .sec05 {
    padding-block: 10.2rem 0;
  }
}

.sec05__title {
  width: 49.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .sec05__title {
    width: 67rem;
  }
}

.sec05__text {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.9230769231;
  letter-spacing: 0.09em;
  text-align: center;
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .sec05__text {
    font-size: 2.8rem;
    margin-top: 5rem;
  }
}

.sec05Grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100rem;
  margin: 6.7rem auto 0;
}
@media screen and (max-width: 767px) {
  .sec05Grid {
    grid-template-columns: 100%;
    gap: 4rem;
    width: 100%;
    margin: 6rem auto 0;
  }
}

.sec05Grid__item {
  background: white;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.sec05Grid__item:nth-child(1) {
  --sec05GridTitleGb: linear-gradient(90deg,rgba(1, 76, 151, 1) 0%, rgba(92, 183, 234, 1) 100%);
  --sec05GridListPadding: 1.7rem 0 1.7rem 8.1rem;
  --sec05GridListIcon: 3.5rem;
}
@media screen and (max-width: 767px) {
  .sec05Grid__item:nth-child(1) {
    --sec05GridListPadding: 1.8rem 0 1.8rem 5.5rem;
    --sec05GridListIcon: 0;
  }
}
.sec05Grid__item:nth-child(2) {
  --sec05GridTitleGb: #565656;
  --sec05GridListPadding: 1.7rem 0 1.7rem 4.8rem;
  --sec05GridListIcon: 0;
}
@media screen and (max-width: 767px) {
  .sec05Grid__item:nth-child(2) {
    --sec05GridListPadding: 1.8rem 0 1.8rem 5.5rem;
  }
}

.sec05Grid__title {
  height: 8.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 2.8rem;
  letter-spacing: 0.091em;
  background: var(--sec05GridTitleGb);
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .sec05Grid__title {
    height: 10rem;
    font-size: 3.6rem;
    padding-bottom: 0;
  }
}

.sec05Grid__image {
  width: 42rem;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .sec05Grid__image {
    width: 60rem;
    margin: 0 auto;
  }
  .sec05Grid__item:nth-child(2) .sec05Grid__image {
    padding-top: 5rem;
  }
}

.sec05Grid__list {
  padding: 1.2rem 3.5rem 2.2rem;
}
@media screen and (max-width: 767px) {
  .sec05Grid__list {
    padding: 3rem 5rem 2.5rem;
  }
}
.sec05Grid__list li {
  position: relative;
  padding: var(--sec05GridListPadding);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .sec05Grid__list li {
    font-size: 2.7rem;
    line-height: 1.4814814815;
  }
}
.sec05Grid__list li:nth-child(n+2) {
  border-top: 1px solid #b8ccd1;
}
.sec05Grid__list li::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: var(--sec05GridListIcon);
  width: 2.6rem;
  aspect-ratio: 26/25;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .sec05Grid__list li::before {
    top: 2.5rem;
    width: 3rem;
  }
}
.sec05Grid__item:nth-child(1) .sec05Grid__list li::before {
  background-image: url(../img/icn_check01.svg);
}
.sec05Grid__item:nth-child(2) .sec05Grid__list li::before {
  background-image: url(../img/icn_check04.svg);
}

.sec05Lead {
  margin: 6.2rem auto;
  width: 94rem;
  display: grid;
  grid-template-columns: 20.9rem 1fr;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .sec05Lead {
    margin: 7.4rem auto 0;
    width: 100%;
    grid-template-columns: 100%;
    gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .sec05Lead__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 30rem;
    margin-inline: auto;
    translate: 0 1rem;
    overflow: hidden;
  }
}

.sec05Lead__texts {
  padding-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .sec05Lead__texts {
    padding-top: 0;
  }
}

.sec05Lead__text01 {
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.8333333333;
  letter-spacing: 0.091em;
}
@media screen and (max-width: 767px) {
  .sec05Lead__text01 {
    text-align: center;
    font-size: 4rem;
  }
}

.sec05Lead__text02 {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.9230769231;
  letter-spacing: 0.091em;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .sec05Lead__text02 {
    text-align: center;
    font-size: 3rem;
    margin-top: 1.6rem;
  }
}

.sec06 {
  position: relative;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgb(6, 141, 214)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(6, 141, 214) 100%);
  padding-block: 10.2rem 6rem;
}
@media screen and (max-width: 767px) {
  .sec06 {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgb(6, 141, 214)));
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(6, 141, 214) 100%);
    padding-block: 7.6rem 4.5rem;
  }
}
.sec06::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_sec06_01_pc.png) no-repeat left bottom -1px/100% auto;
}
@media screen and (max-width: 767px) {
  .sec06::before {
    background: url(../img/bg_sec06_01_sp.png) no-repeat left bottom/100% auto;
  }
}

.sec06__title {
  width: 58.5rem;
  margin-inline: auto;
}

.sec06Grid {
  margin-top: 5.7rem;
  display: grid;
  grid-template-columns: 100%;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .sec06Grid {
    margin-top: 3rem;
    gap: 4rem;
  }
}

section[class^=sec06Item0] {
  position: relative;
  background: white;
  -webkit-box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
          box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
  padding: 4.1rem 4.8rem;
}
@media screen and (max-width: 767px) {
  section[class^=sec06Item0] {
    padding: 4.1rem 4.5rem;
  }
}
section[class^=sec06Item0]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12.2rem;
  aspect-ratio: 1/1;
  background: var(--blue01);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
}

.sec06Grid__title {
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 1.1764705882;
  letter-spacing: 0.091em;
  text-align: center;
  color: var(--blue01);
}
@media screen and (max-width: 767px) {
  .sec06Grid__title {
    font-size: 3.6rem;
  }
}

.sec06Item01__grid {
  display: grid;
  grid-template-columns: 1fr 42rem;
  gap: 4rem;
  margin-top: 4.1rem;
}
@media screen and (max-width: 767px) {
  .sec06Item01__grid {
    grid-template-columns: 100%;
    gap: 5rem;
    margin-top: 4rem;
  }
}

.sec06Item01__texts {
  display: grid;
  grid-template-columns: 100%;
  gap: 4rem;
}

.sec06Item01__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.09em;
}
.sec06Item01__text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.66) * 0.5em);
  content: "";
}
.sec06Item01__text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.66) * 0.5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .sec06Item01__text {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    letter-spacing: 0.05em;
  }
  .sec06Item01__text::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.85) * 0.5em);
    content: "";
  }
  .sec06Item01__text::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.85) * 0.5em);
    content: "";
  }
}

@media screen and (max-width: 767px) {
  .sec06Item01__image {
    width: 61.1rem;
    margin: 0 auto;
  }
}

.sec06Box01__note {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec06Box01__note {
    font-size: 2.4rem;
    margin-top: 2rem;
  }
}

.sec06Item02__image {
  width: 100.1rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .sec06Item02__image {
    width: 61.1rem;
    margin: 4rem auto 0;
  }
}

.sec06Item02__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.08em;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .sec06Item02__text {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    margin-top: 2rem;
    letter-spacing: 0.03em;
  }
}

.sec06Item03__image {
  width: 100rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .sec06Item03__image {
    width: 61.1rem;
    margin: 4rem auto 0;
  }
}

.sec06Item03__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.08em;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .sec06Item03__text {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    margin-top: 1.5rem;
    letter-spacing: 0.04em;
  }
}

.sec06Item03__note {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .sec06Item03__note {
    font-size: 2.4rem;
    margin-top: 2rem;
  }
}

.sec06__lead {
  width: 110rem;
  margin: 6.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .sec06__lead {
    width: 100%;
    margin: 8.3rem auto 0;
  }
}

.sec07 {
  position: relative;
  background: #e8f6ff url(../img/bg_sec07_01_pc.png) no-repeat center top/100% auto;
  padding-block: 9.4rem 10.5rem;
}
@media screen and (max-width: 767px) {
  .sec07 {
    background: #e8f6ff url(../img/bg_sec07_01_sp.png) no-repeat center top/100% auto;
  }
}
.sec07::before {
  content: "";
  position: absolute;
  top: 25.5%;
  left: 0;
  width: 100%;
  aspect-ratio: 1366/698;
  background: #f5fcff;
  -webkit-clip-path: polygon(100% 0, 100% 65%, 0 100%, 0 35%);
          clip-path: polygon(100% 0, 100% 65%, 0 100%, 0 35%);
}
@media screen and (max-width: 767px) {
  .sec07::before {
    top: 23%;
    aspect-ratio: 750/840;
    -webkit-clip-path: polygon(100% 0, 100% 80%, 0 100%, 0 20%);
            clip-path: polygon(100% 0, 100% 80%, 0 100%, 0 20%);
  }
}
.sec07::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  aspect-ratio: 1366/698;
  background: #f5fcff;
  -webkit-clip-path: polygon(100% 0, 100% 65%, 0 100%, 0 35%);
          clip-path: polygon(100% 0, 100% 65%, 0 100%, 0 35%);
}
@media screen and (max-width: 767px) {
  .sec07::after {
    aspect-ratio: 750/840;
    -webkit-clip-path: polygon(100% 0, 100% 80%, 0 100%, 0 20%);
            clip-path: polygon(100% 0, 100% 80%, 0 100%, 0 20%);
  }
}
.sec07 .u-wrap {
  z-index: 1;
}

.sec07__title {
  width: 51.7rem;
  margin-inline: auto;
}

.sec07List {
  margin: 9.4rem auto 0;
  width: 100rem;
  display: grid;
  grid-template-columns: 100%;
  gap: 10.5rem;
}
@media screen and (max-width: 767px) {
  .sec07List {
    width: 100%;
    gap: 7.7rem;
  }
}

.sec07List__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .sec07List__item:nth-child(1) {
    padding-top: 11.2rem;
  }
  .sec07List__item:nth-child(2) {
    padding-top: 14rem;
  }
  .sec07List__item:nth-child(3) {
    padding-top: 8.2rem;
  }
  .sec07List__item:nth-child(4) {
    padding-top: 8.2rem;
  }
  .sec07List__item:nth-child(5) {
    padding-top: 8.2rem;
  }
}
.sec07List__item:nth-child(odd) .sec07List__image {
  left: 0;
}
@media screen and (max-width: 767px) {
  .sec07List__item:nth-child(odd) .sec07List__image {
    left: auto;
  }
}
.sec07List__item:nth-child(odd) .sec07List__texts {
  margin-left: auto;
}
.sec07List__item:nth-child(even) .sec07List__image {
  right: 0;
}
@media screen and (max-width: 767px) {
  .sec07List__item:nth-child(even) .sec07List__image {
    right: auto;
  }
}

.sec07List__texts {
  position: relative;
  background: white;
  padding: 4.5rem 5rem 3.5rem;
  -webkit-box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
          box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
  width: 51.1rem;
}
@media screen and (max-width: 767px) {
  .sec07List__texts {
    padding: 3.8rem 5.3rem 3.9rem;
    margin: -4rem 0 0 auto;
  }
}

.sec07List__number {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -60%;
  font-family: "Barlow", sans-serif;
  color: var(--lightBlue02);
  font-size: 6rem;
  letter-spacing: 0.091em;
  line-height: 1;
}

.sec07List__title {
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: 0.091em;
  text-align: center;
  padding-bottom: 2.3rem;
  border-bottom: 2px solid var(--lightBlue02);
}
@media screen and (max-width: 767px) {
  .sec07List__title {
    font-size: 4rem;
    padding-bottom: 1.9rem;
    border-bottom: 1px solid var(--lightBlue02);
  }
  .sec07List__title.m-ls01 {
    letter-spacing: 0.05em;
  }
}

.sec07List__image {
  position: absolute;
  top: 0;
  width: 55.8rem;
}
@media screen and (max-width: 767px) {
  .sec07List__image {
    position: static;
    top: auto;
  }
}

.sec07List__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.07em;
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .sec07List__text {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    letter-spacing: 0.08em;
    margin-top: 1.8rem;
  }
}

.sec08 {
  padding-block: 9.2rem 9rem;
}
@media screen and (max-width: 767px) {
  .sec08 .c-title50 {
    letter-spacing: 0.04em;
  }
}

.sec08Flow {
  margin: 7rem auto 0;
  width: 100rem;
  display: grid;
  grid-template-columns: 100%;
  gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .sec08Flow {
    margin: 6rem auto 0;
    width: 100%;
  }
}

.sec08Flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 25.5rem 1fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "area1 area2" "area1 area3" "area1 area4";
  gap: 0 4.8rem;
}
@media screen and (max-width: 767px) {
  .sec08Flow__item {
    grid-template-columns: 15rem 1fr;
    grid-template-rows: 1fr auto auto 1fr auto;
    grid-template-areas: "area1 ." "area1 area2" "area1 area3" "area1 ." "area4 area4";
    gap: 0 3rem;
  }
}
.sec08Flow__item::before {
  content: "";
  position: absolute;
  top: calc(100% + 2.5rem);
  left: 50%;
  translate: -50% 0;
  width: 7rem;
  aspect-ratio: 7/3;
  background: #9ac2cc;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.sec08Flow__image {
  grid-area: area1;
}

.sec08Flow__number {
  grid-area: area2;
  font-family: "Barlow", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--blue02);
  letter-spacing: 0.091em;
}
@media screen and (max-width: 767px) {
  .sec08Flow__number {
    font-size: 3.4rem;
    letter-spacing: 0.04em;
  }
}
.sec08Flow__number::before {
  content: "STEP";
  font-size: 2rem;
  padding-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sec08Flow__number::before {
    font-size: 2.6rem;
  }
}

.sec08Flow__title {
  grid-area: area3;
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: 0.091em;
  border-bottom: 2px solid var(--blue02);
  padding-bottom: 2.4rem;
  margin-top: 1.3rem;
}
@media screen and (max-width: 767px) {
  .sec08Flow__title {
    font-size: 3.6rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--blue02);
    margin-top: 0;
    letter-spacing: 0.04em;
  }
}

.sec08Flow__text {
  grid-area: area4;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.09em;
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .sec08Flow__text {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    letter-spacing: 0.08em;
  }
}
.sec08Flow__text a {
  color: var(--blue02);
  text-decoration: underline;
}
.sec08Flow__text a::before {
  content: "＞";
}

.sec08FlowLast {
  background: var(--blue02);
  display: grid;
  grid-template-areas: "area1 area2" "area3 area3";
  grid-template-columns: repeat(2, auto);
  grid-template-rows: auto auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem 4rem;
  padding-block: 2rem;
}
@media screen and (max-width: 767px) {
  .sec08FlowLast {
    gap: 2rem 3rem;
    padding-block: 3.5rem;
  }
}

.sec08FlowLast__number {
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.091em;
  line-height: 1;
  text-align: right;
  grid-area: area1;
}
@media screen and (max-width: 767px) {
  .sec08FlowLast__number {
    font-size: 3.4rem;
    letter-spacing: 0.04em;
  }
}
.sec08FlowLast__number::before {
  content: "STEP";
  font-size: 2rem;
  padding-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sec08FlowLast__number::before {
    font-size: 2.6rem;
  }
}

.sec08FlowLast__title {
  color: white;
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.091em;
  grid-area: area2;
}
@media screen and (max-width: 767px) {
  .sec08FlowLast__title {
    font-size: 3.6rem;
  }
}

.sec08FlowLast__text {
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.091em;
  text-align: center;
  grid-area: area3;
}
@media screen and (max-width: 767px) {
  .sec08FlowLast__text {
    font-size: 2.7rem;
    letter-spacing: 0.07em;
  }
}

.sec08Lead {
  position: relative;
  margin-top: 8.6rem;
  background: #e8f6ff;
  padding: 4.5rem 5.2rem 3.8rem 6.7rem;
  display: grid;
  grid-template-columns: 27.1rem 1fr;
  gap: 4.8rem;
}
@media screen and (max-width: 767px) {
  .sec08Lead {
    padding: 4.5rem 0 3.8rem;
    grid-template-columns: 100%;
    gap: 1.2rem;
  }
}
.sec08Lead::before {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  translate: -50% 0;
  width: 4.8rem;
  aspect-ratio: 48/30;
  background: #e8f6ff;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 767px) {
  .sec08Lead::before {
    width: 5.7rem;
  }
}

@media screen and (max-width: 767px) {
  .sec08Lead__image {
    width: 32.5rem;
    margin-inline: auto;
    translate: 2.7rem 0;
  }
}

.sec08Lead__title {
  color: white;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 0.09em;
  --bgGradientPadding: 0 0.7em 0.06em 0.75em;
}
@media screen and (max-width: 767px) {
  .sec08Lead__title {
    --bgGradientPadding: 0 0.7em 0.1em 0.75em;
    text-align: center;
    line-height: 1.9;
  }
  .sec08Lead__title > span:nth-child(1) {
    font-size: 2.8rem;
    letter-spacing: 0.15em;
  }
  .sec08Lead__title > span:nth-child(n+2) {
    font-size: 4.4rem;
  }
}

.sec08Lead__text {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.09em;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .sec08Lead__text {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    letter-spacing: 0.07em;
    padding-inline: 5rem;
  }
}

.sec09 {
  padding-block: 9rem 10rem;
  background: #f3faff;
}

.sec09__text {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.9230769231;
  letter-spacing: 0.09em;
  text-align: center;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sec09__text {
    font-size: 2.8rem;
    margin-top: 5rem;
  }
}

.sec09Grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 4rem;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .sec09Grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
    margin-top: 6rem;
  }
}

.sec09Grid__name {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.09em;
  text-align: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sec09Grid__name {
    font-size: 2.5rem;
    line-height: 1.8518518519;
    letter-spacing: 0.03em;
  }
}

.sec10 {
  padding-block: 9.2rem 12.5rem;
  background: #fff9f5 url(../img/bg_sec10_01_pc.png) no-repeat center bottom/100% auto;
}
@media screen and (max-width: 767px) {
  .sec10 {
    background: #fff9f5 url(../img/bg_sec10_01_sp.png) no-repeat center bottom/100% auto;
  }
}

.sec10List {
  display: grid;
  grid-template-columns: 100%;
  gap: 4rem;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .sec10List {
    margin-top: 6rem;
  }
}

.sec10List__item {
  background: white;
  -webkit-box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
          box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
  padding: 4.5rem 5rem 4.7rem;
  display: grid;
  grid-template-areas: "area1 area2" "area1 area3";
  grid-template-columns: 22.5rem 1fr;
  grid-template-rows: auto auto;
  gap: 0 5rem;
}
@media screen and (max-width: 767px) {
  .sec10List__item {
    grid-template-areas: "area1 ." "area1 area2" "area1 ." "area3 area3";
    grid-template-columns: 15rem 1fr;
    grid-template-rows: 1fr auto 1fr auto;
    gap: 0 3rem;
  }
}

.sec10List__image {
  grid-area: area1;
}

.sec10List__title {
  grid-area: area2;
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: 0.09em;
  padding-bottom: 3.2rem;
  border-bottom: 2px solid var(--lightBlue02);
}
.sec10List__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.sec10List__title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .sec10List__title {
    font-size: 3rem;
    letter-spacing: 0.03em;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--lightBlue02);
  }
}

.sec10List__text {
  grid-area: area3;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.091em;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .sec10List__text {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    letter-spacing: 0.04em;
  }
}

.sec11 {
  padding-block: 9.3rem 10rem;
  background-image: linear-gradient(90deg, #f4f4f4 1px, transparent 1px), linear-gradient(#f4f4f4 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 19px 19px;
}
@media screen and (max-width: 767px) {
  .sec11 {
    padding-block: 11rem 6rem;
    background-size: 12px 12px;
  }
}

.sec11List {
  display: grid;
  grid-template-columns: 100%;
  gap: 4rem;
  margin-top: 5.2rem;
}
@media screen and (max-width: 767px) {
  .sec11List {
    margin-top: 6rem;
  }
}

.sec11List__item {
  background: white;
  -webkit-box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
          box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
  padding: 4rem 5rem 4.5rem;
}

.sec11List__question {
  position: relative;
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1.5384615385;
  letter-spacing: 0.091em;
  padding: 0 0 2.5rem 5.3rem;
  border-bottom: 2px solid var(--lightBlue02);
}
@media screen and (max-width: 767px) {
  .sec11List__question {
    font-size: 3rem;
    letter-spacing: 0.04em;
    padding: 0 0 2rem 5.3rem;
    border-bottom: 1px solid var(--lightBlue02);
  }
}
.sec11List__question::before {
  content: "Q";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 3.3rem;
  aspect-ratio: 1/1;
  background: var(--black01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 2.7rem;
  line-height: 1;
  padding-bottom: 0.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .sec11List__question::before {
    top: 0.7rem;
    width: 3.8rem;
    font-size: 3.2rem;
    padding-bottom: 0.6rem;
  }
}

.sec11List__answer {
  position: relative;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.09em;
  padding: 2rem 0 0 5.3rem;
}
@media screen and (max-width: 767px) {
  .sec11List__answer {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    letter-spacing: 0.04em;
    padding: 2rem 0 0 5.3rem;
  }
}
.sec11List__answer::before {
  content: "A";
  position: absolute;
  top: 2rem;
  left: 0;
  width: 3.3rem;
  aspect-ratio: 1/1;
  background: var(--lightBlue02);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 2.7rem;
  line-height: 1;
  padding-bottom: 0.2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .sec11List__answer::before {
    top: 2.5rem;
    width: 3.8rem;
    font-size: 3.2rem;
  }
}

.sec12 {
  padding-block: 10.3rem 10rem;
  background: url(../img/bg_sec12_01_pc.jpg) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .sec12 {
    background: url(../img/bg_sec12_01_sp.jpg) no-repeat center bottom/cover;
  }
}

.sec12Box {
  background: white;
  -webkit-box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
          box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
  padding: 5rem 5rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr 42rem;
  grid-template-rows: auto auto;
  grid-template-areas: "area1 area1" "area2 area3";
  gap: 3.4rem 4rem;
}
@media screen and (max-width: 767px) {
  .sec12Box {
    padding: 5.8rem 6.5rem 7.8rem;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    grid-template-areas: "area1" "area3" "area2";
    gap: 0;
  }
}

.sec12Box__title {
  width: 70.5rem;
  margin-inline: auto;
  grid-area: area1;
}
@media screen and (max-width: 767px) {
  .sec12Box__title {
    width: 56rem;
  }
}

.sec11Box__image {
  grid-area: area3;
}
@media screen and (max-width: 767px) {
  .sec11Box__image {
    margin-top: 3.3rem;
  }
}

.sec12Box__texts {
  grid-area: area2;
  display: grid;
  grid-template-columns: 100%;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sec12Box__texts {
    margin-top: 3.7rem;
    gap: 7rem;
  }
}

.sec12Box__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.09em;
}
.sec12Box__text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.66) * 0.5em);
  content: "";
}
.sec12Box__text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.66) * 0.5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .sec12Box__text {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    letter-spacing: 0.07em;
  }
}

.sec13 {
  background: var(--lightBlue01);
  padding-block: 9rem 10rem;
}

.sec13List {
  margin: 4.3rem auto 0;
  width: 68rem;
}
@media screen and (max-width: 767px) {
  .sec13List {
    margin: 6rem auto 0;
    width: 100%;
  }
}

.sec13List__item {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 1rem;
  border-bottom: 2px solid var(--blue02);
  padding: 2.1rem 1rem 2.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .sec13List__item {
    grid-template-columns: 16rem 1fr;
  }
}

.sec13List__heading {
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: 0.09em;
  padding-top: 0.3rem;
}
@media screen and (max-width: 767px) {
  .sec13List__heading {
    font-size: 2.6rem;
    letter-spacing: 0.04em;
  }
}

.sec13List__text {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .sec13List__text {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    letter-spacing: 0.04em;
  }
}

.sec13List__list li {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.09em;
  padding-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .sec13List__list li {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    letter-spacing: 0.04em;
  }
}
.sec13List__list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 77px;
  background: white;
  -webkit-box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
          box-shadow: 1px 1px 6px rgb(var(--shadow01)/0.4);
}

.fixed-cta__flex {
  margin-inline: auto;
  width: 686px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 23px;
}
@media screen and (max-width: 767px) {
  .fixed-cta__flex {
    width: 100%;
    gap: 10px;
  }
}

.fixed-cta__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .fixed-cta__texts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
}

.fixed-cta__text {
  background: var(--red01);
  width: 118px;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.091em;
  line-height: 1;
  padding-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .fixed-cta__text {
    width: 56px;
    height: 18px;
    font-size: 11px;
    padding-bottom: 0;
  }
}

.fixed-cta__button {
  width: 421px;
  height: 62px;
  border-radius: calc(infinity * 1px);
  background: white;
}
@media screen and (max-width: 767px) {
  .fixed-cta__button {
    width: 285px;
    height: 50px;
  }
}
.fixed-cta__button a {
  position: relative;
  display: grid;
  grid-template-columns: 19px auto;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--gradientOrange01);
  border-radius: calc(infinity * 1px);
  border: 3px solid white;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  color: white;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .fixed-cta__button a {
    grid-template-columns: 14px auto;
    gap: 5px;
    border: 2px solid white;
    font-size: 13px;
    padding-right: 14px;
    padding-bottom: 2px;
  }
}
.fixed-cta__button a::before {
  content: "";
  width: 19px;
  aspect-ratio: 19/14;
  background: url(../img/icn_mail01.svg) no-repeat center center/contain;
  translate: 0 2px;
}
@media screen and (max-width: 767px) {
  .fixed-cta__button a::before {
    width: 14px;
    translate: 0 1px;
  }
}
.fixed-cta__button a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 20px;
  width: 12px;
  aspect-ratio: 1/1;
  background: url(../img/arw_right01.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .fixed-cta__button a::after {
    right: 12px;
    width: 10px;
  }
}