@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #E9F6F8;
}
body.is-fixed {
  overflow: hidden;
}

html {
  overflow-x: hidden;
}

/* モーダル開時に背景のスクロールを防ぐ */
html:has(dialog[open]) {
  overflow: hidden;
}

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

.sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-hidden {
    display: inline;
  }
}

.span__underline {
  text-decoration-line: underline;
}

.button {
  display: inline-block;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  color: #4A3636;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #FFEE56;
}

.button__drawer {
  height: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.button__drawer span {
  font-size: 16px;
}

.button__s-small {
  height: 32px;
  padding: 4px 24px 6px 24px;
}
.button__s-small span {
  font-size: 14px;
}

.common__title {
  margin: 0 auto;
  padding-inline: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.common__title-img {
  text-align: center;
}

.common__title-img-svg {
  width: 37.333px;
  height: 37.333px;
  fill: #9ED0E0;
}
@media screen and (min-width: 768px) {
  .common__title-img-svg {
    width: 48px;
    height: 48px;
  }
}

.common__title-en {
  margin-top: 4px;
  text-align: center;
  font-family: Courgette;
  color: #4A3636;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .common__title-en {
    margin-top: 5px;
    font-size: 20px;
  }
}

.common__title-jp {
  margin-top: 6px;
  padding-bottom: 6px;
  text-align: center;
  font-family: "Kiwi Maru";
  color: #4A3636;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 6px solid #FFEE56;
}
@media screen and (min-width: 768px) {
  .common__title-jp {
    margin-top: 8px;
    padding-bottom: 8px;
    font-size: 32px;
    border-bottom: 8px solid #FFEE56;
  }
}

.link-underline {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
}
.link-underline:hover {
  color: #67B0C7;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 64px;
  overscroll-behavior-y: none;
}

.header__inner {
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.header__logo {
  position: relative;
  z-index: 11;
  width: 210px;
  height: 27px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 183px;
    height: 24px;
  }
}
.header__logo img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__logo img:hover {
  opacity: 0.7;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    color: #4A3636;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
  }
}

