@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  font-family: "Noto Sans JP", serif;
  color: #4a3636;
  background-color: #e9f6f8;
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
}

.inner {
  padding-inline: 20px;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .inner {
    max-width: 1104px;
    padding-inline: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

.hidden-lg {
  display: none;
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: inline-block;
  }
}

.hidden-pc {
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .hidden-pc {
    display: none;
  }
}

.button {
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding: 1px 22px 1px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  /* JP/Text 16px Bold */
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
}
.button:hover {
  background: #ffee56;
}

.section-titles {
  padding-inline: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .section-titles {
    gap: 7px;
  }
}

.section-title-icon {
  display: grid;
  place-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-title-icon svg {
  width: 37.333px;
  height: 37.333px;
  color: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .section-title-icon svg {
    width: 48px;
    height: 48px;
  }
}

.section-title-en {
  /* En/Courgette 16px Regular */
  font-family: Courgette;
  line-height: 125%; /* 20px */
}
@media screen and (min-width: 900px) {
  .section-title-en {
    padding-top: 2px;
    /* En/Courgette 20px Regular */
    font-size: 20px;
  }
}

.section-title-jp {
  position: relative;
  /* JP/Kiwi Maru 20px Medium */
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 125%; /* 25px */
}
@media screen and (min-width: 900px) {
  .section-title-jp {
    /* JP/Kiwi Maru 32px Medium */
    font-size: 32px;
  }
}
.section-title-jp::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -12px;
  height: 6px;
  width: 100%;
  background: #ffee56;
}
@media screen and (min-width: 900px) {
  .section-title-jp::after {
    bottom: -16px;
    height: 8px;
  }
}

.link-text {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.link-text:hover {
  color: #67b0c7;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 64px;
  background: #ffffff;
  z-index: 100;
}

.header__inner {
  padding-inline: 20px;
  padding-block: 16px;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 24px;
    padding-block: 14px;
  }
}

.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 36px;
}

.header__logo {
  display: grid;
  place-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
}
.header__logo img {
  width: 210px;
  height: 27px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 183px;
    height: 24px;
  }
}

