@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

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

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

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

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

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

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * 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: 1080px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #110800;
  line-height: 1.75;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

body.no-scroll {
  overflow: hidden;
}

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

a:hover {
  opacity: 0.8;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
}

.body-wrapper {
  max-width: 1080px;
  width: 100%;
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-inline: auto;
}

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

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

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

.section-title {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 1.5625rem;
  color: #C97592;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.375rem;
  }
}

#attention {
  z-index: -1;
  background-image: url(../images/attention-bg-img.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding-top: 4.375rem;
  padding-bottom: 5rem;
  width: 100%;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
@media screen and (max-width: 767px) {
  #attention {
    padding-top: 2rem;
    padding-bottom: 2.8125rem;
    background-image: url(../images/attention-bg-img-sp.png);
  }
}
#attention .attention__inner {
  text-align: center;
}
#attention .attention__heading {
  z-index: 1;
  position: relative;
  font-size: 6.25rem;
  font-weight: 700;
  color: #EF116C;
  letter-spacing: 0.34em;
  line-height: 1.75;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  #attention .attention__heading {
    font-size: 5.8125rem;
  }
}
#attention .attention__heading::after {
  position: absolute;
  z-index: -1;
  content: "attention";
  top: -7.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Lora", serif;
  font-size: 6.0625rem;
  font-weight: 300;
  color: #F4CED9;
  letter-spacing: 0.1em;
  line-height: 5;
}
@media screen and (max-width: 767px) {
  #attention .attention__heading::after {
    top: -7.1875rem;
    font-size: 5.625rem;
  }
}
#attention .attention__text--count {
  font-size: 2rem;
  letter-spacing: 0.01em;
  padding-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  #attention .attention__text--count {
    margin-top: 1.25rem;
    font-size: 1.75rem;
  }
}
#attention .attention__text--count .strong {
  font-size: 3.1875rem;
  font-weight: 700;
  color: #EF116C;
  letter-spacing: 0.05em;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  #attention .attention__text--count .strong {
    font-size: 2.875rem;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 767px) {
  #attention .attention__text--count .letter-spacing {
    letter-spacing: -0.07em;
  }
}
@media screen and (max-width: 767px) {
  #attention .attention__text--count .letter-spacing-more {
    letter-spacing: -0.13em;
  }
}
#attention .attention__text--usually {
  margin-top: 0.9375rem;
  font-size: 1.5625rem;
  padding-left: 0.3125rem;
}
@media screen and (max-width: 767px) {
  #attention .attention__text--usually {
    margin-top: 0.8rem;
    font-size: 1.5625rem;
    letter-spacing: normal;
  }
}
#attention .attention__text--usually .letter-spacing {
  letter-spacing: -0.1em;
}
@media screen and (max-width: 767px) {
  #attention .attention__text--usually .letter-spacing.more {
    letter-spacing: -0.15em;
  }
}
@media screen and (max-width: 767px) {
  #attention .attention__text--usually .letter-spacing.less {
    letter-spacing: -0.04em;
  }
}
@media screen and (max-width: 767px) {
  #attention .attention__text--usually .sp-letter-spacing {
    letter-spacing: -0.1em;
  }
}
#attention .attention__text--strong {
  margin-top: -0.625rem;
  font-size: 1.75rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  #attention .attention__text--strong {
    margin-top: 0;
    font-size: 1.625rem;
    line-height: 1.3;
    letter-spacing: -0.08em;
  }
}
#attention .attention__text--strong .strong {
  font-size: 2.5rem;
  color: #EF116C;
  letter-spacing: 0.03em;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  #attention .attention__text--strong .strong {
    font-size: 2.3125rem;
    letter-spacing: normal;
  }
}
#attention .attention__text--remarks {
  padding: 0.5rem 0.75rem;
  margin-top: 1.5625rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FCFAFB;
  text-align: center;
  font-size: 1.25rem;
  color: #EF116C;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  #attention .attention__text--remarks {
    margin-top: 1.5625rem;
    padding: 0.3125rem 0.125rem 0.3125rem 0.1875rem;
    font-size: 1.25rem;
  }
}
#attention .attention__text--remarks .letter-spacing {
  letter-spacing: -0.04em;
}
#attention .attention__text--remarks .letter-spacing-strong {
  letter-spacing: -0.08em;
}

