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

/* 2. デフォルトの余白を削除 */
* {
  margin: 0;
}

/* 3. 本文の行間を整え、フォントのレンダリングを滑らかにする */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 4. メディア要素（画像など）がはみ出さないようにし、ブロック要素化する */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 5. フォーム要素が親のフォント設定を無視するのを防ぐ */
input, button, textarea, select {
  font: inherit;
}

/* 6. 長い単語が画面からはみ出して横スクロールが出るのを防ぐ */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 7. ルート（#rootや#__nextなど）にスタック文脈を作成する（Reactなどのフレームワーク用） */
#root, #__next {
  isolation: isolate;
}

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

.inner {
  margin-inline: 20px;
}

.button {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 6px;
  padding-top: 6px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #fff;
  -webkit-box-shadow: 0 4px 0 0 #4A3636;
          box-shadow: 0 4px 0 0 #4A3636;
}
.button:hover {
  background: #FFEE56;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 15px;
  -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: 6px;
}
@media (min-width: 768px) {
  .heading {
    padding: 0 20px;
    gap: 8px;
  }
}

.heading-icon {
  width: 37.333px;
  height: 37.333px;
  text-align: center;
}
.heading-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .heading-icon {
    width: 48px;
    height: 48px;
  }
}

.heading__en {
  text-align: center;
  font-family: Courgette, serif;
  font-size: 16px;
  line-height: 125%;
}
@media (min-width: 768px) {
  .heading__en {
    font-size: 20px;
  }
}

.heading__ja {
  text-align: center;
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  border-bottom: 6px solid #FFEE56;
}
@media (min-width: 768px) {
  .heading__ja {
    font-size: 32px;
    border-bottom: 8px solid #FFEE56;
  }
}

.link-text:hover {
  color: #67B0C7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 64px;
  background: #fff;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 16px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .header__inner {
    padding-right: 24px;
    padding-left: 24px;
    padding-top: 16px;
  }
}

.header__logo img {
  width: 210px;
  height: 27px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .header__logo img {
    width: 183px;
    height: 24px;
  }
}

.header__icon {
  position: relative;
  width: 32px;
  height: 24px;
}
@media (min-width: 768px) {
  .header__icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  content: "";
  width: 32px;
  height: 3px;
  top: 0;
  left: 0;
  background: #4A3636;
  -webkit-transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, transform 0.3s;
  transition: top 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
  left: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-child(2) {
  top: 12px;
}
.drawer-icon__bar:nth-child(3) {
  top: 24px;
}
.drawer-icon__bar.is-checked:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 12px;
  width: 32px;
}
.drawer-icon__bar.is-checked:nth-child(2) {
  display: none;
}
.drawer-icon__bar.is-checked:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 12px;
}
.drawer-icon__bar .drawer-icon__dot {
  position: absolute;
  top: 0;
  right: 0;
  left: 28px;
  width: 4px;
  height: 3px;
  background: #4a3636;
  border-radius: 6px;
}

.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header__list:hover {
  color: #67B0C7;
  text-decoration-line: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .header__list {
    font-size: 12px;
  }
}

.header__button {
  margin-left: 4px;
}

@media (min-width: 768px) {
  .button__fight {
    padding-top: 4px;
    padding-right: 22px;
    padding-bottom: 6px;
    padding-left: 22px;
    font-size: 14px;
    border-width: 2px;
  }
}

.drawer-content {
  position: fixed;
  left: 0;
  top: 64px;
  width: 100%;
  height: calc(100vh - 64px);
  padding-top: 59px;
  padding-bottom: 60px;
  background: #FFF;
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  z-index: 20;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.drawer-content__link {
  font-size: 14px;
  text-align: center;
  line-height: 1.572;
}
.drawer-content__link:nth-of-type(1) {
  padding-top: 20px;
}

.fv {
  width: 100%;
  height: 554px;
  background: url(../img/Onomichi_background-sp.webp) center 75%/cover no-repeat;
  border-radius: 0 0 24px 24px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .fv {
    height: 740px;
    border-radius: 0 0 40px 40px;
    background: url(../img/Onomichi_background-pc.webp) center 50%/cover no-repeat;
  }
}

.fv__inner {
  width: 100%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .fv__inner {
    max-width: 848px;
  }
}

.fv__title {
  text-align: center;
  text-shadow: 0 0 30px #FFF;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  line-height: 125%;
  padding-top: 17px;
}
@media (min-width: 768px) {
  .fv__title {
    padding-top: 35px;
    font-size: 24px;
    font-weight: 500;
    line-height: 125%;
  }
}

.fv__campaign {
  margin-top: 20px;
}
.fv__campaign img {
  width: 100%;
}
@media (min-width: 768px) {
  .fv__campaign {
    width: 520px;
    max-width: 100%;
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
  }
  .fv__campaign img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }
}

.fv__wrap {
  position: relative;
  height: 522px;
  padding-top: 10px;
}
@media (min-width: 768px) {
  .fv__wrap {
    height: 603px;
    padding-top: 33px;
  }
}

.fv__fukidashi {
  position: absolute;
  top: 17px;
  left: 0;
  width: 142px;
}
.fv__fukidashi img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .fv__fukidashi {
    right: calc(50% + 143px);
    left: auto;
    top: -6px;
    width: 244px;
  }
  .fv__fukidashi img {
    width: 100%;
  }
}

