@charset "UTF-8";
@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fuwafuwa-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes fuwafuwa-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background: #FBF9F3;
  color: #333;
  font-family: "Zen Maru Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
@media (max-width: 896px) {
  body {
    font-size: 1.4rem;
  }
}
@media (max-width: 639px) {
  body {
    font-size: 1.2rem;
  }
}

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

a {
  color: #70C908;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.subpage-wrapper {
  -webkit-animation: fadein 2s ease forwards;
          animation: fadein 2s ease forwards;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  content: "必須";
  color: #fff;
  background: #70C908 !important;
}

.form-contents form dl dt:not(.pattern-exclusion) span {
  color: #333 !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1320px) {
  .container {
    max-width: 95%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.container-wide {
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 1320px) {
  .container-wide {
    max-width: 95%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.container-full {
  max-width: 100%;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .container-narrow {
    max-width: 95%;
  }
}

.section {
  padding: 120px 0;
}
@media (max-width: 896px) {
  .section {
    padding: 60px 0;
  }
}

.section--pt0 {
  padding-top: 0;
}

.section--pb0 {
  padding-bottom: 0;
}

.section--half {
  padding: 60px 0;
}
@media (max-width: 896px) {
  .section--half {
    padding: 30px 0;
  }
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 896px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.column2__child {
  width: 48%;
}
@media (max-width: 896px) {
  .column2__child {
    width: 100%;
  }
  .column2__child:not(:last-child) {
    margin-bottom: 30px;
  }
}
.column2__child--narrow {
  width: 40%;
}
@media (max-width: 896px) {
  .column2__child--narrow {
    width: 100%;
  }
}
.column2__child--wide {
  width: 56%;
}
@media (max-width: 896px) {
  .column2__child--wide {
    width: 100%;
  }
}
.column2__child--narrow2 {
  width: 30%;
}
@media (max-width: 896px) {
  .column2__child--narrow2 {
    width: 100%;
  }
}
.column2__child--wide2 {
  width: 67%;
}
@media (max-width: 896px) {
  .column2__child--wide2 {
    width: 100%;
  }
}
.column2--5-5 > .column2__child {
  width: 48%;
}
.column2--6-4 > .column2__child:first-child {
  width: 56%;
}
@media (max-width: 896px) {
  .column2--6-4 > .column2__child:first-child {
    width: 100%;
  }
}
.column2--6-4 > .column2__child:last-child {
  width: 40%;
}
@media (max-width: 896px) {
  .column2--6-4 > .column2__child:last-child {
    width: 100%;
  }
}
.column2--7-3 > .column2__child:first-child {
  width: 67%;
}
@media (max-width: 896px) {
  .column2--7-3 > .column2__child:first-child {
    width: 100%;
  }
}
.column2--7-3 > .column2__child:last-child {
  width: 30%;
}
@media (max-width: 896px) {
  .column2--7-3 > .column2__child:last-child {
    width: 100%;
  }
}
.column2--4-6 > .column2__child:first-child {
  width: 40%;
}
@media (max-width: 896px) {
  .column2--4-6 > .column2__child:first-child {
    width: 100%;
  }
}
.column2--4-6 > .column2__child:last-child {
  width: 56%;
}
@media (max-width: 896px) {
  .column2--4-6 > .column2__child:last-child {
    width: 100%;
  }
}
.column2--3-7 > .column2__child:first-child {
  width: 30%;
}
@media (max-width: 896px) {
  .column2--3-7 > .column2__child:first-child {
    width: 100%;
  }
}
.column2--3-7 > .column2__child:last-child {
  width: 67%;
}
@media (max-width: 896px) {
  .column2--3-7 > .column2__child:last-child {
    width: 100%;
  }
}
@media (max-width: 896px) {
  .column2--3-7 > .column2__child:not(:last-child) {
    margin-bottom: 30px;
  }
}
.column2--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 896px) {
  .column2--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.column2--top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column2--overlap .column2__child--narrow {
  margin-left: -80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 896px) {
  .column2--overlap .column2__child--narrow {
    margin-left: 0;
    margin-top: -30px;
  }
}
.column2--overlap.column2--reverse .column2__child--narrow {
  margin-right: -80px;
  margin-left: 0;
}
@media (max-width: 896px) {
  .column2--overlap.column2--reverse .column2__child--narrow {
    margin-right: 0;
    margin-top: -30px;
  }
}

.main-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 896px) {
  .main-side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main-side__main {
  width: 76%;
}
@media (max-width: 896px) {
  .main-side__main {
    width: 100%;
  }
}
.main-side__side {
  width: 21%;
  position: sticky;
  top: 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 896px) {
  .main-side__side {
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 639px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 896px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 896px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.offset-down-sm {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
@media (max-width: 896px) {
  .offset-down-sm {
    -webkit-transform: none;
            transform: none;
  }
}

.offset-down-md {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}
@media (max-width: 896px) {
  .offset-down-md {
    -webkit-transform: none;
            transform: none;
  }
}

.offset-down-lg {
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}
@media (max-width: 896px) {
  .offset-down-lg {
    -webkit-transform: none;
            transform: none;
  }
}

.offset-up-sm {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}
@media (max-width: 896px) {
  .offset-up-sm {
    -webkit-transform: none;
            transform: none;
  }
}

.offset-up-md {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}
@media (max-width: 896px) {
  .offset-up-md {
    -webkit-transform: none;
            transform: none;
  }
}

.offset-up-lg {
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
}
@media (max-width: 896px) {
  .offset-up-lg {
    -webkit-transform: none;
            transform: none;
  }
}

.heading__en {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.heading__ja {
  display: block;
  font-weight: bold;
  line-height: 1.4;
}

.heading__sub {
  display: block;
  font-size: 0.9em;
  color: #70C908;
  font-family: "Quicksand", sans-serif;
}

.heading__icon {
  display: inline-block;
  margin-right: 0.4em;
  color: #8AD612;
}

.heading__img {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 8px;
}

.heading--left .heading__img {
  margin-left: 0;
}

.heading__number {
  font-family: "Quicksand", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #70C908;
  line-height: 1;
}
@media (max-width: 639px) {
  .heading__number {
    font-size: 3rem;
  }
}

.heading__line {
  display: block;
  width: 20px;
  height: 1px;
  background: #ddd;
  margin: 0 15px;
  -ms-flex-item-align: center;
      align-self: center;
}
@media (max-width: 639px) {
  .heading__line {
    width: 15px;
  }
}

.heading__badge {
  display: inline-block;
  border: 1px solid #70C908;
  border-radius: 5px;
  padding: 2px 12px;
  font-size: 0.85em;
  font-family: "Quicksand", sans-serif;
  color: #70C908;
}

.heading {
  text-align: center;
}
.heading--left {
  text-align: left;
}
.heading--white .heading__en,
.heading--white .heading__ja {
  color: #fff;
}

:where(.heading) .heading__en {
  font-size: 18px;
  color: #70c908;
}
@media (max-width: 639px) {
  :where(.heading) .heading__en {
    font-size: 14px;
  }
}

:where(.heading) .heading__ja {
  font-size: 30px;
  color: #55412a;
  margin-top: 8px;
}
@media (max-width: 639px) {
  :where(.heading) .heading__ja {
    font-size: 1.4rem;
  }
}

:where(.heading-hero) .heading__en {
  font-size: 5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 639px) {
  :where(.heading-hero) .heading__en {
    font-size: 3.8rem;
  }
}

:where(.heading-hero) .heading__ja {
  font-size: 2rem;
  color: #fff;
  margin-top: 8px;
}
@media (max-width: 639px) {
  :where(.heading-hero) .heading__ja {
    font-size: 1.4rem;
  }
}

.heading-bar {
  border-left: 6px solid #70C908;
  padding-left: 0.8em;
}
.heading-bar--two-tone {
  border-left-color: #70C908;
  position: relative;
}
.heading-bar--two-tone::before {
  content: "";
  display: block;
  position: absolute;
  left: -6px;
  bottom: 0;
  width: 6px;
  height: 50%;
  background: #00F82D;
}

:where(.heading-bar) .heading__en {
  font-size: 2rem;
  color: #70C908;
}
@media (max-width: 639px) {
  :where(.heading-bar) .heading__en {
    font-size: 1.6rem;
  }
}

:where(.heading-bar) .heading__ja {
  font-size: 1.6rem;
  margin-top: 4px;
}
@media (max-width: 639px) {
  :where(.heading-bar) .heading__ja {
    font-size: 1.3rem;
  }
}

.heading-accent {
  font-size: 1.8rem;
  font-weight: 800;
  color: #70C908;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  position: relative;
}
@media (max-width: 639px) {
  .heading-accent {
    font-size: 1.4rem;
  }
}
.heading-accent::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
  background: #70C908;
}

.heading-underline {
  border-bottom: 1px solid #333;
  padding: 15px;
}
.heading-underline .heading__en {
  display: block;
  font-size: 1.1em;
  color: #70C908;
}
@media (max-width: 639px) {
  .heading-underline .heading__en {
    font-size: 1em;
  }
}
.heading-underline .heading__ja {
  font-size: 3rem;
  font-weight: 900;
}
@media (max-width: 639px) {
  .heading-underline .heading__ja {
    font-size: 1.6rem;
  }
}

.heading-line {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 20px;
  border-top: 2px solid #70C908;
  padding-top: 15px;
  position: relative;
}
@media (max-width: 639px) {
  .heading-line {
    font-size: 1.4rem;
  }
}
.heading-line::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: repeating-linear-gradient(-45deg, #70C908, #70C908 2px, transparent 2px, transparent 6px);
}

.heading-band {
  background: #70C908;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 639px) {
  .heading-band {
    font-size: 1.5rem;
  }
}
.heading-band--triangle {
  padding-right: 60px;
}
.heading-band--triangle::before {
  content: "";
  display: block;
  position: absolute;
  right: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(60deg);
          transform: translateY(-50%) rotate(60deg);
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
}
.heading-band--rounded {
  border-radius: 10px;
}

.heading-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media (max-width: 639px) {
  .heading-number .heading__number {
    font-size: 3rem;
  }
  .heading-number .heading__ja {
    font-size: 1.5rem;
  }
  .heading-number .heading__line {
    width: 15px;
  }
}
.heading-number .heading__ja {
  font-size: 2.8rem;
}
@media (max-width: 639px) {
  .heading-number .heading__ja {
    font-size: 1.5rem;
  }
}

.heading-icon {
  font-size: 2.2rem;
  font-weight: bold;
}
@media (max-width: 639px) {
  .heading-icon {
    font-size: 1.6rem;
  }
}
.heading-icon .heading__icon {
  color: #8AD612;
  font-size: 1.2em;
}
.heading-icon .heading__sub {
  font-size: 0.65em;
  margin-top: 4px;
}

.heading-big {
  text-align: center;
}
.heading-big--gradient .heading__en {
  background: -webkit-gradient(linear, left top, right top, from(#70C908), to(#00F82D));
  background: linear-gradient(90deg, #70C908, #00F82D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

:where(.heading-big) .heading__en {
  font-size: 6rem;
  color: #70C908;
  line-height: 1.1;
}
@media (max-width: 639px) {
  :where(.heading-big) .heading__en {
    font-size: 3rem;
  }
}

:where(.heading-big) .heading__ja {
  font-size: 2.2rem;
  margin-top: 10px;
}
@media (max-width: 639px) {
  :where(.heading-big) .heading__ja {
    font-size: 1.4rem;
  }
}

.heading-big--overlap {
  position: relative;
}
.heading-big--overlap .heading__en {
  margin-bottom: 0;
}
.heading-big--overlap .heading__ja {
  position: relative;
  z-index: 1;
}

.heading-flanked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.heading-flanked::before, .heading-flanked::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #ddd;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.heading-flanked--slant::before {
  width: 2px;
  height: 1.5em;
  background: #70C908;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.heading-flanked--slant::after {
  width: 2px;
  height: 1.5em;
  background: #70C908;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.heading-flanked--line::before, .heading-flanked--line::after {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #ddd;
}
.heading-flanked--dashed::before, .heading-flanked--dashed::after {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 0;
  border-bottom: 2px dashed rgba(221, 221, 221, 0.5);
  background: none;
}
.heading-flanked--star {
  position: relative;
}
.heading-flanked--star::before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #70C908;
  font-size: 0.8em;
  width: auto;
  height: auto;
  background: none;
}
.heading-flanked--star::after {
  content: none;
}

.heading-stroke .heading__en {
  font-size: 5.6em;
  -webkit-text-stroke: 1px #70C908;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 639px) {
  .heading-stroke .heading__en {
    font-size: 3em;
  }
}
.heading-stroke .heading__ja {
  font-size: 1.5em;
  padding-left: 1em;
}
@media (max-width: 639px) {
  .heading-stroke .heading__ja {
    font-size: 1.2em;
    padding-left: 0;
    display: block;
  }
}
.heading-stroke {
  border-bottom: 1px solid #333;
}

.heading-vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  left: 0;
  top: 0;
}
.heading-vertical .heading__ja {
  font-size: 2.4rem;
}
.heading-vertical .heading__en {
  font-size: 2rem;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 639px) {
  .heading-vertical {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    position: static;
  }
}

.heading-balloon {
  display: inline-block;
  background: #70C908;
  color: #fff;
  font-size: 1.3em;
  padding: 8px 20px;
  border: 2px solid #70C908;
  border-radius: 5px;
  position: relative;
}
.heading-balloon::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #70C908;
}

.heading-label {
  display: block;
}
.heading-label__num {
  display: block;
}
.heading-label__text {
  position: relative;
  display: inline-block;
  padding: 0 10px 16px;
  line-height: 1.3;
}
.heading-label__text::before, .heading-label__text::after {
  content: "";
  display: block;
  border-bottom: 3px solid #70C908;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.heading-label__text::before {
  left: -5px;
}
.heading-label__text::after {
  right: -5px;
}
.heading-label__arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #70C908;
  border-right: 3px solid #70C908;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

.heading-category {
  font-size: 1.8rem;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 639px) {
  .heading-category {
    font-size: 1.4rem;
  }
}
.heading-category::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0ca";
  color: #70C908;
  margin-right: 0.4em;
}

.heading-icon-bar {
  text-align: center;
  letter-spacing: 0.2rem;
}
.heading-icon-bar .heading__icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.heading-icon-bar .heading__en {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
  margin-top: 15px;
}
@media (max-width: 639px) {
  .heading-icon-bar .heading__en {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}
.heading-icon-bar .heading__ja {
  display: block;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 639px) {
  .heading-icon-bar .heading__ja {
    font-size: 2.4rem;
  }
}
.heading-icon-bar::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
  background: #70C908;
  border-radius: 2px;
  -webkit-animation: heading-bar-grow 0.8s ease forwards;
          animation: heading-bar-grow 0.8s ease forwards;
}
.heading-icon-bar--img-deco::after {
  height: 20px;
  border-radius: 0;
  -webkit-animation: none;
          animation: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.heading-icon-bar--dots::after {
  content: "●●●";
  background: none;
  width: auto;
  height: auto;
  font-size: 0.5rem;
  letter-spacing: 0.8em;
  color: #70C908;
}
.heading-icon-bar--gradient::after {
  background: -webkit-gradient(linear, left top, right top, from(#70C908), to(#8AD612));
  background: linear-gradient(90deg, #70C908, #8AD612);
  width: 60px;
}
.heading-icon-bar--wide::after {
  width: 80px;
}
.heading-icon-bar--no-bar::after {
  display: none;
}

@-webkit-keyframes heading-bar-grow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 40px;
    opacity: 1;
  }
}

@keyframes heading-bar-grow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 40px;
    opacity: 1;
  }
}
.heading-icon-bar--shape-dots::after {
  content: "";
  background: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #88C9A1;
  -webkit-box-shadow: 16px 0 0 #70C908, 32px 0 0 #F4B8C1;
          box-shadow: 16px 0 0 #70C908, 32px 0 0 #F4B8C1;
  -webkit-animation: none;
          animation: none;
  margin-right: -32px;
}

.heading-icon-bar--shape-wavy::after {
  content: "";
  background: none;
  border-bottom: 3px dotted #70C908;
  width: 60px;
  height: 0;
  -webkit-animation: none;
          animation: none;
  border-radius: 0;
}

.heading-icon-bar--shape-two-tone::after {
  content: "";
  width: 120px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #70C908), color-stop(50%, #333));
  background: linear-gradient(to right, #70C908 50%, #333 50%);
  -webkit-animation: none;
          animation: none;
  border-radius: 0;
}

.heading-icon-bar--shape-stripe::after {
  content: "";
  width: 80px;
  height: 8px;
  background: repeating-linear-gradient(-45deg, #8AD612, #8AD612 2px, transparent 2px, transparent 5px);
  opacity: 0.5;
  -webkit-animation: none;
          animation: none;
  border-radius: 4px;
}

.heading-icon-bar--shape-arch::after {
  content: "";
  background: none;
  width: 40px;
  height: 20px;
  border-bottom: 3px solid #70C908;
  border-radius: 0 0 50% 50%;
  -webkit-animation: none;
          animation: none;
}

.heading-icon-bar--shape-leaf::after {
  content: "";
  width: 30px;
  height: 12px;
  background: #88C9A1;
  border-radius: 0 50% 0 50%;
  opacity: 0.5;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  -webkit-animation: none;
          animation: none;
}

.heading-deco-shape {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
}
.heading-deco-shape--wavy::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 0;
  border-bottom: 3px dotted #70C908;
}
.heading-deco-shape--stripe::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 8px;
  background: repeating-linear-gradient(-45deg, #70C908, #70C908 2px, transparent 2px, transparent 5px);
  border-radius: 4px;
  opacity: 0.5;
}
.heading-deco-shape--two-tone::before {
  content: "";
  display: inline-block;
  width: 120px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #70C908), color-stop(50%, #333));
  background: linear-gradient(to right, #70C908 50%, #333 50%);
}
.heading-deco-shape--dots::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #88C9A1;
  -webkit-box-shadow: 16px 0 0 #70C908, 32px 0 0 #F4B8C1;
          box-shadow: 16px 0 0 #70C908, 32px 0 0 #F4B8C1;
  margin-right: 32px;
}
.heading-deco-shape--arch::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 20px;
  border-bottom: 3px solid #70C908;
  border-radius: 0 0 50% 50%;
}
.heading-deco-shape--leaf::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 12px;
  background: #88C9A1;
  border-radius: 0 50% 0 50%;
  opacity: 0.5;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.heading-deco-shape--leaf::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 10px;
  background: #70C908;
  border-radius: 50% 0 50% 0;
  opacity: 0.4;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  margin-left: 4px;
}
.heading-deco-shape--line::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #70C908;
  border-radius: 2px;
}

.btn__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.5em;
  font-size: 1.1em;
}

.btn__label {
  display: inline-block;
}

.btn__circle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #70C908;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn__arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn__indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  margin-left: auto;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 300px;
  width: 100%;
  padding: 12px 30px;
  border: 2px solid #70C908;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 639px) {
  .btn {
    max-width: 95%;
    font-size: 1.3rem;
  }
}
.btn--solid {
  background: #70C908;
  color: #fff;
  border-color: #70C908;
}
.btn--solid:hover {
  background: #00F82D;
  border-color: #00F82D;
  opacity: 1;
}
.btn--outline {
  background: transparent;
  color: #70C908;
}
.btn--outline:hover {
  background: #70C908;
  color: #fff;
  opacity: 1;
}
.btn--gradient {
  background: linear-gradient(135deg, #70C908, #00F82D);
  color: #fff;
  border: none;
}
.btn--gradient:hover {
  opacity: 0.8;
}
.btn--white {
  background: #fff;
  color: #70C908;
  border-color: #70C908;
}
.btn--white:hover {
  background: #70C908;
  color: #fff;
  opacity: 1;
}
.btn--accent {
  background: #8AD612;
  color: #fff;
  border-color: #8AD612;
}
.btn--accent:hover {
  opacity: 0.85;
}
.btn--dark {
  background: #333;
  color: #fff;
  border-color: #333;
}
.btn--dark:hover {
  opacity: 0.85;
}
.btn--left {
  margin-right: auto;
  margin-left: 0;
}
.btn--center {
  margin: 0 auto;
}
.btn--full {
  max-width: 100%;
}
.btn--sm {
  max-width: 200px;
  padding: 8px 20px;
  font-size: 1.3rem;
}

.btn-pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 24px;
  border-radius: 35px;
  background: linear-gradient(135deg, #70C908, #00F82D);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-pill:hover {
  opacity: 0.7;
}
.btn-pill--outline {
  background: transparent;
  border: 1px solid #70C908;
  color: #70C908;
}
.btn-pill--outline:hover {
  background: #70C908;
  color: #fff;
  opacity: 1;
}

.btn-circle-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 40px;
  padding: 6px 20px 6px 6px;
  max-width: 260px;
  width: 100%;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #333;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 639px) {
  .btn-circle-arrow {
    font-size: 1.2rem;
  }
}
.btn-circle-arrow .btn__circle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-circle-arrow .btn__label {
  padding: 0 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-circle-arrow:hover {
  background: #70C908;
}
.btn-circle-arrow:hover .btn__circle {
  background: #fff;
  color: #70C908;
}
.btn-circle-arrow:hover .btn__label {
  color: #fff;
}
.btn-circle-arrow:hover {
  opacity: 1;
}
.btn-circle-arrow--solid {
  background: #70C908;
  color: #fff;
  max-width: 280px;
}
.btn-circle-arrow--solid .btn__circle {
  background: #fff;
  color: #70C908;
}
.btn-circle-arrow--solid .btn__label {
  color: #fff;
}
.btn-circle-arrow--solid:hover {
  background: #00F82D;
}
.btn-circle-arrow--solid:hover .btn__circle {
  color: #00F82D;
}

.btn-frame {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 30px;
  position: relative;
  background: #fff;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-frame:hover {
  background: #70C908;
  color: #fff;
  border-color: #70C908;
  opacity: 1;
}
.btn-frame--sub::before {
  border-color: #00F82D;
}
.btn-frame--sub::after {
  border-color: #00F82D;
}

.btn-cta-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Quicksand", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #70C908;
  text-decoration: none;
  letter-spacing: 0.02em;
}
@media (max-width: 639px) {
  .btn-cta-tel {
    font-size: 2.2rem;
  }
}
.btn-cta-tel::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
  margin-right: 10px;
  font-size: 0.8em;
}
.btn-cta-tel--bordered {
  max-width: 600px;
  width: 100%;
  border: 2px solid #70C908;
  border-radius: 10px;
  padding: 15px 20px;
}
.btn-cta-tel--white {
  color: #fff;
}
.btn-cta-tel--white::before {
  color: #fff;
}

.btn-cta-mail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 320px;
  width: 100%;
  background: #fff;
  border: 1px solid #333;
  border-radius: 15px;
  padding: 12px 20px;
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif;
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-cta-mail::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 10px;
}
.btn-cta-mail:hover {
  background: #70C908;
  color: #fff;
  border-color: #70C908;
  opacity: 1;
}

.btn-nav-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 896px) {
  .btn-nav-card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .btn-nav-card {
    grid-template-columns: 1fr;
  }
}
.btn-nav-card__item {
  border: 1px solid #8AD612;
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-nav-card__item:hover {
  background: rgba(138, 214, 18, 0.05);
  opacity: 1;
}
.btn-nav-card__item::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #8AD612;
  border-right: 2px solid #8AD612;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn-sns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 200px;
  width: 100%;
  padding: 10px 20px;
  border-radius: 80px;
  border: 1px solid #fff;
  background: linear-gradient(-60deg, #70C908, #00F82D);
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-sns:hover {
  background: #fff;
  color: #70C908;
  border-color: #70C908;
  opacity: 1;
}

.btn-submit {
  display: inline-block;
  background: #00F82D;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 40px;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  opacity: 0.8;
}
.btn-submit::before {
  display: none !important;
}

.card-blog__item {
  padding: 1em;
  background: #ffffff;
  border: 1px solid rgba(112, 201, 8, 0.2);
  border-radius: 10px;
  position: relative;
}

.card-blog__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.card-blog__img {
  height: 200px;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 10px;
}
@media (max-width: 639px) {
  .card-blog__img {
    height: 150px;
  }
}
.card-blog__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.card-blog__item:hover .card-blog__img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.card-blog__img--noimage {
  background: #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #888;
  font-size: 1.2rem;
}

.card-blog__date {
  font-family: "Quicksand", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 8px;
  background: #70C908;
  color: #fff;
}

.card-blog__category {
  display: inline-block;
  font-size: 1.2rem;
  padding: 2px 8px;
  background: #f0f0f0;
  color: #333;
  margin-bottom: 5px;
}

.card-blog__title {
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-bnr__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.card-bnr__img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 639px) {
  .card-bnr__img {
    height: 200px;
  }
}
.card-bnr__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.card-bnr__item:hover .card-bnr__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.card-bnr__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(17, 17, 17, 0.4);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.card-bnr__title {
  position: absolute;
  z-index: 2;
  color: #fff;
}
.card-bnr__title .heading__en {
  font-size: 3rem;
}
@media (max-width: 639px) {
  .card-bnr__title .heading__en {
    font-size: 2rem;
  }
}
.card-bnr__title .heading__ja {
  font-size: 1.8rem;
}
@media (max-width: 639px) {
  .card-bnr__title .heading__ja {
    font-size: 1.3rem;
  }
}

.card-bnr__title--bottom-left {
  bottom: 30px;
  left: 30px;
}
@media (max-width: 639px) {
  .card-bnr__title--bottom-left {
    bottom: 15px;
    left: 15px;
  }
}

.card-bnr__title--center-circle {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media (max-width: 639px) {
  .card-bnr__title--center-circle {
    width: 150px;
    height: 150px;
  }
}

.card-bnr__title--badge {
  top: 15px;
  left: 0;
}
.card-bnr__title--badge .heading__en {
  display: inline-block;
  background: #70C908;
  padding: 4px 15px;
  font-size: 1.4rem;
}

.card-bnr__arrow {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-bnr__img--sm {
  height: 280px;
}
@media (max-width: 639px) {
  .card-bnr__img--sm {
    height: 180px;
  }
}

.card-bnr__title--compact .heading__en {
  font-size: 2rem;
}
@media (max-width: 639px) {
  .card-bnr__title--compact .heading__en {
    font-size: 1.6rem;
  }
}
.card-bnr__title--compact .heading__ja {
  font-size: 1.4rem;
}
@media (max-width: 639px) {
  .card-bnr__title--compact .heading__ja {
    font-size: 1.2rem;
  }
}

.card-service__item {
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-service__item:hover {
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
}

.card-service__img {
  height: 200px;
  overflow: hidden;
}
.card-service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-service__body {
  padding: 20px;
}

.card-service__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-service__text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #888;
}

.card-service__arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #8AD612;
  color: #fff;
  margin-top: 15px;
}

.card-service__tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 6px;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.05em;
}

.card-flow__item {
  min-width: 220px;
  background: #e8f4da;
  border-radius: 20px;
  padding: 3em;
  position: relative;
}
@media (max-width: 639px) {
  .card-flow__item {
    padding: 2em;
  }
}

.card-flow__number {
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #8AD612;
  line-height: 1;
  margin-bottom: 15px;
}
.card-flow__number--badge {
  display: inline-block;
  background: #8AD612;
  color: #fff;
  padding: 4px 15px;
  border-radius: 5px;
  font-size: 1.4rem;
}

.card-flow__body {
  font-size: 1.5rem;
  line-height: 1.7;
}

.card-flow__connector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #8AD612;
  font-size: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.card-flow__connector::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 639px) {
  .card-flow__connector {
    width: 100%;
    padding: 5px 0;
  }
  .card-flow__connector::after {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

.card-flow--4col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 896px) {
  .card-flow--4col {
    gap: 40px 30px;
  }
  .card-flow--4col .card-flow__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 15px);
            flex: 1 1 calc(50% - 15px);
  }
}
@media (max-width: 639px) {
  .card-flow--4col {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.card-flow--4col .card-flow__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  padding: 3em 2em 2.5em;
}
.card-flow--4col .card-flow__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  right: -32px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid #8AD612;
  border-right: 3px solid #8AD612;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
@media (max-width: 896px) {
  .card-flow--4col .card-flow__item {
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
  }
  .card-flow--4col .card-flow__item:nth-child(2)::after {
    display: none;
  }
  .card-flow--4col .card-flow__item:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -28px;
    -webkit-transform: translateX(-50%) rotate(135deg);
            transform: translateX(-50%) rotate(135deg);
  }
}
@media (max-width: 639px) {
  .card-flow--4col .card-flow__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 2em 1.5em;
  }
  .card-flow--4col .card-flow__item:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -22px;
    -webkit-transform: translateX(-50%) rotate(135deg);
            transform: translateX(-50%) rotate(135deg);
  }
}
.card-flow--4col .card-flow__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(112, 201, 8, 0.08);
  color: #70C908;
  font-size: 3rem;
  margin: 0 auto 15px;
}
@media (max-width: 639px) {
  .card-flow--4col .card-flow__icon {
    width: 64px;
    height: 64px;
    font-size: 2.4rem;
  }
}
.card-flow--4col .card-flow__number {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #70C908;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  line-height: 1;
}
@media (max-width: 639px) {
  .card-flow--4col .card-flow__number {
    font-size: 1.1rem;
  }
}