.header__link {
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#67B0C7), to(#67B0C7));
  background-image: linear-gradient(#67B0C7, #67B0C7);
  background-size: 0 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__link:hover {
  background-size: 100% 1px;
  color: #67B0C7;
}

.header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 36px;
  padding: 6px 22px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  height: 36px;
  margin-left: 4px;
}

.drawer-icon {
  width: 32px;
  height: 27px;
  position: relative;
  z-index: 999;
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar-short,
.drawer-icon.is-checked .drawer-icon__dot {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar {
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-icon__bar-short {
  position: absolute;
  top: 0;
  left: 0;
  width: 25.6px;
  height: 3px;
  border-radius: 6px;
  background-color: #4A3636;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.drawer-icon__dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.5px;
  height: 3px;
  border-radius: 6px;
  background-color: #4A3636;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.drawer-icon__bar {
  position: absolute;
  top: 12px;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background-color: #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(3) {
  top: 24px;
}

.drawer-content {
  position: fixed;
  z-index: 99;
  top: -170%;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: #fff;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .drawer-content {
    display: none;
  }
}
.drawer-content.is-checked {
  top: 64px;
}

.drawer-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 39.5px;
  margin-top: 82px;
  text-align: center;
}

.drawer-content__link {
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}

.button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 36px;
  padding: 6px 22px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  height: 36px;
  margin-left: 4px;
  font-size: 16px;
  font-weight: 700;
}

.pagetop {
  display: none;
}
@media screen and (min-width: 768px) {
  .pagetop {
    display: block;
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 99;
    width: min(6.6137566138%, 100px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
  .pagetop:hover {
    opacity: 0.7;
  }
}

.fv {
  background-color: #E9F6F8;
  padding-bottom: 156px;
  padding-top: 64px;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-bottom: 97px;
  }
}

.fv__wrapper {
  position: relative;
  height: 554px;
}
@media screen and (min-width: 768px) {
  .fv__wrapper {
    height: 740px;
  }
}

.fv__picture {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0px 0px 24px 24px;
  background-color: #E9F6F8;
  width: 100%; /* 画像の横幅を自動調整 */
  height: 100%; /* 画像の縦幅を100%に設定 */
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__picture img {
  width: 100%; /* 画像の横幅を自動調整 */
  height: 100%; /* 画像の縦幅を100%に設定 */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 0px 24px 24px;
}

.fv__title {
  position: absolute;
  top: 17px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__title {
    top: 35px;
    gap: 24px;
  }
}

.fv__text {
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
  font-family: "Kiwi Maru";
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .fv__text {
    color: #4A3636;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.25;
  }
}

.fv__title-images {
  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: 768px) {
  .fv__title-images {
    gap: 16px;
  }
}

.fv__title-image {
  margin-inline: auto;
}
.fv__title-image:nth-of-type(1) {
  max-width: 335px;
  height: 53px;
}
@media screen and (min-width: 768px) {
  .fv__title-image:nth-of-type(1) {
    max-width: 520px;
    height: 82px;
  }
}
.fv__title-image:nth-of-type(2) {
  width: 240px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .fv__title-image:nth-of-type(2) {
    width: 356px;
    height: 60px;
  }
}

.fv__sp-img {
  position: absolute;
  top: 291px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .fv__sp-img {
    top: 310px;
  }
}

.fv__sp-box {
  position: relative;
  width: 200px;
}
@media screen and (min-width: 768px) {
  .fv__sp-box {
    width: 250px;
  }
}

.fv__sp-box-message {
  position: absolute;
  top: 122.6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12.8px;
  width: 160px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12.8px;
  background: #fff;
  padding-bottom: 19.2px;
}
@media screen and (min-width: 768px) {
  .fv__sp-box-message {
    top: 152.5px;
    gap: 16px;
    width: 200px;
    border-radius: 16px;
    padding-bottom: 24px;
  }
}

.fv__sp-box-head {
  padding: 6.4px 9.6px;
  width: 100%;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 12.8px 12.8px 0 0;
  background: linear-gradient(265deg, #ac3790 0%, #d65a5c 50%, #f4c06d 100%);
  color: #fff;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.6;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 768px) {
  .fv__sp-box-head {
    padding: 8px 12px;
    border-radius: 16px 16px 0 0;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.6;
  }
}

.fv__sp-box-text {
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 768px) {
  .fv__sp-box-text {
    color: #4A3636;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
  }
}

.fv__sp-box-text-title {
  border-bottom: 2.4px solid #ce2073;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .fv__sp-box-text-title {
    border-bottom: 3px solid #ce2073;
  }
}

.fv__sp-box-text-date {
  font-weight: 700;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .fv__sp-box-text-date {
    font-size: 16px;
    margin-top: 6px;
  }
}

.button-fv {
  padding: 3px 22px 3px;
}
@media screen and (min-width: 768px) {
  .button-fv {
    font-size: 16px;
  }
}

.fv__deco {
  position: absolute;
  top: 188px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .fv__deco {
    top: 277px;
    width: 768px;
  }
}
@media screen and (min-width: 900px) {
  .fv__deco {
    width: 848px;
  }
}

.fv-deco__fukidashi {
  position: absolute;
  top: 7px;
  left: 20px;
}
.fv-deco__fukidashi img {
  width: 139.672px;
  height: 77.519px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .fv-deco__fukidashi img {
    width: 240px;
    height: 125.969px;
  }
}
@media screen and (min-width: 768px) {
  .fv-deco__fukidashi {
    top: 0;
    left: 0px;
  }
}
@media screen and (min-width: 900px) {
  .fv-deco__fukidashi {
    top: 0;
    left: 37px;
  }
}

.fv-deco__fukidashi-text {
  position: absolute;
  top: 12.58px;
  left: 41.53px;
  width: 83.221px;
  color: #CE2073;
  font-size: 1.8361rem;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  text-shadow: 0px 0px 2.295px #fff;
  font-family: "Josefin Sans";
}
@media screen and (min-width: 768px) {
  .fv-deco__fukidashi-text {
    top: 9.07px;
    left: 37px;
    width: 145px;
    font-size: 32px;
    text-shadow: 0px 0px 4px #fff;
  }
}
@media screen and (min-width: 900px) {
  .fv-deco__fukidashi-text {
    top: 9.07px;
    left: 74px;
    width: 145px;
    font-size: 32px;
    text-shadow: 0px 0px 4px #fff;
  }
}

.fv-deco__circle {
  position: absolute;
  top: 0;
  right: 45px;
}
@media screen and (min-width: 768px) {
  .fv-deco__circle {
    top: 17px;
    right: 88px;
  }
}
@media screen and (min-width: 900px) {
  .fv-deco__circle {
    top: 17px;
    right: 127px;
  }
}

.fv-deco__circle-svg {
  width: 110px;
  fill: #CE2073;
}
@media screen and (min-width: 768px) {
  .fv-deco__circle-svg {
    width: 180px;
  }
}

.fv-deco__circle-text-small {
  position: absolute;
  top: 18.94px;
  right: 69.33px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP";
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
}
@media screen and (min-width: 768px) {
  .fv-deco__circle-text-small {
    top: 48px;
    right: 130px;
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .fv-deco__circle-text-small {
    top: 48px;
    right: 169px;
    font-size: 16px;
  }
}

.fv-deco__circle-text {
  position: absolute;
  top: 39.11px;
  right: 54.78px;
}
@media screen and (min-width: 768px) {
  .fv-deco__circle-text {
    top: 81px;
    right: 104px;
  }
}
@media screen and (min-width: 900px) {
  .fv-deco__circle-text {
    top: 81px;
    right: 143px;
  }
}

.fv-deco__circle-text-yellow-number {
  color: #FFEE56;
  font-size: 3.0458rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: "Noto Sans Javanese";
}
@media screen and (min-width: 768px) {
  .fv-deco__circle-text-yellow-number {
    font-size: 49.84px;
  }
}

.fv-deco__circle-text-yellow {
  color: #FFEE56;
  font-size: 0.9778rem;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 768px) {
  .fv-deco__circle-text-yellow {
    font-size: 16px;
  }
}

.fv-deco__circle-text-white {
  color: #fff;
  font-size: 0.9778rem;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 768px) {
  .fv-deco__circle-text-white {
    font-size: 16px;
  }
}

.fv-deco__circle-text-large {
  position: absolute;
  top: 72.17px;
  right: 63.67px;
  color: #fff;
  font-size: 1.4667rem;
  font-weight: 700;
  line-height: 0.6;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 768px) {
  .fv-deco__circle-text-large {
    top: 131px;
    right: 118px;
    font-size: 24px;
  }
}
@media screen and (min-width: 900px) {
  .fv-deco__circle-text-large {
    top: 131px;
    right: 157px;
    font-size: 24px;
  }
}

.fv__deco2 {
  position: absolute;
  top: 569px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .fv__deco2 {
    top: 504px;
    width: 768px;
  }
}
@media screen and (min-width: 900px) {
  .fv__deco2 {
    top: 504px;
    width: 848px;
  }
}

.fv-deco2__food {
  position: absolute;
  top: 88.76px;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .fv-deco2__food {
    top: 209px;
    left: 0;
  }
}
.fv-deco2__food img {
  width: 54px;
}
@media screen and (min-width: 768px) {
  .fv-deco2__food img {
    width: 127px;
  }
}

.fv-deco2__drink {
  position: absolute;
  top: 0;
  left: 63px;
}
@media screen and (min-width: 768px) {
  .fv-deco2__drink {
    left: 101px;
  }
}
.fv-deco2__drink img {
  width: 47.25px;
}
@media screen and (min-width: 768px) {
  .fv-deco2__drink img {
    width: 111px;
  }
}

.fv-deco2__cat-black {
  position: absolute;
  width: 62px;
  top: 14px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .fv-deco2__cat-black {
    width: 170px;
    top: 82px;
    right: 63px;
  }
}

.fv-deco2__cat-blown {
  position: absolute;
  width: 98px;
  top: 69px;
  right: 29px;
}
@media screen and (min-width: 768px) {
  .fv-deco2__cat-blown {
    width: 233px;
    top: 202px;
    right: 0;
  }
}

.about {
  background-color: #E9F6F8;
  padding-bottom: 183px;
}
@media screen and (min-width: 768px) {
  .about {
    padding-bottom: 183px;
  }
}

.about__inner {
  position: relative;
  padding-inline: 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-inline: 88px;
  }
}

.about__box {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(100%, 335px);
  padding: 40px 12px;
  -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;
  border-radius: 24px;
  background: #fff;
  gap: 23px;
  text-align: center;
  margin-inline: auto;
  margin-top: 32px;
  margin-bottom: 176.84px;
}
@media screen and (min-width: 768px) {
  .about__box {
    width: 600px;
    padding: 37px 114px 40px;
    border-radius: 40px;
    gap: 33px;
    margin-top: 80px;
    margin-bottom: 172px;
  }
}
@media screen and (min-width: 900px) {
  .about__box {
    width: 700px;
    margin-bottom: 258px;
  }
}
@media screen and (min-width: 1200px) {
  .about__box {
    width: 848px;
    margin-bottom: 280px;
  }
}

.about__text-main {
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 768px) {
  .about__text-main {
    font-size: 16px;
  }
}

.about__text-sub {
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP";
}
.about__text-sub p {
  margin-bottom: 17px;
}
@media screen and (min-width: 768px) {
  .about__text-sub p {
    margin-bottom: 29px;
  }
}
.about__text-sub p:nth-of-type(2) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .about__text-sub p:nth-of-type(2) {
    margin-bottom: 27px;
  }
}
.about__text-sub p:nth-of-type(3) {
  margin-bottom: 19px;
}
@media screen and (min-width: 768px) {
  .about__text-sub p:nth-of-type(3) {
    margin-bottom: 27px;
  }
}
.about__text-sub p:nth-of-type(4) {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .about__text-sub {
    font-size: 16px;
  }
}

.about__text-sub-account {
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 768px) {
  .about__text-sub-account {
    font-size: 16px;
  }
}

.about__text-sub-tag {
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 768px) {
  .about__text-sub-tag {
    font-size: 16px;
  }
}

.about__present {
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  font-family: "Noto Sans JP";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-image: linear-gradient(to right, #9ED0E0 4px, transparent 4px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (min-width: 768px) {
  .about__present {
    font-size: 20px;
    padding: 11px 0;
  }
}

.button-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  padding: 6px 23px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .button-about {
    height: 56px;
    padding: 10px 37px 11px;
    font-size: 20px;
  }
}

.about__deco-top {
  position: absolute;
  top: 51px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 335px;
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .about__deco-top {
    width: 848px;
  }
}

.about__deco-top-pic1 {
  position: absolute;
  top: 18px;
  left: 36px;
  width: 80px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
@media screen and (min-width: 768px) {
  .about__deco-top-pic1 {
    width: 134px;
    top: 78px;
    left: 91px;
  }
}

.about__deco-top-pic2 {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 80px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}
@media screen and (min-width: 768px) {
  .about__deco-top-pic2 {
    width: 134px;
    top: 84px;
    right: 91px;
  }
}

.about__deco {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 375px;
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .about__deco {
    width: 1512px;
  }
}

.about__deco-onomichi {
  position: absolute;
  top: 879px;
  left: 10.68px;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .about__deco-onomichi {
    top: 1194px;
    left: 574px;
  }
}
@media screen and (min-width: 900px) {
  .about__deco-onomichi {
    top: 1076px;
    left: 308px;
  }
}
@media screen and (min-width: 1200px) {
  .about__deco-onomichi {
    top: 1074px;
  }
}
.about__deco-onomichi img {
  width: 355px;
}
@media screen and (min-width: 900px) {
  .about__deco-onomichi img {
    width: 891px;
  }
}

.about__deco-diagonal {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__deco-diagonal {
    display: block;
    position: absolute;
    top: 60px;
    left: -21px;
    width: 250px;
  }
}

.about__deco-left {
  position: absolute;
  top: 427px;
  left: -140px;
}
@media screen and (min-width: 768px) {
  .about__deco-left {
    top: 153px;
    left: -338px;
  }
}
.about__deco-left img {
  width: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .about__deco-left img {
    width: 480px;
    border-radius: 40px;
  }
}

.about__deco-right {
  position: absolute;
  top: 305px;
  right: -140px;
}
@media screen and (min-width: 768px) {
  .about__deco-right {
    top: 152px;
    right: -284.2px;
  }
}
.about__deco-right img {
  width: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .about__deco-right img {
    width: 480px;
    border-radius: 40px;
  }
}

.about__deco-arrow {
  content: "";
  position: absolute;
  top: 740px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 36px;
  fill: #CCE1E4;
}
@media screen and (min-width: 768px) {
  .about__deco-arrow {
    top: 1060px;
    width: 140px;
    height: 50px;
  }
}
@media screen and (min-width: 900px) {
  .about__deco-arrow {
    top: 932px;
  }
}
@media screen and (min-width: 1200px) {
  .about__deco-arrow {
    top: 908px;
  }
}

.about__deco-bottom {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 375px;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .about__deco-bottom {
    width: 768px;
  }
}
@media screen and (min-width: 900px) {
  .about__deco-bottom {
    width: 1000px;
  }
}
@media screen and (min-width: 1200px) {
  .about__deco-bottom {
    width: 1512px;
  }
}

.about__deco-powpads {
  position: absolute;
  top: 22px;
  right: 0;
  z-index: 3;
}
@media screen and (min-width: 1200px) {
  .about__deco-powpads {
    top: -2px;
    right: 166px;
  }
}
.about__deco-powpads img {
  width: 54px;
}
@media screen and (min-width: 768px) {
  .about__deco-powpads img {
    width: 100px;
  }
}

.about__deco-slope {
  position: absolute;
  top: 584px;
  left: -55px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .about__deco-slope {
    top: 548px;
    left: -150px;
  }
}
@media screen and (min-width: 900px) {
  .about__deco-slope {
    top: 401px;
    left: -103px;
  }
}
.about__deco-slope img {
  width: 216px;
}
@media screen and (min-width: 768px) {
  .about__deco-slope img {
    width: 427px;
  }
}

.about__deco-towel {
  position: absolute;
  top: 794px;
  right: 57px;
}
@media screen and (min-width: 768px) {
  .about__deco-towel {
    top: 837px;
    right: 74px;
  }
}
@media screen and (min-width: 900px) {
  .about__deco-towel {
    right: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .about__deco-towel {
    right: 73px;
  }
}
.about__deco-towel img {
  width: 133px;
}
@media screen and (min-width: 768px) {
  .about__deco-towel img {
    width: 308px;
  }
}

.about__deco-button {
  position: absolute;
  top: 752px;
  right: 21px;
  z-index: 7;
}
@media screen and (min-width: 768px) {
  .about__deco-button {
    top: 680px;
    right: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .about__deco-button {
    right: 150px;
  }
}
.about__deco-button img {
  width: 48px;
}
@media screen and (min-width: 768px) {
  .about__deco-button img {
    width: 101px;
  }
}

.about__deco-wavyline {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__deco-wavyline {
    display: block;
    position: absolute;
    top: 685px;
    right: -566px;
    stroke-width: 2px;
    stroke: #CCE1E4;
    fill: none;
    width: 806.851px;
    height: 12.006px;
    z-index: 5;
  }
}

.about__deco-wavyline2 {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__deco-wavyline2 {
    display: block;
    position: absolute;
    top: 718px;
    right: -498px;
    stroke-width: 2px;
    stroke: #CCE1E4;
    fill: none;
    width: 806.851px;
    height: 12.006px;
    z-index: 5;
  }
}

.gallery1 {
  position: relative;
  z-index: 10;
  margin-top: -183px;
}
@media screen and (min-width: 768px) {
  .gallery1 {
    margin-top: -183px;
  }
}
@media screen and (min-width: 900px) {
  .gallery1 {
    margin-top: -203px;
  }
}

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

.gallery1__swiper .swiper-slide {
  height: 100px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .gallery1__swiper .swiper-slide {
    height: 200px;
  }
}
.gallery1__swiper .swiper-slide img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .gallery1__swiper .swiper-slide img {
    width: 200px;
    height: 200px;
    border-radius: 24px;
  }
}

.step {
  background-color: #E9F6F8;
}

.step__inner {
  padding-top: 64.8px;
  padding-bottom: 27.6px;
  padding-inline: 20px;
  position: relative;
  text-align: center;
  overflow-x: hidden;
}
@media screen and (min-width: 900px) {
  .step__inner {
    padding-top: 120px;
    padding-inline: 36px;
    padding-bottom: 4px;
  }
}

.step__wrapper {
  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;
  gap: 32px;
  overflow: hidden;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .step__wrapper {
    gap: 40px;
  }
}

.step__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 31px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1024px;
}
@media screen and (min-width: 900px) {
  .step__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}

.step__card {
  width: calc(100vw - 40px);
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .step__card {
    width: 320px;
  }
}
@media screen and (min-width: 900px) {
  .step__card:nth-of-type(2) {
    padding-top: 69px;
  }
}

.step__img {
  position: relative;
}
.step__img img {
  width: 196px;
}
@media screen and (min-width: 900px) {
  .step__img img {
    width: 280px;
  }
}

.step-img__union {
  content: "";
  position: absolute;
  top: 31.06px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
}
@media screen and (min-width: 900px) {
  .step-img__union {
    top: 44px;
  }
}
.step-img__union img {
  width: 112px;
}
@media screen and (min-width: 900px) {
  .step-img__union img {
    width: 144px;
  }
}
@media screen and (min-width: 1200px) {
  .step-img__union img {
    width: 160px;
  }
}

.step-img__text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  font-family: "Josefin Sans";
  letter-spacing: 1.12px;
}
@media screen and (min-width: 900px) {
  .step-img__text {
    font-size: 20px;
  }
}
.step-img__text span {
  letter-spacing: 1.12px;
}
@media screen and (min-width: 900px) {
  .step-img__text span {
    letter-spacing: 1.6px;
  }
}

.step-img__number {
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  line-height: 0.9;
  font-family: "Josefin Sans";
  font-style: italic;
  margin-top: 3px;
}
@media screen and (min-width: 900px) {
  .step-img__number {
    font-size: 46px;
  }
}
@media screen and (min-width: 1200px) {
  .step-img__number {
    font-size: 56px;
  }
}

.step__text {
  margin-top: 15.74px;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .step__text {
    margin-top: 24px;
    margin-bottom: 0;
  }
}

.step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}

.step-text__main {
  color: #4A3636;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 900px) {
  .step-text__main {
    font-size: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .step-text__main {
    font-size: 20px;
  }
}

.step-text__sub {
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP";
  line-height: 1.59;
}
.step-text__sub .step-text__sub-bold {
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .step-text__sub {
    font-size: 16px;
  }
}

.step-text__button {
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 5px 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .step-text__button {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .step-text__button {
    font-size: 16px;
  }
}
.step-text__button p {
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .step-text__button p {
    font-size: 16px;
  }
}

.step-text__button-svg {
  fill: #9ED0E0;
  width: 20px;
}
@media screen and (min-width: 900px) {
  .step-text__button-svg {
    width: 24px;
  }
}

.step__button {
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .step__button {
    margin-top: 44px;
    margin-bottom: 5px;
  }
}

.button-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  padding: 8px 22px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -37px;
  margin-bottom: 10px;
  font-size: 13px;
}
@media screen and (min-width: 375px) {
  .button-step {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .button-step {
    height: 56px;
    padding: 10px 40px 12px;
    font-size: 20px;
  }
}

.step__deco {
  position: absolute;
  top: 64.8px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .step__deco {
    top: 120px;
    left: 36px;
    width: calc(100% - 72px);
  }
}

.step__deco2 {
  position: absolute;
  top: 64.8px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .step__deco2 {
    top: 120px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 72px);
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .step__deco2 {
    max-width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .step__deco2 {
    max-width: 900px;
  }
}
@media screen and (min-width: 1200px) {
  .step__deco2 {
    max-width: 1512px;
  }
}

.step-deco__line {
  content: "";
  position: absolute;
  top: 533.33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 15;
}
@media screen and (min-width: 768px) {
  .step-deco__line {
    top: 613px;
  }
}
@media screen and (min-width: 900px) {
  .step-deco__line {
    display: none;
  }
}
.step-deco__line svg {
  width: 34px;
  fill: #CE2073;
}
.step-deco__line--pc {
  content: "";
  position: absolute;
  top: 344px;
  left: 50%;
  -webkit-transform: translateX(-229%);
          transform: translateX(-229%);
  z-index: 15;
  display: none;
}
@media screen and (min-width: 900px) {
  .step-deco__line--pc {
    display: block;
    top: 390px;
    -webkit-transform: translateX(-195%);
            transform: translateX(-195%);
  }
}
@media screen and (min-width: 1200px) {
  .step-deco__line--pc {
    top: 344px;
    -webkit-transform: translateX(-229%);
            transform: translateX(-229%);
  }
}
.step-deco__line--pc svg {
  height: 18px;
  fill: #CE2073;
}
@media screen and (min-width: 1200px) {
  .step-deco__line--pc svg {
    height: 113px;
  }
}

.step-deco__line2 {
  content: "";
  position: absolute;
  top: 927px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .step-deco__line2 {
    top: 1021px;
  }
}
@media screen and (min-width: 900px) {
  .step-deco__line2 {
    display: none;
  }
}
.step-deco__line2 svg {
  width: 34px;
  fill: #CE2073;
}
.step-deco__line2--pc {
  content: "";
  position: absolute;
  top: 344px;
  left: 50%;
  -webkit-transform: translateX(93%);
          transform: translateX(93%);
  z-index: 15;
  display: none;
}
@media screen and (min-width: 900px) {
  .step-deco__line2--pc {
    display: block;
    top: 390px;
  }
}
@media screen and (min-width: 1200px) {
  .step-deco__line2--pc {
    top: 344px;
  }
}
.step-deco__line2--pc svg {
  height: 18px;
  fill: #CE2073;
}
@media screen and (min-width: 1200px) {
  .step-deco__line2--pc svg {
    height: 113px;
  }
}

.step-deco2__cat-black {
  position: absolute;
  top: 5px;
  right: -31px;
  z-index: 5;
}
@media screen and (min-width: 900px) {
  .step-deco2__cat-black {
    top: -16.03px;
    right: 69px;
  }
}
.step-deco2__cat-black img {
  width: 94px;
}
@media screen and (min-width: 900px) {
  .step-deco2__cat-black img {
    width: 128.4px;
  }
}
@media screen and (min-width: 1200px) {
  .step-deco2__cat-black img {
    width: 214px;
  }
}

.step-deco2__cat-blown {
  position: absolute;
  top: 0;
  right: 24px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .step-deco2__cat-blown {
    top: -27px;
    right: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .step-deco2__cat-blown {
    top: -27px;
    right: 195px;
  }
}
.step-deco2__cat-blown img {
  width: 105px;
}
@media screen and (min-width: 900px) {
  .step-deco2__cat-blown img {
    width: 142.8px;
  }
}
@media screen and (min-width: 1200px) {
  .step-deco2__cat-blown img {
    width: 238px;
  }
}

.step-deco2__map {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 900px) {
  .step-deco2__map {
    top: -60px;
  }
}
.step-deco2__map img {
  width: 149px;
}
@media screen and (min-width: 900px) {
  .step-deco2__map img {
    width: 276px;
  }
}
@media screen and (min-width: 1200px) {
  .step-deco2__map img {
    width: 460px;
  }
}

.step-deco2__powpads {
  position: absolute;
  top: 74px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .step-deco2__powpads {
    top: 148px;
    right: 0;
  }
}
.step-deco2__powpads img {
  width: 55px;
}
@media screen and (min-width: 900px) {
  .step-deco2__powpads img {
    width: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .step-deco2__powpads img {
    width: 100px;
  }
}

.step-deco2__powpads2 {
  position: absolute;
  top: 550px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .step-deco2__powpads2 {
    top: 580px;
    left: 0;
  }
}
.step-deco2__powpads2 img {
  width: 55px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 900px) {
  .step-deco2__powpads2 img {
    width: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .step-deco2__powpads2 img {
    width: 100px;
  }
}

.step-deco2__powpads3 {
  position: absolute;
  top: 880px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .step-deco2__powpads3 {
    display: none;
  }
}
.step-deco2__powpads3 img {
  width: 55px;
  -webkit-transform: scaleX(-1) rotate(180deg);
          transform: scaleX(-1) rotate(180deg);
}

.prizes {
  background-color: #E9F6F8;
  padding-top: 83px;
  padding-bottom: 260px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes {
    padding-top: 247px;
    padding-bottom: 640px;
    overflow-x: visible;
  }
}

.prizes__inner {
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    padding-inline: 30px;
  }
}
.prizes__inner::before {
  content: "";
  position: absolute;
  background: url(../img/prizes-deco-pc.svg) no-repeat center center/cover;
  width: 237.6px;
  height: 96px;
  top: -82px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}
@media screen and (min-width: 900px) {
  .prizes__inner::before {
    width: 365.624px;
    height: 148.967px;
    top: -148px;
  }
}

.prizes__wrap {
  border-radius: 24px;
  background: #fff;
  text-align: center;
  max-width: 375px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prizes__wrap {
    max-width: 1024px;
    padding-inline: 56px;
  }
  .prizes__wrap::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 0px;
    background: url(../img/prizes-bg-triangle-left.svg) no-repeat center center/cover;
    width: 315px;
    height: 86px;
  }
  .prizes__wrap::after {
    content: "";
    position: absolute;
    top: -120px;
    right: 0px;
    background: url(../img/prizes-bg-triangle-right.svg) no-repeat center center/cover;
    width: 315px;
    height: 86px;
  }
}

.prizes-title {
  z-index: 10;
  content: "";
  position: absolute;
  top: -63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  padding: 0;
}
@media screen and (min-width: 900px) {
  .prizes-title {
    top: -120px;
    width: 256px;
  }
}

@media screen and (min-width: 768px) {
  .prizes__title-en {
    margin-top: 4px;
    text-align: center;
    font-family: Courgette;
    color: #4A3636;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.25;
  }
}
@media screen and (min-width: 900px) {
  .prizes__title-en {
    margin-top: 5px;
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .prizes__title-jp {
    margin-top: 6px;
    padding-bottom: 6px;
    text-align: center;
    font-family: "Kiwi Maru";
    color: #4A3636;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.25;
    border-bottom: 6px solid #FFEE56;
  }
}
@media screen and (min-width: 900px) {
  .prizes__title-jp {
    margin-top: 8px;
    padding-bottom: 8px;
    font-size: 32px;
    border-bottom: 8px solid #FFEE56;
  }
}

.prizes__text {
  padding-top: 60px;
}
@media screen and (min-width: 900px) {
  .prizes__text {
    padding-top: 66px;
  }
}
.prizes__text p {
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.55;
}
@media screen and (min-width: 900px) {
  .prizes__text p {
    font-size: 16px;
  }
}

.prizes__container {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: calc(clamp(120px, 60vw, 170px) / 2) calc(clamp(120px, 60vw, 170px) / 2) 5px calc(clamp(120px, 60vw, 170px) / 2) calc(clamp(120px, 60vw, 170px) / 2);
  row-gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 335px;
  width: 100%;
  margin-inline: auto;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .prizes__container {
    max-width: 912px;
    grid-template-rows: 510px 360px;
    grid-template-columns: clamp(160px, 26vw, 280px) 32px calc(clamp(160px, 26vw, 280px) / 2) 22px calc(clamp(160px, 26vw, 280px) / 2) 7px clamp(160px, 26vw, 280px);
    row-gap: 29px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__container {
    max-width: 912px;
    grid-template-rows: 510px 360px;
    grid-template-columns: clamp(160px, 26vw, 280px) 26px calc(clamp(160px, 26vw, 280px) / 2) 22px calc(clamp(160px, 26vw, 280px) / 2) 26px clamp(160px, 26vw, 280px);
    row-gap: 29px;
    margin-top: 32px;
  }
}

.prizes__box {
  margin-top: 18px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes__box {
    margin-top: 45px;
  }
}

.prizes__box1,
.prizes__box2,
.prizes__box3,
.prizes__box4,
.prizes__box5 {
  position: relative;
}

.prizes__box1 {
  grid-column: 1/3;
  grid-row: 1/auto;
}
@media screen and (min-width: 900px) {
  .prizes__box1 {
    grid-column: 1/4;
    grid-row: 1/auto;
  }
}

.prizes__box2 {
  grid-column: 4/6;
  grid-row: 1/auto;
}
@media screen and (min-width: 900px) {
  .prizes__box2 {
    grid-column: 5/8;
    grid-row: 1/auto;
  }
}

.prizes__box3,
.prizes__box4,
.prizes__box5 {
  width: clamp(120px, 60vw, 170px);
}
@media screen and (min-width: 900px) {
  .prizes__box3,
  .prizes__box4,
  .prizes__box5 {
    width: clamp(160px, 28vw, 290px);
  }
}

.prizes__box3 {
  grid-column: 1/3;
  grid-row: 2/auto;
}
@media screen and (min-width: 900px) {
  .prizes__box3 {
    grid-column: 1/2;
    grid-row: 2/auto;
  }
}

.prizes__box4 {
  grid-column: 4/6;
  grid-row: 2/auto;
}
@media screen and (min-width: 900px) {
  .prizes__box4 {
    grid-column: 3/6;
    grid-row: 2/auto;
  }
}

.prizes__box5 {
  grid-column: 2/5;
  grid-row: 3/auto;
  margin-top: 1px;
  margin-left: 2px;
}
@media screen and (min-width: 900px) {
  .prizes__box5 {
    grid-column: 7/8;
    grid-row: 2/auto;
    margin-top: 0px;
    margin-left: 0px;
  }
}

.prizes-box__image1-2,
.prizes-box__image3-5 {
  position: relative;
}
.prizes-box__image1-2 img,
.prizes-box__image3-5 img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  -webkit-transition: 1s all;
  transition: 1s all;
}

@media screen and (min-width: 900px) {
  .prizes-box__image1-2 img {
    border-radius: 20px 20px 0 0;
    height: 340px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box__image1-2::before {
    top: -50px;
    width: 100px;
    height: 100px;
    font-size: 16px;
    padding-top: 12px;
  }
}

@media screen and (min-width: 900px) {
  .prizes-box__image3-5 img {
    border-radius: 18px 18px 0 0;
    height: 240px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box__image3-5::before {
    top: -40px;
    width: 80px;
    height: 80px;
    font-size: 12.8px;
    padding-top: 12px;
  }
}

.prizes-box__number1-2,
.prizes-box__number3-5 {
  z-index: 11;
  content: "";
  position: absolute;
  top: 19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  font-size: 2.304rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Josefin Sans";
}
.prizes-box__number1-2::after,
.prizes-box__number3-5::after {
  content: "特典";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 48px;
  height: 48px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/prizes-star.png) no-repeat center center/cover;
  color: #fff;
  font-size: 0.768rem;
  font-weight: 700;
  line-height: 1.6;
  padding-top: 5.76px;
  z-index: -1;
}

@media screen and (min-width: 900px) {
  .prizes-box__number1-2 {
    font-size: 48px;
    top: 40px;
    left: 50%;
  }
  .prizes-box__number1-2::after {
    top: -38px;
    width: 100px;
    height: 100px;
    font-size: 16px;
    padding-top: 12px;
  }
}

@media screen and (min-width: 900px) {
  .prizes-box__number3-5 {
    font-size: 38.4px;
    top: 40px;
    left: 50%;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box__number3-5::after {
    top: -31px;
    width: 80px;
    height: 80px;
    font-size: 12.8px;
    padding-top: 12px;
  }
}

.prizes-box__text1-2,
.prizes-box__text3-5 {
  text-align: center;
  background: #F5F5F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 56px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0 0 8px 8px;
  position: relative;
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .prizes-box__text1-2,
  .prizes-box__text3-5 {
    border-radius: 0 0 20px 20px;
  }
}
.prizes-box__text1-2::before,
.prizes-box__text3-5::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 36px;
  height: 36px;
  border-radius: 0 0 8px 0;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-image: url(../img/prizes-triangle.svg);
          mask-image: url(../img/prizes-triangle.svg);
  background: #67B0C7;
  -webkit-transition: 1s all;
  transition: 1s all;
}
@media screen and (min-width: 900px) {
  .prizes-box__text1-2::before,
  .prizes-box__text3-5::before {
    border-radius: 0 0 20px 0;
  }
}
.prizes-box__text1-2::after,
.prizes-box__text3-5::after {
  content: "";
  position: absolute;
  bottom: 6.12px;
  right: 5.22px;
  width: 11.52px;
  height: 11.52px;
  background: url(../img/prizes-glass.svg) no-repeat center center/cover;
}

@media screen and (min-width: 900px) {
  .prizes-box__text1-2 {
    font-size: 20px;
    height: 120px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box__text1-2::before {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box__text1-2::after {
    bottom: 14px;
    right: 12.5px;
    width: 32px;
    height: 32px;
  }
}

@media screen and (min-width: 900px) {
  .prizes-box__text3-5 {
    font-size: 16px;
    height: 80px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box__text3-5::before {
    width: 64px;
    height: 64px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box__text3-5::after {
    bottom: 8.96px;
    right: 8px;
    width: 20.48px;
    height: 20.48px;
  }
}

.prizes__button {
  margin-top: 18px;
  padding-bottom: 34.67px;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 52px;
    padding-bottom: 53px;
  }
}

.prizes__hover {
  position: relative;
  border: 5px solid #fff;
  border-radius: 8px;
  z-index: 10;
  -webkit-transition: 1s all;
  transition: 1s all;
}
@media screen and (min-width: 900px) {
  .prizes__hover {
    border-radius: 29px;
  }
}
.prizes__hover:hover {
  border: 5px solid #9ED0E0;
}
.prizes__hover:hover .prizes-box__text1-2::before,
.prizes__hover:hover .prizes-box__text3-5::before {
  background: #9ED0E0;
}
.prizes__hover:hover .prizes-box__image1-2 img,
.prizes__hover:hover .prizes-box__image3-5 img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}

.button-prizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  padding: 6px 22px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  font-size: 13px;
  margin-top: -5px;
}
@media screen and (min-width: 375px) {
  .button-prizes {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .button-prizes {
    height: 56px;
    padding: 10px 40px 12px;
    font-size: 20px;
    margin-top: 0px;
  }
}

.prizes__bg {
  position: absolute;
  bottom: 35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 580px;
  height: 260px;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .prizes__bg {
    width: 100vw;
    height: auto;
    bottom: 0px;
  }
}
.prizes__bg img {
  width: 100%;
}

.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 60;
  overscroll-behavior-y: none;
  width: min(100%, 336px);
  height: 480px;
  border-radius: 24px;
  background: #fff;
  border: none;
  padding: 0;
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: min(100%, 480px);
    height: 650px;
  }
}
.prizes-modal::-ms-backdrop {
  opacity: 0.4;
  background: #000;
}
.prizes-modal::backdrop {
  opacity: 0.4;
  background: #000;
}

.prizes-modal__image img {
  width: 100%;
  height: 210px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__image img {
    height: 300px;
  }
}

.prizes-modal__body {
  text-align: center;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__body {
    padding-inline: 35px;
  }
}

.prizes-modal__body-title {
  margin-top: 39px;
  color: #4A3636;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
}
@media screen and (min-width: 900px) {
  .prizes-modal__body-title {
    margin-top: 32px;
    font-size: 20px;
  }
}

.prizes-modal__body-text {
  margin-top: 12px;
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .prizes-modal__body-text {
    font-size: 16px;
  }
}

.modal__button {
  margin-top: 16px;
  color: #4A3636;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  padding: 6px 24px 6px;
}
@media screen and (min-width: 900px) {
  .modal__button {
    margin-top: 24px;
    padding: 6px 24px 6px;
  }
}

.modal__button:focus {
  outline: none;
}

.spot {
  background: #67B0C7;
  margin-top: -48px;
  padding-bottom: 19px;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 900px) {
  .spot {
    margin-top: -77px;
  }
}

.spot__inner {
  position: relative;
}
@media screen and (min-width: 900px) {
  .spot__inner {
    padding-left: 244px;
  }
}
.spot__inner::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  background-image: url(../img/spot-wave-before-sp.svg);
  width: 100vw;
  height: 45.714px;
  background-repeat: repeat-x;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .spot__inner::before {
    top: -45px;
    height: 120px;
    background-image: url(../img/spot-wave-before-pc.svg);
  }
}
.spot__inner::after {
  content: "";
  position: absolute;
  bottom: -63px;
  left: 0;
  background-image: url(../img/spot-wave-after-sp.svg);
  width: 100vw;
  height: 45.714px;
  background-repeat: repeat-x;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .spot__inner::after {
    background-image: url(../img/spot-wave-after-pc.svg);
    height: 120px;
    bottom: -127px;
  }
}
@media screen and (min-width: 1200px) {
  .spot__inner::after {
    background-image: url(../img/spot-wave-after-pc.svg);
    height: 120px;
    bottom: -126px;
  }
}

.spot__wrapper {
  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) {
  .spot__wrapper {
    padding-top: 52px;
  }
}

.spot__contents {
  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;
  text-align: center;
  z-index: 50;
}
@media screen and (min-width: 900px) {
  .spot__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: -14px;
  }
}

.spot__title {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.25;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru";
  display: grid;
  grid-template-columns: 28px 1fr;
  width: 260px;
  margin-inline: auto;
  gap: 8px;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .spot__title {
    font-size: 40px;
    grid-template-columns: 1fr;
    width: 56px;
  }
}
.spot__title h2 {
  margin-top: 6px;
}
@media screen and (min-width: 900px) {
  .spot__title h2 {
    margin-top: -144px;
    margin-left: 21px;
  }
}

.spot__title-image {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .spot__title-image {
    margin-left: 12px;
    margin-top: 21px;
  }
}
.spot__title-image img {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 900px) {
  .spot__title-image img {
    width: 60px;
    height: 60px;
  }
}

.spot__swiper-container {
  margin-top: 24px;
  width: 100%;
  overflow-x: hidden;
}

@media screen and (min-width: 900px) {
  .spot__swiper {
    padding-left: 46px;
    padding-bottom: 64px;
  }
}

.spot__slide {
  width: 240px;
  height: 402px;
  border-radius: 12px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .spot__slide {
    border-radius: 24px;
    width: 344px;
    height: 542px;
  }
}

.spot-card__image img {
  width: 240px;
  height: 180px;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  .spot-card__image img {
    border-radius: 24px 24px 0 0;
    width: 344px;
    height: 240px;
  }
}

.spot-card__contents {
  margin-top: 16px;
  padding-inline: 24px;
}
@media screen and (min-width: 900px) {
  .spot-card__contents {
    margin-top: 26px;
  }
}

.spot-card__title {
  color: #4A3636;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spot-card__title {
    font-size: 20px;
  }
}

.spot-card__text {
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .spot-card__text {
    font-size: 16px;
    margin-top: 24px;
    padding-inline: 8px;
    text-align: left;
  }
}

.spot__prev,
.spot__next {
  width: 0;
  height: 0;
}
.spot__prev::after,
.spot__next::after {
  display: none;
}
@media screen and (min-width: 900px) {
  .spot__prev,
  .spot__next {
    width: 80px;
    height: 80px;
  }
}

.spot__prev {
  background: url(../img/spot-icon-prev.png) no-repeat center center/contain;
  top: 509px;
  left: 0px;
}

.spot__next {
  background: url(../img/spot-icon-next.png) no-repeat center center/contain;
  top: 510px;
  right: 284px;
}

.spot-container {
  display: grid;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 900px) {
  .spot-container {
    text-align: left;
    grid-template-columns: clamp(255px, 32.7380952381vw, 495px) 1fr;
    row-gap: 20px;
    -webkit-column-gap: min(7vw, 81px);
       -moz-column-gap: min(7vw, 81px);
            column-gap: min(7vw, 81px);
    padding-right: 20px;
  }
}

.spot-container__image {
  grid-row-start: 1;
  grid-row-end: auto;
}
@media screen and (min-width: 900px) {
  .spot-container__image {
    grid-row-end: 3;
    grid-column-start: 1;
  }
}
.spot-container__image img {
  width: 255px;
}
@media screen and (min-width: 900px) {
  .spot-container__image img {
    width: clamp(255px, 32.7380952381vw, 495px);
    margin-left: -3px;
  }
}

.spot-container-text {
  color: #fff;
  font-size: 1.1444rem;
  font-weight: 400;
  line-height: 1.6;
  grid-row-start: 2;
  grid-row-end: auto;
  margin-top: 15px;
}
@media screen and (min-width: 900px) {
  .spot-container-text {
    font-size: 16px;
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 2;
    grid-column-end: auto;
    margin-top: 2px;
  }
}

.spot-container-button {
  grid-row-start: 3;
  grid-row-end: auto;
  margin-top: 22px;
}
@media screen and (min-width: 900px) {
  .spot-container-button {
    grid-row-start: 2;
    grid-row-end: auto;
    grid-column-start: 2;
    grid-column-end: auto;
    margin-top: 0;
    margin-left: 11px;
  }
}

.spot-container-button-text {
  color: #4A3636;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-family: "Noto Sans JP";
  padding: 5px 23px 6px;
}
@media screen and (min-width: 900px) {
  .spot-container-button-text {
    font-size: 17px;
    padding: 9px 37px 9px;
  }
}
@media screen and (min-width: 1200px) {
  .spot-container-button-text {
    font-size: 20px;
    padding: 9px 37px 9px;
  }
}

.spot__deco {
  display: none;
}
@media screen and (min-width: 900px) {
  .spot__deco {
    display: block;
    position: absolute;
    top: -110px;
    left: -207px;
  }
}

.spot__pawpads img {
  width: 100px;
  height: 220px;
}

.faq {
  background: #E9F6F8;
  padding-top: 85px;
  padding-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .faq {
    padding-top: 224px;
    padding-bottom: 120px;
  }
}

.faq__inner {
  padding-inline: 20px;
}

.faq-box {
  margin-top: 24px;
  border-radius: 12px;
  border: 2px solid #4A3636;
  max-width: 355px;
  width: 100%;
  margin-inline: auto;
}
.faq-box + .faq-box {
  margin-top: 11px;
}
@media screen and (min-width: 900px) {
  .faq-box + .faq-box {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .faq-box {
    max-width: 700px;
  }
}
@media screen and (min-width: 900px) {
  .faq-box {
    margin-top: 40px;
    border-radius: 16px;
    max-width: 1024px;
  }
}

summary {
  cursor: pointer;
}

summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

.faq-box__head {
  background: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .faq-box__head {
    border-radius: 16px;
    padding: 31px 24px 25px;
  }
}

.faq-box__head-q-icon {
  color: #9ED0E0;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  font-family: "Josefin Sans";
  position: absolute;
  top: 50%;
  left: 14px;
  -webkit-transform: translateY(-58%);
          transform: translateY(-58%);
  width: 22px;
  height: 24px;
}
@media screen and (min-width: 900px) {
  .faq-box__head-q-icon {
    font-size: 32px;
    left: 22px;
    width: 29px;
    height: 35px;
  }
}

.faq-box__head-text {
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 32px;
  padding-right: 21px;
  display: inline-block;
  max-width: 278px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .faq-box__head-text {
    max-width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .faq-box__head-text {
    font-size: 20px;
    max-width: 871px;
    padding-left: 43px;
  }
}

.faq-box__head-openicon {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #9ED0E0;
  display: block;
  width: 26.182px;
  height: 26.182px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .faq-box__head-openicon {
    width: 48px;
    height: 48px;
    right: 21px;
  }
}
.faq-box__head-openicon::before, .faq-box__head-openicon::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 16px;
  height: 2px;
  content: "";
  background-color: #fff;
  right: 5px;
}
@media screen and (min-width: 900px) {
  .faq-box__head-openicon::before, .faq-box__head-openicon::after {
    right: 14px;
    width: 20px;
  }
}
.faq-box__head-openicon::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq-box__head-openicon::after {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

details[open] .faq-box__head-openicon::after {
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

details[open] .faq-box__head {
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  details[open] .faq-box__head {
    border-radius: 16px 16px 0 0;
  }
}

.faq-box__body {
  background: #F5F5F5;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 900px) {
  .faq-box__body {
    border-radius: 16px;
  }
}

.faq-box__a {
  padding: 18px 16px 14px;
}
@media screen and (min-width: 900px) {
  .faq-box__a {
    padding: 34px 24px 27px;
  }
}

.faq-box__a-icon {
  color: #9ED0E0;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  font-family: "Josefin Sans";
  position: absolute;
  top: 50%;
  left: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 24px;
}
@media screen and (min-width: 900px) {
  .faq-box__a-icon {
    font-size: 32px;
    left: 21px;
    width: 23px;
    height: 40px;
  }
}

.faq-box__a-text {
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 32px;
  display: inline-block;
  max-width: 310px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .faq-box__a-text {
    max-width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .faq-box__a-text {
    font-size: 16px;
    max-width: 937px;
    padding-left: 36px;
  }
}

.span__underline {
  text-decoration-line: underline;
}

.info {
  background: #E9F6F8;
  padding-bottom: 32px;
}
@media screen and (min-width: 900px) {
  .info {
    padding-bottom: 118px;
  }
}

.info__inner {
  margin-inline: 20px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  padding: 16px 15.5px;
}
@media screen and (min-width: 768px) {
  .info__inner {
    margin-inline: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .info__inner {
    margin-inline: auto;
    padding: 32px 48px;
    max-width: 1024px;
  }
}

.info-group {
  margin-top: 12px;
}
@media screen and (min-width: 1200px) {
  .info-group {
    margin-top: 30px;
  }
}

.info-group__content {
  display: grid;
  row-gap: 8px;
  padding: 12px 0 14px;
}
@media screen and (min-width: 1200px) {
  .info-group__content {
    grid-template-columns: 240px 1fr;
    padding: 12px 0;
  }
}
.info-group__content:not(:last-child) {
  border-bottom: 1px solid #CCCCCC;
}

.info-group__title {
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .info-group__title {
    font-size: 16px;
    padding-left: 32px;
  }
}
.info-group__title::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ED0E0;
}
@media screen and (min-width: 1200px) {
  .info-group__title::before {
    top: 8px;
    left: 16px;
  }
}

.info-group__text {
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.59;
}
@media screen and (min-width: 1200px) {
  .info-group__text {
    font-size: 16px;
    line-height: 1.62;
  }
}
.info-group__text ul {
  padding-left: 18px;
}
@media screen and (min-width: 1200px) {
  .info-group__text ul {
    padding-left: 24px;
  }
}
.info-group__text li {
  position: relative;
}
.info-group__text li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: -11px;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  background-color: #4A3636;
}
@media screen and (min-width: 1200px) {
  .info-group__text li::before {
    top: 13px;
    left: -15px;
    width: 5px;
    height: 5px;
  }
}

.info__image {
  width: 100vw;
  text-align: center;
}

.contact {
  padding-top: 38px;
  padding-bottom: 40px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.contact__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding-inline: 50px;
  }
}

.contact__title {
  text-align: center;
}

.contact__text {
  margin-top: 24px;
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .contact__text {
    margin-top: 33px;
    font-size: 16px;
  }
}

.contact__form {
  margin-top: 25px;
}
@media screen and (min-width: 900px) {
  .contact__form {
    margin-top: 41px;
    max-width: 848px;
    margin-inline: auto;
  }
}

.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: 28px;
}
@media screen and (min-width: 900px) {
  .contact__fields {
    gap: 26px;
  }
}

.form-field {
  display: grid;
}
@media screen and (min-width: 900px) {
  .form-field {
    grid-template-columns: 222px 1fr;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .form-field__head {
    margin-top: 14px;
  }
}

.form-field__label {
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field__tag {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background: #CE2073;
}

.form-field__item {
  margin-top: 8px;
}
@media screen and (min-width: 900px) {
  .form-field__item {
    margin-top: 0;
  }
}

.form-textarea {
  border-radius: 8px;
  background: #F5F5F5;
  padding: 16px;
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  width: 100%;
  height: 160px;
  border: none;
}
@media screen and (min-width: 900px) {
  .form-textarea {
    font-size: 16px;
    margin-top: 13px;
  }
}

.form-text {
  border-radius: 8px;
  background-color: #F5F5F5;
  padding: 16px;
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  width: 100%;
  border: none;
}

.form-field__select {
  position: relative;
  margin-top: 8px;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .form-field__select {
    margin-top: 0;
  }
}
.form-field__select::before {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 1px;
  width: 51px;
  height: 55px;
  background: #9ED0E0;
  border-radius: 0 8px 8px 0;
}
@media screen and (min-width: 900px) {
  .form-field__select::before {
    height: 58px;
  }
}
.form-field__select::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 14px;
  border-top: solid 3px;
  border-right: solid 3px;
  -webkit-transform: rotate(135deg) translateY(-50%);
          transform: rotate(135deg) translateY(-50%);
  color: #fff;
}

.form-field__select::before,
.form-field__select::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 8px;
  background: #F5F5F5;
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  padding: 16px 52px 16px 16px;
  width: 100%;
  border: none;
  outline: none;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
    padding: 16px 52px 16px 14px;
  }
}

.contact__field-radios {
  margin-top: -4px;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  margin-top: 9px;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    margin-top: 14px;
  }
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

.form-radio__text {
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 32px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .form-radio__text {
    font-size: 16px;
  }
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  left: 0px;
  width: 24px;
  height: 24px;
  background-color: #F5F5F5;
}
.form-radio__text::after {
  left: 6px;
  width: 12px;
  height: 12px;
  background-color: #9ED0E0;
  opacity: 0;
}

input[type=text],
input[type=email],
input[type=radio],
textarea {
  outline: none;
}
@media screen and (min-width: 900px) {
  input[type=text],
  input[type=email],
  input[type=radio],
  textarea {
    outline: none;
    background-color: #F5F5F5;
    border: none;
  }
}

.form-text__background {
  -webkit-box-shadow: 0px 0px 100px 100px #F5F5F5 inset;
          box-shadow: 0px 0px 100px 100px #F5F5F5 inset;
}

@media screen and (min-width: 900px) {
  input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=radio]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #CCCCCC;
  }
  input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=radio]::-moz-placeholder, textarea::-moz-placeholder {
    color: #CCCCCC;
  }
  input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=radio]:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #CCCCCC;
  }
  input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=radio]::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: #CCCCCC;
  }
  input[type=text]::placeholder,
  input[type=email]::placeholder,
  input[type=radio]::placeholder,
  textarea::placeholder {
    color: #CCCCCC;
  }
}