.fv__present {
  position: absolute;
  top: 10px;
  right: 25px;
  width: 110px;
  max-width: 100%;
}
.fv__present img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .fv__present {
    top: 12px;
    right: auto;
    left: calc(50% + 117px);
    width: 180px;
  }
  .fv__present img {
    width: 100%;
  }
}

.fv__sp {
  position: absolute;
  top: 111px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .fv__sp {
    top: 28px;
  }
}

.fv__sp-image {
  width: 200px;
}
.fv__sp-image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .fv__sp-image {
    width: 250px;
  }
}

.fv__sp-body {
  position: absolute;
  width: calc(100% - 40px);
  top: 50%;
  left: 50%;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 12.8px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fv__sp-body {
    width: calc(100% - 50px);
    border-radius: 16px;
  }
}

.fv__sp-text {
  font-size: 12.8px;
  font-weight: 700;
  padding: 6px 9.6px;
  color: #fff;
  text-align: center;
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
}
@media (min-width: 768px) {
  .fv__sp-text {
    font-size: 16px;
    padding: 10px 12px;
  }
}

.fv__sp-box {
  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: 3.2px;
  margin-top: 12.8px;
  padding-bottom: 15.2px;
}
@media (min-width: 768px) {
  .fv__sp-box {
    margin-top: 16px;
    padding-bottom: 24px;
  }
}

.fv__sp-period {
  border-bottom: 2.4px solid var(--LP-Red, #CE2073);
}
@media (min-width: 768px) {
  .fv__sp-period {
    font-size: 14px;
    padding-bottom: 4px;
    border-bottom: 3px solid var(--LP-Red, #CE2073);
  }
}

.fv__sp-time {
  font-weight: 700;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
}
@media (min-width: 768px) {
  .fv__sp-time {
    font-size: 16px;
    margin-top: 4px;
  }
}

.fv__sp-button {
  padding-top: 12.8px;
}
.fv__sp-button .sp-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 22px 7px 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #fff;
  -webkit-box-shadow: 0 4px 0 0 #4A3636;
          box-shadow: 0 4px 0 0 #4A3636;
}
@media (min-width: 768px) {
  .fv__sp-button {
    padding-top: 16px;
  }
  .fv__sp-button .sp-button {
    font-size: 16px;
  }
}

.fv__food {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 90px;
  max-width: 100%;
}
.fv__food img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .fv__food {
    bottom: 51px;
    left: 2px;
    width: 212px;
  }
  .fv__food img {
    width: 100%;
  }
}

.fv__cat1 {
  position: absolute;
  bottom: 48px;
  right: 0;
  width: 62px;
  max-width: 100%;
}
.fv__cat1 img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .fv__cat1 {
    bottom: 104px;
    right: 63px;
    width: 170px;
  }
  .fv__cat1 img {
    width: 100%;
  }
}

.fv__cat2 {
  position: absolute;
  bottom: -10px;
  right: 9px;
  width: 98px;
  max-width: 100%;
}
.fv__cat2 img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .fv__cat2 {
    bottom: 7px;
    right: 0;
    width: 233px;
  }
  .fv__cat2 img {
    width: 100%;
  }
}

.about__decoration {
  position: absolute;
}

.about {
  margin-top: 104px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about {
    overflow-x: hidden;
  }
}

.about__decoration-pad {
  width: 250px;
  border-radius: 24px;
  top: 60px;
  left: -17px;
}
.about__decoration-pad.hidden-sp {
  display: none;
}
.about__decoration-pad img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .about__decoration-pad {
    top: 50px;
  }
  .about__decoration-pad.hidden-sp {
    display: block;
  }
}

.about__photo-left {
  left: -140px;
  top: 474px;
  border-radius: 24px;
  width: 200px;
}
.about__photo-left img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .about__photo-left {
    width: 480px;
    border-radius: 40px;
    top: 139px;
    left: -335px;
  }
}

.about__slope {
  bottom: 64px;
  right: calc(50% + 48px);
  width: 138px;
  overflow: hidden;
}
.about__slope img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .about__slope {
    width: 427px;
    bottom: 147px;
    left: -101px;
  }
}

.about__deciration-pawpads {
  top: 73px;
  right: 0;
  width: 54px;
}
.about__deciration-pawpads img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .about__deciration-pawpads {
    width: 100px;
    top: 0;
    right: 166px;
  }
}

.about__photo-right {
  top: 354px;
  right: -140px;
  width: 200px;
  border-radius: 24px;
}
.about__photo-right img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .about__photo-right {
    width: 480px;
    top: 143px;
    right: -283px;
  }
}

.about__wave {
  display: none;
}
.about__wave img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .about__wave {
    display: block;
    width: 874px;
    height: 45px;
    bottom: 636px;
    right: -563px;
  }
}

.about__goods {
  bottom: 214px;
  right: 20px;
  width: 48px;
}
.about__goods img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .about__goods {
    width: 101px;
    bottom: 588px;
    right: 146px;
  }
}

.about__wallet {
  bottom: 157px;
  right: 57px;
  width: 133px;
}
.about__wallet img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .about__wallet {
    width: 308px;
    bottom: 378px;
    right: 73px;
  }
}