.card-flow--vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.mbox {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
}
.mbox--shadow {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.mbox--border {
  border: 1px solid #ddd;
}
.mbox--top-accent {
  border-top: 5px solid #70C908;
  border-radius: 0 0 10px 10px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.mbox--transparent {
  background: transparent;
  padding: 0;
}
.mbox--tinted {
  background: rgba(112, 201, 8, 0.05);
}
.mbox--dashed {
  border: 3px dashed rgba(112, 201, 8, 0.35);
}

.card-icon {
  border-radius: 20px;
  padding: 44px 28px;
  text-align: center;
}
@media (max-width: 639px) {
  .card-icon {
    padding: 28px 18px;
  }
}
.card-icon__icon {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.card-icon__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card-icon__text {
  font-size: 1rem;
  color: #888;
  line-height: 1.6;
}

.card-numbered {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
}
@media (max-width: 639px) {
  .card-numbered {
    padding: 14px 16px;
    gap: 10px;
  }
}
.card-numbered__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background: #70C908;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.card-numbered__text {
  font-size: 1.2rem;
  line-height: 1.6;
}

.card-numbered--accent-left {
  border-left: 4px solid #70C908;
  padding-left: 16px;
}

.card-numbered--badge .card-numbered__num {
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  font-family: "Quicksand", sans-serif;
}

.card-numbered--connector .card-numbered__num {
  position: relative;
}
.card-numbered--connector .card-numbered__num::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background: #70C908;
}

.card-photo {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 16px rgba(51, 51, 51, 0.04);
          box-shadow: 0 3px 16px rgba(51, 51, 51, 0.04);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  color: #333;
}
.card-photo:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 12px 40px rgba(51, 51, 51, 0.18);
          box-shadow: 0 12px 40px rgba(51, 51, 51, 0.18);
  opacity: 1;
}
.card-photo__img {
  overflow: hidden;
}
.card-photo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
  transition: transform 0.5s ease, filter 0.5s ease;
  transition: transform 0.5s ease, filter 0.5s ease, -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
}
.card-photo:hover .card-photo__img img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.card-photo__body {
  padding: 14px 16px;
}
.card-photo__tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 6px;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.05em;
}
.card-photo__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.card-photo__more {
  font-size: 1rem;
  color: #888;
}
.card-photo__img--sm {
  height: 120px;
}
.card-photo__img--md {
  height: 160px;
}
.card-photo__img--lg {
  height: 200px;
}

