@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1150px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #565656;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.banner-layout {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .banner-layout {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .banner-layout.banner--footer {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .benefit-layout {
    padding-bottom: 4.1875rem;
  }
}

.contact-layout {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contact-layout {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.faq-layout {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .faq-layout {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.graph-layout {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .graph-layout {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

.header-layout {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  width: 100%;
  max-width: 78.125rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.mv-layout {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .mv-layout {
    margin-top: 3.75rem;
  }
}

.plan-layout {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .plan-layout {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.privacy-layout {
  padding-top: 12.5rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .privacy-layout {
    padding-top: 6.25rem;
    padding-bottom: 3.125rem;
  }
}

.reason-layout {
  padding-top: 5rem;
  padding-bottom: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .reason-layout {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.service-layout {
  padding-top: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .service-layout {
    padding-top: 4rem;
    margin-bottom: 4rem;
  }
}

.support-layout {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .support-layout {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

.thanks-layout {
  padding-top: 12.5rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .thanks-layout {
    padding-top: 6.25rem;
    padding-bottom: 3.125rem;
  }
}

.fixed-button {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .fixed-button {
    top: initial;
    bottom: 0;
    flex-direction: row;
    gap: 0.5rem;
    right: initial;
    left: 0;
    justify-content: center;
    width: 100%;
  }
}

.fixed-line {
  background-color: #06C755;
  color: #fff;
  padding: 4.125rem 1rem 0.875rem;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .fixed-line {
    padding: 0.5rem 1.875rem 0.5rem 3.4375rem;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
    box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.25);
  }
}

.fixed-line a {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fixed-line a {
    writing-mode: horizontal-tb;
    font-size: 0.875rem;
  }
}

.fixed-line a::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/Link-1.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  width: 3rem;
  height: 3rem;
  top: -3.3125rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .fixed-line a::before {
    width: 1.3125rem;
    height: 1.3125rem;
    top: 50%;
    transform: translateY(-50%);
    left: -1.625rem;
  }
}

.fixed-contact {
  background-color: #E7930C;
  color: #fff;
  padding: 2.1875rem 1rem;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .fixed-contact {
    padding: 0.5rem 0.8625rem;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
    box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.25);
  }
}

.fixed-contact a {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fixed-contact a {
    writing-mode: horizontal-tb;
    font-size: 0.875rem;
  }
}

.banner {
  background-image: url(../images/common/cta-bg.webp);
  width: 100%;
  height: 29.625rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
@media screen and (max-width: 767px) {
  .banner {
    background-image: url(../images/common/cta-sp-bg.webp);
    height: 27.4375rem;
  }
}

.banner.banner--footer {
  height: 38.25rem;
}
@media screen and (max-width: 767px) {
  .banner.banner--footer {
    height: 37.5rem;
  }
}

.banner__img {
  width: 100%;
  max-width: 41.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .banner__img {
    max-width: 21.4375rem;
  }
}

.banner__button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__button a {
  padding: 0.75rem 12.75rem 0.75rem 8.375rem;
  background-color: #E7930C;
  border-radius: 0.25rem;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .banner__button a {
    padding: 0.75rem;
    width: 21.4375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
  }
}

.banner__button a::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/Link-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  left: 13.1875rem;
}
@media screen and (max-width: 767px) {
  .banner__button a::before {
    width: 1.875rem;
    height: 1.875rem;
    left: 9.21875rem;
    top: 1.625rem;
  }
}

.banner__button a::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.875rem;
  height: 1.5625rem;
  top: 50%;
  transform: translateY(-50%);
  right: 8.875rem;
}
@media screen and (max-width: 767px) {
  .banner__button a::after {
    width: 1.5rem;
    height: 1.5rem;
    right: 1.25rem;
  }
}

.banner__button-contact {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .banner__button-contact {
    margin-top: 1.5rem;
  }
}

.banner__button-contact a {
  padding: 0.75rem 7.0625rem 0.75rem 4.25rem;
  background-color: #fff;
  border: 1px solid #565656;
  border-radius: 0.25rem;
  color: #565656;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .banner__button-contact a {
    padding: 0.90625rem;
    width: 21.4375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    text-align: center;
  }
}

.banner__button-contact a::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/contact-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
  right: 4.625rem;
  width: 1.5625rem;
  height: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .banner__button-contact a::after {
    width: 1.5rem;
    height: 1.5rem;
    right: 1.25rem;
  }
}

.benefit {
  background-color: #F9F6F0;
  position: relative;
}

.benefit::after {
  position: absolute;
  content: "beauty grave";
  font-size: 13.5rem;
  font-weight: 800;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.4);
  bottom: -5%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .benefit::after {
    writing-mode: vertical-lr;
    font-size: 6.25rem;
    left: 0;
    bottom: 0;
    z-index: 0;
  }
}

.benefit__title {
  margin-top: 4.65625rem;
  text-align: center;
  color: #565656;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .benefit__title {
    margin-top: 2rem;
    font-size: 1.875rem;
    position: relative;
    z-index: 2;
  }
}

.benefit__title span {
  color: #E7930C;
}

.benefit__contents {
  border: 3px solid #08A05A;
  border-radius: 0.25rem;
  margin-top: 3.5625rem;
  padding: 5.625rem 1.25rem 5.625rem 7.75rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .benefit__contents {
    margin-top: 2.5rem;
    padding: 2.5rem 1.03125rem 14.625rem;
  }
}

.benefit__text-body {
  width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .benefit__text-body {
    width: 19.4375rem;
  }
}

.benefit__text-top {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #565656;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .benefit__text-top {
    font-size: 1.625rem;
  }
}

.benefit__text-price {
  margin-top: 0.625rem;
  background-color: #E7930C;
  color: #fff;
  padding: 0.5625rem 2.1875rem;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", serif;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .benefit__text-price {
    font-size: 2rem;
    padding: 0.5625rem 2.375rem;
  }
}

.benefit__text-price span {
  font-size: 3.875rem;
}
@media screen and (max-width: 767px) {
  .benefit__text-price span {
    font-size: 3.375rem;
  }
}

.benefit__text {
  margin-top: 1.25rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #565656;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .benefit__text {
    margin-top: 1rem;
    font-size: 1.625rem;
  }
}

.benefit__text-under {
  margin-top: 0.625rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #565656;
  text-align: center;
}

.benefit__banner-bg {
  position: absolute;
  content: "";
  background-image: url(../images/common/map-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  right: 1.25rem;
  width: 46.875rem;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .benefit__banner-bg {
    background-image: url(../images/common/map-sp-img.webp);
    width: 20.9375rem;
    left: 50%;
    transform: translateX(-50%);
    height: 12.1875rem;
    bottom: 0;
    top: initial;
  }
}

.contact {
  background-color: #F9F6F0;
}

.contact__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  color: #565656;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 1.5rem;
  }
}

.contact__form {
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
  width: 100%;
}

.contact__form-wrap + .contact__form-wrap {
  margin-top: 1.5rem;
}

.contact__form-label {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #565656;
}
@media screen and (max-width: 767px) {
  .contact__form-label {
    font-size: 0.875rem;
  }
}

.contact__form-label span {
  margin-left: 0.25rem;
  background-color: #E7930C;
  padding: 0.1875rem;
  border-radius: 0.125rem;
  display: inline-block;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.contact__form-input {
  margin-top: 0.5rem;
}

.contact__form-input input {
  padding: 1rem 0.75rem;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1rem;
  line-height: 1;
  border-radius: 0.5rem;
  border: 0.0625rem solid #c7c7c7;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: none;
}
@media screen and (max-width: 767px) {
  .contact__form-input input {
    padding: 0.9375rem 0.75rem;
    font-size: 0.9375rem;
  }
}

.contact__form-input input:focus {
  outline: none;
}

.contact__form-input input::-moz-placeholder {
  color: rgba(86, 86, 86, 0.6);
}

.contact__form-input input::placeholder {
  color: rgba(86, 86, 86, 0.6);
}

.contact__form-textarea {
  margin-top: 0.5rem;
}

.contact__form-textarea textarea {
  padding: 0.625rem;
  width: 100%;
  height: 14.5625rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1rem;
  line-height: 1;
  border-radius: 0.5rem;
  border: 0.0625rem solid #c7c7c7;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  resize: none;
}
@media screen and (max-width: 767px) {
  .contact__form-textarea textarea {
    height: 10.6875rem;
    font-size: 0.9375rem;
  }
}

.contact__form-textarea textarea:focus {
  box-shadow: none;
  outline: none;
}

.contact__form-textarea textarea::-moz-placeholder {
  color: rgba(86, 86, 86, 0.6);
}

.contact__form-textarea textarea::placeholder {
  color: rgba(86, 86, 86, 0.6);
}

.contact__form-privacy {
  margin-top: 1.5rem;
  display: flex;
  margin-bottom: 1.5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy {
    font-size: 1rem;
  }
}

.contact__form-privacy input {
  display: none;
}

.contact__form-privacy input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 2.5rem;
  position: relative;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #565656;
}

.contact__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  border: 1px solid #8c8c8c;
  border-radius: 0.0625rem;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy input + span::before {
    left: 0.9375rem;
  }
}