.about__inner {
  position: relative;
  width: 335px;
  height: auto;
  padding: 40px 12px;
  background: #fff;
  border-radius: 24px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .about__inner {
    width: 620px;
    padding: 40px 114px;
    border-radius: 40px;
  }
}
@media (min-width: 1200px) {
  .about__inner {
    width: 848px;
  }
}

.about-top__image-left {
  position: absolute;
  top: 36px;
  right: calc(50% + 49px);
  width: 86px;
}
.about-top__image-left img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .about-top__image-left {
    width: 134px;
    top: 50px;
    right: calc(50% + 200px);
  }
}

.about-top__image-right {
  position: absolute;
  top: 32px;
  left: calc(50% + 61px);
  width: 86px;
}
.about-top__image-right img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .about-top__image-right {
    width: 134px;
    top: 50px;
    left: calc(50% + 190px);
  }
}

.about-top_sub-heading {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-top: 37px;
}
.about-top_sub-heading.hidden-pc {
  display: none;
}
@media (min-width: 768px) {
  .about-top_sub-heading {
    font-size: 16px;
    margin-top: 35px;
  }
  .about-top_sub-heading.hidden-sp {
    display: none;
  }
  .about-top_sub-heading.hidden-pc {
    display: block;
  }
}

.about-top__text-wrap {
  margin-top: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .about-top__text-wrap {
    margin-top: 35px;
    font-size: 16px;
    line-height: 160%;
  }
}

.about-top__text {
  margin-top: 1.6em;
  line-height: 160%;
}
.about-top__text .link-text {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}
.about-top__text .font__weight-bold {
  font-weight: 700;
}
.about-top__text .hidden-pc {
  display: block;
}
.about-top__text .hidden-sp {
  display: none;
}
@media (min-width: 768px) {
  .about-top__text {
    margin-top: 1.7em;
    font-size: 16px;
  }
  .about-top__text .hidden-pc {
    display: none;
  }
  .about-top__text .hidden-sp {
    display: block;
  }
}

.about-top__emphasis-text {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 6px;
  border-bottom: 2px dashed #9ED0E0;
}
@media (min-width: 768px) {
  .about-top__emphasis-text {
    font-size: 20px;
    margin-top: 39px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
}

.about__button {
  text-align: center;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .about__button {
    margin-top: 32px;
  }
}

.button-about {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 10px;
  padding-top: 8px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #fff;
  -webkit-box-shadow: 0 4px 0 0 #4A3636;
          box-shadow: 0 4px 0 0 #4A3636;
}
.button-about:hover {
  background: #FFEE56;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .button-about {
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 17px;
    padding-right: 40px;
    padding-left: 40px;
  }
}

.about__top-arrow {
  position: absolute;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
}
.about__top-arrow img {
  max-width: 100%;
  height: 36px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .about__top-arrow {
    width: 140px;
    bottom: -52px;
  }
  .about__top-arrow img {
    height: 50px;
  }
}

.about__bottom {
  margin-top: 140px;
}
@media (min-width: 768px) {
  .about__bottom {
    margin-top: 158px;
  }
}

.about__decoration-english {
  position: relative;
  z-index: 2;
  display: block;
  width: 354.64px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.about__decoration-english img {
  width: 100%;
}
@media (min-width: 768px) {
  .about__decoration-english {
    width: 890.604px;
    bottom: -8px;
  }
}

.swiper-slide {
  width: 100px;
}
.swiper-slide img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .swiper-slide {
    width: 200px;
  }
}

.how-to-entry {
  margin-top: 65px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .how-to-entry {
    margin-top: 120px;
    overflow: visible;
  }
}

.how-to-entry_inner {
  position: relative;
  max-width: 375px;
}
@media (min-width: 768px) {
  .how-to-entry_inner {
    max-width: 1512px;
    margin-left: auto;
    margin-right: auto;
  }
}

.how-to-entry_decoration {
  position: absolute;
}

.how-to-entry_map {
  width: 149px;
  top: 0;
  left: -20px;
}
.how-to-entry_map img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .how-to-entry_map {
    width: 460px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: -60px;
    left: 30px;
  }
  .how-to-entry_map img {
    width: 100%;
  }
}

.how-to-entry_pawpads1 {
  width: 55px;
  top: 74px;
  right: 0;
}
.how-to-entry_pawpads1 img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .how-to-entry_pawpads1 {
    width: 100px;
    top: 148px;
    right: 36px;
  }
  .how-to-entry_pawpads1 img {
    width: 100%;
  }
}

.how-to-entry_cat1 {
  width: 105px;
  top: 0;
  right: 4px;
}
.how-to-entry_cat1 img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .how-to-entry_cat1 {
    width: 238px;
    top: -26px;
    right: 234px;
  }
  .how-to-entry_cat1 img {
    width: 100%;
  }
}

.how-to-entry_cat2 {
  width: 94px;
  top: 5px;
  left: calc(50% + 124.5px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.how-to-entry_cat2 img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .how-to-entry_cat2 {
    width: 214px;
    top: -18px;
    left: calc(50% + 436px);
  }
  .how-to-entry_cat2 img {
    width: 100%;
  }
}
@media (min-width: 900px) {
  .how-to-entry_cat2 {
    left: calc(50% + 100px);
  }
}
@media (min-width: 1200px) {
  .how-to-entry_cat2 {
    left: calc(50% + 436px);
  }
}

.how-to-entry_pawpads2 {
  width: 55px;
  top: 550px;
  left: 0;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.how-to-entry_pawpads2 img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .how-to-entry_pawpads2 {
    width: 100px;
    top: 580px;
    left: 36px;
  }
  .how-to-entry_pawpads2 img {
    width: 100%;
  }
}

.how-to-entry_pawpads3 {
  width: 55px;
  bottom: 381px;
  right: 0;
}
.how-to-entry_pawpads3 img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .how-to-entry_pawpads3 {
    display: none;
  }
}