input[type=text]:focus,
input[type=email]:focus,
input[type=radio]:focus,
select:focus,
textarea:focus {
  outline: none;
}
@media screen and (min-width: 900px) {
  input[type=text]:focus,
  input[type=email]:focus,
  input[type=radio]:focus,
  select:focus,
  textarea:focus {
    outline: none;
    background-color: #E9F6F8;
    border: 1px solid #9ED0E0;
  }
}

input[type=radio]:focus + .form-radio__text::before {
  outline: none;
  border: 1px solid #9ED0E0;
}

.contact-error {
  background-color: #fff0f7;
  border: 1px solid #CE2073;
}

.checkbox-error {
  background-color: #fff0f7;
}

.js-label.contact-label-error {
  color: #CE2073;
}

.form-field__select.contact-error::before {
  background-color: #CE2073; /* エラー時の背景色 */
}

input[type=text]:user-invalid,
input[type=email]:user-invalid,
input[type=radio]:user-invalid,
select:user-invalid,
textarea:user-invalid {
  background-color: #fff0f7;
  border: 1px solid #CE2073;
}

.contact__privacy {
  margin-top: -5px;
  color: #4A3636;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__privacy {
    margin-top: 14px;
    font-size: 16px;
  }
}

.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__text {
  position: relative;
  padding-left: 36px;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
}
.form-checkbox__text::before {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #F5F5F5;
}
.form-checkbox__text::after {
  top: 3px;
  left: 2px;
  width: 15px;
  height: 8px;
  border-top: solid 2px;
  border-right: solid 2px;
  -webkit-transform: rotate(135deg) translateY(-50%);
          transform: rotate(135deg) translateY(-50%);
  color: #67B0C7;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration-line: underline;
}