.contact__form-privacy input + span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg);
  display: block;
  width: 0.9375rem;
  height: 0.5rem;
  border-bottom: 0.1875rem solid #333;
  border-left: 0.1875rem solid #333;
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy input + span::after {
    left: 0.9375rem;
  }
}

.contact__form-privacy input + span a {
  text-decoration: underline;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #E7930C;
}

.contact__form-privacy input:checked + span::after {
  opacity: 1;
}

.contact__form-submit {
  margin-top: 2.5rem;
  text-align: center;
}

.contact__form-submit input {
  padding: 1rem;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", serif;
  color: #fff;
  display: inline-block;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  background-color: #E7930C;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__form-submit input {
    font-size: 1rem;
  }
}

.contact__form-submit input:hover,
.contact__form-submit input:focus {
  outline: none;
}

.contact__form-submit input::-moz-foucus-inner {
  padding: 0;
  border: none;
}

label.auth-body {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #565656;
}
@media screen and (max-width: 767px) {
  label.auth-body {
    font-size: 0.875rem;
  }
}

input.auth {
  padding: 1rem 0.75rem;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1rem;
  line-height: 1;
  border-radius: 0.5rem;
  border: 0.0625rem solid #c7c7c7;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: none;
}
@media screen and (max-width: 767px) {
  input.auth {
    padding: 0.9375rem 0.75rem;
    font-size: 0.9375rem;
  }
}