.bg-grid {
  position: relative;
}
.bg-grid::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, rgba(112, 201, 8, 0.05), rgba(112, 201, 8, 0.05) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgba(112, 201, 8, 0.05), rgba(112, 201, 8, 0.05) 1px, transparent 1px, transparent 20px);
  z-index: 0;
  pointer-events: none;
}
.bg-grid > * {
  position: relative;
  z-index: 1;
}

.bg-stripe {
  position: relative;
}
.bg-stripe::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, rgba(112, 201, 8, 0.03), rgba(112, 201, 8, 0.03) 2px, transparent 2px, transparent 8px);
  z-index: 0;
  pointer-events: none;
}
.bg-stripe > * {
  position: relative;
  z-index: 1;
}

.bg-deco {
  position: relative;
  overflow: hidden;
}
.bg-deco::before, .bg-deco::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  opacity: 0.8;
}
@media (max-width: 639px) {
  .bg-deco::before, .bg-deco::after {
    opacity: 0.3;
  }
}
.bg-deco > * {
  position: relative;
  z-index: 1;
}
.bg-deco--left::before {
  left: 0;
  bottom: 0;
  width: 250px;
  height: 250px;
}
.bg-deco--right::after {
  right: 0;
  top: 0;
  width: 300px;
  height: 300px;
}
.bg-deco--both::before {
  left: 0;
  bottom: 0;
  width: 250px;
  height: 250px;
}
.bg-deco--both::after {
  right: 0;
  top: 0;
  width: 300px;
  height: 300px;
}

.bg-wave {
  position: relative;
}
.bg-wave::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 639px) {
  .bg-wave::before {
    height: 30px;
  }
}
.bg-wave--bottom::before {
  top: auto;
  bottom: -1px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
@media (max-width: 639px) {
  .wave-divider svg {
    height: 35px;
  }
}
.wave-divider--gentle svg {
  height: 60px;
}
@media (max-width: 639px) {
  .wave-divider--gentle svg {
    height: 35px;
  }
}
.wave-divider--double svg {
  height: 80px;
}
@media (max-width: 639px) {
  .wave-divider--double svg {
    height: 45px;
  }
}
.wave-divider--lg svg {
  height: 70px;
}
@media (max-width: 639px) {
  .wave-divider--lg svg {
    height: 40px;
  }
}

.wave-divider--clip {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}
@media (max-width: 639px) {
  .wave-divider--clip {
    height: 35px;
  }
}
.wave-divider--clip::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  background: #f0f7e6;
  clip-path: ellipse(55% 70% at 50% 100%);
}
.wave-divider--clip-gentle::before {
  clip-path: ellipse(60% 60% at 50% 100%);
}
.wave-divider--clip-double {
  height: 80px;
}
@media (max-width: 639px) {
  .wave-divider--clip-double {
    height: 45px;
  }
}
.wave-divider--clip-double::before {
  clip-path: polygon(0% 60%, 10% 40%, 20% 55%, 30% 35%, 40% 50%, 50% 30%, 60% 50%, 70% 35%, 80% 55%, 90% 40%, 100% 60%, 100% 100%, 0% 100%);
}
.wave-divider--clip-base::before {
  background: #70C908;
}
.wave-divider--clip-section2::before {
  background: #e8f4da;
}
.wave-divider--clip-white::before {
  background: #fff;
}
.wave-divider--clip-flip {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.scallop-border {
  position: relative;
}
.scallop-border--top::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: radial-gradient(circle at 10px 11px, transparent 10px, #fff 10px);
  background-size: 20px 20px;
  background-position: -10px -11px;
  pointer-events: none;
  z-index: 2;
}
.scallop-border--bottom::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: radial-gradient(circle at 10px 0, transparent 10px, #fff 10px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 2;
}
.scallop-border--base-top::before {
  background: radial-gradient(circle at 10px 11px, transparent 10px, #70C908 10px);
  background-size: 20px 20px;
  background-position: -10px -11px;
}
.scallop-border--base-bottom::after {
  background: radial-gradient(circle at 10px 0, transparent 10px, #70C908 10px);
  background-size: 20px 20px;
}
.scallop-border--sm::before, .scallop-border--sm::after {
  height: 8px;
}
.scallop-border--sm::before {
  top: -8px;
  background: radial-gradient(circle at 8px 9px, transparent 8px, #fff 8px);
  background-size: 16px 16px;
  background-position: -8px -9px;
}
.scallop-border--sm::after {
  bottom: -8px;
  background: radial-gradient(circle at 8px 0, transparent 8px, #fff 8px);
  background-size: 16px 16px;
}

.bg-inner-box {
  position: relative;
}
.bg-inner-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 40px;
  left: 40px;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  z-index: 0;
}
@media (max-width: 639px) {
  .bg-inner-box::before {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
.bg-inner-box > * {
  position: relative;
  z-index: 1;
}

.bg-photo-fade {
  position: relative;
  overflow: hidden;
}
.bg-photo-fade::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: var(--bg-photo);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
@media (max-width: 639px) {
  .bg-photo-fade::before {
    width: 100%;
    opacity: 0.15;
  }
}
.bg-photo-fade::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FBF9F3), color-stop(40%, transparent));
  background: linear-gradient(to right, #FBF9F3 0%, transparent 40%);
  z-index: 0;
}
@media (max-width: 639px) {
  .bg-photo-fade::after {
    width: 100%;
    background: rgba(251, 249, 243, 0.85);
  }
}
.bg-photo-fade > * {
  position: relative;
  z-index: 1;
}
.bg-photo-fade--left::before {
  right: auto;
  left: 0;
}
.bg-photo-fade--left::after {
  right: auto;
  left: 0;
  background: -webkit-gradient(linear, right top, left top, from(#FBF9F3), color-stop(40%, transparent));
  background: linear-gradient(to left, #FBF9F3 0%, transparent 40%);
}
.bg-photo-fade--wide::before, .bg-photo-fade--wide::after {
  width: 65%;
}
@media (max-width: 639px) {
  .bg-photo-fade--wide::before, .bg-photo-fade--wide::after {
    width: 100%;
  }
}
.bg-photo-fade--narrow::before, .bg-photo-fade--narrow::after {
  width: 45%;
}
@media (max-width: 639px) {
  .bg-photo-fade--narrow::before, .bg-photo-fade--narrow::after {
    width: 100%;
  }
}

.bg-lines {
  position: relative;
}
.bg-lines::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(112, 201, 8, 0.08) 1px, transparent 1px);
  background-size: 100% 3em;
  pointer-events: none;
  z-index: 0;
}
.bg-lines > * {
  position: relative;
  z-index: 1;
}
.bg-lines--strong::before {
  background-image: linear-gradient(180deg, rgba(112, 201, 8, 0.15) 1px, transparent 1px);
}
.bg-lines--narrow::before {
  background-size: 100% 2em;
}
.bg-lines--wide::before {
  background-size: 100% 4em;
}

.bg-lines--dotted {
  position: relative;
}
.bg-lines--dotted::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, transparent calc(3em - 1px), rgba(112, 201, 8, 0.12) calc(3em - 1px));
  background-size: 100% 3em;
  -webkit-mask-image: repeating-linear-gradient(90deg, black 0 4px, transparent 4px 8px);
          mask-image: repeating-linear-gradient(90deg, black 0 4px, transparent 4px 8px);
  pointer-events: none;
  z-index: 0;
}
.bg-lines--dotted > * {
  position: relative;
  z-index: 1;
}

.bg-lines--dashed {
  position: relative;
}
.bg-lines--dashed::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(180deg, transparent, transparent calc(3em - 1px), rgba(112, 201, 8, 0.1) calc(3em - 1px), rgba(112, 201, 8, 0.1) 3em);
  background-size: 100% 3em;
  pointer-events: none;
  z-index: 0;
}
.bg-lines--dashed > * {
  position: relative;
  z-index: 1;
}

.deco-float {
  position: relative;
}
.deco-float::before, .deco-float::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  background-repeat: repeat-y;
  background-size: 100% auto;
  z-index: 0;
  opacity: 0.4;
  width: 140px;
  height: 100%;
}
@media (max-width: 896px) {
  .deco-float::before, .deco-float::after {
    width: 100px;
    opacity: 0.2;
  }
}
@media (max-width: 639px) {
  .deco-float::before, .deco-float::after {
    width: 70px;
    opacity: 0.15;
  }
}
.deco-float > * {
  position: relative;
  z-index: 1;
}
.deco-float--left::before {
  left: 0;
  top: 0;
}
.deco-float--right::after {
  right: 0;
  top: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.deco-float--both::before {
  left: 0;
  top: 0;
}
.deco-float--both::after {
  right: 0;
  top: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.deco-float--animated::before {
  -webkit-animation: fuwafuwa 4s ease-in-out infinite;
          animation: fuwafuwa 4s ease-in-out infinite;
}
.deco-float--animated::after {
  -webkit-animation: fuwafuwa 5s ease-in-out 1s infinite;
          animation: fuwafuwa 5s ease-in-out 1s infinite;
}

.deco-blob {
  position: relative;
  overflow: hidden;
}
.deco-blob::before, .deco-blob::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  -webkit-filter: blur(60px);
          filter: blur(60px);
}
.deco-blob > * {
  position: relative;
  z-index: 1;
}
.deco-blob::before {
  top: -40px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(112, 201, 8, 0.12);
}
.deco-blob::after {
  bottom: -30px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(138, 214, 18, 0.08);
}
.deco-blob--accent::before {
  background: rgba(138, 214, 18, 0.1);
}
.deco-blob--accent::after {
  background: rgba(136, 201, 161, 0.1);
}
.deco-blob--lg::before {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -100px;
}
.deco-blob--lg::after {
  width: 250px;
  height: 250px;
}

.dot-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, #70C908 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.dot-pattern--sm {
  width: 120px;
  height: 120px;
}
.dot-pattern--lg {
  width: 300px;
  height: 300px;
  opacity: 0.08;
}

.polka-dot {
  position: relative;
}
.polka-dot::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(112, 201, 8, 0.08) 7%, transparent 10%), radial-gradient(rgba(112, 201, 8, 0.08) 7%, transparent 10%);
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.polka-dot > * {
  position: relative;
  z-index: 1;
}
.polka-dot--accent::before {
  background-image: radial-gradient(rgba(138, 214, 18, 0.08) 7%, transparent 10%), radial-gradient(rgba(138, 214, 18, 0.08) 7%, transparent 10%);
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
}
.polka-dot--lg::before {
  background-image: radial-gradient(rgba(112, 201, 8, 0.06) 10%, transparent 13%), radial-gradient(rgba(112, 201, 8, 0.06) 10%, transparent 13%);
  background-position: 0 0, 30px 30px;
  background-size: 60px 60px;
}

