@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", serif;
  color: #4a3636;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  background: var(--LP-Light-Blue, #e9f6f8);
}
@media screen and (min-width: 768px) {
  body {
    color: #4a3636;
  }
}

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

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}
.header {
  background: #fff;
  position: relative;
  z-index: 120;
}

.heading-ja {
  display: inline-block; /* 文字の長さだけの箱にする */
  white-space: nowrap;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25; /* 40px */
  padding-bottom: 6px;
  border-bottom: 6px solid var(--LP-Yellow, #ffee56);
}
@media screen and (min-width: 768px) {
  .heading-ja.qa__heading-ja {
    font-size: 32px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 19px 20px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0px 24px;
    max-width: 1512px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__logo {
  z-index: 120;
}
@media screen and (min-width: 768px) {
  .header__logo {
    padding-block: 20px;
  }
}
.header__logo a img {
  width: 210px;
  display: block;
}
@media screen and (min-width: 600px) {
  .header__logo a img {
    width: 153px;
  }
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 183px;
  }
}

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

.header__link {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link:hover {
  color: var(--LP-Dark-Blue, #67b0c7);
  text-decoration-line: underline;
}
@media screen and (min-width: 600px) {
  .header__link {
    font-size: 11px;
  }
}
@media screen and (min-width: 900px) {
  .header__link {
    padding-block: 22.5px;
    font-size: 12px;
  }
}

.button {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  padding: 4px 22px 6px 22px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: var(--LP-White, #fff);
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
}
.button.header__button {
  margin-left: 5px;
}
.button:hover {
  background: var(--LP-Yellow, #ffee56);
}

.about-top__button {
  margin-inline: auto;
  text-align: center;
}

.about-button {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6; /* 25.6px */
}
@media screen and (min-width: 768px) {
  .about-button {
    margin-top: 33px;
    padding: 7px 37px 9px 37px;
    font-size: 20px;
    height: 56px;
    border: 3px solid var(--LP-Blown, #4a3636);
  }
}

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

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

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

.drawer-content {
  top: 64px;
  left: 0;
  position: fixed;
  padding: 82px 30px;
  width: 375px;
  height: 707px;
  background: #fff;
  z-index: 50;
  -webkit-transform: translateY(-130%);
          transform: translateY(-130%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(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;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fv {
  position: relative;
  background-color: #e9f6f8;
  z-index: 5;
}

.fv__bg {
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 768px) {
  .fv__bg img {
    min-height: 740px;
    -o-object-fit: cover;
       object-fit: cover; /* 縦横比を維持しつつ、コンテナ全体にフィット */
    -o-object-position: center;
       object-position: center; /* 画像の中央を表示 */
    border-radius: 0px 0px 40px 40px;
  }
}

.fv__inner {
  position: absolute;
  top: 17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .fv__inner {
    top: 34px;
  }
}

.fv__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25; /* 17.5px */
  font-family: "Kiwi Maru";
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .fv__description {
    text-shadow: 0px 0px 30px #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25; /* 30px */
  }
}

.fv__lead {
  margin-top: 20px;
  margin-inline: auto;
  width: 335px;
}
@media screen and (min-width: 768px) {
  .fv__lead {
    width: 520px;
    margin-top: 24px;
  }
}

.fv__decoration {
  position: absolute;
  top: 288px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .fv__decoration {
    top: 310px;
  }
}

.decoration_sp {
  position: relative;
}

.decoration_sp-img {
  display: block;
  width: 200px;
}
@media screen and (min-width: 768px) {
  .decoration_sp-img {
    width: 250px;
  }
}

.decoration_en-message {
  position: absolute;
  left: -68px;
  top: -96px;
}
@media screen and (min-width: 768px) {
  .decoration_en-message {
    top: -33px;
    left: -262px;
  }
}
.decoration_en-message img {
  width: 142px;
}
@media screen and (min-width: 768px) {
  .decoration_en-message img {
    width: 244px;
  }
}

.decoration__present-message {
  position: absolute;
  top: -103px;
  right: -42px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .decoration__present-message {
    top: -16px;
    right: -172px;
  }
}
.decoration__present-message img {
  width: 110px;
}
@media screen and (min-width: 768px) {
  .decoration__present-message img {
    width: 180px;
  }
}

.decoration__food {
  position: absolute;
  left: -68px;
  bottom: -11px;
}
@media screen and (min-width: 768px) {
  .decoration__food {
    left: -299px;
    bottom: -17px;
  }
}
.decoration__food img {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .decoration__food img {
    width: 212px;
  }
}

.decoration__cats {
  position: absolute;
  right: -67px;
  bottom: -11px;
}
@media screen and (min-width: 768px) {
  .decoration__cats {
    right: -299px;
    bottom: -60px;
  }
}
.decoration__cats img {
  width: 107px;
}
@media screen and (min-width: 768px) {
  .decoration__cats img {
    width: 233px;
  }
}

.about {
  position: relative;
  background-color: #e9f6f8;
  z-index: -1;
  overflow: hidden;
  height: 1173px;
}
@media screen and (min-width: 768px) {
  .about {
    height: 1464px;
  }
}

.about__inner {
  position: absolute;
  top: 188px;
  width: 335px;
  height: 708px;
  background-color: #fff;
  border-radius: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .about__inner {
    top: 177px;
    min-width: 700px;
    min-height: 829px;
    border-radius: 40px;
    padding: 40px 114px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    top: 177px;
    min-width: 848px;
    min-height: 829px;
    border-radius: 40px;
    padding: 40px 114px;
    border-radius: 40px;
  }
}

.about__decoration-striped-pattern {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .about__decoration-striped-pattern {
    top: 157px;
    left: -21px;
    border-radius: 24px;
  }
}
@media screen and (min-width: 768px) {
  .about__decoration-striped-pattern img {
    width: 250px;
  }
}

.about__decoration-picture-left {
  position: absolute;
  top: 583px;
  left: -140px;
}
.about__decoration-picture-left img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .about__decoration-picture-left {
    top: 251px;
    left: -338px;
  }
}
@media screen and (min-width: 768px) {
  .about__decoration-picture-left img {
    width: 480px;
  }
}

.about__decoration-staircase {
  position: absolute;
  top: 896px;
  left: 0px;
}
.about__decoration-staircase img {
  width: 139px;
}
@media screen and (min-width: 768px) {
  .about__decoration-staircase {
    top: 498px;
    left: -103px;
  }
  .about__decoration-staircase img {
    width: 427px;
  }
}

.about__decoration-pawpads {
  position: absolute;
  top: 178px;
  right: 0;
}
.about__decoration-pawpads img {
  width: 54px;
}
@media screen and (min-width: 768px) {
  .about__decoration-pawpads {
    top: 97px;
    right: 165px;
  }
  .about__decoration-pawpads img {
    width: 100px;
  }
}

.about__decoration-picture-right {
  position: absolute;
  top: 461px;
  right: -140px;
}
.about__decoration-picture-right img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .about__decoration-picture-right {
    top: 250px;
    right: -284px;
  }
  .about__decoration-picture-right img {
    width: 480px;
  }
}

.about__decoration-wave {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .about__decoration-wave {
    top: 784px;
    right: -566px;
  }
}
@media screen and (min-width: 768px) {
  .about__decoration-wave img {
    width: 873px;
  }
}

.about__decoration-goods1 {
  position: absolute;
  top: 908px;
  right: 21px;
}
.about__decoration-goods1 img {
  width: 48px;
}
@media screen and (min-width: 768px) {
  .about__decoration-goods1 {
    top: 778px;
    right: 150px;
  }
  .about__decoration-goods1 img {
    width: 101px;
  }
}

.about__decoration-goods2 {
  position: absolute;
  top: 950px;
  right: 57px;
}
.about__decoration-goods2 img {
  width: 133px;
}
@media screen and (min-width: 768px) {
  .about__decoration-goods2 {
    top: 934px;
    right: 74px;
  }
  .about__decoration-goods2 img {
    width: 308px;
  }
}

.about-top__image-left {
  position: absolute;
  top: 31px;
  left: 33px;
}
@media screen and (min-width: 768px) {
  .about-top__image-left {
    top: 36px;
    left: 85px;
  }
}
.about-top__image-left img {
  width: 87px;
}
@media screen and (min-width: 768px) {
  .about-top__image-left img {
    width: 150px;
  }
}

.about-top__image-center {
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
}
.about-top__image-center img {
  width: 37px;
}
@media screen and (min-width: 768px) {
  .about-top__image-center img {
    width: 48px;
  }
}

.about-top__image-right {
  position: absolute;
  top: 30px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .about-top__image-right {
    top: 45px;
    right: 84px;
  }
}
.about-top__image-right img {
  width: 87px;
}
@media screen and (min-width: 768px) {
  .about-top__image-right img {
    width: 150px;
  }
}

.heading__english,
.heading__japanese {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.heading__english {
  top: 83px;
  font-family: "Courgette", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25; /* 20px */
}
@media screen and (min-width: 768px) {
  .heading__english {
    top: 96px;
    font-size: 20px;
  }
}

.heading__japanese {
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25; /* 25px */
  top: 108px;
  white-space: nowrap;
  padding-bottom: 6px;
  border-bottom: 6px solid var(--LP-Yellow, #ffee56);
}
@media screen and (min-width: 768px) {
  .heading__japanese {
    top: 129px;
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid var(--LP-Yellow, #ffee56);
  }
}

.about-top__sub-heading {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 170px;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 768px) {
  .about-top__sub-heading {
    top: 217px;
    font-size: 16px;
  }
}

.about-top__text-wrap {
  margin-top: 238px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.about-top__text-wrap .font-weight-bold {
  font-weight: 700;
}
.about-top__text-wrap .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;
}
@media screen and (min-width: 768px) {
  .about-top__text-wrap {
    font-size: 16px;
    margin-top: 235px;
  }
}

.about-top__text:nth-of-type(n + 2) {
  margin-top: 18.5px;
}
@media screen and (min-width: 768px) {
  .about-top__text:nth-of-type(n + 2) {
    margin-top: 26.5px;
  }
}

.about-top__emphasis-text {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  border-bottom: 2px dashed var(--LP-Blue, #9ed0e0);
  display: inline-block; /* 文字の幅だけにする */
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .about-top__emphasis-text {
    margin-top: 46px;
    font-size: 20px;
    padding-bottom: 10px;
  }
}

.how-entry {
  margin-top: 24px;
  margin-inline: auto;
  text-align: center;
}

.about__decoration-english {
  position: absolute;
  top: 1036px;
  left: 2.6666666667%;
}
.about__decoration-english img {
  width: 354.642px;
}
@media screen and (min-width: 768px) {
  .about__decoration-english {
    top: 1173px;
    left: 20.3703703704%;
  }
}
@media screen and (min-width: 768px) {
  .about__decoration-english img {
    width: 890.604px;
  }
}

.swiper-container {
  position: absolute;
  top: 1073px;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .swiper-container {
    top: 1264px;
  }
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  gap: 10px;
}
.swiper-slide img {
  width: 100px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .swiper-slide img {
    width: 200px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.swiper-wrapper {
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}

.how-to-entry {
  background-color: #e9f6f8;
  overflow: hidden;
}

.how-to-entry__inner {
  position: relative;
}

.how-to-entry__decoration-map {
  position: absolute;
  top: 65px;
  left: 0;
}
.how-to-entry__decoration-map img {
  width: 149px;
}
@media screen and (min-width: 600px) {
  .how-to-entry__decoration-map img {
    width: 330px;
  }
}
@media screen and (min-width: 768px) {
  .how-to-entry__decoration-map img {
    width: 410px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-map {
    top: 60px;
    left: 36px;
  }
  .how-to-entry__decoration-map img {
    width: 460px;
  }
}

.how-to-entry__decoration-pawpads {
  position: absolute;
  top: 614px;
  left: 20px;
}
.how-to-entry__decoration-pawpads img {
  width: 55px;
}
@media screen and (min-width: 768px) {
  .how-to-entry__decoration-pawpads {
    top: 700px;
    left: 36px;
  }
  .how-to-entry__decoration-pawpads img {
    width: 100px;
  }
}

.how-to-entry__cat {
  position: absolute;
  top: 65px;
  right: 24px;
}
.how-to-entry__cat img {
  width: 105px;
}
@media screen and (min-width: 600px) {
  .how-to-entry__cat img {
    width: 150px;
  }
}
@media screen and (min-width: 768px) {
  .how-to-entry__cat img {
    width: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__cat {
    top: 94px;
    right: 231px;
  }
  .how-to-entry__cat img {
    width: 238px;
  }
}

.how-to-entry__cat2 {
  position: absolute;
  top: 70px;
  right: -32px;
}
.how-to-entry__cat2 img {
  width: 94px;
}
@media screen and (min-width: 600px) {
  .how-to-entry__cat2 img {
    width: 150px;
  }
}
@media screen and (min-width: 600px) {
  .how-to-entry__cat2 img {
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__cat2 {
    top: 104px;
    right: 105px;
  }
  .how-to-entry__cat2 img {
    width: 214px;
  }
}

.decoration-cats-pawpads {
  position: absolute;
  top: 138px;
  right: 20px;
}
.decoration-cats-pawpads img {
  width: 55px;
}
@media screen and (min-width: 768px) {
  .decoration-cats-pawpads {
    top: 268px;
    right: 36px;
  }
  .decoration-cats-pawpads img {
    width: 100px;
  }
}

.decoration-cats-pawpads-3 {
  position: absolute;
  top: 944px;
  right: 20px;
}
.decoration-cats-pawpads-3 img {
  width: 55px;
}
@media screen and (min-width: 768px) {
  .decoration-cats-pawpads-3 {
    display: none;
  }
}

.decoration-step-line {
  position: absolute;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .decoration-step-line {
    top: 505px;
    left: 33.0026455026%;
  }
  .decoration-step-line img {
    width: 113px;
  }
}

.decoration-step-line-2 {
  position: absolute;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .decoration-step-line-2 {
    top: 505px;
    right: 539px;
  }
  .decoration-step-line-2 img {
    width: 113px;
  }
}

.heading--camera {
  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; /* 横方向の中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向の中央揃え */
  gap: 6px;
  padding-top: 64px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .heading--camera {
    padding-top: 120px;
  }
}

.heading--camera-img img {
  width: 37.333px;
}
@media screen and (min-width: 768px) {
  .heading--camera-img img {
    width: 48px;
  }
}

.heading--camera__english {
  font-family: "Courgette", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25; /* 20px */
}
@media screen and (min-width: 768px) {
  .heading--camera__english {
    font-size: 20px;
  }
}

.heading--camera__japanese {
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 25px */
  padding-bottom: 6px;
  border-bottom: 6px solid var(--LP-Yellow, #ffee56);
}
@media screen and (min-width: 768px) {
  .heading--camera__japanese {
    -webkit-font-feature-settings: "pwid" on;
            font-feature-settings: "pwid" on;
    font-family: "Kiwi Maru";
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25; /* 40px */
    padding-bottom: 8px;
    border-bottom: 8px solid var(--LP-Yellow, #ffee56);
    display: inline-block; /* 文字の幅だけにする */
  }
}

.how-to-entry__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向の上揃え */
  margin-top: 32px;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .how-to-entry__steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /* 横方向の中央揃え */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; /* 縦方向の上揃え */
    gap: 15px;
    margin-top: 42px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /* 横方向の中央揃え */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; /* 縦方向の上揃え */
    gap: 33px;
    margin-top: 42px;
  }
}

.how-to-entry__step {
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .how-to-entry__step {
    margin-inline: 0;
  }
}

.step-box__image {
  margin-inline: 20px;
  position: relative; /* 親要素に相対配置を指定 */
}
.step-box__image img {
  width: 196px;
}
@media screen and (min-width: 768px) {
  .step-box__image img {
    width: 200px;
  }
}
.step-box__image.second::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7.47px;
  height: 34px;
  background-image: url(../img/sp/how-to-step_line-sp.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .step-box__image.second::before {
    display: none;
  }
}
.step-box__image.third::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7.47px;
  height: 34px;
  background-image: url(../img/sp/how-to-step_line-sp.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .step-box__image.third::before {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .step-box__image.first::after {
    content: "";
    position: absolute;
    top: 145px;
    left: 160px;
    width: 113px;
    height: 24px;
    background-image: url(../img/how-to-step_line.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__image.first::after {
    content: "";
    position: absolute;
    top: 204px;
    left: 235px;
    width: 113px;
    height: 24px;
    background-image: url(../img/how-to-step_line.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .step-box__image.second {
    margin-top: 69px;
  }
  .step-box__image.second::after {
    content: "";
    position: absolute;
    top: 85px;
    left: 185px;
    width: 113px;
    height: 24px;
    background-image: url(../img/how-to-step_line.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__image.second {
    margin-top: 69px;
  }
  .step-box__image.second::after {
    content: "";
    position: absolute;
    top: 136px;
    left: 244px;
    width: 113px;
    height: 24px;
    background-image: url(../img/how-to-step_line.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .step-box__image img {
    width: 280px;
  }
}

.step-box__heading {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6; /* 32px */
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
}
@media screen and (min-width: 768px) {
  .step-box__heading {
    font-size: 20px;
    margin-top: 25px;
  }
}

.step-box__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6; /* 25.6px */
  margin-top: 16px;
}
.step-box__text .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;
}
@media screen and (min-width: 768px) {
  .step-box__text {
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__text {
    font-size: 16px;
  }
}

.bold {
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
}

.step-box__follow-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 12px;
  margin-top: 16px;
  background: var(--LP-White, #fff);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.step-box__follow-button img {
  width: 19px;
}
@media screen and (min-width: 768px) {
  .step-box__follow-button {
    padding: 8px 12px;
  }
  .step-box__follow-button img {
    width: 24px;
  }
}

.follow-button {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-weight: 700;
  line-height: 1.6; /* 25.6px */
  margin-left: 8px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .follow-button {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .follow-button {
    font-size: 16px;
  }
}

.how-to-entry__button {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 3px;
}
.how-to-entry__button .button {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .how-to-entry__button {
    margin-top: 48px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 4px;
  }
  .how-to-entry__button .button {
    font-size: 20px;
    padding: 8px 38px 10px 38px;
    border: 3px solid var(--LP-Blown, #4a3636);
  }
}

.prizes {
  margin-top: -4px;
  background-color: #e9f6f8;
  padding-top: 2px;
}
@media screen and (min-width: 768px) {
  .prizes {
    margin-top: 0;
  }
}

.prizes__contents {
  position: relative;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .prizes__contents {
    padding-bottom: 268px;
  }
}

.prizes__decoration-triangle-left {
  position: absolute;
  display: none;
}
@media screen and (min-width: 768px) {
  .prizes__decoration-triangle-left {
    display: block;
    top: 148px;
    left: 244px;
  }
  .prizes__decoration-triangle-left img {
    width: 315px;
  }
}

.prizes__decoration-triangle-right {
  position: absolute;
  display: none;
}
@media screen and (min-width: 768px) {
  .prizes__decoration-triangle-right {
    display: block;
    top: 148px;
    right: 244px;
  }
  .prizes__decoration-triangle-right img {
    width: 315px;
  }
}

.heading-prizes {
  position: absolute;
  top: 36.67px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .heading-prizes {
    top: 120px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
  }
}

.heading-prizes__icon-img {
  position: relative;
}
.heading-prizes__icon-img img {
  max-width: none;
  width: 237.6px;
}
@media screen and (min-width: 768px) {
  .heading-prizes__icon-img img {
    width: 365px;
  }
}

.heading-prizes-present-icon {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.heading-prizes-present-icon img {
  width: 37.333px;
}
@media screen and (min-width: 768px) {
  .heading-prizes-present-icon {
    top: 28px;
  }
  .heading-prizes-present-icon img {
    width: 48px;
  }
}

.heading-prizes__english {
  position: absolute;
  top: 63.33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25; /* 20px */
}
@media screen and (min-width: 768px) {
  .heading-prizes__english {
    top: 84px;
    font-family: Courgette;
    font-size: 20px;
  }
}

.heading-prizes-japanese {
  position: absolute;
  top: 89px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25; /* 40px */
  padding-bottom: 6px;
  border-bottom: 6px solid var(--LP-Yellow, #ffee56);
}
@media screen and (min-width: 768px) {
  .heading-prizes-japanese {
    top: 117px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-font-feature-settings: "pwid" on;
            font-feature-settings: "pwid" on;
    /* JP/Kiwi Maru 32px Medium */
    font-family: "Kiwi Maru";
    font-size: 32px;
    white-space: nowrap;
    border-bottom: 8px solid var(--LP-Yellow, #ffee56);
    padding-bottom: 8px;
  }
}

.prize-box {
  margin-inline: auto;
  max-width: 1024px;
  background-color: #fff;
  border-radius: 24px;
  padding-top: 58px;
  padding-inline: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prize-box {
    padding-top: 64px;
    padding-inline: 56px;
  }
}

.prizes__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6; /* 25.6px */
}
@media screen and (min-width: 768px) {
  .prizes__text {
    text-align: center;
    font-size: 16px;
  }
}

/* PC版 */
.grid-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .grid-container {
    gap: 10px;
    margin-top: 35px;
  }
}

@media screen and (min-width: 768px) {
  .js-modal-open:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    outline: 3px solid #9ed0e0; /* 青色の枠をつける */
  }
}

/* 1行目（2枚） */
.row1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .row1 {
    gap: 32px;
  }
}

/* 2行目（3枚） */
.row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.row2 .prize5-sp {
  grid-column: 1/-1;
  width: calc(50% - 5px);
  justify-self: center;
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .row2 .prize5-sp {
    display: none;
  }
}
.row2 .prize5-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .row2 .prize5-pc {
    display: grid;
    grid-column: auto;
    width: 100%;
    justify-self: center;
    /* 必要に応じて追加 */
  }
  .row2 .prize5-pc:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    border: 3px solid #9ed0e0; /* 青色の枠をつける */
  }
}
@media screen and (min-width: 768px) {
  .row2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 30px;
  }
}

.prizes__button {
  margin-inline: auto;
  text-align: center;
}
.prizes__button .about-button {
  margin-top: 18px;
  margin-bottom: 34.67px;
}
@media screen and (min-width: 768px) {
  .prizes__button .about-button {
    margin-top: 40px;
    margin-bottom: 53px;
  }
}

/* SP版 */
/* 1行目（2枚） */
/* 2行目（2列＋1列） */
/* 最後の画像だけ1列目から3列目まで広げる */
.prizes__cover-background {
  /* 親要素に対してoverflowをhiddenに設定 */
  overflow: hidden;
  width: 100%; /* 親要素の幅を100%に設定 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* フレックスボックスを使用して中央寄せ */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 中央寄せ */
}
.prizes__cover-background img {
  width: 154%;
  max-width: none; /* 最大幅を制限しない */
  height: auto; /* 高さは自動調整 */
  -o-object-fit: cover;
     object-fit: cover; /* 画像の中央を表示し、アスペクト比を保つ */
  margin-top: -42px;
}
@media screen and (min-width: 768px) {
  .prizes__cover-background img {
    width: 100%;
    margin-top: -5px;
  }
}

.spots-container {
  background: var(--LP-Dark-Blue, #67b0c7);
}
@media screen and (min-width: 768px) {
  .spots-container {
    margin-block: -1px;
  }
}

@media screen and (min-width: 768px) {
  .spots__pc {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 37px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; /* アイテムを上揃えにする */
  }
}

.spots-left {
  display: none;
}
@media screen and (min-width: 768px) {
  .spots-left {
    display: block;
    position: absolute;
    top: 492px;
    left: 284px;
  }
  .spots-left:hover {
    cursor: pointer;
  }
  .spots-left:hover img {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
    -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;
  }
  .spots-left img {
    width: 80px;
    -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;
  }
}

.spots-right {
  display: none;
}
@media screen and (min-width: 768px) {
  .spots-right {
    display: block;
    position: absolute;
    top: 492px;
    right: 130px;
  }
  .spots-right:hover {
    cursor: pointer;
  }
  .spots-right:hover img {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
    -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;
  }
  .spots-right img {
    width: 80px;
    -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 screen and (min-width: 1200px) {
  .spots-right {
    display: block;
    position: absolute;
    top: 492px;
    right: 284px;
  }
  .spots-right:hover {
    cursor: pointer;
  }
  .spots-right:hover img {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
    -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;
  }
  .spots-right img {
    width: 80px;
    -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;
  }
}

.spots-pawpads {
  display: none;
}
@media screen and (min-width: 768px) {
  .spots-pawpads {
    display: block;
    position: absolute;
    top: 496px;
    right: 1376px;
  }
  .spots-pawpads img {
    width: 100px;
  }
}

.spots__heading-wrap {
  text-align: center;
}

.spots__heading {
  position: relative;
  display: inline-block;
  margin-left: 36px;
  color: var(--LP-White, #fff);
  text-align: center;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25; /* 35px */
}
@media screen and (min-width: 768px) {
  .spots__heading {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl; /* 縦書き（右から左） */
    margin-left: 246px;
    margin-top: 76px;
    font-size: 40px;
    letter-spacing: 11px;
  }
}
.spots__heading::before {
  position: absolute;
  top: 50%;
  left: -36px;
  width: 28px;
  height: 28px;
  content: "";
  background-color: transparent;
  background-image: url(../img/icon_star.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .spots__heading::before {
    width: 56px;
    height: 56px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    top: -70px;
    left: -4px;
  }
}

.spots {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* フレックスボックスを使用 */
  overflow-x: auto; /* 横スクロールを有効にする */
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; /* スクロールスナップを有効にする */
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .spots {
    margin-top: 0;
  }
}

.spot {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; /* 幅を自動に設定 */
  width: 240px;
  margin-right: 20px; /* スポット間のマージン */
  background-color: white;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start; /* スクロールスナップの位置を設定 */
}
@media screen and (min-width: 768px) {
  .spot {
    width: 344px;
    margin-right: 32px;
    border-radius: 24px;
  }
}
.spot h3 {
  margin-top: 16px;
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6; /* 25.6px */
}
@media screen and (min-width: 768px) {
  .spot h3 {
    font-size: 20px;
    margin-top: 26px;
  }
}
.spot p {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6; /* 25.6px */
  padding-inline: 24px;
  height: 164px;
}
@media screen and (min-width: 768px) {
  .spot p {
    font-size: 16px;
    margin-top: 24px;
    height: 222px;
    padding-inline: 32px;
  }
}
.spot img {
  width: 100%; /* 画像の幅を100%に設定 */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 768px) {
  .spot img {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    height: 244px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.spots__bottom {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spots__bottom {
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /* 横方向の中央寄せ */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; /* 上寄せ（上揃え） */
    gap: 81px; /* 要素間の間隔（オプション） */
  }
}

.spots__decoration-english img {
  width: 254.439px;
}
@media screen and (min-width: 768px) {
  .spots__decoration-english img {
    width: 495px;
  }
}

.spots__text {
  margin-top: 16px;
  color: var(--LP-White, #fff);
  font-size: 11.444px;
  font-weight: 400;
  line-height: 1.6; /* 18.311px */
}
@media screen and (min-width: 768px) {
  .spots__text {
    font-size: 16px;
    margin-top: 0;
  }
}

.spots__button .button {
  margin-top: 24px;
  margin-bottom: 19.84px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6; /* 25.6px */
}
@media screen and (min-width: 768px) {
  .spots__button .button {
    font-size: 20px;
    padding: 7px 37px 9px 37px;
    margin-left: 11px;
    margin-bottom: 11px;
  }
}

.spots__wave img {
  width: 100%;
}

.qa {
  background: var(--LP-Light-Blue, #e9f6f8);
}

.qa__heading {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* ← これで中央寄せ */
}
@media screen and (min-width: 768px) {
  .qa__heading {
    margin-top: 120px;
  }
}
.qa__heading img {
  width: 37.333px;
}
@media screen and (min-width: 768px) {
  .qa__heading img {
    width: 48px;
  }
}

.qa__heading-en {
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25; /* 25px */
}
@media screen and (min-width: 768px) {
  .qa__heading-en {
    font-size: 20px;
  }
}

.qa__heading-ja {
  display: inline-block; /* 文字の長さだけの箱にする */
}

.qa__boxes {
  margin-top: 24px;
  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;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 40px;
    padding-inline: 16.1375661376%;
    gap: 22px;
  }
}

.qa__box {
  border-radius: 12px;
  border: 2px solid var(--LP-Blown, #4a3636);
  overflow: hidden;
}
.qa__box.is-open .qa-box__head::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 14px;
  width: 26.182px;
  height: 26.182px;
  background: url(../img/qa-minus.png) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .qa__box.is-open .qa-box__head::after {
    width: 48px;
    height: 48px;
    top: 22px;
    right: 22.5px;
  }
}

.qa-box__head {
  background: #fff;
  padding: 10px 50px 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    gap: 16px;
    padding: 22px 50px 20px 22px;
    width: 100%;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 14px;
  width: 26.182px;
  height: 26.182px;
  background: url(../img/qa-plus.png) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .qa-box__head::after {
    width: 48px;
    height: 48px;
    top: 22px;
    right: 22.5px;
  }
}

.qa-box__head-icon {
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25; /* 30px */
  color: var(--LP-Blue, #9ed0e0);
  padding-top: 7px;
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    font-size: 32px;
  }
}

.qa-box__head-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6; /* 22.4px */
  text-align: left;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 20px;
    margin-top: 6px;
  }
}

.qa-box__body {
  padding: 16px 14px 12px 14px;
  background: var(--LP-Gray, #f5f5f5);
  border-radius: 0 0 12px 12px; /* ← 下側にも丸みを適用 */
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-box__body {
    padding: 24px 22px 22px 22px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.qa-box__a-icon {
  color: var(--LP-Blue, #9ed0e0);
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25; /* 30px */
  padding-top: 7px;
}
@media screen and (min-width: 768px) {
  .qa-box__a-icon {
    font-size: 32px;
  }
}

.qa-box__a-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6; /* 22.4px */
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    font-size: 16px;
    margin-top: 8px;
  }
}

.entry-requirements {
  background: var(--LP-Light-Blue, #e9f6f8);
}

.entry-inner {
  padding-inline: 20px;
  padding-top: 30.67px;
  padding-bottom: 32px;
}
@media screen and (min-width: 600px) {
  .entry-inner {
    padding-inline: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-inner {
    padding-block: 7.9365079365%;
    padding-inline: 16.1375661376%;
  }
}

.entry-requirements__contents {
  padding: 16px 13.5px;
  padding-bottom: 1px;
  border: 8px solid var(--LP-White, #fff);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .entry-requirements__contents {
    padding: 32px 48px;
  }
}

.requirements--note {
  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: 6px;
}
@media screen and (min-width: 768px) {
  .requirements--note {
    gap: 10px;
  }
}
.requirements--note img {
  width: 37.333px;
}
@media screen and (min-width: 768px) {
  .requirements--note img {
    width: 48px;
  }
}

@media screen and (min-width: 768px) {
  .requirements-heading-ja {
    font-size: 32px;
  }
}

.entry-requirements-table {
  margin-top: 22px;
  table-layout: fixed;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .entry-requirements-table {
    margin-top: 32px;
  }
}

.entry-requirements-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 左寄せにする */
  padding-bottom: 12px;
  gap: 7px;
  padding-bottom: 11px;
}
@media screen and (min-width: 768px) {
  .entry-requirements-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    padding-block: 11.5px;
    border-bottom: 1px solid var(--LP-Dark-Gray, #ccc);
  }
  .entry-requirements-table__row:last-child {
    border-bottom: none;
  }
}

.entry-requirements-table__header {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6; /* 22.4px */
  padding-left: 16px;
}
@media screen and (min-width: 768px) {
  .entry-requirements-table__header {
    width: 238px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-align: left;
    font-size: 16px;
    padding-left: 31px;
  }
}
.entry-requirements-table__header::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .entry-requirements-table__header::before {
    left: 16px;
  }
}

.entry-requirements-table__date {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6; /* 22.4px */
  padding-bottom: 16px;
  border-bottom: 1px solid var(--LP-Dark-Gray, #ccc);
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .entry-requirements-table__date {
    font-size: 16px;
    border: none;
    padding-bottom: 0px;
  }
}
.entry-requirements-table__date.last-td {
  border-bottom: none;
}
.entry-requirements-table__date li {
  position: relative;
  padding-left: 18px;
}
@media screen and (min-width: 768px) {
  .entry-requirements-table__date li {
    padding-left: 24px;
    margin-bottom: 1.5px;
  }
}
.entry-requirements-table__date li:not(:first-child) {
  margin-top: -0.5px;
}
.entry-requirements-table__date li::before {
  position: absolute;
  content: "・";
  left: 3px;
  top: 2px;
}

.entry-requirements__cover-bg img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .entry-requirements__cover-bg img {
    width: 100%;
  }
}

.contact {
  background: #fff;
}

.contact__inner {
  padding-block: 40px;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .contact__inner {
    padding-inline: 110px;
  }
}
@media screen and (min-width: 900px) {
  .contact__inner {
    padding-block: 120px;
    padding-inline: 21.9576719577%;
  }
}

.contact__heading-mail {
  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: 6px;
}
@media screen and (min-width: 768px) {
  .contact__heading-mail {
    gap: 8px;
  }
}
.contact__heading-mail img {
  width: 37.333px;
}
@media screen and (min-width: 768px) {
  .contact__heading-mail img {
    width: 48px;
  }
}

@media screen and (min-width: 768px) {
  .contact__heading-jp {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25; /* 40px */
  }
}

.contact__text {
  text-align: center;
  margin-block: 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6; /* 19.2px */
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 16px;
    margin-top: 33px;
    margin-bottom: 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 screen and (min-width: 768px) {
  .contact__fields {
    gap: 22px;
  }
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .mail-magazine {
    margin-block: 18px;
  }
}

.form-field__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-weight: 700;
  line-height: 1.6; /* 22.4px */
}
@media screen and (min-width: 768px) {
  .form-field__heading {
    width: 220px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

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

.form-field__label {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    font-size: 16px;
    line-height: 1.6; /* 25.6px */
  }
}

.form-field__tag {
  font-size: 12px;
  padding: 4px 8px;
  background: #ce2073;
  color: #fff;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .form-field__item {
    width: 100%;
  }
}

.form-text {
  padding: 16px;
  background: #f5f5f5;
  width: 100%;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}
.form-text::-webkit-input-placeholder {
  color: #ccc;
}
.form-text::-moz-placeholder {
  color: #ccc;
}
.form-text:-ms-input-placeholder {
  color: #ccc;
}
.form-text::-ms-input-placeholder {
  color: #ccc;
}
.form-text::placeholder {
  color: #ccc;
}
@media screen and (min-width: 768px) {
  .form-text {
    font-size: 16px;
  }
}
.form-text:focus {
  border: 1px solid var(--LP-Blue, #9ed0e0);
  background: var(--LP-Light-Blue, #e9f6f8);
  outline: none;
}

.form-select {
  position: relative;
  width: 100%;
  height: 56px;
  padding: 14.5px 15px;
  font-size: 14px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 8px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../img/select-icon.png) no-repeat center right 0/52px 55px;
  background-color: #f5f5f5; /* 背景色を明示的に指定 */
}
.form-select:focus {
  border: 1px solid var(--LP-Blue, #9ed0e0);
  outline: none;
}
@media screen and (min-width: 768px) {
  .form-select {
    font-size: 16px;
    cursor: pointer;
  }
}

.form-field-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: -4px;
}

.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 {
  position: relative;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  padding-left: 32px;
}
.form-radio__text:hover::before {
  outline: 2px solid #9ed0e0;
}
@media screen and (min-width: 768px) {
  .form-radio__text {
    font-size: 16px;
  }
}
.form-radio__text::after, .form-radio__text::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  background-color: #f5f5f5;
  left: 0;
}
.form-radio__text::after {
  width: 12px;
  height: 12px;
  background-color: #9ed0e0;
  left: 6px;
  opacity: 0;
}

.form-textarea {
  padding: 16px;
  background: #f5f5f5;
  width: 100%;
  height: 160px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  line-height: 1.6; /* 22.4px */
}
@media screen and (min-width: 768px) {
  .form-textarea {
    font-size: 16px;
  }
}
.form-textarea::-webkit-input-placeholder {
  color: var(--LP-Dark-Gray, #ccc);
}
.form-textarea::-moz-placeholder {
  color: var(--LP-Dark-Gray, #ccc);
}
.form-textarea:-ms-input-placeholder {
  color: var(--LP-Dark-Gray, #ccc);
}
.form-textarea::-ms-input-placeholder {
  color: var(--LP-Dark-Gray, #ccc);
}
.form-textarea::placeholder {
  color: var(--LP-Dark-Gray, #ccc);
}
.form-textarea:focus {
  border: 1px solid var(--LP-Blue, #9ed0e0);
  background: var(--LP-Light-Blue, #e9f6f8);
  outline: none;
}

.contact__privacy {
  text-align: center;
  margin-top: -3px;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-block: 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;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 768px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  background-color: #f5f5f5;
}
.form-checkbox__text::after {
  width: 24px;
  height: 24px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration-line: underline;
}

.contact__button {
  text-align: center;
}
.contact__button .button {
  font-size: 16px;
  padding-inline: 37px;
}

.footer {
  position: relative;
}

.footer__inner {
  padding: 40px 20px 24px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 120px;
  }
}

@media screen and (min-width: 768px) {
  .footer__decoration-pawads {
    position: absolute;
    top: 80px;
    right: 80px;
  }
  .footer__decoration-pawads img {
    width: 100px;
  }
}

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

.sns-link__title {
  font-family: "Josefin Sans";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25; /* 25px */
}
@media screen and (min-width: 768px) {
  .sns-link__title {
    font-size: 24px;
  }
}

.sns-links__nav {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向（横）中央寄せ */
}
.sns-links__nav a img {
  width: 32px;
}
@media screen and (min-width: 768px) {
  .sns-links__nav a img {
    width: 40px;
  }
}

.footer__decoration-english {
  text-align: center;
  display: block;
  margin-inline: auto;
}
.footer__decoration-english img {
  margin-top: 14px;
  width: 375px;
}
@media screen and (min-width: 768px) {
  .footer__decoration-english img {
    margin-top: 41px;
    width: 755px;
  }
}

.address-wrap {
  overflow: hidden;
}
@media screen and (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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.address-wrap iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 335/271;
}
@media screen and (min-width: 768px) {
  .address-wrap iframe {
    height: 413px;
    border-radius: 0px 16px 16px 0px;
  }
}

.address-wrap__body {
  padding: 24px;
  padding-left: 27.5px;
  background: var(--LP-White, #fff);
  border-radius: 0 0 16px 16px;
  margin-top: -16px;
}
@media screen and (min-width: 600px) {
  .address-wrap__body {
    padding: 106px 21.5px;
    padding-top: 112px;
    border-radius: 10px 0 0 10px;
  }
}
@media screen and (min-width: 1200px) {
  .address-wrap__body {
    padding: 106px 61.5px;
    padding-top: 112px;
    border-radius: 10px 0 0 10px;
  }
}

.address-wrap__logo {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .address-wrap__logo {
    text-align: left;
  }
}
.address-wrap__logo img {
  width: 153px;
}
@media screen and (min-width: 768px) {
  .address-wrap__logo img {
    width: 183px;
  }
}

.address-wrap__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 29px;
}
.address-wrap__info-row:nth-child(n+2) {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .address-wrap__info-row:nth-child(n+2) {
    margin-top: 12px;
  }
}

.address-wrap__info-term {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
  position: relative;
  padding-left: 16px;
  white-space: nowrap;
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .address-wrap__info-term {
    width: 120px;
    font-size: 16px;
  }
}
.address-wrap__info-term::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.address-wrap__info-description {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .address-wrap__info-description {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .address-wrap__info-description {
    font-size: 16px;
  }
}

.footer__pagetop {
  padding-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__pagetop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    opacity: 0;
    visibility: hidden;
  }
  .footer__pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
  .footer__pagetop.is-show:hover {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
  }
}

.pagetop img {
  width: 75px;
}
@media screen and (min-width: 768px) {
  .pagetop img {
    width: 100px;
  }
}

@media screen and (min-width: 768px) {
  .footer__bottom {
    margin-top: -70px;
  }
}
.footer__bottom img {
  width: 100%;
  margin-top: 21px;
}

.footer__small-text {
  margin-top: -5px;
  height: 41px;
  background-color: #67b0c7;
  text-align: center;
}

.footer__copyright {
  font-size: 10px;
  font-weight: 400;
  line-height: 160%; /* 16px */
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 14px;
  }
}

/* 尾道のギフトを100名様にプレゼント！
参加の仕方はこちらの「ボタン」が反応しない問題の修正。最後に入れて重なり順の修正 */
/* 修正後 */
.about {
  position: relative;
  z-index: 0; /* 新しいスタッキングコンテキストを生成 */
}

.about__inner {
  z-index: 2; /* 親より前面に */
}

.about-button {
  position: relative;
  z-index: 3; /* 最前面に配置 */
}

.about-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  overflow: auto;
  padding: 0;
  border-radius: 24px;
  border: none;
  overscroll-behavior-y: none;
}
.about-modal::-ms-backdrop {
  opacity: 0.7;
  background: black;
}
.about-modal::backdrop {
  opacity: 0.7;
  background: black;
}

.about-modal__head img {
  height: 210px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about-modal__head img {
    width: 480px;
    height: 300px;
  }
}

.about-modal__body {
  padding: 39px 20px 59px;
}
@media screen and (min-width: 768px) {
  .about-modal__body {
    padding: 32px 40px 50px;
    width: 480px;
    height: 350px;
  }
}

.about-modal__heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6; /* 25.6px */
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-modal__heading {
    font-size: 20px;
  }
}

.about-modal__text {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6; /* 19.2px */
}
@media screen and (min-width: 768px) {
  .about-modal__text {
    text-align: center;
    font-size: 16px;
  }
}

.about-modal__button {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-modal__button {
    margin-top: 24px;
  }
}