/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type="checkbox"],
input[type="radio"],
input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  color: #000;
}

html {
  font-size: 16px;
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5238095238vw;
  }
}
@media (min-width: 1050px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
}

html.fixed {
  overflow: hidden;
}

section {
  overflow-x: hidden;
}

header {
  padding: 0.75rem 0.9375rem 0.625rem;
  background-color: #fff2df;
}
@media screen and (min-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }
}

.header-inner {
  display: flex;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .header-logo {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .header-logo {
    width: 27.5rem;
  }
}

.header-logo img {
  width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .header-logo img {
    width: 6.25rem;
  }
}

.header-logo__text {
  font-weight: 900;
  font-size: 0.9375rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .header-logo__text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .header-logo__text {
    font-size: 1.5rem;
  }
}

.header-logo__text p {
  position: relative;
  z-index: 2;
}

.header-pay {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .header-pay {
    max-width: 16.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .header-pay {
    max-width: 22.5rem;
  }
}

.header-pay__text {
  text-align: center;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .header-pay__text {
    font-size: 1.25rem;
  }
}

.header-pay__logo {
  align-items: center;
  gap: 0.28125rem;
  margin-top: 0.28125rem;
}
@media screen and (min-width: 768px) {
  .header-pay__logo {
    gap: 0.75rem;
  }
}

.header-pay__logo li {
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .header-pay__logo li {
    width: calc((100% - 3rem) / 5);
    width: 3.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .header-pay__logo li {
    width: calc((100% - 3rem) / 5);
  }
}

header .fixed-btn {
  display: none;
  max-width: 6.875rem;
}
@media screen and (min-width: 768px) {
  header .fixed-btn {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-left: 2rem;
    max-width: 26.25rem;
  }
}
@media screen and (min-width: 1440px) {
  header .fixed-btn {
    max-width: 33.75rem;
  }
}

.fixed-btn {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fixed-btn {
    display: none;
  }
}

main .fixed-btn {
  position: fixed;
  z-index: 5;
  bottom: 0;
  left: 0;
}

.header-tel,
.header-contact {
  width: 50%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header-tel,
  .header-contact {
    width: calc(50% - 0.3125rem);
  }
}

.header-tel a,
.header-contact a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .header-tel a,
  .header-contact a {
    height: 5.125rem;
  }
}

.header-tel {
  background-color: #fdfdfc;
}
@media screen and (min-width: 768px) {
  .header-tel {
    border: 3px solid #dadada;
    background: linear-gradient(180deg, #fdfdfc, #efefef);
    background: -webkit-linear-gradient(-90deg, #fdfdfc, #efefef);
  }
}

.header-tel__text--top {
  font-size: 0.875rem;
}
@media screen and (min-width: 1440px) {
  .header-tel__text--top {
    font-size: 0.7rem;
  }
}

.header-tel__text--btm {
  color: #27951d;
  font-weight: 900;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .header-tel__text--btm {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .header-tel__text--btm {
    font-size: 1.75rem;
  }
}

.header-contact {
  background-color: #fc6003;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header-contact {
    font-weight: 700;
    border: 3px solid #ff6a00;
    background: linear-gradient(180deg, #ffa46d, #fc6003);
    background: -webkit-linear-gradient(-90deg, #ffa46d, #fc6003);
  }
}

.header-contact__text--top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .header-contact__text--top {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .header-contact__text--top {
    gap: 0.75rem;
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .header-contact__text--top span {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .header-contact__text--top span {
    font-size: 1.25rem;
  }
}

.header-contact__text--top img {
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .header-contact__text--top img {
    width: 1.75rem;
  }
}

.header-contact__text--btm {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .header-contact__text--btm {
    font-size: 1.0625rem;
  }
}

footer {
  background: #f5ffeb;
  padding: 2.375rem 0;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 4.5rem 0 3.875rem;
  }
}

.footer-inner {
  background: #f5ffeb;
  padding: 0 1.875rem;
  margin: 0 auto;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .footer-inner {
    padding: 0 1.5625rem;
    max-width: 72.5rem;
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  .footer-texts {
    width: 100%;
    max-width: 33.4375rem;
  }
}

.footer-texts .header-logo {
  font-size: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .footer-texts .header-logo {
    font-size: 1.875rem;
    display: flex;
    flex-wrap: nowrap;
  }
}

.footer-texts .header-logo img {
  width: 4.375rem;
}
@media screen and (min-width: 768px) {
  .footer-texts .header-logo img {
    width: 7.8125rem;
  }
}

.footer-info {
  margin-top: 1.0625rem;
  font-size: 0.625rem;
  line-height: 2.1;
}
@media screen and (min-width: 768px) {
  .footer-info {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.9;
    width: 100%;
    max-width: 33.4375rem;
  }
}

.footer-image {
  margin-top: 0.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-image {
    max-width: 32.5rem;
  }
}

.footer-image iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 330/150;
}
@media screen and (min-width: 768px) {
  .footer-image iframe {
    aspect-ratio: 520/270;
  }
}

.inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 65.625rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.section-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.mv {
  padding: 4.125rem 0 2.875rem;
  background-image: url("../img/mv_sp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .mv {
    background-image: url("../img/mv_pc.jpg");
    padding: 2.25rem 0 0;
  }
}

.mv-awared {
  max-width: 25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .mv-awared {
    max-width: 45.625rem;
  }
}

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

.mv-toptext {
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .mv-toptext {
    font-size: 2rem;
  }
}

.mv-toptext .stroke {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  -webkit-text-stroke: 2px #fff;
  z-index: 1;
  font-size: inherit;
}
@media screen and (min-width: 768px) {
  .mv-toptext .stroke {
    -webkit-text-stroke: 6px #fff;
  }
}

.mv-title {
  font-weight: 600;
}

.mv-title .broun-text {
  font-weight: 600;
  font-size: 3.4375rem;
  line-height: 1;
  color: #8f1e07;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv-title .broun-text {
    font-size: 6.5625rem;
  }
}
.huyouhin.sp {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  color: #8f1e07;
  position: relative;
  display: block;
}
.huyouhin.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .huyouhin.pc {
    font-size: 3rem;
    color: #8f1e07;
    vertical-align: sub;
    padding-right: 1rem;
    display: inline;
  }
  .huyouhin.sp {
    display: none;
  }
}

.mv-title .broun-text .sub-size {
  font-size: 2.75rem;
}
@media screen and (min-width: 768px) {
  .mv-title .broun-text .sub-size {
    font-size: 5.3125rem;
  }
}

.mv-title .broun-text .mini-text {
  font-size: 2.375rem;
}
@media screen and (min-width: 768px) {
  .mv-title .broun-text .mini-text {
    font-size: 4.5rem;
  }
}

.mv-title .broun-text .stroke {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  font-size: inherit;
  -webkit-text-stroke: 8px #fff;
  text-shadow: 0px 2px 4px black;
}
@media screen and (min-width: 768px) {
  .mv-title .broun-text .stroke {
    -webkit-text-stroke: 12px #fff;
    text-shadow: 0px 4px 6px black;
  }
}

.green-text {
  font-weight: 600;
  font-size: 3.25rem;
  line-height: 1;
  color: #27951d;
  position: relative;
}
@media screen and (min-width: 768px) {
  .green-text {
    font-size: 6.25rem;
  }
}

.mv-title .green-text .stroke {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  font-size: inherit;
  -webkit-text-stroke: 6px #fff;
  text-shadow: 0px 2px 4px black;
}
@media screen and (min-width: 768px) {
  .mv-title .green-text .stroke {
    -webkit-text-stroke: 10px #fff;
    text-shadow: 0px 4px 6px black;
  }
}

.mv-price {
  font-weight: 700;
  font-size: 0.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv-price {
    font-size: 1.875rem;
  }
}

.mv-price .stroke {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  -webkit-text-stroke: 2.6px #fff;
  z-index: 1;
  font-size: inherit;
}
@media screen and (min-width: 768px) {
  .mv-price .stroke {
    -webkit-text-stroke: 6px #fff;
  }
}

.mv-price .orange-text {
  color: #fc6003;
}

.mv-price .num-font {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .mv-price .num-font {
    font-size: 3.75rem;
  }
}

.mv-price .sub-size {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .mv-price .sub-size {
    font-size: 1.5625rem;
  }
}

.mv-btmtext {
  font-weight: 700;
  font-size: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv-btmtext {
    font-size: 1.25rem;
  }
}

.mv-btmtext .stroke {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  -webkit-text-stroke: 2.6px #fff;
  z-index: 1;
  font-size: inherit;
}
@media screen and (min-width: 768px) {
  .mv-btmtext .stroke {
    -webkit-text-stroke: 5px #fff;
  }
}

.poor {
  padding: 2.25rem 0 2.5rem;
  background-image: url("../img/poor-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .poor {
    padding: 4.5rem 0 5rem;
  }
}

.poor-illust {
  bottom: -3.125rem;
  right: -3.5625rem;
  width: 17.75rem;
}

.poor-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .poor-title {
    font-size: 2rem;
  }
}

.poor-title span {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .poor-title span {
    font-size: 2.625rem;
  }
}

.poor-list {
  margin: 2rem auto 0;
  padding: 0 0.9375rem;
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .poor-list {
    margin-top: 3.25rem;
    padding: 0;
    max-width: 58.75rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.375rem;
  }
}

.poor-list__item {
  border: 2px solid #d2d2d2;
  background-color: #fff;
  border-radius: 4px;
  padding: 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 2.7142857143;
}
@media screen and (min-width: 768px) {
  .poor-list__item {
    border: 5px solid #d2d2d2;
    border-radius: 5px;
    padding: 1.25rem 1.125rem 1.5625rem;
    display: block;
    font-size: 1.5625rem;
    line-height: 1.52;
    width: calc((100% - 2.75rem) / 3);
  }
}

.poor-list__item img {
  width: 1.375rem;
}
@media screen and (min-width: 768px) {
  .poor-list__item img {
    width: 2.375rem;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .poor-list__item p {
    text-align: center;
    margin-top: 0.5rem;
  }
}

.poor-list__item:nth-child(n + 2) {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .poor-list__item:nth-child(n + 2) {
    margin-top: 0;
  }
}

.reason {
  padding: 2.125rem 0 4rem;
  background-image: url("../img/reason-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .reason {
    padding: 4.5rem 0 5rem;
  }
}

.reason-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1;
  color: #27951d;
}
@media screen and (min-width: 768px) {
  .reason-title {
    font-size: 2.1875rem;
  }
}

.reason-title span {
  font-size: 2.125rem;
  color: #fc6003;
}
@media screen and (min-width: 768px) {
  .reason-title span {
    font-size: 3.5rem;
  }
}

.reason-card {
  margin: 1.75rem auto 0;
  padding: 0 1.5rem;
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .reason-card {
    margin-top: 2rem;
    padding: 0;
    max-width: initial;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .reason-card__item {
    width: 16.5625rem;
    padding-top: 1.125rem;
    padding-left: 2.75rem;
    border-left: 2px solid #c9c9c9;
  }
}

.reason-card__item:nth-child(n + 2) {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .reason-card__item:nth-child(n + 2) {
    margin-top: 0;
    margin-left: 2.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .reason-card__item:nth-child(3n + 1) {
    width: 14.375rem;
    padding-left: 1.75rem;
    margin-left: 0;
    border-left: initial;
  }
}

@media screen and (min-width: 768px) {
  .reason-card__item:nth-child(n + 4) {
    margin-top: 0.625rem;
  }
}

.reason-card__image {
  width: 7.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .reason-card__image {
    width: 11.25rem;
  }
}

@media screen and (min-width: 768px) {
  .reason-card__item:nth-child(n + 3) .reason-card__image {
    width: 10.625rem;
  }
}

.reason-card__image .num-font {
  position: absolute;
  top: 1.25rem;
  left: -1.75rem;
  font-weight: 700;
  font-size: 2.3125rem;
  line-height: 1;
  color: #ffaa78;
}
@media screen and (min-width: 768px) {
  .reason-card__image .num-font {
    top: 0.875rem;
    left: -2rem;
    font-size: 5rem;
  }
}

.reason-card__texts {
  margin-top: -0.75rem;
}
@media screen and (min-width: 768px) {
  .reason-card__texts {
    width: 13rem;
    margin: -0.5rem auto 0;
  }
}

@media screen and (min-width: 768px) {
  .reason-card__item:nth-child(n + 3) .reason-card__texts {
    margin-top: 0.125rem;
  }
}

.reason-card__title {
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  color: #27951d;
}
@media screen and (min-width: 768px) {
  .reason-card__title {
    font-size: 1.1875rem;
    line-height: 1.3684210526;
  }
}

.reason-card__text {
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .reason-card__text {
    text-align: left;
    font-size: 1rem;
    line-height: 1.375;
    margin-top: 0.59375rem;
  }
}

.more {
  padding: 2rem 0 2.5rem;
  background-image: url("../img/more-bg_sp.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .more {
    background-image: url("../img/more-bg_pc.png");
    padding: 4.375rem 0 5.125rem;
  }
}

.more-toptext {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .more-toptext {
    gap: 0.9375rem;
    font-size: 2.1875rem;
  }
}

.more-toptext::before,
.more-toptext::after {
  content: "";
  display: block;
  width: 0.125rem;
  height: 1.375rem;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .more-toptext::before,
  .more-toptext::after {
    width: 0.1875rem;
    height: 2.125rem;
  }
}

.more-toptext::before {
  transform: rotate(-15deg);
}
@media screen and (min-width: 768px) {
  .more-toptext::before {
    transform: rotate(-30deg);
  }
}

.more-toptext::after {
  transform: rotate(15deg);
}
@media screen and (min-width: 768px) {
  .more-toptext::after {
    transform: rotate(30deg);
  }
}

.more-contents {
  margin: 1.5rem auto 0;
  width: calc(100% - 7.75rem);
  max-width: 21.25rem;
  flex-wrap: wrap;
  gap: 0.75rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .more-contents {
    margin-top: 3.625rem;
    width: 100%;
    max-width: 60rem;
    gap: 1.75rem;
    flex-wrap: nowrap;
  }
}

.more-contents__item {
  width: calc(50% - 0.46875rem);
  aspect-ratio: 1/1;
  height: auto;
  background-image: url("../img/more-item.svg");
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2666666667;
}
@media screen and (min-width: 768px) {
  .more-contents__item {
    width: calc((100% - 5.25rem) / 4);
    font-size: 1.75rem;
    line-height: 1.2333333333;
  }
}

.more-btmtext {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .more-btmtext {
    margin-top: 3rem;
    font-size: 2.625rem;
  }
}

.cta {
  padding: 2.5rem 1.875rem;
  background-image: url("../img/cta-bg_sp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .cta {
    background-image: url("../img/cta-bg_pc.jpg");
    padding: 3.875rem 1.5625rem;
  }
}

.cta .inner {
  background-color: #fff;
  border: 2px solid #093c76;
  padding: 0.75rem 0.8125rem 1.4375rem;
}
@media screen and (min-width: 768px) {
  .cta .inner {
    border: 6px solid #093c76;
    padding: 0.3125rem 2rem 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .cta-contents__top {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.cta-contents__top--cancel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-contents__top--cancel .cancel-text {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background-color: #0b4e9b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .cta-contents__top--cancel .cancel-text {
    width: 9.625rem;
    height: 9.625rem;
    font-size: 1.125rem;
    line-height: 1.3333333333;
  }
}

.cta-contents__top--cancel .cancel-text span {
  color: #fff200;
  font-size: 1.0625rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .cta-contents__top--cancel .cancel-text span {
    font-size: 1.5625rem;
  }
}

.cta-illust {
  width: 8.5rem;
  margin-left: -1.875rem;
}
@media screen and (min-width: 768px) {
  .cta-illust {
    width: 12.25rem;
    margin-left: -0.9375rem;
  }
}

.cta-texts {
  font-weight: 700;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .cta-texts {
    margin-left: 0.875rem;
  }
}

.cta-texts__toptext {
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .cta-texts__toptext {
    font-size: 1.75rem;
    gap: 0.625rem;
  }
}

.cta-texts__toptext::before,
.cta-texts__toptext::after {
  content: "";
  display: block;
  width: 0.1rem;
  height: 1.125rem;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .cta-texts__toptext::before,
  .cta-texts__toptext::after {
    width: 0.1875rem;
    height: 2.25rem;
  }
}

.cta-texts__toptext::before {
  transform: rotate(-30deg);
}

.cta-texts__toptext::after {
  transform: rotate(30deg);
}

.cta-texts__title {
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta-texts__title {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}

.cta-texts__title .broun-text {
  font-size: 2.5rem;
  line-height: 1;
  color: #8f1e07;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cta-texts__title .broun-text {
    font-size: 3.3125rem;
  }
}

.cta-texts__title .broun-text .sub-size {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .cta-texts__title .broun-text .sub-size {
    font-size: 2.6875rem;
  }
}

.cta-texts__title .broun-text .mini-text {
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .cta-texts__title .broun-text .mini-text {
    font-size: 2.25rem;
  }
}

.cta-texts__title .broun-text .stroke {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  font-size: inherit;
  -webkit-text-stroke: 3.6px #fff;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .cta-texts__title .broun-text .stroke {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 7px #fff;
  }
}

.cta-texts__title .green-text {
  font-size: 2.375rem;
  line-height: 1;
  color: #27951d;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cta-texts__title .green-text {
    font-size: 3.125rem;
  }
}

.cta-texts__title .green-text .stroke {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  font-size: inherit;
  -webkit-text-stroke: 3px #fff;
  text-shadow: 0px 1.5px 1.5px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .cta-texts__title .green-text .stroke {
    -webkit-text-stroke: 7px #fff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  }
}

.cta-btn {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .cta-btn {
    justify-content: center;
    gap: 1.125rem;
    flex-direction: row;
    max-width: 55.625rem;
    margin: 0 auto;
  }
}

.cta-tel,
.cta-contact {
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cta-tel,
  .cta-contact {
    width: calc(50% - 0.3125rem);
  }
}

.cta-tel a,
.cta-contact a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.25rem;
}
@media screen and (min-width: 768px) {
  .cta-tel a,
  .cta-contact a {
    height: 6.25rem;
  }
}

.cta-tel {
  background: linear-gradient(180deg, #fdfdfc, #efefef);
  background: -webkit-linear-gradient(-90deg, #fdfdfc, #efefef);
  border: 2px solid #dadada;
}
@media screen and (min-width: 768px) {
  .cta-tel {
    border: 3px solid #dadada;
  }
}

.cta-tel__text--top {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .cta-tel__text--top {
    font-size: 1.125rem;
  }
}

.cta-tel__text--btm {
  color: #27951d;
  font-weight: 900;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .cta-tel__text--btm {
    font-size: 2rem;
  }
}

.cta-contact {
  background: linear-gradient(180deg, #ffa46d, #fc6003);
  background: -webkit-linear-gradient(-90deg, #ffa46d, #fc6003);
  color: #fff;
  border: 2px solid #ff6a00;
}
@media screen and (min-width: 768px) {
  .cta-contact {
    border: 3px solid #ff6a00;
  }
}

.cta-contact__text--top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .cta-contact__text--top {
    gap: 0.875rem;
    font-size: 1.5625rem;
  }
}

.cta-contact__text--top img {
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cta-contact__text--top img {
    width: 1.75rem;
  }
}

.cta-contact__text--btm {
  font-size: 0.75rem;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .cta-contact__text--btm {
    font-size: 1.0625rem;
    margin-top: 0.25rem;
  }
}

.safty-reason {
  padding: 2rem 0 2.75rem;
  background-image: url("../img/safty-reason-bg_sp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .safty-reason {
    background-image: url("../img/safty-reason-bg_pc.jpg");
    padding: 6.25rem 0 5.625rem;
  }
}

.safty-reason__inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .safty-reason__inner {
    padding: 0 1.5625rem;
    max-width: 74.375rem;
    margin: 0 auto;
  }
}

.safty-reason .reason-title {
  color: #000;
}
@media screen and (min-width: 768px) {
  .safty-reason .reason-title {
    font-size: 2.1875rem;
  }
}

.safty-reason .reason-title span {
  font-size: 2rem;
  line-height: 1.21875;
}
@media screen and (min-width: 768px) {
  .safty-reason .reason-title span {
    font-size: 3.4375rem;
  }
}

.safty-reason .reason-card {
  padding: 0 0.9375rem;
  max-width: 25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .safty-reason .reason-card {
    margin-top: 4rem;
    padding: 1.875rem;
    max-width: initial;
    flex-wrap: nowrap;
    justify-content: center;
    background-color: #fff;
    border: 2px solid #c9c9c9;
  }
}

.safty-reason .reason-card__item {
  background-color: #fff;
  border: 2px solid #c9c9c9;
  padding: 1.125rem 1.125rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .safty-reason .reason-card__item {
    background-color: initial;
    border: initial;
    width: 100%;
    max-width: 21.625rem;
    padding: 1.375rem 2.5rem 1rem;
  }
}

.safty-reason .reason-card__item:nth-child(n + 2) {
  border-left: 2px solid #c9c9c9;
  margin-left: 0;
}

.safty-reason .reason-card__image {
  width: 7.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .safty-reason .reason-card__image {
    width: 13.125rem;
  }
}

@media screen and (min-width: 768px) {
  .safty-reason .reason-card__item:nth-child(n + 2) .reason-card__image {
    width: 13.125rem;
  }
}

.safty-reason .reason-card__image .num-font {
  position: absolute;
  top: 0rem;
  left: -0.875rem;
  font-size: 2.625rem;
}
@media screen and (min-width: 768px) {
  .safty-reason .reason-card__image .num-font {
    top: 0.875rem;
    left: -2.25rem;
    font-size: 5.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .safty-reason .reason-card__image .num-font {
    left: -2.8125rem;
  }
}

.safty-reason .reason-card__texts {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .safty-reason .reason-card__texts {
    width: 14.6875rem;
    margin: 0rem auto 0;
  }
}

.safty-reason .reason-card__title {
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .safty-reason .reason-card__title {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.safty-reason .reason-card__text {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .safty-reason .reason-card__text {
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.3888888889;
    margin-top: 0.75rem;
  }
}

.price {
  padding: 2rem 0 2.625rem;
  background-color: #fff7f2;
}
@media screen and (min-width: 768px) {
  .price {
    padding: 6.25rem 0 4.75rem;
  }
}

.price-contents {
  margin: 1.25rem auto 0;
  max-width: 28.125rem;
}
@media screen and (min-width: 768px) {
  .price-contents {
    margin-top: 2.8125rem;
    max-width: 60rem;
  }
}

.price-contents__top-text {
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .price-contents__top-text {
    font-size: 1.5625rem;
    line-height: 1.48;
  }
}

.price-list {
  margin-top: 1.5rem;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .price-list {
    padding: 0;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1.75rem;
  }
}

.price-list__item {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  padding: 0.875rem 0.875rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .price-list__item {
    width: calc((100% - 3.5rem) / 3);
    border: 3px solid #e0e0e0;
    border-radius: 3px;
    padding: 1.375rem 1.5625rem 1.125rem;
  }
}

.price-list__item:nth-child(n + 2) {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .price-list__item:nth-child(n + 2) {
    margin-top: 0;
  }
}

.price-list__item--name {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  color: #fc6003;
}
@media screen and (min-width: 768px) {
  .price-list__item--name {
    font-size: 1.75rem;
    line-height: 1.1428571429;
  }
}

.price-list__item--main {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .price-list__item--main {
    display: block;
    margin-top: 1.25rem;
  }
}

.price-list__item--main .img {
  width: 7.1875rem;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .price-list__item--main .img {
    width: 100%;
  }
}

.price-list__item--main .detail {
  width: calc(100% - 8.1875rem);
}
@media screen and (min-width: 768px) {
  .price-list__item--main .detail {
    width: 100%;
    text-align: center;
    margin-top: 0.75rem;
  }
}

.price-list__item--main .detail-text {
  font-size: 0.625rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .price-list__item--main .detail-text {
    font-size: 1rem;
    line-height: 1.5625;
  }
}

.price-list__item--main .detail-price2 {
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1.8181818182;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .price-list__item--main .detail-price2 {
    font-size: 1.125rem;
    line-height: 1.7777777778;
    margin-top: 0.375rem;
  }
}

.price-list__item--main .detail-price2 .yen {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .price-list__item--main .detail-price2 .yen {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.price-list__item--main .detail-price2 .num {
  font-size: 1.5rem;
  line-height: 0.8333333333;
}
@media screen and (min-width: 768px) {
  .price-list__item--main .detail-price2 .num {
    font-size: 2.375rem;
    line-height: 0.8421052632;
  }
}

.price-list__item:nth-child(n + 4) .detail-price2 {
  margin-top: 0.125rem;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .price-list__item:nth-child(n + 4) .detail-price2 {
    margin-top: 0.375rem;
    margin-top: 2rem;
    margin-bottom: 1.75rem;
  }
}

.price-list__item--main .betto {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  color: #e20000;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .price-list__item--main .betto {
    font-size: 2rem;
    line-height: 1;
    line-height: 1.25;
    margin-bottom: 1.75rem;
    margin-top: 2rem;
  }
}

.price-list__item--text {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .price-list__item--text {
    text-align: left;
    margin-top: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.3888888889;
  }
}

.comparison {
  padding: 2.9375rem 0 3.875rem;
  background-color: #f2fff1;
}
@media screen and (min-width: 768px) {
  .comparison {
    padding: 6.75rem 0;
  }
}

.comparison-img {
  margin-top: 2.8125rem;
  margin-right: -0.9375rem;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .comparison-img {
    margin-top: 4.5rem;
    margin-right: 0;
  }
}

.comparison-img img {
  width: 36.625rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .comparison-img img {
    width: 100%;
  }
}

.area {
  padding: 2.625rem 0 1.875rem;
  background-color: #f6faff;
}
@media screen and (min-width: 768px) {
  .area {
    padding: 4.5rem 0 3rem;
  }
}

.area-contents-wrap {
  width: 100%;
  max-width: 28.125rem;
  padding: 0 0.9375rem;
  margin: 1.6875rem auto 0;
}
@media screen and (min-width: 768px) {
  .area-contents-wrap {
    margin-top: 3.5rem;
    max-width: initial;
  }
}

.area-contents {
  background-color: #fff;
  border: 2px solid #e1e1e1;
  border-radius: 2px;
  padding: 1.25rem 1rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .area-contents {
    border: 4px solid #e1e1e1;
    border-radius: 5px;
    padding: 2.3125rem 4.6875rem 0.4375rem;
    display: flex;
    flex-direction: row-reverse;
    gap: 0.875rem;
  }
}

.area-contents__map {
  width: 100%;
  max-width: 8.125rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .area-contents__map {
    max-width: 22.8125rem;
  }
}

.area-contents__texts {
  margin-top: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area-contents__texts {
    margin-top: 1.5rem;
    max-width: 26.25rem;
  }
}

.area-contents__texts--top {
  font-weight: 700;
  font-size: 0.875rem;
  color: #641606;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .area-contents__texts--top {
    font-size: 1.5rem;
    gap: 0.75rem;
    margin-left: 2.875rem;
  }
}

.area-contents__texts--top::before,
.area-contents__texts--top::after {
  content: "";
  display: block;
  width: 0.1rem;
  height: 1.125rem;
  background-color: #641606;
}
@media screen and (min-width: 768px) {
  .area-contents__texts--top::before,
  .area-contents__texts--top::after {
    width: 0.1875rem;
    height: 2.125rem;
  }
}

.area-contents__texts--top::before {
  transform: rotate(-30deg);
}

.area-contents__texts--top::after {
  transform: rotate(30deg);
  margin-left: -0.25rem;
}

.area-contents__texts--center {
  margin-top: 0.2875rem;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .area-contents__texts--center {
    margin-top: 1.375rem;
    margin-left: 2.875rem;
    gap: 0rem;
  }
}

.area-contents__texts--center .circle {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 50%;
  background-color: #27951d;
  color: #fff;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 1.3541666667;
}
@media screen and (min-width: 768px) {
  .area-contents__texts--center .circle {
    width: 5.5rem;
    height: 5.5rem;
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }
}

.area-contents__texts--center .add-text {
  border-top: 1px solid #27951d;
  border-bottom: 1px solid #27951d;
  padding: 0.5625rem 0.5rem 0.8125rem;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #27951d;
}
@media screen and (min-width: 768px) {
  .area-contents__texts--center .add-text {
    font-size: 1.5625rem;
    padding: 0.125rem 1.25rem 0.375rem;
  }
}

.area-contents__texts--btm {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fc6003;
}
@media screen and (min-width: 768px) {
  .area-contents__texts--btm {
    font-size: 2.25rem;
    margin-top: 0.75rem;
    margin-left: 2.875rem;
  }
}

.area-contents__texts--illust {
  width: 11.25rem;
  margin: 0.3125rem auto 0;
}
@media screen and (min-width: 768px) {
  .area-contents__texts--illust {
    width: 100%;
    margin-top: 0;
  }
}

.payment {
  padding: 2.25rem 0;
  background-color: #fff7f2;
}
@media screen and (min-width: 768px) {
  .payment {
    padding: 4.875rem 0 5.25rem;
  }
}

.payment-text {
  margin-top: 1.5625rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
}
@media screen and (min-width: 768px) {
  .payment-text {
    margin-top: 3.25rem;
    font-size: 1.5625rem;
    line-height: 1.48;
  }
}

.payment .header-pay__logo {
  margin-top: 1.375rem;
  justify-content: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .payment .header-pay__logo {
    margin-top: 2rem;
    gap: 1.375rem;
  }
}

.payment .header-pay__logo li {
  width: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .payment .header-pay__logo li {
    width: 6rem;
  }
}

.company {
  padding: 2.75rem 0 3.25rem;
  background-image: url("../img/company-bg_sp.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .company {
    background-image: url("../img/company-bg_pc.png");
    padding: 5rem 0 3.25rem;
  }
}

.company-contents__wrap {
  padding: 0 0.9375rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .company-contents__wrap {
    padding: 0;
    margin-top: 3.25rem;
  }
}

.company-contents {
  background-color: #fff;
  border-radius: 2px;
  padding: 1rem 1.125rem 2rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-contents {
    border-radius: 5px;
    padding: 4.5rem 5.125rem 0rem;
  }
}

.company-contents__illust {
  width: 100%;
  max-width: 8.4375rem;
  margin-left: 3.875rem;
}
@media screen and (min-width: 768px) {
  .company-contents__illust {
    max-width: 21.625rem;
    margin-left: -4.5rem;
  }
}

.company-contents__top {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .company-contents__top {
    margin-top: 0;
  }
}

.company-contents__texts .label {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  padding-bottom: 0.5625rem;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .company-contents__texts .label {
    font-size: 1.5625rem;
    line-height: 1.28;
    padding-bottom: 0.8125rem;
  }
}

.company-contents__texts .text {
  font-size: 0.8125rem;
  line-height: 1.6923076923;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .company-contents__texts .text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 0.8125rem;
  }
}

.company-contents__btm {
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .company-contents__btm {
    display: flex;
    align-items: center;
    margin-top: -2.125rem;
  }
}

@media screen and (min-width: 768px) {
  .company-contents__btm .company-contents__texts {
    width: 100%;
    max-width: 33.5rem;
  }
}

@media screen and (min-width: 768px) {
  .company-contents__btm .company-contents__texts .label {
    max-width: 31.5625rem;
  }
}

.flow {
  padding: 3rem 0 3.25rem;
  background-color: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 5.5rem 0 8rem;
  }
}

.flow-step {
  margin: 3.875rem auto 0;
  max-width: 28.125rem;
}
@media screen and (min-width: 768px) {
  .flow-step {
    margin-top: 5.875rem;
    gap: 0.5rem;
    max-width: initial;
  }
}

@media screen and (min-width: 768px) {
  .flow-step__list {
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.flow-step__btm {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .flow-step__btm {
    margin-top: 0;
  }
}

.flow-step__list--item {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  padding: 2.875rem 1rem 0.625rem 0;
  display: flex;
  align-items: flex-start;
  height: 10.375rem;
}
@media screen and (min-width: 768px) {
  .flow-step__list--item {
    display: block;
    padding: 2.75rem 1rem 1.875rem;
    height: initial;
  }
}

.flow-step__list--item:nth-child(n + 2) {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .flow-step__list--item:nth-child(n + 2) {
    margin-top: 0;
  }
}

.flow-step__list--item .step-num {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background-color: #27951d;
  color: #fff;
  text-align: center;
  padding-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.flow-step__list--item .step-num span {
  font-size: 1.3125rem;
  line-height: 1;
}
.flow-step__list--item .image {
  width: 6.5625rem;
}
@media screen and (min-width: 768px) {
  .flow-step__list--item .image {
    width: 6.875rem;
    margin: 0 auto;
  }
}

.flow-step__list--item .image img {
  height: auto;
  aspect-ratio: 105/110;
}
@media screen and (min-width: 768px) {
  .flow-step__list--item .image img {
    aspect-ratio: 1/1;
  }
}

.flow-step__list--item .texts {
  width: calc(100% - 5.625rem);
  margin-left: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .flow-step__list--item .texts {
    width: 100%;
    margin-left: 0;
    margin-top: 0.375rem;
  }
}

.flow-step__list--item .texts .title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  color: #27951d;
  padding-right: 6.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flow-step__list--item .texts .title {
    padding: 0;
  }
}

.flow-step__list--item .texts .text {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .flow-step__list--item .texts .text {
    margin-top: 0.75rem;
  }
}

.flow-step__list--btm {
  background-image: url("../img/flow-cancel_sp.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding: 1rem 0.5rem 0.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  color: #fff;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .flow-step__list--btm {
    background-image: url("../img/flow-cancel_pc.png");
    padding: 1.625rem;
    font-size: 1.375rem;
    line-height: 1.2727272727;
    margin-top: 0.75rem;
  }
}

.flow-step__btm .flow-step__list--item:nth-of-type(2) .image {
  width: 6rem;
  margin-top: -1.25rem;
}
@media screen and (min-width: 768px) {
  .flow-step__btm .flow-step__list--item:nth-of-type(2) .image {
    width: 6.875rem;
    margin: 0 auto;
  }
}

.flow-step__btm .flow-step__list--item:nth-of-type(2) .image img {
  height: auto;
  aspect-ratio: 1/1;
}
.flow-step__btm .flow-step__list--item:nth-of-type(2) .texts {
  width: calc(100% - 6rem);
  margin-left: 0rem;
}
@media screen and (min-width: 768px) {
  .flow-step__btm .flow-step__list--item:nth-of-type(2) .texts {
    width: 100%;
  }
}

.faq {
  padding: 3.5rem 0 3rem;
  background-color: #f5ffeb;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 5.5rem 0 8rem;
  }
}

.faq-list {
  margin: 2.625rem auto 0;
  max-width: 28.125rem;
}
@media screen and (min-width: 768px) {
  .faq-list {
    margin-top: 4.375rem;
    max-width: initial;
  }
}

.faq-list__item {
  background-color: #fff;
  border: 2px solid #c3e4c0;
  border-radius: 2px;
  padding: 1.125rem 0.875rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item {
    padding: 2rem 1.75rem 3rem;
  }
}

.faq-list__item:nth-child(n + 2) {
  margin-top: 0.625rem;
}
.faq-list__item--q {
  padding: 0 0.3125rem 0.75rem;
  border-bottom: 1px solid #27951d;
  color: #27951d;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .faq-list__item--q {
    padding: 0 0.625rem 1.375rem;
    font-size: 1.5625rem;
  }
}

.faq-list__item--a {
  padding: 0.6875rem 0.3125rem 0;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item--a {
    padding: 0.8125rem 0.625rem 0;
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 52.5rem;
  }
}

.contact {
  padding: 3.5rem 0 2rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 5.625rem 0 5.5rem;
  }
}

.contact-toptext {
  color: #e20000;
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 1.625rem;
}
@media screen and (min-width: 768px) {
  .contact-toptext {
    font-size: 1.5625rem;
    margin-bottom: 2rem;
  }
}

.contact-step {
  margin-top: 1.625rem;
  padding: 0 0.9375rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .contact-step {
    margin-top: 2.625rem;
    padding: 0;
  }
}

.contact-step li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-step li p {
  width: 6.5rem;
  height: 1.625rem;
  border: 1px solid #27951d;
  border-radius: 30px;
  padding: 0 0.3125rem;
  background-color: #fff;
  color: #27951d;
  font-weight: 700;
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .contact-step li p {
    width: 15.3125rem;
    height: 3.75rem;
    border-radius: 72px;
    padding: 0 0.75rem;
    font-size: 1.125rem;
  }
}

.contact-step li:nth-of-type(1) p {
  background-color: #27951d;
  color: #fff;
}

.confirm .contact-step li:nth-of-type(1) p {
  background-color: #fff;
  color: #27951d;
}

.confirm .contact-step li:nth-of-type(2) p {
  background-color: #27951d;
  color: #fff;
}

.contact-step li:nth-child(n + 2)::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.09375rem;
  background-color: #27951d;
}
@media screen and (min-width: 768px) {
  .contact-step li:nth-child(n + 2)::before {
    width: 1.5rem;
    height: 0.1875rem;
  }
}

.contact-form {
  margin: 1.875rem auto 0;
  max-width: 34.375rem;
}
@media screen and (min-width: 768px) {
  .contact-form {
    max-width: initial;
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .form-block {
    display: flex;
    align-items: center;
    max-width: 51.875rem;
    margin: 0 auto;
  }
}

.form-block:nth-child(n + 2) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .form-block:nth-child(n + 2) {
    margin-top: 3.125rem;
  }
}

.form-block__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .form-block__label {
    width: 21.875rem;
    padding-right: 2.625rem;
    justify-content: space-between;
    font-size: 1.25rem;
  }
}

.form-block__label .ninni {
  padding: 0.125rem 0.25rem;
  font-size: 0.625rem;
  line-height: 1;
  background-color: #01a2ff;
  color: #fff;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .form-block__label .ninni {
    font-size: 0.9375rem;
    padding: 0.125rem 0.3125rem 0.1875rem;
    border-radius: 3px;
  }
}

.form-block__label .hissu {
  padding: 0.125rem 0.25rem;
  font-size: 0.625rem;
  line-height: 1;
  background-color: #f23201;
  color: #fff;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .form-block__label .hissu {
    font-size: 0.9375rem;
    padding: 0.125rem 0.3125rem 0.1875rem;
    border-radius: 3px;
  }
}

.form-block__input {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .form-block__input {
    margin-top: 0;
    width: calc(100% - 21.875rem);
  }
}

.input-radio {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .input-radio {
    margin-top: 0;
  }
}

.input-radio label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .input-radio label {
    font-size: 1.25rem;
    gap: 0.75rem;
  }
}

.input-radio label:nth-child(n + 2) {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .input-radio label:nth-child(n + 2) {
    margin-top: 1rem;
  }
}

.input-radio label input[type="radio"] {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  border: 1.5px solid #c7c7c7;
}
@media screen and (min-width: 768px) {
  .input-radio label input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #c7c7c7;
  }
}

.input-radio label input[type="radio"]:checked {
  border: initial;
  background-image: url("../img/radio-check.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.form-block__input input[type="text"],
.form-block__input input[type="email"],
.form-block__input input[type="tel"] {
  display: block;
  width: 100%;
  height: 2.625rem;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  padding: 0.75rem 0.25rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .form-block__input input[type="text"],
  .form-block__input input[type="email"],
  .form-block__input input[type="tel"] {
    height: 3.125rem;
    padding: 0.75rem 0.3125rem;
    border: 2px solid #dbdbdb;
    font-size: 1.125rem;
  }
}

.form-block__input input[type="text"]:nth-child(n + 2) {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .form-block__input input[type="text"]:nth-child(n + 2) {
    margin-top: 1.25rem;
  }
}

.form-block__input input[type="text"]::placeholder,
.form-block__input input[type="email"]::placeholder,
.form-block__input input[type="tel"]::placeholder,
.form-block__input textarea::placeholder {
  color: #c6c6c6;
}

.form-block__input .select {
  position: relative;
  width: 11rem;
  font-size: 0.75rem;
  line-height: 1;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .form-block__input .select {
    width: 16.25rem;
    font-size: 1.125rem;
    margin-top: 1.125rem;
  }
}

.form-block__input .select::after {
  content: "";
  display: block;
  background-image: url("../img/select-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.625rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: translateY(-50%);
}

.form-block__input select {
  display: block;
  width: 100%;
  height: 2.625rem;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  padding: 0rem 0.5rem;
  background: -moz-linear-gradient(top, #e8e8e8, #f8f8f8);
  background: -webkit-linear-gradient(top, #e8e8e8, #f8f8f8);
  background: linear-gradient(to bottom, #e8e8e8, #f8f8f8);
  color: #000;
}
@media screen and (min-width: 768px) {
  .form-block__input select {
    height: 3.125rem;
  }
}

.free-area {
  align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .free-area .form-block__label {
    margin-top: 0.75rem;
  }
}

.form-block__input textarea {
  width: 100%;
  height: 15rem;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  padding: 0.75rem 0.25rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .form-block__input textarea {
    height: 21.875rem;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 1.125rem;
  }
}

.privacy-block {
  margin-top: 0.9375rem;
  padding: 0.75rem;
  background-color: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .privacy-block {
    margin-top: 3.5rem;
    padding: 1.875rem 1.875rem 2.125rem;
  }
}

.privacy-block__inner {
  background-color: #fff;
  border: 1px solid #d3d3d3;
  padding: 0.75rem 0.625rem;
  height: 16.25rem;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .privacy-block__inner {
    padding: 1.25rem 2.125rem 1.6875rem;
    border: 3px solid #d3d3d3;
    height: 18.75rem;
  }
}

.privacy-block__top {
  text-align: center;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .privacy-block__top {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.privacy-block__top:nth-child(n + 2) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .privacy-block__top:nth-child(n + 2) {
    margin-top: 2rem;
  }
}

.privacy-block__text {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .privacy-block__text {
    margin-top: 0.3125rem;
    font-size: 0.8125rem;
    line-height: 1.5384615385;
  }
}

.privacy-block__title {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .privacy-block__title {
    margin-top: 0.875rem;
    font-size: 0.8125rem;
  }
}

.form-btn {
  display: block;
  width: 16.875rem;
  height: 4.25rem;
  background-color: #ff7818;
  box-shadow: 0 5px #ba4d00;
  border-radius: 5px;
  margin: 1.875rem auto 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .form-btn {
    margin-top: 3.875rem;
    font-size: 1.5625rem;
  }
}

.form-btn:hover {
  box-shadow: 0 2px #ba4d00;
}

.confirm .contact {
  padding: 2.375rem 0 3.125rem;
}
@media screen and (min-width: 768px) {
  .confirm .contact {
    padding: 6.25rem 0 7.5rem;
  }
}

.confirm-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .confirm-title {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .confirm .contact-step {
    margin-top: 3.125rem;
  }
}

.confirm-text {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .confirm-text {
    margin-top: 2.375rem;
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.confirm .contact-form {
  margin: 1.5625rem auto 0;
  max-width: 34.375rem;
}
@media screen and (min-width: 768px) {
  .confirm .contact-form {
    max-width: 42.8125rem;
    margin-top: 4.875rem;
  }
}

.confirm .form-block:nth-child(n + 2) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .confirm .form-block:nth-child(n + 2) {
    margin-top: 2.5rem;
  }
}

.confirm .form-block__input {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .confirm .form-block__input {
    margin-top: 0;
  }
}

.confirm-btn__area {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .confirm-btn__area {
    flex-direction: row;
    gap: 1.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .confirm-btn__area .back-btn,
  .confirm-btn__area .form-btn {
    margin: 0;
  }
}

.back-btn {
  display: block;
  width: 16.875rem;
  height: 4.25rem;
  background-color: #9c9c9c;
  box-shadow: 0 5px #727272;
  border-radius: 5px;
  margin: 1.125rem auto 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .back-btn {
    font-size: 1.5625rem;
  }
}

.back-btn:hover {
  box-shadow: 0 2px #727272;
}

.thanks .contact {
  padding: 2.375rem 0;
}
@media screen and (min-width: 768px) {
  .thanks .contact {
    padding: 6.25rem 0 7.5rem;
  }
}

.thanks .contact-step {
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .thanks .contact-step {
    margin-top: 3.125rem;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-d_flex {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-d_flex {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-mobile_flex {
  display: flex;
}
@media screen and (min-width: 768px) {
  .u-mobile_flex {
    display: none;
  }
}

.u-disp-flex {
  display: flex;
}

.u-disp-flex-dt {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-dt {
    display: flex;
  }
}

.u-disp-flex-sp {
  display: flex;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-sp {
    display: block;
  }
}

.u-disp-flex__c {
  display: flex;
  justify-content: center;
}

.u-disp-flex__cc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.u-disp-flex-dt__c {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-dt__c {
    display: flex;
    justify-content: center;
  }
}

.u-disp-flex-dt__cc {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-dt__cc {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.u-posi-rela {
  position: relative;
}

.u-posi-abso {
  position: absolute;
}

.u-posi-fixed {
  position: fixed;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.3);
}

.white-text {
  color: #fff;
}

.red-text {
  color: #e20000;
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(180deg, #f5fded, #9de645);
  background: -webkit-linear-gradient(-90deg, #f5fded, #9de645);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-fill {
  position: relative;
  z-index: 2;
}

.text-stroke {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-text-stroke: 3px #317a31;
  z-index: 1;
  font-size: inherit;
}
@media screen and (min-width: 768px) {
  .text-stroke {
    -webkit-text-stroke: 5px #317a31;
  }
}

.num-font {
  font-family: "roboto", sans-serif;
}

/* 10/29追加CSS */
.form__span {
  font-size: 0.5em;
}

@media screen and (min-width: 768px) {
  .form__span {
    font-size: 0.8em;
  }
}

@media screen and (min-width: 1024px) {
  .header-pay {
    max-width: 17.5rem;
  }
}

@media screen and (min-width: 768px) {
  .header-tel,
  .header-contact {
    width: calc(100% / 3 - 0.3125rem);
  }
}

@media screen and (min-width: 768px) {
  header .fixed-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.3rem;
    max-width: 29.25rem;
  }
}

@media screen and (min-width: 768px) {
  .header-tel__text--btm {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .header-contact__text--top img {
    width: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .header-contact__text--top {
    font-size: 0.7rem;
  }
}

@media screen and (min-width: 768px) {
  .header-contact__text--btm {
    font-size: 0.7rem;
    margin-top: 0.2rem;
  }
}

@media screen and (min-width: 768px) {
  .header-tel a,
  .header-contact a {
    height: 4.125rem;
  }
}

@media screen and (min-width: 768px) {
  header {
    padding: 1rem 1rem;
  }
}

@media screen and (min-width: 768px) {
  .mv-toptext {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 768px) {
  .mv-title .broun-text {
    font-size: 5rem;
  }
}

.mv-toptext .stroke {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  -webkit-text-stroke: 6px #fff;
  z-index: 1;
  font-size: inherit;
}

.mv {
  position: relative;
}

.mv::after {
  content: "";
  position: absolute;
  background-color: #ffffffcc;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (min-width: 768px) {
  .mv::after {
    content: "";
    position: absolute;
    width: 38rem;
    height: 38rem;
  }
}

.mv-awared {
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 768px) {
  .header-tel:first-child {
    display: inline-block;
    background: linear-gradient(180deg, #97df90 0, #27951d 100%);
    background: -webkit-linear-gradient(-90deg, #97df90 0, #27951d 100%);
    color: #fff;
    border: #37a02d 1px solid;
  }

  .header-tel:first-child .header-tel__text--btm {
    color: #fff;
  }
}

.cta-tel:first-child {
  display: inline-block;
  background: linear-gradient(180deg, #97df90 0, #27951d 100%);
  background: -webkit-linear-gradient(-90deg, #97df90 0, #27951d 100%);
  color: #fff;
  border: #37a02d 2px solid;
}

.cta-tel:first-child .cta-tel__text--btm {
  color: #fff;
}

.cta-tel {
  border-radius: 4px;
}

.cta-contact {
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .cta-tel:first-child {
    border: #27951d 3px solid;
  }
}

@media screen and (min-width: 768px) {
  .cta-texts__title {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .cta-texts__title .broun-text {
    font-size: 2.8rem;
  }
}

.cta-pc {
  display: none;
}

.cta-sp {
  display: block;
}

.cta-texts__title .broun-text {
  font-size: 2.5rem;
  line-height: 1.23;
  color: #8f1e07;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cta-texts__title .green-text {
    font-size: 4.125rem;
  }

  .cta-pc {
    display: inline;
  }

  .cta-sp {
    display: none;
  }
}

.stroke .huyouhin.sp {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  -webkit-text-stroke: 4px #fff;
  text-shadow: 0px 2px 4px black;
}

.mv-title .broun-text {
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .mv-title .broun-text {
    line-height: 1;
  }
}

@media screen and (max-width: 768px) {
  .fixed-btn .header-contact {
    width: 100%;
  }
  .fixed-btn {
    flex-wrap: wrap;
  }
  .header-tel:first-child {
    background-color: #27951d;
    color: #fff;
  }
  .header-tel:first-child .header-tel__text--btm {
    color: #fff;
  }

  .cta-btn .cta-contact {
    order: 3;
  }
  .cta-btn .cta-tel:nth-of-type(1) {
    order: 3;
  }
  .cta-btn .cta-tel:nth-of-type(2) {
    order: 1;
  }

  .header-tel a, .header-contact a {
    height: 4rem;
}
}

.header-tel,
.header-contact {
  border-radius: 3.12px;
}
/* 10/29追加CSS */

/*# sourceMappingURL=style.css.map */