.deco-shape {
  position: relative;
  overflow: hidden;
}
.deco-shape::before, .deco-shape::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.deco-shape > * {
  position: relative;
  z-index: 1;
}

.deco-item {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.deco-item--top-left {
  top: -20px;
  left: -20px;
}

.deco-item--top-right {
  top: -20px;
  right: -20px;
}

.deco-item--bottom-left {
  bottom: -20px;
  left: -20px;
}

.deco-item--bottom-right {
  bottom: -20px;
  right: -20px;
}

.deco-item--center-left {
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.deco-item--center-right {
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.deco-item--offset-sm {
  margin: -10px;
}

.deco-item--offset-lg {
  margin: -60px;
}

.deco-item--sm {
  width: 60px;
  height: 60px;
}
@media (max-width: 639px) {
  .deco-item--sm {
    width: 40px;
    height: 40px;
  }
}

.deco-item--md {
  width: 120px;
  height: 120px;
}
@media (max-width: 639px) {
  .deco-item--md {
    width: 80px;
    height: 80px;
  }
}

.deco-item--lg {
  width: 200px;
  height: 200px;
}
@media (max-width: 639px) {
  .deco-item--lg {
    width: 120px;
    height: 120px;
  }
}

.deco-item--xl {
  width: 300px;
  height: 300px;
}
@media (max-width: 639px) {
  .deco-item--xl {
    width: 180px;
    height: 180px;
  }
}

.deco-item--circle {
  border-radius: 50%;
}

.deco-item--ellipse {
  border-radius: 50%;
}
.deco-item--ellipse.deco-item--sm {
  height: 42px;
}
@media (max-width: 639px) {
  .deco-item--ellipse.deco-item--sm {
    height: 28px;
  }
}
.deco-item--ellipse.deco-item--md {
  height: 84px;
}
@media (max-width: 639px) {
  .deco-item--ellipse.deco-item--md {
    height: 56px;
  }
}
.deco-item--ellipse.deco-item--lg {
  height: 140px;
}
@media (max-width: 639px) {
  .deco-item--ellipse.deco-item--lg {
    height: 84px;
  }
}
.deco-item--ellipse.deco-item--xl {
  height: 210px;
}
@media (max-width: 639px) {
  .deco-item--ellipse.deco-item--xl {
    height: 126px;
  }
}

.deco-item--blob {
  border-radius: 40% 60% 50% 50%/55% 45% 55% 45%;
}

.deco-item--base {
  background: rgba(112, 201, 8, 0.08);
}

.deco-item--accent {
  background: rgba(138, 214, 18, 0.08);
}

.deco-item--sub {
  background: rgba(0, 248, 45, 0.08);
}

.deco-item--sup-1 {
  background: rgba(136, 201, 161, 0.08);
}

.deco-item--sup-2 {
  background: rgba(142, 200, 232, 0.08);
}

.deco-item--sup-3 {
  background: rgba(196, 168, 216, 0.08);
}

.deco-item--sup-4 {
  background: rgba(244, 184, 193, 0.08);
}

.deco-item--blur {
  -webkit-filter: blur(40px);
          filter: blur(40px);
}

.deco-item--blur-lg {
  -webkit-filter: blur(80px);
          filter: blur(80px);
}

.deco-item--animated {
  -webkit-animation: fuwafuwa 4s ease-in-out infinite;
          animation: fuwafuwa 4s ease-in-out infinite;
}

.deco-item--animated-slow {
  -webkit-animation: fuwafuwa 6s ease-in-out 1s infinite;
          animation: fuwafuwa 6s ease-in-out 1s infinite;
}

.deco-item--faint {
  opacity: 0.04;
}

.deco-item--subtle {
  opacity: 0.06;
}

.deco-item--visible {
  opacity: 0.12;
}

.icon-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2rem;
}
.icon-circle--sm {
  width: 36px;
  height: 36px;
  font-size: 1.6rem;
}
.icon-circle--lg {
  width: 72px;
  height: 72px;
  font-size: 2.8rem;
}
.icon-circle--base {
  background: rgba(112, 201, 8, 0.1);
  color: #70C908;
}
.icon-circle--accent {
  background: rgba(138, 214, 18, 0.1);
  color: #8AD612;
}
.icon-circle--white {
  background: #fff;
}
.icon-circle--sup-1 {
  background: #E8F5EE;
  color: #88C9A1;
}
.icon-circle--sup-2 {
  background: #E8F4FB;
  color: #8EC8E8;
}
.icon-circle--sup-3 {
  background: #F3ECF8;
  color: #C4A8D8;
}
.icon-circle--sup-4 {
  background: #FFF0F3;
  color: #F4B8C1;
}

.img-frame {
  border: 3px solid #fff;
  -webkit-box-shadow: 0 2px 12px rgba(51, 51, 51, 0.08);
          box-shadow: 0 2px 12px rgba(51, 51, 51, 0.08);
  border-radius: 10px;
}
.img-frame--shadow {
  -webkit-box-shadow: 0 4px 16px rgba(51, 51, 51, 0.12);
          box-shadow: 0 4px 16px rgba(51, 51, 51, 0.12);
}
.img-frame--tilt {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}
.img-frame--tilt-r {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}
.img-frame--circle {
  border-radius: 50%;
}
.img-frame--halo {
  -webkit-box-shadow: 0 0 0 8px rgba(112, 201, 8, 0.25), 0 3px 16px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 0 8px rgba(112, 201, 8, 0.25), 0 3px 16px rgba(51, 51, 51, 0.1);
}

.sentence p + p {
  margin-top: 20px;
}

.sentence--narrow p + p {
  margin-top: 12px;
}

.embed {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.embed iframe,
.embed video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.form-input {
  width: 100%;
  background: #f0f7e6;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1.4rem;
  font-family: inherit;
  color: #333;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-input:focus {
  border-color: #70C908;
}

.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.page-hero__overlay {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.4);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.page-hero__overlay--gradient {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), to(rgba(51, 51, 51, 0.45)));
  background: linear-gradient(180deg, transparent 30%, rgba(51, 51, 51, 0.45) 100%);
}

.page-hero__overlay--brand {
  background: -webkit-gradient(linear, left top, right top, from(#8AD612), to(#00F82D));
  background: linear-gradient(to right, #8AD612, #00F82D);
  opacity: 0.4;
}

.page-hero__title-frame {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 30px 40px;
  border: 4px solid #fff;
  background: rgba(51, 51, 51, 0.2);
  backdrop-filter: blur(3px);
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  z-index: 3;
}
@media (max-width: 639px) {
  .page-hero__title-frame {
    padding: 18px 15px;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.page-hero__title-frame .heading__en {
  position: absolute;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .page-hero__title-frame .heading__en {
    font-size: 1.6rem;
    top: -16px;
  }
}
.page-hero__title-frame .heading__ja {
  font-size: 2.5rem;
  color: #fff;
}
@media (max-width: 639px) {
  .page-hero__title-frame .heading__ja {
    font-size: 1.5rem;
  }
}

.page-hero--cloud-bottom::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: -2%;
  width: 104%;
  height: 80px;
  background: #FBF9F3;
  clip-path: polygon(0% 100%, 0% 60%, 5% 50%, 12% 55%, 18% 40%, 25% 50%, 32% 35%, 40% 48%, 48% 30%, 55% 45%, 62% 32%, 70% 50%, 78% 38%, 85% 52%, 92% 42%, 100% 55%, 100% 100%);
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 639px) {
  .page-hero--cloud-bottom::after {
    height: 40px;
  }
}

.page-hero--wave-bottom::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #FBF9F3;
  clip-path: ellipse(55% 80% at 50% 100%);
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 639px) {
  .page-hero--wave-bottom::after {
    height: 35px;
  }
}

.header {
  position: relative;
  z-index: 100;
  width: 100%;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
}
@media (max-width: 1100px) {
  .header__inner {
    padding: 0 15px;
    height: 60px;
  }
}
.header__inner--spread {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__inner--spread .header__nav {
  margin-left: 0;
  margin-right: 0;
}
.header__inner--flush-right {
  max-width: 100%;
  padding-right: 0;
}
@media (max-width: 1100px) {
  .header__inner--flush-right {
    padding-right: 0;
  }
}

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo img {
  height: 100px;
  width: auto;
  margin-top: 40px;
  background-color: #fff;
}
@media (max-width: 639px) {
  .header__logo img {
    height: 30px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  margin-left: auto;
  margin-right: 20px;
}
@media (max-width: 1100px) {
  .header__nav {
    display: none;
  }
}

.header__nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 8px 18px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__nav-item a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #70C908;
  -webkit-transition: width 0.3s ease, left 0.3s ease;
  transition: width 0.3s ease, left 0.3s ease;
}
.header__nav-item a:hover {
  opacity: 1;
}
.header__nav-item a:hover::after {
  width: 80%;
  left: 10%;
}

.header__nav-en {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #70C908;
  letter-spacing: 0.08em;
  line-height: 1;
}

.header__nav-ja {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-top: 2px;
  line-height: 1.3;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
}
@media (max-width: 1100px) {
  .header__right {
    display: none;
  }
}

.header__tel {
  font-family: "Quicksand", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #70C908;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__tel::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
  color: #70C908;
  margin-right: 8px;
  font-size: 0.8em;
}
.header__tel:hover {
  opacity: 0.7;
}

.header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
  padding: 0 20px;
  background: #70C908;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1100px) {
  .header__cta {
    display: none;
  }
}
.header__cta:hover {
  background: #00F82D;
  opacity: 1;
}
.header__cta__sub {
  font-size: 1rem;
  opacity: 0.85;
  margin-top: 2px;
}

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  gap: 8px;
}
.header-logo__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
  height: 38px;
  background: #70C908;
  border-radius: 50%;
  font-size: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-logo__icon--sm {
  width: 32px;
  height: 32px;
  font-size: 1.6rem;
}
.header-logo__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-logo__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}
.header-logo__sub {
  font-size: 0.7rem;
  color: #888;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.header-logo--dark .header-logo__name {
  color: #fff;
}
.header-logo--dark .header-logo__sub {
  color: rgba(255, 255, 255, 0.6);
}

.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-sticky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-sticky.is-fixed {
  position: fixed;
  background: #FBF9F3;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.header-sticky.is-fixed .header__inner {
  padding: 10px 30px;
}

.header-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 20%;
  height: 100vh;
  overflow-y: auto;
  background: #fff;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 20px;
}
@media (max-width: 1100px) {
  .header-sidebar {
    position: fixed;
    width: 100%;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 15px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}
.header-sidebar .header__nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}
@media (max-width: 1100px) {
  .header-sidebar .header__nav {
    display: none;
  }
}

.nav-toggle {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 210;
  width: 44px;
  height: 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 5px;
  border: none;
  padding: 0;
}
@media (max-width: 1100px) {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle__line {
  display: block;
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #333;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-toggle__line:nth-child(1) {
  top: 13px;
}
.nav-toggle__line:nth-child(2) {
  top: 21px;
}
.nav-toggle__line:nth-child(3) {
  top: 29px;
}
.nav-toggle.is-active .nav-toggle__line:nth-child(1) {
  top: 21px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle__line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active .nav-toggle__line:nth-child(3) {
  top: 21px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: linear-gradient(135deg, rgba(112, 201, 8, 0.97), rgba(71.004784689, 127.4282296651, 5.0717703349, 0.98));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 30px 40px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sp-nav.is-open {
  visibility: visible;
  opacity: 1;
}

.sp-nav__list {
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.sp-nav__item {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sp-nav__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.sp-nav.is-open .sp-nav__item {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.sp-nav__item:nth-child(1) {
  -webkit-transition-delay: 0.06s;
          transition-delay: 0.06s;
}
.sp-nav__item:nth-child(2) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}
.sp-nav__item:nth-child(3) {
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}
.sp-nav__item:nth-child(4) {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}
.sp-nav__item:nth-child(5) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.sp-nav__item:nth-child(6) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}
.sp-nav__item:nth-child(7) {
  -webkit-transition-delay: 0.42s;
          transition-delay: 0.42s;
}
.sp-nav__item:nth-child(8) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}
.sp-nav__item:nth-child(9) {
  -webkit-transition-delay: 0.54s;
          transition-delay: 0.54s;
}
.sp-nav__item:nth-child(10) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.sp-nav__link {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sp-nav__link::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.7em;
  opacity: 0.5;
}
.sp-nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.sp-nav__en {
  font-family: "Quicksand", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-right: auto;
  padding-left: 12px;
}

.sp-nav__bottom {
  margin-top: auto;
  width: 100%;
  max-width: 320px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sp-nav.is-open .sp-nav__bottom {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.header-sticky--transparent .header__logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.header-sticky--transparent.is-fixed .header__logo img {
  -webkit-filter: none;
          filter: none;
}

.header-bar--scallop::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: radial-gradient(circle at 10px 0, transparent 10px, #fff 10px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 2;
}

.header__nav--dashed .header__nav-item {
  border-right: 1px dashed rgba(221, 221, 221, 0.6);
}
.header__nav--dashed .header__nav-item:last-child {
  border-right: none;
}

.header__nav-item--dot-hover a::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8AD612;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -2px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__nav-item--dot-hover a:hover::after {
  width: 6px;
  left: 50%;
  opacity: 1;
}

.header__nav-icon {
  display: block;
  font-size: 1.4rem;
  color: #8AD612;
  margin-bottom: 2px;
}

.header__nav-item {
  position: relative;
}
.header__nav-item:hover .header__dropdown {
  display: block;
}

.header__dropdown {
  display: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
  padding-top: 15px;
  z-index: 999;
  min-width: 180px;
}

.header__dropdown-item {
  border: 1px solid #ddd;
  border-bottom: none;
}
.header__dropdown-item:last-child {
  border-bottom: 1px solid #ddd;
}
.header__dropdown-item a {
  display: block;
  padding: 10px 15px;
  font-size: 1.2rem;
  color: #333;
  background: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__dropdown-item a:hover {
  background: rgba(136, 201, 161, 0.2);
  opacity: 1;
}
.header__dropdown-item a::after {
  display: none;
}

.header__nav-item--current a::after {
  width: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.footer {
  position: relative;
}

.kotonoha-footer {
  margin-top: 0;
}

.kotonoha-footer__sky {
  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27932/sky.png") center top/cover no-repeat;
  padding: 80px 0 60px;
}

.kotonoha-footer__sky .footer-body__info {
  color: #444;
}

.kotonoha-footer__sky .footer-body__logo img {
  -webkit-filter: none;
          filter: none;
}

.kotonoha-footer__sky .footer-body__nav-item a {
  color: #444;
}
.kotonoha-footer__sky .footer-body__nav-item a:hover {
  color: #70C908;
  opacity: 1;
}

.kotonoha-footer__tree {
  height: 110px;
  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27932/tree_line.png") left bottom/842px 110px repeat-x;
}

.kotonoha-footer__bottom {
  background: transparent;
}
.kotonoha-footer__bottom .footer-bottom__copyright {
  color: #888;
}

.footer-cta {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 1100px) {
  .footer-cta {
    padding: 60px 0;
  }
}
@media (max-width: 639px) {
  .footer-cta {
    padding: 40px 0;
  }
}
.footer-cta::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #70C908;
  z-index: 0;
}
.footer-cta__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .footer-cta__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 0 5%;
  }
}
.footer-cta__label {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
.footer-cta__tel {
  font-family: "Quicksand", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 639px) {
  .footer-cta__tel {
    font-size: 2.4rem;
  }
}
.footer-cta__tel::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
  margin-right: 10px;
  font-size: 0.75em;
}
.footer-cta__mail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 320px;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  padding: 12px 30px;
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif;
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-cta__mail::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 10px;
}
.footer-cta__mail:hover {
  background: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.footer-cta--3col .footer-cta__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
@media (max-width: 896px) {
  .footer-cta--3col .footer-cta__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .footer-cta--3col .footer-cta__inner {
    grid-template-columns: 1fr;
  }
}

.footer-body {
  padding: 60px 0;
}
.footer-body__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
@media (max-width: 896px) {
  .footer-body__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.footer-body__left {
  width: 35%;
}
@media (max-width: 896px) {
  .footer-body__left {
    width: 100%;
  }
}
.footer-body__right {
  width: 60%;
}
@media (max-width: 896px) {
  .footer-body__right {
    width: 100%;
  }
}

.footer-body__logo {
  margin-bottom: 20px;
}
.footer-body__logo img {
  height: 95px;
  width: auto;
  background: #fff;
}

.footer-body__info {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #888;
  margin-bottom: 20px;
}

.footer-body__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 30px;
}
@media (max-width: 639px) {
  .footer-body__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.footer-body__nav-item a {
  font-size: 1.3rem;
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-body__nav-item a:hover {
  color: #70C908;
  opacity: 1;
}

.footer-body__map {
  width: 100%;
  height: 250px;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.footer-body__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-body__map--sm {
  height: 80px;
}

.footer-body__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-body--3col .footer-body__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 896px) {
  .footer-body--3col .footer-body__inner {
    grid-template-columns: 1fr;
  }
}

.footer-body--dark {
  background: #1a3d08;
  padding: 60px 0 40px;
}
.footer-body--dark .footer-body__logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer-body--dark .footer-body__info {
  color: rgba(255, 255, 255, 0.6);
}
.footer-body--dark .footer-body__nav-item a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-body--dark .footer-body__nav-item a:hover {
  color: #fff;
  opacity: 1;
}

.footer-sitemap-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 5% 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px 40px;
}
@media (max-width: 639px) {
  .footer-sitemap {
    gap: 25px 20px;
  }
}
.footer-sitemap__group {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 140px;
}
@media (max-width: 639px) {
  .footer-sitemap__group {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    min-width: calc(50% - 10px);
  }
}
.footer-sitemap__title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-sitemap__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-sitemap__item {
  margin-bottom: 10px;
}
.footer-sitemap__item a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-sitemap__item a::before {
  content: "―";
  margin-right: 0.4em;
  font-size: 0.8em;
  opacity: 0.4;
}
.footer-sitemap__item a:hover {
  color: #fff;
  opacity: 1;
}

.footer-body--scallop {
  position: relative;
}
.footer-body--scallop::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: radial-gradient(circle at 10px 11px, transparent 10px, #1a3d08 10px);
  background-size: 20px 20px;
  background-position: -10px -11px;
  pointer-events: none;
  z-index: 2;
}

.footer-body--soft {
  background: #f0f7e6;
  padding: 60px 0 40px;
}
.footer-body--soft .footer-body__info {
  color: #333;
}
.footer-body--soft .footer-body__nav-item a {
  color: #333;
}
.footer-body--soft .footer-body__nav-item a:hover {
  color: #70C908;
}

.footer--wave-clip {
  position: relative;
  margin-top: 60px;
}
.footer--wave-clip::before {
  content: "";
  display: block;
  position: absolute;
  top: -59px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #1a3d08;
  clip-path: ellipse(55% 70% at 50% 100%);
  pointer-events: none;
}
@media (max-width: 639px) {
  .footer--wave-clip::before {
    height: 35px;
    top: -34px;
  }
}

.footer--wave-clip-soft {
  position: relative;
  margin-top: 60px;
}
.footer--wave-clip-soft::before {
  content: "";
  display: block;
  position: absolute;
  top: -59px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f0f7e6;
  clip-path: ellipse(55% 70% at 50% 100%);
  pointer-events: none;
}
@media (max-width: 639px) {
  .footer--wave-clip-soft::before {
    height: 35px;
    top: -34px;
  }
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 639px) {
  .footer-bottom {
    padding-bottom: 70px;
  }
}
.footer-bottom__copyright {
  font-size: 1.2rem;
  color: #888;
  font-family: "Quicksand", sans-serif;
}
.footer-bottom--dark {
  background: #122d06;
}
.footer-bottom--dark .footer-bottom__copyright {
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom--pastel {
  background: rgba(138, 214, 18, 0.12);
}
.footer-bottom--pastel .footer-bottom__copyright {
  color: #333;
}
.footer-bottom--base-light {
  background: #e4f6b8;
}
.footer-bottom--base-light .footer-bottom__copyright {
  color: #333;
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 897px) {
  .page-top {
    right: 30px;
    bottom: 30px;
  }
}
.page-top__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #70C908;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-top__link:hover {
  background: #00F82D;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.sp-fixed-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 8px 0;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(112, 201, 8, 0.2);
  background: #fff;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
}
@media (min-width: 897px) {
  .sp-fixed-bar {
    display: none;
  }
}
.sp-fixed-bar__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.sp-fixed-bar__link {
  display: block;
  padding: 6px 4px;
  color: #333;
  font-size: 0.75rem;
  text-decoration: none;
}
.sp-fixed-bar__link:hover {
  color: #70C908;
}

.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin: 0 0.5em;
  color: #888;
}
.breadcrumb__link {
  color: #70C908;
  text-decoration: none;
}
.breadcrumb__link:hover {
  text-decoration: underline;
}
.breadcrumb__current {
  color: #888;
}

.pagination {
  margin: 40px 0;
  text-align: center;
}
.pagination__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination__item {
  margin: 0;
}
.pagination__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination__link:hover {
  border-color: #70C908;
  color: #70C908;
}
.pagination__link.is-current {
  border-color: #70C908;
  background: #70C908;
  color: #fff;
  pointer-events: none;
}

.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(112, 201, 8, 0.2);
}
.news-list__item {
  border-bottom: 1px solid rgba(112, 201, 8, 0.2);
}
.news-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 16px;
  padding: 20px 12px;
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-list__link:hover {
  background: #f0f7e6;
  opacity: 1;
}
.news-list__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #888;
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif;
}
.news-list__cat {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 90px;
  padding: 3px 12px;
  border-radius: 5px;
  background: #70C908;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.news-list__cat--sub {
  background: #00F82D;
}
.news-list__cat--accent {
  background: #8AD612;
}
.news-list__cat--pill {
  border-radius: 9999px;
}
.news-list__cat--sup-1 {
  background: #88C9A1;
}
.news-list__cat--sup-2 {
  background: #8EC8E8;
}
.news-list__cat--sup-3 {
  background: #C4A8D8;
}
.news-list__cat--sup-4 {
  background: #F4B8C1;
}
.news-list__cat--outline {
  background: transparent;
  border: 1px solid #70C908;
  color: #70C908;
}
.news-list__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
  font-weight: bold;
}
.news-list--boxed {
  border-top: none;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.news-list--boxed .news-list__item:last-child {
  border-bottom: none;
}
.news-list--boxed .news-list__link {
  padding: 18px 24px;
}
@media (max-width: 639px) {
  .news-list--boxed .news-list__link {
    padding: 14px 16px;
  }
}

.news-box {
  padding: 30px;
  border-radius: 5px;
  background: #ffffff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.news-cat-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-cat-nav li {
  border-bottom: 1px solid rgba(112, 201, 8, 0.2);
}
.news-cat-nav li:first-child {
  border-top: 1px solid rgba(112, 201, 8, 0.2);
}
.news-cat-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 8px;
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-cat-nav a::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.75em;
  color: #70C908;
}
.news-cat-nav a:hover {
  color: #70C908;
  background: rgba(112, 201, 8, 0.03);
  opacity: 1;
}

.tab-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid #ddd;
}
.tab-nav--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tab-nav--gap {
  gap: 8px;
  border-bottom: none;
}

.tab-nav__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 639px) {
  .tab-nav__item {
    padding: 8px 14px;
    font-size: 1.2rem;
  }
}
.tab-nav__item:hover {
  color: #70C908;
  opacity: 1;
}
.tab-nav__item.is-active {
  color: #70C908;
  border-bottom-color: #70C908;
}

