@charset "UTF-8";
/**
 * メディアクエリMixin
 * @param {string} $breakpoint - ブレークポイント名（sm, lg, xl）
 * @example
 *   .example {
 *     font-size: 14px;
 *     @include mq(lg) {
 *       font-size: 16px; // 900px以上で適用
 *     }
 *   }
 */
/* ページ内アンカーのスムーススクロール */
html {
  scroll-behavior: smooth;
}

/**
 * [hidden]属性
 * HTML要素にhidden属性が指定された場合、確実に非表示にする
 */
[hidden] {
  display: none !important;
}

/**
 * body基本スタイル
 * サイト全体のデフォルトフォント、色、行間などを設定
*/
body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
  color: #4a3636;
  line-height: 160%;
  font-weight: 400;
}

/**
 * レスポンシブ改行クラス
 * PC表示時のみ改行を有効化（<br class="br-pc">）
 */
.br-pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .br-pc {
    display: inline;
  }
}

/**
 * レスポンシブ改行クラス
 * SP表示時のみ改行を有効化（<br class="br-sp">）
 */
.br-sp {
  display: inline;
}
@media screen and (min-width: 900px) {
  .br-sp {
    display: none;
  }
}

/**
 * wrapperクラス
 * ページ全体を囲むコンテナ
 * 横スクロールを防ぐためoverflowをhiddenに設定
 */
.wrapper {
  overflow: hidden;
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .inner {
    padding-inline: 244px;
    max-width: 1512px;
    margin-inline: auto;
  }
}

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

.header__inner {
  height: inherit;
  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;
}

@media screen and (min-width: 1200px) {
  .header__inner,
  .inner {
    padding-inline: 24px;
    margin-inline: auto;
  }
}

.header__logo a img {
  width: 210px;
  display: block;
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 183px;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.button:hover {
  background: #ffee56;
}

.button__text {
  padding: 6px 23px 8px 23px;
  font-weight: 700;
  font-size: 14px;
  line-height: 160%;
}

.header__icon {
  width: 32px;
  height: 35px;
  background: url("../img/header/drawer-menu-icon.png") no-repeat center/contain;
}
.header__icon.is-checked {
  background: url("../img/header/drawer-close-icon.png") no-repeat center/contain;
}
@media screen and (min-width: 1200px) {
  .header__icon {
    display: none;
  }
}

.header__nav {
  background: #ffffff;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: absolute;
  left: 0;
  width: 100%;
  top: 64px;
  max-height: 0;
  overflow: hidden;
  z-index: 1000;
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-block 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-block 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__nav.is-checked {
  max-height: 100vh;
  padding-block: 82px;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: none;
            transform: none;
    max-height: none;
    overflow: visible;
    padding-block: 0;
  }
}

.header__lists {
  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: 40px;
}
@media screen and (min-width: 900px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 13px;
  }
}

.header__list {
  font-size: 14px;
  font-weight: 400;
  color: #4a3636;
}
@media screen and (min-width: 1200px) {
  .header__list {
    font-size: 12px;
  }
}

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

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

.main {
  background-color: #e9f6f8;
}

.fv__bg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fv__titles {
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 335px;
  height: 161px;
}
@media screen and (min-width: 900px) {
  .fv__titles {
    width: 520px;
    top: 10px;
  }
}

.fv__fukidashi {
  position: absolute;
  top: 195px;
  left: 50%;
  -webkit-transform: translateX(-167.5px);
          transform: translateX(-167.5px);
  width: 142px;
  height: 80px;
}
@media screen and (min-width: 900px) {
  .fv__fukidashi {
    width: 244px;
    height: 130px;
    top: 275px;
    -webkit-transform: translateX(-386px);
            transform: translateX(-386px);
  }
}

.fv__present {
  position: absolute;
  top: 188px;
  left: 50%;
  -webkit-transform: translateX(32.5px);
          transform: translateX(32.5px);
  width: 110px;
  height: 110px;
}
@media screen and (min-width: 900px) {
  .fv__present {
    width: 180px;
    height: 180px;
    top: 294px;
    -webkit-transform: translateX(117px);
            transform: translateX(117px);
  }
}

.fv__images {
  position: absolute;
  top: 569px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
  width: 335px;
  height: 141px;
}
@media screen and (min-width: 900px) {
  .fv__images {
    width: 848px;
    height: 376px;
    top: 504px;
  }
}

.fv__smartphone {
  position: absolute;
  top: 291px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .fv__smartphone {
    width: 250px;
    height: 510px;
    top: 310px;
  }
}

.fv__smartphone .fv__smartphone-image {
  width: 200px;
  height: auto;
  max-width: none;
}
@media screen and (min-width: 900px) {
  .fv__smartphone .fv__smartphone-image {
    width: 250px;
  }
}

.fv__smartphone-content {
  position: absolute;
  top: 123px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 160px;
  padding-bottom: 19.2px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12.8px;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .fv__smartphone-content {
    width: 200px;
    padding-bottom: 24px;
    border-radius: 16px;
    top: 152px;
  }
}

.fv__smartphone-hashtag {
  width: 100%;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  color: #ffffff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12.8px;
  font-weight: 700;
  line-height: 160%;
  border-radius: 12.8px 12.8px 0 0;
  padding: 6.4px 0;
}
@media screen and (min-width: 900px) {
  .fv__smartphone-hashtag {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

.fv__smartphone-period-label {
  color: #4a3636;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2.4px solid #ce2073;
  margin-top: 11px;
}
@media screen and (min-width: 900px) {
  .fv__smartphone-period-label {
    font-size: 14px;
    margin-top: 16px;
    padding-bottom: 1px;
    border-bottom: 3px solid #ce2073;
  }
}

.fv__smartphone-period-date {
  color: #4a3636;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
  margin-top: 3px;
}
@media screen and (min-width: 900px) {
  .fv__smartphone-period-date {
    font-size: 16px;
    margin-top: 4px;
  }
}

.fv__smartphone-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  padding: 6px 24px 8px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  margin-top: 13px;
}
@media screen and (min-width: 900px) {
  .fv__smartphone-button {
    height: 40px;
    font-size: 16px;
    margin-top: 17px;
  }
}

.about {
  margin-top: 100px;
  background: none;
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: 91px;
  }
}

.about__spacer {
  height: 32px;
}

.about__inner {
  position: relative;
  z-index: 0;
}

.about__contents {
  position: relative;
  margin: 55px auto 0;
  max-width: 335px;
  text-align: center;
  border-radius: 24px;
  background: #ffffff;
  padding: 40px 20px 40px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .about__contents {
    max-width: 848px;
    padding: 43px 114px;
    border-radius: 40px;
  }
}