.how-to-entry_top-content {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  margin-top: 36px;
}
@media (min-width: 768px) {
  .how-to-entry_top-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    margin-top: 50px;
  }
}

.how-to-entry_top-step {
  text-align: center;
  position: relative;
}
.how-to-entry_top-step:nth-of-type(1):after, .how-to-entry_top-step:nth-of-type(2):after {
  position: absolute;
  background: url(../img/img_how-to/icon_wave-line-sp.svg) no-repeat center center/contain;
  content: "";
  width: 34px;
  height: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: calc(100% + 32px);
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media (min-width: 768px) {
  .how-to-entry_top-step.how-to-entry_top-block {
    bottom: -69px;
  }
  .how-to-entry_top-step:nth-of-type(1):after {
    position: absolute;
    background: url(../img/img_how-to/icon_wave-line-pc.svg) no-repeat center center/contain;
    content: "";
    width: 113px;
    height: 23.596px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 204px;
    left: 257px;
    -webkit-transform: initial;
            transform: initial;
  }
  .how-to-entry_top-step:nth-of-type(2):after {
    position: absolute;
    background: url(../img/img_how-to/icon_wave-line-pc.svg) no-repeat center center/contain;
    content: "";
    width: 113px;
    height: 23.596px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 136px;
    left: 257px;
    -webkit-transform: initial;
            transform: initial;
  }
}

.how-to-entry_top-image {
  width: 196px;
  margin: 0 auto;
}
.how-to-entry_top-image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .how-to-entry_top-image {
    width: 280px;
  }
}

.how-to-entry_top-text-wrap {
  width: 336px;
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .how-to-entry_top-text-wrap {
    margin-top: 26px;
  }
}

.how-to-entry_top-sectitle {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .how-to-entry_top-sectitle {
    font-size: 20px;
  }
}

.how-to-entry_top-text {
  margin-top: 18px;
  line-height: 160%;
}
.how-to-entry_top-text .hidden-pc {
  display: none;
}
.how-to-entry_top-text .hidden-sp {
  display: block;
}
@media (min-width: 768px) {
  .how-to-entry_top-text {
    font-size: 16px;
    margin-top: 23px;
  }
  .how-to-entry_top-text .hidden-pc {
    display: block;
  }
  .how-to-entry_top-text .hidden-sp {
    display: none;
  }
}

.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;
}

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

.how-to-entry_top-sns-button {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .how-to-entry_top-sns-button {
    margin-top: 19px;
  }
}

.sns_button {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 12px;
  padding-left: 40px;
  border: solid 1px transparent;
}
.sns_button::before {
  position: absolute;
  background: url(../img/img_how-to/Icon_insta.svg) no-repeat center center/contain;
  content: "";
  width: 20px;
  height: 20px;
  top: 8px;
  left: 12px;
}
@media (min-width: 768px) {
  .sns_button {
    font-size: 16px;
  }
}

.how-to-entry_top-button {
  text-align: center;
  margin-top: 16px;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .how-to-entry_top-button {
    margin-top: 62px;
  }
}

.how-to-entry_button {
  display: inline-block;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #FFF;
  -webkit-box-shadow: 0 4px 0 0 #4A3636;
          box-shadow: 0 4px 0 0 #4A3636;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 22px;
  padding-right: 22px;
}
.how-to-entry_button:hover {
  background: #FFEE56;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .how-to-entry_button {
    padding-top: 15px;
    padding-bottom: 17px;
    padding-left: 40px;
    padding-right: 40px;
    border: 3px solid #4A3636;
    font-size: 20px;
  }
}

.prizes {
  margin-top: 35px;
}
@media (min-width: 768px) {
  .prizes {
    margin-top: 120px;
  }
}