.tab-nav--fill {
  border-bottom: none;
}
.tab-nav--fill .tab-nav__item {
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}
.tab-nav--fill .tab-nav__item.is-active {
  background: #70C908;
  color: #fff;
}

.tab-nav--pill {
  border-bottom: none;
}
.tab-nav--pill .tab-nav__item {
  border-bottom: none;
  border-radius: 9999px;
  border: 1px solid #ddd;
  padding: 6px 18px;
}
.tab-nav--pill .tab-nav__item.is-active {
  background: #70C908;
  color: #fff;
  border-color: #70C908;
}
.tab-nav--pill .tab-nav__item:hover {
  border-color: #70C908;
}

.tab-nav--border {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  gap: 0;
}
.tab-nav--border .tab-nav__item {
  border-bottom: none;
  border-right: 1px solid #ddd;
  border-radius: 0;
}
.tab-nav--border .tab-nav__item:last-child {
  border-right: none;
}
.tab-nav--border .tab-nav__item.is-active {
  background: #70C908;
  color: #fff;
}

.tab-nav--sub .tab-nav__item.is-active {
  color: #00F82D;
  border-bottom-color: #00F82D;
}
.tab-nav--sub .tab-nav__item:hover {
  color: #00F82D;
}
.tab-nav--sub.tab-nav--fill .tab-nav__item.is-active, .tab-nav--sub.tab-nav--pill .tab-nav__item.is-active, .tab-nav--sub.tab-nav--border .tab-nav__item.is-active {
  background: #00F82D;
  color: #fff;
  border-color: #00F82D;
}