.mv .video {
  width: 100%;
  height: auto;
  aspect-ratio: 1080/607.5;
  position: relative;
}
.mv .video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv .mv__img-area {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv .mv__img-area {
    padding-top: 1.875rem;
    background-color: #FDF6F6;
  }
}
.mv .mv__img {
  width: 100%;
  height: auto;
}
.mv .mv__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1078/474;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .mv .mv__img img {
    aspect-ratio: 654.3/683.8;
  }
}

#hero {
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  #hero {
    padding-bottom: 4.75rem;
  }
}
#hero .hero__heading {
  text-align: center;
}
#hero .hero__heading--main {
  padding-top: 0.625rem;
  padding-bottom: 0.3125rem;
  background-color: #C97592;
  font-size: 2.625rem;
  letter-spacing: 0.09em;
  color: #fff;
}
#hero .hero__heading--sub {
  margin-top: 0.3125rem;
  font-size: 2.375rem;
}
#hero .hero__text-area {
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #hero .hero__text-area {
    margin-top: 5.625rem;
  }
}
#hero .hero__text--head,
#hero .hero__text {
  font-size: 1.75rem;
}
#hero .hero__text {
  margin-top: 1.5625rem;
}
#hero .hero__text-list {
  margin-top: 1.5625rem;
}
#hero .hero__text-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.75rem;
  padding-left: 1em;
  position: relative;
}
#hero .hero__text-item::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}
#hero .hero__text-item:not(:first-child) {
  margin-top: 0.3125rem;
}
#hero .hero__text--strong {
  margin-top: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 2.0625rem;
  letter-spacing: 0.05em;
}
#hero .hero__text--strong .highlight {
  font-weight: 700;
  color: #fff;
  padding: 0.5rem 1rem;
  background-color: #C97592;
}
@media screen and (max-width: 767px) {
  #hero .hero__text--strong .highlight {
    padding: 0.5rem 0.625rem;
    font-size: 2rem;
  }
}
#hero .letter-spacing {
  letter-spacing: -0.03em;
}
#hero .contact {
  margin-top: 3.3125rem;
}