.prizes__inner {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .prizes__inner {
    max-width: 1084px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.prizes__content {
  position: relative;
  z-index: 2;
  padding-top: 22.3px;
  padding-right: 20px;
  padding-bottom: 30px;
  padding-left: 20px;
}
.prizes__content::before, .prizes__content::after {
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #fff;
}
.prizes__content::before {
  top: 0;
  left: 50%;
  width: 238px;
  height: 86px;
  background: url(../img/prizes/deco_prizes1-sp.webp) no-repeat center center/contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.prizes__content::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
  border-radius: 24px;
}
@media (min-width: 768px) {
  .prizes__content {
    max-width: 100%;
    padding-top: 28px;
    padding-left: 56px;
    padding-right: 56px;
    padding-bottom: 56px;
  }
  .prizes__content::before {
    width: 372px;
    height: 149px;
    background: url(../img/prizes/deco_prizes1-pc.webp) no-repeat center center/contain;
  }
  .prizes__content::after {
    height: calc(100% - 148px);
  }
}

.prizes__decoration-triangle-left,
.prizes__decoration-triangle-right {
  position: absolute;
  top: 30px;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
}

.prizes__decoration-triangle-left {
  display: none;
}
@media (min-width: 768px) {
  .prizes__decoration-triangle-left {
    display: block;
    left: 0;
  }
}

.prizes__decoration-triangle-right {
  display: none;
}
@media (min-width: 768px) {
  .prizes__decoration-triangle-right {
    display: block;
    right: 0;
  }
}

.prizes__text {
  margin-top: 22px;
  text-align: center;
}
@media (min-width: 768px) {
  .prizes__text {
    margin-top: 51px;
    font-size: 16px;
  }
}

.prizes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 39px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .prizes__cards {
    gap: 0;
    margin-top: 38px;
  }
}

.prizes__card {
  width: calc(50% - 7.5px);
  position: relative;
}
.prizes__card:hover .prizes__card-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media (min-width: 768px) {
  .prizes__card:nth-of-type(1), .prizes__card:nth-of-type(2) {
    width: calc(50% - 16px);
    margin-top: 50px;
  }
  .prizes__card:nth-of-type(3), .prizes__card:nth-of-type(4), .prizes__card:nth-of-type(5) {
    width: calc(33.3% - 24px);
    margin-top: 80px;
  }
  .prizes__card:nth-of-type(2) {
    margin-left: 32px;
  }
  .prizes__card:nth-of-type(4), .prizes__card:nth-of-type(5) {
    margin-left: 36px;
  }
}

@media (min-width: 768px) {
  .prizes-card--large .prizes__card-heading {
    min-height: 120px;
    font-size: 20px;
  }
  .prizes-card--large .prizes-card__icon::before {
    width: 100px;
    height: 100px;
  }
  .prizes-card--large .prizes-card__icon svg {
    right: 12px;
    bottom: 12px;
    width: 32px;
    height: 32px;
  }
  .prizes-card--large .prizes__card-number {
    top: -50px;
    width: 100px;
  }
}

.prizes__card-number {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  z-index: 2;
}
@media (min-width: 768px) {
  .prizes__card-number {
    top: -40px;
    width: 80px;
  }
}
.prizes__card-number img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.prizes__card-inner {
  position: relative;
  border-radius: 8px;
  background: #f5f5f5;
}
@media (min-width: 768px) {
  .prizes__card-inner {
    border-radius: 24px;
  }
}

.prizes__card-image {
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .prizes__card-image {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
.prizes__card-image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.prizes__card-heading {
  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;
  text-align: center;
  background: #F5F5F5;
  font-weight: 700;
  min-height: 56px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  line-height: 160%;
}
@media (min-width: 768px) {
  .prizes__card-heading {
    min-height: 80px;
    font-size: 16px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .prizes__card-heading .pc-hidden {
    display: none;
  }
}

.prizes-card__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
}
.prizes-card__button:hover {
  border: 4px solid #9ED0E0;
}
.prizes-card__button:hover .prizes-card__icon::before {
  background: #9ED0E0;
}
@media (min-width: 768px) {
  .prizes-card__button {
    border-radius: 24px;
    border-width: 4px;
  }
}

.prizes-card__icon::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  background: #67B0C7;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  border-bottom-right-radius: 8px;
}
.prizes-card__icon svg {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 12px;
  height: 12px;
  z-index: 1;
  border-bottom-right-radius: 8px;
}
@media (min-width: 768px) {
  .prizes-card__icon::before {
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 19px;
  }
  .prizes-card__icon svg {
    right: 8px;
    bottom: 8px;
    width: 21px;
    height: 21px;
    border-bottom-right-radius: 24px;
  }
}

.prizes__cover-background {
  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;
  margin-top: -43px;
  overflow: hidden;
}
.prizes__cover-background img {
  display: block;
  width: 100%;
  min-width: 580px;
}
@media (min-width: 768px) {
  .prizes__cover-background {
    margin-top: -12px;
  }
}

.prizes_top-button {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .prizes_top-button {
    margin-top: 40px;
  }
}

.prizes_button {
  display: inline-block;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #FFF;
  -webkit-box-shadow: 0 4px 0 0 #4A3636;
          box-shadow: 0 4px 0 0 #4A3636;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 22px;
  padding-right: 22px;
}
.prizes_button:hover {
  background: #FFEE56;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .prizes_button {
    padding-top: 15px;
    padding-bottom: 17px;
    padding-left: 40px;
    padding-right: 40px;
    border: 3px solid #4A3636;
    font-size: 20px;
  }
}

.prizes-modal {
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  border: none;
  border-radius: 24px;
  background: #FFF;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 19px;
  padding-top: 0;
  margin: auto;
}
@media (min-width: 768px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
  }
}
.prizes-modal::-ms-backdrop {
  background: #000;
  opacity: 0.7;
}
.prizes-modal::backdrop {
  background: #000;
  opacity: 0.7;
}