.table-basic, .table-stripe, .table-border {
  width: 100%;
  border-collapse: collapse;
}
.table-basic th, .table-stripe th, .table-border th,
.table-basic td,
.table-stripe td,
.table-border td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  text-align: left;
}
.table-basic th, .table-stripe th, .table-border th {
  background: #f0f7e6;
  font-weight: bold;
}

.table-border {
  border: 2px solid #70C908;
}
.table-border th {
  background: #70C908;
  color: #fff;
}

.table-stripe tbody tr:nth-child(even) {
  background: #f0f7e6;
}

.table-stripe--borderless {
  width: 100%;
  border-collapse: collapse;
}
.table-stripe--borderless th, .table-stripe--borderless td {
  padding: 15px;
  border: none;
  vertical-align: middle;
}
.table-stripe--borderless tr:nth-child(odd) th,
.table-stripe--borderless tr:nth-child(odd) td {
  background: #f0f7e6;
}
.table-stripe--borderless th {
  width: 18%;
  padding-left: 25px;
  text-align: left;
  font-weight: inherit;
}
@media (max-width: 639px) {
  .table-stripe--borderless th {
    width: 30%;
    padding-left: 10px;
  }
}

@media (max-width: 639px) {
  .table-basic--responsive th,
  .table-basic--responsive td {
    display: block;
    width: 100%;
  }
  .table-basic--responsive th {
    padding-bottom: 4px;
    border-bottom: none;
  }
  .table-basic--responsive td {
    padding-top: 0;
  }
}

.table-basic--th-side th {
  width: 30%;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .table-basic--th-side th {
    width: 100%;
  }
}
@media (max-width: 639px) {
  .table-basic--th-side thead {
    display: none;
  }
  .table-basic--th-side tr {
    display: block;
    border-bottom: 2px solid #ddd;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .table-basic--th-side tr:last-child {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
  }
  .table-basic--th-side th,
  .table-basic--th-side td {
    display: block;
    width: 100%;
    border: none;
  }
  .table-basic--th-side th {
    padding-bottom: 2px;
    font-size: 0.9em;
    background: none;
    color: #70C908;
  }
  .table-basic--th-side td {
    padding-top: 2px;
    padding-bottom: 12px;
  }
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-scroll > table {
  min-width: 600px;
}

.list-dot {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}
.list-dot li {
  margin-bottom: 0.5em;
}

.list-num {
  margin: 0;
  padding-left: 1.4em;
  list-style: decimal;
}
.list-num li {
  margin-bottom: 0.5em;
}

.list-check {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-check li {
  position: relative;
  margin-bottom: 0.6em;
  padding-left: 1.4em;
}
.list-check li::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 0.5em;
  height: 0.25em;
  border-bottom: 2px solid #70C908;
  border-left: 2px solid #70C908;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.accordion {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}
.accordion__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 16px 20px;
  border: none;
  background: #f0f7e6;
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion__head:hover {
  background: rgb(233.0454545455, 243.2909090909, 218.4090909091);
}
.accordion__head::after {
  content: "+";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 12px;
  color: #70C908;
  font-size: 1.25rem;
  line-height: 1;
}
.accordion.is-open .accordion__head::after {
  content: "−";
}
.accordion__body {
  display: none;
  padding: 16px 20px;
  border-top: 1px solid rgba(112, 201, 8, 0.2);
  background: #fff;
}
.accordion.is-open .accordion__body {
  display: block;
}
.accordion--arrow {
  border-radius: 0;
  border-color: rgba(112, 201, 8, 0.15);
}
.accordion--arrow .accordion__head {
  padding: 20px 50px 20px 60px;
  background: #fff;
  font-size: 1.6rem;
  position: relative;
}
@media (max-width: 639px) {
  .accordion--arrow .accordion__head {
    padding: 16px 40px 16px 42px;
    font-size: 1.3rem;
  }
}
.accordion--arrow .accordion__head::before {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8AD612;
}
@media (max-width: 639px) {
  .accordion--arrow .accordion__head::before {
    top: 18px;
    left: 15px;
    width: 8px;
    height: 8px;
  }
}
.accordion--arrow .accordion__head::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 26px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 0;
  margin-left: 0;
  color: transparent;
}
.accordion--arrow.is-open .accordion__head::after {
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.accordion--arrow .accordion__body {
  padding: 20px 20px 20px 60px;
}
@media (max-width: 639px) {
  .accordion--arrow .accordion__body {
    padding: 16px 20px 16px 40px;
  }
}

.slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.slideshow .swiper {
  width: 100%;
  height: 100%;
}
.slideshow__item {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slideshow__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: none;
          animation: none;
}
.slideshow__item.swiper-slide-active img {
  -webkit-animation: slideshow-zoom 11s ease forwards;
          animation: slideshow-zoom 11s ease forwards;
}
.slideshow__item.is-active img {
  -webkit-animation: slideshow-zoom 11s ease forwards;
          animation: slideshow-zoom 11s ease forwards;
}
.slideshow__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(51, 51, 51, 0.2);
  pointer-events: none;
}
.slideshow__text {
  position: absolute;
  z-index: 3;
  bottom: 15%;
  left: 5%;
  max-width: 60%;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
@media (max-width: 639px) {
  .slideshow__text {
    bottom: 10%;
    left: 5%;
    max-width: 90%;
  }
}
.slideshow__text-sub {
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  opacity: 0.85;
  margin-bottom: 12px;
}
@media (max-width: 639px) {
  .slideshow__text-sub {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
  }
}
.slideshow__text-main {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}
@media (max-width: 896px) {
  .slideshow__text-main {
    font-size: 3.6rem;
  }
}
@media (max-width: 639px) {
  .slideshow__text-main {
    font-size: 2.6rem;
  }
}
.slideshow__text-lead {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 15px;
  opacity: 0.9;
}
@media (max-width: 639px) {
  .slideshow__text-lead {
    font-size: 1.3rem;
  }
}
.slideshow__card {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 60px;
  padding: 36px 44px;
  text-align: center;
  max-width: 540px;
  width: 90%;
}
@media (max-width: 639px) {
  .slideshow__card {
    padding: 28px 24px;
  }
}
.slideshow__card--bottom {
  top: auto;
  left: 5%;
  bottom: 12%;
  -webkit-transform: none;
          transform: none;
  text-align: left;
  max-width: 500px;
}
@media (max-width: 639px) {
  .slideshow__card--bottom {
    left: 4%;
    right: 4%;
    bottom: 8%;
    width: auto;
    max-width: none;
    text-align: center;
  }
}
.slideshow .swiper-pagination {
  z-index: 4;
}
.slideshow .swiper-button-prev,
.slideshow .swiper-button-next {
  z-index: 4;
  color: #fff;
}
@media (max-width: 639px) {
  .slideshow .swiper-button-prev,
  .slideshow .swiper-button-next {
    display: none;
  }
}

@-webkit-keyframes slideshow-zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes slideshow-zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.slideshow-clip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 4;
}
.slideshow-clip::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #70C908;
  opacity: 0.3;
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.slideshow-clip::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FBF9F3;
  clip-path: polygon(0 80%, 100% 40%, 100% 100%, 0 100%);
}

.slide-gallery {
  overflow: hidden;
}
.slide-gallery__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.333% - 20px);
          flex: 1 1 calc(33.333% - 20px);
  min-width: 200px;
  padding: 0 10px;
}
.slide-gallery__item a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.slide-gallery__item img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 896px) {
  .slide-gallery__item img {
    height: 250px;
  }
}
@media (max-width: 639px) {
  .slide-gallery__item img {
    height: 200px;
  }
}
.slide-gallery__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.parallax-text {
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}
.parallax-text__inner {
  display: inline-block;
  font-family: "YakuHanMP", "Zen Old Mincho", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 10vw;
  opacity: 0.08;
  color: #70C908;
  -webkit-animation: parallax-scroll 30s linear infinite;
          animation: parallax-scroll 30s linear infinite;
}

@-webkit-keyframes parallax-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes parallax-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.bgextend {
  position: relative;
  overflow: hidden;
}
.bgextend::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #70C908, #00F82D);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  z-index: 1;
}
.bgextend.is-visible::before {
  -webkit-animation: bgextend-anim 2s 0.45s cubic-bezier(0.65, 0, 0.076, 1) forwards;
          animation: bgextend-anim 2s 0.45s cubic-bezier(0.65, 0, 0.076, 1) forwards;
}
.bgextend img {
  opacity: 0;
}
.is-visible .bgextend img {
  opacity: 1;
  -webkit-transition: opacity 0s 1s;
  transition: opacity 0s 1s;
}