.faq {
  width: 100%;
  background-image: url(../images/common/faq-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.faq__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  color: #565656;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 1.5rem;
  }
}

.faq__container {
  width: 100%;
  max-width: 58.375rem;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq__item-title {
  background-color: #ebf8f9;
  display: flex;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .faq__item-title {
    padding: 1rem 0.5rem;
  }
}

.faq__item-title span {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: capitalize;
  color: #08A05A;
}
@media screen and (max-width: 767px) {
  .faq__item-title span {
    font-size: 1rem;
  }
}

.faq__title-text {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #565656;
  margin-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .faq__title-text {
    margin-left: 0.625rem;
    font-size: 1rem;
  }
}

.faq__content {
  background-color: #fff;
  padding: 1rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .faq__content {
    padding: 1rem 0.5rem;
  }
}

.faq__content span {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: capitalize;
  color: #E7930C;
}
@media screen and (max-width: 767px) {
  .faq__content span {
    font-size: 1rem;
  }
}

.faq__content-text {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  color: #565656;
  margin-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .faq__content-text {
    margin-left: 0.625rem;
    font-size: 1rem;
  }
}

.footer {
  padding: 1rem;
  background-color: #565656;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: -2.5rem;
    padding: 0.9375rem;
  }
}

.footer__inner small {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer__inner small {
    font-size: 0.625rem;
  }
}