.header__nav-menu {
  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;
  gap: 16px;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  /* JP/Text 12px Regular */
  font-family: "Noto Sans JP", serif;
  font-size: 12px;
  font-style: normal;
  padding-top: 1px;
}
.header__nav a {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  -webkit-transition: color 0.2s linear, text-decoration-color 0.2s linear, text-decoration-line 0.2s linear;
  transition: color 0.2s linear, text-decoration-color 0.2s linear, text-decoration-line 0.2s linear;
}
.header__nav a:hover {
  color: #67b0c7;
  text-decoration-color: #67b0c7;
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

.header__button {
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding: 2px 22px 5px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.header__button:hover {
  background: #ffee56;
}

.header__button-text {
  /* JP/Text 14px Bold */
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
}

@media screen and (min-width: 1200px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 24px;
  padding-top: 1px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  width: 32px;
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 2px;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background: #4a3636;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  width: 25.6px;
}
.drawer-icon__bar:nth-of-type(1)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 27.2px;
  width: 4.8px;
  height: 3px;
  border-radius: 6px;
  background: #4a3636;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 14px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 27px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #ffffff;
  z-index: 50;
  padding: 86px 40px 40px;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__menu {
  padding-top: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.drawer-content__link {
  display: block;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  -webkit-transition: color 0.2s linear, text-decoration-color 0.2s linear, text-decoration-line 0.2s linear;
  transition: color 0.2s linear, text-decoration-color 0.2s linear, text-decoration-line 0.2s linear;
}
.drawer-content__link:hover {
  color: #67b0c7;
  text-decoration-color: #67b0c7;
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

.drawer-content__buttons {
  text-align: center;
  padding-top: 5px;
}

.drawer-content__button {
  padding: 5px 22px 7px;
}

.fv {
  padding-bottom: 156px;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-bottom: 96px;
  }
}

.fv__background {
  background-image: url(../img/sp/onomichi-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0px 0px 24px 24px;
  height: 554px;
}
@media screen and (min-width: 768px) {
  .fv__background {
    background-image: url(../img/fv-onomichi.jpg);
  }
}
@media screen and (min-width: 900px) {
  .fv__background {
    background-image: url(../img/fv-onomichi.jpg);
    border-radius: 0px 0px 40px 40px;
    height: 740px;
  }
}

.fv__inner {
  padding-top: 17px;
  padding-bottom: 11px;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    padding-top: 34px;
  }
}

.fv__text {
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
  font-family: "Kiwi Maru";
  font-size: 14px;
  font-weight: 400;
  line-height: 125%; /* 17.5px */
}
@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__title {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .fv__title {
    margin-top: 24px;
    max-width: 846px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fv__title-img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .fv__title-img {
    gap: 16px;
  }
}
.fv__title-img img:nth-child(1) {
  max-width: 335px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__title-img img:nth-child(1) {
    max-width: none;
    width: 520px;
  }
}
.fv__title-img img:nth-child(2) {
  max-width: 240px;
  width: 71.6417910448%;
}
@media screen and (min-width: 900px) {
  .fv__title-img img:nth-child(2) {
    max-width: none;
    width: 356px;
  }
}

.fv__img {
  position: relative;
  margin-top: 10px;
}
.fv__img img:nth-child(1) {
  position: absolute;
  width: 142px;
  top: 7px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .fv__img img:nth-child(1) {
    width: 244px;
    top: -10px;
    left: 36px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.fv__img img:nth-child(2) {
  position: absolute;
  width: 110px;
  top: 0;
  right: 25px;
}
@media screen and (min-width: 900px) {
  .fv__img img:nth-child(2) {
    width: 180px;
    top: 7px;
    right: 126px;
  }
}
.fv__img img:nth-child(3) {
  position: absolute;
  top: 381px;
  left: 0;
  width: 90px;
  height: auto;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .fv__img img:nth-child(3) {
    width: 212px;
    top: 218px;
    left: -1px;
  }
}
.fv__img img:nth-child(4) {
  position: absolute;
  top: 395px;
  right: 0;
  width: 62px;
  height: auto;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .fv__img img:nth-child(4) {
    right: 62px;
    width: 170px;
    top: 299px;
  }
}
.fv__img img:nth-child(5) {
  position: absolute;
  top: 450px;
  right: 9px;
  width: 98px;
  height: auto;
  z-index: 11;
}
@media screen and (min-width: 900px) {
  .fv__img img:nth-child(5) {
    top: 419px;
    right: -1px;
    width: 233px;
  }
}

.fv__apply {
  margin-top: 113px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__apply {
    margin-top: 33px;
  }
}
.fv__apply img {
  width: 200px;
}
@media screen and (min-width: 900px) {
  .fv__apply img {
    width: 250px;
  }
}

.fv-apply {
  position: absolute;
  top: 123.8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  border-radius: 12.8px;
  width: 160px;
  padding-bottom: 22.5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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: 900px) {
  .fv-apply {
    width: 200px;
    top: 152.5px;
    padding-bottom: 31px;
    border-radius: 16px;
  }
}

.fv-apply__title {
  color: #fff;
  font-family: "Noto Sans JP";
  border-radius: 12.8px 12.8px 0 0;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding: 4px 10px 3px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12.8px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv-apply__title {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 16px 16px 0 0;
  }
}

.fv-apply__period {
  text-align: center;
  font-size: 12px;
  margin-top: 9.3px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .fv-apply__period {
    font-size: 14px;
    margin-top: 15px;
  }
}
.fv-apply__period::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2.4px;
  background: #ce2073;
  bottom: 0px;
}
@media screen and (min-width: 900px) {
  .fv-apply__period::after {
    height: 3px;
    bottom: -2px;
  }
}

.fv-apply__day {
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv-apply__day {
    font-size: 16px;
    margin-top: 6px;
  }
}

.fv-apply__button {
  /* JP/Text 14px Bold */
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
}
.fv-apply__button a {
  font-size: 14px;
  padding: 3px 22px 5px;
}
@media screen and (min-width: 900px) {
  .fv-apply__button {
    margin-top: 22px;
  }
  .fv-apply__button a {
    font-size: 16px;
    margin-top: 16px;
    padding: 5px 22px 8px;
  }
}

.about {
  overflow: hidden;
}

.about__inner {
  position: relative;
  padding-block: 32px;
  padding-bottom: 176.87px;
}
@media screen and (min-width: 900px) {
  .about__inner {
    padding-block: 80px;
    padding-bottom: 258px;
  }
}

.about__descriptions {
  margin-left: auto;
  margin-right: auto;
}

.about-description {
  text-align: center;
}

.about-description__inner {
  position: relative;
  border-radius: 24px;
  background: #fff;
  max-width: 359px;
  padding-inline: 12px;
  padding-block: 40px;
}
@media screen and (min-width: 900px) {
  .about-description__inner {
    border-radius: 40px;
    max-width: none;
    width: 580px;
    padding-inline: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .about-description__inner {
    width: 848px;
    padding-inline: 114px;
  }
}

.about__background-pawpads {
  position: absolute;
  top: -10px;
  right: -20px;
  width: 54px;
  height: 120px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about__background-pawpads {
    top: -60px;
    right: -80px;
    width: 70px;
    height: 154px;
  }
}
@media screen and (min-width: 1200px) {
  .about__background-pawpads {
    top: -80px;
    right: -166px;
    width: 100px;
    height: 220px;
  }
}

.about__photo1 {
  position: absolute;
  width: 88px;
  height: auto;
  top: 31px;
  right: calc(50% + 46px);
}
@media screen and (min-width: 900px) {
  .about__photo1 {
    width: 148px;
    right: calc(50% + 191px);
    top: 38px;
  }
}

.about__photo2 {
  position: absolute;
  width: 88px;
  height: auto;
  top: 30px;
  left: calc(50% + 59px);
}
@media screen and (min-width: 900px) {
  .about__photo2 {
    width: 147px;
    left: calc(50% + 192px);
    top: 47px;
  }
}

.about-description__heading {
  margin-block: 21px;
}
@media screen and (min-width: 900px) {
  .about-description__heading {
    margin-block: 33px;
  }
}

.about-description__heading-text {
  /* JP/Text 14px Bold */
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .about-description__heading-text {
    /* JP/Text 16px Bold */
    font-size: 16px;
  }
}

.about-description__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding-top: 3px;
}
@media screen and (min-width: 900px) {
  .about-description__texts {
    padding-top: 0;
    gap: 27px;
  }
}

.about-description__text {
  font-size: 12px;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .about-description__text {
    font-size: 16px;
  }
}
.about-description__text a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}
.about-description__text a:hover {
  color: #67b0c7;
  text-decoration-color: #67b0c7;
}
.about-description__text span {
  font-weight: 700;
}

.about-description__present {
  margin-block: 23px;
}
@media screen and (min-width: 900px) {
  .about-description__present {
    margin-block: 32px;
  }
}

.about-description__present-text {
  /* JP/Text 14px Bold */
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  padding: 7px 0 4px;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 900px) {
  .about-description__present-text {
    /* JP/Text 20px Bold */
    font-size: 20px;
    padding: 16px 0 12px;
  }
}

.about-description__buttons {
  /* JP/Text 20px Bold */
  font-size: 20px;
  font-weight: 700;
}

.about-description__button {
  /* JP/Text 16px Bold */
  font-size: 16px;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  padding: 5px 22px 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.about-description__button a {
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .about-description__button {
    font-size: 20px;
    border: 3px solid #4a3636;
    height: 56px;
    padding: 9px 37px 13px;
    margin-top: 1px;
  }
}

.about__background-photo-left-slanting {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__background-photo-left-slanting {
    position: absolute;
    display: block;
    width: 250px;
    height: 250px;
    border-radius: 24px;
    top: -20px;
    right: calc(50% + 277px);
    z-index: -2;
  }
}
@media screen and (min-width: 1200px) {
  .about__background-photo-left-slanting {
    position: absolute;
    display: block;
    width: 250px;
    height: 250px;
    border-radius: 24px;
    top: -20px;
    right: calc(50% + 527px);
    z-index: -2;
  }
}

.about__background-photo-right {
  position: absolute;
  width: 200px;
  height: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 24px;
  top: 273px;
  right: -160px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about__background-photo-right {
    width: 480px;
    height: 480px;
    border-radius: 40px;
    top: 73.07px;
    right: auto;
    left: calc(50% + 360px);
  }
}
@media screen and (min-width: 1200px) {
  .about__background-photo-right {
    width: 480px;
    height: 480px;
    border-radius: 40px;
    top: 73.07px;
    right: auto;
    left: calc(50% + 560px);
  }
}

.about__background-photo-left {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__background-photo-left {
    display: block;
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 40px;
    top: 74px;
    left: auto;
    right: calc(50% + 364px);
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .about__background-photo-left {
    display: block;
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 40px;
    top: 74px;
    left: auto;
    right: calc(50% + 614px);
    z-index: -1;
  }
}

.about__background-photo-left-sp {
  position: absolute;
  width: 200px;
  height: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 24px;
  top: 395px;
  left: -160px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about__background-photo-left-sp {
    display: none;
  }
}

.about__background-photo-arrow {
  position: absolute;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 36px;
}
@media screen and (min-width: 900px) {
  .about__background-photo-arrow {
    width: 140px;
    height: 50px;
    bottom: -50px;
  }
}

.about__background-images {
  position: relative;
  width: 100%;
}

.about__background-image-slope {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__background-image-slope {
    display: block;
    position: absolute;
    width: 427px;
    height: auto;
    bottom: -309px;
    right: calc(50% + 150px);
    z-index: -2;
  }
}
@media screen and (min-width: 1200px) {
  .about__background-image-slope {
    display: block;
    position: absolute;
    width: 427px;
    height: auto;
    bottom: -309px;
    right: calc(50% + 432px);
    z-index: -2;
  }
}

.about__background-image-slope-sp {
  position: absolute;
  top: 1px;
  left: -20px;
  width: 138px;
  height: auto;
  z-index: -2;
}
@media screen and (min-width: 900px) {
  .about__background-image-slope-sp {
    display: none;
  }
}

.about__background-image-goods1 {
  position: absolute;
  top: 54px;
  right: 37px;
  width: 133px;
  height: 65.003px;
}
@media screen and (min-width: 900px) {
  .about__background-image-goods1 {
    width: 308px;
    height: 150.604px;
    top: 5px;
    right: calc(50% - 425px);
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .about__background-image-goods1 {
    width: 308px;
    height: 150.604px;
    top: -72px;
    right: -170px;
    z-index: -1;
  }
}

.about__background-image-goods2 {
  position: absolute;
  right: 1px;
  top: 12px;
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .about__background-image-goods2 {
    width: 101px;
    height: auto;
    top: -225px;
    right: calc(50% - 400px);
  }
}
@media screen and (min-width: 1200px) {
  .about__background-image-goods2 {
    width: 101px;
    height: auto;
    top: -228px;
    right: -94px;
  }
}

.about__background-image-wave1 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__background-image-wave1 {
    display: block;
    width: 806.851px;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: absolute;
    left: calc(50% + 130px);
    bottom: 220px;
    z-index: -2;
  }
}
@media screen and (min-width: 1200px) {
  .about__background-image-wave1 {
    display: block;
    width: 806.851px;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: absolute;
    left: calc(50% + 515px);
    bottom: 209px;
    z-index: -2;
  }
}

.about__background-image-wave2 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__background-image-wave2 {
    display: block;
    width: 806.851px;
    height: auto;
    position: absolute;
    left: calc(50% + 130px);
    bottom: 187px;
    z-index: -2;
  }
}
@media screen and (min-width: 1200px) {
  .about__background-image-wave2 {
    display: block;
    width: 806.851px;
    height: auto;
    position: absolute;
    left: calc(50% + 447px);
    bottom: 176px;
    z-index: -2;
  }
}

.about__background-image-logo {
  width: 355px;
  max-width: none;
  height: auto;
  position: absolute;
  top: 139px;
  right: -11px;
}
@media screen and (min-width: 900px) {
  .about__background-image-logo {
    width: 770px;
    top: 176px;
    right: calc(50% - 385px);
  }
}
@media screen and (min-width: 1200px) {
  .about__background-image-logo {
    width: 891px;
    top: 167px;
    right: 69px;
  }
}

.about-swiper__inner {
  padding-inline: 0;
}

.about-swiper__card-image {
  display: block;
  width: 100%;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.howto {
  overflow: hidden;
}

.howto__inner {
  padding-top: 65px;
  padding-bottom: 37.67px;
}
@media screen and (min-width: 900px) {
  .howto__inner {
    padding-top: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 1440px;
    padding-inline: 0px;
    margin-left: auto;
    margin-right: auto;
  }
}

.howto__steps {
  margin-top: 28px;
}
@media screen and (min-width: 900px) {
  .howto__steps {
    margin-top: 42px;
  }
}

.howto-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 33px;
}
@media screen and (min-width: 900px) {
  .howto-steps {
    display: grid;
    grid-template-columns: repeat(3, 275px);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .howto-steps {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
  }
}

.howto-steps__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  padding-bottom: 16px;
}
@media screen and (min-width: 900px) {
  .howto-steps__card {
    gap: 28px;
    padding-bottom: 0;
  }
  .howto-steps__card.step02 {
    padding-top: 68px;
  }
}

.howto-steps__icon img {
  width: 196px;
  height: 210.519px;
}
@media screen and (min-width: 900px) {
  .howto-steps__icon img {
    width: 245px;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .howto-steps__icon img {
    width: 280px;
    height: 301.5px;
  }
}

.howto-steps__step {
  color: #fff;
  font-family: "Josefin Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 1.12px;
  text-align: center;
}

.howto-steps__number {
  color: #fff;
  font-family: "Josefin Sans";
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
  line-height: 90%;
  text-align: center;
}

.howto-steps__texts {
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .howto-steps__texts {
    gap: 19px;
  }
}

.howto-steps__heading {
  /* JP/Text 16px Bold */
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .howto-steps__heading {
    /* JP/Text 20px Bold */
    font-size: 20px;
  }
}

.howto-steps__text {
  /* JP/Text 12px Regular */
  font-size: 12px;
  line-height: 160%;
}
@media screen and (min-width: 1200px) {
  .howto-steps__text {
    /* JP/Text 16px Regular */
    font-size: 16px;
    line-height: 162%;
  }
}
.howto-steps__text a.underline {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.howto-steps__text span.bold {
  font-weight: 700;
}

.howto-steps__button {
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -2px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid transparent;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.howto-steps__button:hover {
  border: 1px solid #9ed0e0;
}
@media screen and (min-width: 900px) {
  .howto-steps__button {
    margin-top: -13px;
  }
}

.howto-steps__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .howto-steps__link {
    padding: 7px 11px;
  }
}

.howto-steps__link-icon {
  display: grid;
  place-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.howto-steps__link-icon svg {
  width: 20px;
  height: 20px;
  color: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .howto-steps__link-icon svg {
    width: 24px;
    height: 24px;
  }
}

.howto-steps__link-text {
  text-align: center;
  /* JP/Text 14px Bold */
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .howto-steps__link-text {
    /* JP/Text 16px Bold */
    font-size: 16px;
  }
}

.howto-steps__post {
  padding: 5px 22px;
  margin-top: -1px;
}
@media screen and (min-width: 900px) {
  .howto-steps__post {
    margin-top: 47px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 38px;
  }
}

.howto-steps__post-text {
  /* JP/Text 16px Bold */
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .howto-steps__post-text {
    /* JP/Text 20px Bold */
    font-size: 20px;
    line-height: 160%; /* 32px */
  }
}

.howto__background {
  position: relative;
}

.howto-background__map {
  position: absolute;
  width: 149px;
  height: auto;
  right: calc(50% + 38.5px);
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .howto-background__map {
    width: 460px;
    top: -60px;
    right: calc(50% + 160px);
  }
}
@media screen and (min-width: 1200px) {
  .howto-background__map {
    width: 460px;
    top: -60px;
    right: calc(50% + 260px);
  }
}

.howto-background__cat3 {
  position: absolute;
  width: 94px;
  height: auto;
  top: 5px;
  left: calc(50% + 124.5px);
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .howto-background__cat3 {
    width: 214px;
    left: calc(50% + 337px);
    top: -16.03px;
  }
}
@media screen and (min-width: 1200px) {
  .howto-background__cat3 {
    width: 214px;
    left: calc(50% + 437px);
    top: -16.03px;
  }
}

.howto-background__cat4 {
  position: absolute;
  width: 105px;
  height: auto;
  left: calc(50% + 58.5px);
}
@media screen and (min-width: 900px) {
  .howto-background__cat4 {
    width: 238px;
    left: calc(50% + 187px);
    top: -26px;
  }
}
@media screen and (min-width: 1200px) {
  .howto-background__cat4 {
    width: 238px;
    left: calc(50% + 287px);
    top: -26px;
  }
}

.howto-background__pawpads-type1 {
  position: absolute;
  width: 55px;
  height: 120px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  top: 74px;
  left: calc(50% + 112.5px);
}
@media screen and (min-width: 900px) {
  .howto-background__pawpads-type1 {
    width: 55px;
    height: 120px;
    top: 148px;
    left: unset;
    right: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .howto-background__pawpads-type1 {
    width: 100px;
    height: 220px;
    top: 148px;
    left: unset;
    right: 0;
    z-index: -1;
  }
}

.howto-background__pawpads-type2 {
  position: absolute;
  width: 55px;
  height: 120px;
  top: 549px;
  right: calc(50% + 112.5px);
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
@media screen and (min-width: 900px) {
  .howto-background__pawpads-type2 {
    width: 55px;
    height: 120px;
    top: 580px;
    left: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .howto-background__pawpads-type2 {
    width: 100px;
    height: 220px;
    top: 580px;
    left: 0;
    z-index: -1;
  }
}

.howto-background__pawpads-type3 {
  position: absolute;
  width: 55px;
  height: 120px;
  top: 880px;
  left: calc(50% + 112.5px);
  -webkit-transform: scaleX(-1) scaleY(-1);
          transform: scaleX(-1) scaleY(-1);
}
@media screen and (min-width: 900px) {
  .howto-background__pawpads-type3 {
    display: none;
  }
}

.howto-background__wave-sp-type1 {
  position: absolute;
  width: 7px;
  height: 34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 533px;
}
@media screen and (min-width: 900px) {
  .howto-background__wave-sp-type1 {
    display: none;
  }
}

.howto-background__wave-sp-type2 {
  position: absolute;
  width: 7px;
  height: 34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 927px;
}
@media screen and (min-width: 900px) {
  .howto-background__wave-sp-type2 {
    display: none;
  }
}

.howto-background__wave-type1 {
  display: none;
}
@media screen and (min-width: 900px) {
  .howto-background__wave-type1 {
    display: block;
    position: absolute;
    width: 70px;
    height: 16px;
    top: 330px;
    right: calc(50% + 120px);
  }
}
@media screen and (min-width: 1200px) {
  .howto-background__wave-type1 {
    display: block;
    position: absolute;
    width: 113px;
    height: 24px;
    top: 391px;
    right: calc(50% + 144px);
  }
}

.howto-background__wave-type2 {
  display: none;
}
@media screen and (min-width: 900px) {
  .howto-background__wave-type2 {
    display: block;
    position: absolute;
    width: 70px;
    height: 16px;
    top: 330px;
    left: calc(50% + 95px);
  }
}
@media screen and (min-width: 1200px) {
  .howto-background__wave-type2 {
    display: block;
    position: absolute;
    width: 113px;
    height: 24px;
    top: 391px;
    left: calc(50% + 104px);
  }
}

@media screen and (min-width: 900px) {
  .prize {
    margin-bottom: -19px;
  }
}

.prize__inner {
  margin-top: 20.67px;
  margin-bottom: 34.67px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prize__inner {
    margin-top: 116.67px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 53px;
  }
}

.prize__contents {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 20px;
  max-width: 600px;
}
@media screen and (min-width: 900px) {
  .prize__contents {
    padding-inline: 30px;
    max-width: 1084px;
  }
}
.prize__contents::before {
  position: absolute;
  content: "";
  width: 237.6px;
  height: 83px;
  background: url(../img/sp/prize-bg-sp.png) no-repeat center center;
  background-size: cover;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -20px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .prize__contents::before {
    width: 365.624px;
    height: 148.967px;
    top: -29px;
    background: url(../img/prize-bg.png) no-repeat center center;
    background-size: cover;
  }
}
.prize__contents::after {
  position: absolute;
  content: "";
  max-width: 600px;
  width: 100%;
  height: calc(100% - 29px);
  top: 63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 24px;
  background-color: #fff;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .prize__contents::after {
    position: absolute;
    content: "";
    max-width: 1024px;
    width: calc(100% - 60px);
    height: calc(100% - 67px);
    top: 120px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-radius: 24px;
    background-color: #fff;
    z-index: -1;
  }
}

.prize__titles {
  position: relative;
}

.prize__text {
  text-align: center;
  margin-top: 13px;
  line-height: 160%;
  /* JP/Text 12px Regular */
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .prize__text {
    margin-top: 41px;
    /* JP/Text 16px Regular */
    font-size: 16px;
  }
}

.prize__cards {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .prize__cards {
    margin-top: 32px;
  }
}

.prize-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
@media screen and (min-width: 900px) {
  .prize-cards {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .prize-cards {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 40px;
  }
}

.prize-cards__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 24px;
  width: 160px;
  height: 196px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  background: var(--LP-Gray, #f5f5f5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  z-index: 2;
}
.prize-cards__card:hover .prize-cards__image img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}
.prize-cards__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 196px;
  border: 2px solid #9ed0e0;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.prize-cards__card:hover::before {
  opacity: 1;
}
.prize-cards__card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 0 0 8px 0;
  background: #67b0c7;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 1;
}
.prize-cards__card:hover::after {
  background: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .prize-cards__card {
    border-width: 4px;
  }
  .prize-cards__card.cards-2rows {
    width: 396px;
    height: 414px;
    margin-top: 50px;
    border-radius: 24px;
  }
  .prize-cards__card.cards-2rows::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 396px;
    height: 414px;
    border: 4px solid #9ed0e0;
    border-radius: 24px;
    opacity: 0;
    pointer-events: none;
  }
  .prize-cards__card.cards-2rows:hover::before {
    opacity: 1;
  }
  .prize-cards__card.cards-2rows::after {
    width: 100px;
    height: 100px;
    border-radius: 0 0 24px 0;
  }
  .prize-cards__card.cards-3rows {
    width: 252px;
    height: 288px;
    margin-top: 40px;
    border-radius: 16px;
    margin-inline: 2px;
  }
  .prize-cards__card.cards-3rows::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 252px;
    height: 288px;
    border: 4px solid #9ed0e0;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
  }
  .prize-cards__card.cards-3rows:hover::before {
    opacity: 1;
  }
  .prize-cards__card.cards-3rows::after {
    width: 64px;
    height: 64px;
    border-radius: 0 0 16px 0;
  }
}
@media screen and (min-width: 1200px) {
  .prize-cards__card {
    border-width: 4px;
  }
  .prize-cards__card.cards-2rows {
    width: 440px;
    height: 460px;
    margin-top: 50px;
    border-radius: 24px;
  }
  .prize-cards__card.cards-2rows::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 440px;
    height: 460px;
    border: 4px solid #9ed0e0;
    border-radius: 24px;
    opacity: 0;
    pointer-events: none;
  }
  .prize-cards__card.cards-2rows:hover::before {
    opacity: 1;
  }
  .prize-cards__card.cards-2rows::after {
    width: 100px;
    height: 100px;
    border-radius: 0 0 24px 0;
  }
  .prize-cards__card.cards-3rows {
    width: 280px;
    height: 320px;
    margin-top: 40px;
    border-radius: 16px;
    margin-inline: 2px;
  }
  .prize-cards__card.cards-3rows::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 320px;
    border: 4px solid #9ed0e0;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
  }
  .prize-cards__card.cards-3rows:hover::before {
    opacity: 1;
  }
  .prize-cards__card.cards-3rows::after {
    width: 64px;
    height: 64px;
    border-radius: 0 0 16px 0;
  }
}

.prize-cards__icon {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -24px;
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .cards-2rows > .prize-cards__icon {
    width: 100px;
    height: 100px;
    top: -50px;
  }
  .cards-3rows > .prize-cards__icon {
    width: 80px;
    height: 80px;
    top: -40px;
  }
}

.prize-cards__image {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 900px) {
  .prize-cards__image.cards-2rows {
    border-radius: 24px 24px 0 0;
  }
  .prize-cards__image.cards-3rows {
    border-radius: 16px 16px 0 0;
  }
}
.prize-cards__image img {
  border-radius: 8px 8px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 900px) {
  .cards-2rows > .prize-cards__image img {
    width: 396px;
    height: 306px;
    border-radius: 24px 24px 0 0;
  }
  .cards-3rows > .prize-cards__image img {
    width: 252px;
    height: 216px;
    border-radius: 16px 16px 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .cards-2rows > .prize-cards__image img {
    width: 440px;
    height: 340px;
    border-radius: 24px 24px 0 0;
  }
  .cards-3rows > .prize-cards__image img {
    width: 280px;
    height: 240px;
    border-radius: 16px 16px 0 0;
  }
}

.prize-cards__heading {
  position: relative;
  padding-block: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
}
@media screen and (min-width: 900px) {
  .prize-cards__heading.cards-2rows {
    padding-block: 28px;
    height: 120px;
  }
  .prize-cards__heading.cards-3rows {
    height: 80px;
  }
}
.prize-cards__heading svg {
  position: absolute;
  right: 4px;
  bottom: 5px;
  width: 13.52px;
  height: 13.52px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #ffffff;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .cards-2rows > .prize-cards__heading svg {
    right: 9.5px;
    bottom: 11px;
    width: 38px;
    height: 38px;
  }
  .cards-3rows > .prize-cards__heading svg {
    right: 6px;
    bottom: 7px;
    width: 24.48px;
    height: 24.48px;
  }
}

.prize-cards__name {
  text-align: center;
  /* JP/Text 12px Bold */
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 900px) {
  .cards-2rows > .prize-cards__name {
    font-size: 20px;
  }
  .cards-3rows > .prize-cards__name {
    font-size: 16px;
  }
}

.prize__buttons {
  text-align: center;
}

.prize__post {
  padding: 5px 22px;
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .prize__post {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 38px;
  }
}

.prize__post-text {
  /* JP/Text 16px Bold */
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .prize__post-text {
    /* JP/Text 20px Bold */
    font-size: 20px;
    line-height: 160%; /* 32px */
  }
}

.prize-bg-triangle-left {
  display: none;
}
@media screen and (min-width: 900px) {
  .prize-bg-triangle-left {
    display: block;
    position: absolute;
    right: calc(50% + 196px);
  }
  .prize-bg-triangle-left img {
    width: 315px;
    height: auto;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
}

.prize-bg-triangle-right {
  display: none;
}
@media screen and (min-width: 900px) {
  .prize-bg-triangle-right {
    display: block;
    position: absolute;
    left: calc(50% + 196px);
  }
  .prize-bg-triangle-right img {
    width: 315px;
    height: auto;
  }
}

.prize__background {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -44px;
  z-index: -2;
}
.prize__background img {
  width: 100%;
  max-width: 600px;
  height: auto;
  -o-object-position: center;
     object-position: center;
  display: block;
  min-width: 580px;
}
@media screen and (min-width: 600px) {
  .prize__background img {
    width: 100vw;
    max-width: none;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.prize-modal {
  width: 336px;
  height: 480px;
  padding-bottom: 56px;
  padding: 0;
  border: none;
  border-radius: 24px;
  background: #fff;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 900px) {
  .prize-modal {
    width: 480px;
    height: 650px;
  }
}
.prize-modal::-ms-backdrop {
  background: rgba(0, 0, 0, 0.6);
}
.prize-modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.prize-modal__image img {
  width: 336px;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px 24px 0 0;
}
@media screen and (min-width: 900px) {
  .prize-modal__image img {
    width: 480px;
    height: 300px;
  }
}

.prize-modal__body {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 39px;
  margin-bottom: 16px;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prize-modal__body {
    margin-top: 32px;
    margin-bottom: 24px;
    padding-inline: 40px;
  }
}

.prize-modal__heading {
  color: #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  /* JP/Text 16px Bold */
  font-weight: 700;
  line-height: 160%; /* 25.6px */
}
@media screen and (min-width: 900px) {
  .prize-modal__heading {
    font-size: 20px;
  }
}

.prize-modal__text {
  color: #000;
  /* JP/Text 12px Regular */
  font-size: 12px;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 900px) {
  .prize-modal__text {
    font-size: 16px;
  }
}

.prize-modal__close-button {
  margin-left: auto;
  margin-right: auto;
  padding: 6px 24px 8px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.spots__inner {
  position: relative;
  background-color: #67b0c7;
  padding-bottom: 16px;
}
@media screen and (min-width: 900px) {
  .spots__inner {
    padding-bottom: 21px;
  }
}
.spots__inner::before {
  position: absolute;
  content: "";
  background: url(../img/sp/spots-top-sp.png) repeat-x;
  background-size: contain;
  width: 100%;
  height: 45.714px;
  left: 0;
  top: -45.714px;
}
@media screen and (min-width: 900px) {
  .spots__inner::before {
    background: url(../img/spots-top-pc.png) repeat-x;
    background-size: contain;
    height: 120px;
    top: -120px;
  }
}
.spots__inner::after {
  position: absolute;
  content: "";
  background: url(../img/sp/spots-bottom-sp.png) repeat-x;
  background-size: contain;
  width: 100%;
  height: 45.714px;
  left: 0;
  bottom: -44.714px;
}
@media screen and (min-width: 900px) {
  .spots__inner::after {
    background: url(../img/spots-bottom-pc.png) repeat-x;
    background-size: contain;
    height: 120px;
    bottom: -95px;
  }
}

@media screen and (min-width: 900px) {
  .spots__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    padding-left: max(30px, 50% - 512px);
  }
}

.spots__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 1px;
}
@media screen and (min-width: 900px) {
  .spots__titles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 56px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 12px;
  }
}

.spots__title-icon {
  display: grid;
  place-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.spots__title-icon svg {
  color: #ffee56;
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 900px) {
  .spots__title-icon svg {
    width: 56px;
    height: 56px;
  }
}

.spots__title {
  color: #ffffff;
  text-align: center;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 125%; /* 35px */
}
@media screen and (min-width: 900px) {
  .spots__title {
    /* JP/Kiwi Maru 40px Medium */
    font-size: 40px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 10px;
    -webkit-font-feature-settings: "pwid" on;
            font-feature-settings: "pwid" on;
  }
}

.spots__swiper {
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .spots__swiper {
    margin-top: 0;
    width: calc(100% - 56px - 32px);
  }
}

.spots-swiper__slide {
  height: auto;
}

.spots-swiper__card {
  height: 100%;
  border-radius: 12px;
  background: #ffffff;
  padding-bottom: 30px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .spots-swiper__card {
    border-radius: 24px;
    padding-bottom: 40px;
  }
}

.spots-card__image img {
  border-radius: 12px 12px 0 0;
  height: auto;
  width: 100%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width: 900px) {
  .spots-card__image img {
    border-radius: 24px 24px 0 0;
  }
}

.spots-card__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding-top: 17px;
  padding-inline: 24px;
  color: #4a3636;
}
@media screen and (min-width: 900px) {
  .spots-card__texts {
    gap: 25px;
    padding-top: 24px;
    padding-inline: 32px;
  }
}

.spots-card__heading {
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  /* JP/Text 16px Bold */
  font-weight: 700;
  line-height: 160%; /* 25.6px */
}
@media screen and (min-width: 900px) {
  .spots-card__heading {
    /* JP/Text 20px Bold */
    font-size: 20px;
  }
}

.spots-card__description {
  /* JP/Text 12px Regular */
  font-size: 12px;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 900px) {
  .spots-card__description {
    /* JP/Text 16px Regular */
    font-size: 16px;
    line-height: 162%;
  }
}

.spots__logo-and-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .spots__logo-and-button {
    margin-top: 62px;
    padding-bottom: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 71px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.spots__logo img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 255px;
  height: 55px;
  -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;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .spots__logo img {
    width: 360px;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .spots__logo img {
    width: 496px;
    height: auto;
  }
}

.spots__buttons {
  padding-top: 16px;
  padding-bottom: 5px;
  padding-inline: 5px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__buttons {
    padding-top: 2px;
    padding-inline: 0;
    padding-left: 9px;
  }
}

.spots__button-description {
  color: #ffffff;
  text-align: center;
  font-size: 11.444px;
  line-height: 160%; /* 18.311px */
}
@media screen and (min-width: 900px) {
  .spots__button-description {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__button-description {
    /* JP/Text 16px Regular */
    font-size: 16px;
  }
}

.spots__post {
  margin-top: 24px;
  padding: 5px 22px 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .spots__post {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 38px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__post {
    margin-top: 24px;
    border: 3px solid #4a3636;
    margin-left: 12px;
    margin-right: 0;
    padding: 9px 37px;
  }
}

.spots__post-text {
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .spots__post-text {
    /* JP/Text 20px Bold */
    font-size: 20px;
    line-height: 160%; /* 32px */
  }
}
.spots-background__img {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots-background__img {
    position: relative;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .spots-background__img {
    position: relative;
    display: block;
  }
}
.spots-background__img img {
  position: absolute;
}
@media screen and (min-width: 900px) {
  .spots-background__img img {
    width: 80px;
    height: 176px;
    left: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .spots-background__img img {
    width: 100px;
    height: 220px;
    bottom: 3px;
    right: calc(50% + 620px);
    left: auto;
    overflow: visible;
  }
}

.spots__prev,
.spots__next {
  display: none;
}
.spots__prev::after,
.spots__next::after {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__prev,
  .spots__next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 140px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffee56;
    background-image: url(../img/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: 58px 58px;
    background-position: center center;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .spots__prev,
  .spots__next {
    margin-top: 115px;
  }
}

@media screen and (min-width: 900px) {
  .spots__prev {
    left: calc(50% - 270px - 80px);
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    -webkit-transition: background-position-x 0.3s;
    transition: background-position-x 0.3s;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .spots__prev {
    left: calc(50% - 392px - 80px);
  }
}
@media screen and (min-width: 900px) {
  .spots__prev:hover {
    background-position-x: calc(50% + 5px);
  }
}

@media screen and (min-width: 900px) {
  .spots__next {
    right: calc(50% - 270px - 80px);
    -webkit-transition: background-position-x 0.3s;
    transition: background-position-x 0.3s;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .spots__next {
    right: calc(50% - 392px - 80px);
  }
}
@media screen and (min-width: 900px) {
  .spots__next:hover {
    background-position-x: calc(50% + 5px);
  }
}

.qa__inner {
  margin-top: 45.714px;
  margin-bottom: 30px;
  padding-top: 40px;
  padding-inline: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .qa__inner {
    margin-top: 94.714px;
    padding-top: 120px;
    padding-inline: 40px;
    max-width: 1104px;
    margin-left: auto;
    margin-right: auto;
  }
}

.qa__boxes {
  margin-top: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    margin-top: 41px;
    gap: 24px;
  }
}

.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .qa-box {
    border-radius: 16px;
  }
}
.qa-box.is-open .qa-box__head {
  padding-bottom: 11px;
}
@media screen and (min-width: 900px) {
  .qa-box.is-open .qa-box__head {
    padding-bottom: 20px;
  }
}
.qa-box.is-open .qa-box__head-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 9.5px;
  padding-inline: 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 18px;
    padding-inline: 22px;
  }
}

.qa-box__head-icon {
  color: #9ed0e0;
  /* En/Josefin Sans-24px */
  font-family: "Josefin Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 30px */
}
@media screen and (min-width: 900px) {
  .qa-box__head-icon {
    /* En/Josefin Sans-32px */
    font-size: 32px;
  }
}

.qa-box__head-text {
  color: #4a3636;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /* JP/Text 14px Bold */
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    /* JP/Text 20px Bold */
    font-size: 20px;
  }
}

.qa-box__head-toggle {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: #9ed0e0;
  border-radius: 50%;
  display: block;
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__head-toggle::before, .qa-box__head-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 1px;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle::before, .qa-box__head-toggle::after {
    width: 19px;
    height: 3px;
  }
}
.qa-box__head-toggle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
}
.qa-box__head-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  content: "";
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.qa-box__body {
  display: none;
  background: #f5f5f5;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    border-radius: 0 0 16px 16px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 13px;
  padding-inline: 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__a {
    padding-top: 24px;
    padding-bottom: 22px;
    padding-inline: 22px;
  }
}

.qa-box__a-icon {
  color: #9ed0e0;
  /* En/Josefin Sans-24px */
  font-family: "Josefin Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 30px */
  display: grid;
  place-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .qa-box__a-icon {
    /* En/Josefin Sans-32px */
    font-size: 32px;
  }
}

.qa-box__a-text {
  color: #4a3636;
  /* JP/Text 14px Regular */
  font-family: "Noto Sans JP";
  font-size: 14px;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .qa-box__a-text {
    /* JP/Text 16px Regular */
    font-size: 16px;
  }
}

.entry__inner {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .entry__inner {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 90px;
    max-width: 1084px;
    margin-left: auto;
    margin-right: auto;
  }
}

.entry__contents {
  border: 8px solid #ffffff;
  background: rgba(255, 255, 255, 0.5);
  padding-inline: 13.5px;
  padding-block: 17px;
}
@media screen and (min-width: 900px) {
  .entry__contents {
    padding-inline: 46px;
    padding-top: 32px;
    padding-bottom: 31px;
  }
}

.entry__table {
  margin-top: 19px;
}
@media screen and (min-width: 900px) {
  .entry__table {
    margin-top: 40px;
  }
}

.entry-table__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.entry-table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-bottom: 14px;
}
.entry-table__item:not(:last-child) {
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 900px) {
  .entry-table__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 11px;
  }
}

.entry-table__heading {
  position: relative;
  padding-left: 16px;
  text-align: left;
  /* JP/Text 14px Bold */
  font-size: 14px;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
}
.entry-table__heading::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .entry-table__heading::before {
    left: 16px;
  }
}
@media screen and (min-width: 900px) {
  .entry-table__heading {
    padding-left: 32px;
    width: 232px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 26px;
    font-size: 16px;
  }
}

.entry-table__text {
  /* JP/Text 12px Regular */
  font-size: 12px;
  line-height: 160%; /* 19.2px */
}
.entry-table__text li {
  list-style: none;
  list-style-position: outside;
  padding-left: 18px;
  text-indent: -15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 158%;
}
@media screen and (min-width: 900px) {
  .entry-table__text li {
    padding-left: 24px;
    text-indent: -20px;
    line-height: 163%;
  }
}
.entry-table__text li::before {
  content: "・";
}
@media screen and (min-width: 900px) {
  .entry-table__text {
    /* JP/Text 16px Regular */
    font-size: 16px;
  }
}

.entry__background-image {
  display: block;
  margin-top: 31px;
}
.entry__background-image img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .entry__background-image {
    margin-top: 120px;
  }
}

.contact {
  background: #ffffff;
}

.contact__inner {
  padding-top: 40px;
  padding-bottom: 44px;
  max-width: 620px;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-inline: 30px;
    max-width: 908px;
  }
}

.contact__description {
  margin-top: 21px;
}
@media screen and (min-width: 900px) {
  .contact__description {
    margin-top: 34px;
  }
}

.contact__description-text {
  text-align: center;
  /* JP/Text 12px Regular */
  font-size: 12px;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 900px) {
  .contact__description-text {
    /* JP/Text 16px Regular */
    font-size: 16px;
  }
}

.contact__form {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .contact__form {
    margin-top: 40px;
  }
}

.contact__fields {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.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: 7.5px;
}
@media screen and (min-width: 900px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .form-field__head {
    width: 220px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 900px) {
  .form-field__head.type2 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-field__label {
  /* JP/Text 14px Bold */
  font-size: 14px;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .form-field__label {
    /* JP/Text 16px Bold */
    font-size: 16px;
  }
}

.form-field__tag {
  border-radius: 4px;
  background: #ce2073;
  color: #ffffff;
  padding: 4px 8px;
  /* JP/Text 12px Bold */
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
}

.form-field__item {
  width: 100%;
}

.form-text {
  width: 100%;
  height: 56px;
  padding: 15.5px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f5f5f5;
  color: #4a3636;
  /* JP/Text 14px Regular */
  font-size: 14px;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .form-text {
    /* JP/Text 16px Regular */
    font-size: 16px;
  }
}
.form-text:focus {
  outline: none;
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.form-text.is-error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}
.form-text::-webkit-input-placeholder {
  color: #cccccc;
}
.form-text::-moz-placeholder {
  color: #cccccc;
}
.form-text:-ms-input-placeholder {
  color: #cccccc;
}
.form-text::-ms-input-placeholder {
  color: #cccccc;
}
.form-text::placeholder {
  color: #cccccc;
}

.form-select {
  width: 100%;
  height: 56px;
  padding: 15.5px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f5f5f5;
  color: #4a3636;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/arrow-down.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat no-repeat;
  background-position: center right 6px, center center;
  background-size: 40px 30px, cover;
  /* JP/Text 14px Regular */
  font-size: 14px;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .form-select {
    /* JP/Text 16px Regular */
    font-size: 16px;
  }
}
.form-select:focus {
  outline: none;
  border: 1px solid #9ed0e0;
}
.form-select.is-error {
  border: 1px solid #ce2073;
  background-image: url(../img/arrow-down.svg), linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    height: 56px;
    padding-left: 2px;
  }
}

.form-radio {
  height: 24px;
  position: relative;
}

.form-radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text {
  font-weight: 700;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__input:focus + .form-radio__text::before {
  border: 1px solid #9ed0e0;
}

.form-radio__text {
  padding-left: 32px;
  /* JP/Text 14px Regular */
  font-size: 14px;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .form-radio__text {
    /* JP/Text 16px Regular */
    font-size: 16px;
  }
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: 0;
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f5f5f5;
}
.form-radio__text::after {
  opacity: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9ed0e0;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-textarea {
  width: 100%;
  height: 160px;
  padding: 15.5px;
  border: 1px solid transparent;
  border-radius: 8px;
  resize: none;
  background: #f5f5f5;
  color: #4a3636;
  /* JP/Text 14px Regular */
  font-size: 14px;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .form-textarea {
    /* JP/Text 16px Regular */
    font-size: 16px;
  }
}
.form-textarea:focus {
  outline: none;
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.form-textarea.is-error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}
.form-textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.form-textarea::-moz-placeholder {
  color: #cccccc;
}
.form-textarea:-ms-input-placeholder {
  color: #cccccc;
}
.form-textarea::-ms-input-placeholder {
  color: #cccccc;
}
.form-textarea::placeholder {
  color: #cccccc;
}

.contact__privacy {
  margin-top: 22px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__privacy {
    margin-top: 40px;
  }
}

.form-checkbox {
  position: relative;
}

.form-checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input.is-error + .form-checkbox__text::before {
  border: 1px solid #ce2073;
  background: #fff0f7;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  font-size: 14px;
  line-height: 160%;
  padding-left: 36px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    /* JP/Text 16px Regular */
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: 0 auto;
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f5f5f5;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media screen and (min-width: 900px) {
  .form-checkbox__text::before {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}
.form-checkbox__text::after {
  opacity: 0;
  width: 18px;
  height: 11px;
  background: url(../img/checked.png) no-repeat center center/contain;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
}
@media screen and (min-width: 900px) {
  .form-checkbox__text::after {
    -webkit-transform: translateY(-52%);
            transform: translateY(-52%);
  }
}

.contact__buttons {
  margin-top: 25px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__buttons {
    margin-top: 40px;
  }
}

.contact__button {
  padding: 5px 22px 5px;
}
@media screen and (min-width: 900px) {
  .contact__button {
    padding: 5px 38px 5px;
  }
}

footer {
  text-align: center;
  overflow: hidden;
}

.footer__inner {
  padding-top: 39px;
  max-width: 640px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    padding-top: 120px;
    max-width: 1104px;
  }
}

.footer__links {
  position: relative;
}

.footer__bg-pawpads {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__bg-pawpads {
    display: inline-block;
    position: absolute;
    width: 100px;
    height: 220px;
    top: -40px;
    right: calc(50% - 1332px + 656px);
  }
}

.footer__text {
  /* En/Josefin Sans-20px */
  font-family: "Josefin Sans", sans-serif;
  font-size: 19px;
  line-height: 125%; /* 25px */
}
@media screen and (min-width: 900px) {
  .footer__text {
    font-size: 23px;
  }
}

.footer__sns-links {
  margin-top: 24px;
  margin-bottom: 14px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .footer__sns-links {
    margin-top: 26px;
    margin-bottom: 40px;
  }
}

.sns-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sns-links__youtube,
.sns-links__instagram,
.sns-links__twitter {
  position: relative;
  display: grid;
  place-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sns-links__youtube svg,
.sns-links__instagram svg,
.sns-links__twitter svg {
  color: #67b0c7;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 900px) {
  .sns-links__youtube svg,
  .sns-links__instagram svg,
  .sns-links__twitter svg {
    width: 40px;
    height: 40px;
  }
}
.sns-links__youtube::after,
.sns-links__instagram::after,
.sns-links__twitter::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sns-links__youtube svg {
  width: 27px;
  height: 27px;
}
@media screen and (min-width: 900px) {
  .sns-links__youtube svg {
    width: 33px;
    height: 33px;
  }
}

.sns-links__instagram {
  padding-left: 3px;
}
@media screen and (min-width: 900px) {
  .sns-links__instagram {
    padding-left: 5px;
  }
}
.footer__onomichi-logo {
  z-index: -1;
}
.footer__onomichi-logo img {
  width: 328px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .footer__onomichi-logo img {
    width: 755px;
    height: 82.231px;
    position: relative;
    z-index: -5;
  }
}

.footer__address-wrap {
  margin-top: -2px;
  margin-bottom: 22px;
}
@media screen and (min-width: 900px) {
  .footer__address-wrap {
    margin-top: -3px;
    margin-bottom: 0;
  }
}

.address-wrap {
  width: 100%;
  border-radius: 16px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .address-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .address-wrap > * {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
}

.address-wrap__map {
  position: relative;
  width: 100%;
  padding-top: 80.896%;
  height: 0;
}
@media screen and (min-width: 900px) {
  .address-wrap__map {
    padding-top: 39.125%;
  }
}
.address-wrap__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 900px) {
  .address-wrap__map iframe {
    border-radius: 0 16px 16px 0;
  }
}

@media screen and (min-width: 900px) {
  .address-wrap__info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.company-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 24px 29px 24px;
}
@media screen and (min-width: 900px) {
  .company-info {
    padding: 0 0 4px 0;
    max-width: 389px;
    margin: auto;
    gap: 26px;
  }
}

.company-info__logo {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .company-info__logo {
    margin-left: 0;
  }
}
.company-info__logo img {
  width: 153px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .company-info__logo img {
    width: 183px;
    height: 24px;
  }
}

.company-info__body {
  padding-inline: 3.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .company-info__body {
    padding-inline: 0;
    gap: 12px;
  }
}

.company-info__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .company-info__texts {
    gap: 15px;
  }
}

.company-info__term {
  position: relative;
  padding-left: 16px;
  width: 70px;
  text-align: left;
  /* JP/Text 12px Bold */
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 900px) {
  .company-info__term {
    font-size: 16px;
    line-height: normal;
    width: 104px;
  }
}
.company-info__term::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
}

.company-info__description {
  color: var(--LP-Blown, #4a3636);
  text-align: left;
  /* JP/Text 12px Regular */
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 900px) {
  .company-info__description {
    width: 269px;
    /* JP/Text 16px Regular */
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .footer__pagetop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .footer__pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.footer__pagetop img {
  width: 78px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .footer__pagetop img {
    width: 100px;
    height: 104px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.footer__copylight {
  position: relative;
  margin-top: 61px;
  padding-bottom: 24px;
  background: #67b0c7;
}
@media screen and (min-width: 900px) {
  .footer__copylight {
    margin-top: 238px;
    padding-bottom: 32px;
  }
}
.footer__copylight::before {
  position: absolute;
  content: "";
  background: url(../img/sp/spots-top-sp.png) repeat-x;
  background-size: contain;
  width: 100%;
  height: 45.714px;
  left: 0;
  top: -39.714px;
}
@media screen and (min-width: 900px) {
  .footer__copylight::before {
    background: url(../img/spots-top-pc.png) repeat-x;
    background-size: contain;
    height: 120px;
    top: -118px;
  }
}

.footer__copylight-text {
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 16px */
}
@media screen and (min-width: 900px) {
  .footer__copylight-text {
    font-size: 14px;
  }
}