.prizes-modal__image {
  width: calc(100% + 40px);
  margin-left: -20px;
}
@media (min-width: 768px) {
  .prizes-modal__image {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}
.prizes-modal__image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.prizes-modal__head {
  font-size: 16px;
  font-weight: 700;
  margin-top: 39px;
}
@media (min-width: 768px) {
  .prizes-modal__head {
    font-size: 20px;
    margin-top: 32px;
  }
}

.prizes-modal__text {
  margin-top: 12px;
  line-height: 160%;
}
.prizes-modal__text .sp-hidden {
  display: none;
}
@media (min-width: 768px) {
  .prizes-modal__text {
    font-size: 16px;
  }
  .prizes-modal__text .pc-block {
    display: block;
  }
}

.prizes-modal__button {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .prizes-modal__button {
    margin-top: 24px;
    padding: 6px 24px 8px 24px;
  }
}

.spots {
  position: relative;
  padding-top: 45px;
  padding-bottom: 45px;
  margin-top: -45px;
}
.spots::before {
  top: 1px;
  background: url(../img/spot/deco_top_wave-sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}
.spots::after {
  bottom: 1px;
  background: url(../img/spot/deco_bottom_wave-sp.svg), linear-gradient(to top, transparent 13px, #67b0c7 13px);
}
.spots::before, .spots::after {
  position: absolute;
  width: 100%;
  height: 45px;
  content: "";
  left: 0;
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
}
@media (min-width: 768px) {
  .spots {
    padding-top: 121px;
    padding-bottom: 121px;
    margin-top: -138px;
  }
  .spots::before {
    background: url(../img/spot/deco_top_wave-pc.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
  .spots::after {
    background: url(../img/spot/deco_bottom_wave-pc.svg), linear-gradient(to top, transparent 33px, #67b0c7 33px);
  }
  .spots::before, .spots::after {
    height: 120px;
    background-position: left center;
  }
}

.spots__decoration-pawpads {
  display: none;
}
@media (min-width: 768px) {
  .spots__decoration-pawpads {
    position: absolute;
    display: block;
    width: 100px;
    height: 220px;
    right: 1376px;
    bottom: 120px;
  }
}

.spots__outer {
  padding-bottom: 0;
  background: #67B0C7;
}

@media (min-width: 768px) {
  .spots__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 26px;
       -moz-column-gap: 26px;
            column-gap: 26px;
    padding-left: 237px;
  }
}

.spots__heading-wrap {
  text-align: center;
}
.spots__heading {
  position: relative;
  display: inline-block;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
  padding-left: 36px;
  color: #fff;
}
.spots__heading::before {
  position: absolute;
  content: "";
  background: url(../img/spot/icon_star.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .spots__heading {
    font-size: 40px;
    margin-top: 81px;
    padding: 0;
  }
  .spots__heading::before {
    width: 39px;
    height: 39px;
    top: -56px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.spots__slider {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .spots__slider {
    min-width: 0;
    margin-top: 0;
  }
}

.spots__swiper-slide {
  height: auto;
  width: 240px;
  margin-right: 16px;
}
@media (min-width: 768px) {
  .spots__swiper-slide {
    margin-right: 32px;
    width: auto;
  }
}

.spots-card {
  padding-bottom: 32px;
  padding-right: 24px;
  padding-left: 24px;
  overflow: hidden;
  height: 100%;
  border-radius: 12px;
  background: #fff;
}
@media (min-width: 768px) {
  .spots-card {
    padding-right: 32px;
    padding-bottom: 40px;
    padding-left: 32px;
    border-radius: 24px;
  }
}

.spots__card-image {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
}
@media (min-width: 768px) {
  .spots__card-image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
.spots__card-image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.spots__card-heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .spots__card-heading {
    margin-top: 25px;
    font-size: 20px;
  }
}

.spots__card-text {
  text-align: left;
  margin-top: 16px;
  line-height: 160%;
}
@media (min-width: 768px) {
  .spots__card-text {
    margin-top: 24px;
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .spots__inner {
    max-width: 1084px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.spots__arrows.hidden-sp {
  display: none;
}
@media (min-width: 768px) {
  .spots__arrows {
    max-width: 944px;
    margin-top: -32px;
    margin-left: auto;
    margin-right: auto;
  }
  .spots__arrows.hidden-sp {
    display: block;
  }
}

.spots__swiper-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.swiper-button-prev .swiper-navigation-icon,
.swiper-button-next .swiper-navigation-icon {
  display: none !important;
}

.spots-swiper-arrows__prev {
  background-image: url(../img/spot/icon-arrows-left.svg);
}

.spots-swiper-arrows__next {
  background-image: url(../img/spot/icon-arrows-right.svg);
}

.spots-swiper-arrows__prev,
.spots-swiper-arrows__next {
  position: static;
  width: 80px;
  height: 80px;
  background-color: #ffee56;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}

.spots__bottom {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .spots__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 80px;
    margin-top: 40px;
  }
}

.spots__decoration-english {
  display: block;
  width: 255px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .spots__decoration-english {
    width: 495px;
    margin: 0;
  }
}
.spots__decoration-english img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.spots__text-wrap {
  margin-top: 0;
}

.spots__text {
  font-size: 11.444px;
  text-align: center;
  color: #fff;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .spots__text {
    font-size: 16px;
    margin-top: 0;
  }
}

.spots__button {
  text-align: center;
  margin-top: 24px;
}

.button-spots {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  height: 40px;
  padding-bottom: 8px;
  padding-top: 6px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #fff;
  -webkit-box-shadow: 0 4px 0 0 #4A3636;
          box-shadow: 0 4px 0 0 #4A3636;
}
.button-spots:hover {
  background: #FFEE56;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .button-spots {
    font-size: 20px;
    height: 56px;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 42px;
    padding-right: 32px;
    border: 3px solid #4A3636;
  }
}

.qa__inner {
  max-width: 640px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .qa__inner {
    max-width: 1084px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.heading--bubble {
  margin-top: 59px;
}
@media (min-width: 768px) {
  .heading--bubble {
    margin-top: 120px;
  }
}

.qa__boxes {
  margin-top: 29px;
  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 (min-width: 768px) {
  .qa__boxes {
    margin-top: 46px;
    gap: 24px;
  }
}

.qa__box {
  border-radius: 12px;
  border: 2px solid #4A3636;
  background: #FFF;
  overflow: hidden;
}
.qa__box.is-open .qa-box__heading-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
@media (min-width: 768px) {
  .qa__box {
    border-radius: 16px;
  }
}

.qa__box-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
}
@media (min-width: 768px) {
  .qa__box-heading {
    gap: 16px;
    padding: 21px 23px;
  }
}

.qa-box__heading-icon {
  color: #9ED0E0;
  font-family: "Josefin Sans", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 125%; /* 30px */
}
@media (min-width: 768px) {
  .qa-box__heading-icon {
    font-size: 32px;
  }
}

.qa-box__heading-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (min-width: 768px) {
  .qa-box__heading-text {
    font-size: 20px;
  }
}

.qa-box__heading-toggle {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  background-color: #9ED0E0;
  border-radius: 50%;
}
.qa-box__heading-toggle::before, .qa-box__heading-toggle::after {
  position: absolute;
  width: 10px;
  height: 2px;
  content: "";
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.qa-box__heading-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 768px) {
  .qa-box__heading-toggle {
    width: 48px;
    height: 48px;
  }
  .qa-box__heading-toggle::before, .qa-box__heading-toggle::after {
    width: 19px;
    height: 3px;
  }
}

.qa-box__body {
  background: #F5F5F5;
  padding-top: 16px;
  padding-left: 14px;
  padding-bottom: 14px;
  padding-right: 14px;
  display: none;
}
@media (min-width: 768px) {
  .qa-box__body {
    padding-top: 26px;
    padding-left: 23px;
    padding-bottom: 24px;
    padding-right: 24px;
  }
}

.qa-box__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.qa-box__answer-icon {
  color: #9ED0E0;
  font-family: "Josefin Sans", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 125%; /* 30px */
}
@media (min-width: 768px) {
  .qa-box__answer-icon {
    font-size: 32px;
  }
}

.qa-box__answer-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.qa-box__answer-text .text-line {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .qa-box__answer-text {
    font-size: 16px;
  }
}

.entry-requirements {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .entry-requirements {
    margin-top: 113px;
  }
}

@media (min-width: 768px) {
  .entry-requirements__inner {
    max-width: 1084px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.entry-requirements__contents {
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 32px;
  border: 8px solid #FFF;
  background: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .entry-requirements__contents {
    padding-top: 32px;
    padding-right: 48px;
    padding-bottom: 44px;
    padding-left: 48px;
  }
}

.entry-requirements__table {
  margin-top: 29px;
}
@media (min-width: 768px) {
  .entry-requirements__table {
    margin-top: 49px;
  }
}

.entry-requirements--table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.entry-requirements__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  padding-bottom: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid #CCC;
  text-align: left;
}
.entry-requirements__row:first-child {
  padding-top: 0;
}
.entry-requirements__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media (min-width: 768px) {
  .entry-requirements__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 13px;
    gap: 12px;
    padding-left: 17px;
  }
}

.entry-requirements__header {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  padding-left: 16px;
}
.entry-requirements__header::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  background-color: #9ED0E0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .entry-requirements__header {
    font-size: 16px;
    width: 188px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.entry-requirements__data {
  line-height: 160%;
}
.entry-requirements__data .link-text {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 1px;
}
.entry-requirements__data ul li {
  position: relative;
  padding-left: 1.5em;
  line-height: 19px;
}
.entry-requirements__data ul li::before {
  position: absolute;
  content: "・";
  top: 0.1em;
  left: 0.2em;
}
@media (min-width: 768px) {
  .entry-requirements__data {
    width: calc(100% - 224px);
    font-size: 16px;
  }
  .entry-requirements__data ul li {
    line-height: 26px;
  }
}

.entry-requirements__cover-background {
  margin-top: 32px;
  display: block;
}
@media (min-width: 768px) {
  .entry-requirements__cover-background {
    margin-top: 120px;
  }
}

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

.contact__inner {
  max-width: 640px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .contact__inner {
    max-width: 908px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.contact__text {
  margin-top: 31px;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__text {
    margin-top: 42px;
    font-size: 16px;
  }
  .contact__text .hidden-pc {
    display: none;
  }
}

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

.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: 24px;
}

@media (min-width: 768px) {
  .form__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form-field__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .form-field__heading {
    width: 180px;
  }
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media (min-width: 768px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field__tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: #CE2073;
  color: #fff;
  font-weight: 700;
  line-height: 160%;
}

.form-field__item {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .form-field__item {
    width: calc(100% - 180px - 40px);
    margin-top: 0;
  }
}

.form-select {
  position: relative;
  width: 100%;
  height: 56px;
  padding: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  border-radius: 8px;
  background-image: url(../img/icon_select-arrow.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 18.65px, center center;
  background-size: 14.9px 8.78px, cover;
  border: 1px solid transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.form-text {
  width: 100%;
  height: 56px;
  padding: 16px;
  background: #F5F5F5;
  border: 1px solid transparent;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .form-text {
    font-size: 16px;
  }
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 768px) {
  .form-field__radios {
    height: 56px;
  }
}

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

.form-radio__text {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  padding-left: 32px;
}
@media (min-width: 768px) {
  .form-radio__text {
    font-size: 16px;
  }
}
.form-radio__text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #F5F5F5;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid transparent;
}
.form-radio__text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  opacity: 0;
}

.form-textarea {
  width: 100%;
  height: 160px;
  padding: 16px;
  border-radius: 8px;
  background: #F5F5F5;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
@media (min-width: 768px) {
  .form-textarea {
    font-size: 16px;
  }
}

.contact__privacy {
  margin-top: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__privacy {
    margin-top: 40px;
  }
}

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

.form-checkbox__text {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  padding-left: 36px;
}
@media (min-width: 768px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #F5F5F5;
  border-radius: 4px;
}
.form-checkbox__text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 5px;
  width: 14px;
  height: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon_checked.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0;
}

.contact__button {
  margin-top: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__button {
    margin-top: 40px;
  }
}

.contact-button {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  height: 40px;
  padding-bottom: 8px;
  padding-top: 6px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #fff;
  -webkit-box-shadow: 0 4px 0 0 #4A3636;
          box-shadow: 0 4px 0 0 #4A3636;
}
.contact-button:hover {
  background: #FFEE56;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .contact-button {
    padding-left: 24px;
    padding-right: 24px;
    width: 240px;
  }
}

.form-field--top-alignment {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer {
  margin-top: 45px;
}
@media (min-width: 768px) {
  .footer {
    margin-top: 120px;
  }
}

@media (min-width: 768px) {
  .footer__inner {
    position: relative;
    max-width: 1084px;
    padding-left: 30px;
    padding-right: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer__decoration-pawpads.hidden-sp {
  display: none;
}
@media (min-width: 768px) {
  .footer__decoration-pawpads {
    position: absolute;
    width: 100px;
    right: auto;
    left: calc(50% + 576px);
    top: -40px;
  }
  .footer__decoration-pawpads.hidden-sp {
    display: block;
  }
}
@media (min-width: 900px) {
  .footer__decoration-pawpads {
    right: 0;
    width: 70px;
  }
}

.footer__sns-links {
  text-align: center;
}

.sns-links__title {
  font-family: "Josefin Sans", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}
@media (min-width: 768px) {
  .sns-links__title {
    font-size: 24px;
  }
}

.sns-links__nav {
  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;
  gap: 40px;
  margin-top: 24px;
}

.sns-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.sns-button img {
  width: 100%;
}
.sns-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .sns-button {
    width: 40px;
    height: 40px;
  }
}

.footer__decoration-english {
  display: block;
  max-width: 328px;
  margin-top: 13px;
  margin-right: auto;
  margin-left: auto;
}
.footer__decoration-english img {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__decoration-english {
    max-width: 755px;
    margin-top: 41px;
  }
}

.footer__address-wrap {
  margin-top: -3px;
}

.address-wrap {
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .address-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.address__wrap-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
}
@media (min-width: 768px) {
  .address__wrap-map {
    width: 50%;
  }
}

.address__wrap-body {
  padding-top: 22px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .address__wrap-body {
    padding: 10px;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

.address__wrap-logo {
  width: 153px;
  margin-left: auto;
  margin-right: auto;
}
.address__wrap-logo img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .address__wrap-logo {
    display: inline-block;
    width: 183px;
    margin: 0;
  }
}

.address-wrap__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: 8px;
  margin-top: 29px;
}
@media (min-width: 768px) {
  .address-wrap__info {
    gap: 12px;
    margin-top: 24px;
  }
}

.address-wrap__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .address-wrap__info-row {
    gap: 40px;
  }
}

.address-wrap__info-term {
  position: relative;
  min-width: 64px;
  padding-left: 16px;
  font-weight: 700;
  line-height: 160%;
}
.address-wrap__info-term::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ED0E0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .address-wrap__info-term {
    font-size: 16px;
    font-weight: 700;
  }
}

.address-wrap__info-description {
  font-style: normal;
}
@media (min-width: 768px) {
  .address-wrap__info-description {
    font-size: 16px;
    line-height: 160%;
  }
}

.footer__pagetop {
  margin-top: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__pagetop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 10;
  }
}

.pagetop {
  width: 80px;
}
.pagetop img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .pagetop {
    width: 100px;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}

.footer__bottom {
  position: relative;
  margin-top: 19px;
  padding-top: 45.7px;
}
.footer__bottom::before {
  position: absolute;
  width: 100%;
  height: 45.7px;
  content: "";
  top: 1px;
  left: 0;
  background-image: url(../img/spot/deco_top_wave-sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
  background-repeat: repeat-x;
  background-position: left -6px center;
  background-size: contain;
}
@media (min-width: 768px) {
  .footer__bottom {
    margin-top: 100px;
    padding-top: 122px;
  }
  .footer__bottom::before {
    height: 122px;
    background-image: url(../img/spot/deco_top_wave-pc.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
}

.footer__copylight {
  display: block;
  color: #FFF;
  font-size: 10px;
  font-weight: 400;
  line-height: 160%;
  background-color: #67B0C7;
  padding-bottom: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copylight {
    font-size: 14px;
    padding-bottom: 32px;
  }
}