.graph__text {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .graph__text {
    max-width: 21.4375rem;
  }
}

.graph__items {
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 58.375rem;
  gap: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .graph__items {
    margin-top: 2.1875rem;
    flex-direction: column;
    gap: 0.8125rem;
    max-width: 21.4375rem;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.125rem;
}

.header {
  height: 5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.75rem;
  }
}

.header__inner {
  height: inherit;
  padding: 0 7.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1rem;
  }
}

.header__logo-body {
  height: inherit;
  display: flex;
}

.header__name {
  width: 100%;
  max-width: 5rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__name {
    max-width: 3.75rem;
  }
}

.header__logo {
  width: 100%;
  display: flex;
  align-items: center;
  height: inherit;
}

.header__logo img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__items {
  display: flex;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__link {
  padding: 0 1rem;
  display: flex;
  align-items: center;
  height: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #565656;
  font-family: "Zen Kaku Gothic Antique", serif;
}

.header__link.header__link--contact {
  padding: 0 3.125rem 0 4.125rem;
  background-color: #E7930C;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #E7930C;
  margin-left: 1rem;
}

.header__link.header__link--contact::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/Link-1.svg);
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 3rem;
  height: 3rem;
}

.header__link.header__link--contact::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/button-arrow.svg);
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1.5rem;
  height: 1.5rem;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 0.875rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.hamburger span {
  width: 1.5rem;
  height: 0.1875rem;
  background-color: #565656;
  position: absolute;
  left: 0.25rem;
  transition: 0.3s transform ease;
}

.hamburger span:nth-child(1) {
  top: 0.5rem;
}

.hamburger span:nth-child(2) {
  top: 1rem;
  transition: 0.3s opacity ease;
}

.hamburger span:nth-child(3) {
  top: 1.5rem;
}

.hamburger.is-open span:nth-child(1) {
  top: 1.5rem;
  transform: rotate(-45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 1.5rem;
  transform: rotate(45deg);
}

.drawer-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 100vh;
  background-color: #ebf8f9;
  overflow-y: scroll;
  scrollbar-width: none;
}

.drawer-menu::-webkit-scrollbar {
  display: none;
}

.drawer-menu__inner {
  width: 100%;
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drawer-menu__logo {
  margin-top: 0.625rem;
  margin-left: 1rem;
  display: flex;
  align-items: center;
}

.drawer-menu__logo a {
  width: 100%;
  max-width: 7.875rem;
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2.25rem;
}

.drawer-menu__item {
  height: inherit;
}

.drawer-menu__link {
  display: flex;
  width: 10.6875rem;
  align-items: center;
  padding: 1.5rem 0 1.5rem 1rem;
  display: block;
  font-size: 1rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #565656;
  text-align: left;
  position: relative;
}

.drawer-menu__link.drawer-menu__link--contact {
  padding: 1.625rem 3.125rem 1.625rem 4.125rem;
  background-color: #E7930C;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #E7930C;
  margin-left: 1rem;
}

.drawer-menu__link.drawer-menu__link--contact::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/Link-1.svg);
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 3rem;
  height: 3rem;
}

.drawer-menu__link.drawer-menu__link--contact::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/button-arrow.svg);
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1.5rem;
  height: 1.5rem;
}