@-webkit-keyframes bgextend-anim {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.1% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@keyframes bgextend-anim {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.1% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
.timeline {
  border-radius: 20px;
}
.timeline__label {
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.timeline__label--base {
  background: rgba(112, 201, 8, 0.15);
  color: #70C908;
}
.timeline__label--accent {
  background: rgba(138, 214, 18, 0.15);
  color: #8AD612;
}
.timeline__label--sup-1 {
  background: rgba(136, 201, 161, 0.15);
  color: #88C9A1;
}
.timeline__label--sup-2 {
  background: rgba(142, 200, 232, 0.15);
  color: #8EC8E8;
}
.timeline__label--sup-3 {
  background: rgba(196, 168, 216, 0.15);
  color: #C4A8D8;
}
.timeline__label--sup-4 {
  background: rgba(244, 184, 193, 0.15);
  color: #F4B8C1;
}
.timeline__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}
.timeline__row:last-child {
  border-bottom: none;
}
.timeline__time {
  font-weight: 700;
  font-size: 1.2rem;
  min-width: 34px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.timeline__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #70C908;
}
.timeline__dot--accent {
  background: #8AD612;
}
.timeline__dot--sup-1 {
  background: #88C9A1;
}
.timeline__dot--sup-2 {
  background: #8EC8E8;
}
.timeline__dot--sup-3 {
  background: #C4A8D8;
}
.timeline__dot--sup-4 {
  background: #F4B8C1;
}
.timeline__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.2rem;
  line-height: 1.6;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.p-0 {
  padding: 0;
}

.m-0 {
  margin: 0;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.pt-35 {
  padding-top: 35px;
}

.pb-35 {
  padding-bottom: 35px;
}

.ml-35 {
  margin-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-45 {
  margin-bottom: 45px;
}

.pt-45 {
  padding-top: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-70 {
  margin-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.ml-70 {
  margin-left: 70px;
}

.mr-70 {
  margin-right: 70px;
}

.pl-70 {
  padding-left: 70px;
}

.pr-70 {
  padding-right: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mb-90 {
  margin-bottom: 90px;
}

.pt-90 {
  padding-top: 90px;
}

.pb-90 {
  padding-bottom: 90px;
}

.ml-90 {
  margin-left: 90px;
}

.mr-90 {
  margin-right: 90px;
}

.pl-90 {
  padding-left: 90px;
}

.pr-90 {
  padding-right: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-120 {
  margin-bottom: 120px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.ml-120 {
  margin-left: 120px;
}

.mr-120 {
  margin-right: 120px;
}

.pl-120 {
  padding-left: 120px;
}

.pr-120 {
  padding-right: 120px;
}

.-mt-10 {
  margin-top: -10px;
}

.-mb-10 {
  margin-bottom: -10px;
}

.-ml-10 {
  margin-left: -10px;
}

.-mr-10 {
  margin-right: -10px;
}

.-mt-20 {
  margin-top: -20px;
}

.-mb-20 {
  margin-bottom: -20px;
}

.-ml-20 {
  margin-left: -20px;
}

.-mr-20 {
  margin-right: -20px;
}

.-mt-30 {
  margin-top: -30px;
}

.-mb-30 {
  margin-bottom: -30px;
}

.-ml-30 {
  margin-left: -30px;
}

.-mr-30 {
  margin-right: -30px;
}

.-mt-40 {
  margin-top: -40px;
}

.-mb-40 {
  margin-bottom: -40px;
}

.-ml-40 {
  margin-left: -40px;
}

.-mr-40 {
  margin-right: -40px;
}

.-mt-60 {
  margin-top: -60px;
}

.-mb-60 {
  margin-bottom: -60px;
}

.-ml-60 {
  margin-left: -60px;
}

.-mr-60 {
  margin-right: -60px;
}

.-mt-80 {
  margin-top: -80px;
}

.-mb-80 {
  margin-bottom: -80px;
}

.-ml-80 {
  margin-left: -80px;
}

.-mr-80 {
  margin-right: -80px;
}

@media (max-width: 896px) {
  .mt-40 {
    margin-top: 20px;
  }
  .mb-40 {
    margin-bottom: 20px;
  }
  .pt-40 {
    padding-top: 20px;
  }
  .pb-40 {
    padding-bottom: 20px;
  }
  .mt-45 {
    margin-top: 22.5px;
  }
  .mb-45 {
    margin-bottom: 22.5px;
  }
  .pt-45 {
    padding-top: 22.5px;
  }
  .pb-45 {
    padding-bottom: 22.5px;
  }
  .mt-50 {
    margin-top: 25px;
  }
  .mb-50 {
    margin-bottom: 25px;
  }
  .pt-50 {
    padding-top: 25px;
  }
  .pb-50 {
    padding-bottom: 25px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
  .pt-60 {
    padding-top: 30px;
  }
  .pb-60 {
    padding-bottom: 30px;
  }
  .mt-70 {
    margin-top: 35px;
  }
  .mb-70 {
    margin-bottom: 35px;
  }
  .pt-70 {
    padding-top: 35px;
  }
  .pb-70 {
    padding-bottom: 35px;
  }
  .mt-80 {
    margin-top: 40px;
  }
  .mb-80 {
    margin-bottom: 40px;
  }
  .pt-80 {
    padding-top: 40px;
  }
  .pb-80 {
    padding-bottom: 40px;
  }
  .mt-90 {
    margin-top: 45px;
  }
  .mb-90 {
    margin-bottom: 45px;
  }
  .pt-90 {
    padding-top: 45px;
  }
  .pb-90 {
    padding-bottom: 45px;
  }
  .mt-100 {
    margin-top: 50px;
  }
  .mb-100 {
    margin-bottom: 50px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
  .mt-120 {
    margin-top: 60px;
  }
  .mb-120 {
    margin-bottom: 60px;
  }
  .pt-120 {
    padding-top: 60px;
  }
  .pb-120 {
    padding-bottom: 60px;
  }
}
.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 639px) {
  .sp-mt-5 {
    margin-top: 5px;
  }
  .sp-mb-5 {
    margin-bottom: 5px;
  }
  .sp-pt-5 {
    padding-top: 5px;
  }
  .sp-pb-5 {
    padding-bottom: 5px;
  }
  .sp-mt-10 {
    margin-top: 10px;
  }
  .sp-mb-10 {
    margin-bottom: 10px;
  }
  .sp-pt-10 {
    padding-top: 10px;
  }
  .sp-pb-10 {
    padding-bottom: 10px;
  }
  .sp-mt-15 {
    margin-top: 15px;
  }
  .sp-mb-15 {
    margin-bottom: 15px;
  }
  .sp-pt-15 {
    padding-top: 15px;
  }
  .sp-pb-15 {
    padding-bottom: 15px;
  }
  .sp-mt-20 {
    margin-top: 20px;
  }
  .sp-mb-20 {
    margin-bottom: 20px;
  }
  .sp-pt-20 {
    padding-top: 20px;
  }
  .sp-pb-20 {
    padding-bottom: 20px;
  }
  .sp-mt-25 {
    margin-top: 25px;
  }
  .sp-mb-25 {
    margin-bottom: 25px;
  }
  .sp-pt-25 {
    padding-top: 25px;
  }
  .sp-pb-25 {
    padding-bottom: 25px;
  }
  .sp-mt-30 {
    margin-top: 30px;
  }
  .sp-mb-30 {
    margin-bottom: 30px;
  }
  .sp-pt-30 {
    padding-top: 30px;
  }
  .sp-pb-30 {
    padding-bottom: 30px;
  }
  .sp-mt-35 {
    margin-top: 35px;
  }
  .sp-mb-35 {
    margin-bottom: 35px;
  }
  .sp-pt-35 {
    padding-top: 35px;
  }
  .sp-pb-35 {
    padding-bottom: 35px;
  }
  .sp-mt-40 {
    margin-top: 40px;
  }
  .sp-mb-40 {
    margin-bottom: 40px;
  }
  .sp-pt-40 {
    padding-top: 40px;
  }
  .sp-pb-40 {
    padding-bottom: 40px;
  }
  .sp-mt-45 {
    margin-top: 45px;
  }
  .sp-mb-45 {
    margin-bottom: 45px;
  }
  .sp-pt-45 {
    padding-top: 45px;
  }
  .sp-pb-45 {
    padding-bottom: 45px;
  }
  .sp-mt-50 {
    margin-top: 50px;
  }
  .sp-mb-50 {
    margin-bottom: 50px;
  }
  .sp-pt-50 {
    padding-top: 50px;
  }
  .sp-pb-50 {
    padding-bottom: 50px;
  }
  .sp-mt-60 {
    margin-top: 60px;
  }
  .sp-mb-60 {
    margin-bottom: 60px;
  }
  .sp-pt-60 {
    padding-top: 60px;
  }
  .sp-pb-60 {
    padding-bottom: 60px;
  }
  .sp-mt-70 {
    margin-top: 70px;
  }
  .sp-mb-70 {
    margin-bottom: 70px;
  }
  .sp-pt-70 {
    padding-top: 70px;
  }
  .sp-pb-70 {
    padding-bottom: 70px;
  }
  .sp-mt-80 {
    margin-top: 80px;
  }
  .sp-mb-80 {
    margin-bottom: 80px;
  }
  .sp-pt-80 {
    padding-top: 80px;
  }
  .sp-pb-80 {
    padding-bottom: 80px;
  }
  .sp-mt-90 {
    margin-top: 90px;
  }
  .sp-mb-90 {
    margin-bottom: 90px;
  }
  .sp-pt-90 {
    padding-top: 90px;
  }
  .sp-pb-90 {
    padding-bottom: 90px;
  }
  .sp-mt-100 {
    margin-top: 100px;
  }
  .sp-mb-100 {
    margin-bottom: 100px;
  }
  .sp-pt-100 {
    padding-top: 100px;
  }
  .sp-pb-100 {
    padding-bottom: 100px;
  }
  .sp-mt-120 {
    margin-top: 120px;
  }
  .sp-mb-120 {
    margin-bottom: 120px;
  }
  .sp-pt-120 {
    padding-top: 120px;
  }
  .sp-pb-120 {
    padding-bottom: 120px;
  }
  .sp-mt-0 {
    margin-top: 0;
  }
  .sp-mb-0 {
    margin-bottom: 0;
  }
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-none {
  display: none;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.jc-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.jc-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.jc-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ai-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ai-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ai-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.fz-10 {
  font-size: 1rem;
}

.fz-12 {
  font-size: 1.2rem;
}

.fz-13 {
  font-size: 1.3rem;
}

.fz-14 {
  font-size: 1.4rem;
}

.fz-16 {
  font-size: 1.6rem;
}

.fz-18 {
  font-size: 1.8rem;
}

.fz-20 {
  font-size: 2rem;
}

.fz-22 {
  font-size: 2.2rem;
}

.fz-24 {
  font-size: 2.4rem;
}

.fz-28 {
  font-size: 2.8rem;
}

.fz-32 {
  font-size: 3.2rem;
}

.fz-36 {
  font-size: 3.6rem;
}

.fz-40 {
  font-size: 4rem;
}

.fz-48 {
  font-size: 4.8rem;
}

.fz-56 {
  font-size: 5.6rem;
}

.fz-64 {
  font-size: 6.4rem;
}

.fz-80 {
  font-size: 8rem;
}

.fz-96 {
  font-size: 9.6rem;
}

.fz-100 {
  font-size: 10rem;
}

.fz-120 {
  font-size: 12rem;
}

.lh-1 {
  line-height: 1;
}

.lh-xs {
  line-height: 1.1;
}

.lh-sm {
  line-height: 1.2;
}

.lh-base {
  line-height: 1.4;
}

.lh-md {
  line-height: 1.6;
}

.lh-lg {
  line-height: 1.8;
}

.lh-xl {
  line-height: 2;
}

.ls-tight {
  letter-spacing: 0.02em;
}

.ls-normal {
  letter-spacing: 0.05em;
}

.ls-wide {
  letter-spacing: 0.1em;
}

.ls-wider {
  letter-spacing: 0.15em;
}

.ls-widest {
  letter-spacing: 0.2em;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.border-bottom {
  border-bottom: 1px solid #ddd;
}

.border-top {
  border-top: 1px solid #ddd;
}

.border-left {
  border-left: 1px solid #ddd;
}

.border-right {
  border-right: 1px solid #ddd;
}

.border-none {
  border: none;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-white {
  color: #fff;
}

.text-base {
  color: #70C908;
}

.text-sub {
  color: #00F82D;
}

.text-light {
  color: #888;
}

.text-dark {
  color: #333;
}

.text-bold {
  font-weight: bold;
}

.text-normal {
  font-weight: normal;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pos-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.pos-fixed {
  position: fixed;
}

.pos-sticky {
  position: sticky;
  top: 0;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.z-header {
  z-index: 100;
}

.z-overlay {
  z-index: 200;
}

.z-modal {
  z-index: 300;
}

@media (min-width: 897px) {
  .sp-only {
    display: none !important;
  }
}

@media (max-width: 896px) {
  .pc-only {
    display: none !important;
  }
}

@media (max-width: 639px) {
  .tablet-only {
    display: none !important;
  }
}
@media (min-width: 897px) {
  .tablet-only {
    display: none !important;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.rounded {
  border-radius: 10px;
}

.rounded-sm {
  border-radius: 5px;
}

.rounded-lg {
  border-radius: 20px;
}

.rounded-pill {
  border-radius: 9999px;
}

.rounded-circle {
  border-radius: 50%;
}

.rounded-none {
  border-radius: 0;
}

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-150 {
  height: 150px;
}

.h-180 {
  height: 180px;
}

.h-200 {
  height: 200px;
}

.h-250 {
  height: 250px;
}

.h-280 {
  height: 280px;
}

.h-300 {
  height: 300px;
}

.h-350 {
  height: 350px;
}

.h-400 {
  height: 400px;
}

.h-500 {
  height: 500px;
}

.h-auto {
  height: auto;
}

.h-100vh {
  height: 100vh;
}

.min-h-100vh {
  min-height: 100vh;
}

@media (max-width: 896px) {
  .h-300 {
    height: 200px;
  }
  .h-350 {
    height: 233.3333333333px;
  }
  .h-400 {
    height: 266.6666666667px;
  }
  .h-500 {
    height: 333.3333333333px;
  }
}
@media (max-width: 639px) {
  .h-250 {
    height: 125px;
  }
  .h-280 {
    height: 140px;
  }
  .h-300 {
    height: 150px;
  }
  .h-350 {
    height: 175px;
  }
  .h-400 {
    height: 200px;
  }
  .h-500 {
    height: 250px;
  }
  .h-100vh {
    height: 70vh;
  }
  .min-h-100vh {
    min-height: 70vh;
  }
}
.aspect-1-1 {
  aspect-ratio: 1/1;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}

.aspect-3-2 {
  aspect-ratio: 3/2;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.aspect-21-9 {
  aspect-ratio: 21/9;
}

.obj-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.obj-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.bg-base-light {
  background: #e4f6b8;
}

.bg-base-pale {
  background: #f4fbea;
}

.bg-accent-light {
  background: #dff0b8;
}

.bg-sup-1 {
  background: #88C9A1;
}

.bg-sup-1-light {
  background: #E8F5EE;
}

.bg-sup-2 {
  background: #8EC8E8;
}

.bg-sup-2-light {
  background: #E8F4FB;
}

.bg-sup-3 {
  background: #C4A8D8;
}

.bg-sup-3-light {
  background: #F3ECF8;
}

.bg-sup-4 {
  background: #F4B8C1;
}

.bg-sup-4-light {
  background: #FFF0F3;
}

.text-sup-1 {
  color: #88C9A1;
}

.text-sup-2 {
  color: #8EC8E8;
}

.text-sup-3 {
  color: #C4A8D8;
}

.text-sup-4 {
  color: #F4B8C1;
}

.text-accent {
  color: #8AD612;
}

.shadow-warm {
  -webkit-box-shadow: 0 3px 16px rgba(51, 51, 51, 0.08);
          box-shadow: 0 3px 16px rgba(51, 51, 51, 0.08);
}

.shadow-warm-md {
  -webkit-box-shadow: 0 6px 24px rgba(51, 51, 51, 0.14);
          box-shadow: 0 6px 24px rgba(51, 51, 51, 0.14);
}

.shadow-warm-lg {
  -webkit-box-shadow: 2px 6px 28px rgba(51, 51, 51, 0.2);
          box-shadow: 2px 6px 28px rgba(51, 51, 51, 0.2);
}

.text-shadow-soft {
  text-shadow: 0 0 3px rgba(51, 51, 51, 0.15);
}

.font-en {
  font-family: "Quicksand", sans-serif;
}

.font-mincho {
  font-family: "YakuHanMP", "Zen Old Mincho", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
}

.shadow-sm {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.shadow-base {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.shadow-none {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.opacity-5 {
  opacity: 0.05;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-15 {
  opacity: 0.15;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-100 {
  opacity: 1;
}

.pe-none {
  pointer-events: none;
}

.pe-auto {
  pointer-events: auto;
}

.ws-nowrap {
  white-space: nowrap;
}

.bg-solid {
  position: relative;
}
.bg-solid::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #f0f7e6;
}
.bg-solid > * {
  position: relative;
  z-index: 1;
}
.bg-solid--base::before {
  background: #70C908;
}
.bg-solid--sub::before {
  background: #00F82D;
}
.bg-solid--section::before {
  background: #f0f7e6;
}
.bg-solid--section2::before {
  background: #e8f4da;
}
.bg-solid--white::before {
  background: #fff;
}
.bg-solid--rounded-top::before {
  border-radius: 60px 60px 0 0;
}
.bg-solid--rounded-bottom::before {
  border-radius: 0 0 60px 60px;
}

.bg-solid--bottom, .bg-solid--bottom-80, .bg-solid--bottom-75, .bg-solid--bottom-70, .bg-solid--bottom-65, .bg-solid--bottom-60 {
  position: relative;
}
.bg-solid--bottom::before, .bg-solid--bottom-80::before, .bg-solid--bottom-75::before, .bg-solid--bottom-70::before, .bg-solid--bottom-65::before, .bg-solid--bottom-60::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: var(--bg-bottom, #f0f7e6);
  z-index: 0;
}
.bg-solid--bottom > *, .bg-solid--bottom-80 > *, .bg-solid--bottom-75 > *, .bg-solid--bottom-70 > *, .bg-solid--bottom-65 > *, .bg-solid--bottom-60 > * {
  position: relative;
  z-index: 1;
}

.bg-solid--bottom-60::before {
  height: 60%;
}

.bg-solid--bottom-65::before {
  height: 65%;
}

.bg-solid--bottom-70::before {
  height: 70%;
}

.bg-solid--bottom-75::before {
  height: 75%;
}

.bg-solid--bottom-80::before {
  height: 80%;
}

.bg-overlay {
  position: relative;
}
.bg-overlay::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.3);
  z-index: 1;
  pointer-events: none;
}
.bg-overlay > * {
  position: relative;
  z-index: 2;
}
.bg-overlay--dark::before {
  background: rgba(17, 17, 17, 0.5);
}
.bg-overlay--light::before {
  background: rgba(255, 255, 255, 0.6);
}
.bg-overlay--base::before {
  background: rgba(112, 201, 8, 0.4);
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(112, 201, 8, 0.3)));
  background: linear-gradient(transparent 70%, rgba(112, 201, 8, 0.3) 0%);
}
.marker--accent {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(138, 214, 18, 0.3)));
  background: linear-gradient(transparent 70%, rgba(138, 214, 18, 0.3) 0%);
}
.marker--sup1 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(136, 201, 161, 0.3)));
  background: linear-gradient(transparent 70%, rgba(136, 201, 161, 0.3) 0%);
}
.marker--sup2 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(142, 200, 232, 0.3)));
  background: linear-gradient(transparent 70%, rgba(142, 200, 232, 0.3) 0%);
}
.marker--strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, transparent), color-stop(0%, rgba(112, 201, 8, 0.25)));
  background: linear-gradient(transparent 10%, rgba(112, 201, 8, 0.25) 0%);
}

.section-corner--br {
  border-radius: 0 0 60px 0;
}
.section-corner--bl {
  border-radius: 0 0 0 60px;
}
.section-corner--top {
  border-radius: 60px 60px 0 0;
}
.section-corner--both-bottom {
  border-radius: 0 0 60px 60px;
}

.bg-white-90 {
  background: rgba(255, 255, 255, 0.9);
}

.bg-white-85 {
  background: rgba(255, 255, 255, 0.85);
}

.bg-white-80 {
  background: rgba(255, 255, 255, 0.8);
}

.bg-white-70 {
  background: rgba(255, 255, 255, 0.7);
}

.bg-dark-90 {
  background: rgba(17, 17, 17, 0.9);
}

.bg-dark-85 {
  background: rgba(17, 17, 17, 0.85);
}

.bg-dark-80 {
  background: rgba(17, 17, 17, 0.8);
}

.bg-dark-70 {
  background: rgba(17, 17, 17, 0.7);
}

.bg-base {
  background: #70C908;
}

.bg-sub {
  background: #00F82D;
}

.bg-dark {
  background: #1a3d08;
}

.bg-section {
  background: #f0f7e6;
}

.bg-section2 {
  background: #e8f4da;
}

.bg-white {
  background: #fff;
}

.bg-body {
  background: #FBF9F3;
}

@media (max-width: 639px) {
  .sp-fz-10 {
    font-size: 1rem;
  }
  .sp-fz-12 {
    font-size: 1.2rem;
  }
  .sp-fz-13 {
    font-size: 1.3rem;
  }
  .sp-fz-14 {
    font-size: 1.4rem;
  }
  .sp-fz-16 {
    font-size: 1.6rem;
  }
  .sp-fz-18 {
    font-size: 1.8rem;
  }
  .sp-fz-20 {
    font-size: 2rem;
  }
  .sp-fz-22 {
    font-size: 2.2rem;
  }
  .sp-fz-24 {
    font-size: 2.4rem;
  }
  .sp-fz-28 {
    font-size: 2.8rem;
  }
  .sp-fz-32 {
    font-size: 3.2rem;
  }
  .sp-fz-36 {
    font-size: 3.6rem;
  }
  .sp-fz-40 {
    font-size: 4rem;
  }
  .sp-fz-48 {
    font-size: 4.8rem;
  }
  .sp-lh-1 {
    line-height: 1;
  }
  .sp-lh-xs {
    line-height: 1.1;
  }
  .sp-lh-sm {
    line-height: 1.2;
  }
  .sp-lh-base {
    line-height: 1.4;
  }
  .sp-lh-md {
    line-height: 1.6;
  }
  .sp-lh-lg {
    line-height: 1.8;
  }
  .sp-fw-400 {
    font-weight: 400;
  }
  .sp-fw-700 {
    font-weight: 700;
  }
  .sp-text-center {
    text-align: center;
  }
  .sp-text-left {
    text-align: left;
  }
  .sp-d-none {
    display: none;
  }
  .sp-d-block {
    display: block;
  }
  .sp-d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sp-flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sp-w-100 {
    width: 100%;
  }
  .sp--mt-10 {
    margin-top: -10px;
  }
  .sp--mt-20 {
    margin-top: -20px;
  }
  .sp--mt-30 {
    margin-top: -30px;
  }
}
.hover-opacity-0:hover {
  opacity: 0;
}

.hover-opacity-50:hover {
  opacity: 0.5;
}

.hover-opacity-70:hover {
  opacity: 0.7;
}

.hover-opacity-80:hover {
  opacity: 0.8;
}

.hover-opacity-100:hover {
  opacity: 1;
}

.hover-bg-base:hover {
  background: #70C908;
}

.hover-bg-sub:hover {
  background: #00F82D;
}

.hover-bg-accent:hover {
  background: #8AD612;
}

.hover-bg-white:hover {
  background: #fff;
}

.hover-bg-dark:hover {
  background: #1a3d08;
}

.hover-bg-section:hover {
  background: #f0f7e6;
}

.hover-color-base:hover {
  color: #70C908;
}

.hover-color-sub:hover {
  color: #00F82D;
}

.hover-color-white:hover {
  color: #fff;
}

.hover-color-dark:hover {
  color: #333;
}

.hover-shadow:hover {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hover-shadow-lg:hover {
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hover-shadow-none:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hover-up:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.hover-up-sm:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.hover-up-lg:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.hover-scale:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.hover-scale-sm:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.hover-border-base:hover {
  border-color: #70C908;
}

.hover-border-sub:hover {
  border-color: #00F82D;
}

.transition {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.transition-slow {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.max-w-400 {
  max-width: 400px;
}

.max-w-500 {
  max-width: 500px;
}

.max-w-600 {
  max-width: 600px;
}

.max-w-700 {
  max-width: 700px;
}

.max-w-800 {
  max-width: 800px;
}

.max-w-900 {
  max-width: 900px;
}

.max-w-none {
  max-width: none;
}

.no-underline {
  text-decoration: none;
}

.underline {
  text-decoration: underline;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.backdrop-blur {
  backdrop-filter: blur(8px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.backdrop-blur-lg {
  backdrop-filter: blur(16px);
}

.obj-top {
  -o-object-position: top;
     object-position: top;
}

.obj-bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.obj-center {
  -o-object-position: center;
     object-position: center;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 896px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 639px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 896px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 639px) {
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.form-radio,
.form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1.4rem;
}
.form-radio input,
.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #70C908;
  cursor: pointer;
}

.form-select {
  display: block;
  width: 100%;
  padding: 10px 35px 10px 12px;
  font-size: 1.4rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  background: #f0f7e6 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat right 10px center;
  background-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-select:focus {
  border-color: #70C908;
  outline: none;
}

.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
}