#benefit {
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  #benefit {
    padding-bottom: 4.75rem;
  }
}
#benefit .benefit__content {
  z-index: -1;
  padding-top: 4.6875rem;
  padding-bottom: 6.25rem;
  width: 100%;
  height: 100%;
  background-color: #FCF6F4;
  border-top-right-radius: 8.5625rem;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__content {
    padding-top: 6rem;
    padding-bottom: 8.125rem;
    border-top-right-radius: 6.75rem;
  }
}
#benefit .benefit__head-area {
  text-align: center;
  position: relative;
}
#benefit .benefit__head-area::before {
  position: absolute;
  content: url(../images/icon/laurel-img-left.svg);
  top: 0.625rem;
  left: 2.1875rem;
  width: 6.5625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__head-area::before {
    top: 1.875rem;
    left: 0;
    width: 5.75rem;
  }
}
#benefit .benefit__head-area::after {
  position: absolute;
  content: url(../images/icon/laurel-img-right.svg);
  top: 0.625rem;
  right: 2.1875rem;
  width: 6.5625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__head-area::after {
    top: 1.875rem;
    right: 0;
    width: 5.75rem;
  }
}
#benefit .benefit__head-text--sub {
  position: relative;
}
#benefit .benefit__head-text {
  position: relative;
  margin-top: -0.0625rem;
  font-size: 2.0625rem;
  color: #AB9B92;
  letter-spacing: -0.2em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__head-text {
    font-size: 1.75rem;
  }
}
#benefit .benefit__head-text .strong {
  font-size: 3rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__head-text .strong {
    font-size: 2.375rem;
  }
}
#benefit .benefit__head-text--strong {
  position: relative;
  margin-top: -1rem;
  font-size: 3.1875rem;
  color: #C97592;
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__head-text--strong {
    margin-top: 0;
    font-size: 3.5rem;
    line-height: 1;
  }
}
#benefit .benefit__head-text--strong .small {
  font-size: 2.375rem;
  color: #AB9B92;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__head-text--strong .small {
    font-size: 2.25rem;
  }
}
#benefit .benefit__head-text--strong .letter-spacing {
  letter-spacing: -0.1em;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__head-text--strong .sp-size {
    font-size: 3rem;
  }
}
#benefit .benefit__list {
  margin-top: 6.25rem;
  margin-inline: auto;
  max-width: 56.25rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5rem;
  counter-reset: listnum;
  list-style: none;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__list {
    margin-top: 4.8125rem;
    row-gap: 6.25rem;
  }
}
#benefit .benefit__item {
  z-index: 10;
  max-width: 56.25rem;
  width: 100%;
  border-radius: 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#DEA6B4), to(#F5D8E0));
  background: linear-gradient(to right, #DEA6B4 0%, #F5D8E0 100%);
  padding: 0.625rem 0.625rem;
  margin-inline: auto;
  position: relative;
}
#benefit .benefit__item::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0.3125rem;
  left: 0.3125rem;
  background-color: rgba(5, 85, 150, 0.1);
  -webkit-filter: blur(0.1875rem);
          filter: blur(0.1875rem);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
}
#benefit .benefit__item::after {
  position: absolute;
  content: url(../images/icon/benefit-card-icon.svg);
  top: 1.6875rem;
  left: 1.5625rem;
  width: 3.875rem;
}
#benefit .benefit__bg {
  background-color: #fff;
  border-radius: 16.5rem 1.875rem 16.5rem 1.875rem;
  padding-top: 3.75rem;
  padding-bottom: 5rem;
}
#benefit .benefit__item-head {
  width: 100%;
}
#benefit .benefit__item-laurel--left,
#benefit .benefit__item-laurel--right {
  position: relative;
}
#benefit .benefit__item-laurel--left img {
  position: absolute;
  top: 0.3125rem;
  left: 15.625rem;
  width: 2.75rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__item-laurel--left img {
    left: 6.875rem;
    width: 2.5rem;
  }
}
#benefit .benefit__item-laurel--right img {
  position: absolute;
  top: 0.3125rem;
  right: 15.625rem;
  width: 2.75rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__item-laurel--right img {
    right: 6.875rem;
    width: 2.5rem;
  }
}
#benefit .benefit__item-heading {
  position: relative;
  padding-right: 1.7em;
  padding-bottom: 1rem;
  font-size: 3.3125rem;
  color: #C97592;
  font-weight: 300;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__item-heading {
    font-size: 3rem;
  }
}
#benefit .benefit__item-heading::before {
  position: absolute;
  content: "0";
  bottom: 0;
  right: 0.5em;
  font-size: 5.25rem;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__item-heading::before {
    font-size: 4.75rem;
  }
}
#benefit .benefit__item-heading::after {
  position: absolute;
  counter-increment: listnum;
  content: counter(listnum);
  bottom: 0;
  right: 0;
  font-size: 5.25rem;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__item-heading::after {
    font-size: 4.75rem;
  }
}
#benefit .benefit__img-body {
  margin-top: 0.625rem;
  margin-inline: auto;
  max-width: 38.5rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__img-body {
    margin-top: 3.75rem;
    max-width: 30.75rem;
  }
}
#benefit .benefit__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#benefit .benefit__item-text {
  width: 100%;
  text-align: center;
  font-size: 1.875rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  #benefit .benefit__item-text {
    margin-top: 1.25rem;
  }
}
#benefit .benefit__item-text .strong {
  color: #EF116C;
}
#benefit .contact {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  #benefit .contact {
    margin-top: 4.125rem;
  }
}