.mv {
  width: 100%;
  height: 48.125rem;
  background-image: url(../images/common/mv-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
@media screen and (max-width: 767px) {
  .mv {
    height: initial;
    background-image: none;
    background-color: #F9F6F0;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .mv__button-body {
    position: absolute;
    bottom: 0.9375rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.mv__inner {
  padding-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    padding-top: 1.25rem;
  }
}

.mv__contents {
  display: flex;
  align-items: center;
  gap: 7.875rem;
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .mv__contents {
    flex-direction: column;
    margin-top: 1.25rem;
    gap: 14rem;
  }
}

.mv__title {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #303030;
  text-shadow: 0 0.25rem 0.25rem white;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 2.25rem;
  }
}

.mv__title span {
  font-size: 7.5rem;
}
@media screen and (max-width: 767px) {
  .mv__title span {
    font-size: 3.4375rem;
  }
}

.mv__sub-title-body {
  width: 100%;
}

.mv__sub-title-top {
  background-color: #D4EABD;
  color: #303030;
  text-align: center;
  font-size: 2.125rem;
  font-family: "Zen Kaku Gothic Antique", serif;
}
@media screen and (max-width: 767px) {
  .mv__sub-title-top {
    font-size: 1rem;
  }
}

.mv__sub-title {
  background-color: #fff;
  color: #E7930C;
  font-size: 2.8125rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .mv__sub-title {
    font-size: 1rem;
  }
}

.mv__sub-title span {
  font-size: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .mv__sub-title span {
    font-size: 2.625rem;
  }
}

.mv__sub-title-under {
  margin-top: 1rem;
  background-color: #fff;
  font-size: 1.5625rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  color: #303030;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .mv__sub-title-under {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}

.mv__button-container {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .mv__button-container {
    gap: 0.875rem;
  }
}

.mv__button {
  display: inline-block;
  padding: 1.5rem 4.90625rem 1.5rem 3.90625rem;
  background-color: #06C755;
  border-radius: 3.75rem;
  color: #fff;
  font-size: 2.25rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  border: 2px solid #06C755;
  position: relative;
  transition: 0.3s all ease;
}
@media screen and (max-width: 767px) {
  .mv__button {
    padding: 0.875rem 6.8125rem 0.875rem 6.21875rem;
    font-size: 1rem;
  }
}

.mv__button span {
  background-color: #fff;
  color: #06C755;
  text-transform: uppercase;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .mv__button span {
    padding: 0.25rem 0.5rem;
    margin-right: 0.25rem;
  }
}

.mv__button::after {
  position: absolute;
  content: "";
  width: 0.9375rem;
  height: 1.5625rem;
  background-image: url(../images/common/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .mv__button::after {
    right: 4.3125rem;
    width: 0.75rem;
    height: 1.25rem;
  }
}

.mv__button:hover {
  opacity: 1;
  border-color: #fff;
}

.plan {
  background-color: #F9F6F0;
}

.plan__title {
  font-size: 2rem;
  font-weight: 800;
  color: #565656;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .plan__title {
    font-size: 1.5rem;
  }
}

.plan__title span {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .plan__title span {
    font-size: 1.6875rem;
  }
}

.plan__items {
  margin-top: 4rem;
  display: flex;
  gap: 1.75rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .plan__items {
    flex-direction: column;
    gap: 1.125rem;
  }
}

.plan__item {
  width: 18.375rem;
  height: 16.3125rem;
  border-radius: 0.5rem;
  border: 1px solid #E7930C;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .plan__item {
    width: 21.4375rem;
    height: 10.5rem;
  }
}

.plan__item.plan__item--hakapika {
  width: 18.375rem;
  height: 17.75rem;
  border: 6px solid #E7930C;
}
@media screen and (max-width: 767px) {
  .plan__item.plan__item--hakapika {
    width: 21.4375rem;
    height: 12.1875rem;
  }
}

.plan__top-text {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #565656;
  line-height: 1;
  padding-bottom: 1rem;
  width: 15.375rem;
  text-align: center;
  border-bottom: 1px solid #c7c7c7;
}
@media screen and (max-width: 767px) {
  .plan__top-text {
    font-size: 1.125rem;
  }
}

.plan__top-text span {
  color: #08A05A;
}

.plan__middle-text {
  font-family: "Zen Kaku Gothic Antique", serif;
  margin-top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #565656;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .plan__middle-text {
    font-size: 1.25rem;
  }
}

.plan__middle-text span {
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .plan__middle-text span {
    font-size: 0.75rem;
  }
}

.plan__under-text {
  margin-top: 3.4375rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #565656;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .plan__under-text {
    margin-top: 1.4375rem;
    font-size: 1rem;
  }
}

