@charset "UTF-8";
html {
  font-size: 1rem;
  scroll-behavior: smooth;
}

body {
  color: #2B2B2B;
  background-color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  padding-top: env(safe-area-inset-top);
  font-size: 1rem;
}

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

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

li {
  list-style-type: none;
}

h2 {
  font-size: clamp(1.75rem, 1.445rem + 1.3vw, 2.25rem);
  font-weight: 700;
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

/*====================================
ヘッダー
====================================*/
.header {
  height: 31px;
}
@media screen and (min-width:960px) {
  .header {
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #FFFFFF;
  }
}

.header-inner {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 4.2666666667vw;
}
@media screen and (min-width:960px) {
  .header-inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 2.7777777778%;
  }
}

.header-logo {
  max-width: 97px;
  width: 100%;
  aspect-ratio: 49/11;
}
@media screen and (min-width:960px) {
  .header-logo {
    max-width: 213px;
  }
}

.header-cta {
  display: none;
}
@media screen and (min-width:960px) {
  .header-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    gap: clamp(0.625rem, -3.661rem + 7.14vw, 1.25rem);
    white-space: nowrap;
  }
  .header-cta::before {
    content: "";
    display: block;
    width: 1px;
    height: 60px;
    background-color: #2B2B2B;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (min-width:960px) and (min-width: 1100px) {
  .header-cta {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.header-cta__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(0.625rem, -3.661rem + 7.14vw, 1.25rem);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.header-cta__box-item {
  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;
  gap: 3px;
}

.header-cta__box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.header-cta__box-tag {
  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: 100%;
  height: 40px;
  padding-inline: clamp(0.313rem, -4.402rem + 7.86vw, 1rem);
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 10px;
  border: 1px solid #EB5B2B;
  color: #EB5B2B;
}

.header-cta__action {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 33px;
}

.header-cta__action-tel {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  max-width: 271px;
  width: 100%;
  padding-block: 16px;
}

.header-cta__action-top-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.28px;
  white-space: nowrap;
}

.header-cta__action-top-number {
  font-size: clamp(1rem, -2.429rem + 5.71vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.2px;
  padding-left: 0.66em;
}

.header-cta__action-bottom {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.header-cta__action-btn {
  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;
  gap: 3px;
  height: 100px;
  max-width: 196px;
  width: 100%;
  padding: 26px 31px;
  background: #EB5B2B;
  color: #FFFFFF;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (hover: none) {
  .header-cta__action-btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .header-cta__action-btn:active {
    color: rgba(255, 255, 255, 0.6);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  .header-cta__action-btn:hover {
    color: rgba(255, 255, 255, 0.6);
  }
}

.header-cta__action-btn-tag {
  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: 134px;
  width: 100%;
  border-radius: 30px;
  border: 1px solid #FFFFFF;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.header-cta__action-btn-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.36px;
}

/*====================================
First View
====================================*/
.fv {
  position: relative;
  overflow: hidden;
  background: none;
}
@media screen and (min-width:960px) {
  .fv {
    margin-top: 100px;
  }
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../assets/images/FV-back.webp) no-repeat center center/cover;
  opacity: 0.85;
  z-index: -1;
}

.fv-inner {
  width: 100%;
}
@media screen and (min-width:960px) {
  .fv-inner {
    position: relative;
  }
}

.fv-top__text {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  padding: 4px 16px;
  background-color: #007A41;
  color: #FFFFFF;
}
@media screen and (min-width:960px) {
  .fv-top__text {
    position: absolute;
    top: 51px;
    left: 0;
    width: 927px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 42px;
    padding: 8px 132px 8px 6.9444444444%;
    gap: 18px;
    background: -webkit-gradient(linear, left top, right top, color-stop(84.62%, #007A41), to(rgba(189, 228, 113, 0)));
    background: linear-gradient(90deg, #007A41 84.62%, rgba(189, 228, 113, 0) 100%);
    white-space: nowrap;
  }
}
@media screen and (min-width: 1440px) {
  .fv-top__text {
    left: calc(50% - 720px);
  }
}

.fv-top__text-top,
.fv-top__text-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.fv-top__text-top::before,
.fv-top__text-bottom::before {
  content: "";
  display: block;
  width: 1px;
  height: 1rem;
  background-color: #FFFFFF;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width:960px) {
  .fv-top__text-top::before,
  .fv-top__text-bottom::before {
    height: 1.625rem;
  }
}
.fv-top__text-top > span,
.fv-top__text-bottom > span {
  font-size: clamp(0.5rem, -0.21rem + 5.16vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1px;
}
@media screen and (min-width:960px) {
  .fv-top__text-top > span,
  .fv-top__text-bottom > span {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.1px;
  }
}
.fv-top__text-top > span:nth-of-type(1),
.fv-top__text-bottom > span:nth-of-type(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.fv-top__text-top > span:nth-of-type(2),
.fv-top__text-bottom > span:nth-of-type(2) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media screen and (min-width:960px) {
  .fv-top__text-top::after {
    content: "";
    display: block;
    width: 1px;
    height: 1.625rem;
    background-color: #FFFFFF;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.fv-top {
  width: 100%;
  height: clamp(21.625rem, 0.423rem + 154.19vw, 36.563rem);
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (min-width: 375px) {
  .fv-top {
    height: clamp(36.563rem, 24.523rem + 51.37vw, 55.313rem);
  }
}
@media screen and (min-width:960px) {
  .fv-top {
    height: 741px;
    overflow: hidden;
  }
}
.fv-top::before {
  position: absolute;
  inset: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../assets/images/FV-back-image-pc.webp") no-repeat top center/cover;
  aspect-ratio: 75/148;
  z-index: -1;
}
@media screen and (min-width:960px) {
  .fv-top::before {
    border-radius: 0px 0px 80px 80px;
  }
}
.fv-top::after {
  content: "High Quality High Speed";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "Montserrat", sans-serif;
  width: 47.2%;
  height: 180px;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 7.68px;
  opacity: 0.35;
  mix-blend-mode: soft-light;
  position: absolute;
  left: 17px;
  bottom: clamp(-3rem, -30.439rem + 117.07vw, 0rem);
}
@media screen and (min-width:960px) {
  .fv-top::after {
    bottom: -16px;
    font-size: 2.5rem;
    line-height: 2;
    letter-spacing: 20px;
    opacity: 0.8;
    width: min(65.0694444444vw, 937px);
    white-space: nowrap;
    left: 100px;
    height: auto;
  }
}

.fv-top__title {
  position: relative;
  padding-top: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3;
  color: #007A41;
  padding-inline: 16px;
}
@media screen and (min-width:960px) {
  .fv-top__title {
    position: absolute;
    top: 17px;
    left: 3.5416666667%;
    padding-top: 87px;
    padding-left: clamp(0rem, -12.625rem + 21.04vw, 6.313rem);
    gap: 14px;
    padding-top: 87px;
  }
}
@media screen and (min-width: 1440px) {
  .fv-top__title {
    left: calc(50% - 669px);
  }
}
.fv-top__title > span:nth-of-type(1) {
  font-weight: 400;
  letter-spacing: 0.46px;
  font-size: clamp(1.5625rem, -0.3rem + 13.55vw, 2.875rem);
}
@media screen and (min-width: 375px) {
  .fv-top__title > span:nth-of-type(1) {
    font-size: clamp(2.875rem, 1.141rem + 7.4vw, 4.6875rem);
  }
}
@media screen and (min-width:768px) {
  .fv-top__title > span:nth-of-type(1) {
    font-size: clamp(4.6875rem, 0.164rem + 9.42vw, 5.8125rem);
    font-weight: 400;
    letter-spacing: 0.93px;
  }
}
@media screen and (min-width:960px) {
  .fv-top__title > span:nth-of-type(1) {
    font-size: clamp(4.3125rem, 1.313rem + 5vw, 5.8125rem);
  }
}
.fv-top__title > span:nth-of-type(2) {
  font-size: clamp(1.5625rem, -0.389rem + 14.19vw, 2.9375rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.94px;
}
@media screen and (min-width: 375px) {
  .fv-top__title > span:nth-of-type(2) {
    font-size: clamp(2.9375rem, 0.068rem + 12.24vw, 5.9375rem);
  }
}
@media screen and (min-width:768px) {
  .fv-top__title > span:nth-of-type(2) {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 0.96px;
  }
}
@media screen and (min-width:768px) and (min-width:960px) {
  .fv-top__title > span:nth-of-type(2) {
    font-size: clamp(5.125rem, 4.32rem + 1.87vw, 6rem);
  }
}
.fv-top__title > span:nth-of-type(3) {
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -1px;
  font-size: clamp(1.5625rem, -0.3rem + 13.55vw, 2.875rem);
}
@media screen and (min-width: 375px) {
  .fv-top__title > span:nth-of-type(3) {
    font-size: clamp(2.875rem, 1.141rem + 7.4vw, 4.6875rem);
  }
}
@media screen and (min-width:768px) {
  .fv-top__title > span:nth-of-type(3) {
    font-size: clamp(4.6875rem, 0.164rem + 9.42vw, 5.8125rem);
    font-weight: 400;
    letter-spacing: 4.65px;
  }
}
@media screen and (min-width:960px) {
  .fv-top__title > span:nth-of-type(3) {
    font-size: clamp(4.3125rem, 1.313rem + 5vw, 5.8125rem);
  }
}
.fv-top__title::before {
  content: "";
  display: block;
  width: 100%;
  height: clamp(1.875rem, -0.698rem + 18.71vw, 3.688rem);
  position: absolute;
  left: clamp(0rem, -7.375rem + 12.29vw, 3.688rem);
  top: clamp(3.125rem, 0.73rem + 17.42vw, 4.813rem);
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(22.6%, #fff));
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #fff 22.6%);
  z-index: -1;
}
@media screen and (min-width: 376px) {
  .fv-top__title::before {
    height: clamp(3.688rem, 1.302rem + 10.18vw, 6.188rem);
    top: clamp(4.813rem, 1.524rem + 14.03vw, 8.25rem);
  }
}
@media screen and (min-width:768px) {
  .fv-top__title::before {
    top: clamp(8.438rem, 4.438rem + 8.33vw, 9.438rem);
  }
}
@media screen and (min-width:960px) {
  .fv-top__title::before {
    width: min(95.9027777778vw, 1381px);
    height: clamp(5.125rem, -0.25rem + 8.96vw, 7.813rem);
    top: clamp(12.375rem, 8.125rem + 7.08vw, 14.5rem);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(22.6%, #fff));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 22.6%);
  }
}
.fv-top__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../assets/images/FV-title-filter-sp.webp) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width:768px) {
  .fv-top__title::after {
    background: url(../assets/images/FV-title-filter-pc.webp) no-repeat center center/contain;
  }
}

.fv-top__stats {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11.13px;
  width: 80vw;
  padding-left: 16px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 376px) {
  .fv-top__stats {
    width: clamp(17.75rem, 7.227rem + 44.9vw, 28.75rem);
  }
}
@media screen and (min-width:768px) {
  .fv-top__stats {
    width: clamp(28.125rem, 25.863rem + 4.71vw, 28.688rem);
    position: absolute;
    top: clamp(21.688rem, 10.127rem + 24.08vw, 24.563rem);
    left: clamp(1.313rem, -15.313rem + 27.71vw, 9.625rem);
    gap: 18px;
  }
}
@media screen and (min-width:960px) {
  .fv-top__stats {
    width: 459px;
    top: clamp(26.125rem, 13.875rem + 20.42vw, 32.25rem);
  }
}
@media screen and (min-width: 1440px) {
  .fv-top__stats {
    left: calc(50% - 582px);
  }
}

.fv-top__image {
  position: absolute;
  right: -5px;
  bottom: -68px;
  max-width: none;
  width: clamp(15.5rem, 4.056rem + 83.23vw, 23.563rem);
  aspect-ratio: 520/389.01;
  z-index: -1;
}
@media screen and (min-width: 375px) {
  .fv-top__image {
    width: clamp(23.563rem, 13.65rem + 42.29vw, 39rem);
  }
}
@media screen and (min-width:768px) {
  .fv-top__image {
    width: clamp(33.875rem, 13.268rem + 42.93vw, 39rem);
  }
}
@media screen and (min-width:960px) {
  .fv-top__image {
    max-width: 54.4444444444vw;
    width: 100%;
    bottom: 0px;
    aspect-ratio: 1048.12/938.6;
    right: 0px;
  }
  .fv-top__image img {
    border-radius: 0px 0px 80px 0px;
  }
}
@media screen and (min-width: 1440px) {
  .fv-top__image {
    max-width: 72.8472222222vw;
    width: 100%;
    top: 0px;
    bottom: auto;
    left: calc(50% - 116px);
    right: auto;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    aspect-ratio: 1048.12/938.6;
    right: calc(50% - 989px);
  }
}

/*====================================
プロローグ
====================================*/
@media screen and (min-width:960px) {
  .prologue {
    position: relative;
    margin-inline: auto;
  }
  .prologue::before {
    content: "";
    display: block;
    background: #FFFFFF;
    width: 142px;
    height: 160px;
    position: absolute;
    top: -45.26px;
    right: calc(50% - 525px);
    background: url(../assets/svg/decoration-prologue-top-right-pc.svg) no-repeat center center/cover;
  }
}

.prologue__inner {
  padding-block: 40px;
  position: relative;
}
@media screen and (min-width:960px) {
  .prologue__inner {
    padding-block: 84px 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-inline: clamp(0.625rem, -14.5rem + 24.44vw, 7.5rem) clamp(1.25rem, -26.25rem + 44.44vw, 13.75rem);
    -ms-flex-item-align: stretch;
        align-self: stretch;
    max-width: 1203px;
    margin-inline: auto;
  }
}
.prologue__inner::before {
  display: none;
}
@media screen and (min-width:960px) {
  .prologue__inner::before {
    content: "";
    display: block;
    width: 155px;
    height: 149px;
    background: url(../assets/svg/decoration-prologue-center-right-pc.svg) no-repeat center center/cover;
    position: absolute;
    top: 253px;
    right: calc(50% - 640px);
  }
}

.prologue__decoration-box-sp {
  position: absolute;
  left: 31px;
  width: 127px;
  height: 143px;
  top: 40px;
}
@media screen and (min-width:960px) {
  .prologue__decoration-box-sp {
    display: none;
  }
}

.prologue__decoration-item01 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 84px;
  aspect-ratio: 16/21;
}

.prologue__decoration-item02 {
  position: absolute;
  top: 0;
  right: 0;
  width: 67px;
  height: 81px;
  aspect-ratio: 67/81;
}

.prologue__image01-right-sp {
  width: min(42.8104%, 218px);
  aspect-ratio: 160.54/107;
  position: absolute;
  top: 40px;
  right: 16px;
  border-radius: 24px 0px;
}
@media screen and (min-width:960px) {
  .prologue__image01-right-sp {
    display: none;
  }
}

.prologue__body {
  display: contents;
}
@media screen and (min-width:960px) {
  .prologue__body {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 450px;
            flex: 1 1 450px;
  }
}

.prologue__catchCopy {
  margin-top: 135px;
  color: #007A41;
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.8;
  letter-spacing: 0.22px;
  opacity: 0.85;
}
@media screen and (min-width:960px) {
  .prologue__catchCopy {
    margin-top: 0px;
    font-size: clamp(1.375rem, 2.08vw, 1.875rem);
    line-height: 1.7;
    letter-spacing: 0.3px;
    text-align: left;
  }
}

.prologue__list {
  margin-top: 25px;
  padding-inline: 4.2666666667%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (min-width:960px) {
  .prologue__list {
    margin-top: 26px;
    gap: 16px;
    padding-inline: 0px clamp(3.25rem, -4.607rem + 16.37vw, 10.125rem);
  }
}

.prologue__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8.8px;
  background: #FFFFFF;
  -webkit-box-shadow: 1.76px 1.76px 5.28px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 1.76px 1.76px 5.28px 0px rgba(0, 0, 0, 0.2);
  max-width: 560px;
  width: 100%;
  padding: 8px;
  margin-inline: auto;
}
@media screen and (min-width:960px) {
  .prologue__list-item {
    -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.2);
    gap: 9px;
    margin-inline: 0;
  }
}
.prologue__list-item::before {
  content: "";
  width: 24px;
  height: 17px;
  background: url(../assets/svg/icon-check.svg) no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.prologue__list-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width:960px) {
  .prologue__list-text {
    font-size: 1.125rem;
  }
}

.prologue__image-box {
  display: none;
}
@media screen and (min-width:960px) {
  .prologue__image-box {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 556px;
            flex: 1 1 556px;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

.prologue__image-box-inner {
  position: relative;
  height: 100%;
}
.prologue__image-box-inner::before {
  content: "";
  display: block;
  width: 91px;
  height: 61px;
  background: url(../assets/svg/decoration-prologue-top-left-pc.svg) no-repeat center center/cover;
  position: absolute;
  top: 35px;
  left: 139px;
}
.prologue__image-box-inner > img:nth-of-type(1) {
  position: absolute;
  top: 0;
  right: 0;
  width: 47.1223021583%;
  height: auto;
  aspect-ratio: 262/175;
}
@media screen and (min-width:960px) {
  .prologue__image-box-inner > img:nth-of-type(1) {
    top: 16px;
    right: 95px;
    width: 40.2193784278%;
  }
}
.prologue__image-box-inner > img:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 78.7769784173%;
  height: auto;
  aspect-ratio: 219/145;
}
@media screen and (min-width:960px) {
  .prologue__image-box-inner > img:nth-of-type(2) {
    bottom: 0px;
    left: 0px;
    width: 66.7276051188%;
  }
}

/*====================================
セパレーター
====================================*/
.separator__over {
  height: 19.12px;
  background-color: #007A41;
  -webkit-clip-path: polygon(0 0, calc(50% - 28px) 0, 50% 100%, calc(50% + 28px) 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, calc(50% - 28px) 0, 50% 100%, calc(50% + 28px) 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (min-width:960px) {
  .separator__over {
    height: 31.8806px;
    -webkit-clip-path: polygon(0 0, calc(50% - 40px) 0, 50% 100%, calc(50% + 40px) 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(50% - 40px) 0, 50% 100%, calc(50% + 40px) 0, 100% 0, 100% 100%, 0 100%);
  }
}

.separator {
  position: relative;
  background-color: #007A41;
}
.separator::after {
  content: "";
  display: block;
  width: 51px;
  height: 105px;
  aspect-ratio: 17/35;
  background: url(../assets/svg/decoration-prologue-bottom-right-sp.svg) no-repeat center center/cover;
  position: absolute;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  top: -52px;
  right: 14px;
}
@media screen and (min-width:960px) {
  .separator::after {
    display: none;
  }
}

.separator__inner {
  padding-block: 25.88px 42px;
  text-align: center;
  position: relative;
}
@media screen and (min-width:960px) {
  .separator__inner {
    padding-block: 24.12px 81px;
  }
}
.separator__inner::before {
  content: "";
  display: block;
  width: 182px;
  height: 251px;
  background: url(../assets/svg/decoration-prologue-bottom-left-pc.svg) no-repeat center center/cover;
  position: absolute;
  top: -69px;
  left: calc(50% - 650px);
}

.separator__title {
  color: #FFFFFF;
  font-size: clamp(1.125rem, 0.415rem + 5.16vw, 1.625rem);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 2.6px;
  position: relative;
}
@media screen and (min-width:960px) {
  .separator__title {
    font-size: 2.5rem;
    line-height: 2.2;
    letter-spacing: 3px;
  }
}
.separator__title::before, .separator__title::after {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  position: absolute;
}
@media screen and (min-width:960px) {
  .separator__title::before, .separator__title::after {
    width: 52px;
    height: 52px;
  }
}
.separator__title::before {
  top: -13px;
  left: calc(50% - 147.5px);
  background: url(../assets/svg/decoration-quotation-start.svg) no-repeat center center/contain;
}
@media screen and (min-width:960px) {
  .separator__title::before {
    top: 0;
    left: calc(50% - 385.5px);
  }
}
.separator__title::after {
  bottom: -11px;
  right: calc(50% - 153.5px);
  background: url(../assets/svg/decoration-quotation-end.svg) no-repeat center center/contain;
}
@media screen and (min-width:960px) {
  .separator__title::after {
    bottom: 6px;
    right: calc(50% - 382.5px);
  }
}

.separator__text {
  margin-top: 15px;
  color: #FFFFFF;
  color: var(--White, #fff);
  text-align: center;
  font-size: 1.125rem;
  line-height: 2.2;
  letter-spacing: 0.9px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-color: rgba(255, 255, 255, 0.6);
  text-decoration-thickness: 20%; /* 3.6px */
  text-underline-offset: 40%; /* 7.2px */
  text-underline-position: from-font;
}
@media screen and (min-width:960px) {
  .separator__text {
    margin-top: -4px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-underline-offset: 23%; /* 7.2px */
  }
}

/*====================================
policy-over
====================================*/
.policy-over {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#007A41), color-stop(30%, #007A41), color-stop(30%, #FFFFFF), to(#FFFFFF));
  background: linear-gradient(to bottom, #007A41 0%, #007A41 30%, #FFFFFF 30%, #FFFFFF 100%);
  z-index: -2;
  overflow: hidden;
}
@media screen and (min-width:960px) {
  .policy-over {
    background: -webkit-gradient(linear, left top, left bottom, from(#007A41), color-stop(50%, #007A41), color-stop(50%, #FFFFFF), to(#FFFFFF));
    background: linear-gradient(to bottom, #007A41 0%, #007A41 50%, #FFFFFF 50%, #FFFFFF 100%);
  }
}
.policy-over::before {
  content: "";
  display: block;
  width: 192%;
  height: auto;
  aspect-ratio: 720/618;
  border-radius: 50%;
  top: 0;
  left: 50%;
  background-color: #FFFFFF;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  z-index: -1;
}
@media screen and (min-width:960px) {
  .policy-over::before {
    width: 152.7777777778%;
    height: auto;
    aspect-ratio: 2200/1157;
  }
}

.policy-over__inner {
  padding-block: 76px 48px;
  padding-inline: clamp(0.625rem, -1.504rem + 15.48vw, 2.125rem);
  position: relative;
}
@media screen and (min-width:768px) {
  .policy-over__inner {
    padding-block: 111px 130px;
    text-align: center;
  }
}
.policy-over__inner::before {
  content: "";
  display: block;
  width: 78.4px;
  height: 73px;
  background: url(../assets/svg/decoration-policy-over-top-sp.svg) no-repeat center center/contain;
  position: absolute;
  top: -7px;
  left: calc(50% - 102.2px);
}
@media screen and (min-width:960px) {
  .policy-over__inner::before {
    width: 182px;
    height: 251px;
    top: 247px;
    left: auto;
    right: calc(50% - 611.2px);
  }
}

.policy-over__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 280px;
  width: 100%;
  padding: 10px 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  margin-inline: auto;
  border: 1px solid #2B2B2B;
  color: #2B2B2B;
  font-size: clamp(0.75rem, 0.395rem + 2.58vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media screen and (min-width:960px) {
  .policy-over__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 6px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 472px;
    font-size: 1.5rem;
    letter-spacing: 1.2px;
  }
}

.policy-over__subtitle {
  margin-top: 16px;
  color: #007A41;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
@media screen and (min-width:960px) {
  .policy-over__subtitle {
    margin-top: 24px;
    font-size: 1.875rem;
    letter-spacing: 0px;
  }
}

.policy-over__title {
  margin-top: 1px;
  color: #007A41;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-size: clamp(1.75rem, 0.949rem + 3.42vw, 3rem);
}
@media screen and (min-width:960px) {
  .policy-over__title {
    line-height: 1.5;
    letter-spacing: 0.48px;
  }
}

.policy-over__text {
  margin-top: 22px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.32px;
  text-align: justify;
}
@media screen and (min-width:960px) {
  .policy-over__text {
    margin-top: 35px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.32px;
    text-align: center;
  }
}

/*====================================
policy
====================================*/
.policy {
  position: relative;
  padding-bottom: 90px;
}
@media screen and (min-width:960px) {
  .policy {
    padding-bottom: 124px;
  }
}
.policy::before {
  content: "";
  display: block;
  width: 85px;
  height: 84px;
  background: url(../assets/svg/decoration-policy-top-right-sp.svg) no-repeat center center/contain;
  position: absolute;
  top: -45px;
  right: 13px;
}
@media screen and (min-width:960px) {
  .policy::before {
    display: none;
  }
}

.policy__inner {
  position: relative;
}
.policy__inner::before {
  content: "";
  display: block;
  width: 96px;
  height: 94px;
  background: url(../assets/svg/decoration-policy-bottom-right-sp.svg) no-repeat center center/contain;
  position: absolute;
  bottom: -74px;
  right: 48px;
  z-index: 1;
}
@media screen and (min-width:960px) {
  .policy__inner::before {
    display: none;
  }
}
.policy__inner::after {
  content: "";
  display: block;
  width: 96px;
  height: 94px;
  background: url(../assets/svg/decoration-policy-bottom-left-sp.svg) no-repeat center center/contain;
  position: absolute;
  bottom: -85px;
  right: 167px;
  z-index: 1;
}
@media screen and (min-width:960px) {
  .policy__inner::after {
    background: url(../assets/svg/decoration-policy-bottom-left-pc.svg) no-repeat center center/contain;
    width: 154px;
    height: 167px;
    bottom: -31px;
    right: calc(50% + 121px);
  }
}

.policy__list {
  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;
  gap: 54px;
}
@media screen and (min-width:960px) {
  .policy__list {
    gap: 78px;
  }
}

.policy-item {
  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;
  position: relative;
  width: 100%;
  padding-inline: clamp(1.25rem, -0.617rem + 9.03vw, 1.5rem);
}
@media screen and (min-width:960px) {
  .policy-item {
    display: block;
  }
}
.policy-item:before {
  content: "";
  display: block;
  background: url(../assets/images/policy-background-sp.webp) no-repeat center center/cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 542px;
  aspect-ratio: 375/542;
  left: 0;
  right: 0;
  top: 26px;
  z-index: -1;
}
@media screen and (min-width:960px) {
  .policy-item:before {
    background: url(../assets/images/policy-proficiency-preparedness-back-pc.webp) no-repeat center center/cover;
    top: 0;
    left: 0;
    right: 19.0972222222%;
    width: 80.9027777778%;
    height: 520px;
  }
}
.policy-item:nth-of-type(1) .policy-item__body, .policy-item:nth-of-type(3) .policy-item__body {
  border-radius: 0px 40px 0px 40px;
}
@media screen and (min-width:960px) {
  .policy-item:nth-of-type(1) .policy-item__body, .policy-item:nth-of-type(3) .policy-item__body {
    border-radius: 0px 0px;
  }
}
@media screen and (min-width:960px) {
  .policy-item:nth-of-type(1) .policy-item__body .policy-item__image img, .policy-item:nth-of-type(3) .policy-item__body .policy-item__image img {
    border-radius: 0px 60px;
  }
}
@media screen and (min-width:960px) {
  .policy-item:nth-of-type(1) .policy-item__body .policy-item__text-box, .policy-item:nth-of-type(3) .policy-item__body .policy-item__text-box {
    border-radius: 0px 60px;
  }
}
.policy-item:nth-of-type(1)::after {
  content: "";
  display: block;
  width: 64px;
  height: 51px;
  background: url(../assets/svg/decoration-policy-center-right-sp.svg) no-repeat center center/contain;
  position: absolute;
  bottom: -35px;
  right: 55px;
}
@media screen and (min-width:960px) {
  .policy-item:nth-of-type(1)::after {
    display: none;
  }
}
@media screen and (min-width:960px) {
  .policy-item:nth-of-type(2)::before {
    left: 19.0972222222%;
  }
}
.policy-item:nth-of-type(2)::after {
  content: "";
  display: block;
  width: 99.114px;
  height: 90px;
  background: url(../assets/svg/decoration-policy-center-left-sp.svg) no-repeat center center/contain;
  position: absolute;
  top: -11px;
  left: 0;
}
@media screen and (min-width:960px) {
  .policy-item:nth-of-type(2)::after {
    width: 174px;
    height: 158px;
    aspect-ratio: 87/79;
    top: -227px;
    left: calc(50% - 340px);
  }
}
.policy-item:nth-of-type(2) .policy-item__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-radius: 40px 0px 40px 0px;
}
.policy-item:nth-of-type(2) .policy-item__title {
  left: calc(50% - clamp(27.813rem, 15.313rem + 20.83vw, 34.063rem));
}
@media screen and (min-width:960px) {
  .policy-item:nth-of-type(2) .policy-item__image img {
    border-radius: 60px 0px;
  }
}
@media screen and (min-width:960px) {
  .policy-item:nth-of-type(2) .policy-item__text-box {
    border-radius: 60px 0px;
  }
}
.policy-item:nth-of-type(3)::after {
  content: "";
  display: block;
  width: 74.663px;
  height: 42.149px;
  background: url(../assets/svg/decoration-policy-center-center-sp.svg) no-repeat center center/cover;
  position: absolute;
  top: -82.64px;
  right: 68px;
}
@media screen and (min-width:960px) {
  .policy-item:nth-of-type(3)::after {
    width: 124px;
    height: 70px;
    aspect-ratio: 62/35;
    top: -225px;
    right: calc(50% - 452px);
    -webkit-transform: rotate(19.197deg);
            transform: rotate(19.197deg);
  }
}

.policy-item-inner {
  display: contents;
}
@media screen and (min-width:960px) {
  .policy-item-inner {
    display: block;
    max-width: 1240px;
    padding-inline: 20px;
    width: 100%;
    margin-inline: auto;
    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;
    position: relative;
  }
}

.policy-item__title {
  color: #007A41;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:960px) {
  .policy-item__title {
    -ms-flex-item-align: end;
        align-self: flex-end;
    position: absolute;
    top: -45px;
    left: clamp(28.875rem, 1.75rem + 45.21vw, 42.438rem);
  }
}
.policy-item__title::after {
  content: "";
  display: block;
  width: 1px;
  height: 35px;
  background: #007A41;
  opacity: 0.6;
}

.policy-item__title-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1;
  opacity: 0.6;
  font-size: clamp(1.875rem, 0.456rem + 10.32vw, 2.875rem);
}
@media screen and (min-width:960px) {
  .policy-item__title-text {
    font-size: clamp(3.75rem, 1.25rem + 4.17vw, 5rem);
  }
}

.policy-item__body {
  margin-top: 14px;
  overflow: hidden;
  margin-inline: clamp(0.75rem, -0.315rem + 7.74vw, 1.5rem);
  -webkit-box-shadow: 4px 4px 20px 0px rgba(0, 122, 65, 0.2);
          box-shadow: 4px 4px 20px 0px rgba(0, 122, 65, 0.2);
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width:960px) {
  .policy-item__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-radius: 0;
    margin-inline: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    max-width: 100%;
    margin-top: 0;
  }
}

@media screen and (min-width:960px) {
  .policy-item__image {
    overflow: hidden;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 599px;
            flex: 0 1 599px;
    margin-top: 39px;
  }
}

.policy-item__text-box {
  border-radius: 0px 0px 0px 40px;
  background-color: #FFFFFF;
  padding: 31px clamp(0.75rem, -0.315rem + 7.74vw, 1.5rem);
  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;
  gap: 43px;
}
@media screen and (min-width:960px) {
  .policy-item__text-box {
    gap: 35px;
    -webkit-box-shadow: 5px 5px 30px 0px rgba(0, 122, 65, 0.15);
            box-shadow: 5px 5px 30px 0px rgba(0, 122, 65, 0.15);
    -webkit-box-flex: 0;
        -ms-flex: 0 1 600px;
            flex: 0 1 600px;
    margin-top: 119px;
    padding: 54px clamp(1.25rem, -4.5rem + 9.58vw, 4.125rem);
  }
}

.policy-item__text-box-item {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (min-width:960px) {
  .policy-item__text-box-item {
    gap: 14px;
  }
}

.policy-item__text-box-title {
  color: #007A41;
  font-size: clamp(1.125rem, 0.965rem + 0.68vw, 1.375rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.38px;
}
@media screen and (min-width:960px) {
  .policy-item__text-box-title {
    line-height: 1.8;
    letter-spacing: 0px;
  }
}

.policy-item__text-box-text {
  font-size: clamp(0.875rem, 0.835rem + 0.17vw, 0.9375rem);
  line-height: 1.8;
  letter-spacing: 0.14px;
  text-align: justify;
}
@media screen and (min-width:960px) {
  .policy-item__text-box-text {
    letter-spacing: 0.32px;
  }
}

/*====================================
price
====================================*/
.price {
  background-color: #FFFFFF;
  position: relative;
}

.price__inner {
  background-color: #007A41;
  border-radius: 120px 0px 0px 0px;
  background: #007A41;
  margin-left: 6.4%;
  padding-inline: 24px;
  padding-block: 70px;
}
@media screen and (min-width:960px) {
  .price__inner {
    margin-left: 14.8611111111%;
    padding-inline: clamp(2.5rem, -7.5rem + 16.67vw, 7.5rem);
    padding-block: 84px 114px;
    border-radius: 200px 0px 0px 0px;
  }
}

.price__title {
  color: #FFFFFF;
  font-size: clamp(1.75rem, 0.949rem + 3.42vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.28px;
  text-align: center;
  padding-bottom: 51px;
}
@media screen and (min-width:960px) {
  .price__title {
    padding-bottom: 75px;
    line-height: 2;
    letter-spacing: 0.48px;
  }
}

.price__body {
  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;
  gap: 62px;
}
@media screen and (min-width:960px) {
  .price__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: min(4.7222222222vw, 68px);
    max-width: 984px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-inline: auto;
  }
}

.price-card {
  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: 32px 0px;
  border-radius: 21.087px;
  background: #FFFFFF;
  width: 100%;
  max-width: 560px;
}
@media screen and (min-width:960px) {
  .price-card {
    max-width: 440px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0.5 440px;
            flex: 0 0.5 440px;
    padding: 50px 0px;
    border-radius: 30px;
  }
}

.price-card__notice {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.18px;
}
@media screen and (min-width:960px) {
  .price-card__notice {
    font-size: 1.5rem;
    letter-spacing: 0.24px;
  }
}
.price-card__notice strong {
  position: relative;
}
.price-card__notice strong::after {
  content: "";
  display: block;
  width: 38.204px;
  height: 8.787px;
  background: url(../assets/svg/decoration-underline.svg) no-repeat center center/contain;
  position: absolute;
  bottom: -8px;
  left: 0;
}
@media screen and (min-width:960px) {
  .price-card__notice strong::after {
    width: 70px;
    height: 12.5px;
    left: -12px;
  }
}

.price-card__tag-area {
  margin-top: 20.95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11.25px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (min-width:960px) {
  .price-card__tag-area {
    margin-top: 28.5px;
    gap: 16px;
  }
}

.price-card__tag {
  display: inline-grid;
  place-items: center;
  background-color: #2B2B2B;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 2.623px 7.029px;
}
@media screen and (min-width:960px) {
  .price-card__tag {
    padding: 3px 10px;
    font-size: 1.125rem;
  }
}

.price-card__amount {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width:960px) {
  .price-card__amount {
    margin-top: 20px;
  }
}

.price-card__main {
  color: #EB5B2B;
  text-align: center;
  font-weight: 500;
  line-height: 0.9; /* 70.2px */
  position: relative;
}
.price-card__main::after {
  content: "";
  position: absolute;
  background-color: #2B2B2B;
  left: 50%;
  width: 52.718px;
  height: 1.406px;
  bottom: -30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width:960px) {
  .price-card__main::after {
    width: 75px;
    height: 2px;
    bottom: -36px;
  }
}

.price-card__value {
  background: url(../assets/svg/0.svg) no-repeat center center/contain;
  width: 2.3595rem;
  height: 56.784px;
  display: inline-block;
}
@media screen and (min-width:960px) {
  .price-card__value {
    width: 3.875rem;
    height: 85.176px;
  }
}

.price-card__unit {
  font-size: 1.75rem;
}
@media screen and (min-width:960px) {
  .price-card__unit {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.price-card__subtext {
  position: absolute;
  top: -7px;
  left: calc(50% + clamp(0rem, -5.323rem + 38.71vw, 3.75rem));
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  height: 70px;
  width: 70px;
  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;
  border-radius: 50%;
  border: 1px solid #2B2B2B;
  text-align: center;
}
@media screen and (min-width:960px) {
  .price-card__subtext {
    left: clamp(7.188rem, 5.313rem + 3.13vw, 8.125rem);
    font-size: 1.125rem;
    height: 92px;
    width: 92px;
  }
}

.price-card__promo {
  margin-top: 58px;
}
@media screen and (min-width:960px) {
  .price-card__promo {
    margin-top: 83px;
  }
}

.price-card__promo-label {
  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;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  border-radius: 35.145px;
  border: 0.703px solid #2B2B2B;
  max-width: 257px;
  width: 100%;
  margin-inline: auto;
  padding-block: 12px;
  padding-inline: 40px;
}
@media screen and (min-width:960px) {
  .price-card__promo-label {
    max-width: 375px;
    padding: 9px 66px;
    border-radius: 50px;
    border: 1px solid #2B2B2B;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.price-card__promo-price {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:960px) {
  .price-card__promo-price {
    margin-top: 21px;
  }
}

.price-card__promo-price-number {
  width: clamp(5.438rem, 0.864rem + 33.26vw, 8.66rem);
  height: 39.24px;
  background: url(../assets/svg/15000.svg) no-repeat center center/contain;
  display: inline-block;
}
@media screen and (min-width:960px) {
  .price-card__promo-price-number {
    width: 187.56px;
    height: 55.24px;
  }
}

.price-card__promo-price-unit {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width:960px) {
  .price-card__promo-price-unit {
    font-size: 2rem;
    padding-left: 6px;
    line-height: 1.9;
  }
}

.price-card__promo-note {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width:960px) {
  .price-card__promo-note {
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.5;
  }
}

.price__reason {
  color: #FFFFFF;
  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;
  gap: 53px;
  max-width: 560px;
  width: 100%;
}
@media screen and (min-width:960px) {
  .price__reason {
    gap: 73px;
    max-width: none;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 478px;
            flex: 1 1 478px;
  }
}

@media screen and (min-width:960px) {
  .price__reason-item:nth-of-type(2) .price__reason-item-tag-text {
    padding-block: 2px;
    padding-inline: 29px;
    line-height: 1.5;
    letter-spacing: 2.5px;
  }
}

.price__reason-item-tag {
  display: grid;
  place-items: center;
}
@media screen and (min-width:960px) {
  .price__reason-item-tag {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.price__reason-item-tag::after {
  content: "";
  width: 1px;
  height: 25px;
  background-color: #FFFFFF;
}

.price__reason-item-tag-text {
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: clamp(10px, 0.093rem + 3.87vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 3.2px;
  border-radius: 50px;
  border: 1px solid #FFFFFF;
  max-width: 303px;
  width: 100%;
  padding-block: 3px;
}
@media screen and (min-width:960px) {
  .price__reason-item-tag-text {
    padding-inline: 27px;
    max-width: none;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 4px;
    padding-block: 2px;
  }
}

.price__reason-item-title {
  margin-top: 7px;
  font-size: clamp(1.125rem, 0.965rem + 0.68vw, 1.375rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.18px;
}
@media screen and (min-width:960px) {
  .price__reason-item-title {
    margin-top: 2px;
    line-height: 1.7;
    letter-spacing: 0.22px;
  }
}

.price__reason-item-description {
  margin-top: 14px;
  font-size: clamp(0.875rem, 0.835rem + 0.17vw, 0.9375rem);
  line-height: 1.8;
  letter-spacing: 0.28px;
  text-align: justify;
}
@media screen and (min-width:960px) {
  .price__reason-item-description {
    letter-spacing: 0.3px;
  }
}

/*====================================
flow
====================================*/
.flow {
  background-color: #007A41;
  overflow: hidden;
  padding-bottom: 40px;
}
@media screen and (min-width:960px) {
  .flow {
    padding-bottom: 99px;
  }
}

.flow__inner {
  margin-right: 6.4%;
  padding-inline: 24px;
  border-radius: 0px 120px 0px 0px;
  border-top: 3px solid #007A41;
  border-right: 3px solid #007A41;
  border-bottom: 3px solid #007A41;
  background: #FFFFFF;
  padding-block: 66px 38px;
}
@media screen and (min-width:960px) {
  .flow__inner {
    margin-right: 8.3333333333%;
    padding-left: clamp(2.5rem, -7.5rem + 16.67vw, 7.5rem);
    border-radius: 0px 200px 0px 0px;
    padding-block: 92px 108px;
    padding-right: clamp(2.5rem, -5rem + 12.5vw, 6.25rem);
  }
}

.flow__title {
  color: #007A41;
  font-size: clamp(1.75rem, 0.949rem + 3.42vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.28px;
  text-align: center;
}
@media screen and (min-width:960px) {
  .flow__title {
    letter-spacing: 0.48px;
  }
}

.flow__list {
  margin-top: 52px;
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 560px;
  margin-inline: auto;
}
@media screen and (min-width:960px) {
  .flow__list {
    margin-top: 87px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 34px;
       -moz-column-gap: 34px;
            column-gap: 34px;
    row-gap: 80px;
    max-width: none;
  }
}

.flow-item {
  padding-block: 26px 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 24px;
  border-top: 4px solid rgba(43, 43, 43, 0.2);
}
@media screen and (min-width:960px) {
  .flow-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 27px;
    min-height: 520px;
    padding: 0px 41px 30px 0px;
    border-radius: 0px 0px 80px 0px;
    border-right: 5px solid rgba(43, 43, 43, 0.2);
    border-bottom: 5px solid rgba(43, 43, 43, 0.2);
    border-top: none;
  }
}
.flow-item:nth-of-type(n + 3) .flow-item__step {
  background: #007A41;
}
.flow-item:nth-of-type(n + 3) .flow-item__step::after {
  background-color: #007A41;
}
.flow-item:nth-of-type(n + 3) .flow-item__body-title {
  color: #007A41;
  text-align: center;
}
.flow-item:nth-of-type(n + 3) .flow-item__body__image {
  background: rgba(0, 122, 65, 0.1);
}

.flow-item__step {
  color: #FFFFFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 2.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #2B2B2B;
  position: relative;
}
@media screen and (min-width:960px) {
  .flow-item__step {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 1.875rem;
    line-height: 1;
    letter-spacing: 3px;
    padding-block: 7px;
  }
}
.flow-item__step::after {
  content: "";
  width: 100%;
  height: 27.995px;
  background-color: #2B2B2B;
  position: absolute;
  bottom: -27.995px;
  left: 0;
  right: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width:960px) {
  .flow-item__step::after {
    width: 28px;
    height: 100%;
    top: 0;
    left: 100%;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
}

.flow-item__body {
  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;
  gap: 17px;
}
@media screen and (min-width:960px) {
  .flow-item__body {
    gap: 11px;
  }
}

.flow-item__body-title {
  color: #EB5B2B;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width:960px) {
  .flow-item__body-title {
    font-size: 1.5rem;
  }
}

.flow-item__body-text {
  color: #2B2B2B;
  font-size: clamp(0.875rem, 0.835rem + 0.17vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.26px;
  text-align: justify;
}
@media screen and (min-width:960px) {
  .flow-item__body-text {
    letter-spacing: 0.3px;
  }
}

.flow-item__body__image {
  width: 118px;
  height: 118px;
  fill: #EB5B2B;
  background: rgba(235, 91, 43, 0.1);
  border-radius: 50%;
  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;
}
@media screen and (min-width:960px) {
  .flow-item__body__image {
    margin-top: 17px;
    width: 184px;
    height: 184px;
  }
}
.flow-item__body__image img {
  width: 81.5217391304%;
  height: auto;
}

.step-item--highlight {
  margin-block: 20px 60px;
  width: 100%;
}
@media screen and (min-width:960px) {
  .step-item--highlight {
    position: relative;
    margin-block: 0px;
  }
}

.step-item__text {
  position: relative;
  background-color: #EB5B2B;
  margin-left: 22.4%;
  width: clamp(19.375rem, 6.934rem + 53.08vw, 38.75rem);
  border-radius: 100px 0px 0px 100px;
  border: 0.549px solid #EB5B2B;
  padding-left: clamp(2.813rem, 0.565rem + 9.59vw, 6.313rem);
  padding-block: 13px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFFFFF;
  gap: 4px;
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  .step-item__text {
    margin-left: clamp(5.25rem, 1.799rem + 14.73vw, 10.625rem);
  }
}
@media screen and (min-width:960px) {
  .step-item__text {
    position: absolute;
    top: 43%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 178px;
    padding-inline: clamp(2.828rem, -0.422rem + 5.42vw, 4.453rem);
    overflow: visible;
    margin-left: 68px;
    right: -100%;
    width: 180%;
  }
}
.step-item__text:after {
  content: "";
  width: 217px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: -33px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width:960px) {
  .step-item__text:after {
    width: 69%;
    right: -40px;
  }
}
.step-item__text:before {
  display: none;
}
@media screen and (min-width:960px) {
  .step-item__text:before {
    display: block;
    content: "";
    width: 60px;
    height: 2px;
    background-color: #EB5B2B;
    position: absolute;
    top: 50%;
    left: -74px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.step-item__text--over {
  width: 73.001px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (min-width:960px) {
  .step-item__text--over {
    font-size: 1.875rem;
    line-height: 1.3;
    width: 120px;
  }
}

.step-item__text--under {
  font-size: 2rem;
  line-height: 1.3;
}
@media screen and (min-width:960px) {
  .step-item__text--under {
    font-size: 3.4375rem;
    line-height: 1.3;
    letter-spacing: 5.5px;
  }
}

.step-item__note {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.44px;
  text-align: center;
  padding-left: 24px;
}
@media screen and (min-width:960px) {
  .step-item__note {
    margin-top: 0px;
    font-size: clamp(1.125rem, 0.375rem + 1.25vw, 1.5rem);
    letter-spacing: 0.48px;
    position: absolute;
    top: calc(50% + 92px);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 4.7222222222vw;
    white-space: nowrap;
    text-wrap: nowrap;
    padding-left: 16px;
  }
}

/*====================================
registration-criteria
====================================*/
.registration-criteria {
  background: url(../assets/images/FV-back.webp) no-repeat center center/cover;
}

.registration-criteria__inner {
  padding-inline: 16px;
  max-width: 560px;
  margin-inline: auto;
  padding-block: 68px 40px;
  position: relative;
}
@media screen and (min-width:960px) {
  .registration-criteria__inner {
    max-width: 1440px;
    padding-inline: 182.5px 180.5px;
    margin-inline: auto;
    padding-block: 108px 120px;
    overflow: hidden;
  }
}
.registration-criteria__inner::before, .registration-criteria__inner::after {
  position: absolute;
  content: "";
}
.registration-criteria__inner::before {
  width: 64px;
  height: 84px;
  aspect-ratio: 16/21;
  background: url(../assets/svg/decoration-registration-criteria-top-left-sp.svg) no-repeat center center/contain;
  top: 39px;
  left: 24px;
}
@media screen and (min-width:960px) {
  .registration-criteria__inner::before {
    width: 91px;
    height: 62px;
    aspect-ratio: 91/62;
    top: 218px;
    left: calc(50% - 494px);
    background: url(../assets/svg/decoration-registration-criteria-top-left-pc.svg) no-repeat center center/contain;
  }
}
.registration-criteria__inner::after {
  width: 67px;
  height: 81px;
  background: url(../assets/svg/decoration-registration-criteria-top-right.svg) no-repeat center center/contain;
  top: 12px;
  right: 30px;
}
@media screen and (min-width:960px) {
  .registration-criteria__inner::after {
    width: 150px;
    height: 169px;
    top: 18px;
    bottom: auto;
    background: url(../assets/svg/decoration-registration-criteria-top-right.svg) no-repeat center center/contain;
    left: calc(50% + 400px);
  }
}

.registration-criteria__title {
  text-align: center;
  color: #007A41;
  font-size: clamp(1.75rem, 0.949rem + 3.42vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.28px;
}
@media screen and (min-width:960px) {
  .registration-criteria__title {
    font-size: 3.0625rem;
    line-height: 1.2;
    letter-spacing: 0.48px;
  }
}

.registration-criteria__text {
  margin-top: 23px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.32px;
  font-weight: 500;
  padding-inline: 8px;
}
@media screen and (min-width:960px) {
  .registration-criteria__text {
    margin-top: 39px;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }
}

.registration-criteria__list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 19px;
}
@media screen and (min-width:960px) {
  .registration-criteria__list {
    margin-top: 74px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    row-gap: 34px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.registration-criteria__list-item {
  padding-bottom: 19px;
  border-radius: 10px 0px;
  background: #FFFFFF;
  -webkit-box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
}

.registration-criteria__list-item-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 108px;
  height: 26px;
  border-radius: 10px 0px;
  background: #007A41;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.36px;
}

.registration-criteria__list-item-text {
  padding-inline: clamp(0.313rem, -1.373rem + 12.26vw, 1.5rem);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.3px;
}
@media screen and (min-width:960px) {
  .registration-criteria__list-item-text {
    padding-inline: 24px 28px;
  }
}

.registration-criteria__note-text {
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width:960px) {
  .registration-criteria__note-text {
    margin-top: 32px;
    font-size: 0.875rem;
  }
}

/*====================================
service
====================================*/
.service {
  background: url(../assets/images/FV-back.webp) no-repeat center center/cover;
  position: relative;
}
.service::before {
  display: none;
}
@media screen and (min-width:960px) {
  .service::before {
    position: absolute;
    display: block;
    content: "";
    width: 171px;
    height: 251px;
    background: url(../assets/svg/decoration-service-top-left-pc.svg) no-repeat center center/contain;
    top: -75px;
    left: calc(50% - 660px);
  }
}

.service__inner {
  padding-block: 24px 115px;
  position: relative;
}
@media screen and (min-width:960px) {
  .service__inner {
    padding-block: 10px 109px;
  }
}
.service__inner::before, .service__inner::after {
  position: absolute;
  content: "";
}
.service__inner::before {
  width: 143.866px;
  height: 69.402px;
  background: url(../assets/svg/decoration-service-top-right-sp.svg) no-repeat center center/contain;
  top: -37px;
  right: 27.63px;
}
@media screen and (min-width:960px) {
  .service__inner::before {
    width: 124px;
    height: 70px;
    background: url(../assets/svg/decoration-service-top-right-pc.svg) no-repeat center center/contain;
    top: -128px;
    right: 68px;
  }
}
@media screen and (min-width: 1440px) {
  .service__inner::before {
    right: calc(50% - 654px);
  }
}
.service__inner::after {
  width: 85px;
  height: 85px;
  background: url(../assets/svg/decoration-service-bottom-left.svg) no-repeat center center/contain;
  bottom: 22px;
  left: 43px;
}
@media screen and (min-width:960px) {
  .service__inner::after {
    width: 151px;
    height: 143px;
    bottom: 39px;
    right: clamp(2.438rem, -10.313rem + 21.25vw, 8.813rem);
    left: auto;
  }
}
@media screen and (min-width: 1440px) {
  .service__inner::after {
    right: calc(50% - 580px);
  }
}

.service__title {
  text-align: center;
  color: #007A41;
  font-size: clamp(1.75rem, 0.949rem + 3.42vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.28px;
}

.service__table-wrapper {
  margin-top: 27px;
  overflow: auto;
}
@media screen and (min-width:960px) {
  .service__table-wrapper {
    margin-top: 45px;
    overflow: hidden;
    margin-inline: auto;
    max-width: 1109px;
    width: 100%;
    padding-right: 7px;
  }
}

.service-table {
  border-collapse: separate;
  border-spacing: 0px;
  table-layout: fixed;
  margin-inline: auto;
  width: 100%;
}

.service-table {
  padding-left: 16px;
}
.service-table th:nth-child(1) {
  width: 60px;
}
@media screen and (min-width:960px) {
  .service-table th:nth-child(1) {
    width: clamp(7.188rem, 1.188rem + 10vw, 9.938rem);
  }
}
.service-table th:nth-child(2), .service-table th:nth-child(3), .service-table th:nth-child(4) {
  width: 225px;
}
@media screen and (min-width:960px) {
  .service-table th:nth-child(2), .service-table th:nth-child(3), .service-table th:nth-child(4) {
    width: clamp(16.25rem, 9.977rem + 10.45vw, 19.125rem);
  }
}
.service-table th .service-table__item-header {
  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: 100%;
  height: 52px;
  border-radius: 20px 20px 0px 0px;
  border-right: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  font-weight: 700;
  color: #FFFFFF;
  background-color: transparent;
  font-size: 1.125rem;
}
@media screen and (min-width:960px) {
  .service-table th .service-table__item-header {
    height: 64px;
    font-size: 1.5rem;
  }
}
.service-table th:nth-child(2) > .service-table__item-header {
  background-color: #EB5B2B;
}
.service-table th:nth-child(3), .service-table th:nth-child(4) {
  vertical-align: bottom;
}
.service-table th:nth-child(3) > .service-table__item-header, .service-table th:nth-child(4) > .service-table__item-header {
  background-color: #007A41;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: bottom;
  font-weight: 700;
  line-height: 1.5;
  height: 40px;
  font-size: 15px;
}
@media screen and (min-width:960px) {
  .service-table th:nth-child(3) > .service-table__item-header, .service-table th:nth-child(4) > .service-table__item-header {
    font-size: 1.125rem;
    height: 54px;
  }
}

.service-table__body tr,
.service-table__body th,
.service-table__body td {
  border-top: 1px solid #007A41;
}
.service-table__body th {
  background: #FFFFFF;
}
@media screen and (min-width: 375px) {
  .service-table__body th {
    position: sticky;
    left: 0;
    z-index: 2;
  }
}
.service-table__body th span {
  font-size: 0.875rem;
  line-height: 1.1;
  font-weight: 700;
  color: #007A41;
  white-space: pre;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  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: 100%;
  text-align: justify;
}
@media screen and (min-width:960px) {
  .service-table__body th span {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 1rem;
    line-height: 1.5;
    padding-top: 0;
  }
}
.service-table__body td {
  padding: 9px 16px 12px 16px;
  vertical-align: baseline;
}
@media screen and (min-width:960px) {
  .service-table__body td {
    padding-block: 8px 12px;
    padding-inline: clamp(0.625rem, -1.83rem + 4.09vw, 1.75rem);
  }
}
.service-table__body td:nth-child(2) {
  background: #FFEEE4;
}
.service-table__body td:nth-child(3), .service-table__body td:nth-child(4) {
  background: #FFFFFF;
}
.service-table__body td:nth-child(3) .service-table__item-title-text, .service-table__body td:nth-child(4) .service-table__item-title-text {
  color: #007A41;
}
.service-table__body:nth-child(6) tr,
.service-table__body:nth-child(6) th,
.service-table__body:nth-child(6) td {
  border-bottom: 1px solid #007A41;
}

.service-table__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
}
@media screen and (min-width:960px) {
  .service-table__item-title {
    gap: 0px;
  }
}

.service-table__item-title-rating {
  padding: 2px;
  display: grid;
  place-items: center;
}
@media screen and (min-width:960px) {
  .service-table__item-title-rating {
    padding: 5px;
  }
}

.service-table__item-title-text {
  color: #EB5B2B;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.service-table__item-text {
  margin-top: 5px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12px;
  text-align: justify;
}
@media screen and (min-width:960px) {
  .service-table__item-text {
    margin-top: 0px;
  }
}

.service__note {
  margin-top: 34px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8; /* 28.8px */
  letter-spacing: 0.16px;
  padding-inline: 16px;
  text-align: left;
}
@media screen and (min-width:960px) {
  .service__note {
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.2px;
    margin-top: 52px;
  }
}

/*====================================
attention
====================================*/
.attention {
  z-index: 0;
  position: relative;
}
.attention::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #007A41;
  opacity: 0.7;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width:960px) {
  .attention::before {
    height: 100%;
  }
}
.attention::after {
  position: absolute;
  content: "";
  background: url(../assets/images/attention-back-sp.webp) no-repeat center center/cover;
  aspect-ratio: 75/161;
  top: 0;
  left: 0;
  width: 100%;
  height: 145.5696202532%;
  z-index: -2;
}
@media screen and (min-width:960px) {
  .attention::after {
    background: url(../assets/images/attention-back-pc.webp) no-repeat center center/cover;
    aspect-ratio: 288/161;
    height: 805px;
  }
}

.attention__title {
  position: absolute;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 9px;
  width: 220px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 30px;
  background: #2B2B2B;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.16px;
}
@media screen and (min-width:960px) {
  .attention__title {
    width: 340px;
    font-size: 1.75rem;
    line-height: 1.5;
    height: 53px;
    padding-block: 5.5px;
  }
}

.attention__inner {
  padding-block: 50px 50px;
  padding-inline: 15.5px;
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width:960px) {
  .attention__inner {
    padding-block: 58px 100px;
    max-width: 856px;
    padding-inline: 20px;
  }
}

.attention__sub-title {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-align: center;
}
@media screen and (min-width:960px) {
  .attention__sub-title {
    font-size: 1.875rem;
    letter-spacing: 0.3px;
  }
}

.attention__body {
  margin-top: 52px;
  border-radius: 30px;
  border: 1px solid #FFFFFF;
  padding-inline: 22px 14px;
  position: relative;
  padding-bottom: 31px;
}
@media screen and (min-width:960px) {
  .attention__body {
    margin-top: 70px;
    padding-block: 39px 28px;
    padding-inline: 77px;
  }
}

.attention__body-title {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.75rem, 0.218rem + 3.87vw, 1.125rem);
  font-weight: 700;
  line-height: 1.5;
  color: #007A41;
  background-color: #FFFFFF;
  border-radius: 10px 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -17px;
  max-width: 250px;
  width: 100%;
}
@media screen and (min-width:960px) {
  .attention__body-title {
    max-width: 276px;
    font-size: 1.25rem;
    padding-block: 1px;
  }
}

.attention__body-list {
  margin-top: 28px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
@media screen and (min-width:960px) {
  .attention__body-list {
    margin-top: 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 17px;
       -moz-column-gap: 17px;
            column-gap: 17px;
    row-gap: 11px;
  }
}

.attention__body-list-item-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #FFFFFF;
}

/*====================================
qa
====================================*/
.qa {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  padding-bottom: 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#007A41));
  background: linear-gradient(to bottom, transparent, #007A41);
}
@media screen and (min-width:960px) {
  .qa {
    margin-top: 80px;
    padding-bottom: 80px;
  }
}
.qa::before {
  content: "";
  position: absolute;
  top: -30px;
  left: clamp(7.875rem, 2.73rem + 37.42vw, 11.5rem);
  width: 90px;
  height: 90px;
  background: url(../assets/svg/decoration-qa-top-center-sp.svg) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (min-width:960px) {
  .qa::before {
    width: 171px;
    height: 251px;
    background: url(../assets/svg/decoration-service-top-left-pc.svg) no-repeat center center/contain;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    top: 37px;
    left: auto;
    right: clamp(0rem, -19.375rem + 32.29vw, 9.688rem);
  }
}

.qa__inner {
  border-radius: 60px;
  background: #FFFFFF;
  padding-inline: 16px;
  padding-block: 69px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}
@media screen and (min-width:960px) {
  .qa__inner {
    padding-block: 98px 130px;
  }
}
.qa__inner::before, .qa__inner::after {
  content: "";
  position: absolute;
}
.qa__inner::before {
  width: 99.114px;
  height: 90px;
  bottom: -21px;
  left: 69px;
  background: url(../assets/svg/decoration-qa-bottom-left-sp.svg) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (min-width:960px) {
  .qa__inner::before {
    width: 142px;
    height: 169px;
    aspect-ratio: 142/169;
    background: url(../assets/svg/decoration-qa-top-left-pc.svg) no-repeat center center/contain;
    top: clamp(14.75rem, 6.75rem + 13.33vw, 18.75rem);
    left: clamp(0rem, -8.625rem + 14.37vw, 4.313rem);
  }
}
.qa__inner::after {
  width: 74.663px;
  height: 58.149px;
  aspect-ratio: 74.66/42.15;
  bottom: 14px;
  right: 100px;
  background: url(../assets/svg/decoration-qa-bottom-right-sp.svg) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (min-width:960px) {
  .qa__inner::after {
    width: 154px;
    height: 144px;
    aspect-ratio: 77/72;
    background: url(../assets/svg/decoration-qa-bottom-left-pc.svg) no-repeat center center/contain;
    bottom: clamp(-0.375rem, -6.875rem + 10.83vw, 2.875rem);
    right: auto;
    left: 154px;
  }
}

.qa__title {
  font-weight: 700;
  line-height: 1.5;
  color: #007A41;
  text-align: center;
  font-size: clamp(1.75rem, 0.949rem + 3.42vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.28px;
}
@media screen and (min-width:960px) {
  .qa__title {
    letter-spacing: 0.48px;
  }
}

.qa__note {
  margin-top: 21px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.32px;
  font-weight: 500;
  text-align: center;
  padding-inline: 10px;
}
@media screen and (min-width:960px) {
  .qa__note {
    margin-top: 35px;
    letter-spacing: 0.32px;
  }
}

.qa__body-list {
  margin-top: 53px;
}
@media screen and (min-width:960px) {
  .qa__body-list {
    max-width: 809px;
    width: 100%;
    margin-inline: auto;
    margin-top: 73px;
    position: relative;
    overflow: hidden;
  }
  .qa__body-list::before {
    content: "";
    position: absolute;
    top: 246px;
    right: -254px;
    width: 134px;
    height: 177px;
    background: url(../assets/svg/decoration-qa-center-right-pc.svg) no-repeat center center/contain;
  }
}

.qa-item {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  padding-block: 19px 16px;
  border-bottom: 1px solid #007A41;
}
@media screen and (min-width:960px) {
  .qa-item {
    padding-top: 20px;
    gap: 12px;
  }
}
.qa-item:nth-child(1) {
  border-top: 1px solid #007A41;
}

.qa-item__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 10px;
}
@media screen and (min-width:960px) {
  .qa-item__question {
    gap: 16px;
  }
}

.qa-item__icon {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: #007A41;
  border-radius: 50%;
}
@media screen and (min-width:960px) {
  .qa-item__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    width: 32px;
    height: 32px;
    line-height: 27px;
    font-size: 1.25rem;
  }
}

.qa-item__question-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.18px;
}
@media screen and (min-width:960px) {
  .qa-item__question-text {
    font-size: 1.25rem;
    letter-spacing: 0.2px;
  }
}

.qa-item__answer {
  font-size: clamp(0.875rem, 0.835rem + 0.17vw, 0.9375rem);
  line-height: 1.8;
  letter-spacing: 0.28px;
}
@media screen and (min-width:960px) {
  .qa-item__answer {
    letter-spacing: 0.3px;
  }
}

/*====================================
footer
====================================*/
.footer {
  background: #007A41;
  padding-top: 70px;
  padding-bottom: 200px;
  position: relative;
  margin-top: -80px;
}
@media screen and (min-width:960px) {
  .footer {
    padding-bottom: 80px;
  }
}
.footer::after {
  content: "";
  position: absolute;
  top: -32px;
  right: 0;
  width: 264.925px;
  height: 213px;
  aspect-ratio: 264.93/213;
  background: url(../assets/svg/decoration-footer-sp.svg) no-repeat center center/contain;
  z-index: 0;
  opacity: 0.8;
}
@media screen and (min-width:960px) {
  .footer::after {
    width: 457px;
    height: 372px;
    aspect-ratio: 457/372;
    bottom: -244px;
  }
}

.footer__inner {
  position: relative;
  z-index: 1;
}

.footer__title {
  width: 217px;
  height: 49px;
  aspect-ratio: 31/7;
  margin-inline: auto;
}
@media screen and (min-width:960px) {
  .footer__title {
    width: 255.6px;
    height: 57.6px;
  }
}

.footer__body {
  margin-top: 30px;
  margin-inline: auto;
  max-width: 222px;
  width: 100%;
}
@media screen and (min-width:960px) {
  .footer__body {
    margin-top: 54px;
    max-width: 250px;
  }
}

.footer__body-item {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.6px;
  color: #FFFFFF;
}
@media screen and (min-width:960px) {
  .footer__body-item {
    font-size: 0.875rem;
  }
}

/*====================================
cta
====================================*/
.cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  z-index: 100;
}
@media screen and (min-width:960px) {
  .cta {
    display: none;
  }
}

.cta__inner {
  padding: 6px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 9px;
  max-width: 560px;
  margin-inline: auto;
}

.cta-tel {
  width: 100%;
}

.cta-tel__text-over {
  text-align: center;
  font-size: clamp(0.625rem, 0.536rem + 0.65vw, 0.6875rem);
  font-weight: 400;
  line-height: 1.2;
  padding-bottom: 6px;
  border-bottom: 1px solid #2B2B2B;
}

.cta-tel__text-under {
  padding-top: 6px;
  font-size: clamp(0.5rem, -0.032rem + 3.87vw, 0.875rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.cta-tel__number {
  margin-top: 4px;
  border-radius: 10px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left bottom, left top, from(#dc3700), to(#eb912b));
  background: linear-gradient(0deg, #dc3700 0%, #eb912b 100%);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  -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;
  gap: 8px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (hover: none) {
  .cta-tel__number {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .cta-tel__number:active {
    color: rgba(255, 255, 255, 0.6);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  .cta-tel__number:hover {
    color: rgba(255, 255, 255, 0.6);
  }
}
.cta-tel__number:active {
  color: rgba(255, 255, 255, 0.6);
}
.cta-tel__number :nth-child(1) {
  font-size: clamp(0.75rem, 0.395rem + 2.58vw, 1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.32px;
}
.cta-tel__number :nth-child(2) {
  font-size: clamp(0.5625rem, 0.474rem + 0.65vw, 0.625rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.5px;
}

.cta-mail {
  width: 100%;
}

.cta-mail__text-over {
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.2;
  padding-bottom: 6px;
  border-bottom: 1px solid #2B2B2B;
  text-align: center;
}

.cta-mail__text-under {
  padding-top: 6px;
  font-size: clamp(0.5rem, -0.032rem + 3.87vw, 0.875rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.7px;
  text-align: center;
}

.cta-mail__link {
  margin-top: 4px;
  border-radius: 10px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left bottom, left top, from(#dc3700), to(#eb912b));
  background: linear-gradient(0deg, #dc3700 0%, #eb912b 100%);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  -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;
  gap: 8px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (hover: none) {
  .cta-mail__link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .cta-mail__link:active {
    color: rgba(255, 255, 255, 0.6);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  .cta-mail__link:hover {
    color: rgba(255, 255, 255, 0.6);
  }
}
.cta-mail__link:active {
  color: rgba(255, 255, 255, 0.6);
}
.cta-mail__link > :nth-child(1) {
  font-size: clamp(0.75rem, 0.395rem + 2.58vw, 1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.32px;
}
.cta-mail__link > :nth-child(2) {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2px;
}

/*====================================
pagetop
====================================*/
.pagetop {
  position: fixed;
  bottom: 126px;
  right: 16px;
  z-index: 100;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.pagetop__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2B2B2B;
  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;
  gap: 2px;
}

.pagetop__icon {
  width: 12px;
  height: 4px;
}

.pagetop__text {
  color: #FFFFFF;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
}

.contact {
  background-color: #007A41;
  padding-bottom: 80px;
}

.contact__inner {
  background-color: #E0EBCC;
  padding-block: 60px 38px;
  padding-inline: 16px;
  border-radius: 0px 0px 60px 60px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:960px) {
  .contact__inner {
    padding-block: 80px 110px;
    border-radius: 0px 0px 80px 80px;
  }
}

.Form {
  padding-block: 60px;
  border-radius: 30px 30px 0px 0px;
  background: #FFFFFF;
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (min-width:960px) {
  .Form {
    padding-block: 80px;
    padding-inline: min(100px, 6.9444444444%);
  }
}

.Form__title,
.confirm_title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6; /* 32px */
  letter-spacing: 0.2px;
}
@media screen and (min-width:960px) {
  .Form__title,
  .confirm_title {
    font-size: 1.875rem;
    line-height: 2;
    letter-spacing: 0.3px;
  }
}

.Form__text,
.confirm_note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.28px;
}
@media screen and (min-width:960px) {
  .Form__text,
  .confirm_note {
    margin-top: 40px;
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
  }
}

.Form-Item {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  width: 100%;
  padding-inline: 15.5px;
}
.Form-Item:first-of-type {
  margin-top: 40px;
}
.Form-Item + .Form-Item {
  margin-top: 20px;
}
@media screen and (min-width:960px) {
  .Form-Item {
    margin-top: 60px;
    padding-inline: 0;
  }
}

.Form-Item-Label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.432px;
}
@media screen and (min-width:960px) {
  .Form-Item-Label {
    letter-spacing: 0.32px;
  }
}

.Form-Item-Label-Required {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6.5px 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  background: #EB5B2B;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.Form-Item-Date .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto; /* 成長も縮小も許可 */
  min-width: 0;
  /* これで中身の幅を０まで縮められる */
}

.wpcf7-text,
.wpcf7-textarea,
.wpcf7-email,
.wpcf7-tel {
  border-radius: 5px;
  border: 1px solid rgba(0, 122, 65, 0.3);
  background: rgba(0, 122, 65, 0.05);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.28px;
  width: 100%;
}
@media screen and (min-width:960px) {
  .wpcf7-text,
  .wpcf7-textarea,
  .wpcf7-email,
  .wpcf7-tel {
    font-size: 1rem;
    letter-spacing: 0.32px;
    padding-block: 16px;
  }
}

.wpcf7-text:focus-visible,
.wpcf7-textarea:focus-visible,
.wpcf7-email:focus-visible,
.wpcf7-tel:focus-visible,
.wpcf7-form-control:focus-visible {
  border: 1px solid #007A41;
  outline: none;
}

.wpcf7-text[aria-invalid=true],
.wpcf7-text.wpcf7-not-valid,
.wpcf7-textarea[aria-invalid=true],
.wpcf7-textarea.wpcf7-not-valid,
.wpcf7-email[aria-invalid=true],
.wpcf7-email.wpcf7-not-valid,
.wpcf7-tel[aria-invalid=true],
.wpcf7-tel.wpcf7-not-valid,
.wpcf7-form-control[aria-invalid=true],
.wpcf7-form-control.wpcf7-not-valid {
  border: 1px solid #007A41;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-form-control-wrap .select01 {
  border-radius: 5px;
  border: 1px solid rgba(0, 122, 65, 0.3);
  background: rgba(0, 122, 65, 0.05);
  padding: 8px 16px;
  width: 100%;
}
.wpcf7-form-control-wrap .select01:focus, .wpcf7-form-control-wrap .select01:checked {
  border: 1px solid #007A41;
  background: rgba(0, 122, 65, 0.05);
}

.privacy-policy {
  margin-block: 40px;
  width: 100%;
  overflow-y: scroll;
  height: 220px;
  border-radius: 2px;
  border: 2px solid #007A41;
  background: #FFFFFF;
  padding: 16px 16px 0 16px;
}
@media screen and (min-width:960px) {
  .privacy-policy {
    margin-top: 50px;
    padding: 20px 20px 0 20px;
  }
}

.privacy-policy__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}

.wpcf7-list-item-label {
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width:960px) {
  .wpcf7-list-item {
    display: block;
    text-align: center;
  }
}

.button-wrap {
  margin-top: 40px;
  margin-inline: auto;
}

.wpcf7-form:has(input[required]:invalid, textarea[required]:invalid, select[required]:invalid, input[type=checkbox][required]:invalid) .confirm_button {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.6;
  background-color: #ccc;
  color: #666;
}

/* すべての必須フィールドが valid のときだけ送信ボタンを有効化 */
.wpcf7-form:not(:has(input[required]:invalid, textarea[required]:invalid, select[required]:invalid, input[type=checkbox][required]:invalid)) .confirm_button {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
  background: #007A41;
  color: #FFFFFF;
  -webkit-transition: background-color 0.2s, opacity 0.2s;
  transition: background-color 0.2s, opacity 0.2s;
}

.wpcf7-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 284px;
  width: 100%;
  height: 60px;
  padding: 10px 19px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  border: 2px solid #007A41;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.9px;
  margin-inline: auto;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  background-color: #007A41;
  color: #FFFFFF;
}
@media screen and (min-width:960px) {
  .wpcf7-submit {
    width: 220px;
    height: 56px;
    font-size: 1.125rem;
  }
}
.wpcf7-submit:hover {
  color: rgba(255, 255, 255, 0.5);
}

.contact-tel {
  margin-top: 60px;
  padding: 40px 0px;
  border-radius: 0px 0px 30px 30px;
  border-top: 5px solid #007A41;
  background: #FFFFFF;
  text-align: center;
}
@media screen and (min-width:960px) {
  .contact-tel {
    margin-top: 60px;
    padding: 60px 0px;
    max-width: 800px;
    margin-inline: auto;
    padding: 60px 100px;
    border-radius: 0px 0px 60px 60px;
  }
}

.contact-tel__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2px;
}
@media screen and (min-width:960px) {
  .contact-tel__title {
    font-size: 1.875rem;
    line-height: 2;
    letter-spacing: 0.3px;
  }
}

.contact-tel__number {
  margin-top: 20px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #007A41;
}
@media screen and (min-width:960px) {
  .contact-tel__number {
    font-size: 3.125rem;
    line-height: 1.5;
  }
}

.contact-tel__time {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.28px;
}
@media screen and (min-width:960px) {
  .contact-tel__time {
    font-size: 1rem;
    letter-spacing: 0.32px;
  }
}

.confirm_area {
  display: none;
  padding-block: 60px;
  border-radius: 30px 30px 0px 0px;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 0;
}
@media screen and (min-width:960px) {
  .confirm_area {
    padding-block: 80px;
    padding-inline: min(100px, 6.9444444444%);
  }
}
.confirm_area .Form-Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
  padding-inline: 0;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}
.confirm_area .Form-Item-Label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 116px;
          flex: 0 0 116px;
  min-height: 84px;
  padding: 9px 11px;
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 10px 0px 0px 10px;
  border-top: 5px solid #E0EBCC;
  border-bottom: 5px solid #E0EBCC;
  border-left: 5px solid #E0EBCC;
  background: #FFFFFF;
  gap: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
  letter-spacing: 0.32px;
  position: relative;
}
@media screen and (min-width:960px) {
  .confirm_area .Form-Item-Label {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-flex: 10;
        -ms-flex: 10 0 200px;
            flex: 10 0 200px;
    padding: 20px 15px;
    gap: 9px;
  }
}
.confirm_area .Form-Item-Label::before {
  position: absolute;
  content: "";
  display: block;
  width: 3px;
  height: 46px;
  background: #E0EBCC;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 6px;
}
.confirm_area .Form-Item-Label-Required {
  padding-block: 5px;
}
.confirm_area .confirm_your-name,
.confirm_area .confirm_your-company,
.confirm_area .confirm_select01,
.confirm_area .confirm_your-address,
.confirm_area .confirm_your-email,
.confirm_area .confirm_your-tel,
.confirm_area .confirm_your-zipcode,
.confirm_area .confirm_your_text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 84px;
  padding: 0px 16px 0px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 0px 10px 10px 0px;
  border-top: 5px solid #E0EBCC;
  border-bottom: 5px solid #E0EBCC;
  border-right: 5px solid #E0EBCC;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 30px; /* 214.286% */
  letter-spacing: 0.28px;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
}
@media screen and (min-width:960px) {
  .confirm_area .confirm_your-name,
  .confirm_area .confirm_your-company,
  .confirm_area .confirm_select01,
  .confirm_area .confirm_your-address,
  .confirm_area .confirm_your-email,
  .confirm_area .confirm_your-tel,
  .confirm_area .confirm_your-zipcode,
  .confirm_area .confirm_your_text {
    font-size: 1rem;
    letter-spacing: 0.32px;
    padding: 10px 20px;
  }
}
.button-wrap--submit {
  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;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
@media screen and (min-width:960px) {
  .button-wrap--submit {
    margin-top: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
.button-wrap--submit .wpcf7-submit {
  margin-inline: 0;
}

.back_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 284px;
  width: 100%;
  height: 60px;
  padding: 10px 19px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  border: 2px solid #2B2B2B;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.9px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  background-color: #2B2B2B;
  color: #FFFFFF;
}
@media screen and (min-width:960px) {
  .back_button {
    width: 220px;
    height: 56px;
    font-size: 1.125rem;
  }
}
@media (hover: none) {
  .back_button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .back_button:active {
    color: rgba(43, 43, 43, 0.5);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  .back_button:hover {
    color: rgba(43, 43, 43, 0.5);
  }
}

.wpcf7-spinner {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.contact-fv {
  position: relative;
  height: 141px;
}
@media screen and (min-width:960px) {
  .contact-fv {
    width: 100%;
    height: 319px;
  }
}
.contact-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007A41;
  opacity: 0.6;
  z-index: 1;
}

.contact {
  background-color: #007A41;
}

.contact-inner {
  padding: 80px 20px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 0px 0px 60px 60px;
  background-color: #E0EBCC;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:960px) {
  .contact-inner {
    border-radius: 0px 0px 80px 80px;
  }
}

.contact-title {
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.contact-text {
  margin-top: 60px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.28px;
}

.contact-btn {
  display: inline-block;
  margin-top: 60px;
  padding: 16px 24px;
  background-color: #007A41;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.28px;
  border-radius: 100px;
}

.u-ls--256 {
  letter-spacing: -2.56px;
}

.u-ls--15 {
  letter-spacing: 1.5px;
}

.u-ls--782 {
  letter-spacing: -7.82px;
}
@media screen and (min-width:960px) {
  .u-ls--782 {
    letter-spacing: -15.81px;
  }
}

.u-ls--138 {
  letter-spacing: clamp(-0.084rem, -0.053rem - 0.14vw, -0.174rem);
}

.u-ls--368 {
  letter-spacing: -3.68px;
}
@media screen and (min-width:960px) {
  .u-ls--368 {
    letter-spacing: -7.44px;
  }
}

.u-ls--1196 {
  letter-spacing: -11.96px;
}
@media screen and (min-width:960px) {
  .u-ls--1196 {
    letter-spacing: -24.18px;
  }
}

.u-ls--22 {
  letter-spacing: -2.2px;
}
@media screen and (min-width:960px) {
  .u-ls--22 {
    letter-spacing: -3px;
  }
}

.u-ls--0 {
  letter-spacing: 0px;
}

.u-ls--48 {
  letter-spacing: 4.8px;
}
@media screen and (min-width:960px) {
  .u-ls--48 {
    letter-spacing: 4.62px;
  }
}

.u-ls--1 {
  letter-spacing: 1px;
}

.u-ls--1104 {
  letter-spacing: -11.04px;
}

.u-ls--115 {
  letter-spacing: -11.5px;
}

.u-fz--16 {
  font-size: 1rem;
}

.u-fz--18 {
  font-size: 1.125rem;
}
@media screen and (min-width:960px) {
  .u-fz--18 {
    font-size: 1.5rem;
  }
}

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

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

.u-underline {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-color: rgba(235, 91, 43, 0.25);
  text-decoration-thickness: 30%;
  text-underline-offset: 0%;
  text-underline-position: from-font;
}

.u-wavy-line {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-color: #FFFFFF;
  text-decoration-thickness: 12%;
  text-underline-offset: 15%;
  text-underline-position: from-font;
}

.u-hidden-tb-h {
  display: block;
}
@media screen and (min-width:960px) {
  .u-hidden-tb-h {
    display: none;
  }
}

.u-appearance-tb-h {
  display: none;
}
@media screen and (min-width:960px) {
  .u-appearance-tb-h {
    display: block;
  }
}

.u-c--accent {
  color: #EB5B2B;
}

.u-bg--orange {
  background-color: rgba(235, 91, 43, 0.2);
}

.u-bg--green {
  background-color: #007A41;
  color: #FFFFFF;
}