#seminar {
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  #seminar {
    padding-bottom: 4.75rem;
  }
}
#seminar .seminar__list-area {
  padding-top: 4.6875rem;
  background-color: #F5D8E0;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__list-area {
    padding-top: 2.125rem;
  }
}
#seminar .seminar__head-area {
  padding-bottom: 2.5rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__head-area {
    padding-bottom: 1.875rem;
  }
}
#seminar .seminar__head-area::before {
  position: absolute;
  content: url(../images/icon/calligraphy-img-left.svg);
  top: 0.625rem;
  left: 3.4375rem;
  width: 11rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__head-area::before {
    top: 0;
    left: 1.875rem;
    width: 7.25rem;
  }
}
#seminar .seminar__head-area::after {
  position: absolute;
  content: url(../images/icon/calligraphy-img-right.svg);
  top: 0.625rem;
  right: 3.4375rem;
  width: 11rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__head-area::after {
    top: 0;
    right: 1.875rem;
    width: 7.25rem;
  }
}
#seminar .seminar__head-text--sub {
  position: relative;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__head-text--sub {
    font-size: 1.4375rem;
  }
}
#seminar .seminar__head-text {
  position: relative;
  margin-top: -0.0625rem;
  font-size: 2.5rem;
  font-weight: 700;
}
#seminar .seminar__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#seminar .seminar__item {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__item {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
#seminar .seminar__item:nth-of-type(odd) {
  background-color: #F9EAEF;
}
#seminar .seminar__item-text {
  max-width: 51.5rem;
  width: 100%;
  margin-inline: auto;
  padding-left: 3.75rem;
  position: relative;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__item-text {
    padding-left: 5.625rem;
    padding-right: 1.9375rem;
    font-size: 1.6875rem;
  }
}
#seminar .seminar__item-text .letter-spacing {
  letter-spacing: -0.05em;
}
#seminar .seminar__item-text::before {
  position: absolute;
  content: url(../images/icon/list-check-icon.svg);
  top: 63%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 2.9375rem;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__item-text::before {
    left: 1.875rem;
    top: 59%;
    width: 2.875rem;
  }
}
#seminar .seminar__text-area {
  margin-top: 5.625rem;
  text-align: center;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__text-area {
    margin-top: 6.25rem;
  }
}
#seminar .seminar__text--strong {
  margin-top: 3.125rem;
  font-size: 2.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__text--strong {
    margin-top: 3.75rem;
    font-size: 2.1875rem;
  }
}
#seminar .seminar__text--strong .pc-underline {
  color: #EF116C;
  position: relative;
}
#seminar .seminar__text--strong .pc-underline::before {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: 0.1875rem;
  left: 0;
  width: 100%;
  height: 0.8125rem;
  background-color: #EFD725;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__text--strong .pc-underline::before {
    display: none;
  }
}
#seminar .seminar__text--strong .sp-underline {
  position: relative;
}
@media screen and (max-width: 767px) {
  #seminar .seminar__text--strong .sp-underline::before {
    position: absolute;
    z-index: -1;
    content: "";
    bottom: 0.1875rem;
    left: 0;
    width: 100%;
    height: 0.8125rem;
    background-color: #EFD725;
  }
}
#seminar .seminar__text--strong .underline {
  color: #EF116C;
  position: relative;
}
#seminar .seminar__text--strong .underline::before {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: 0.1875rem;
  left: 0;
  width: 100%;
  height: 0.8125rem;
  background-color: #EFD725;
}
#seminar .contact {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  #seminar .contact {
    margin-top: 5.625rem;
  }
}