.plan__under-text.plan__under-text--hakapika {
  margin-top: 1.4375rem;
}

.plan__under-text span {
  display: block;
  color: #E7930C;
  margin-bottom: -0.875rem;
}
@media screen and (max-width: 767px) {
  .plan__under-text span {
    margin-bottom: -0.625rem;
  }
}

.plan__container {
  margin-top: 4rem;
}

.pricing-table {
  margin-top: 4rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .pricing-table {
    margin-top: 3rem;
  }
}

.pricing-table th,
.pricing-table td {
  border: 1px dashed #ddd;
  padding: 2.375rem;
}
@media screen and (max-width: 767px) {
  .pricing-table th,
  .pricing-table td {
    padding: 1.6875rem 0;
  }
}

@media screen and (max-width: 767px) {
  .pricing-table th {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  border: none;
  border-spacing: 0;
  align-items: center;
}

.pricing-table th {
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .pricing-table th {
    width: 5.5rem;
  }
}

.pricing-table td img {
  display: inline-block;
}

.pricing-price {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #565656;
}
@media screen and (max-width: 767px) {
  .pricing-price {
    font-size: 1.125rem;
  }
}

.pricing-price.pricing-price--green {
  background-color: #08A05A;
  color: #fff;
  position: relative;
}

.pricing-price.pricing-price--green::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/plan-coment.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  width: 10.125rem;
  height: 3rem;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .pricing-price.pricing-price--green::before {
    width: 5.3125rem;
    height: 2.4375rem;
    top: -0.5rem;
  }
}

.pricing-table th.pricing-price.pricing-price--green,
.pricing-table td.pricing-middle {
  border-left: 1px solid #08A05A;
  border-right: 1px solid #08A05A;
}

.pricing-table td.pricing-middle.pricing-middle--last {
  border-bottom: 1px solid #08A05A;
}

.pricing-price span {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .pricing-price span {
    font-size: 0.5625rem;
  }
}

.pricing-middle {
  background-color: #ebf8f9;
  border-color: #08A05A;
}

.pricing-table td {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  color: #565656;
}
@media screen and (max-width: 767px) {
  .pricing-table td {
    font-size: 0.875rem;
  }
}

.pricing-table td.pricing-number {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pricing-table td.pricing-number {
    font-size: 1rem;
  }
}

.pricing-number span {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .pricing-number span {
    font-size: 0.75rem;
  }
}

.pricing-number span.pricing-number--special {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 0.5;
}
@media screen and (max-width: 767px) {
  .pricing-number span.pricing-number--special {
    margin-top: 0.375rem;
    font-size: 0.8125rem;
  }
}

.pricing-table td p.pricing-special {
  font-size: pre(16);
}
@media screen and (max-width: 767px) {
  .pricing-table td p.pricing-special {
    font-size: 0.8125rem;
  }
}

.plan__rank-up {
  margin-top: 4rem;
}

.plan__sub-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: #565656;
}
@media screen and (max-width: 767px) {
  .plan__sub-title {
    font-size: 1.25rem;
  }
}

.plan__title.plan__title--rank-up {
  position: relative;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .plan__title.plan__title--rank-up {
    font-size: 1.5rem;
  }
}

.plan__title.plan__title--rank-up::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/up-icon.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  width: 5.4375rem;
  height: 5.4375rem;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .plan__title.plan__title--rank-up::after {
    display: none;
  }
}