.contact__button {
  text-align: center;
  margin-top: -2px;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 14px;
  }
}

.form-button {
  padding: 4px 22px 6px;
  color: #4A3636;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .form-button {
    padding: 4px 39px 6px;
  }
}

.footer {
  background: #E9F6F8;
  padding-top: 43px;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 120px;
    position: relative;
  }
}

.footer__inner {
  padding-inline: 20px;
  position: relative;
}

.footer__text {
  color: #4A3636;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  font-family: "Josefin Sans";
}
@media screen and (min-width: 900px) {
  .footer__text {
    font-size: 24px;
  }
}

.footer__sns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 176px;
  margin-inline: auto;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .footer__sns {
    width: 200px;
  }
}
.footer__sns svg {
  fill: #67B0C7;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 900px) {
  .footer__sns svg {
    width: 40px;
    height: 40px;
  }
}
.footer__sns a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__sns a:hover {
  opacity: 0.7;
}

.footer__onomichi {
  margin-top: 12px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__onomichi {
    margin-top: 35px;
  }
}
.footer__onomichi img {
  max-width: 320px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .footer__onomichi img {
    max-width: 755px;
  }
}

.footer__content {
  display: grid;
  border-radius: 16px;
  background: #fff;
  max-width: 310px;
  margin-inline: auto;
}
@media screen and (min-width: 375px) {
  .footer__content {
    max-width: 335px;
  }
}
@media screen and (min-width: 900px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    max-width: 1024px;
    place-items: center;
  }
}