#recommend {
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  #recommend {
    padding-bottom: 4.75rem;
  }
}
@media screen and (max-width: 767px) {
  #recommend {
    padding-bottom: 8.375rem;
  }
}
#recommend .recommend__bg {
  width: 100%;
  height: 100%;
  background-color: #FCF6F4;
  border-top-left-radius: 8.5625rem;
}
@media screen and (max-width: 767px) {
  #recommend .recommend__bg {
    border-top-left-radius: 7.75rem;
  }
}
#recommend .recommend__inner {
  padding-top: 3.4375rem;
  padding-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  #recommend .recommend__inner {
    padding: 7.75rem 0.1875rem 5.625rem;
  }
}
#recommend .recommend__list-area {
  padding-left: 0;
  padding-right: 0;
}
#recommend .recommend__head-area {
  padding-bottom: 2.5rem;
  text-align: center;
  position: relative;
}
#recommend .recommend__head-area::before {
  position: absolute;
  content: url(../images/icon/calligraphy-img-gold-left.svg);
  top: 2.5rem;
  left: 3.4375rem;
  width: 11rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  #recommend .recommend__head-area::before {
    top: 0;
    left: 3.4375rem;
    width: 7.4375rem;
  }
}
#recommend .recommend__head-area::after {
  position: absolute;
  content: url(../images/icon/calligraphy-img-gold-right.svg);
  top: 2.5rem;
  right: 3.4375rem;
  width: 11rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  #recommend .recommend__head-area::after {
    top: 0;
    right: 3.4375rem;
    width: 7.4375rem;
  }
}
#recommend .recommend__head-text--sub {
  position: relative;
}
#recommend .recommend__head-text {
  position: relative;
  margin-top: 0.125rem;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  #recommend .recommend__head-text {
    font-size: 2rem;
  }
}
#recommend .recommend__head-text .strong {
  font-size: 2.5rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  #recommend .recommend__head-text .sp-letter-spacing {
    letter-spacing: -0.05em;
  }
}
#recommend .recommend__list {
  max-width: 52.5625rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FCF6F4;
  border: 0.0625rem solid #D0C994;
  mix-blend-mode: multiply;
  padding: 0.9375rem 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  #recommend .recommend__list {
    padding-bottom: 1.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#recommend .recommend__item {
  padding: 1.25rem 0 1.25rem 5.25rem;
  border-bottom: 0.0625rem solid #D0C994;
  font-size: 1.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #recommend .recommend__item {
    padding-left: 4.375rem;
    font-size: 1.6875rem;
    letter-spacing: -0.03em;
  }
}
#recommend .recommend__item::before {
  position: absolute;
  content: url(../images/icon/list-check-square-icon.svg);
  top: 1.625rem;
  left: 1.25rem;
  width: 2.875rem;
}
@media screen and (max-width: 767px) {
  #recommend .recommend__item::before {
    top: 1.75rem;
    left: 0.625rem;
    width: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  #recommend .recommend__item:last-of-type {
    border-bottom: none;
  }
}
#recommend .recommend__img-body {
  max-width: 53.35625rem;
  width: 100%;
  height: auto;
  margin-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  #recommend .recommend__img-body {
    width: 35.875rem;
    margin-left: 2.125rem;
  }
}
#recommend .recommend__img {
  width: 100%;
  height: auto;
  aspect-ratio: 853.7/462.7;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  #recommend .recommend__img {
    aspect-ratio: 574/367;
  }
}
#recommend .media {
  padding-top: 6.25rem;
  padding-bottom: 4.25rem;
  background-color: #EFE4E0;
}
@media screen and (max-width: 767px) {
  #recommend .media {
    padding-top: 3.4375rem;
    padding-bottom: 4.1875rem;
  }
}
#recommend .media__text {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #recommend .media__text {
    font-size: 2.1875rem;
  }
}
#recommend .media__img-cover {
  margin-top: 5rem;
  margin-inline: auto;
  max-width: 33.375rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #recommend .media__img-cover {
    margin-top: 2.8125rem;
  }
}
#recommend .media__img-content {
  margin-top: 5rem;
  margin-inline: auto;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #recommend .media__img-content {
    margin-top: 3.625rem;
  }
}
#recommend .media__img-cover img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 534.8/681;
}
#recommend .media__img-content picture {
  width: 100%;
  height: auto;
}
#recommend .media__img-content img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 984.7/479.4;
}
#recommend .achieve {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  #recommend .achieve {
    margin-top: 6.4375rem;
  }
}
#recommend .achieve__head-text {
  font-size: 2.0625rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #recommend .achieve__head-text {
    font-size: 1.6875rem;
  }
}
#recommend .achieve__list-area {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  #recommend .achieve__list-area {
    margin-top: 4.8125rem;
  }
}
#recommend .achieve__list-heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  font-size: 2.625rem;
  font-weight: 700;
  color: #EF116C;
  position: relative;
}
@media screen and (max-width: 767px) {
  #recommend .achieve__list-heading {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  #recommend .achieve__list-heading .sp-letter-spacing {
    letter-spacing: -0.05em;
  }
}
#recommend .achieve__list-heading::before {
  position: absolute;
  content: "＼";
  top: 0;
  left: 0;
}
#recommend .achieve__list-heading::after {
  position: absolute;
  content: "／";
  top: 0;
  right: 0;
}
#recommend .achieve__list {
  margin-top: 1.5625rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  #recommend .achieve__list {
    margin-top: 1.875rem;
  }
}
#recommend .achieve__item {
  z-index: -1;
  width: 100%;
  padding: 1.875rem;
  background-color: #FCF6F4;
  border: 0.0625rem solid #C97592;
  border-radius: 1.125rem;
}
#recommend .achieve__item-text {
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #recommend .achieve__item-text {
    font-size: 1.9375rem;
    letter-spacing: -0.03em;
    line-height: 1.593;
  }
}
#recommend .achieve__item-text .underline {
  position: relative;
}
#recommend .achieve__item-text .underline::before {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: 0.3125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 105%;
  height: 0.9375rem;
  background-color: #EFD725;
}
@media screen and (max-width: 767px) {
  #recommend .achieve__item-text .underline::before {
    width: 102%;
  }
}
#recommend .achieve__item-text .strong {
  font-size: 2.5rem;
  color: #EF116C;
}
@media screen and (max-width: 767px) {
  #recommend .achieve__item-text .strong {
    line-height: 1.275;
    font-size: 2.4375rem;
  }
}
#recommend .achieve__text {
  margin-top: 5.625rem;
  text-align: center;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.57;
}
@media screen and (max-width: 767px) {
  #recommend .achieve__text {
    margin-top: 5.9375rem;
  }
}
#recommend .achieve__text .strong {
  color: #EF116C;
}
#recommend .achieve__text .highlight {
  color: #fff;
  position: relative;
  padding-left: 0.75rem;
  padding-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  #recommend .achieve__text .highlight {
    font-size: 2.3125rem;
  }
}
#recommend .achieve__text .highlight::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 53%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #C97592;
  width: 100%;
  height: 3.4375rem;
}
#recommend .contact {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  #recommend .contact {
    margin-top: 4.375rem;
  }
}