.rank-up__contents {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 58.3125rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .rank-up__contents {
    margin-top: 3rem;
    flex-direction: column;
    gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .rank-up__arrow {
    width: 3.25rem;
  }
}

.rank-up__button {
  margin-top: 4rem;
}

.privacy {
  background-color: #F9F6F0;
}

.privacy__title {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .privacy__title {
    font-size: 1.75rem;
  }
}

.privacy__items {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .privacy__items {
    margin-top: 3rem;
  }
}

.privacy__sub-title {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .privacy__sub-title {
    font-size: 1.25rem;
  }
}

.privacy__text {
  font-family: "Zen Kaku Gothic Antique", serif;
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .privacy__text {
    font-size: 0.9375rem;
  }
}

.button-reverse {
  margin-top: 2.5rem;
  width: 25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .button-reverse {
    width: 12.5rem;
  }
}

.button-reverse a {
  text-align: center;
  padding: 1rem;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", serif;
  color: #fff;
  display: inline-block;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  background-color: #E7930C;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .button-reverse a {
    font-size: 1rem;
  }
}

.reason {
  background-color: #F9F6F0;
}

.reason__title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  color: #565656;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reason__title {
    font-size: 1.5rem;
  }
}

.reason__title span {
  font-size: 3rem;
  color: #E7930C;
}
@media screen and (max-width: 767px) {
  .reason__title span {
    font-size: 2.375rem;
  }
}

.reason__contents {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .reason__contents {
    margin-top: 3rem;
  }
}

.reason__items {
  display: flex;
  gap: 1.09375rem;
}
@media screen and (max-width: 767px) {
  .reason__items {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.reason__item {
  position: relative;
}

.reason__number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.8125rem;
  width: 100%;
  max-width: 3.625rem;
}
@media screen and (max-width: 767px) {
  .reason__number {
    max-width: 3.125rem;
  }
}

.reason__number img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.reason__img {
  width: 100%;
  max-width: 23.3125rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .reason__img {
    max-width: pre(327);
  }
}

.reason__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 373/248;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .reason__img img {
    aspect-ratio: 327/217;
  }
}

.reason__text-body {
  padding: 1rem 0.75rem;
  background-color: #fff;
  border-radius: 0.25rem;
  width: 100%;
  max-width: 24.25rem;
  height: 9.4375rem;
}
@media screen and (max-width: 767px) {
  .reason__text-body {
    height: 8.5625rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.reason__sub-title {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: #565656;
}
@media screen and (max-width: 767px) {
  .reason__sub-title {
    font-size: 1.4375rem;
  }
}

.reason__text {
  margin-top: 1rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  color: #565656;
}
@media screen and (max-width: 767px) {
  .reason__text {
    font-size: 1rem;
  }
}

.service__title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  color: #565656;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__title {
    font-size: 1.5rem;
  }
}

.service__items {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  row-gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .service__items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
    -moz-column-gap: 1.125rem;
         column-gap: 1.125rem;
    row-gap: 1rem;
  }
}

.support__treat {
  display: flex;
  width: 100%;
  max-width: 24.0625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .support__treat {
    max-width: 15.8125rem;
  }
}

.support__treat img {
  display: flex;
}

.support__title {
  margin-top: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  color: #565656;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .support__title {
    margin-top: 0.375rem;
    font-size: 1.5rem;
  }
}

.support__title span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .support__title span {
    font-size: 1.5rem;
  }
}

.support__text {
  margin-top: 3rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
  color: #565656;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .support__text {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}

.support__items {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .support__items {
    margin-top: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.thanks__title {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 3.125rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .thanks__title {
    font-size: 1.5rem;
  }
}

.thanks__text {
  margin-top: 2.5rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    font-size: 1rem;
  }
}

.thanks__button {
  margin-top: 2.5rem;
  width: 25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .thanks__button {
    width: 12.5rem;
  }
}

.thanks__button a {
  text-align: center;
  padding: 1rem;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", serif;
  color: #fff;
  display: inline-block;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  background-color: #E7930C;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .thanks__button a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-show {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
