@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

html {
  color: #000;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

html,
body {
  overflow-x: hidden;
}

main {
  padding-top: var(--header-height, 70px);
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}

.c-header {
  position: relative;
  z-index: 100;
  background: #FFF;
}
.c-header .inner-block {
  padding-block: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 1.3888888889vw, 20px);
  padding-inline: 20px 30px;
  max-width: 1120px;
}
.c-header .logo-area {
  width: 100%;
  max-width: 395px;
}
.c-header .nav-btn-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .nav-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #005DAB;
  color: #FFF;
  padding: 4px;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: background, color;
  transition-property: background, color;
  overflow: hidden;
}
.c-header .nav-btn .lines {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.c-header .nav-btn .lines .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.c-header .nav-btn .lines .line:nth-child(1) {
  translate: 0 -8px;
  -webkit-transition: 0.2s 0.2s ease-out;
  transition: 0.2s 0.2s ease-out;
}
.c-header .nav-btn .lines .line:nth-child(2) {
  -webkit-transition: 0.3s 0.1s ease-out;
  transition: 0.3s 0.1s ease-out;
}
.c-header .nav-btn .lines .line:nth-child(3) {
  translate: 0 8px;
  -webkit-transition: 0.2s 0.2s ease-out;
  transition: 0.2s 0.2s ease-out;
}
.c-header .nav-area .nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.c-header .nav-area .nav-list > li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding-right: 30px;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.c-header .nav-area .nav-list > li a:focus-visible {
  color: #006F9E;
}
.c-header .nav-area .nav-list > li a::after {
  position: absolute;
  content: "";
  background: url("../img/common/ico-triangle.svg") no-repeat center/contain;
  width: 1em;
  height: auto;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-header.is-active .nav-btn-area .nav-btn .lines .line:nth-child(1) {
  rotate: 35deg;
  translate: 0 0;
}
.c-header.is-active .nav-btn-area .nav-btn .lines .line:nth-child(2) {
  translate: 80px 0;
}
.c-header.is-active .nav-btn-area .nav-btn .lines .line:nth-child(3) {
  rotate: -35deg;
  translate: 0 0;
}
.c-header.is-active .nav-area {
  opacity: 1;
  pointer-events: initial;
  -webkit-user-select: initial;
     -moz-user-select: initial;
      -ms-user-select: initial;
          user-select: initial;
  -ms-touch-action: initial;
      touch-action: initial;
  overflow-y: auto;
}
.c-header.is-active .nav-area .nav-list,
.c-header.is-active .nav-area .btn-list {
  translate: 0% 0;
}

.c-footer {
  border-top: 4px solid #CDCDCD;
  padding-block: 42px 37px;
  text-align: center;
}
.c-footer .logo-area {
  max-width: 396px;
  margin-inline: auto;
}
.c-footer .copyright {
  margin-top: 12px;
  font-size: 10px;
  line-height: 1.5;
}
.c-footer .txt {
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 12px;
}

.c-ttl {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-bottom: 64px;
}
.c-ttl .deco {
  width: 200px;
  height: 13px;
  position: relative;
}
.c-ttl .deco::before, .c-ttl .deco::after {
  position: absolute;
  content: "";
  background: url("../img/home/ttl-deco.svg") no-repeat center/contain;
  width: 100%;
  height: 100%;
  inset: 0;
  margin: auto;
}

.c-bg-ttl {
  margin-bottom: 26px;
  display: block;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: #FFF;
  padding: 4px 8px;
  background: url("../img/home/graph-ttl-gold_pc.png.webp") no-repeat center/contain;
  width: 264px;
}
.c-bg-ttl.silver {
  background-image: url("../img/home/graph-ttl-silver_pc.png.webp");
}
.c-bg-ttl.blue {
  background-image: url("../img/home/graph-ttl-blue_pc.png.webp");
  width: 345px;
  margin-left: 0;
  margin-bottom: 12px;
  padding-block: 6px;
  font-size: 18px;
  line-height: 1.6666666667;
}

.c-border-ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  padding-block: 10px 18px;
  padding-inline: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-top: 3px solid #54A11A;
  border-bottom: 3px solid #54A11A;
  margin-bottom: 12px;
}

.c-clr {
  color: #54A11A;
}
.c-clr.red {
  color: #DC000C;
}
.c-clr.gold {
  color: #C19735;
}
.c-clr.blue {
  color: #006F9E;
}
.c-clr.white {
  color: #FFF;
}

.c-desc-txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.c-desc-txt sup {
  vertical-align: text-top;
  font-size: x-small;
}

.c-note-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.c-note-txt.has-mt {
  margin-top: 1.5em;
}

.c-ico-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25em;
}
.c-ico-txt .icon {
  white-space: nowrap;
}

.js--overlay {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 99;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.js--overlay:not(.is-active) {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: none;
      touch-action: none;
}
.js--overlay.is-active {
  opacity: 1;
}

.c-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-radius: 100vw;
  border: 1px solid #54A11A;
  background: #54A11A;
  color: #FFF;
  padding-inline: 36px 20px;
  padding-block: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: color, background;
  transition-property: color, background;
}
.c-btn:focus-visible {
  background: #FFF;
  color: #54A11A;
}
.c-btn.small {
  font-size: 16px;
  padding-block: 14px;
  padding-inline: 16px;
}
.c-btn.bdr-none {
  border-radius: 0px;
  padding-block: 5px;
  padding-inline: 10px;
  width: 100%;
}
.c-btn.bdr-none .inn-txt {
  padding-right: 7px;
}
.c-btn.bg-t-blue {
  background: #2897C6;
  border-color: #2897C6;
}
.c-btn.bg-t-blue:focus-visible {
  background: #FFF;
  color: #2897C6;
}
.c-btn.bg-blue {
  background: #B7D9E5;
  border-color: #B7D9E5;
  color: #000;
}
.c-btn.bg-blue .inn-txt::after {
  background: #799DAB;
}
.c-btn.bg-blue:focus-visible {
  background: #FFF;
  color: #000;
}
.c-btn.bg-yellow {
  background: #F7E2A3;
  border-color: #F7E2A3;
  color: #000;
}
.c-btn.bg-yellow .inn-txt::after {
  background: #C2AB6C;
}
.c-btn.bg-yellow:focus-visible {
  background: #FFF;
  color: #000;
}
.c-btn.ico-arrow-circle .inn-txt::after {
  -webkit-mask: unset;
          mask: unset;
  background: url("../img/common/ico-arrow-circle.svg") no-repeat center/contain;
  width: 21px;
  height: auto;
  aspect-ratio: 1;
  rotate: 180deg;
  -webkit-transition-property: rotate, background;
  transition-property: rotate, background;
}
.c-btn.ico-pdf .inn-txt::after {
  -webkit-mask: unset;
          mask: unset;
  background: url("../img/common/ico-pdf.svg") no-repeat center/contain;
  width: 24px;
  height: auto;
  aspect-ratio: 24/28.58;
}
.c-btn .inn-txt {
  width: 100%;
  padding-right: 30px;
  text-align: center;
  position: relative;
}
.c-btn .inn-txt::after {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/ico-arrow.svg") no-repeat center/contain;
          mask: url("../img/common/ico-arrow.svg") no-repeat center/contain;
  background: currentColor;
  width: auto;
  height: 16px;
  aspect-ratio: 19/29;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: background;
  transition-property: background;
}