#message {
  padding-top: 5.625rem;
  padding-bottom: 3.4375rem;
  background-color: #FCF6F4;
}
@media screen and (max-width: 767px) {
  #message {
    padding-top: 3.625rem;
    padding-bottom: 2.75rem;
  }
}
#message .message__inner {
  width: 100%;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #message .message__inner {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
#message .message__bg {
  background-color: #fff;
  border-radius: 1.05rem;
  padding: 1.75rem 1.25rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #message .message__bg {
    border-radius: 1.125rem;
    padding: 2.5rem 0.3125rem 2.3125rem 2.375rem;
  }
}
#message .message__img-body {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 31.9375rem;
}
@media screen and (max-width: 767px) {
  #message .message__img-body {
    width: 22.25rem;
  }
}
#message .message__text-wrapper--top,
#message .message__text-wrapper--bottom {
  position: relative;
  z-index: 10;
}
#message .message__text:not(:first-of-type) {
  margin-top: 2.9375rem;
}
@media screen and (max-width: 767px) {
  #message .message__text:not(:first-of-type) {
    margin-top: 4.0625rem;
  }
}
#message .message__text-wrapper--bottom {
  margin-top: 2.9375rem;
  max-width: 38.75rem;
}
@media screen and (max-width: 767px) {
  #message .message__text-wrapper--bottom {
    margin-top: 4.0625rem;
  }
}
#message .message__text {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  #message .message__text {
    font-size: 1.6875rem;
  }
}
#message .message__text .pc-highlight {
  z-index: 20;
  font-size: 1.625rem;
  color: #fff;
  position: relative;
  padding-top: 0.0625rem;
  padding-bottom: 0.1875rem;
}
@media screen and (max-width: 767px) {
  #message .message__text .pc-highlight {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  #message .message__text .pc-highlight .sp-only {
    display: block;
  }
}
#message .message__text .highlight {
  z-index: 20;
  position: relative;
}
@media screen and (max-width: 767px) {
  #message .message__text .highlight.sp-size {
    font-size: 1.6875rem;
    padding-top: 0.125rem;
    padding-bottom: 0.1875rem;
    padding-left: 0.125rem;
  }
}
@media screen and (max-width: 767px) {
  #message .message__text .highlight.sp-size.padding {
    padding-right: 0.625rem;
  }
}
#message .message__text .pc-highlight::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #C97592;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #message .message__text .pc-highlight::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #message .message__text .highlight::before {
    z-index: -1;
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: #C97592;
    width: 100%;
    height: 100%;
  }
}
#message .message__text .letter-spacing {
  letter-spacing: -0.07em;
}
@media screen and (max-width: 767px) {
  #message .message__text .letter-spacing.sp {
    letter-spacing: -0.1em;
  }
}
@media screen and (max-width: 767px) {
  #message .message__text.margin {
    margin-top: 8.75rem;
  }
}
#message .message__text-signature {
  font-size: 3.125rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #message .message__text-signature {
    max-width: 21.25rem;
    width: 100%;
  }
}

