@charset "UTF-8";
/*====================================================
//// webフォント読み込み
====================================================*/
@import url("https://fonts.googleapis.com/css2?family=Lexend&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:wght@700&display=swap");
/* font-family
----------------------------------------------------*/
/* 画面サイズ
----------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) and (max-width: 844px) {
  html {
    font-size: 1.1848341232vw;
  }
}
/*====================================================
//// カラーコード
====================================================*/
:root {
  --color-pink: #DB5684;
  --color-yellow: #FFE521;
  --color-green: #30A4BE;
  --grd-orange: linear-gradient(90deg,rgba(255, 163, 16, 1) 0%, rgba(232, 115, 89, 1) 20%, rgba(219, 86, 132, 1) 50%, rgba(232, 115, 89, 1) 75%,rgba(255, 163, 16, 1) 100%);
  --grd-yellow: linear-gradient(90deg,rgba(255, 246, 16, 1) 0%, rgba(255, 209, 15, 1) 50%, rgba(255, 246, 16, 1) 100%);
  --grd-green: linear-gradient(90deg,rgba(48, 164, 190, 1) 0%, rgba(124, 201, 192, 1) 100%);
  --grd-gray: linear-gradient(90deg,rgba(165, 166, 165, 1) 0%, rgba(219, 219, 219, 1) 100%);
  --grd-by: linear-gradient(90deg,rgba(48, 164, 190, 1) 0%, rgba(125, 186, 151, 1) 50%, rgba(255, 209, 15, 1) 100%);
}

/*====================================================
////アニメーション設定
====================================================*/
.bg-move span {
  position: relative;
  display: block;
  width: fit-content;
  z-index: 10;
}
.bg-move span:nth-child(1)::after {
  transition-delay: 0s;
}
.bg-move span:nth-child(2)::after {
  transition-delay: 0.3s;
}
.bg-move span:nth-child(3)::after {
  transition-delay: 0.6s;
}
.bg-move span:nth-child(4)::after {
  transition-delay: 0.9s;
}
.bg-move span:nth-child(5)::after {
  transition-delay: 1.2s;
}
.bg-move span:nth-child(6)::after {
  transition-delay: 1.5s;
}
.bg-move span:nth-child(7)::after {
  transition-delay: 1.8s;
}
.bg-move span:nth-child(8)::after {
  transition-delay: 2.1s;
}
.bg-move span:nth-child(9)::after {
  transition-delay: 2.4s;
}
.bg-move span:nth-child(10)::after {
  transition-delay: 2.7s;
}
.bg-move span::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--grd-by);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: transform 0.5s;
  transform: scaleX(0);
  transform-origin: left top;
}
.bg-move.active span::after {
  transform: scaleX(1);
}