.c-graph {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #FFF;
}
.c-graph .over {
  overflow: hidden;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  -webkit-transition: -webkit-clip-path 2s linear;
  transition: -webkit-clip-path 2s linear;
  transition: clip-path 2s linear;
  transition: clip-path 2s linear, -webkit-clip-path 2s linear;
}
.c-graph img {
  display: block;
}
.c-graph.is-shown .over {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.c-section {
  padding-block: 80px;
}
.c-section.pb-0 {
  padding-bottom: 0;
}
.c-section.pt-0 {
  padding-top: 0;
}

.c-top-txt {
  max-width: 980px;
  margin-inline: auto;
}
.c-top-txt .top-txt-box.ico-point::before {
  background: url("../img/home/ico-point.svg") no-repeat center 18px/92px auto;
}
.c-top-txt .top-txt-box.ico-shikumi::before {
  background: url("../img/home/ico-shikumi.svg") no-repeat center 18px/99px auto;
}
.c-top-txt .top-txt-box {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
  position: relative;
  padding-top: 85px;
  margin-bottom: 64px;
}
.c-top-txt .top-txt-box::before, .c-top-txt .top-txt-box::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 160px;
  height: 160px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-top-txt .top-txt-box::before {
  background: url("../img/home/ico-miryoku.svg") no-repeat center 18px/65px auto;
}
.c-top-txt .top-txt-box::after {
  z-index: -1;
  background: white;
}
.c-top-txt .top-txt-box .txt {
  border-radius: 4px;
  background: #FFF;
  padding-block: 35px 27px;
  padding-inline: 24px;
  color: #555;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.c-top-txt .top-txt-box .txt .inn-txt {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.aco-wrap + .aco-wrap {
  margin-top: 40px;
}
.aco-wrap {
  border: 2px solid #006F9E;
  background: #FFF;
  padding-bottom: 32px;
}
.aco-wrap .aco-ttl {
  background: #006F9E;
  color: #FFF;
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  padding: 15px 42px;
  margin-bottom: 32px;
}
.aco-wrap > *:not(.aco-ttl) {
  padding-inline: 32px;
}
.aco-wrap .aco-txt {
  color: #006F9E;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.aco-wrap .aco-txt .small {
  font-size: 16px;
  line-height: 1.875;
}
.aco-wrap .aco-cont {
  margin-top: 24px;
}
.aco-wrap .aco-cont .c-bg-ttl {
  margin-top: 33px;
}
.aco-wrap .c-btn {
  margin-right: 0;
  padding-block: 8px;
  max-width: 175px;
  width: 100%;
  margin-top: 10px;
}
.aco-wrap.is-active .c-btn {
  margin-top: 24px;
}
.aco-wrap.is-active .c-btn .inn-txt::after {
  rotate: 0deg;
}

.c-tbl-wrap {
  display: block;
}
.c-tbl-wrap::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
.c-tbl-wrap::-webkit-scrollbar-track {
  border-radius: 6px;
  background-color: #DFE9EB;
  border: 1px solid #ccc;
}
.c-tbl-wrap::-webkit-scrollbar-track:hover {
  background-color: #efefef;
}
.c-tbl-wrap::-webkit-scrollbar-track:active {
  background-color: #efefef;
}
.c-tbl-wrap::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #c6c6c6;
}
.c-tbl-wrap::-webkit-scrollbar-thumb:hover {
  background-color: #ccc;
}
.c-tbl-wrap::-webkit-scrollbar-thumb:active {
  background-color: #ccc;
}