#line {
  padding-top: 3.125rem;
  padding-bottom: 17.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#00B800), to(#008500));
  background: linear-gradient(to bottom, #00B800 0%, #008500 100%);
  position: relative;
  font-family: "noto-sans-cjk-jp", sans-serif;
}
@media screen and (max-width: 767px) {
  #line {
    padding-top: 2.6875rem;
    padding-bottom: 18.125rem;
  }
}
#line .line__inner {
  width: 100%;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  #line .line__inner {
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
  }
}
#line .line__img-area {
  position: absolute;
  top: 3.125rem;
  right: 7.1875rem;
  width: 6.9375rem;
}
@media screen and (max-width: 767px) {
  #line .line__img-area {
    position: relative;
    top: 0;
    right: 0;
    margin-inline: auto;
  }
}
#line .line__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#line .line__head-text {
  position: relative;
  font-size: 3rem;
  color: #fff;
  text-align: center;
  line-height: 1.45;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #line .line__head-text {
    margin-top: 2.1875rem;
    font-size: 2.875rem;
    line-height: 1.52;
  }
}
#line .line__text--highlight {
  margin-top: 1.875rem;
  margin-inline: auto;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding: 0.625rem 0.875rem 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  color: #00B800;
  background-color: #fff;
  border-radius: 3.125rem;
}
@media screen and (max-width: 767px) {
  #line .line__text--highlight {
    max-width: 37.875rem;
    width: 100%;
  }
}
#line .line__text {
  margin-top: 1.875rem;
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #line .line__text {
    margin-top: 3.125rem;
  }
}

.contact__inner {
  text-align: center;
}

.contact__arrow-img-area {
  margin-inline: auto;
  width: 13.75rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .contact__arrow-img-area {
    width: 12.625rem;
  }
}

.contact__arrow-img {
  width: 100%;
  height: auto;
}

.countdown__heading {
  font-size: 1.875rem;
}

.countdown__text {
  font-size: 2.3125rem;
  color: #EF116C;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .countdown__text {
    font-size: 2.125rem;
  }
}

.countdown {
  font-size: 5.5rem;
  color: #EF116C;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .countdown {
    font-size: 5.0625rem;
  }
}

.countdown__unit {
  font-size: 2.3125rem;
  color: #EF116C;
}
@media screen and (max-width: 767px) {
  .countdown__unit {
    font-size: 2.125rem;
  }
}

.countdown__days {
  margin-left: -0.3125rem;
}

.countdown__hours,
.countdown__minutes,
.countdown__seconds {
  margin-left: -0.9375rem;
}

.contact__button-link {
  margin-top: 0.625rem;
  display: inline-block;
  cursor: pointer;
}

.contact__button-body {
  max-width: 39.125rem;
  width: 100%;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact__button-body {
    max-width: 35.875rem;
  }
}

.contact__button-img {
  width: 100%;
  height: auto;
  -webkit-animation: animationScale 1.2s ease 1s infinite;
          animation: animationScale 1.2s ease 1s infinite;
}