.about__contents-image {
  position: absolute;
  top: 30px;
  left: 52%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 282.22px;
}
@media screen and (min-width: 900px) {
  .about__contents-image {
    left: 50%;
    width: 678.7px;
    top: 40px;
  }
}

.about__titles {
  margin-top: 0;
  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;
}
.about__titles img {
  width: 37.33px;
  height: 37.33px;
}

.about__title {
  line-height: 125%;
  font-family: Courgette;
  margin: 6px 0;
}
@media screen and (min-width: 900px) {
  .about__title {
    font-size: 20px;
    margin: 16px 0 8px 0;
  }
}

.about__title-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  padding-bottom: 5px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 900px) {
  .about__title-text {
    font-size: 32px;
    color: #4a3636;
    text-align: center;
    line-height: 115%;
    padding-bottom: 9px;
  }
}

.about__title-text2 {
  margin-top: 24px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .about__title-text2 {
    margin-top: 33px;
    font-size: 16px;
    line-height: 160%;
  }
}
.about__title-text2 .about__title-text2-sp {
  display: block;
  font-weight: 700;
}
.about__title-text2 .about__title-text2-pc {
  display: none;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .about__title-text2 .about__title-text2-sp {
    display: none;
  }
  .about__title-text2 .about__title-text2-pc {
    display: block;
  }
}

.about__title-text3 {
  margin-top: 18px;
  font-size: 12px;
  line-height: 160%;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .about__title-text3 {
    margin-top: 33px;
  }
}

.about__title-text4 {
  margin-top: 19px;
  font-size: 12px;
  line-height: 160%;
  font-weight: 400;
}
.about__title-text4 a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: black;
}
@media screen and (min-width: 900px) {
  .about__title-text4--1 {
    margin-top: 28px;
  }
}
@media screen and (min-width: 900px) {
  .about__title-text4--2 {
    margin-top: 28px;
  }
}
@media screen and (min-width: 900px) {
  .about__title-text4--3 {
    margin-top: 26px;
  }
}

.about__title-text5 {
  margin-top: 22px;
  font-size: 14px;
  line-height: 160%;
  font-weight: 700;
  display: inline-block;
  padding: 8px 0;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 900px) {
  .about__title-text5 {
    margin-top: 38px;
    font-size: 20px;
  }
}

@media screen and (min-width: 900px) {
  .about__title-text3,
  .about__title-text4 {
    font-size: 16px;
    font-weight: 400;
  }
}

.about__link {
  margin-top: 22px;
  padding: 6px 24px 8px 24px;
  display: inline-block;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .about__link {
    margin-top: 33px;
    font-size: 20px;
    height: 56px;
    padding: 10px 40px 12px 40px;
  }
}

.about__arrow {
  display: block;
  margin: 0 auto;
  width: 100px;
}
@media screen and (min-width: 900px) {
  .about__arrow {
    width: 140px;
  }
}

.about__auto-scrolling-title {
  margin-top: 103.67px;
  margin-inline: auto;
  z-index: 2;
  max-width: 354.64px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .about__auto-scrolling-title {
    max-width: 890.6px;
    margin-top: 110px;
  }
}

.about__bg-sp {
  width: 655px;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .about__bg-sp {
    display: none;
  }
}

.about__bg-pc {
  display: none;
  position: absolute;
}
@media screen and (min-width: 900px) {
  .about__bg-pc {
    display: block;
    left: 50%;
    top: -80px;
    -webkit-transform: translateX(calc(-50% + 109px));
            transform: translateX(calc(-50% + 109px));
    width: 2416px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
}

.about__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about__swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 2;
}
.about__swiper-slide img {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 900px) {
  .about__swiper-slide img {
    width: 200px;
    height: 200px;
  }
}

.step {
  margin-top: 32.8px;
}

.step__inner {
  position: relative;
  overflow: hidden;
}

.step__bg {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.step__bg img {
  position: absolute;
  left: 15px;
  top: 0;
  width: 100vw;
  height: 1000px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 900px) {
  .step__bg img {
    position: static;
    width: 1440px;
    height: 860px;
    margin: 0 auto;
  }
}

.step__contents {
  width: 100%;
  padding-inline: 20px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .step__contents {
    max-width: 1064px;
    margin: 82px auto 0 auto;
  }
}

.step__titles {
  text-align: center;
  z-index: 1;
}
.step__titles img {
  width: 130px;
}
@media screen and (min-width: 900px) {
  .step__titles img {
    width: 200px;
  }
}

.step__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .step__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    margin-top: 42px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
  }
}

.step__card {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .step__card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media screen and (min-width: 900px) {
  .step__cards .step__card:nth-child(3) {
    margin-top: 69px;
  }
}

.step__step-img {
  margin-bottom: 16px;
}
.step__step-img img {
  width: 196px;
}
@media screen and (min-width: 900px) {
  .step__step-img img {
    width: 280px;
  }
}

.step__card-title {
  margin: 16px 0;
  line-height: 160%;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .step__card-title {
    font-size: 20px;
    margin-top: 27px;
  }
}

.step__card-text {
  margin: 16px 0;
  font-size: 12px;
  line-height: 160%;
}
.step__card-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: black;
}
@media screen and (min-width: 900px) {
  .step__card-text {
    font-size: 16px;
  }
}

.step__follow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #ffffff;
  margin: 0 auto;
  padding-inline: 12px;
  font-size: 14px;
  line-height: 160%;
  font-weight: 700;
  width: 225px;
  height: 38px;
}
.step__follow img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .step__follow {
    width: 254px;
    height: 42px;
    font-size: 16px;
    font-weight: 700;
  }
  .step__follow img {
    width: 24px;
    height: 24px;
  }
}

.step__wave-line1 {
  text-align: center;
  margin-top: 16px;
}
.step__wave-line1 img {
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 900px) {
  .step__wave-line1 {
    position: absolute;
    left: 255px;
  }
  .step__wave-line1 img {
    width: 113px;
    height: 23.596px;
    margin-top: 190px;
  }
}

.step__wave-line2 {
  text-align: center;
}
.step__wave-line2 img {
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 900px) {
  .step__wave-line2 {
    position: absolute;
    right: 295px;
    margin-top: 16px;
  }
  .step__wave-line2 img {
    width: 113px;
    height: 23.596px;
    margin-top: 190px;
  }
}

.step__follow a {
  font-weight: 700;
  font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
}