.footer__map iframe {
  border-radius: 16px 16px 0 0;
  width: 310px;
}
@media screen and (min-width: 375px) {
  .footer__map iframe {
    width: 335px;
    height: 271px;
  }
}
@media screen and (min-width: 900px) {
  .footer__map iframe {
    border-radius: 0 16px 16px 0;
    width: 512px;
    height: 400px;
  }
}
@media screen and (min-width: 900px) {
  .footer__map {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.footer-profile {
  margin-inline: auto;
  margin-top: 19px;
}
@media screen and (min-width: 900px) {
  .footer-profile {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 25px;
    padding-inline: 20px;
  }
}

.footer-profile__image {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer-profile__image {
    text-align: left;
  }
}
.footer-profile__image img {
  width: 153px;
}
@media screen and (min-width: 900px) {
  .footer-profile__image img {
    width: 183px;
  }
}

.footer-profile__lists {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .footer-profile__lists {
    margin-top: 26px;
    gap: 12px;
  }
}

.footer-profile__list {
  display: grid;
  grid-template-columns: 80px 1fr;
}
@media screen and (min-width: 900px) {
  .footer-profile__list {
    grid-template-columns: 120px 1fr;
  }
}

.footer-profile__list-main {
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer-profile__list-main {
    font-size: 16px;
  }
}
.footer-profile__list-main::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  background-color: #9ED0E0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .footer-profile__list-main::before {
    top: 9px;
  }
}

.footer-profile__list-sub {
  color: #4A3636;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .footer-profile__list-sub {
    font-size: 16px;
  }
}

.footer__pagetop {
  text-align: center;
  margin-top: 24px;
}
.footer__pagetop a img {
  width: 75px;
  height: 78px;
}
@media screen and (min-width: 900px) {
  .footer__pagetop {
    display: none;
  }
}

.footer__deco {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__deco {
    display: block;
    position: absolute;
    top: 80px;
    right: 80px;
  }
}

.footer__pawpads img {
  width: 100px;
  height: 220px;
}

.footer__copyright {
  position: relative;
  margin-top: 67px;
  background: #67B0C7;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  padding-bottom: 24px;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    font-size: 16px;
    margin-top: 234px;
    padding-bottom: 32px;
  }
}
.footer__copyright::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  background-image: url(../img/spot-wave-before-sp.svg);
  width: 100vw;
  height: 45.714px;
  background-repeat: repeat-x;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .footer__copyright::before {
    top: -117px;
    height: 120px;
    background-image: url(../img/spot-wave-before-pc.svg);
  }
}