.js--scroll-item.fade-in {
  opacity: 0;
  translate: 0 20px;
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  -webkit-transition-property: translate, opacity;
  transition-property: translate, opacity;
}
.js--scroll-item.fade-in.is-shown {
  opacity: 1 !important;
  translate: 0px 0px !important;
}
.js--scroll-item.fade-in.no-translate {
  translate: 0 0;
}
.js--scroll-item.fade-in.to-bottom {
  translate: 0 -20px;
}
.js--scroll-item.fade-in.to-left {
  translate: 20px 0;
}
.js--scroll-item.fade-in.to-right {
  translate: -20px 0;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .mv-section .img {
  display: block;
}
.home .mv-section .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .about-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#EDFAFF), to(rgba(237, 250, 255, 0)));
  background: linear-gradient(180deg, #EDFAFF 0%, rgba(237, 250, 255, 0) 100%);
  padding-top: 93px;
}
.home .about-section .top-ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.home .about-section .contents-wrap {
  padding-top: min(20.8333333333vw, 300px);
  padding-bottom: min(2.4305555556vw, 35px);
  position: relative;
  z-index: 3;
}
.home .about-section .contents-wrap::before, .home .about-section .contents-wrap::after {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/deco-bg.svg") no-repeat center/contain;
          mask: url("../img/common/deco-bg.svg") no-repeat center/contain;
  width: clamp(90%, 63.4375vw, 1218px);
  height: auto;
  aspect-ratio: 1218/205;
  margin: auto;
  pointer-events: none;
}
.home .about-section .contents-wrap::before {
  -webkit-mask-position: -94px center;
          mask-position: -94px center;
  background: -webkit-gradient(linear, left top, right top, from(#006F9E), color-stop(35.14%, #0079AD), color-stop(65%, #008DC9), to(#006C9B));
  background: linear-gradient(90deg, #006F9E 0%, #0079AD 35.14%, #008DC9 65%, #006C9B 100%);
  bottom: min(2.4305555556vw, 35px);
  left: 0;
}
.home .about-section .contents-wrap::after {
  z-index: -1;
  -webkit-mask-position: min(20.9722222222vw, 302px) center;
          mask-position: min(20.9722222222vw, 302px) center;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6))), -webkit-gradient(linear, left top, right top, color-stop(0.58%, #3C7082), color-stop(22.47%, #4A8096), color-stop(50.32%, #578AA1), color-stop(72.2%, #6895AB), color-stop(100.05%, #2B6171));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%), linear-gradient(90deg, #3C7082 0.58%, #4A8096 22.47%, #578AA1 50.32%, #6895AB 72.2%, #2B6171 100.05%);
  bottom: 0;
  right: 0;
}
.home .about-section .contents-wrap .ttl-area {
  position: relative;
  z-index: 2;
  margin-bottom: min(1.9444444444vw, 35px);
}
.home .about-section .contents-wrap .ttl-area .ttl {
  font-size: min(2.5vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  padding-block: min(1.9791666667vw, 38px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.home .about-section .people {
  position: absolute;
  width: 100%;
  inset: 0;
  max-width: 1440px;
  margin-inline: auto;
}
.home .about-section .person {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .about-section .person.p-01 {
  width: min(13.6111111111vw, 196px);
  bottom: 16px;
  left: min(4.4444444444vw, 64px);
  z-index: 2;
}
.home .about-section .person.p-06 {
  width: min(14.6527777778vw, 211px);
  bottom: min(2.4305555556vw, 35px);
  left: min(80.2777777778vw, 1156px);
  z-index: 2;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.home .about-section .person.p-02, .home .about-section .person.p-03, .home .about-section .person.p-04, .home .about-section .person.p-05 {
  z-index: -1;
}
.home .about-section .person.p-02 {
  bottom: min(14.7222222222vw, 265px);
  width: min(16.7361111111vw, 241px);
  left: min(20.5555555556vw, 296px);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.home .about-section .person.p-03 {
  bottom: min(14.4444444444vw, 260px);
  width: min(10.6944444444vw, 154px);
  left: min(36.0416666667vw, 519px);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.home .about-section .person.p-04 {
  bottom: min(12.7777777778vw, 230px);
  width: min(18.4027777778vw, 265px);
  left: min(48.0555555556vw, 692px);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home .about-section .person.p-05 {
  bottom: min(13.8888888889vw, 250px);
  width: min(9.8611111111vw, 142px);
  left: min(68.6805555556vw, 989px);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.home .about-section .person.p-05-arm {
  bottom: min(14.0555555556vw, 253px);
  width: min(10.0694444444vw, 145px);
  left: min(67.9166666667vw, 978px);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.home .anchor-section {
  margin-top: min(0px - 3.4722222222vw, -50px);
  padding-top: 110px;
  padding-bottom: 15.3472222222vw;
  background: #FDF6E3;
  position: relative;
  overflow: hidden;
}
.home .anchor-section::before {
  position: absolute;
  content: "";
  background: url("../img/home/deco-grass01.png.webp") no-repeat center/contain;
  width: min(44.375vw, 639px);
  height: auto;
  -webkit-transform: rotate(-8.247deg);
          transform: rotate(-8.247deg);
  aspect-ratio: 371/113;
  bottom: 20px;
  left: min(0px - 5.9027777778vw, -85px);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .anchor-section .anchor-list-area {
  position: relative;
}
.home .anchor-section .person {
  position: relative;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .anchor-section .anchor-list {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(8px, 2.0833333333vw, 30px);
}
.home .anchor-section .anchor-list > li {
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.home .anchor-section .anchor-list > li .contents-wrap {
  padding-block: 40px 24px;
  padding-inline: 11px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 100%;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.home .anchor-section .anchor-list > li .contents-wrap:focus-visible {
  background: #f4f4f4;
}
.home .anchor-section .anchor-list > li .contents-wrap .icon-area {
  grid-area: icon;
  max-height: clamp(100px, 8.8888888889vw, 128px);
}
.home .anchor-section .anchor-list > li .contents-wrap .icon-area img {
  width: auto;
  height: 100%;
}
.home .anchor-section .anchor-list > li .contents-wrap .ttl {
  grid-area: ttl;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6666666667;
  color: #006F9E;
}
.home .anchor-section .anchor-list > li .contents-wrap .desc {
  grid-area: desc;
  font-size: clamp(18px, 1.5277777778vw, 22px);
  font-weight: 700;
  line-height: 130%;
}
.home .anchor-section .anchor-list > li:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.home .anchor-section .anchor-list > li:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home .anchor-section .anchor-list > li:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.home .graph-section {
  padding-top: 33px;
  padding-bottom: 80px;
  position: relative;
  z-index: 6;
}
.home .graph-section::after {
  position: absolute;
  content: "";
  z-index: -1;
  background: #FFF;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 100%;
  height: clamp(180px, 13.8888888889vw, 270px);
  bottom: calc(100% - 1px);
  left: 0;
  right: 0;
  margin: auto;
}
.home .graph-section .contents-wrap {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.home .miryoku-section {
  background: rgba(131, 203, 98, 0.1);
  overflow: hidden;
  padding-top: 75px;
  position: relative;
}
.home .miryoku-section::before {
  position: absolute;
  content: "";
  background: url("../img/home/deco-grass03.png.webp") no-repeat center/contain;
  width: clamp(300px, 47.3611111111vw, 682px);
  height: auto;
  aspect-ratio: 341/120;
  bottom: -27px;
  left: max(0px - 7.7083333333vw, -111px);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .miryoku-section .bird01 {
  position: absolute;
  width: 150px;
  height: auto;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  aspect-ratio: 48/77;
  top: -15px;
  left: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .miryoku-section .c-top-txt {
  position: relative;
}
.home .miryoku-section .c-top-txt::before {
  position: absolute;
  content: "";
  background: url("../img/home/deco-flower.png.webp") no-repeat center/contain;
  width: 324px;
  height: auto;
  aspect-ratio: 143/79;
  top: -69px;
  right: -20px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .miryoku-section .contents-wrap {
  max-width: calc(780px + clamp(40px, 10.625vw, 153px) * 2);
  margin-inline: auto;
  position: relative;
}
.home .miryoku-section .top-rank-txt-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "img1 txt img2";
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 2.7083333333vw, 39px);
}
.home .miryoku-section .top-rank-txt-area > img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .miryoku-section .top-rank-txt-area > img:nth-child(1) {
  grid-area: img1;
}
.home .miryoku-section .top-rank-txt-area > img:nth-child(2) {
  grid-area: img2;
}
.home .miryoku-section .top-rank-txt-area .rank-txt {
  grid-area: txt;
  font-size: clamp(28px, 3.8888888889vw, 56px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.home .miryoku-section .top-rank-txt-area .rank-txt .big {
  font-size: clamp(40px, 5.5555555556vw, 80px);
  line-height: 1;
  letter-spacing: 0.1em;
}
.home .miryoku-section .top-rank-txt-area .rank-txt .copper {
  color: #D28647;
}
.home .miryoku-section .top-rank-txt-area .rank-txt .silver {
  color: #578AA1;
}
.home .miryoku-section .desc {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-block: 34px;
}
.home .miryoku-section .rank-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}
.home .miryoku-section .rank-area .each.silver .rank {
  border: 4px solid rgba(87, 138, 161, 0.47);
  background: #EDF9FF;
  color: #578AA1;
}
.home .miryoku-section .rank-area .each.silver .txt-wrap {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6))), -webkit-gradient(linear, left top, right top, color-stop(0.58%, #3C7082), color-stop(22.47%, #4A8096), color-stop(50.32%, #578AA1), color-stop(72.2%, #6895AB), color-stop(100.05%, #2B6171));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%), linear-gradient(90deg, #3C7082 0.58%, #4A8096 22.47%, #578AA1 50.32%, #6895AB 72.2%, #2B6171 100.05%);
}
.home .miryoku-section .rank-area .each .rank {
  border: 4px solid #D47E36;
  background: #F9F4E3;
  color: #D28647;
  border-radius: 100vw;
  -webkit-box-shadow: 0px 5px 0px #000;
          box-shadow: 0px 5px 0px #000;
  position: relative;
  margin-bottom: -20px;
  padding-block: 0px 2px;
  padding-inline: 16px;
  width: 100%;
  max-width: 180px;
  margin-inline: auto;
  display: block;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
}
.home .miryoku-section .rank-area .each .txt-wrap {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3))), -webkit-gradient(linear, right top, left top, from(#D47E36), color-stop(22.12%, #E8A36A), color-stop(49.52%, #D28647), color-stop(71.63%, #F9B781), to(#D28647));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), linear-gradient(270deg, #D47E36 0%, #E8A36A 22.12%, #D28647 49.52%, #F9B781 71.63%, #D28647 100%);
  padding-block: 32px 12px;
  padding-inline: 20px;
}
.home .miryoku-section .rank-area .each .txt-wrap .rank-ttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.home .miryoku-section .rank-area .each .txt-wrap .ratio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  text-align: center;
  max-width: 288px;
  margin-inline: auto;
  margin-top: 15px;
}
.home .miryoku-section .rank-area .each .txt-wrap .ratio .ratio-ttl,
.home .miryoku-section .rank-area .each .txt-wrap .ratio .ratio-txt {
  padding: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .miryoku-section .rank-area .each .txt-wrap .ratio .ratio-ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  padding-inline: 16px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.6);
}
.home .miryoku-section .rank-area .each .txt-wrap .ratio .ratio-txt {
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  background: #FFF;
  width: 100%;
}
.home .miryoku-section .ratio-box {
  background: #FFF;
  padding: 20px 28px;
  margin-top: 40px;
  margin-bottom: 66px;
}
.home .miryoku-section .ratio-box .ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}
.home .miryoku-section .btn-wrap .c-btn {
  width: 100%;
  max-width: 310px;
}
.home .miryoku-section .person-img {
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .miryoku-section .person-img img {
  width: clamp(150px, 14.5138888889vw, 209px);
}
.home .point-section {
  position: relative;
  padding-bottom: 0;
}
.home .point-section .bird-twig {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  top: 47px;
  right: -14px;
  width: clamp(200px, 24.0277777778vw, 346px);
  height: auto;
  aspect-ratio: 346/200;
}
.home .point-section .bird-twig .wrap {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.home .point-section .bird-twig .bird02 {
  position: absolute;
  width: 117px;
  width: 33.8150289017%;
  height: auto;
  aspect-ratio: 117/111;
  top: 1px;
  right: 25.1445086705%;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home .point-section .bird-twig .twig {
  margin-top: auto;
  width: calc(100% - 26px);
  margin-left: auto;
  margin-right: 13px;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.home .point-section .bird03 {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: clamp(100px, 13.2638888889vw, 191px);
  height: auto;
  -webkit-transform: rotate(-19.783deg);
          transform: rotate(-19.783deg);
  aspect-ratio: 146/185;
  top: 405px;
  left: calc(50% - min(47.2222222222vw, 680px));
}
.home .point-section .deco-wrap {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .point-section {
  background: -webkit-gradient(linear, left bottom, left top, from(#EDFAFF), to(rgba(237, 250, 255, 0))) no-repeat;
  background: linear-gradient(0deg, #EDFAFF 0%, rgba(237, 250, 255, 0) 100%) no-repeat;
  background-size: 100% 876px;
  background-position: center calc(100% - 200px);
}
.home .point-section .aco-list .aco-wrap:nth-child(1) .c-desc-txt {
  margin-bottom: 20px;
}
.home .point-section .aco-list .aco-wrap:nth-child(2) .c-desc-txt {
  margin-bottom: 12px;
}
.home .point-section .aco-list .aco-wrap:nth-child(2) .c-bg-ttl {
  width: 100%;
  max-width: 368px;
  background-size: 100%;
}
.home .point-section .aco-list .aco-wrap:nth-child(2) .img-area {
  display: block;
}
.home .bg-blue-wrap {
  background: #E1EEF9;
}
.home .bg-blue-wrap .contents-wrap {
  background: #FFF;
}
.home .bg-blue-wrap {
  position: relative;
  z-index: 4;
}
.home .bg-blue-wrap::after {
  position: absolute;
  content: "";
  z-index: 2;
  background: #E1EEF9;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 270px;
  height: 100px;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .bg-blue-wrap .twig02 {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  top: -112px;
  left: -40px;
}
.home .bg-blue-wrap .twig02 img {
  width: clamp(250px, 27.7777777778vw, 400px);
}
.home .shikumi-section {
  padding-top: 0;
  margin-bottom: 94px;
}
.home .shikumi-section .contents-wrap {
  padding-block: 60px 40px;
}
.home .shikumi-section .top-area {
  padding-inline: clamp(20px, 3.4722222222vw, 50px);
}
.home .shikumi-section .c-top-txt {
  position: relative;
}
.home .shikumi-section .c-top-txt.is-shown::before {
  opacity: 1;
}
.home .shikumi-section .c-top-txt::before {
  position: absolute;
  content: "";
  z-index: 3;
  background: url("../img/home/deco-bird04.png.webp") no-repeat center/contain;
  width: clamp(120px, 12.1527777778vw, 175px);
  height: auto;
  aspect-ratio: 7/8;
  bottom: calc(100% - 85px - 10px);
  right: -46px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0;
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home .shikumi-section .shikumi-area {
  background: #F7F2E6;
  padding-block: 48px;
  padding-inline: clamp(20px, 3.8194444444vw, 55px);
  position: relative;
}
.home .shikumi-section .shikumi-area::after {
  position: absolute;
  content: "";
  background: #F7F2E6;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 189px;
  height: 95px;
  bottom: -70px;
  left: 0;
  right: 0;
  margin: auto;
}
.home .shikumi-section .shikumi-area .top-txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.home .shikumi-section .shikumi-area .what-box,
.home .shikumi-section .shikumi-area .img-box,
.home .shikumi-section .shikumi-area .figure-area {
  max-width: 801px;
  margin-inline: auto;
}
.home .shikumi-section .shikumi-area .what-box {
  margin-block: 25px 16px;
  display: grid;
  grid-template-columns: min(30%, 163px) 1fr;
}
.home .shikumi-section .shikumi-area .what-box .what-ttl {
  background: #E1EEF9;
  color: #006F9E;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 2.1428571429;
}
.home .shikumi-section .shikumi-area .what-box .txt-box {
  padding: 8px 10px;
  background: #FFF;
}
.home .shikumi-section .shikumi-area .figure-area {
  display: block;
}
.home .shikumi-section .shikumi-area .img-box {
  margin-top: 18px;
  background: #FFF;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 21px;
}
.home .shikumi-section .shikumi-area .deco-txt-area {
  position: relative;
}
.home .shikumi-section .shikumi-area .deco-txt-area .person-img {
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .shikumi-section .shikumi-area .deco-txt-area .person-img img {
  width: clamp(201px, 19.4444444444vw, 280px);
}
.home .shikumi-section .person-img02 {
  position: relative;
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .shikumi-section .person-img02 img {
  width: clamp(200px, 16.4583333333vw, 237px);
}
.home .shikumi-section .bottom-area {
  max-width: 950px;
  padding-inline: 40px;
  margin-inline: auto;
  position: relative;
}
.home .shikumi-section .bottom-area .big-txt {
  color: #006F9E;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
}
.home .shikumi-section .bottom-area .c-desc-txt.has-mt {
  margin-top: 20px;
  margin-bottom: 34px;
}
.home .shikumi-section .bottom-area .c-desc-txt.border {
  border: 1px solid #DC000C;
  padding: 0.75em;
}
.home .shikumi-section .bottom-area .deco-txt-area {
  margin-top: 34px;
}
.home .shikumi-section .bottom-area .deco-txt-area .bottom-txt {
  font-size: 20px;
  line-height: 1.5;
}
.home .shikumi-section .bottom-area .deco-txt-area .bottom-txt .red {
  font-weight: 700;
}
.home .shikumi-section .bottom-area .c-bg-ttl {
  background-size: 100% 100%;
}
.home .shikumi-section .bottom-area .img-area img {
  min-width: 550px;
}
.home .shikumi-section .person-img03 {
  position: absolute;
  z-index: 2;
  bottom: -55px;
  right: -30px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .support-section {
  position: relative;
  padding-bottom: 120px;
}
.home .support-section .bird05 {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  top: -26px;
  left: -20px;
}
.home .support-section .bird05 img {
  width: clamp(220px, 23.6805555556vw, 341px);
}
.home .support-section .bird04 {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: block;
  width: clamp(350px, 33.0555555556vw, 476px);
  bottom: -1px;
  right: max(0px - 1.9444444444vw, -28px);
}
.home .support-section .contents-wrap .contents {
  max-width: 950px;
  padding-inline: 40px;
  margin-inline: auto;
  padding-block: 80px 35px;
}
.home .support-section .top-txt {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 50px;
}
.home .support-section .c-tbl-wrap {
  margin-bottom: 12px;
}
.home .support-section .graph-txt {
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-block: 40px;
}
.home .support-section .graph-wrap {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.home .support-section .graph-wrap .c-bg-ttl {
  margin-inline: auto;
  padding-block: 7px;
  width: 100%;
  max-width: 310px;
  background-size: 100% 100%;
  font-size: 20px;
  margin-bottom: 32px;
}
.home .support-section .explain-txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 18px;
}
.home .support-section .return-ttl-area {
  position: relative;
  z-index: 2;
  padding-block: 39px 23px;
  padding-inline: calc(6px + clamp(60px, 6.1111111111vw, 88px));
}
.home .support-section .return-ttl-area.is-shown .bird06 {
  opacity: 1;
}
.home .support-section .return-ttl-area .return-ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.home .support-section .return-ttl-area .bird06 {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  bottom: calc(0px - clamp(25px, 2.2916666667vw, 33px));
  left: 6px;
  opacity: 0;
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home .support-section .return-ttl-area .bird06 img {
  width: clamp(60px, 6.1111111111vw, 88px);
}
.home .support-section .compare-wrap {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 12px;
}
.home .support-section .compare-wrap .ttl {
  background: -webkit-gradient(linear, left top, right top, from(#E50A0F), color-stop(25%, #FB6569), color-stop(50.48%, #F0383C), color-stop(78.37%, #B61216), to(#DD2125));
  background: linear-gradient(90deg, #E50A0F 0%, #FB6569 25%, #F0383C 50.48%, #B61216 78.37%, #DD2125 100%);
  color: #FFF;
  padding: 18px;
  font-size: 28px;
  font-weight: 700;
  line-height: 0.8571428571;
}
.home .support-section .compare-wrap .num {
  background: rgba(229, 10, 15, 0.1);
  color: #DC000C;
  font-size: 56px;
  font-weight: 700;
  line-height: normal;
  padding: 5px;
}
.home .support-section .compare-wrap .num .small {
  font-size: 40px;
}
.home .support-section .note-bottom {
  margin-top: 16px;
}
.home .support-section .person-img04 {
  position: relative;
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home .support-section .person-img04 img {
  width: clamp(180px, 23.4722222222vw, 338px);
}
.home .matome-section {
  background: url("../img/home/round-bottom.png.webp") no-repeat center calc(100% + 1px)/max(1440px, 100%) auto, url("../img/common/bg-line.png.webp");
  padding-block: 120px 180px;
  position: relative;
  z-index: 2;
}
.home .matome-section .ttl {
  text-align: center;
  font-size: clamp(36px, 2.9166666667vw, 42px);
  font-weight: 700;
  line-height: 187.5%;
  margin-bottom: 30px;
}
.home .matome-section .ttl .big {
  font-size: clamp(48px, 4.0277777778vw, 58px);
  line-height: 1;
}
.home .matome-section .person-img1,
.home .matome-section .person-img2 {
  opacity: 0;
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.home .matome-section .person-img1 {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  left: clamp(20px, 5.2083333333vw, 75px);
  bottom: 5px;
}
.home .matome-section .person-img1 img {
  width: clamp(200px, 23.1944444444vw, 334px);
  height: auto;
  -webkit-transform: rotate(1.204deg);
          transform: rotate(1.204deg);
  aspect-ratio: 74/59;
}
.home .matome-section .person-img2 {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  right: clamp(20px, 9.9305555556vw, 143px);
  bottom: -20px;
}
.home .matome-section .person-img2 img {
  width: clamp(120px, 13.1944444444vw, 190px);
  height: auto;
  -webkit-transform: rotate(2.34deg);
          transform: rotate(2.34deg);
  aspect-ratio: 44/63;
}
.home .matome-section.is-shown .person-img1,
.home .matome-section.is-shown .person-img2 {
  opacity: 1;
}
.home .matome-section::before, .home .matome-section::after {
  position: absolute;
  content: "";
  z-index: -1;
  background: url("../img/home/stars-yellow.png.webp") no-repeat;
  background-size: 1201px auto;
  background-position: top center;
  width: 100%;
  max-width: 1201px;
  height: 100%;
  top: 57px;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-animation: flashing 4s infinite;
          animation: flashing 4s infinite;
  will-change: opacity;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.home .matome-section::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  background-image: url("../img/home/stars-blue.png.webp");
}
@-webkit-keyframes flashing {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flashing {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.home .whitepaper-section .c-ttl {
  margin-bottom: 50px;
}
.home .whitepaper-section .whitepaper-list {
  margin-bottom: 48px;
}
.home .whitepaper-section .whitepaper-list > li + li {
  margin-top: 20px;
}
.home .whitepaper-section .whitepaper-list > li a {
  border: 1px solid #006F9E;
  border-left: 12px solid #006F9E;
  background: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 17px 20px;
}
.home .whitepaper-section .whitepaper-list > li a {
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.home .whitepaper-section .whitepaper-list > li a:focus-visible {
  background: #f4f4f4;
}
.home .whitepaper-section .whitepaper-list > li a .ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.home .whitepaper-section .whitepaper-list > li a .date {
  font-size: 16px;
  line-height: 1.5;
  padding: 1px 8px;
  border: 1px solid #000;
}
.home .whitepaper-section .whitepaper-list > li a .icon {
  width: 24px;
  height: auto;
  aspect-ratio: 24/28;
  background: url("../img/common/ico-pdf.svg") no-repeat center/contain;
}
.home .fund-section {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #FDF6E3), color-stop(50%, #E1EEF9));
  background: linear-gradient(90deg, #FDF6E3 50%, #E1EEF9 50%);
  margin-top: 64px;
}
.home .fund-section .fund-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}
.home .fund-section .fund-list .fund-link-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-block: 19px 34px;
}
.home .notes-section {
  padding-bottom: 100px;
}
.home .notes-section .ttl {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1538461538;
  margin-bottom: 32px;
}
.home .notes-section .list + .ttl {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .inner-block.sp-pi-16 {
    padding-inline: 16px;
  }
  .pc {
    display: none !important;
  }
  .c-header .inner-block {
    padding-block: 10px;
    padding-inline: 10px;
  }
  .c-header .logo-area {
    max-width: 250px;
  }
  .c-header .nav-area {
    opacity: 0;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -ms-touch-action: none;
        touch-action: none;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 100%;
    right: 10px;
    overflow: hidden;
    min-width: 220px;
    background: #FFF;
    padding: 20px 40px;
  }
  .c-header .nav-area .nav-list {
    translate: 100% 0;
    -webkit-transition: translate 0.3s ease-in-out;
    transition: translate 0.3s ease-in-out;
    position: relative;
    z-index: 102;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0px;
  }
  .c-header .nav-area .nav-list > li {
    width: 100%;
  }
  .c-header .nav-area .nav-list > li a {
    width: 100%;
    padding-block: 10px;
    font-size: 14px;
  }
  .c-footer {
    padding-block: 30px 20px;
  }
  .c-ttl {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    margin-bottom: 45px;
    gap: 20px;
  }
  .c-ttl .deco {
    width: 100px;
  }
  .c-bg-ttl {
    background-image: url("../img/home/graph-ttl-gold_sp.png.webp");
    font-size: 16px;
    line-height: 1;
    padding-block: 2px 5px;
    width: 182px;
    margin-bottom: 15px;
  }
  .c-bg-ttl.silver {
    background-image: url("../img/home/graph-ttl-silver_sp.png.webp");
  }
  .c-bg-ttl.blue {
    background-image: url("../img/home/graph-ttl-blue_sp.png.webp");
    width: 267px;
    margin-bottom: 10px;
    padding-block: 5px;
    font-size: 14px;
    line-height: 1.6071428571;
  }
  .c-border-ttl {
    font-size: 14px;
    line-height: 1.5;
    padding-block: 7px;
    width: 100%;
    max-width: 225px;
  }
  .c-desc-txt {
    font-size: 14px;
  }
  .c-note-txt {
    font-size: 12px;
  }
  .c-btn {
    font-size: 14px;
    padding-inline: 20px;
    padding-block: 9px;
  }
  .c-btn.small {
    font-size: 14px;
    padding-block: 9px;
    padding-inline: 15px;
  }
  .c-btn.bdr-none {
    padding-block: 2px;
    padding-inline: 5px;
  }
  .c-btn.ico-pdf .inn-txt::after {
    width: 15px;
  }
  .c-btn .inn-txt {
    padding-right: 20px;
  }
  .c-section {
    padding-block: 40px;
  }
  .c-top-txt .top-txt-box.ico-point::before {
    background: url("../img/home/ico-point.svg") no-repeat center 13px/51px auto;
  }
  .c-top-txt .top-txt-box.ico-shikumi::before {
    background: url("../img/home/ico-shikumi.svg") no-repeat center 15px/59px auto;
  }
  .c-top-txt .top-txt-box {
    padding-top: 49px;
    margin-bottom: 32px;
    -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.25));
  }
  .c-top-txt .top-txt-box::before, .c-top-txt .top-txt-box::after {
    width: 90px;
    height: 90px;
  }
  .c-top-txt .top-txt-box::before {
    background: url("../img/home/ico-miryoku.svg") no-repeat center -10px/36px 102px;
  }
  .c-top-txt .top-txt-box .txt {
    font-size: 15px;
    line-height: 1.3;
    padding-block: 24px 20px;
    padding-inline: 5px;
  }
  .aco-wrap + .aco-wrap {
    margin-top: 20px;
  }
  .aco-wrap {
    padding-bottom: 20px;
  }
  .aco-wrap .aco-ttl {
    font-size: 16px;
    padding: 8px 17px;
    margin-bottom: 18px;
  }
  .aco-wrap > *:not(.aco-ttl) {
    padding-inline: 15px;
  }
  .aco-wrap .aco-txt {
    font-size: 14px;
  }
  .aco-wrap .aco-txt .small {
    font-size: 12px;
    line-height: 1.75;
  }
  .aco-wrap .aco-cont {
    margin-top: 12px;
  }
  .aco-wrap .aco-cont .c-bg-ttl {
    margin-top: 22px;
  }
  .aco-wrap .c-btn {
    margin-right: auto;
    margin-top: 20px;
    max-width: 138px;
    font-size: 12px;
    padding-inline: 7px;
    padding-block: 5px;
  }
  .aco-wrap.is-active .c-btn {
    margin-top: 20px;
  }
  .c-tbl-wrap {
    overflow-x: auto;
    padding-bottom: 9px;
  }
  .c-tbl-wrap > * {
    min-width: 700px;
  }
  .js--scroll-item.fade-in.no-translate-sp {
    translate: 0 0;
  }
  .js--scroll-item.fade-in.to-top-sp {
    translate: 0 20px;
  }
  .js--scroll-item.fade-in.to-bottom-sp {
    translate: 0 -20px;
  }
  .js--scroll-item.fade-in.to-left-sp {
    translate: 20px 0;
  }
  .js--scroll-item.fade-in.to-right-sp {
    translate: -20px 0;
  }
  .home .about-section {
    padding-top: 35px;
  }
  .home .about-section .top-ttl {
    font-size: 16px;
  }
  .home .about-section .top-ttl:last-child {
    margin-top: 19px;
  }
  .home .about-section .contents-wrap {
    padding-top: clamp(130px, 38.4vw, 144px);
    padding-bottom: clamp(16px, 5.0666666667vw, 19px);
  }
  .home .about-section .contents-wrap::before, .home .about-section .contents-wrap::after {
    -webkit-mask-size: auto 100%;
            mask-size: auto 100%;
    width: 100%;
    height: clamp(90px, 26.6666666667vw, 100px);
  }
  .home .about-section .contents-wrap::before {
    bottom: 18px;
    right: 0px;
    -webkit-mask-position: calc(100% - min(10.6666666667vw, 80px)) center;
            mask-position: calc(100% - min(10.6666666667vw, 80px)) center;
  }
  .home .about-section .contents-wrap::after {
    height: clamp(90px, 25.6vw, 96px);
    -webkit-mask-position: min(40vw, 150px) center;
            mask-position: min(40vw, 150px) center;
  }
  .home .about-section .contents-wrap .ttl-area {
    margin-bottom: 0;
  }
  .home .about-section .contents-wrap .ttl-area .ttl {
    font-size: clamp(14px, 4.2666666667vw, 16px);
    padding-block: 9px 18px;
    padding-left: clamp(50px, 17.0666666667vw, 64px);
  }
  .home .about-section .people {
    max-width: 500px;
  }
  .home .about-section .person.p-01 {
    width: clamp(80px, 25.6vw, 96px);
    bottom: 12px;
    left: 0px;
  }
  .home .about-section .person.p-02 {
    width: clamp(100px, 30.4vw, 114px);
    bottom: clamp(100px, 30.6666666667vw, 115px);
    left: auto;
    right: calc(37% + clamp(0px, 6.6666666667vw, 50px));
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .home .about-section .person.p-03 {
    width: clamp(65px, 19.2vw, 72px);
    bottom: clamp(100px, 29.3333333333vw, 110px);
    left: auto;
    right: calc(40% - clamp(20px, 8vw, 60px));
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .home .about-section .person.p-04 {
    width: clamp(120px, 35.4666666667vw, 133px);
    bottom: clamp(80px, 25.3333333333vw, 95px);
    left: auto;
    right: 3px;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .home .anchor-section {
    padding-top: 77px;
    margin-top: -44px;
    padding-bottom: 135px;
  }
  .home .anchor-section .inner-block {
    padding-inline: clamp(20px, 8vw, 30px);
  }
  .home .anchor-section::before {
    width: 320px;
    left: -40px;
    bottom: 16px;
  }
  .home .anchor-section .anchor-list-area {
    max-width: 400px;
    margin-inline: auto;
  }
  .home .anchor-section .person {
    position: absolute;
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .home .anchor-section .person.p-05 {
    z-index: 3;
    top: -78px;
    width: 75px;
    right: -2px;
  }
  .home .anchor-section .person.p-05-arm {
    z-index: 6;
    top: -30px;
    width: 76px;
    right: 4px;
  }
  .home .anchor-section .anchor-list {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    max-width: 400px;
    margin-inline: auto;
  }
  .home .anchor-section .anchor-list > li {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  }
  .home .anchor-section .anchor-list > li .contents-wrap {
    padding-block: 15px 15px;
    padding-inline: clamp(10px, 5.3333333333vw, 20px);
    display: grid;
    grid-template-areas: "icon ttl" "icon desc";
    grid-template-columns: min(25%, clamp(50px, 18.1333333333vw, 68px)) 1fr;
    grid-template-rows: 1fr auto;
    gap: 5px 10px;
  }
  .home .anchor-section .anchor-list > li .contents-wrap .icon-area {
    height: 67px;
  }
  .home .anchor-section .anchor-list > li .contents-wrap .ttl {
    font-size: 18px;
    line-height: 1;
  }
  .home .anchor-section .anchor-list > li .contents-wrap .desc {
    font-size: clamp(10px, 3.4666666667vw, 13px);
    line-height: 1.5;
  }
  .home .graph-section {
    padding-block: 23px 40px;
  }
  .home .graph-section::after {
    height: clamp(30px, 14.6666666667vw, 140px);
    bottom: calc(100% - 1px);
  }
  .home .graph-section .c-ttl {
    margin-bottom: 30px;
  }
  .home .graph-section .inner-block {
    padding-inline: 33px;
  }
  .home .graph-section .contents-wrap {
    grid-template-columns: 100%;
    max-width: 500px;
    margin-inline: auto;
    gap: 32px;
    padding-inline: 5px;
  }
  .home .miryoku-section {
    padding-top: 50px;
    padding-bottom: 139px;
  }
  .home .miryoku-section::before {
    width: clamp(300px, 95.2vw, 420px);
    bottom: -21px;
    left: -61px;
  }
  .home .miryoku-section .inner-block {
    padding-inline: 30px;
  }
  .home .miryoku-section .bird01 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: clamp(50px, 18.4vw, 69px);
    top: -25px;
    left: 7px;
  }
  .home .miryoku-section .c-top-txt::before {
    width: 149px;
    top: -23px;
    right: -30px;
  }
  .home .miryoku-section .contents-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .miryoku-section .sp-leaf-container {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
    width: calc(100% + 30px);
    margin-inline: -15px;
  }
  .home .miryoku-section .sp-leaf-wrap {
    position: relative;
    margin-inline: auto;
    max-width: 400px;
    width: 100%;
    padding-inline: clamp(20px, 8.8vw, 40px);
  }
  .home .miryoku-section .sp-leaf-wrap::before, .home .miryoku-section .sp-leaf-wrap::after {
    position: absolute;
    content: "";
    background: url("../img/home/deco-leaf.png.webp") no-repeat center/contain;
    width: clamp(25px, 15.2vw, 57px);
    height: auto;
    aspect-ratio: 129/443;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .home .miryoku-section .sp-leaf-wrap::before {
    left: 0;
  }
  .home .miryoku-section .sp-leaf-wrap::after {
    scale: -1 1;
    right: 0;
  }
  .home .miryoku-section .c-border-ttl {
    max-width: clamp(190px, 60vw, 225px);
    padding-inline: 0;
  }
  .home .miryoku-section .top-rank-txt-area {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "txt txt" "img1 img2";
    gap: 4px 36px;
  }
  .home .miryoku-section .top-rank-txt-area > img {
    max-height: clamp(60px, 21.3333333333vw, 80px);
  }
  .home .miryoku-section .top-rank-txt-area > img:nth-child(1) {
    justify-self: end;
  }
  .home .miryoku-section .top-rank-txt-area .rank-txt {
    font-size: clamp(18px, 7.4666666667vw, 28px);
  }
  .home .miryoku-section .top-rank-txt-area .rank-txt .big {
    font-size: clamp(28px, 10.6666666667vw, 40px);
  }
  .home .miryoku-section .desc {
    font-size: 14px;
    margin-block: 20px 40px;
  }
  .home .miryoku-section .rank-area {
    grid-template-columns: 100%;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
    gap: 10px;
    margin-bottom: 10px;
  }
  .home .miryoku-section .rank-area .each .rank {
    max-width: 120px;
    font-size: 14px;
  }
  .home .miryoku-section .rank-area .each .txt-wrap {
    padding-block: 28px 12px;
  }
  .home .miryoku-section .rank-area .each .txt-wrap .rank-ttl {
    font-size: 14px;
    line-height: 1.5;
  }
  .home .miryoku-section .rank-area .each .txt-wrap .ratio {
    max-width: 204px;
    margin-top: 7px;
  }
  .home .miryoku-section .rank-area .each .txt-wrap .ratio .ratio-ttl,
  .home .miryoku-section .rank-area .each .txt-wrap .ratio .ratio-txt {
    padding: 4px 7px;
  }
  .home .miryoku-section .rank-area .each .txt-wrap .ratio .ratio-ttl {
    font-size: 12px;
  }
  .home .miryoku-section .rank-area .each .txt-wrap .ratio .ratio-txt {
    font-size: 14px;
  }
  .home .miryoku-section .ratio-box {
    padding: 10px 12px;
    margin-top: 20px;
    margin-bottom: 9px;
  }
  .home .miryoku-section .ratio-box .ttl {
    margin-bottom: 6px;
    font-size: 14px;
  }
  .home .miryoku-section .btn-wrap {
    margin-top: 20px;
  }
  .home .miryoku-section .btn-wrap .c-btn {
    max-width: 200px;
  }
  .home .miryoku-section .person-img {
    text-align: center;
    padding-left: 24px;
  }
  .home .miryoku-section .person-img img {
    width: 182px;
  }
  .home .point-section {
    padding-top: 78px;
  }
  .home .point-section .bird-twig {
    top: -34px;
    right: -25px;
    width: 192px;
    aspect-ratio: 349/202;
  }
  .home .point-section .bird03 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: clamp(80px, 25.3333333333vw, 95px);
    top: 20px;
    left: auto;
    right: calc(100% - clamp(70px, 25.3333333333vw, 95px));
  }
  .home .point-section {
    background-size: 100% 342px;
    background-position: center calc(100% - 10px);
  }
  .home .point-section .top-txt-box {
    margin-inline: 14px;
  }
  .home .point-section .aco-list .aco-wrap:nth-child(1) .c-desc-txt {
    margin-bottom: 12px;
  }
  .home .point-section .aco-list .aco-wrap:nth-child(2) .c-bg-ttl {
    max-width: 282px;
  }
  .home .point-section .aco-list .aco-wrap:nth-child(2) .img-area {
    max-width: 400px;
    margin-inline: auto;
  }
  .home .point-section .aco-list .aco-wrap:nth-child(3) .aco-cont {
    margin-top: 28px;
  }
  .home .bg-blue-wrap::after {
    width: 145px;
    height: 55px;
  }
  .home .bg-blue-wrap .twig02 {
    top: -41px;
    left: -33px;
  }
  .home .bg-blue-wrap .twig02 img {
    width: clamp(150px, 48.8vw, 183px);
  }
  .home .shikumi-section {
    padding-top: 30px;
    margin-bottom: 48px;
  }
  .home .shikumi-section .contents-wrap {
    padding-block: 50px 120px;
  }
  .home .shikumi-section .top-area {
    padding-inline: 15px;
  }
  .home .shikumi-section .c-top-txt::before {
    width: 83px;
    bottom: calc(100% - 49px - 7px);
    right: 3px;
  }
  .home .shikumi-section .shikumi-area {
    padding-block: 32px;
    padding-inline: 15px;
    margin-inline: -15px;
  }
  .home .shikumi-section .shikumi-area::after {
    width: 95px;
    height: 47px;
    bottom: auto;
    top: calc(100% - 12px);
  }
  .home .shikumi-section .shikumi-area .top-txt {
    font-size: 13px;
  }
  .home .shikumi-section .shikumi-area .what-box,
  .home .shikumi-section .shikumi-area .img-box,
  .home .shikumi-section .shikumi-area .figure-area {
    max-width: 500px;
  }
  .home .shikumi-section .shikumi-area .what-box {
    grid-template-columns: 100%;
    margin-block: 12px 22px;
  }
  .home .shikumi-section .shikumi-area .what-box .what-ttl {
    font-size: 12px;
    line-height: 1.25;
    padding: 8px 13px;
  }
  .home .shikumi-section .shikumi-area .what-box .txt-box {
    padding: 6px 8px;
  }
  .home .shikumi-section .shikumi-area .img-box {
    grid-template-columns: 100%;
    margin-top: 17px;
    max-width: 500px;
    margin-inline: auto;
  }
  .home .shikumi-section .shikumi-area .deco-txt-area .person-img {
    text-align: center;
    margin-top: 18px;
    margin-bottom: 7px;
    padding-right: 27px;
  }
  .home .shikumi-section .shikumi-area .deco-txt-area .person-img img {
    width: 201px;
  }
  .home .shikumi-section .person-img02 {
    text-align: center;
    margin-top: 34px;
    margin-bottom: 6px;
    padding-right: 17px;
  }
  .home .shikumi-section .person-img02 img {
    width: 254px;
  }
  .home .shikumi-section .bottom-area {
    padding-inline: 16px;
  }
  .home .shikumi-section .bottom-area .big-txt {
    font-size: 19px;
    margin-bottom: 32px;
  }
  .home .shikumi-section .bottom-area .c-desc-txt.has-mt {
    margin-top: 24px;
    margin-bottom: 32px;
  }
  .home .shikumi-section .bottom-area .deco-txt-area {
    margin-top: 27px;
  }
  .home .shikumi-section .bottom-area .deco-txt-area .bottom-txt {
    font-size: 14px;
  }
  .home .shikumi-section .bottom-area .c-bg-ttl {
    width: 240px;
  }
  .home .shikumi-section .person-img03 {
    bottom: -131px;
    right: 12px;
  }
  .home .shikumi-section .person-img03 img {
    width: clamp(120px, 35.2vw, 132px);
  }
  .home .support-section {
    padding-bottom: 50px;
  }
  .home .support-section .bird05 {
    top: -64px;
    left: -18px;
  }
  .home .support-section .bird05 img {
    width: clamp(140px, 45.3333333333vw, 170px);
  }
  .home .support-section .bird04 {
    width: clamp(200px, 65.3333333333vw, 245px);
    right: -73px;
  }
  .home .support-section .contents-wrap .contents {
    padding-inline: 15px;
    padding-block: 50px 31px;
  }
  .home .support-section .top-txt {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 24px;
    padding-inline: 7px;
  }
  .home .support-section .c-tbl-wrap {
    margin-bottom: 14px;
    padding-inline: 6px;
  }
  .home .support-section .c-tbl-wrap .top-graph-area {
    min-width: 663px;
  }
  .home .support-section .graph-txt {
    margin-block: 24px;
    font-size: 14px;
  }
  .home .support-section .graph-wrap {
    grid-template-columns: 100%;
    max-width: 500px;
    margin-inline: auto;
    padding-inline: 6px;
    gap: 40px;
    margin-bottom: 18px;
  }
  .home .support-section .graph-wrap .c-bg-ttl {
    font-size: 14px;
    line-height: 1.5;
    max-width: 235px;
    margin-bottom: 20px;
    padding-block: 6px;
  }
  .home .support-section .explain-txt {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .home .support-section .return-ttl-area {
    padding-block: 20px 11px;
    padding-inline: 30px 0;
  }
  .home .support-section .return-ttl-area .return-ttl {
    font-size: 14px;
  }
  .home .support-section .return-ttl-area .bird06 {
    bottom: -16px;
    left: -7px;
  }
  .home .support-section .return-ttl-area .bird06 img {
    width: clamp(36px, 11.7333333333vw, 44px);
  }
  .home .support-section .compare-wrap {
    gap: 10px;
  }
  .home .support-section .compare-wrap .ttl {
    font-size: 14px;
    padding: 8px;
  }
  .home .support-section .compare-wrap .num {
    padding-block: 20px 29px;
    font-size: 28px;
  }
  .home .support-section .compare-wrap .num .small {
    font-size: 20px;
  }
  .home .support-section .note-bottom {
    margin-top: 24px;
  }
  .home .support-section .person-img04 {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 22px;
    padding-left: 13px;
  }
  .home .support-section .person-img04 img {
    width: 262px;
  }
  .home .matome-section {
    background-size: max(1440px, 100%) auto, 45px;
    padding-block: 116px 180px;
    margin-top: calc(0px - var(--header-height) / 2);
  }
  .home .matome-section .miryoku-list {
    padding-inline: clamp(20px, 18.6666666667vw, 155px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .home .matome-section .miryoku-list > li {
    width: clamp(200px, 66.6666666667vw, 330px);
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .home .matome-section .miryoku-list > li:not(:last-child) {
    padding-right: 10px;
  }
  .home .matome-section .ttl {
    font-size: clamp(16px, 5.3333333333vw, 20px);
  }
  .home .matome-section .ttl .big {
    font-size: clamp(30px, 9.3333333333vw, 35px);
  }
  .home .matome-section .person-img1 {
    bottom: -36px;
    left: clamp(16px, 8vw, 30px);
  }
  .home .matome-section .person-img1 img {
    width: clamp(150px, 50.6666666667vw, 190px);
  }
  .home .matome-section .person-img2 {
    bottom: -36px;
    right: clamp(20px, 6.9333333333vw, 26px);
  }
  .home .matome-section .person-img2 img {
    width: clamp(80px, 26.6666666667vw, 100px);
  }
  .home .matome-section::before, .home .matome-section::after {
    background-image: url("../img/home/stars-yellow_sp.png.webp");
    background-size: clamp(317px, 84.5333333333vw, 635px) auto;
    background-position: top center;
    height: calc(var(--vh, 1vh) * 100 - (var(--header-height)));
    max-width: 635px;
    top: clamp(60px, 10.8vw, 81px);
  }
  .home .matome-section::after {
    background-image: url("../img/home/stars-blue_sp.png.webp");
  }
  .home .whitepaper-section {
    padding-top: 54px;
  }
  .home .whitepaper-section .inner-block {
    padding-inline: 31px;
  }
  .home .whitepaper-section .c-ttl {
    margin-bottom: 19px;
  }
  .home .whitepaper-section .whitepaper-list {
    margin-bottom: 24px;
  }
  .home .whitepaper-section .whitepaper-list > li + li {
    margin-top: 11px;
  }
  .home .whitepaper-section .whitepaper-list > li a {
    border-left-width: 6px;
    padding: 10px 10px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .home .whitepaper-section .whitepaper-list > li a .ttl {
    width: 100%;
    font-size: 14px;
  }
  .home .whitepaper-section .whitepaper-list > li a .date {
    font-size: 14px;
    line-height: 1;
    padding-inline: 3px;
  }
  .home .whitepaper-section .whitepaper-list > li a .icon {
    width: 15px;
  }
  .home .whitepaper-section .whitepaper-btn-wrap .c-btn {
    width: 100%;
    max-width: 255px;
    padding-block: 8px;
  }
  .home .fund-section {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #FDF6E3), color-stop(50%, #E1EEF9));
    background: linear-gradient(180deg, #FDF6E3 50%, #E1EEF9 50%);
    padding-block: 32px;
    margin-top: 40px;
  }
  .home .fund-section .fund-list {
    grid-template-columns: 100%;
    gap: 64px;
    max-width: 500px;
    margin-inline: auto;
  }
  .home .fund-section .fund-list .fund-link-list {
    margin-block: 9px 20px;
    gap: 10px;
  }
  .home .fund-section .fund-list .fund-link-list .c-btn {
    font-size: clamp(12px, 3.7333333333vw, 14px);
  }
  .home .fund-section .btn-wrap .c-btn {
    padding-block: 7px;
  }
  .home .notes-section {
    padding-bottom: 60px;
  }
  .home .notes-section .ttl {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .home .notes-section .list + .ttl {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1160px;
  }
  .inner-block.wi-980 {
    max-width: 1060px;
  }
  .inner-block.wi-870 {
    max-width: 950px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header .nav-btn {
    display: none;
  }
  .aco-wrap .c-btn {
    padding-right: 10px;
  }
  .js--scroll-item.fade-in.no-translate-pc {
    translate: 0 0;
  }
  .js--scroll-item.fade-in.to-top-pc {
    translate: 0 20px;
  }
  .js--scroll-item.fade-in.to-bottom-pc {
    translate: 0 -20px;
  }
  .js--scroll-item.fade-in.to-left-pc {
    translate: 20px 0;
  }
  .js--scroll-item.fade-in.to-right-pc {
    translate: -20px 0;
  }
  .home .mv-section .img img {
    height: 57.6388888889vw;
  }
  .home .anchor-section::after {
    position: absolute;
    content: "";
    z-index: 5;
    background: url("../img/home/deco-grass02.png.webp") no-repeat center/contain;
    width: min(29.6527777778vw, 427px);
    height: auto;
    -webkit-transform: rotate(174.716deg);
            transform: rotate(174.716deg);
    aspect-ratio: 427/151;
    bottom: clamp(120px, 10.4166666667vw, 230px);
    right: min(1.25vw, 18px);
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .home .anchor-section .anchor-list > li {
    width: calc((100% - clamp(8px, 2.0833333333vw, 30px) * 2) / 3);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .home .anchor-section .anchor-list > li:nth-child(2) {
    margin-top: 47px;
  }
  .home .anchor-section .anchor-list > li .contents-wrap .ttl {
    margin-block: 14px;
  }
  .home .graph-section .c-ttl {
    margin-bottom: 56px;
  }
  .home .miryoku-section .c-ttl {
    gap: 30px;
    font-size: 42px;
  }
  .home .miryoku-section .contents-wrap {
    padding-inline: clamp(40px, 10.625vw, 153px);
  }
  .home .miryoku-section .contents-wrap::before, .home .miryoku-section .contents-wrap::after {
    position: absolute;
    content: "";
    background: url("../img/home/deco-leaf.png.webp") no-repeat center/contain;
    width: clamp(40px, 8.9583333333vw, 129px);
    height: auto;
    aspect-ratio: 129/443;
    top: 0;
  }
  .home .miryoku-section .contents-wrap::before {
    left: 0;
  }
  .home .miryoku-section .contents-wrap::after {
    scale: -1 1;
    right: 0;
  }
  .home .miryoku-section .sp-leaf-container {
    padding-top: 10px;
  }
  .home .miryoku-section .btn-wrap .c-btn {
    padding-inline: 30px;
  }
  .home .miryoku-section .person-img {
    position: absolute;
    right: clamp(20px, 6.4583333333vw, 93px);
    bottom: clamp(0px, 2.5694444444vw, 37px);
  }
  .home .point-section {
    padding-top: 75px;
  }
  .home .point-section .c-ttl {
    gap: 30px;
  }
  .home .point-section .deco-wrap {
    margin-top: calc(0px - min(13.6111111111vw, 196px));
  }
  .home .shikumi-section .c-ttl {
    gap: 30px;
  }
  .home .shikumi-section .top-txt-box {
    margin-bottom: 53px;
  }
  .home .shikumi-section .shikumi-area .what-box .what-ttl {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home .shikumi-section .shikumi-area .figure-area {
    margin-bottom: 82px;
  }
  .home .shikumi-section .shikumi-area .deco-txt-area .person-img {
    position: absolute;
    right: max(0px - 6.9444444444vw, -100px);
    bottom: calc(100% - min(6.9444444444vw, 100px));
  }
  .home .shikumi-section .shikumi-area .deco-txt-area .top-txt {
    padding-right: 60px;
  }
  .home .shikumi-section .person-img02 {
    z-index: 2;
    margin-top: -24px;
    margin-left: -23px;
    margin-bottom: 20px;
  }
  .home .shikumi-section .bottom-area .deco-txt-area .bottom-txt {
    padding-right: 130px;
  }
  .home .shikumi-section .bottom-area .c-bg-ttl {
    width: 320px;
    padding-block: 8px;
  }
  .home .support-section .c-ttl {
    gap: 30px;
  }
  .home .support-section .person-img04 {
    z-index: 2;
    text-align: right;
    margin-top: max(0px - 3.3333333333vw, -48px);
    margin-right: max(0px - 11.0416666667vw, -159px);
    margin-bottom: -2px;
  }
  .home .matome-section .miryoku-list-area {
    padding-inline: 40px;
  }
  .home .matome-section .miryoku-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    max-width: 800px;
    margin-inline: auto;
  }
  .home .matome-section .miryoku-list > li:nth-child(1) {
    text-align: center;
    margin-bottom: -30px;
    width: 100%;
  }
  .home .matome-section .miryoku-list > li:nth-child(1) img {
    width: calc((100% - 20px) / 2);
  }
  .home .matome-section .miryoku-list > li:nth-child(2), .home .matome-section .miryoku-list > li:nth-child(3) {
    width: calc((100% - 20px) / 2);
    max-width: 350px;
    margin-top: -10px;
  }
  .home .matome-section .miryoku-list > li img {
    max-width: 350px;
    width: 100%;
  }
  .home .fund-section .fund-list .fund-link-list .c-btn {
    font-size: clamp(10px, 1.7777777778vw, 16px);
  }
  .home .fund-section .btn-wrap .c-btn {
    width: 100%;
    max-width: 327px;
    padding-block: 10px;
  }
  .home .notes-section .c-ico-txt {
    gap: 8px;
  }
}
@media (any-hover: hover) {
  .c-header .nav-area .nav-list > li a:hover {
    color: #006F9E;
  }
  .c-btn:hover {
    background: #FFF;
    color: #54A11A;
  }
  .c-btn.bg-t-blue:hover {
    background: #FFF;
    color: #2897C6;
  }
  .c-btn.bg-blue:hover {
    background: #FFF;
    color: #000;
  }
  .c-btn.bg-yellow:hover {
    background: #FFF;
    color: #000;
  }
  .home .anchor-section .anchor-list > li .contents-wrap:hover {
    background: #f4f4f4;
  }
  .home .whitepaper-section .whitepaper-list > li a:hover {
    background: #f4f4f4;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1440px) {
  .home .mv-section .img img {
    height: 41.9191919192vw;
  }
}
@media only screen and (max-width: 767px) and (max-width: 620px) {
  .home .about-section .contents-wrap::before {
    -webkit-mask-position: calc(100% - min(1.3333333333vw, 10px)) center;
            mask-position: calc(100% - min(1.3333333333vw, 10px)) center;
  }
  .home .about-section .contents-wrap::after {
    -webkit-mask-position: min(27.4666666667vw, 103px) center;
            mask-position: min(27.4666666667vw, 103px) center;
  }
}
@media only screen and (max-width: 1439px) {
  .home .miryoku-section .bird01 {
    left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .home .miryoku-section .person-img {
    bottom: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .home .point-section .bird03 {
    top: 70px;
    left: 20px;
  }
  .home .point-section .deco-wrap {
    margin-top: 20px;
  }
  .home .support-section .person-img04 {
    margin-right: max(0px - 8.3333333333vw, -100px);
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .home .whitepaper-section .whitepaper-list > li a {
    gap: 8px 10px;
  }
}