.asUp {
  overflow: hidden;
}
.asUp span {
  display: block;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.asUp span:nth-child(1) {
  transition-delay: 0s;
}
.asUp span:nth-child(2) {
  transition-delay: 0.3s;
}
.asUp span:nth-child(3) {
  transition-delay: 0.6s;
}
.asUp span:nth-child(4) {
  transition-delay: 0.9s;
}
.asUp span:nth-child(5) {
  transition-delay: 1.2s;
}
.asUp span:nth-child(6) {
  transition-delay: 1.5s;
}
.asUp span:nth-child(7) {
  transition-delay: 1.8s;
}
.asUp span:nth-child(8) {
  transition-delay: 2.1s;
}
.asUp span:nth-child(9) {
  transition-delay: 2.4s;
}
.asUp span:nth-child(10) {
  transition-delay: 2.7s;
}
.asUp.active span {
  transform: translateY(0);
}

.btn a {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.4375;
  font-weight: 500;
  text-align: center;
  width: 23rem;
  border-radius: 2.5rem;
  -webkit-border-radius: 2.5rem;
  -moz-border-radius: 2.5rem;
  -ms-border-radius: 2.5rem;
  -o-border-radius: 2.5rem;
}
@media screen and (min-width: 768px) {
  .btn a {
    width: 25.3rem;
  }
}
.btn.orange a {
  background: var(--grd-orange);
  background-size: 200% auto;
  background-position: left top;
  transition: background-position 0.5s;
}
.btn.arrow a {
  position: relative;
}
.btn.arrow a::after {
  content: "";
  width: 0.7rem;
  height: 1.4rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.414%22%20height%3D%2216.828%22%20viewBox%3D%220%200%209.414%2016.828%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1%22%20data-name%3D%22%E3%83%91%E3%82%B9%201%22%20d%3D%22M390.72%2C611.872l7%2C7-7%2C7%22%20transform%3D%22translate(-389.306%20-610.458)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn:hover.orange a {
  background-position: 100% top;
}

/*====================================================
////common
====================================================*/
/* ---------- 基本設定 ----------*/
body {
  font-family: "Noto Sans JP", sans-serif;
}

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

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

.only-pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .only-pc {
    display: block !important;
  }
}

.inner {
  width: 92.8%;
  margin: auto;
  max-width: 102.4rem;
}
.inner.narrow {
  max-width: 84.6rem;
}

.contents {
  background-color: #F4F4F4;
  padding: 3.5rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .contents {
    padding: 7.1rem 0 0 0;
  }
}

section {
  overflow-x: hidden;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  section {
    border-radius: 2.6rem;
    -webkit-border-radius: 2.6rem;
    -moz-border-radius: 2.6rem;
    -ms-border-radius: 2.6rem;
    -o-border-radius: 2.6rem;
    max-width: 102.4rem;
    margin: auto;
  }
  section .inner {
    max-width: 84.6rem;
  }
}

.sec-title {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 700;
  text-align: center;
}
.sec-title + p {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-top: 1.2rem;
}
@media screen and (min-width: 768px) {
  .sec-title {
    font-size: 3rem;
    line-height: 1;
  }
  .sec-title + p {
    margin-top: 4rem;
    text-align: center;
  }
}

.thanks {
  padding-top: 15.1rem;
  min-height: 90vh;
}
.thanks h1 {
  font-size: 3rem;
  line-height: 1.6666666667;
  font-weight: 700;
  text-align: center;
}
.thanks h1 + p {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 500;
  text-align: center;
  margin-top: 3.5rem;
}
.thanks .btn {
  margin-top: 1rem;
}
.thanks .btn a {
  color: #313131;
  background: var(--grd-yellow);
  position: relative;
  max-width: 25.3rem;
  font-size: 1.6rem;
  line-height: 3.1875;
  margin: 7.15rem auto 3rem auto;
}
.thanks .btn a::after {
  content: "";
  width: 0.7rem;
  aspect-ratio: 7/14;
  position: absolute;
  right: 2.5rem;
  top: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.414%22%20height%3D%2216.828%22%20viewBox%3D%220%200%209.414%2016.828%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1%22%20data-name%3D%22%E3%83%91%E3%82%B9%201%22%20d%3D%22M390.72%2C611.872l7%2C7-7%2C7%22%20transform%3D%22translate(-389.306%20-610.458)%22%20fill%3D%22none%22%20stroke%3D%22%23313131%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

/*====================================================
////header
====================================================*/
.header {
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  z-index: 99999;
  background-color: #fff;
  transition: height 0.3s;
  height: 6.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header__inner {
  width: 92.8%;
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.header__logo {
  width: 66.6666666667%;
  max-width: 23.2rem;
  position: relative;
  z-index: 10;
}
.header__logo a {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.header__logo a img {
  display: block;
  width: 40.0862068966%;
}
.header__logo a p {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
}
.header__menu-btn {
  position: relative;
  width: 3.8rem;
  height: 4.4rem;
  margin-top: 0.4rem;
  z-index: 10;
}
.header__menu-btn span {
  background-color: #ccc;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  transition: transform 0.3s;
}
.header__menu-btn span:first-child {
  top: 0;
}
.header__menu-btn span:nth-child(2) {
  top: 1.2rem;
}
.header__menu-btn span:nth-child(3) {
  top: 2.4rem;
}
.header__menu-btn span:last-child {
  background-color: transparent;
  bottom: 2rem;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
  text-align: center;
  color: #ccc;
}
.header__menu-btn:hover {
  cursor: pointer;
}
.header__menu {
  background-color: #fff;
  position: absolute;
  left: calc(50% - 50vw);
  top: -50dvh;
  width: 100vw;
  transition: top 0.3s;
  z-index: 1;
}
.header__menu--list {
  padding-top: 4.9rem;
}
.header__menu--list li {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.6rem;
}
.header__menu--list li:last-child {
  margin-bottom: 0;
}
.header__menu--btn a {
  width: 19.2rem;
  margin: 2.5rem auto 0 auto;
}
.header.active {
  height: 35.6rem;
}
.header.active .header__menu-btn span:first-child {
  transform: rotate(45deg);
  top: 1.2rem;
}
.header.active .header__menu-btn span:nth-child(2) {
  opacity: 0;
}
.header.active .header__menu-btn span:nth-child(3) {
  transform: rotate(-45deg);
  top: 1.2rem;
}
.header.active .header__menu {
  top: 6rem;
}

/*======================= PC =======================*/
@media screen and (min-width: 1200px) {
  .header {
    width: 100%;
    padding: 1.4rem;
    height: 8.3rem;
  }
  .header__inner {
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
  }
  .header__logo {
    width: 30.8rem;
  }
  .header__logo a {
    gap: 1.3rem;
  }
  .header__logo a img {
    width: 14rem;
  }
  .header__logo a p {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    white-space: nowrap;
  }
  .header__logo a:hover {
    opacity: 0.8;
  }
  .header__menu-btn {
    display: none;
  }
  .header__menu {
    margin-top: 0.4rem;
    position: relative;
    left: auto;
    top: 0;
    transition: none;
    display: flex;
    max-width: 84.1rem;
    gap: 2.9rem;
  }
  .header__menu--list {
    width: 62rem;
    display: flex;
    gap: 4.3rem;
    align-items: center;
    justify-content: flex-end;
    padding-top: 0;
  }
  .header__menu--list li {
    white-space: nowrap;
    margin-bottom: 0;
  }
  .header__menu--list li a {
    position: relative;
  }
  .header__menu--list li a::after {
    content: "";
    width: 100%;
    height: 5px;
    background: var(--grd-green);
    position: absolute;
    bottom: -7px;
    left: 0;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .header__menu--list li a:hover::after {
    transform: scaleX(100%);
  }
  .header__menu--btn a {
    width: 19.2rem;
    margin: 0 auto 0 auto;
  }
  .header.active {
    height: 8.3rem;
  }
  .header.active .header__menu {
    top: 0;
  }
}
/*====================================================
////footer
====================================================*/
footer {
  border-top: 1px solid #E3E3E3;
  padding: 1.3rem 0 5rem 0;
}
footer ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: auto;
}
footer ul li a {
  font-size: 1.6rem;
  line-height: 1.625;
}

@media screen and (min-width: 768px) {
  footer {
    padding: 2rem 0 5rem 0;
  }
  footer ul {
    justify-content: center;
    gap: 10.2rem;
    width: 95%;
    margin: auto;
  }
  footer ul li a {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
/*====================================================
////Fixed contents
====================================================*/
/*======================= PC =======================*/
/*====================================================
//// FV
====================================================*/
.fv {
  background-color: transparent;
  aspect-ratio: 375/811;
  height: 81.1rem;
  background-image: url(../img/sp/fv_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 9.5rem;
}
.fv__txt--title span {
  padding: 0 0.8rem 0 1.2rem;
  color: #fff;
}
.fv__txt--title span:first-child, .fv__txt--title span:nth-child(2) {
  font-size: 3.4rem;
  line-height: 1.4117647059;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.fv__txt--title span:nth-child(3), .fv__txt--title span:last-child {
  font-size: 1.7rem;
  line-height: 1.7058823529;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.fv__txt--body {
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 500;
  margin-top: 1.4rem;
}
.fv__txt--btn {
  margin-top: 2.5rem;
}
.fv__txt--btn a {
  font-size: 1.6rem;
  line-height: 2.8975;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .fv {
    height: 76.5rem;
    background-image: url(../img/fv_bg.png);
    padding-top: 16.4rem;
    background-position: 0 8.3rem;
    overflow: hidden;
    aspect-ratio: auto;
    max-width: initial;
  }
  .fv .inner {
    position: relative;
    max-width: 102.4rem;
  }
  .fv figure {
    position: absolute;
    top: -1rem;
    right: -17.1rem;
    max-width: 82.6rem;
    aspect-ratio: 826/570;
    z-index: 0;
  }
  .fv__txt {
    width: 100%;
    position: relative;
    z-index: 10;
  }
  .fv__txt--title span {
    padding: 0 1.6rem 0 1.6rem;
    color: #fff;
  }
  .fv__txt--title span:first-child, .fv__txt--title span:nth-child(2) {
    font-size: 4.8rem;
    line-height: 1.3958333333;
    margin-bottom: 1.2rem;
  }
  .fv__txt--title span:nth-child(3), .fv__txt--title span:last-child {
    font-size: 2.4rem;
    line-height: 1.6666666667;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }
  .fv__txt--body {
    font-size: 1.8rem;
    line-height: 1.7777777778;
    margin-top: 2rem;
  }
  .fv__txt--btn {
    margin-top: 3.3rem;
  }
  .fv__txt--btn a {
    font-size: 1.6rem;
    line-height: 3.1875;
  }
}
/*====================================================
//// SV
====================================================*/
.sv {
  background: linear-gradient(90deg, rgb(48, 164, 190) 0%, rgb(114, 183, 157) 100%);
  padding: 2.8rem 0;
}
.sv__title {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 700;
}
.sv__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 1rem;
}
.sv__list li {
  border: 0.4rem solid var(--color-yellow);
  border-radius: 1.4rem;
  -webkit-border-radius: 1.4rem;
  -moz-border-radius: 1.4rem;
  -ms-border-radius: 1.4rem;
  -o-border-radius: 1.4rem;
  background-color: #fff;
  width: calc((100% - 1rem) / 2);
  padding-bottom: 0.7rem;
}
.sv__list li h3 {
  position: relative;
  margin-top: 0.6rem;
  text-align: center;
}
.sv__list li h3::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2246.581%22%20height%3D%2219.744%22%20viewBox%3D%220%200%2046.581%2019.744%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_117%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20117%22%20transform%3D%22translate(0)%22%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4%22%20data-name%3D%22%E3%83%91%E3%82%B9%204%22%20d%3D%22M7.976%2C0l-1.883%2C5.8H0L4.93%2C9.376%2C3.047%2C15.171l4.93-3.581%2C4.93%2C3.581L11.023%2C9.376l4.93-3.581H9.859Z%22%20transform%3D%22translate(15.314%200)%22%20fill%3D%22%23ffe521%22%2F%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_5%22%20data-name%3D%22%E3%83%91%E3%82%B9%205%22%20d%3D%22M6.392%2C0%2C4.883%2C4.644H0l3.95%2C2.87L2.442%2C12.158l3.95-2.87%2C3.95%2C2.87L8.834%2C7.514l3.951-2.87H7.9Z%22%20transform%3D%22translate(0%207.586)%22%20fill%3D%22%23ffe521%22%2F%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_6%22%20data-name%3D%22%E3%83%91%E3%82%B9%206%22%20d%3D%22M6.392%2C0%2C4.883%2C4.644H0l3.95%2C2.87L2.442%2C12.158l3.95-2.87%2C3.95%2C2.87L8.834%2C7.514l3.951-2.87H7.9Z%22%20transform%3D%22translate(33.796%207.586)%22%20fill%3D%22%23ffe521%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 4.658rem;
  aspect-ratio: 46.58/19.74;
  display: block;
  margin: 0 auto 0 auto;
}
.sv__list li p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6428571429;
  font-weight: 700;
}
.sv__list li p span {
  color: #30A4BE;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .sv {
    max-width: initial;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 3.1rem 0 3.6rem 0;
  }
  .sv__title {
    font-size: 2rem;
    line-height: 2.1;
  }
  .sv__list {
    margin: 1rem auto 0 auto;
    max-width: 71.6rem;
    gap: 1.4rem;
  }
  .sv__list li {
    border-radius: 2.2rem;
    -webkit-border-radius: 2.2rem;
    -moz-border-radius: 2.2rem;
    -ms-border-radius: 2.2rem;
    -o-border-radius: 2.2rem;
    width: calc((100% - 2.8rem) / 3);
    padding-bottom: 0.7rem;
  }
  .sv__list li h3 {
    margin-top: 0.8rem;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 700;
  }
  .sv__list li h3::before {
    width: 6.3rem;
    margin: 0 auto 0.6rem auto;
  }
  .sv__list li p {
    margin-top: 0.3rem;
    font-size: 2rem;
    line-height: 2.4;
  }
  .sv__list li p span {
    color: #30A4BE;
    font-size: 4rem;
    line-height: 1;
  }
}
/*====================================================
//// sec01
====================================================*/
.sec01 {
  padding: 3.1rem 0 4.4rem 0;
}
.sec01 .block01 {
  background-color: #F4F4F4;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  padding: 3rem 2.5rem 1.8rem 2.5rem;
  position: relative;
}
.sec01 .block01::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12.6rem solid transparent;
  border-left: 12.6rem solid transparent;
  border-top: 9.6rem solid #f4f4f4;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3rem;
  z-index: 0;
}
.sec01 .block01__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 2rem;
  line-height: 1.65;
  font-weight: 700;
}
.sec01 .block01__title::before {
  content: "";
  background-image: url(../img/sec01_img01.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: contain;
  width: 7.5rem;
  aspect-ratio: 75/85.31;
  transform: translateY(-0.5rem);
  z-index: -1;
}
.sec01 .block01__list {
  margin: 2.8rem auto 0 auto;
  width: 97.2789115646%;
  position: relative;
  z-index: 10;
}
.sec01 .block01__list--item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 2.2rem;
}
.sec01 .block01__list--item .point {
  background-color: var(--color-green);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
  width: 4.911rem;
  aspect-ratio: 10/10;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec01 .block01__list--item .point span {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 600;
}
.sec01 .block01__list--item .text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 600;
}
.sec01 .block01__list--item .text span {
  color: var(--color-green);
}
.sec01 .block02 {
  margin-top: 5.5rem;
  position: relative;
  z-index: 10;
}
.sec01 .block02__title {
  position: relative;
}
.sec01 .block02__title span {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 auto 0.5rem auto;
  color: #fff;
  padding: 0 0.5rem;
}
.sec01 .block02__title::before {
  content: "";
  background-image: url(../img/sec01_img02.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: contain;
  width: 8.2rem;
  aspect-ratio: 82/80;
  position: absolute;
  display: block;
  top: -5rem;
}
.sec01 .block02__lead {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 600;
  text-align: center;
  margin-top: 1.8rem;
}
.sec01 .block02__lead + p {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 400;
  margin-top: 1.5rem;
  width: 105%;
}
.sec01 .block02__box01, .sec01 .block02__box03 {
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  border: 1.2rem solid var(--color-green);
  width: 72.3646723647%;
  margin: 2.8rem auto 0 auto;
}
.sec01 .block02__box01 h4, .sec01 .block02__box03 h4 {
  font-size: 1.9rem;
  line-height: 1.6842105263;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.sec01 .block02__box01 p, .sec01 .block02__box03 p {
  font-size: 1.6rem;
  line-height: 1.625;
  text-align: center;
  margin-top: 1.5rem;
}
.sec01 .block02__box01 {
  padding: 1.4rem 0 1.5rem 0;
}
.sec01 .block02__box01 figure {
  width: 32.5688073394%;
  margin: 1.3rem auto 0 auto;
}
.sec01 .block02__box02 {
  margin-top: 0rem;
  position: relative;
  display: flex;
  aspect-ratio: 170/169;
  margin: auto;
  width: 48.5714285714%;
}
.sec01 .block02__box02 figure {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  top: 0;
  width: 100%;
}
.sec01 .block02__box02 p {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 600;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.sec01 .block02__box03 {
  margin-top: -0.2rem;
  padding: 1.2rem 0 1.5rem 0;
  border-color: var(--color-yellow);
}
.sec01 .block02__box03 figure {
  width: 50.4587155963%;
  margin: 1.3rem auto 0 auto;
  transform: translateX(-2.2rem);
}
.sec01 .block02__box03 p {
  margin-top: 0.6rem;
}

@media screen and (min-width: 768px) {
  .sec01 {
    padding: 6.1rem 0 10.6rem 0;
  }
  .sec01 .block01 {
    padding: 4.1rem 2.5rem 4rem 2.3rem;
  }
  .sec01 .block01::after {
    border-right: 18.5rem solid transparent;
    border-left: 18.5rem solid transparent;
    border-top: 9.6rem solid #f4f4f4;
    bottom: -5.2rem;
  }
  .sec01 .block01__title {
    text-align: center;
    gap: 3rem;
    font-size: 3rem;
    line-height: 1.6666666667;
    transform: translateX(-5.5rem);
    max-width: 41.5rem;
    margin: auto;
  }
  .sec01 .block01__title::before {
    width: 8.5rem;
    transform: translateY(-0.5rem);
  }
  .sec01 .block01__list {
    margin: 3.6rem auto 0 auto;
    width: 97%;
    display: flex;
    flex-wrap: nowrap;
    gap: 6rem;
    justify-content: center;
    align-items: flex-start;
  }
  .sec01 .block01__list--item {
    flex-direction: column;
    margin-bottom: 0;
    width: calc((100% - 12rem) / 3);
  }
  .sec01 .block01__list--item .point {
    font-size: 1.3rem;
    line-height: 1;
    width: 6.8rem;
  }
  .sec01 .block01__list--item .point span {
    display: block;
    font-size: 3rem;
    line-height: 1;
  }
  .sec01 .block01__list--item .text {
    font-size: 1.8rem;
    line-height: 1.7777777778;
    text-align: center;
    margin: 0.5rem;
  }
  .sec01 .block01__list--item:last-of-type .text span {
    white-space: nowrap;
  }
  .sec01 .block02 {
    margin-top: 7.9rem;
  }
  .sec01 .block02__title span {
    font-size: 3rem;
    line-height: 1.4333333333;
    margin: 0 auto 0.5rem auto;
    color: #fff;
    padding: 0 0.5rem;
  }
  .sec01 .block02__title::before {
    width: 11.2rem;
    top: -1rem;
    left: 6.5rem;
  }
  .sec01 .block02__lead {
    font-size: 2rem;
    line-height: 1.9;
    margin-top: 1.8rem;
  }
  .sec01 .block02__lead + p {
    font-size: 1.6rem;
    line-height: 1.625;
    font-weight: 400;
    margin-top: 1.3rem;
    width: 100%;
    text-align: center;
  }
  .sec01 .block02 .wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: center;
    align-items: center;
    max-width: 68.4rem;
    margin: 3rem auto 0 auto;
  }
  .sec01 .block02__box01, .sec01 .block02__box03 {
    margin: 0;
    width: calc((100% - 17.4rem) / 2);
  }
  .sec01 .block02__box01 h4, .sec01 .block02__box03 h4 {
    font-size: 1.9rem;
    line-height: 1.6842105263;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .sec01 .block02__box01 p, .sec01 .block02__box03 p {
    font-size: 1.6rem;
    line-height: 1.625;
    text-align: center;
    margin-top: 1.5rem;
  }
  .sec01 .block02__box01 {
    padding: 1.6rem 0 1.5rem 0;
    transform: translateX(0.5rem);
  }
  .sec01 .block02__box01 figure {
    width: 32.5688073394%;
    margin: 1.3rem auto 0 auto;
  }
  .sec01 .block02__box02 {
    margin-top: 0rem;
    transform: translateY(30%);
    width: 17.4rem;
  }
  .sec01 .block02__box02 figure {
    left: 0;
    transform: rotate(0) translate(0, 0);
  }
  .sec01 .block02__box03 {
    margin-top: 0;
    padding: 1.6rem 0 1.5rem 0;
    transform: translateX(-0.5rem);
  }
  .sec01 .block02__box03 figure {
    width: 50.4587155963%;
    margin: 1.3rem auto 0 auto;
    transform: translateX(-2.2rem);
  }
  .sec01 .block02__box03 p {
    margin-top: 1.5rem;
  }
}
/*====================================================
//// sec02
====================================================*/
.sec02 {
  margin-top: 3rem;
  padding: 4.4rem 0 4.9rem 0;
}
.sec02__list {
  margin-top: 2.6rem;
}
.sec02__list li {
  position: relative;
  border-radius: 1.4rem;
  -webkit-border-radius: 1.4rem;
  -moz-border-radius: 1.4rem;
  -ms-border-radius: 1.4rem;
  -o-border-radius: 1.4rem;
  border: 2px solid #E7E7E7;
  overflow: hidden;
  margin-bottom: 2rem;
}
.sec02__list li:last-child {
  margin-bottom: 0;
}
.sec02__list li h3 {
  background-color: #313131;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  font-size: 1.8rem;
  line-height: 2.1111111111;
  font-weight: 700;
  padding: 0 1.6rem;
  border-radius: 0 0 1.4rem 1.4rem;
  -webkit-border-radius: 0 0 1.4rem 1.4rem;
  -moz-border-radius: 0 0 1.4rem 1.4rem;
  -ms-border-radius: 0 0 1.4rem 1.4rem;
  -o-border-radius: 0 0 1.4rem 1.4rem;
}
.sec02__list li figure {
  aspect-ratio: 351/158;
}
.sec02__list li figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
  height: 100%;
}
.sec02__list li .txt {
  padding: 2rem;
}
.sec02__list li .txt .block h4 {
  background-color: var(--color-green);
  background-repeat: no-repeat;
  background-size: 2.8rem 2.8rem;
  background-position: 0.4rem 0.4rem;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 700;
  border-radius: 1.8rem;
  -webkit-border-radius: 1.8rem;
  -moz-border-radius: 1.8rem;
  -ms-border-radius: 1.8rem;
  -o-border-radius: 1.8rem;
  width: fit-content;
  padding: 0 2rem 0 4rem;
}
.sec02__list li .txt .block h4 + p {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-top: 0.6rem;
}
.sec02__list li .txt .block.ai h4 {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228%22%20height%3D%2228%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_226%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20226%22%20transform%3D%22translate(-286%20-2675)%22%3E%0A%20%20%20%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_11%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%2011%22%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20transform%3D%22translate(286%202675)%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Ctext%20id%3D%22AI%22%20transform%3D%22translate(300%202694)%22%20fill%3D%22%2330a4be%22%20font-size%3D%2216%22%20font-family%3D%22NotoSansJP-Bold%2C%20Noto%20Sans%20JP%22%20font-weight%3D%22700%22%3E%3Ctspan%20x%3D%22-7.768%22%20y%3D%220%22%3EAI%3C%2Ftspan%3E%3C%2Ftext%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
}
.sec02__list li .txt .block.operator h4 {
  margin-top: 1.2rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2228%22%20height%3D%2228%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3CclipPath%20id%3D%22clip-path%22%3E%0A%20%20%20%20%20%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_57%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2057%22%20width%3D%2221.498%22%20height%3D%2219.797%22%20fill%3D%22none%22%2F%3E%0A%20%20%20%20%3C%2FclipPath%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_227%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20227%22%20transform%3D%22translate(-286%20-2755)%22%3E%0A%20%20%20%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_10%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%2010%22%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20transform%3D%22translate(286%202755)%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_31%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2031%22%20transform%3D%22translate(289.285%202758.862)%22%3E%0A%20%20%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_31-2%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2031%22%20clip-path%3D%22url(%23clip-path)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_229%22%20data-name%3D%22%E3%83%91%E3%82%B9%20229%22%20d%3D%22M71.875%2C57.4c1.212%2C2.275%2C2.872%2C5.391%2C3.6%2C5.844l.137.086.5-3.935a6%2C6%2C0%2C0%2C0-1.564-4.607%2C7.053%2C7.053%2C0%2C0%2C0-10.114%2C0A6.005%2C6.005%2C0%2C0%2C0%2C62.87%2C59.4l.458%2C3.9.153-.167a8.746%2C8.746%2C0%2C0%2C1%2C1.608-1.16%2C18%2C18%2C0%2C0%2C0%2C6.147-5.758c.182.335.4.743.639%2C1.192%22%20transform%3D%22translate(-58.742%20-49.213)%22%20fill%3D%22%2330a4be%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_230%22%20data-name%3D%22%E3%83%91%E3%82%B9%20230%22%20d%3D%22M.694%2C15.857a.776.776%2C0%2C0%2C0%2C.757.6.79.79%2C0%2C0%2C0%2C.182-.022l1.312-.315a.775.775%2C0%2C0%2C0%2C.544-.482l.054%2C0-.025-.1a.771.771%2C0%2C0%2C0%2C0-.362l-.684-2.83A15.807%2C15.807%2C0%2C0%2C1%2C2.589%2C9.84a8.16%2C8.16%2C0%2C1%2C1%2C16.321%2C0%2C15.323%2C15.323%2C0%2C0%2C1-.259%2C2.54l-.672%2C2.8a.715.715%2C0%2C0%2C0-.018.128l-.027.06a5.131%2C5.131%2C0%2C0%2C1-3.723%2C2.527.838.838%2C0%2C0%2C0-.738-.439H11.78a.841.841%2C0%2C0%2C0-.84.84v.662a.841.841%2C0%2C0%2C0%2C.84.84h1.693a.84.84%2C0%2C0%2C0%2C.786-.553A7.2%2C7.2%2C0%2C0%2C0%2C17.715%2C17.7a5.93%2C5.93%2C0%2C0%2C0%2C1.273-1.478l.878.211a.789.789%2C0%2C0%2C0%2C.182.022.776.776%2C0%2C0%2C0%2C.757-.6l.672-2.8a.78.78%2C0%2C0%2C0-.575-.939L20.416%2C12A15.852%2C15.852%2C0%2C0%2C0%2C20.59%2C9.84a9.84%2C9.84%2C0%2C0%2C0-19.681%2C0A15.84%2C15.84%2C0%2C0%2C0%2C1.082%2C12L.6%2C12.12a.78.78%2C0%2C0%2C0-.575.939Z%22%20transform%3D%22translate(0)%22%20fill%3D%22%2330a4be%22%2F%3E%0A%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
}
.sec02__list li .txt .block.result h4 {
  margin-top: 1.2rem;
  background-color: var(--color-yellow);
  color: #313131;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2228%22%20height%3D%2228%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3CclipPath%20id%3D%22clip-path%22%3E%0A%20%20%20%20%20%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_58%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2058%22%20width%3D%2214%22%20height%3D%2214%22%20transform%3D%22translate(0%200)%22%20fill%3D%22%23ffe521%22%2F%3E%0A%20%20%20%20%3C%2FclipPath%3E%0A%20%20%20%20%3CclipPath%20id%3D%22clip-path-2%22%3E%0A%20%20%20%20%20%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_58-2%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2058%22%20width%3D%2210%22%20height%3D%2210%22%20transform%3D%22translate(0%200)%22%20fill%3D%22%23ffe521%22%2F%3E%0A%20%20%20%20%3C%2FclipPath%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_228%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20228%22%20transform%3D%22translate(-286%20-2861)%22%3E%0A%20%20%20%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_9%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%209%22%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20transform%3D%22translate(286%202861)%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_32%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2032%22%20transform%3D%22translate(296%202865)%22%3E%0A%20%20%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_32-2%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2032%22%20transform%3D%22translate(0%200)%22%20clip-path%3D%22url(%23clip-path)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_231%22%20data-name%3D%22%E3%83%91%E3%82%B9%20231%22%20d%3D%22M6.749%2C13.748a10.982%2C10.982%2C0%2C0%2C0-6.6-6.6.209.209%2C0%2C0%2C1%2C0-.4%2C10.981%2C10.981%2C0%2C0%2C0%2C6.6-6.6.209.209%2C0%2C0%2C1%2C.4%2C0%2C10.981%2C10.981%2C0%2C0%2C0%2C6.6%2C6.6.209.209%2C0%2C0%2C1%2C0%2C.4%2C10.982%2C10.982%2C0%2C0%2C0-6.6%2C6.6.209.209%2C0%2C0%2C1-.4%2C0%22%20transform%3D%22translate(-0.415%200.513)%22%20fill%3D%22%23ffe521%22%2F%3E%0A%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_33%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2033%22%20transform%3D%22translate(291%202876)%22%3E%0A%20%20%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_32-3%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2032%22%20transform%3D%22translate(0%200)%22%20clip-path%3D%22url(%23clip-path-2)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_231-2%22%20data-name%3D%22%E3%83%91%E3%82%B9%20231%22%20d%3D%22M4.672%2C9.518A7.6%2C7.6%2C0%2C0%2C0%2C.106%2C4.952a.145.145%2C0%2C0%2C1%2C0-.279A7.6%2C7.6%2C0%2C0%2C0%2C4.672.107a.145.145%2C0%2C0%2C1%2C.279%2C0A7.6%2C7.6%2C0%2C0%2C0%2C9.517%2C4.673a.145.145%2C0%2C0%2C1%2C0%2C.279A7.6%2C7.6%2C0%2C0%2C0%2C4.951%2C9.518a.145.145%2C0%2C0%2C1-.279%2C0%22%20transform%3D%22translate(0.15%200.443)%22%20fill%3D%22%23ffe521%22%2F%3E%0A%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
}

@media screen and (min-width: 768px) {
  .sec02 {
    margin-top: 4rem;
    padding: 5.7rem 0 8.1rem 0;
  }
  .sec02__list {
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem 2.6rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .sec02__list li {
    width: calc((100% - 5.2rem) / 3);
    margin-bottom: 0;
  }
  .sec02__list li h3 {
    width: fit-content;
    white-space: nowrap;
  }
  .sec02__list li figure {
    aspect-ratio: 263/158;
  }
  .sec02__list li .txt {
    padding: 2rem 1.5rem 2rem 2rem;
  }
  .sec02__list li .txt .block p {
    min-height: 5rem;
  }
  .sec02__list li .txt .block.operator h4 {
    margin-top: 2rem;
  }
  .sec02__list li .txt .block.result h4 {
    margin-top: 1.6rem;
  }
}
/*====================================================
//// sec03
====================================================*/
.sec03 {
  margin-top: 3rem;
  padding: 5rem 0 4.8rem 0;
}
.sec03__title {
  z-index: 10;
}
.sec03__title span {
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: 700;
  width: fit-content;
  margin: auto;
  padding: 0 2.2rem;
  color: #fff;
}
.sec03__title + p {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 700;
  text-align: center;
  margin-top: 1.2rem;
}
.sec03__img-list {
  margin: 3.4rem auto 0 auto;
  width: 95.4022988506%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 2.2rem;
  justify-content: center;
  align-items: stretch;
}
.sec03__img-list li {
  width: calc((100% - 2.2rem) / 2);
}
.sec03__img-list li img {
  display: block;
  position: relative;
  z-index: 1;
}
.sec03__img-list li p {
  background: var(--grd-by);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  text-align: center;
  width: 74.025974026%;
  margin: -1.5rem auto 0 auto;
  position: relative;
  z-index: 2;
}
.sec03__img-list + p {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-top: 2rem;
}
.sec03__flow {
  width: 78.4482758621%;
  margin: 4rem auto 0 auto;
  position: relative;
  z-index: 10;
}
.sec03__flow::after {
  content: "";
  width: 0.4rem;
  height: 52rem;
  background: linear-gradient(0deg, rgb(48, 164, 190) 0%, rgb(125, 186, 151) 50%, rgb(255, 209, 15) 100%);
  position: absolute;
  left: 2.3rem;
  top: 1rem;
  z-index: -1;
}
.sec03__flow li {
  margin-bottom: 1.7rem;
}
.sec03__flow li:last-child {
  margin-bottom: 0;
}
.sec03__flow li .title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  display: flex;
  flex-wrap: nowrap;
  gap: 1.1rem;
  justify-content: flex-start;
  align-items: center;
}
.sec03__flow li .title span {
  display: block;
  width: 5.3rem;
  height: 5.3rem;
  background: var(--grd-by);
  border: 0.4rem solid #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 500;
}
.sec03__flow li .box {
  width: 76.9230769231%;
  margin: 1rem 0 0 auto;
}
.sec03__flow li .box figure {
  width: 91.9047619048%;
}
.sec03__flow li .box p {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-top: 1rem;
}
.sec03 .block {
  background-color: var(--color-green);
  border-radius: 1.8rem;
  -webkit-border-radius: 1.8rem;
  -moz-border-radius: 1.8rem;
  -ms-border-radius: 1.8rem;
  -o-border-radius: 1.8rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5333333333;
  font-weight: 700;
  color: #fff;
  padding: 1.9rem 0 1.7rem 0;
  margin-top: 4.2rem;
  position: relative;
}
.sec03 .block span {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 600;
  color: var(--color-yellow);
  display: inline-block;
  margin-top: 0.4rem;
}
.sec03 .block::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 2.6rem solid transparent;
  border-left: 2.6rem solid transparent;
  border-top: 4.6rem solid var(--color-green);
  border-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.3rem;
}

@media screen and (min-width: 768px) {
  .sec03 {
    margin-top: 4rem;
    padding: 5rem 0 9.1rem 0;
  }
  .sec03__title {
    z-index: 10;
  }
  .sec03__title span {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .sec03__title + p {
    font-size: 3rem;
    line-height: 1.6666666667;
    margin-top: 1rem;
  }
  .sec03__img-list {
    margin: 3.4rem auto 0 auto;
    width: 95.4022988506%;
    flex-wrap: nowrap;
    gap: 2.9rem;
    max-width: 63.9rem;
  }
  .sec03__img-list li {
    width: calc((100% - 5.8rem) / 3);
  }
  .sec03__img-list li p {
    font-size: 1.6rem;
    line-height: 1.25;
    margin: -1.7rem auto 0 auto;
  }
  .sec03__img-list + p {
    text-align: center;
    margin-top: 2.5rem;
  }
  .sec03__flow {
    width: 100%;
    margin: 4rem auto 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 78rem;
  }
  .sec03__flow::after {
    width: 55rem;
    height: 0.4rem;
    left: 50%;
    transform: translateX(-50%);
    top: 2.5rem;
    z-index: -1;
  }
  .sec03__flow li {
    margin-bottom: 0;
    max-width: 21rem;
  }
  .sec03__flow li .title {
    font-size: 2.6rem;
    line-height: 1.3076923077;
    display: block;
    margin: auto;
    text-align: center;
  }
  .sec03__flow li .title span {
    margin: 0 auto 1rem auto;
  }
  .sec03__flow li .box {
    width: 100%;
    margin: 2rem auto 0 auto;
  }
  .sec03__flow li .box figure {
    width: 19.3rem;
    margin: auto;
  }
  .sec03__flow li .box p {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-top: 2.5rem;
  }
  .sec03__flow li:first-child .box p {
    width: 120%;
  }
  .sec03 .block {
    border-radius: 3.1rem;
    -webkit-border-radius: 3.1rem;
    -moz-border-radius: 3.1rem;
    -ms-border-radius: 3.1rem;
    -o-border-radius: 3.1rem;
    padding: 2.1rem 0 2rem 0;
    margin: 2.3rem auto 6.5rem auto;
    max-width: 48.2rem;
    position: relative;
  }
  .sec03 .block span {
    font-size: 2rem;
    line-height: 1.35;
  }
}
/*====================================================
//// sec04
====================================================*/
.sec04 {
  margin-top: 3rem;
}
.sec04 .inner {
  padding: 5rem 0 1.5rem 0;
}
.sec04 .wrap {
  width: 100%;
  height: 100%;
  background-image: url(../img/sec04_bg01.png);
  background-repeat: no-repeat;
  background-size: 38.9rem auto;
  background-position: top left;
}
.sec04__title {
  z-index: 10;
}
.sec04__title span {
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: 700;
  width: fit-content;
  margin: auto;
  padding: 0 2.2rem;
  color: #fff;
}
.sec04__title + p {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 700;
  text-align: center;
  margin-top: 1.2rem;
}
.sec04__list {
  margin-top: 3.4rem;
}
.sec04__list li {
  margin-bottom: 4rem;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 3.75rem;
}
.sec04__list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.sec04__list li h4 {
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 700;
}
.sec04__list li h4 span {
  font-size: 1.2rem;
  line-height: 1.0833333333;
  font-weight: 700;
  padding: 0 2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.sec04__list li h4 + p {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-top: 1.2rem;
}
.sec04__list li h4 + p span {
  display: block;
  font-size: 1.2rem;
  line-height: 2.1666666667;
}
.sec04__list li .box .block {
  background-color: #E7F1F4;
  border-radius: 1.1rem;
  -webkit-border-radius: 1.1rem;
  -moz-border-radius: 1.1rem;
  -ms-border-radius: 1.1rem;
  -o-border-radius: 1.1rem;
  padding: 1.2rem 2.2rem 2rem 1.6rem;
  font-size: 1.2rem;
  line-height: 1.8333333333;
  margin-top: 1.6rem;
}
.sec04__list li .box .block .title {
  font-size: 1.2rem;
  line-height: 2.1666666667;
  font-weight: 600;
}
.sec04__list li .box .notice {
  font-size: 1.2rem;
  line-height: 1.8333333333;
  margin-top: 1rem;
}
.sec04__list li figure {
  margin-top: 2.4rem;
  border-radius: 1.3rem;
  -webkit-border-radius: 1.3rem;
  -moz-border-radius: 1.3rem;
  -ms-border-radius: 1.3rem;
  -o-border-radius: 1.3rem;
}
.sec04__list li figure.shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 768px) {
  .sec04 {
    margin-top: 4.75rem;
  }
  .sec04 .inner {
    padding: 5rem 0 2.2rem 0;
  }
  .sec04 .wrap {
    background-size: 63rem auto;
  }
  .sec04__title {
    z-index: 10;
  }
  .sec04__title span {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .sec04__title + p {
    font-size: 3rem;
    line-height: 1.6666666667;
    margin-top: 1rem;
  }
  .sec04__list {
    margin-top: 7.5rem;
  }
  .sec04__list li {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 3.3rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .sec04__list li .txt {
    width: calc(100% - 32.5rem - 3.3rem);
  }
  .sec04__list li h4 {
    font-size: 2rem;
    line-height: 1.7;
    font-weight: 700;
  }
  .sec04__list li h4 span {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    margin-bottom: 0.5rem;
  }
  .sec04__list li h4 + p {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-top: 1.2rem;
  }
  .sec04__list li h4 + p span {
    display: block;
    font-size: 1.2rem;
    line-height: 2.1666666667;
  }
  .sec04__list li .box .block {
    padding: 1.2rem 1.7rem 2.2rem 1.8rem;
    margin-top: 1.6rem;
  }
  .sec04__list li .box .block .title {
    font-size: 1.2rem;
    line-height: 2.1666666667;
    font-weight: 600;
  }
  .sec04__list li .box .notice {
    font-size: 1.2rem;
    line-height: 1.8333333333;
    margin-top: 0.3rem;
    padding-left: 2rem;
  }
  .sec04__list li figure {
    width: 32.5rem;
    margin-top: 0;
  }
  .sec04__list li figure.shadow {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  .sec04__list li:nth-child(even) .txt {
    order: 2;
  }
  .sec04__list li:nth-child(even) figure {
    order: 1;
  }
}
/*====================================================
//// sec05
====================================================*/
.sec05 {
  margin-top: 3rem;
}
.sec05 .inner {
  padding: 5.2rem 0 5.6rem 0;
  width: 100%;
}
.sec05__title {
  z-index: 10;
}
.sec05__title span {
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: 700;
  width: fit-content;
  margin: auto;
  padding: 0 2.2rem;
  color: #fff;
}
.sec05__title + p {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 700;
  text-align: center;
  margin-top: 1.2rem;
}
.sec05 .block {
  margin: 2.5rem auto 0 auto;
  max-width: 100vw;
  overflow-x: scroll;
  padding: 0 3.6%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sec05 .block::-webkit-scrollbar {
  display: none;
}
.sec05 .block table {
  width: 84.4rem;
}
.sec05 .block table th, .sec05 .block table td {
  width: 25%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 6.65rem;
  flex-direction: column;
}
.sec05 .block table .col_title01,
.sec05 .block table .col_title02,
.sec05 .block table .col_title03 {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  padding: 1.8rem 0;
  text-align: center;
}
.sec05 .block table .col_title01 {
  background-color: var(--color-yellow);
  color: var(color-green);
}
.sec05 .block table .col_title02,
.sec05 .block table .col_title03 {
  background-color: #D9D9D9;
  color: #313131;
  border-left: 1px solid #B7B7B7;
}
.sec05 .block table .block01 {
  border-top: 1px solid #B7B7B7;
  background-color: #FFF9CC;
}
.sec05 .block table .block02,
.sec05 .block table .block03 {
  border-left: 1px solid #B7B7B7;
  border-top: 1px solid #B7B7B7;
}
.sec05 .block table .block02 {
  background-color: #fff;
}
.sec05 .block table .block03 {
  background-color: #F4F4F4;
}
.sec05 .block table .row_title {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  border-top: 1px solid #B7B7B7;
  padding: 2.15rem 0;
  justify-content: flex-start;
  flex-direction: row;
}
.sec05 .block table .circle,
.sec05 .block table .ng,
.sec05 .block table .tliangle {
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.sec05 .block table .circle {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2226%22%20height%3D%2226%22%20viewBox%3D%220%200%2026%2026%22%3E%0A%20%20%3Cg%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_58%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%2058%22%20fill%3D%22none%22%20stroke%3D%22%23db5684%22%20stroke-width%3D%223%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2213%22%20cy%3D%2213%22%20r%3D%2213%22%20stroke%3D%22none%22%2F%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2213%22%20cy%3D%2213%22%20r%3D%2211.5%22%20fill%3D%22none%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  width: 2.6rem;
  height: 2.6rem;
}
.sec05 .block table .triangle {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228%22%20height%3D%2224%22%20viewBox%3D%220%200%2028%2024%22%3E%0A%20%20%3Cg%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_12%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%2012%22%20fill%3D%22none%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M14%2C0%2C28%2C24H0Z%22%20stroke%3D%22none%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2014%205.953907012939453%20L%205.223112106323242%2021%20L%2022.77688789367676%2021%20L%2014%205.953907012939453%20M%2014%200%20L%2028%2024%20L%200%2024%20L%2014%200%20Z%22%20stroke%3D%22none%22%20fill%3D%22%23707070%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  width: 2.8rem;
  height: 2.4rem;
}
.sec05 .block table .ng {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2226.121%22%20height%3D%2226.121%22%20viewBox%3D%220%200%2026.121%2026.121%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_212%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20212%22%20transform%3D%22translate(-775.207%20-7729.939)%22%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_451%22%20data-name%3D%22%E3%83%91%E3%82%B9%20451%22%20d%3D%22M378.268%2C7731l-24%2C24%22%20transform%3D%22translate(422)%22%20fill%3D%22none%22%20stroke%3D%22%23707070%22%20stroke-width%3D%223%22%2F%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_452%22%20data-name%3D%22%E3%83%91%E3%82%B9%20452%22%20d%3D%22M24%2C0%2C0%2C24%22%20transform%3D%22translate(800.268%207731)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%23707070%22%20stroke-width%3D%223%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  width: 2.4rem;
  height: 2.4rem;
  color: #707070;
}
.sec05 .block table .price {
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 700;
  color: #DB5684;
}
.sec05 .block table .yen {
  font-size: 2.6rem;
  line-height: 1.3076923077;
  font-weight: 700;
  color: #DB5684;
  width: fit-content;
}
.sec05 .block table .price,
.sec05 .block table .yen {
  display: inline-block !important;
}
.sec05 .block table .price.ng,
.sec05 .block table .yen.ng {
  color: #707070;
  background-image: none;
  display: inline-block;
}
.sec05 .block table .price-box {
  justify-content: center;
  gap: 0.5rem;
}
.sec05 .block table .txt {
  font-size: 1.3rem;
  line-height: 1.7692307692;
  color: #313131;
}

@media screen and (min-width: 768px) {
  .sec05 {
    margin-top: 4rem;
  }
  .sec05 .inner {
    padding: 5.2rem 0 6.8rem 0;
    width: 100%;
  }
  .sec05__title {
    z-index: 10;
  }
  .sec05__title span {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .sec05__title + p {
    font-size: 3rem;
    line-height: 1.6666666667;
    margin-top: 1rem;
  }
  .sec05 .block {
    margin: 3.5rem auto 0 auto;
    max-width: 100%;
    padding: 0;
  }
}
/*====================================================
//// sec06
====================================================*/
.sec06 {
  margin-top: 3rem;
}
.sec06 .inner {
  padding: 5.2rem 0;
}
.sec06__title {
  z-index: 10;
}
.sec06__title span {
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: 700;
  width: fit-content;
  margin: auto;
  padding: 0 2.2rem;
  color: #fff;
}
.sec06__title + p {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 700;
  text-align: center;
  margin-top: 1.2rem;
}
.sec06 .lead {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-top: 2.6rem;
}
.sec06__list {
  margin: 3.2rem auto 0 auto;
  width: 85.0574712644%;
  position: relative;
}
.sec06__list::after {
  content: "";
  width: 1rem;
  height: 100%;
  background: linear-gradient(180deg, rgb(48, 164, 190) 0%, rgb(125, 186, 151) 50%, rgb(255, 209, 15) 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.sec06__list li {
  border-radius: 1.1rem;
  -webkit-border-radius: 1.1rem;
  -moz-border-radius: 1.1rem;
  -ms-border-radius: 1.1rem;
  -o-border-radius: 1.1rem;
  background: linear-gradient(90deg, rgb(48, 164, 190) 0%, rgb(125, 186, 151) 50%, rgb(255, 209, 15) 100%);
  background-size: 500% auto;
  padding: 0.8rem;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 10;
}
.sec06__list li .block {
  background-color: #fff;
  border-radius: 1.1rem;
  -webkit-border-radius: 1.1rem;
  -moz-border-radius: 1.1rem;
  -ms-border-radius: 1.1rem;
  -o-border-radius: 1.1rem;
  padding: 1.1rem 2.5rem 2rem 2.5rem;
}
.sec06__list li .block .step {
  background: var(--grd-by);
  color: #fff;
  font-size: 1.7rem;
  line-height: 2.2941176471;
  font-weight: 500;
  width: fit-content;
  margin: auto;
  border-radius: 2.2rem;
  -webkit-border-radius: 2.2rem;
  -moz-border-radius: 2.2rem;
  -ms-border-radius: 2.2rem;
  -o-border-radius: 2.2rem;
  text-align: center;
  padding: 0 3.3rem;
}
.sec06__list li .block p {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-top: 1.35rem;
}
.sec06__list li:first-child .block p {
  text-align: center;
}
.sec06__list li:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .sec06 {
    margin-top: 4rem;
  }
  .sec06 .inner {
    padding: 5.2rem 0 6.3rem 0;
  }
  .sec06__title {
    z-index: 10;
  }
  .sec06__title span {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .sec06__title + p {
    font-size: 3rem;
    line-height: 1.6666666667;
    margin-top: 1rem;
  }
  .sec06 .lead {
    text-align: center;
  }
  .sec06__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 4.7rem;
    justify-content: center;
    align-items: flex-start;
    margin: 3.5rem auto 0 auto;
    width: 100%;
  }
  .sec06__list::after {
    width: 100%;
    height: 1rem;
    background: linear-gradient(90deg, rgb(48, 164, 190) 0%, rgb(125, 186, 151) 50%, rgb(255, 209, 15) 100%);
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .sec06__list li {
    width: calc((100% - 9.4rem) / 3);
    border-radius: 1.1rem;
    -webkit-border-radius: 1.1rem;
    -moz-border-radius: 1.1rem;
    -ms-border-radius: 1.1rem;
    -o-border-radius: 1.1rem;
    background-size: 84.4rem auto;
    padding: 0.8rem;
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 10;
  }
  .sec06__list li .block {
    background-color: #fff;
    border-radius: 1.1rem;
    -webkit-border-radius: 1.1rem;
    -moz-border-radius: 1.1rem;
    -ms-border-radius: 1.1rem;
    -o-border-radius: 1.1rem;
    padding: 1.1rem 1.7rem 2.3rem 1.7rem;
  }
  .sec06__list li .block .step {
    font-size: 2rem;
    line-height: 2.2;
    padding: 0 3.3rem;
  }
  .sec06__list li .block p {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-top: 1.8rem;
    min-height: 5rem;
  }
  .sec06__list li:first-child {
    background-position: left top;
  }
  .sec06__list li:first-child .block p {
    text-align: left;
  }
  .sec06__list li:nth-child(2) {
    background-position: center top;
  }
  .sec06__list li:last-child {
    background-position: right top;
  }
}
/*====================================================
//// sec07
====================================================*/
.sec07 {
  background-color: #FFF729;
  width: 93.3333333333%;
  margin: 2.7rem auto 0 auto;
  padding: 3.29rem 0 3.9rem 0;
  border-radius: 1.8rem;
  -webkit-border-radius: 1.8rem;
  -moz-border-radius: 1.8rem;
  -ms-border-radius: 1.8rem;
  -o-border-radius: 1.8rem;
}
.sec07 figure {
  width: 57.7142857143%;
  margin: auto;
}
.sec07 .txt {
  padding: 0 1rem 0 1.4rem;
  margin-top: 1rem;
}
.sec07 .txt p {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-top: 1.2rem;
}
.sec07__title {
  font-size: 2rem;
  line-height: 1.65;
  font-weight: 700;
}
.sec07 .btn {
  width: fit-content;
  margin: 1.6rem auto 0 auto;
}
.sec07 .btn a {
  font-size: 1.6rem;
  line-height: 2.875;
}

@media screen and (min-width: 768px) {
  .sec07 {
    width: 100%;
    margin: 4rem auto 0 auto;
    padding: 4rem 0 2.63rem 0;
    border-radius: 2.3rem;
    -webkit-border-radius: 2.3rem;
    -moz-border-radius: 2.3rem;
    -ms-border-radius: 2.3rem;
    -o-border-radius: 2.3rem;
  }
  .sec07 .inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 3.1rem;
    justify-content: center;
    align-items: flex-start;
  }
  .sec07 figure {
    width: 21.244rem;
    margin: 0;
  }
  .sec07 .txt p {
    padding-left: 0.5rem;
  }
  .sec07 .btn {
    margin: 1.6rem auto 0 auto;
  }
  .sec07 .btn a {
    font-size: 1.6rem;
    line-height: 3.1875;
  }
}
/*====================================================
//// sec08
====================================================*/
.sec08 {
  overflow: visible;
  margin-top: 3rem;
}
.sec08 .inner {
  padding: 3.9rem 0 7.9rem 0;
}
.sec08__title {
  z-index: 10;
}
.sec08__title span {
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: 700;
  width: fit-content;
  margin: auto;
  padding: 0 2.2rem;
  color: #fff;
}
.sec08__title + p {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 700;
  text-align: center;
  margin-top: 1.2rem;
}
.sec08 .lead {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-top: 1.7rem;
}
.sec08__list {
  margin-top: 4.1rem;
}
.sec08__list dt {
  font-size: 1.8rem;
  line-height: 1.6111111111;
  font-weight: 600;
  position: relative;
  border-top: 1px solid #C4C4C3;
  padding-top: 2.25rem;
}
.sec08__list dt::before {
  content: "Q";
  font-family: "Lexend", sans-serif;
  color: var(--color-green);
  font-size: 2.2rem;
  line-height: 1.3181818182;
  display: inline-block;
  margin-right: 1.2rem;
}
.sec08__list dt::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210.713%22%20height%3D%226.356%22%20viewBox%3D%220%200%2010.713%206.356%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_429%22%20data-name%3D%22%E3%83%91%E3%82%B9%20429%22%20d%3D%22M0%2C7.885%2C3.942%2C3.942%2C0%2C0%22%20transform%3D%22translate(1.414%204.942)%20rotate(-90)%22%20fill%3D%22none%22%20stroke%3D%22%23c4c4c3%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 1rem;
  top: 3rem;
  width: 1.5rem;
  aspect-ratio: 7.88/3.94;
  transition: transform 0.3s;
  transform: rotate(180deg);
}
.sec08__list dt.active::after {
  transform: rotate(0);
}
.sec08__list dt:first-of-type {
  border: none;
  padding-top: 0;
}
.sec08__list dt:first-of-type::after {
  top: 1rem;
}
.sec08__list dt:hover {
  cursor: pointer;
  opacity: 0.8;
}
.sec08__list dd {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-top: 0.5rem;
  max-height: 0;
  transition: 0.3s;
  opacity: 0;
  padding-bottom: 1rem;
}
.sec08__list dd.active {
  max-height: 50rem;
  opacity: 1;
  padding-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .sec08 {
    margin-top: 3.3rem;
  }
  .sec08 .inner {
    padding: 5rem 0 9.5rem 0;
  }
  .sec08__title {
    z-index: 10;
  }
  .sec08__title span {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .sec08__title + p {
    font-size: 3rem;
    line-height: 1.6666666667;
    margin-top: 1rem;
  }
  .sec08 .lead {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-top: 2.6rem;
    text-align: center;
  }
  .sec08__list {
    margin: 3.7rem auto 0 auto;
    max-width: 65rem;
  }
  .sec08__list dt {
    font-size: 2rem;
    line-height: 1.7;
    padding-top: 2.25rem;
  }
  .sec08__list dt::before {
    font-size: 2.6rem;
    line-height: 1.3076923077;
    margin-right: 1.3rem;
  }
  .sec08__list dt:first-of-type {
    border: none;
    padding-top: 0;
  }
  .sec08__list dt:first-of-type::after {
    top: 1rem;
  }
  .sec08__list dd {
    font-size: 1.6rem;
    line-height: 1.625;
    font-weight: 400;
    max-height: 0;
    transition: 0.3s;
    opacity: 0;
    padding-bottom: 1.5rem;
  }
  .sec08__list dd.active {
    max-height: 50rem;
    opacity: 1;
    padding-bottom: 2rem;
    margin-top: 1.8rem;
  }
}
/*====================================================
//// contact
====================================================*/
.contact {
  padding-bottom: 4.28rem;
}
.contact__title {
  z-index: 10;
}
.contact__title span {
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: 700;
  width: fit-content;
  margin: auto;
  padding: 0 2.2rem;
  color: #fff;
}
.contact__title + p {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 700;
  text-align: center;
  margin-top: 1.2rem;
}
.contact .lead {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-top: 1.7rem;
}
.contact dl {
  position: relative;
  z-index: 10;
}
.contact dl dt {
  font-size: 1.6rem;
  line-height: 2.125;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact dl dt span {
  display: inline-block;
  background-color: var(--color-green);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.75;
  font-weight: 400;
  padding: 0 0.8rem;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
  margin-left: 0.7rem;
}
.contact dl dd {
  margin-bottom: 1.2rem;
}
.contact .form-txt {
  border: 1px solid #C3C3C3;
  background-color: #fff;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  width: 100%;
  height: 3.3rem;
  padding: 0.3rem 1rem;
}
.contact .submit-btn {
  display: block;
  margin: 3rem auto 0 auto;
  position: relative;
  max-width: 25.3rem;
  background: var(--grd-yellow);
  background-size: 200% auto;
  background-position: left top;
  transition: background-position 0.5s;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  box-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 20;
}
.contact .submit-btn::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.414%22%20height%3D%2216.828%22%20viewBox%3D%220%200%209.414%2016.828%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1%22%20data-name%3D%22%E3%83%91%E3%82%B9%201%22%20d%3D%22M390.72%2C611.872l7%2C7-7%2C7%22%20transform%3D%22translate(-389.306%20-610.458)%22%20fill%3D%22none%22%20stroke%3D%22%23313131%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  width: 0.7rem;
  aspect-ratio: 7/14;
  position: absolute;
  right: 2.63rem;
  top: 53%;
  transform: translateY(-50%);
}
.contact .submit-btn .submit {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1.6rem;
  line-height: 3.1875;
  font-weight: 500;
}
.contact .submit-btn:hover {
  background-position: 100% top;
}
.contact .checkboxItem {
  display: flex;
  align-items: center;
  column-gap: 4px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
}
.contact .checkbox {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #C3C3C3;
  border-radius: 2px;
  cursor: pointer;
}
.contact .checkbox:checked {
  background-color: var(--color-green);
}
.contact .checkbox:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.contact .conditions__wrap {
  margin-top: 2rem;
}
.contact .conditions__title {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  margin-top: 1.5rem;
}
.contact .conditions__head {
  background-color: var(--color-green);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  padding: 1rem 5rem 1rem 1rem;
  position: relative;
}
.contact .conditions__head:hover {
  cursor: pointer;
  opacity: 0.8;
}
.contact .conditions__head::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210.713%22%20height%3D%226.356%22%20viewBox%3D%220%200%2010.713%206.356%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_12%22%20data-name%3D%22%E3%83%91%E3%82%B9%2012%22%20d%3D%22M0%2C7.885%2C3.942%2C3.942%2C0%2C0%22%20transform%3D%22translate(1.414%204.942)%20rotate(-90)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E");
  transition: transform 0.3s, top 0.3s;
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  background-repeat: no-repeat;
  width: 1.3rem;
  height: 1.5rem;
  background-size: contain;
  transform: rotate(180deg);
}
.contact .conditions__head.active::after {
  transform: rotate(0);
  top: 1.7rem;
}
.contact .conditions__body {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  border: 1px solid var(--color-green);
  padding: 0 2rem 2rem;
  opacity: 0;
  max-height: 0;
  transition: 0.5s;
  margin-bottom: 2rem;
}
.contact .conditions__body.active {
  opacity: 1;
  max-height: 500rem;
}
.contact .conditions__body li {
  margin-top: 1.5rem;
  padding-left: 3rem;
  position: relative;
}
.contact .conditions__body li::before {
  position: absolute;
  left: 0;
  top: 0;
}
.contact .conditions__body li:first-child::before {
  content: "(1)";
}
.contact .conditions__body li:nth-child(2)::before {
  content: "(2)";
}
.contact .conditions__body li:nth-child(3)::before {
  content: "(3)";
}
.contact .conditions__body li:nth-child(4)::before {
  content: "(4)";
}
.contact .conditions__body li:nth-child(5)::before {
  content: "(5)";
}
.contact .conditions__body li:nth-child(6)::before {
  content: "(6)";
}
.contact .conditions__body li:nth-child(7)::before {
  content: "(7)";
}
.contact .conditions__body li:nth-child(8)::before {
  content: "(8)";
}
.contact .conditions__body li:nth-child(9)::before {
  content: "(9)";
}
.contact .conditions__body li:last-child::before {
  content: "(10)";
}

@media screen and (min-width: 768px) {
  .contact {
    margin-top: 8.05rem;
    padding-top: 5.22rem;
    padding-bottom: 9rem;
    background-color: #fff;
    max-width: initial;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    overflow-y: hidden;
  }
  .contact__title {
    z-index: 10;
  }
  .contact__title span {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .contact__title + p {
    font-size: 3rem;
    line-height: 1.6666666667;
    margin-top: 1rem;
  }
  .contact .lead {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-top: 2.6rem;
    text-align: center;
  }
  .contact dl {
    margin: 4.6rem auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
    max-width: 65rem;
  }
  .contact dl dt {
    width: calc(100% - 40.2rem - 0.8rem);
    font-size: 1.6rem;
    line-height: 2.125;
    font-weight: 700;
    margin-bottom: 1.6rem;
    text-align: right;
  }
  .contact dl dt span {
    display: inline-block;
    background-color: var(--color-green);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.75;
    font-weight: 400;
    padding: 0 0.8rem;
    border-radius: 0.6rem;
    -webkit-border-radius: 0.6rem;
    -moz-border-radius: 0.6rem;
    -ms-border-radius: 0.6rem;
    -o-border-radius: 0.6rem;
    margin-left: 0.7rem;
  }
  .contact dl dd {
    width: 40.2rem;
    margin-bottom: 1.6rem;
  }
  .contact .submit-btn {
    display: block;
    margin: 2.4rem auto 0 auto;
    position: relative;
    max-width: 25.3rem;
    background-size: 200% auto;
    background-position: left top;
    transition: background-position 0.5s;
    border-radius: 3rem;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    -ms-border-radius: 3rem;
    -o-border-radius: 3rem;
    box-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  }
  .contact .submit-btn::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.414%22%20height%3D%2216.828%22%20viewBox%3D%220%200%209.414%2016.828%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1%22%20data-name%3D%22%E3%83%91%E3%82%B9%201%22%20d%3D%22M390.72%2C611.872l7%2C7-7%2C7%22%20transform%3D%22translate(-389.306%20-610.458)%22%20fill%3D%22none%22%20stroke%3D%22%23313131%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E");
    background-size: contain;
    width: 0.7rem;
    aspect-ratio: 7/14;
    position: absolute;
    right: 2.63rem;
    top: 53%;
    transform: translateY(-50%);
  }
  .contact .submit-btn .submit {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 1.6rem;
    line-height: 3.1875;
    font-weight: 500;
  }
  .contact .conditions {
    max-width: 65rem;
    margin: auto;
  }
  .contact .conditions__wrap {
    align-items: flex-start;
    gap: 3rem;
  }
  .contact .conditions__wrap dt {
    width: calc(100% - 40.2rem - 3rem);
  }
  .contact .conditions__wrap dd {
    padding-top: 0.5rem;
    width: 40.2rem;
  }
  .contact .conditions__title {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    margin-top: 1.5rem;
  }
  .contact .conditions__head {
    background-color: var(--color-green);
    color: #fff;
    font-size: 1.6rem;
    line-height: 2.625;
    font-weight: 500;
    padding: 0 1rem;
    position: relative;
  }
  .contact .conditions__head::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210.713%22%20height%3D%226.356%22%20viewBox%3D%220%200%2010.713%206.356%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_12%22%20data-name%3D%22%E3%83%91%E3%82%B9%2012%22%20d%3D%22M0%2C7.885%2C3.942%2C3.942%2C0%2C0%22%20transform%3D%22translate(1.414%204.942)%20rotate(-90)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E");
    transition: transform 0.3s, top 0.3s;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    background-repeat: no-repeat;
    width: 1.3rem;
    height: 1.5rem;
    background-size: contain;
    transform: rotate(180deg);
  }
  .contact .conditions__head.active::after {
    transform: rotate(0);
    top: 1.7rem;
  }
  .contact .conditions__body {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    border: 1px solid var(--color-green);
    padding: 0 2rem 2rem;
    opacity: 0;
    max-height: 0;
    transition: 0.5s;
    position: relative;
    z-index: 1;
  }
  .contact .conditions__body.active {
    opacity: 1;
    max-height: 100rem;
    pointer-events: all;
  }
  .contact .conditions__body li {
    margin-top: 1.5rem;
    padding-left: 3rem;
    position: relative;
  }
}/*# sourceMappingURL=style.css.map */