@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #4a3636;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc_only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc_only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp_only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.5625vw;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* 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 {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

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

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

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1072px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-padding-top: 64px;
}

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

.text__underline {
  text-decoration: underline;
}

.link {
  -webkit-transition: hover 0.5s;
  transition: hover 0.5s;
  color: #4A3636;
}
.link:hover {
  color: #67b0c7;
  text-decoration-line: underline;
}

.about {
  background-color: #e9f6f8;
  position: relative;
}

@media screen and (min-width: 780px) {
  .about__inner {
    max-width: 896px;
  }
}

.about__wrapper {
  padding-bottom: 2.25rem;
}
@media screen and (min-width: 780px) {
  .about__wrapper {
    padding-bottom: 3.125rem;
  }
}

.about__container {
  background-color: #fff;
  padding: 2.5rem 0.75rem 2.5rem;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 780px) {
  .about__container {
    padding: 2.5rem 3.75rem 2.5rem;
    border-radius: 40px;
  }
}

.about__section-titles {
  position: relative;
}
.about__section-titles::before {
  position: absolute;
  background-image: url(../img/about-title_left.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 5.45rem;
  height: 4.2rem;
  content: "";
  top: -8px;
  left: -33px;
}
.about__section-titles::after {
  position: absolute;
  background-image: url(../img/about-title_Right.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 5.45rem;
  height: 4.2rem;
  content: "";
  top: -8px;
  right: -47px;
}
@media screen and (min-width: 780px) {
  .about__section-titles::before {
    /*top: 8px;
    left: -174px;
    width: 146px;
    height: 112px;*/
    top: -7px;
    left: -179px;
    width: 147px;
    height: 127px;
  }
  .about__section-titles::after {
    /*top: 15px;
    right: -174px;
    width: 146px;
    height: 112px;*/
    top: 1px;
    right: -179px;
    width: 147px;
    height: 127px;
  }
}

.about__contents {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 780px) {
  .about__contents {
    margin-top: 2rem;
    gap: 2rem;
  }
}

.about-contents__head {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .about-contents__head {
    font-size: 1rem;
  }
}

.about-contents__body {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.125rem;
}
@media screen and (min-width: 780px) {
  .about-contents__body {
    font-size: 1rem;
    gap: 1.6875rem;
  }
}

.about-body__text a {
  text-decoration-line: underline;
  color: #4a3636;
}

.about-body__text--bold {
  font-weight: 700;
}

.about-contents__foot {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .about-contents__foot {
    font-size: 1.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.6875rem;
    border-bottom: 2px dashed var(--LP-Blue, #9ed0e0);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.about-contents__button {
  margin-top: 0;
}
@media screen and (min-width: 780px) {
  .about-contents__button {
    margin-top: 0;
  }
}

.about__arrow {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
.about__arrow img {
  width: 100px;
}
@media screen and (min-width: 780px) {
  .about__arrow img {
    width: 140px;
  }
}

.about__head {
  position: absolute;
  top: -33px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  z-index: 1;
  width: 354.642px;
}
@media screen and (min-width: 780px) {
  .about__head {
    top: -91px;
    width: 890.604px;
  }
  .about__head img {
    width: 890.604px;
  }
}

.about-slider__wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.about-slide {
  width: 100px !important;
}
.about-slide img {
  width: 100px;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 780px) {
  .about-slide {
    width: 200px !important;
  }
  .about-slide img {
    width: 200px;
  }
}

.about__slider {
  margin-top: 8.6875rem;
  padding-bottom: 0;
  position: relative;
}
@media screen and (min-width: 780px) {
  .about__slider {
    margin-top: 13.125rem;
  }
}

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

.about__bg-image1 {
  position: absolute;
  top: -10px;
  right: 0;
}
.about__bg-image1 img {
  width: 3.375rem;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media screen and (min-width: 780px) {
  .about__bg-image1 {
    top: -82px;
    right: 10.9708994709%;
  }
  .about__bg-image1 img {
    width: 6.25rem;
  }
}

.about__bg-image2 {
  position: absolute;
  right: max(84%, 315px);
  top: 395px;
  width: 12.5rem;
  z-index: 1;
}
.about__bg-image2 img {
  border-radius: 24px;
}
@media screen and (min-width: 780px) {
  .about__bg-image2 {
    right: min(90.6084656085%, 1370px);
    top: 74px;
    width: 30rem;
  }
}

.about__bg-image3 {
  position: absolute;
  left: max(84%, 315px);
  top: 273px;
  width: 12.5rem;
}
.about__bg-image3 img {
  border-radius: 24px;
}
@media screen and (min-width: 780px) {
  .about__bg-image3 {
    top: 70px;
    width: 30rem;
    left: min(87.037037037%, 1316px);
  }
}

.about__bg-image4 {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 0;
}
.about__bg-image4 img {
  width: 8.75rem;
}
@media screen and (min-width: 780px) {
  .about__bg-image4 {
    bottom: 150px;
    width: 26.6875rem;
    left: min(6.8121693122%, -103px);
  }
  .about__bg-image4 img {
    width: 26.6875rem;
  }
}

.about__bg-image5 {
  position: absolute;
  bottom: 217px;
  right: 1.3125rem;
  z-index: 5;
}
.about__bg-image5 img {
  width: 3rem;
}
@media screen and (min-width: 780px) {
  .about__bg-image5 {
    bottom: 587px;
    right: 9.375rem;
  }
  .about__bg-image5 img {
    width: 6.3125rem;
  }
}

.about__bg-image6 {
  position: absolute;
  bottom: 158.2px;
  right: 3.625rem;
}
.about__bg-image6 img {
  width: 8.3125rem;
}
@media screen and (min-width: 780px) {
  .about__bg-image6 {
    bottom: 380px;
    width: 19.25rem;
    right: 4.625rem;
  }
  .about__bg-image6 img {
    width: 19.25rem;
  }
}

@media screen and (min-width: 780px) {
  .about__bg-image7 {
    bottom: 670px;
    left: 79.4375rem;
    position: absolute;
    z-index: 3;
    width: 50.375rem;
  }
  .about__bg-image7 img {
    width: 50.375rem;
  }
}

@media screen and (min-width: 780px) {
  .about__bg-image8 {
    position: absolute;
    bottom: 635px;
    left: 75.25rem;
    width: 50.375rem;
  }
  .about__bg-image8 img {
    width: 50.375rem;
    height: 0.75rem;
  }
}

@media screen and (min-width: 780px) {
  .about__bg-image9 {
    position: absolute;
    top: -21px;
    right: 1283px;
    width: 15.625rem;
  }
  .about__bg-image9 img {
    width: 15.625rem;
    height: 15.625rem;
  }
}

.button {
  padding: 0.3125rem 1.375rem 0.375rem;
  border: 2px solid var(--LP-Blown, #4a3636);
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  color: #4a3636;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  display: inline-block;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
@media screen and (min-width: 780px) {
  .button {
    padding: 0.5625rem 2.5rem;
    font-size: 1.25rem;
  }
}
.button:hover {
  background-color: #ffee56;
}

.contact {
  padding-top: 2.479375rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 780px) {
  .contact {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.contact__inner {
  max-width: 37.5rem;
}
@media screen and (min-width: 780px) {
  .contact__inner {
    max-width: 896px;
  }
}

.contact__text {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .contact__text {
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}

.contact__contents {
  margin-top: 1.375rem;
}
@media screen and (min-width: 780px) {
  .contact__contents {
    margin-top: 2.625rem;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.625rem;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .contact__field {
    gap: 1.5625rem;
  }
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 780px) {
  .form-field__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.form-field__label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
}
@media screen and (min-width: 780px) {
  .form-field__label {
    font-size: 1rem;
  }
}
.form-field__label.is-error {
  color: #ce2073;
}

.form-field__tag {
  background: var(--LP-Red, #ce2073);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
}

.form-field__item {
  width: 100%;
}

.form-text {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .form-text {
    letter-spacing: 2px;
  }
}
.form-text:user-invalid {
  outline: 1px solid var(--LP-Red, #ce2073);
  background-color: var(--LP-Lpink, #fff0f7);
}
.form-text:user-invalid:focus, .form-text:user-invalid:hover {
  outline: 1px solid var(--LP-Red, #ce2073);
  background-color: var(--LP-Lpink, #fff0f7);
}
.form-text:focus, .form-text:hover {
  outline: 1px solid var(--LP-Blue, #9ed0e0);
  background-color: #e9f6f8;
}
.form-text:valid {
  background-color: #f5f5f5;
  outline: none;
}

::-webkit-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
}

::-moz-placeholder {
  color: rgba(204, 204, 204, 0.8);
}

:-ms-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
}

::-ms-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
}

::placeholder {
  color: rgba(204, 204, 204, 0.8);
}

.form-select {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  width: 100%;
  background-image: url(../img/contact-select.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
@media screen and (min-width: 780px) {
  .form-select {
    letter-spacing: 2px;
  }
}
.form-select:focus, .form-select:hover {
  outline: 1px solid var(--LP-Blue, #9ed0e0);
  background-color: #e9f6f8;
}
.form-select:user-invalid {
  outline: 1px solid var(--LP-Red, #ce2073);
  background-color: var(--LP-Lpink, #fff0f7);
  background-image: url(../img/contact-select-error.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.form-select:valid {
  background-color: #f5f5f5;
  outline: none;
  background-image: url(../img/contact-select.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

@media screen and (min-width: 780px) {
  .form-radio__field {
    margin-top: 0.9375rem;
  }
}

.form-field-item__radio {
  background-image: url(../img/contact-select.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  border-radius: 0 8px 8px 0;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  gap: 1.5rem;
  margin-top: -0.125rem;
  margin-bottom: -0.125rem;
}
@media screen and (min-width: 780px) {
  .form-field__radios {
    margin-top: 0;
  }
}

.form-radio__input:focus + .form-radio__text::before, .form-radio__input:hover + .form-radio__text::before {
  border: 1px solid #9ed0e0;
}
.form-radio__input:checked + .form-radio__text {
  font-weight: 700;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

.form-radio__text {
  position: relative;
  padding-left: 2rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .form-radio__text {
    padding-left: 2.25rem;
    letter-spacing: 1.2px;
  }
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  border-radius: 50%;
}
.form-radio__text::before {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  left: 0;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
}
.form-radio__text::after {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #9ed0e0;
  left: 6px;
  opacity: 0;
}

@media screen and (min-width: 780px) {
  .form-textarea__field {
    margin-top: 0.9375rem;
  }
}

@media screen and (min-width: 780px) {
  .form-textarea__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-textarea {
  width: 100%;
  height: 160px;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .form-textarea {
    font-size: 1rem;
  }
}
.form-textarea:user-invalid {
  outline: 1px solid var(--LP-Red, #ce2073);
  background-color: var(--LP-Lpink, #fff0f7);
}
.form-textarea:user-invalid:focus, .form-textarea:user-invalid:hover {
  outline: 1px solid var(--LP-Red, #ce2073);
  background-color: var(--LP-Lpink, #fff0f7);
}
.form-textarea:focus, .form-textarea:hover {
  outline: 1px solid var(--LP-Blue, #9ed0e0);
  background-color: #e9f6f8;
}
.form-textarea:valid {
  background-color: #f5f5f5;
  outline: none;
}
.form-textarea:focus, .form-textarea:hover {
  border: 1px solid var(--LP-Blue, #9ed0e0);
  background-color: #e9f6f8;
}

.contact__privacy {
  text-align: center;
  margin-top: -0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .contact__privacy {
    margin-top: 0.625rem;
  }
}

.form-checkbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__input:focus + .form-checkbox__text::before,
.form-checkbox__input:checked + .form-checkbox__text::before {
  outline: 1px solid #9ed0e0;
}

.form-checkbox__input:user-invalid + .form-checkbox__text::before {
  outline: 1px solid var(--LP-Red, #ce2073);
  background-color: var(--LP-Lpink, #fff0f7);
}

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .form-checkbox__text {
    font-size: 1rem;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: var(--LP-Blown, #4a3636);
}

.form-checkbox__text::before,
.form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--LP-Gray, #f5f5f5);
}

.form-checkbox__text::after {
  width: 24px;
  height: 24px;
  left: 0;
  background: url(../img/contact-check.png) no-repeat center center/contain;
  opacity: 0;
}

.contact__button {
  margin-top: 1.625rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .contact__button {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 780px) {
  .contact-button {
    padding: 0.375rem 2.375rem;
    font-size: 1rem;
  }
}

.entry {
  padding-top: 1.916875rem;
  background-color: #e9f6f8;
}
@media screen and (min-width: 780px) {
  .entry {
    padding-top: 7.5rem;
  }
}

.entry__wrapper {
  border: 8px solid var(--LP-White, #fff);
  background: rgba(255, 255, 255, 0.5);
}

.entry__section-titles {
  margin-top: 0.875rem;
}
@media screen and (min-width: 780px) {
  .entry__section-titles {
    margin-top: 2rem;
  }
}

.entry__container {
  padding-inline: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6875rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 780px) {
  .entry__container {
    padding-inline: 3.5rem;
    gap: 0.6875rem;
    margin-top: 2.5rem;
    padding-bottom: 1.875rem;
  }
}

.entry__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid var(--LP-Dark-Gray, #ccc);
  width: 100%;
}
@media screen and (min-width: 780px) {
  .entry__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 0.75rem;
    gap: 6rem;
  }
}
.entry__contents:last-of-type {
  border-bottom: none;
}

.entry-contents__head {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .entry-contents__head {
    font-size: 1rem;
    padding-left: 1.5rem;
    width: 136px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 1.625rem;
  }
}
.entry-contents__head::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #9ed0e0;
  position: absolute;
}
@media screen and (min-width: 780px) {
  .entry-contents__head::before {
    left: 0.5rem;
  }
}

.entry-contents__text {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.59;
}
@media screen and (min-width: 780px) {
  .entry-contents__text {
    font-size: 1rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    line-height: 1.63;
  }
}

.entry-contents__note {
  padding-left: 1.125rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .entry-contents__note {
    padding-left: 1.5rem;
  }
}
.entry-contents__note::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  top: 0.4375rem;
  left: 0.4375rem;
  width: 5px;
  height: 5px;
  background-color: #4a3636;
}
@media screen and (min-width: 780px) {
  .entry-contents__note::before {
    top: 0.75rem;
    left: 0.625rem;
  }
}

.entry__bg {
  margin-top: 2rem;
}
@media screen and (min-width: 780px) {
  .entry__bg {
    margin-top: 7.5rem;
  }
}

.footer {
  background-color: #e9f6f8;
  padding-top: 2.625rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .footer {
    padding-top: 7.5rem;
  }
}

.footer__top {
  text-align: center;
}

.footer-top__sub-text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (min-width: 780px) {
  .footer-top__sub-text {
    font-size: 1.5rem;
  }
}

.footer-top__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.footer-top_icon img {
  width: 32px;
}
@media screen and (min-width: 780px) {
  .footer-top_icon img {
    width: 40px;
  }
}

.footer-top__main-text {
  margin-top: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.footer-top__main-text img {
  width: 20.8125rem;
}
@media screen and (min-width: 780px) {
  .footer-top__main-text {
    display: inline-block;
    text-align: center;
    margin-top: 2.5rem;
  }
  .footer-top__main-text img {
    width: 47.1875rem;
  }
}

.footer__main {
  border-radius: 16px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: -0.125rem;
}
@media screen and (min-width: 780px) {
  .footer__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    top: -0.5rem;
  }
}

.footer-main__image img {
  border-radius: 16px 16px 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像の比率 width / height */
  aspect-ratio: 335/271;
}
@media screen and (min-width: 780px) {
  .footer-main__image {
    width: 50%;
  }
  .footer-main__image img {
    border-radius: 0 16px 16px 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    /* 画像の比率 width / height */
    aspect-ratio: 512/400;
  }
}

@media screen and (min-width: 780px) {
  .footer-main__contents {
    width: 50%;
    padding-block: 2.5rem;
    padding-inline: 3.875rem;
  }
}

.footeer-contents__title img {
  width: 9.5625rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .footeer-contents__title img {
    width: 183px;
    margin-left: 0;
    margin-right: auto;
  }
}

.footeer-contents__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding: 1.875rem 1.6875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .footeer-contents__menus {
    gap: 0.75rem;
    padding: 0;
    margin-top: 1.5rem;
  }
}

.footeer-contents__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.875rem;
}
@media screen and (min-width: 780px) {
  .footeer-contents__menu {
    gap: 2.5rem;
  }
}

.footeer-contents__menu-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 66px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}
.footeer-contents__menu-head::before {
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
}
@media screen and (min-width: 780px) {
  .footeer-contents__menu-head {
    width: 80px;
    font-size: 1rem;
    height: 1.4375rem;
  }
}

.footeer-contents__menu-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (min-width: 780px) {
  .footeer-contents__menu-text {
    font-size: 1rem;
  }
}

.footeer-contents__tel {
  color: #4a3636;
}

.footer__bottom {
  position: relative;
  margin-top: 10rem;
}
.footer__bottom::before {
  content: "";
  position: absolute;
  background-repeat: repeat-x;
  top: -40px;
  width: 100%;
  height: 45.714px;
  background-image: url(../img/wave_bottom.png);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-size: 96px 45px;
}
@media screen and (min-width: 780px) {
  .footer__bottom::before {
    background-size: 252px 120px;
    height: 120px;
    top: -115px;
  }
}
@media screen and (min-width: 780px) {
  .footer__bottom {
    margin-top: 14.375rem;
  }
}

/*.footer-bottom__wave {
  position: absolute;
  top: myrem(-41);
  background-repeat: repeat-x;
  width: 100%;
  height: 45.714px;
  background-image: url(../img/wave_bottom.png);
  transform: rotate(180deg);
  background-size: 96px 45px;
  @include mq(md) {
    background-size: 252px 120px;
    height: 120px;
  }
}*/
.footer__copyright {
  color: var(--LP-White, #fff);
  background-color: #67b0c7;
  padding-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .footer__copyright {
    padding-bottom: 2rem;
  }
}

.copyright {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .copyright {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 780px) {
  .footer__bg-image1 {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    position: absolute;
    top: 5rem;
    right: 5rem;
  }
  .footer__bg-image1 img {
    width: 6.25rem;
  }
}

.fv {
  background-color: #e9f6f8;
  padding-bottom: 11.75rem;
  margin-top: 4rem;
}
@media screen and (min-width: 780px) {
  .fv {
    padding-bottom: 11.0625rem;
  }
}

.fv__bg-image {
  background-image: url(../img/fv-bg.png);
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0px 0px 24px 24px;
  height: 34.625rem;
}
@media screen and (min-width: 780px) {
  .fv__bg-image {
    height: 46.25rem;
    background-position: center;
    background-size: cover;
    background-image: url(../img/fv-bg-pc.png);
  }
}

.fv__inner {
  max-width: 37.5rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .fv__inner {
    max-width: 94.5rem;
  }
}

.fv__contents {
  padding-top: 1.0625rem;
}
@media screen and (min-width: 780px) {
  .fv__contents {
    padding-top: 2.125rem;
  }
}

.fv__text {
  text-align: center;
  font-family: "Kiwi Maru", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25;
  text-shadow: 0px 0px 30px #fff;
}
@media screen and (min-width: 780px) {
  .fv__text {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.fv__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .fv__head {
    margin-top: 1.5rem;
    gap: 1rem;
  }
}

.fv__head-first {
  margin-inline: auto;
}
.fv__head-first img {
  width: 20.9375rem;
}
@media screen and (min-width: 780px) {
  .fv__head-first img {
    width: 32.5rem;
  }
}

.fv__head-second {
  margin-inline: auto;
}
.fv__head-second img {
  width: 15rem;
}
@media screen and (min-width: 780px) {
  .fv__head-second img {
    width: 22.25rem;
  }
}

.fv__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 780px) {
  .fv__points {
    gap: 16.25rem;
    margin-top: 0;
  }
}

.fv__point-left img {
  width: 8.875rem;
}
@media screen and (min-width: 780px) {
  .fv__point-left img {
    width: 15.25rem;
  }
}

.fv__point-right {
  border-radius: 50%;
  width: 6.875rem;
  height: 6.875rem;
  background-color: #ce2073;
  position: relative;
  margin-top: -0.375rem;
  margin-right: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .fv__point-right {
    width: 11.25rem;
    height: 11.25rem;
    margin-top: 1.0625rem;
    margin-right: 5.625rem;
  }
}

.fv__point-right1 {
  position: absolute;
  top: 18.94px;
  left: 1.541875rem;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
@media screen and (min-width: 780px) {
  .fv__point-right1 {
    font-size: 1rem;
    left: 2.75rem;
    top: 1.9375rem;
  }
}

.fv__point-right2 {
  position: absolute;
  top: 1.875rem;
  left: 0.75rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 780px) {
  .fv__point-right2 {
    top: 3rem;
    left: 1.25rem;
  }
}
.fv__point-right2--big {
  font-size: 1.9035rem;
  line-height: 1.25;
  color: var(--LP-Yellow, #ffee56);
}
@media screen and (min-width: 780px) {
  .fv__point-right2--big {
    font-size: 3.115rem;
  }
}
.fv__point-right2--small {
  font-size: 0.611125rem;
  line-height: 1.6;
  color: #ffee56;
}
@media screen and (min-width: 780px) {
  .fv__point-right2--small {
    font-size: 1rem;
  }
}
.fv__point-right2--white {
  color: #fff;
  font-size: 0.611125rem;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .fv__point-right2--white {
    font-size: 1rem;
  }
}

.fv__point-right3 {
  font-size: 0.9166875rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  position: absolute;
  top: 4rem;
  left: 1.083125rem;
}
@media screen and (min-width: 780px) {
  .fv__point-right3 {
    font-size: 1.5rem;
    top: 6.4375rem;
    left: 1.75rem;
  }
}

.fv__image {
  margin-top: -0.4375rem;
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.fv__image img {
  width: 12.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .fv__image {
    margin-top: -10.25rem;
  }
  .fv__image img {
    width: 15.625rem;
  }
}

.fv__try {
  border-radius: 12.8px;
  background-color: #fff;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 7.6625rem;
  left: 50%;
  padding-bottom: 1.2875rem;
  width: 10rem;
}
@media screen and (min-width: 780px) {
  .fv__try {
    border-radius: 16px;
    padding-bottom: 1.5rem;
    width: 12.5rem;
    top: 9.5rem;
  }
}

.fv__try-head {
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding-block: 0.4rem;
  padding-inline: 0.95625rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
  border-radius: 12.8px 12.8px 0 0;
}
@media screen and (min-width: 780px) {
  .fv__try-head {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
  }
}

.fv__try-contents {
  margin-top: 0.8rem;
  padding-left: 0.4375rem;
  padding-right: 0.4375rem;
}
@media screen and (min-width: 780px) {
  .fv__try-contents {
    margin-top: 1rem;
  }
}

.try__period {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  border-bottom: 2.4px solid var(--LP-Red, #ce2073);
  padding-bottom: 0.0625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .try__period {
    font-size: 0.875rem;
    border-bottom: 3px solid var(--LP-Red, #ce2073);
    padding-bottom: 0.0625rem;
  }
}

.try__date {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-top: 0.2rem;
}
@media screen and (min-width: 780px) {
  .try__date {
    font-size: 1rem;
    margin-top: 0.25rem;
  }
}

.fv__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .fv__button {
    margin-top: 1.0625rem;
    padding-inline: 1.5625rem;
    padding-block: 0.375rem;
  }
}

.fv-button {
  margin-top: 0.8125rem;
  padding-inline: 1.3125rem;
  padding-block: 0;
  display: block;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: -1px;
}
@media screen and (min-width: 780px) {
  .fv-button {
    margin-top: 1.0625rem;
    padding-inline: 1.5rem;
    padding-block: 0.3125rem;
    font-size: 1.0625rem;
  }
}

.fv__icon-left {
  position: absolute;
  bottom: -0.625rem;
  left: 1.25rem;
}
.fv__icon-left img {
  width: 5.375rem;
}
@media screen and (min-width: 780px) {
  .fv__icon-left {
    bottom: -1rem;
    left: 21.9576719577%;
  }
  .fv__icon-left img {
    width: 12.625rem;
  }
}

.fv__icon-right1 {
  position: absolute;
  bottom: 3rem;
  right: 1.25rem;
}
.fv__icon-right1 img {
  width: 3.875rem;
}
@media screen and (min-width: 780px) {
  .fv__icon-right1 {
    bottom: 2.75rem;
    right: 26.1243386243%;
  }
  .fv__icon-right1 img {
    width: 10.625rem;
  }
}

.fv__icon-right2 {
  position: absolute;
  bottom: -0.625rem;
  right: 1.8125rem;
}
.fv__icon-right2 img {
  width: 6.125rem;
}
@media screen and (min-width: 780px) {
  .fv__icon-right2 {
    bottom: -3.75rem;
    right: 21.9576719577%;
  }
  .fv__icon-right2 img {
    width: 14.5625rem;
  }
}

.header {
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999;
  background-color: #fff;
  height: 4rem;
}
@media screen and (min-width: 780px) {
  .header {
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
}

.header__logo a img {
  width: 13.125rem;
}
@media screen and (min-width: 780px) {
  .header__logo a img {
    width: 11.4375rem;
  }
}

@media screen and (min-width: 780px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__link {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
}
.header__link:not(:nth-of-type(5)) {
  padding-right: 0.75rem;
}
.header__link:nth-of-type(5) {
  padding-right: 1rem;
}

.header__open {
  width: 2rem;
  height: 1.6875rem;
  position: relative;
  z-index: 99;
  -webkit-transition: top 0.5s ease, -webkit-transform 0.5s ease;
  transition: top 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, top 0.5s ease;
  transition: transform 0.5s ease, top 0.5s ease, -webkit-transform 0.5s ease;
}
.header__open.is-checked .drawer-icon__bar:nth-of-type(2) {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  top: 0.625rem;
}
.header__open.is-checked .drawer-icon__bar:nth-of-type(1) {
  display: none;
}
.header__open.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 0.625rem;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.drawer-icon__bar {
  width: 2rem;
  height: 0.1875rem;
  position: absolute;
  top: 0;
  left: 0;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 0.75rem;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 1.5rem;
}

@media screen and (min-width: 780px) {
  .header__button {
    padding: 0.3125rem 1.375rem;
    border: 2px solid var(--LP-Blown, #4a3636);
    border-radius: 40px;
    -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
            box-shadow: 0px 4px 0px 0px #4a3636;
    color: #4a3636;
    background-color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.6;
  }
}

.how {
  background-color: #e9f6f8;
  padding-top: 4.05rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 780px) {
  .how {
    padding-top: 7.5rem;
    padding-bottom: 6.875rem;
  }
}

.how__inner {
  position: relative;
  max-width: 31.25rem;
}
@media screen and (min-width: 780px) {
  .how__inner {
    max-width: 1512px;
  }
}

.how__wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .how__wrapper {
    max-width: 1024px;
  }
}

.how-step__wrapper {
  margin-top: 1.98375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 780px) {
  .how-step__wrapper {
    margin-top: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}

.how-step__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding-inline: 1.71875rem;
  padding-bottom: 1rem;
  z-index: 5;
}
@media screen and (min-width: 780px) {
  .how-step__container {
    padding-bottom: 0;
    padding-inline: 0;
    gap: 1.5rem;
    margin-top: -0.125rem;
  }
}
.how-step__container:nth-last-of-type(2) {
  padding-top: 2.125rem;
  padding-bottom: 3.125rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .how-step__container:nth-last-of-type(2) {
    padding-top: 4.1875rem;
    padding-bottom: 0;
  }
}
.how-step__container:nth-last-of-type(2)::before {
  content: "";
  width: 0.4375rem;
  height: 2.125rem;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 0;
  background-image: url(../img/img-step-line.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 780px) {
  .how-step__container:nth-last-of-type(2)::before {
    background-image: url(../img/step-line-pc.png);
    width: 7.0625rem;
    top: 12.75rem;
    left: -2.5rem;
  }
}
.how-step__container:nth-last-of-type(2)::after {
  content: "";
  width: 0.4375rem;
  height: 2.125rem;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  right: 50%;
  bottom: 0;
  background-image: url(../img/img-step-line.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 780px) {
  .how-step__container:nth-last-of-type(2)::after {
    background-image: url(../img/step-line-pc.png);
    bottom: 18.75rem;
    right: -7.125rem;
    width: 7.0625rem;
  }
}

.how-step__image {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.how-step__image img {
  width: 12.25rem;
}
@media screen and (min-width: 780px) {
  .how-step__image {
    padding-inline: 1.25rem;
  }
  .how-step__image img {
    width: 280px;
  }
}

.how-step__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.how-step__contents-head {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .how-step__contents-head {
    font-size: 1.25rem;
  }
}

.how-step__contents-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .how-step__contents-text {
    font-size: 1rem;
  }
}

.how-step__contents-button {
  padding: 0.5rem 0.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  margin-inline: auto;
}
.how-step__contents-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}

.how-step__contents-button-icon {
  display: -ms-grid;
  display: grid;
  place-content: center;
}
.how-step__contents-button-icon img {
  width: 20px;
}
@media screen and (min-width: 780px) {
  .how-step__contents-button-icon img {
    width: 24px;
  }
}

.how-step__contents-button-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
}
@media screen and (min-width: 780px) {
  .how-step__contents-button-text {
    font-size: 1rem;
  }
}

.how__button {
  margin-top: -0.125rem;
}
@media screen and (min-width: 780px) {
  .how__button {
    margin-top: 3.3125rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.how__bg-image1 {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.how__bg-image1 img {
  width: 9.3125rem;
}
@media screen and (min-width: 780px) {
  .how__bg-image1 {
    top: -3.75rem;
    left: 2.25rem;
  }
  .how__bg-image1 img {
    width: 28.75rem;
  }
}

.how__bg-image2 {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 1.5rem;
}
.how__bg-image2 img {
  width: 6.5625rem;
}
@media screen and (min-width: 780px) {
  .how__bg-image2 {
    top: -1.625rem;
    right: 14.4375rem;
  }
  .how__bg-image2 img {
    width: 14.875rem;
  }
}

.how__bg-image3 {
  position: absolute;
  z-index: 2;
  top: 0.3125rem;
  right: -1.9375rem;
}
.how__bg-image3 img {
  width: 5.875rem;
}
@media screen and (min-width: 780px) {
  .how__bg-image3 {
    top: -1rem;
    right: 6.5625rem;
  }
  .how__bg-image3 img {
    width: 13.375rem;
  }
}

.how__bg-image4 {
  position: absolute;
  top: 4.75rem;
  right: 1.25rem;
}
.how__bg-image4 img {
  width: 3.4375rem;
}
@media screen and (min-width: 780px) {
  .how__bg-image4 {
    top: 9.25rem;
    right: 2.25rem;
  }
  .how__bg-image4 img {
    width: 6.25rem;
  }
}

.how__bg-image5 {
  position: absolute;
  top: 34.375rem;
  left: 1.25rem;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.how__bg-image5 img {
  width: 3.4375rem;
}
@media screen and (min-width: 780px) {
  .how__bg-image5 {
    top: 36.25rem;
    left: 2.1875rem;
  }
  .how__bg-image5 img {
    width: 6.25rem;
  }
}

.how__bg-image6 {
  position: absolute;
  right: 1.25rem;
  top: 55rem;
}
.how__bg-image6 img {
  width: 3.4375rem;
}
@media screen and (min-width: 780px) {
  .how__bg-image6 {
    display: none;
  }
}

.page-top {
  position: fixed;
  bottom: 113px;
  right: 151px;
  z-index: 999;
  width: 75px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 780px) {
  .page-top {
    right: 2.5rem;
    width: 6.25rem;
    top: 52.5rem;
  }
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

.prizes {
  padding-top: 1.5625rem;
  background-color: #e9f6f8;
  position: relative;
}
@media screen and (min-width: 780px) {
  .prizes {
    padding-top: 9.375rem;
  }
}

.prizes__wrapper {
  margin-top: 4.625rem;
  padding-bottom: 2.0625rem;
  background-color: #fff;
  border-radius: 24px;
  position: relative;
  z-index: 10;
  max-width: 31.25rem;
  margin-inline: auto;
}
.prizes__wrapper::before {
  width: 14.875rem;
  height: 5.1875rem;
  position: absolute;
  content: "";
  top: -4.9375rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 52%;
  background-image: url(../img/campaign-bg_sp.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 780px) {
  .prizes__wrapper {
    margin-top: 0.9375rem;
    padding-bottom: 3.3125rem;
    max-width: 64rem;
  }
  .prizes__wrapper::before {
    content: "";
    width: 23.625rem;
    height: 9.375rem;
    top: -9.375rem;
    background-image: url(../img/campaign-bg_pc.png);
    left: 50%;
  }
}

.prizes__inner {
  position: relative;
}
@media screen and (min-width: 780px) {
  .prizes__inner {
    padding-inline: 3.5rem;
  }
  .prizes__inner::before {
    content: "";
    position: absolute;
    width: 19.6875rem;
    height: 5.375rem;
    top: -120px;
    left: 0;
    background-image: url(../img/campaign-left.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .prizes__inner::after {
    content: "";
    position: absolute;
    width: 19.6875rem;
    height: 5.375rem;
    top: -120px;
    right: 0;
    background-image: url(../img/campaign-right.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.prizes__section-titles {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: -3.9375rem;
}
@media screen and (min-width: 780px) {
  .prizes__section-titles {
    top: -7.5rem;
  }
}

.prizes__container {
  padding-top: 59.33px;
}
@media screen and (min-width: 780px) {
  .prizes__container {
    padding-top: 64.03px;
  }
}

.prizes__text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .prizes__text {
    font-size: 1rem;
    text-align: center;
  }
}

.prizes-cards__first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 780px) {
  .prizes-cards__first {
    gap: 1.875rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__first .prizes-card {
    width: calc(50% - 8px);
    margin-top: -1rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__first .prizes-card__head {
    width: 6.25rem;
    height: 6.25rem;
    top: 3.125rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__first .prizes-card-head__text {
    font-size: 1rem;
    top: 0.75rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__first .prizes-card-head__number {
    font-size: 3rem;
    top: 2.520625rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__first .prizes-card__image {
    height: 21.25rem;
  }
  .prizes-cards__first .prizes-card__image img {
    aspect-ratio: 440/340;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__first .prizes-card__body {
    padding-block: 1.75rem;
    height: 7.5rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__first .prizes-card-body__text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__first .prizes-card__body__icon {
    width: 6.25rem;
    height: 6.25rem;
    border-bottom-right-radius: 24px;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__first .prizes-card__body__icon img {
    width: 2rem;
    height: 2rem;
    right: 0.875rem;
    bottom: 0.875rem;
  }
}

.prizes-cards__second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 780px) {
  .prizes-cards__second {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.prizes-cards__second .prizes-card {
  margin-top: -0.625rem;
}
@media screen and (min-width: 780px) {
  .prizes-cards__second .prizes-card {
    width: 17.5rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__second .prizes-card__image img {
    aspect-ratio: 280/360;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__second .prizes-card__head {
    width: 5rem;
    height: 5rem;
    top: 2.5rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__second .prizes-card-head__text {
    font-size: 0.8rem;
    top: 0.6rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__second .prizes-card-head__number {
    font-size: 2.4rem;
    top: 2.016875rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__second .prizes-card__image {
    height: 15rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__second .prizes-card__body {
    height: 5rem;
    padding-block: 0.9375rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__second .prizes-card-body__text {
    font-size: 1rem;
  }
}
@media screen and (min-width: 780px) {
  .prizes-cards__second .prizes-card__body__icon {
    width: 4rem;
    height: 4rem;
    border-bottom-right-radius: 24px;
  }
  .prizes-cards__second .prizes-card__body__icon img {
    width: 1.28rem;
    height: 1.28rem;
    right: 0.56rem;
    bottom: 0.56rem;
  }
}

.prizes-card {
  width: 160px;
}

.prizes-card:hover .prizes-card__container {
  display: block;
  outline: 4px solid #9ed0e0;
}
.prizes-card:hover .prizes-card__body__icon {
  background-color: #9ed0e0;
}
.prizes-card:hover .prizes-card__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.prizes-card__container {
  border-radius: 8px;
  z-index: 51;
  -webkit-transition: outline 0.5s;
  transition: outline 0.5s;
}
@media screen and (min-width: 780px) {
  .prizes-card__container {
    border-radius: 24px;
  }
}

.prizes-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prizes-card__head {
  background-image: url(../img/prizes-star.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  left: 50%;
  top: 1.5rem;
  position: relative;
  z-index: 50;
}

.prizes-card-head__text {
  position: absolute;
  text-align: center;
  font-size: 0.48rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--LP-White, #fff);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 0.36rem;
}

.prizes-card-head__number {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 1.21rem;
  font-size: 1.44rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
  color: var(--LP-White, #fff);
}

.prizes-card__image {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  z-index: 49;
}
@media screen and (min-width: 780px) {
  .prizes-card__image {
    border-radius: 24px 24px 0 0;
  }
}
.prizes-card__image img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.prizes-card__body {
  background-color: #f5f5f5;
  padding-block: 0.5625rem;
  text-align: center;
  border-radius: 0 0 8px 8px;
  position: relative;
  height: 3.5rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 780px) {
  .prizes-card__body {
    border-radius: 0 0 24px 24px;
  }
}

.prizes-card-body__text {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
}

.prizes-card__body__icon {
  background-color: #67b0c7;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 2.25rem;
  height: 2.25rem;
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom-right-radius: 8px;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.prizes-card__body__icon img {
  width: 0.72rem;
  height: 0.72rem;
  position: absolute;
  right: 0.32625rem;
  bottom: 0.3825rem;
}

.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  /*max-width: calc(100% - 15px * 2);
  max-height: calc(100% - 20px * 2);*/
  overflow: auto;
  overscroll-behavior-y: none;
  border: none;
  z-index: 9998;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.prizes-modal__container {
  border-radius: 40px;
  width: 21rem;
  background-color: #fff;
  z-index: 9999;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media screen and (min-width: 780px) {
  .prizes-modal__container {
    border-radius: 24px;
    width: 30rem;
  }
}

.prizes-modal__image img {
  width: 21rem;
  height: 13.125rem;
  border-radius: 40px 40px 0 0;
}
@media screen and (min-width: 780px) {
  .prizes-modal__image img {
    border-radius: 24px 24px 0 0;
    width: 30rem;
    height: 18.75rem;
  }
}

.prizes-modal__body {
  text-align: center;
  padding-inline: 1.25rem;
  padding-top: 2.4375rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 780px) {
  .prizes-modal__body {
    padding-top: 2rem;
    padding-bottom: 3.375rem;
  }
}

.prizes-modal__head {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .prizes-modal__head {
    font-size: 1.25rem;
  }
}

.prizes-modal__text {
  font-size: 0.75rem;
  color: #000;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0.75rem;
}
@media screen and (min-width: 780px) {
  .prizes-modal__text {
    font-size: 1rem;
  }
}

.prizes-modal__close-button {
  margin-top: 1rem;
  display: block;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .prizes-modal__close-button {
    margin-top: 1.5rem;
  }
}

.prizes__button {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .prizes__button {
    margin-top: 2.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

@media screen and (min-width: 780px) {
  .prizes-topLeft__image {
    left: 2.9296875%;
    position: absolute;
    top: 40px;
    width: 19.6875rem;
  }
  .prizes-topLeft__image img {
    width: 315px;
  }
}

@media screen and (min-width: 780px) {
  .prizes-topRight__image {
    right: 30px;
    position: absolute;
    top: 40px;
    width: 19.6875rem;
  }
  .prizes-topRight__image img {
    width: 315px;
  }
}

.prizes-bottom__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -2.75rem;
}
.prizes-bottom__image img {
  min-width: 36.25rem;
}
@media screen and (min-width: 780px) {
  .prizes-bottom__image {
    margin-top: 0;
  }
}
@media screen and (min-width: 780px) and (min-width: 780px) {
  .prizes-bottom__image img {
    min-height: 520px;
  }
}

.qa {
  background-color: #e9f6f8;
  margin-top: -15px;
  padding-top: 58px;
}
@media screen and (min-width: 780px) {
  .qa {
    padding-top: 2.75rem;
    margin-top: -35px;
  }
}

.qa__inner {
  max-width: 37.5rem;
}
@media screen and (min-width: 780px) {
  .qa__inner {
    max-width: 67rem;
  }
}

@media screen and (min-width: 780px) {
  .qa__section-titles {
    margin-top: 6.9375rem;
  }
}

.qa__container {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 780px) {
  .qa__container {
    margin-top: 2.5rem;
    gap: 1.5rem;
  }
}

.qa__contents {
  border-radius: 12px;
  border: 2px solid #4a3636;
  overflow: hidden;
}
@media screen and (min-width: 780px) {
  .qa__contents {
    border-radius: 16px;
  }
}

.qa__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.625rem 0.875rem;
  background-color: #fff;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 780px) {
  .qa__question {
    padding: 1.25rem;
  }
}

.qa-question__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 780px) {
  .qa-question__left {
    gap: 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 0.4375rem;
    padding-left: 0.125rem;
  }
}

.qa-question__icon-left {
  color: var(--LP-Blue, #9ed0e0);
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 780px) {
  .qa-question__icon-left {
    font-size: 2rem;
  }
}

.qa-question__text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}
@media screen and (min-width: 780px) {
  .qa-question__text {
    font-size: 1.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.qa-question__icon-right {
  width: 1.636375rem;
  height: 1.636375rem;
  border-radius: 50%;
  background-color: #9ed0e0;
  position: relative;
}
@media screen and (min-width: 780px) {
  .qa-question__icon-right {
    width: 3rem;
    height: 3rem;
  }
}
.qa-question__icon-right::before {
  content: "";
  background-image: url(/img/qa-close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.0909375rem;
  height: 1.0909375rem;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media screen and (min-width: 780px) {
  .qa-question__icon-right::before {
    width: 2rem;
    height: 2rem;
  }
}

.qa__answer {
  display: none;
}
.qa__answer.is-open {
  display: block;
}

.qa-answer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0.875rem 0.875rem;
  background-color: #f5f5f5;
  border-radius: 0 0 0.75rem 0.75rem;
}
@media screen and (min-width: 780px) {
  .qa-answer__container {
    gap: 1rem;
    padding: 1.625rem 1.375rem 1.375rem;
    border-radius: 0 0 1rem 1rem;
  }
}

.qa-answer__icon {
  color: var(--LP-Blue, #9ed0e0);
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 780px) {
  .qa-answer__icon {
    font-size: 2rem;
  }
}

.qa-answer__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .qa-answer__text {
    font-size: 1rem;
  }
}

.spots {
  position: relative;
  padding-bottom: 45px;
  padding-top: 45px;
  margin-top: -45px;
}
@media screen and (min-width: 780px) {
  .spots {
    margin-top: -120px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.spots::before {
  content: "";
  position: absolute;
  background-repeat: repeat-x;
  width: 100%;
  height: 45.714px;
  background-image: url(../img/wave_bottom.png);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-size: 96px 45px;
  top: 1px;
}
@media screen and (min-width: 780px) {
  .spots::before {
    background-size: 252px 120px;
    height: 120px;
    padding-top: 0;
  }
}
.spots::after {
  position: absolute;
  content: "";
  bottom: 1px;
  background-repeat: repeat-x;
  width: 100%;
  height: 45.714px;
  background-image: url(../img/wave_bottom.png);
  background-size: 96px 45px;
}
@media screen and (min-width: 780px) {
  .spots::after {
    background-size: 252px 120px;
    height: 120px;
  }
}

.spots__container {
  background-color: #67b0c7;
}

.spots__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 780px) {
  .spots__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
    padding-left: max(20px, 50% - 512px);
  }
}

.spots__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 780px) {
  .spots__titles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8125rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.spots-title__icon img {
  width: 28px;
}
@media screen and (min-width: 780px) {
  .spots-title__icon img {
    width: 3.5rem;
  }
}

.spots-title__text {
  color: var(--LP-White, #fff);
  font-family: "Kiwi Maru", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 780px) {
  .spots-title__text {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 2.5rem;
    letter-spacing: 10px;
  }
}

@media screen and (min-width: 780px) {
  .spots__slider {
    width: calc(100% - 56px - 32px);
  }
}

.spots-slider__card {
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.9474375rem;
  background-color: #fff;
}
@media screen and (min-width: 780px) {
  .spots-slider__card {
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    border-radius: 24px;
  }
}

.spots-slider__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 240/180;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 780px) {
  .spots-slider__card-image img {
    border-radius: 24px 24px 0 0;
    aspect-ratio: 344/240;
  }
}

.spots-slider__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-inline: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10.625rem;
}
@media screen and (min-width: 780px) {
  .spots-slider__card-body {
    padding-inline: 2rem;
    gap: 1.5rem;
    height: 15rem;
  }
}

.spots-slider__card-head {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .spots-slider__card-head {
    font-size: 1.25rem;
  }
}

.spots-slider__card-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .spots-slider__card-text {
    font-size: 1rem;
  }
}

.spots__inner {
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 780px) {
  .spots__inner {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 780px) {
  .swiper__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: -37px;
    padding-inline: 30px;
  }
}

@media screen and (min-width: 780px) {
  .spots-prev,
  .spots-next {
    width: 5rem;
    height: 5rem;
    position: relative;
  }
  .spots-prev::after,
  .spots-next::after {
    display: none;
  }
}

@media screen and (min-width: 780px) {
  .spots-prev {
    background-image: url(../img/spots-pagination.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media screen and (min-width: 780px) {
  .spots-next {
    background-image: url(../img/spots-pagination.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.spots-next.swiper-button-lock {
  display: block;
}

@media screen and (min-width: 780px) {
  .spots__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2.8125rem;
  }
}

.spots-bottom__logo {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.spots-bottom__logo img {
  width: 15.9375rem;
}
@media screen and (min-width: 780px) {
  .spots-bottom__logo {
    margin: 0;
  }
  .spots-bottom__logo img {
    width: 30.9375rem;
  }
}

.spots-bottom__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.4375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
}
@media screen and (min-width: 780px) {
  .spots-bottom__contents {
    margin-top: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1.4375rem;
  }
}

.spots-bottom__text {
  color: var(--LP-White, #fff);
  font-size: 0.715rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 780px) {
  .spots-bottom__text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 780px) {
  .spots__bg-image1 {
    position: absolute;
    bottom: 7.5rem;
    left: 2.25rem;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .spots__bg-image1 img {
    width: 6.25rem;
  }
}

.section__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .section__titles {
    gap: 0.5rem;
  }
}

.title-icon {
  margin-inline: auto;
}
.title-icon img {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 780px) {
  .title-icon img {
    width: 48px;
    height: 48px;
  }
}

.section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
}
@media screen and (min-width: 780px) {
  .section__title {
    gap: 0.5rem;
  }
}

.section__title--en {
  font-family: "Courgette", cursive;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 780px) {
  .section__title--en {
    font-size: 1.25rem;
  }
}

.section__title--ja {
  font-family: "Kiwi Maru", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  padding-bottom: 0.375rem;
  border-bottom: 6px solid var(--LP-Yellow, #ffee56);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .section__title--ja {
    font-size: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 8px solid var(--LP-Yellow, #ffee56);
  }
}

.drawer-content {
  padding: 5.125rem 7.125rem;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
  width: 100%;
  margin-top: 4rem;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 2.5rem;
}

.drawer-content__link {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
}

@media screen and (min-width: 780px) {
  .drawer__button {
    padding: 0.25rem 1.15625rem;
    letter-spacing: -1px;
    border: 2px solid var(--LP-Blown, #4a3636);
    border-radius: 40px;
    -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
            box-shadow: 0px 4px 0px 0px #4a3636;
    color: #4a3636;
    background-color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
  }
}