.step__button {
  display: block;
  margin: 0 auto;
  padding-inline: 24px;
  white-space: nowrap;
  margin-bottom: 36px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media screen and (min-width: 900px) {
  .step__button {
    margin-top: 34px;
    padding-inline: 40px;
    width: 437px;
    height: 56px;
    -webkit-transform: none;
            transform: none;
  }
}

.step__link {
  font-size: 16px;
  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;
}
@media screen and (min-width: 900px) {
  .step__link {
    font-size: 20px;
  }
}

@media screen and (min-width: 900px) {
  .prizes {
    margin-top: 90px;
    height: 1850px;
  }
}

.prizes__inner {
  min-height: 1202px;
  position: relative;
}

.prizes__bg {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}

.prizes__bg_triangle {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .prizes__bg_triangle {
    display: block;
    top: 23px;
  }
  .prizes__bg_triangle img {
    max-width: none;
    width: 1024px !important;
    height: 86px;
  }
}

.prizes__bg-semicircle {
  margin-inline: auto;
}
.prizes__bg-semicircle img {
  width: 237.6px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .prizes__bg-semicircle img {
    width: 365.62px;
    height: 148.97px;
  }
}

.prizes__bg-rectangle {
  width: 100vw;
  max-width: 600px;
  height: 904px;
  border-radius: 24px;
  background-color: #ffffff;
}
@media screen and (min-width: 600px) {
  .prizes__bg-rectangle {
    max-width: 600px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .prizes__bg-rectangle {
    max-width: 1024px;
    height: 1181.03px;
  }
}

.prizes__contents {
  position: absolute;
  padding-inline: 20px;
  z-index: 3;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 600px;
}
@media screen and (min-width: 900px) {
  .prizes__contents {
    max-width: 912px;
    padding: 0;
    width: 912px;
  }
}

.prizes__title {
  margin-inline: auto;
  margin-top: 20px;
}
.prizes__title img {
  width: 190px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .prizes__title img {
    width: 296px;
    margin-inline: auto;
    height: 145px;
  }
}

.prizes__text {
  margin-top: 14px;
  width: auto;
  margin-inline: auto;
  font-size: 12px;
  text-align: center;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 900px) {
  .prizes__text {
    margin-top: 44px;
    font-size: 16px;
  }
}

.prizes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    gap: 0;
    margin-top: 34px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-child(1) {
    margin-right: 30px;
  }
  .prizes__card:nth-child(2) {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .prizes__card:nth-child(3) {
    margin-right: 36px;
  }
  .prizes__card:nth-child(4) {
    margin-right: 36px;
  }
  .prizes__card:nth-child(5) {
    margin-right: 0;
  }
}
.prizes__card {
  position: relative;
  width: 158px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 158px;
          flex: 0 0 158px;
  max-width: 158px;
  height: 220px;
}
.prizes__card:nth-child(5) {
  width: 158px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 158px;
          flex: 0 0 158px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-child(-n+2) {
    width: 440px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 440px;
            flex: 0 0 440px;
    max-width: 440px;
    height: 510px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(n+3) {
    width: 280px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 280px;
            flex: 0 0 280px;
    max-width: 280px;
    height: 360px;
  }
}
.prizes__card-body {
  overflow: hidden;
}

.prizes__card-gift-icon {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 48px;
  z-index: 5;
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-child(-n+2) .prizes__card-gift-icon {
    top: 0;
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(n+3) .prizes__card-gift-icon {
    top: 0;
    width: 80px;
    height: 80px;
  }
}
.prizes__main-img {
  position: absolute;
  top: 24px;
  z-index: 4;
  overflow: hidden;
  width: 158px;
  height: 140px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  -webkit-transition: border-color 0.2s, border-radius 0.2s;
  transition: border-color 0.2s, border-radius 0.2s;
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-child(-n+2) .prizes__main-img {
    width: 440px;
    height: 340px;
    top: 50px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(n+3) .prizes__main-img {
    width: 280px;
    height: 240px;
    top: 40px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}
.prizes__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prizes__card-body:hover .prizes__main-img {
  border-top: 2px solid #9ed0e0;
  border-left: 2px solid #9ed0e0;
  border-right: 2px solid #9ed0e0;
}

.prizes__card-body:hover .prizes__main-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.prizes__card-text {
  position: absolute;
  top: 164px;
  left: 0;
  background-color: #f5f5f5;
  width: 158px;
  height: 56px;
  z-index: 3;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  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;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.prizes__card-text p {
  font-size: 12px;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 900px) {
  .prizes__card-text {
    top: 390px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-child(-n+2) .prizes__card-text {
    width: 440px;
    height: 120px;
    font-size: 20px;
  }
  .prizes__card:nth-child(-n+2) .prizes__card-text p {
    font-size: 20px;
  }
  .prizes__card:nth-child(n+3) .prizes__card-text {
    width: 280px;
    height: 81px;
    top: 280px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .prizes__card:nth-child(n+3) .prizes__card-text p {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(-n+2):hover .prizes__card-text {
    border-bottom-right-radius: 16px;
  }
  .prizes__card:nth-child(n+3):hover .prizes__card-text {
    border-bottom-right-radius: 16px;
  }
}
.prizes__card-body:hover .prizes__card-text {
  border-bottom-color: #9ed0e0;
  border-left-color: #9ed0e0;
  border-right-color: #9ed0e0;
}

.prizes__card-zoom-icon-default,
.prizes__card-zoom-icon-hover {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-bottom-right-radius: 8px;
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-child(-n+2) .prizes__card-zoom-icon-default,
  .prizes__card:nth-child(-n+2) .prizes__card-zoom-icon-hover {
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 16px;
  }
  .prizes__card:nth-child(n+3) .prizes__card-zoom-icon-default,
  .prizes__card:nth-child(n+3) .prizes__card-zoom-icon-hover {
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 16px;
  }
  .prizes__card-zoom-icon-default img,
  .prizes__card-zoom-icon-hover img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.prizes__card-zoom-icon-hover {
  display: none;
}

.prizes__card-zoom-icon-default {
  display: block;
}

.prizes__card-body:hover .prizes__card-zoom-icon-hover {
  display: block;
}

.prizes__card-body:hover .prizes__card-zoom-icon-default {
  display: none;
}

.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  width: 335px;
  max-width: calc(100% - 40px);
  border: none;
  border-radius: 24px;
}
.prizes-modal::-ms-backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.prizes-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
  }
}

.prizes-modal__contents {
  max-width: 336px;
  height: auto;
  border-radius: 24px;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .prizes-modal__contents {
    max-width: 480px;
    width: 480px;
    height: 650px;
  }
}

.prizes-modal__card-head {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  overflow: hidden;
  height: 210px;
}
.prizes-modal__card-head img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__card-head {
    height: 300px;
  }
  .prizes-modal__card-head img {
    width: 480px;
    height: 300px;
  }
}

.prizes-modal__card-body {
  text-align: center;
}

.prizes-modal__title {
  margin-top: 39px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .prizes-modal__title {
    margin-top: 32px;
    font-size: 20px;
  }
}

.prizes-modal__text {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .prizes-modal__text {
    margin-top: 12px;
    font-size: 16px;
  }
}

.prizes-modal__close-button {
  margin-top: 16px;
  margin-bottom: 56px;
  padding-inline: 24px;
  font-weight: 700;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.prizes-modal__close-button:hover {
  background: #ffee56 !important;
}
@media screen and (min-width: 900px) {
  .prizes-modal__close-button {
    margin-top: 24px;
    margin-bottom: 106px;
  }
}

.prizes__button {
  margin-top: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 40px;
    width: 437px;
    height: 56px;
    margin-inline: auto;
    padding: 10px 40px 12px 40px;
  }
}

.prizes__link {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .prizes__link {
    font-size: 20px;
  }
}

.prizes__bg-stairs {
  position: absolute;
  top: 942px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
  width: 580px;
}
@media screen and (min-width: 900px) {
  .prizes__bg-stairs {
    top: 1330px;
    width: 100vw;
    height: 600px;
  }
}

.prizes__bg-wave {
  position: absolute;
  bottom: -1px;
  width: 100vw;
  height: 45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
  z-index: 1;
}
.prizes__bg-wave img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .prizes__bg-wave {
    top: 1850px;
    bottom: auto;
    height: 120px;
  }
}

@media screen and (min-width: 900px) {
  .spots {
    margin-top: 118px;
    margin-bottom: 120px;
  }
}

.spots__inner {
  max-width: 100vw;
  height: 679px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 900px) {
  .spots__inner {
    height: 836px;
  }
}

.spots__bg {
  max-width: 100vw;
  margin: 0 auto;
  height: 634px;
  background-color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .spots__bg {
    height: 716px;
  }
}

.spots__contents {
  max-width: 100vw;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .spots__contents {
    display: block;
    max-width: none;
  }
}

@media screen and (min-width: 900px) {
  .spots__title-cards-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
    width: 100%;
    height: 542px;
  }
}

.spots__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 19px;
}
@media screen and (min-width: 900px) {
  .spots__titles {
    -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;
    min-width: 56px;
    margin-bottom: 0;
    margin-left: 240px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.spots__icon {
  display: block;
  width: 28px;
  height: 28px;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media screen and (min-width: 900px) {
  .spots__icon {
    margin-bottom: 8px;
    margin-right: 0;
    width: 56px;
    height: 56px;
    -webkit-transform: translate(4px, -4px);
            transform: translate(4px, -4px);
  }
}

.spots__title-text {
  margin-top: 4px;
  text-align: center;
  font-size: 28px;
  white-space: pre-wrap;
  color: #ffffff;
  font-weight: 500;
  line-height: 125%;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media screen and (min-width: 900px) {
  .spots__title-text {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 40px;
    font-style: normal;
    font-family: "Kiwi Maru";
    letter-spacing: 0.25em;
    -webkit-transform: translate(6px, -8px);
            transform: translate(6px, -8px);
  }
}

.spots__cards {
  max-width: 100vw;
  margin: 0 auto;
  padding-inline: 20px;
  overflow: visible;
  height: 402.16px;
}
@media screen and (min-width: 900px) {
  .spots__cards {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: none;
    margin-left: 0px;
    margin-right: -24px;
    padding-inline: 0;
    padding-right: 24px;
    overflow: hidden;
    position: relative;
    height: 542px;
  }
}

.spots-swiper {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  height: auto;
  overflow: visible;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width: 900px) {
  .spots-swiper {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    margin-left: 0;
    overflow: hidden;
  }
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 900px) {
  .swiper-wrapper {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 240px;
  height: 402.16px;
}
@media screen and (min-width: 900px) {
  .swiper-slide {
    width: 344px !important;
    height: 542px;
  }
}
@media screen and (min-width: 900px) {
  .swiper-slide:first-child {
    margin-left: 0;
  }
}

.spots__card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .spots__card {
    width: 344px;
    height: 542px;
    border-radius: 24px;
  }
}

.spots__card-image img {
  width: 240px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 900px) {
  .spots__card-image img {
    width: 344px;
    height: 240px;
  }
}

.spots__card-body {
  padding-inline: 24px;
}
@media screen and (min-width: 900px) {
  .spots__card-body {
    padding-inline: 32px;
  }
}

.spots__card-title {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__card-title {
    margin-top: 24px;
    font-size: 20px;
  }
}

.spots__card-text {
  margin-top: 16px;
  margin-bottom: 31.16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .spots__card-text {
    margin-top: 29px;
    margin-bottom: 40px;
    font-size: 16px;
  }
}

.spots-swiper-pagination {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots-swiper-pagination {
    display: block;
  }
}

.spots-swiper-button-prev,
.spots-swiper-button-next {
  display: none;
  position: absolute;
  width: 80px;
  height: 80px;
  top: 96.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .spots-swiper-button-prev,
  .spots-swiper-button-next {
    display: block;
    top: 497px;
    -webkit-transform: none;
            transform: none;
  }
}

.spots-swiper-button-prev {
  left: 2px;
}
@media screen and (min-width: 900px) {
  .spots-swiper-button-prev {
    left: 295px;
  }
}
.spots-swiper-button-prev:hover .spots-nav-arrow {
  -webkit-transform: translate(calc(-50% - 8px), -50%);
          transform: translate(calc(-50% - 8px), -50%);
}

.spots-swiper-button-next {
  right: 2px;
}
.spots-swiper-button-next:hover .spots-nav-arrow {
  -webkit-transform: translate(calc(-50% + 8px), -50%);
          transform: translate(calc(-50% + 8px), -50%);
}
@media screen and (min-width: 900px) {
  .spots-swiper-button-next {
    top: 497px;
    right: 284px;
    -webkit-transform: none;
            transform: none;
  }
}

.spots-nav-button {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  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;
  -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-nav-button:hover {
  -webkit-transform: none;
          transform: none;
}
.spots-nav-button:hover .spots-nav-bg {
  -webkit-transform: none;
          transform: none;
}

.spots-nav-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 57px;
  height: 57px;
  z-index: 2;
  -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-nav-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  -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-swiper-button-prev {
  left: 2px;
}
.spots-swiper-button-prev:hover .spots-nav-arrow {
  -webkit-transform: translate(calc(-50% - 8px), -50%);
          transform: translate(calc(-50% - 8px), -50%);
}
@media screen and (min-width: 900px) {
  .spots-swiper-button-prev {
    top: 485px;
    left: 284px;
    -webkit-transform: none;
            transform: none;
  }
}

.spots-swiper-button-next {
  right: 2px;
}
.spots-swiper-button-next:hover .spots-nav-arrow {
  -webkit-transform: translate(calc(-50% + 8px), -50%);
          transform: translate(calc(-50% + 8px), -50%);
}
@media screen and (min-width: 900px) {
  .spots-swiper-button-next {
    top: 485px;
    right: 284px;
    -webkit-transform: none;
            transform: none;
  }
}

/* --- Swiper ページネーション（ドット）のスタイル --- */
.spots-swiper-pagination {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .spots-swiper-pagination {
    display: none;
  }
}

@media screen and (min-width: 900px) {
  .spots__bottom-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 64px;
    margin-inline: 244px;
    bottom: 120px;
    gap: 81px;
  }
}

.spots__outline-title {
  text-align: center;
}
.spots__outline-title img {
  width: 255px;
  height: 55px;
}
@media screen and (min-width: 900px) {
  .spots__outline-title img {
    width: 495px;
    height: 107px;
  }
}

.spots__text {
  margin-top: 12px;
  color: #ffffff;
  font-size: 11.444px;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__text {
    font-size: 16px;
    margin-top: 0px;
  }
}

.spots__button {
  margin-top: 23px;
  width: 335px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  margin-bottom: 19.84px;
}
@media screen and (min-width: 900px) {
  .spots__button {
    width: 437px;
    height: 56px;
    margin-left: 10px;
    margin-top: 22px;
  }
}

.spots__link {
  font-size: 16px;
  max-width: 100vw;
  margin: 0 auto;
  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;
  height: 45px;
}
@media screen and (min-width: 900px) {
  .spots__link {
    font-size: 20px;
  }
}

.spots__bg-wave {
  position: absolute;
  bottom: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  width: 100vw;
  height: 45px;
  overflow: visible;
}
.spots__bg-wave img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .spots__bg-wave {
    height: 120px;
  }
  .spots__bg-wave img {
    width: 100%;
  }
}

.spots__bg-pawpads {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__bg-pawpads {
    display: block;
    position: absolute;
    top: 496px;
    left: 36px;
  }
  .spots__bg-pawpads img {
    width: 100px;
    height: 220px;
  }
}

.faq {
  margin-bottom: 28px;
}
@media screen and (min-width: 900px) {
  .faq {
    margin-bottom: 115px;
  }
}

.faq__inner {
  padding-inline: 20px;
}

.faq__titles {
  margin-top: 40px;
  text-align: center;
}

.faq__title-icon-illustration img {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 900px) {
  .faq__title-icon-illustration img {
    width: 48px;
    height: 48px;
  }
}

.faq__title-icon-text {
  margin-top: 5px;
}
.faq__title-icon-text img {
  width: 30px;
  height: 16px;
}
@media screen and (min-width: 900px) {
  .faq__title-icon-text {
    margin-top: 6px;
  }
  .faq__title-icon-text img {
    width: 37px;
    height: 18px;
  }
}

.faq__title {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3px;
  font-size: 20px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 900px) {
  .faq__title {
    margin-top: 8px;
    color: #4a3636;
    text-align: center;
    -webkit-font-feature-settings: "pwid" on;
            font-feature-settings: "pwid" on;
    font-family: "Kiwi Maru";
    font-size: 32px;
    font-weight: 500;
    line-height: 125%; /* 40px */
    /* 下の黄色ラインとの間隔を広げ、見出し後の余白を確保 */
    padding-bottom: 12px; /* テキストと下線の間隔（調整可） */
    margin-bottom: 16px; /* 見出しと本文の間の余白 */
    /* 下線の太さを変えたい場合は以下で調整してください */
    border-bottom-width: 6px;
  }
}

.faq__cards {
  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 screen and (min-width: 900px) {
  .faq__cards {
    margin-top: 20px;
    max-width: 1024px;
    margin-inline: auto;
    gap: 23px;
  }
}

.faq__card {
  border-radius: 12px;
  border: 2px solid #4a3636;
}
.faq__card:nth-of-type(4) {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media screen and (min-width: 900px) {
  .faq__card {
    border-radius: 16px;
  }
}

@media screen and (min-width: 900px) {
  /* 3番目・4番目のカードのみ縦位置を微調整（上に寄せる例） */
  .faq__card:nth-of-type(3) {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  .faq__card:nth-of-type(4) {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}
.faq__card-head {
  border-radius: 12px;
  padding: 10.5px 14px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
.faq__card-head.is-open {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* ============================================================
   FAQ カード PC用スタイル（@include mq(lg) 統合）
   - 全ヘッダーの共通スタイル
   - 3番目・4番目の個別パディング調整
   ============================================================ */
@media screen and (min-width: 900px) {
  .faq__card-head {
    border-radius: 16px;
    padding: 21px 24px 22px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
  }
  .faq__card-head.is-open {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  /* 3番目：上パディング 21px → 17px（4px 減） */
  .faq__card:nth-of-type(3) .faq__card-head {
    padding: 17px 24px 22px;
  }
  /* 4番目：上パディング 21px → 18px（3px 減） */
  .faq__card:nth-of-type(4) .faq__card-head {
    padding: 18px 24px 22px;
  }
}
.faq__card-head-icon-q {
  width: 20px;
  height: 20px;
  -webkit-transform: translate(2px, -8px);
          transform: translate(2px, -8px);
}
.faq__card-head-icon-q img {
  width: 21px;
  height: 18px;
}
@media screen and (min-width: 900px) {
  .faq__card-head-icon-q {
    width: 25px;
    height: 25px;
  }
  .faq__card-head-icon-q img {
    width: 25px;
    height: 25px;
    /* PCで画像を少し下げる（微調整用） */
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

.faq__card-head-text {
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media screen and (min-width: 900px) {
  .faq__card-head-text {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.faq__card-head-drawer-button {
  width: 26.182px;
  height: 26.182px;
}
.faq__card-head-drawer-button img {
  width: 26.182px;
  height: 26.182px;
}
@media screen and (min-width: 900px) {
  .faq__card-head-drawer-button {
    width: 48px;
    height: 48px;
    /* PCでボタンを少し左へ寄せたい場合はここを調整します（負の値で左、正の値で右） */
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  .faq__card-head-drawer-button img {
    width: 48px;
    height: 48px;
  }
}

.faq__card-body {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #f5f5f5;
}
@media screen and (min-width: 900px) {
  .faq__card-body {
    padding: 32px 25px 28px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
}

.faq__card:nth-of-type(n + 2) .faq__card-body {
  display: none;
}

.faq__card-body-icon-a {
  width: 17px;
  height: 17px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.faq__card-body-icon-a img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 900px) {
  .faq__card-body-icon-a {
    width: 24px;
    height: 24px;
    /* PCでAアイコンを左上に視覚的にずらす（レイアウトへ影響させない） */
    -webkit-transform: translate(-4px, -4px);
            transform: translate(-4px, -4px);
  }
  .faq__card-body-icon-a img {
    width: 24px;
    height: 24px;
  }
}

.faq__card-body-text {
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.faq__card-body-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-color: #4a3636;
}
@media screen and (min-width: 900px) {
  .faq__card-body-text {
    font-size: 16px;
    font-weight: 400;
    /* PCでテキストの開始位置を視覚的に少し左にずらす（レイアウトに影響しない） */
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
}

.information__inner {
  padding-inline: 20px;
  margin-inline: auto;
}

.information__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1024px;
  padding-top: 24px;
  padding-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  border: 8px solid #ffffff;
  background: rgba(255, 255, 255, 0.5);
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .information__contents {
    padding-top: 37px;
    padding-bottom: 45px;
    padding-inline: 48px;
    gap: 40px;
  }
}

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

.information__title-icon img {
  width: 28.194px;
  height: 23.333px;
}
@media screen and (min-width: 900px) {
  .information__title-icon {
    margin-top: 8px;
  }
  .information__title-icon img {
    width: 36.25px;
    height: 30px;
  }
}

.information__title-en {
  margin-top: 6px;
  color: #4a3636;
  text-align: center;
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .information__title-en {
    font-size: 20px;
    margin-top: 18px;
  }
}

.information__title-ja {
  margin-top: 2px;
  color: #4a3636;
  text-align: center;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 900px) {
  .information__title-ja {
    font-size: 32px;
    margin-top: 18px;
    /* 下線を下げるために余白を増やす */
    padding-bottom: 12px; /* 12px */
  }
}

.information__lists {
  margin-right: 17px;
}
@media screen and (min-width: 900px) {
  .information__lists {
    margin-right: 5px;
  }
}

.information__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.information__list-item {
  position: relative;
  padding-bottom: 14px;
}
.information__list-item::after {
  content: "";
  display: block;
  /* 375px時は厳密に288px、以降は伸縮 */
  width: 288px;
  height: 1px;
  background-color: #cccccc;
  position: absolute;
  bottom: 0;
  left: 50.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* 376px以上では親幅を上限にして伸縮（下限288px/上限899px） */
}
@media (min-width: 376px) {
  .information__list-item::after {
    width: clamp(288px, 100%, 899px);
  }
}
@media screen and (min-width: 900px) {
  .information__list-item::after {
    /* PC時も親幅を超えないようにしつつ最大899pxに制限 */
    width: clamp(288px, 100%, 899px);
  }
}
.information__list-item:nth-child(1) {
  padding-bottom: 16px;
}
@media screen and (min-width: 900px) {
  .information__list-item:nth-child(1) {
    padding-bottom: 14px;
  }
}
.information__list-item:nth-child(2) {
  padding-bottom: 16px;
}
@media screen and (min-width: 900px) {
  .information__list-item:nth-child(2) {
    padding-bottom: 15px;
  }
}
.information__list-item:nth-child(3) {
  padding-bottom: 15px;
}
.information__list-item:nth-child(4) {
  padding-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .information__list-item:nth-child(4) {
    padding-bottom: 14px;
    margin-bottom: 15px;
  }
}
.information__list-item:nth-child(5) {
  padding-bottom: 0;
}
.information__list-item:nth-child(5)::after {
  display: none;
}
@media screen and (min-width: 900px) {
  .information__list-item--2::after {
    bottom: 1px;
  }
}
@media screen and (min-width: 900px) {
  .information__list-item--4::after {
    bottom: 1px;
  }
}

.information__list > li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
.information__list > li:last-child {
  margin-bottom: 0;
}

.information__list > li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 7px;
  width: 8px;
  height: 8px;
  background: #9ed0e0;
  border-radius: 50%;
}

.information__list-item {
  color: #4a3636;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 900px) {
  .information__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .information__list-item:nth-of-type(1) {
    margin-top: 4px;
  }
  .information__list-item:nth-of-type(2) {
    margin-top: -2px;
  }
  .information__list-item:nth-of-type(3) {
    margin-top: -3px;
  }
  .information__list-item:nth-of-type(4) {
    margin-top: 0;
  }
  .information__list-item:nth-of-type(5) {
    margin-top: -5px;
  }
}

.information__list-title {
  margin: 0;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .information__list-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 215px;
            flex: 0 0 215px;
    font-size: 16px;
  }
}

.information__list-text,
.information__list-text--bullet {
  margin: 0;
  margin-top: 8px;
  margin-left: -5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .information__list-text,
  .information__list-text--bullet {
    margin-top: 0;
    font-size: 16px;
  }
}

.information__list-text--bullet {
  position: relative;
  padding-left: 18px;
  font-style: "Noto Sans JP", "Kiwi Maru", sans-serif;
}
.information__list-text--bullet::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 4px;
  color: #4a3636;
  font-size: 0.9em;
  line-height: 1;
}
.information__list-text--bullet:nth-of-type(n + 2) {
  margin-top: 0;
}
.information__list-text--bullet:nth-of-type(n + 3) {
  margin-top: -1px;
}
.information__list-text--bullet:nth-of-type(n + 4) {
  margin-top: -1px;
}
.information__list-text--bullet:nth-of-type(n + 5) {
  margin-top: -1px;
}
@media screen and (min-width: 900px) {
  .information__list-text--bullet {
    padding-left: 23px;
    line-height: 160%;
  }
  .information__list-text--bullet:nth-of-type(n + 2) {
    margin-top: 1px;
  }
  .information__list-text--bullet:nth-of-type(n + 3) {
    margin-top: 1px;
  }
  .information__list-text--bullet:nth-of-type(n + 4) {
    margin-top: 0px;
  }
  .information__list-text--bullet:nth-of-type(n + 5) {
    margin-top: 2px;
  }
  .information__list-text--bullet:nth-of-type(n + 6) {
    margin-top: 1px;
  }
  .information__list-text--bullet:nth-of-type(n + 7) {
    margin-top: 0px;
  }
  .information__list-text--bullet:nth-of-type(n + 8) {
    margin-top: 0px;
  }
  .information__list-text--bullet:nth-of-type(n + 9) {
    margin-top: 1px;
  }
}

.information__list-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.information__list-text a,
.information__list-text--bullet a {
  text-decoration: underline;
}

.information__bg {
  margin-top: 32px;
}
.information__bg img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .information__bg {
    margin-top: 120px;
  }
}

.form {
  background: #ffffff;
  padding-top: 40px;
  padding-bottom: 43px;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 900px) {
  .form {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.form__inner {
  padding-inline: 20px;
}

.form__titles {
  text-align: center;
}

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

.form__title-en {
  margin-top: 6px;
  color: #4a3636;
  text-align: center;
  font-family: "Courgette", "Josefin Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .form__title-en {
    font-size: 20px;
  }
}

.form__title-ja {
  display: inline-block;
  margin-top: 5px;
  padding-bottom: 4px;
  color: #4a3636;
  text-align: center;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 900px) {
  .form__title-ja {
    margin-top: 8px;
    padding-bottom: 10px;
    font-size: 32px;
    -webkit-font-feature-settings: "pwid" on;
            font-feature-settings: "pwid" on;
  }
}

.form__title-text {
  margin-top: 27px;
  margin-inline: auto;
  max-width: 335px;
  color: #4a3636;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .form__title-text {
    margin-top: 33px;
    max-width: none;
    font-size: 16px;
  }
}

.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  margin-top: 16px;
}
.form__group:first-of-type {
  margin-top: 23px;
}
.form__group:nth-of-type(3), .form__group:nth-of-type(5) {
  margin-top: 19px;
}
.form__group:nth-of-type(6) {
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .form__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    width: 848px;
    margin-top: 26px;
    margin-inline: auto;
  }
  .form__group:first-of-type, .form__group:last-of-type {
    margin-top: 40px;
  }
  .form__group:nth-of-type(3) {
    margin-top: 24px;
  }
  .form__group:nth-of-type(4) {
    margin-top: 40px;
  }
  .form__group:nth-of-type(5) {
    margin-top: 36px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .form__group:nth-of-type(6) {
    margin-top: 43px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .form__label {
    margin: 0 auto 0 0;
    font-size: 16px;
    -webkit-font-feature-settings: "pref" on;
            font-feature-settings: "pref" on;
  }
}

.form__required {
  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;
  padding: 4px 8px;
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
  background: #ce2073;
  border-radius: 4px;
}

@media screen and (min-width: 900px) {
  .form__input,
  .form__select-wrapper,
  .form__radio-group,
  .form__textarea,
  .form__checkbox-label {
    width: 628px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 628px;
            flex: 0 0 628px;
  }
}

.form__input {
  width: 100%;
  height: 56px;
  padding: 16px;
  color: #4a3636;
  font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form__input::-webkit-input-placeholder {
  color: #cccccc;
}
.form__input::-moz-placeholder {
  color: #cccccc;
}
.form__input:-ms-input-placeholder {
  color: #cccccc;
}
.form__input::-ms-input-placeholder {
  color: #cccccc;
}
.form__input::placeholder {
  color: #cccccc;
}
.form__input:focus {
  outline: none;
  border-color: #9ed0e0;
  background: #e9f6f8;
}
.form__input:valid:not(:-moz-placeholder):not(:focus) {
  background: #f5f5f5;
  border-color: transparent;
}
.form__input:valid:not(:-ms-input-placeholder):not(:focus) {
  background: #f5f5f5;
  border-color: transparent;
}
.form__input:valid:not(:placeholder-shown):not(:focus) {
  background: #f5f5f5;
  border-color: transparent;
}
.form__input.is-error {
  border-color: #ce2073;
  background: #fff0f7;
}
.form__input.is-error:focus {
  border-color: #ce2073;
  background: #fff0f7;
}
@media screen and (min-width: 900px) {
  .form__input {
    color: #cccccc;
    font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
  }
}

.form__select-wrapper {
  position: relative;
}

.form__select {
  width: 100%;
  height: 56px;
  padding: 16px;
  padding-right: 68px;
  color: #4a3636;
  font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form__select:focus {
  outline: none;
  border-color: #9ed0e0;
  background: #e9f6f8;
}
.form__select.is-error {
  border-color: #ce2073;
  background: #fff0f7;
}
.form__select.is-error:focus {
  border-color: #ce2073;
  background: #fff0f7;
}
@media screen and (min-width: 900px) {
  .form__select {
    color: #4a3636;
    font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
  }
}

.form__select option {
  color: #4a3636;
  font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
  font-size: 14px;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .form__select option {
    font-size: 16px;
    font-weight: 400;
  }
}

.form__select-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 52px;
  height: 55px;
  padding: 16px 1px 16px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #9ed0e0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  pointer-events: none;
}
.form__select-icon img {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.form__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  margin-left: -4px;
}

.form__radio-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  cursor: pointer;
}

.form__radio {
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: -1px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form__radio:checked {
  background: #f5f5f5;
}
.form__radio:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  border-radius: 50%;
}
.form__radio:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(158, 208, 224, 0.4);
          box-shadow: 0 0 0 2px rgba(158, 208, 224, 0.4);
}

.form__radio-text {
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .form__radio-text {
    color: #4a3636;
    font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
  }
}

.form__textarea {
  height: 160px;
  padding: 15.5px;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 8px;
  resize: vertical;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form__textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.form__textarea::-moz-placeholder {
  color: #cccccc;
}
.form__textarea:-ms-input-placeholder {
  color: #cccccc;
}
.form__textarea::-ms-input-placeholder {
  color: #cccccc;
}
.form__textarea::placeholder {
  color: #cccccc;
}
.form__textarea:focus {
  outline: none;
  border-color: #9ed0e0;
  background: #e9f6f8;
}
.form__textarea.is-error {
  border-color: #ce2073;
  background: #fff0f7;
}
.form__textarea.is-error:focus {
  border-color: #ce2073;
  background: #fff0f7;
}
@media screen and (min-width: 900px) {
  .form__textarea {
    color: #cccccc;
    font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
  }
}

.form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 19px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .form__submit {
    margin-top: 40px;
  }
}

.form__submit .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  padding: 6px 24px 8px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.form__submit .button:hover {
  background: #ffee56;
}
@media screen and (min-width: 900px) {
  .form__submit .button {
    width: 240px;
    padding: 6px 24px 8px 24px;
    background: #ffffff;
    border: 2px solid #4a3636;
    border-radius: 40px;
    -webkit-box-shadow: 0 4px 0 0 #4a3636;
            box-shadow: 0 4px 0 0 #4a3636;
  }
}

.form__submit .button__text {
  padding: 0;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
}

.form__checkbox-label {
  position: relative;
  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;
  cursor: pointer;
}

.form__checkbox {
  position: absolute;
  width: 24px;
  height: 24px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.form__checkbox-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 32px;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.form__checkbox-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
@media screen and (min-width: 900px) {
  .form__checkbox-text {
    color: #4a3636;
    font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
  }
}

.form__checkbox:checked + .form__checkbox-text::before {
  border-color: #9ed0e0;
  -webkit-box-shadow: 0 0 0 2px rgba(158, 208, 224, 0.15);
          box-shadow: 0 0 0 2px rgba(158, 208, 224, 0.15);
}

.form__checkbox:checked + .form__checkbox-text::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 14px;
  height: 9px;
  background-image: url("../img/form/form-icon-vector-7-sp.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.form__checkbox:focus + .form__checkbox-text::before {
  border-color: #9ed0e0;
  -webkit-box-shadow: 0 0 0 2px rgba(158, 208, 224, 0.15);
          box-shadow: 0 0 0 2px rgba(158, 208, 224, 0.15);
}

.form__checkbox-label.is-error .form__checkbox-text::before {
  background-color: #fff0f7;
  border: 1px solid #ce2073;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form__privacy-link {
  color: #4a3636;
  text-decoration: underline;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.form__privacy-link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 900px) {
  .form__privacy-link {
    color: #4a3636;
    font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    text-decoration-line: underline;
  }
}

/* フッター全体 - 淡い青背景 */
.footer {
  background: #e9f6f8;
  position: relative;
}

/* フッター内側コンテナ - 左右余白の管理 */
.footer__inner {
  margin-bottom: 126px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    padding-bottom: 0px;
    margin-bottom: 0px;
    padding-inline: 20px;
  }
}

/* SNSセクション - ソーシャルメディアリンクとロゴを配置 */
.footer__sns {
  padding-top: 40px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__sns {
    padding-top: 122px;
  }
}

/* SNSタイトル - "Please Follow Us!" の見出し */
.footer__sns-title {
  color: #4a3636;
  /* En/Josefin Sans-20px */
  font-family: "Josefin Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .footer__sns-title {
    font-size: 24px;
  }
}

/* SNSアイコンラッパー - アイコンとロゴの配置コンテナ（絶対配置の基準） */
.footer__sns-icon-wrapper {
  position: relative;
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .footer__sns-icon-wrapper {
    padding-bottom: 120px;
  }
}

/* SNSアイコン - YouTube, Instagram, Twitterのアイコン画像 */
.footer__sns-icon {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 900px) {
  .footer__sns-icon {
    width: 40px;
    height: 40px;
  }
}

/* 尾道ロゴ - SNSアイコン下に絶対配置されるロゴ画像 */
.footer__onomichi-logo {
  position: absolute;
  top: 45px;
  width: 375px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .footer__onomichi-logo {
    width: 755px;
    height: 82.231px;
    top: 80px;
  }
}

/* フッターコンテンツ - 地図と会社情報を含むエリア */
.footer__contents {
  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;
  margin-top: 50px;
  margin-bottom: 126px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .footer__contents {
    max-width: 1200px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-inline: auto;
    margin-bottom: 120px;
    margin-top: 0;
    padding-inline: 0;
  }
}

/* 地図セクション - Google Maps埋め込みエリア（HTMLの構造上のラッパー） */
/* .footer__map は構造上のみ存在、スタイル不要 */
/* 地図ラッパー - 地図コンテナの外側ラッパー */
@media screen and (min-width: 900px) {
  .footer__map-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 360px;
    max-width: 600px;
  }
}

/* 地図コンテナ - iframeを囲むコンテナ（上部角丸とサイズ制御） */
.footer__map-container {
  width: 335px;
  height: 271px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  .footer__map-container {
    width: 512px;
    height: 400px;
    border-radius: 16px;
  }
}

/* 地図iframe - Google Mapsの埋め込みiframe */
.footer__map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 会社情報セクション - 運営者・住所・営業時間・電話番号を表示 */
.footer__info {
  border-radius: 0 0 12px 12px;
  background: #ffffff;
  padding-top: 20px;
  padding-inline: 20px;
  padding-bottom: 30px;
  width: 335px;
}
@media screen and (min-width: 900px) {
  .footer__info {
    width: 520px;
    height: 400px;
    padding-top: 100px;
    padding-bottom: 115px;
    padding-inline: 61.5px;
    border-radius: 16px;
    margin-bottom: 0;
  }
}

/* 会社情報タイトル - 会社ロゴ画像を配置 */
.footer__info-title {
  text-align: center;
  margin-inline: auto;
  padding-bottom: 26px;
}
.footer__info-title img {
  width: 153px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .footer__info-title {
    text-align: left;
    padding-bottom: 24px;
    padding-left: 5px;
  }
  .footer__info-title img {
    width: 183px;
    height: 24px;
  }
}

/* 会社情報リスト - 情報項目の縦並びコンテナ（dl要素） */
.footer__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .footer__info-list {
    gap: 0;
  }
  .footer__info-list > .footer__info-item {
    margin-bottom: 11px;
  }
  .footer__info-list > .footer__info-item:nth-child(2) {
    margin-bottom: 12px;
  }
  .footer__info-list > .footer__info-item:nth-child(3) {
    margin-bottom: 13px;
  }
}

/* 会社情報項目 - ラベル(dt)とテキスト(dd)のペアを横並びに配置・間隔調整 */
.footer__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1px;
}

/* 会社情報ラベル - 項目名（運営者・住所など）に青い丸アイコン付き */
.footer__info-label {
  position: relative;
  padding-left: 24px;
  color: #4a4a4a;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  min-width: 88px;
  margin-right: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__info-label::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--LP-Blue, #9ed0e0);
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .footer__info-label {
    font-size: 16px;
    min-width: 120px;
    margin-right: 4px;
  }
}

/* 会社情報テキスト - 実際の住所や電話番号などの値 */
.footer__info-text {
  color: #6b6b6b;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .footer__info-text {
    font-size: 16px;
    text-align: left;
    padding-left: 0;
  }
}

.footer__to-top {
  position: absolute;
  top: 620px;
  left: 53%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
  width: 100px;
  height: 104px;
}
@media screen and (min-width: 900px) {
  .footer__to-top {
    position: fixed;
    top: 740px;
    right: 40px;
    left: auto;
    -webkit-transform: none;
            transform: none;
    width: 100px;
    height: 300px;
  }
}
@media screen and (min-width: 900px) and (max-height: 300px) {
  .footer__to-top {
    display: none;
  }
}

.footer__to-top-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 75px;
  height: 175px;
}
@media screen and (min-width: 900px) {
  .footer__to-top-icon {
    width: 100px;
    height: 160px;
  }
}

.footer__to-top-icon img,
.footer__to-top-icon picture {
  width: 100%;
  height: 100%;
  display: block;
}

/* 背景ウェーブ - フッター背景の波形装飾（画像配置用） */
.footer__bg-pawpads {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__bg-pawpads {
    display: block;
    position: absolute;
    right: 80px;
    top: 80px;
    width: 100px;
    height: 220px;
    z-index: 10;
  }
}

/* コピーライト - 著作権表示エリア */
.footer__copyright {
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
  padding-bottom: 24px;
  background: #67b0c7;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    font-size: 14px;
    padding-bottom: 32px;
    height: 54px;
  }
}