@-webkit-keyframes animationScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes animationScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.contact-banner {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  max-width: 1080px;
  width: 100%;
  padding-top: 0.1875rem;
  padding-bottom: 0.625rem;
  margin-inline: auto;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  .contact-banner {
    padding-bottom: 1.25rem;
  }
}
.contact-banner .contact-banner__countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-banner .countdown__heading {
  padding-bottom: 0.0625rem;
  font-size: 2.125rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 0.4375rem #595757;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .contact-banner .countdown__heading {
    padding-bottom: 0.0625rem;
    font-size: 1.5625rem;
  }
}
.contact-banner .countdown__text {
  font-size: 2.125rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 0.4375rem #595757;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .contact-banner .countdown__text {
    font-size: 1.5625rem;
  }
}
.contact-banner .countdown {
  font-size: 3.125rem;
  color: #fff;
  text-shadow: 0 0 0.4375rem #595757;
}
@media screen and (max-width: 767px) {
  .contact-banner .countdown {
    font-size: 2.375rem;
  }
}
.contact-banner .countdown__unit {
  color: #fff;
  text-shadow: 0 0 0.4375rem #595757;
  font-size: 2.125rem;
}
@media screen and (max-width: 767px) {
  .contact-banner .countdown__unit {
    font-size: 1.5625rem;
  }
}
.contact-banner .countdown__days {
  margin-left: -0.1875rem;
}
.contact-banner .countdown__hours,
.contact-banner .countdown__minutes,
.contact-banner .countdown__seconds {
  margin-left: -0.625rem;
}
.contact-banner .contact-banner__button-link {
  margin-top: 0.3125rem;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact-banner .contact-banner__button-link {
    margin-top: 0.0625rem;
  }
}
.contact-banner .contact-banner__button-body {
  display: block;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  max-width: 40.625rem;
  background-color: #EF116C;
  border: 0.1875rem solid #B3B3B3;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 0.40625rem #595757;
          box-shadow: 0 0 0.40625rem #595757;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-banner .contact-banner__button-body {
    width: 100%;
    max-width: 34.375rem;
    padding-bottom: 0.9375rem;
  }
}
.contact-banner .contact-banner__button-bg {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(96%, #fff));
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #fff 96%);
  opacity: 0.5;
  width: calc(100% + 0.1875rem);
  height: calc(100% + 0.1875rem);
  border-radius: 1.125rem;
}
.contact-banner .contact-banner__button-text--top {
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.9);
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-banner .contact-banner__button-text--top {
    font-size: 1.625rem;
  }
}
.contact-banner .contact-banner__button-text--top::before {
  z-index: 10;
  position: absolute;
  content: url(../images/icon/contact-button-line-left.svg);
  top: 0;
  left: -2.375rem;
  width: 1.875rem;
}
.contact-banner .contact-banner__button-text--top::after {
  z-index: 10;
  position: absolute;
  content: url(../images/icon/contact-button-line-right.svg);
  top: 0;
  right: -2.375rem;
  width: 1.875rem;
}
.contact-banner .contact-banner__button-text--strong {
  font-size: 2.9375rem;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.9);
}
.contact-banner .contact-banner__button-text--strong .letter-spacing {
  letter-spacing: -0.17em;
}
.contact-banner .contact-banner__button-text--bottom {
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.9);
}
@media screen and (max-width: 767px) {
  .contact-banner .contact-banner__button-text--bottom {
    font-size: 1.875rem;
  }
}
.contact-banner .letter-spacing {
  letter-spacing: -0.07em;
}

.contact-banner.show {
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.contact-banner02 .contact-banner {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
  -webkit-transition: initial;
  transition: initial;
}

#expired {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
#expired .expired__text-area {
  text-align: center;
}
#expired .expired__text {
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  #expired .expired__text {
    font-size: 1.625rem;
  }
}
#expired .expired__text:not(:first-of-type) {
  margin-top: 1rem;
}
#expired .expired__img-body {
  margin-top: 4rem;
  margin-inline: auto;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 37.5rem;
}
@media screen and (max-width: 767px) {
  #expired .expired__img-body {
    max-width: 31.25rem;
  }
}
#expired .expired__img-container {
  width: 100%;
  height: auto;
}
#expired .expired__img-container img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.error {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.error .error__title {
  font-size: 2.5rem;
  font-family: "Lora", serif;
  text-align: center;
  color: #EF116C;
}
.error .error__text {
  margin-top: 2rem;
  font-size: 1.75rem;
  text-align: center;
}
.error .error__button-body {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
}
.error .error__button {
  padding: 1rem 2rem;
  font-size: 1.75rem;
  text-align: center;
  background-color: #C97592;
  color: #fff;
}

.reset {
  padding-top: 7.5rem;
  padding-bottom: 12.5rem;
}
.reset .reset__text {
  font-size: 1.625rem;
  text-align: center;
}
.reset .reset__button-body {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
}
.reset button {
  padding: 1rem 2rem;
  font-size: 1.75rem;
  text-align: center;
  background-color: #C97592;
  color: #fff;
  cursor: pointer;
  -webkit-transition: opacity 0.3s, -webkit-box-shadow 0.3s;
  transition: opacity 0.3s, -webkit-box-shadow 0.3s;
  transition: opacity 0.3s, box-shadow 0.3s;
  transition: opacity 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.reset button:hover {
  opacity: 0.8;
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.15);
}/*# sourceMappingURL=style.css.map */