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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/* 色
--------------------------------------------------------*/
/* フォント
--------------------------------------------------------*/
/* レイアウト幅
--------------------------------------------------------*/
/* 階層
--------------------------------------------------------*/
/* ブレークポイント
--------------------------------------------------------*/
/* メディアクエリー
--------------------------------------------------------*/
/* メディアクエリ表示切替
--------------------------------------------------------*/
@media not screen and (min-width: 900px) {
  .u-tab-up {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .u-tab-down {
    display: none;
  }
}
/* コンタクト先頭メッセージ446px時点での表示切替
--------------------------------------------------------*/
@media screen and (min-width: 446px) {
  .u-tab-down--contact {
    display: none !important;
  }
}
/* コンセプトイメージ
--------------------------------------------------------*/
/* リンクアイコン
--------------------------------------------------------*/
/* body
--------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif, "Kiwi Maru", serif, "游ゴシック体", "游ゴシック", YuGothic, "Yu Gothic", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  line-height: 1.6;
  color: #9ed0e0;
  background-color: #e9f6f8;
}
body.modal-open {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
}

/* 疑似要素
--------------------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* リンク
--------------------------------------------------------*/
a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  a:hover {
    text-decoration: underline;
    color: #67b0c7;
  }
}

a[href^="tel:"] {
  text-decoration: none;
}
@media screen and (min-width: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

i {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  i:hover {
    text-decoration: underline;
    opacity: 1;
    color: #67b0c7;
  }
}

/* フォントサイズ
--------------------------------------------------------*/
html {
  font-size: 62.5%;
}

/* img
--------------------------------------------------------*/
img {
  width: 100%;
  height: auto;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

/* フォーム初期化
--------------------------------------------------------*/
input {
  padding: 12px 0px 12px 21px;
  width: 100%;
  border: none;
  /* ブラウザによって異なるデフォルト設定を初期化
  --------------------------------------------------------*/
  /* フォーカス外れたときにアウトライン表示
  --------------------------------------------------------*/
  /* フォーカスかつホバー時 */
  /* フォーカスかつホバーしていない時 */
  /* カレンダー選択範囲拡張
  --------------------------------------------------------*/
}
@media not screen and (min-width: 900px) {
  input {
    padding: 12px 0px 12px 15px;
  }
}
input input[type=submit],
input input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}
input input[type=submit]::-webkit-search-decoration,
input input[type=button]::-webkit-search-decoration {
  display: none;
}
input .row.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
input:focus:hover {
  /* 例: アウトラインを青色に */
}
input:focus:not(:hover) {
  /* 例: アウトラインを赤色に */
}
input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
input[type=radio]:checked + .p-contact__select::after {
  opacity: 1;
}
input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
input[type=checkbox]:checked + .p-contact__checkbox_text::after {
  opacity: 1;
}
input[type=submit]:focus, input[type=checkbox]:focus {
  outline: none;
}
input[type=submit] {
  padding: 0;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}
input[type=date] {
  position: relative;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  margin-right: auto;
}
select::-ms-expand {
  display: none;
}

/* textarea
--------------------------------------------------------*/
textarea {
  font-size: 1.6rem;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 1em 1.4em;
  resize: none;
}
@media not screen and (min-width: 900px) {
  textarea {
    padding: 0.8em 1em;
  }
}

/* フォント情報の一括入力(figma)
--------------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 20;
}
.l-inner {
  padding-inline: 20px;
}
@media (min-width: 900px) and (max-width: 1199px) {
  .l-inner {
    padding-inline: 30px;
  }
}

.l-fv {
  margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .l-fv {
    padding-inline: 20px;
  }
}

.l-about {
  padding-block: 188px 240px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .l-about {
    margin-inline: auto;
    padding-block: 177px 311px;
  }
}

.l-about__container {
  padding: 40px 12px;
  border-radius: 24px;
  background: #ffffff;
  position: relative;
}
@media not screen and (min-width: 600px) {
  .l-about__container {
    max-width: 335px;
    margin-inline: auto;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .l-about__container {
    width: min(480px, 100%);
    padding-inline: 20px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .l-about__container {
    max-width: 848px;
    margin-inline: auto;
    border-radius: 40px;
    padding: 41px 12px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .l-about__container {
    width: min(580px, 100%);
    padding-inline: 20px;
    margin-inline: auto;
  }
}
.l-about__container::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 36px;
  background: no-repeat url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg"  width="101" height="37" viewBox="0 0 101 37" fill="none"%3E%3Cpath d="M53.9066 35.198C51.8838 36.7117 49.1163 36.7117 47.0934 35.198L0.500011 0.333251L100.5 0.333263L53.9066 35.198Z" fill="%23CCE1E4"/%3E%3C/svg%3E');
}
@media screen and (min-width: 900px) {
  .l-about__container::after {
    width: 140px;
    height: 50px;
    background: no-repeat url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg"  width="140" height="50" viewBox="0 0 140 50" fill="none"%3E%3Cpath d="M74.7693 48.4233C71.9373 50.5256 68.0628 50.5256 65.2308 48.4233L4.37095e-06 3.01909e-06L140 1.90735e-05L74.7693 48.4233Z" fill="%23CCE1E4"/%3E%3C/svg%3E');
  }
}

.l-about__body {
  padding-inline: 32px;
}
@media (min-width: 900px) and (max-width: 1199px) {
  .l-about__body {
    padding-inline: 18px;
  }
}

.l-slider {
  margin-top: -85px;
}
@media screen and (min-width: 900px) {
  .l-slider {
    margin-top: 94px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .l-slider {
    margin-top: 100px;
  }
}

.l-slider__ttl {
  width: 355.6px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 900px) {
  .l-slider__ttl {
    width: 892px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .l-slider__ttl {
    width: 80%;
  }
}

.l-slider__swiper {
  margin-top: -5px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .l-slider__swiper {
    margin-top: -12px;
  }
}

.l-how-to-enter {
  padding-block: 64.8px 4px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .l-how-to-enter {
    padding-top: 123px;
  }
}

.l-prizes {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  position: relative;
}
@media (min-width: 600px) and (max-width: 899px) {
  .l-prizes {
    width: 600px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .l-prizes {
    max-width: 1024px;
    margin-inline: auto;
    background: none;
  }
}
.l-prizes::before {
  content: "";
  position: absolute;
  top: 6.5%;
  left: 0;
  right: 0;
  bottom: -3.5%;
  background: #ffffff;
  border-radius: 24px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .l-prizes::before {
    top: 3%;
    bottom: -5%;
  }
}

@media screen and (min-width: 900px) {
  .l-prizes__inner {
    position: relative;
    padding-inline: 52px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .l-prizes__inner {
    padding-inline: 20px;
  }
}

.l-bg-center {
  position: relative;
  margin-top: -14px;
  z-index: -10;
}
@media screen and (min-width: 900px) {
  .l-bg-center {
    margin-top: 56px;
  }
}

.l-spots {
  margin-top: -44px;
}
@media screen and (min-width: 900px) {
  .l-spots {
    margin-top: -120px;
    overflow: hidden;
  }
}

.l-spots__img-item {
  position: relative;
}

.l-QA {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .l-QA {
    margin-top: 122px;
    max-width: 1064px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-inline: auto;
    width: 100%;
  }
}

.l-entry {
  margin-top: 30.67px;
  width: clamp(335px, 100%, 1064px);
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .l-entry {
    margin-top: 120px;
  }
}

.l-entry__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 17px;
  -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: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 8px solid #ffffff;
}
@media (min-width: 600px) and (max-width: 899px) {
  .l-entry__inner {
    width: min(600px, 100%);
    padding-inline: 20px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .l-entry__inner {
    padding-block: 32px;
    gap: 40px;
  }
}

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

.l-contact {
  padding: 40px 0px;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .l-contact {
    padding: 120px 0px;
  }
}

.l-contact__area {
  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: 900px) {
  .l-contact__area {
    gap: 38px;
  }
}

.l-footer {
  padding-top: 44px;
}
@media screen and (min-width: 900px) {
  .l-footer {
    margin-top: 75px;
  }
}

.l-footer__img-item {
  position: relative;
}

.l-prizes-head {
  position: relative;
  z-index: -1;
  margin-top: 37px;
}
@media screen and (min-width: 900px) {
  .l-prizes-head {
    margin-top: 124px;
    width: min(1064px, 100%);
    padding-inline: 20px;
    margin-inline: auto;
  }
}

.l-about-sp-img {
  margin-top: -240px;
}

.c-btn-link {
  display: inline-block;
  padding: 4px 22px 6px 22px;
  text-align: center;
  max-width: 100%;
  border: 2px solid #4a3636;
  background: #ffffff;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 900px) {
  .c-btn-link {
    color: #4a3636;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 600px) {
  .c-btn-link:hover {
    background: #ffee56;
    text-decoration: none;
  }
}

.c-btn-link--l {
  padding: 10px 40px 12px 40px;
  border: 3px solid #4a3636;
}

.c-btn-link__text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #4a3636;
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (min-width: 1200px) {
  .c-btn-link__text {
    white-space: nowrap;
  }
}

.c-btn-link__text--s {
  font-size: 1.4rem;
}
@media screen and (min-width: 900px) {
  .c-btn-link__text--s {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 900px) {
  .c-btn-link__text--m {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
  }
}

.c-btn-link__text--l {
  font-size: 2rem;
}

@media screen and (min-width: 900px) {
  .c-btn-link--m {
    padding: 7px 37px 9px 37px;
  }
}

.c-btn-link__text--head {
  font-size: 1.4rem;
}

@media screen and (min-width: 900px) {
  .c-btn-link--drawer {
    border: 3px solid #4a3636;
    padding: 9px 37px 9px 37px;
  }
}

@media screen and (min-width: 900px) {
  .c-slider-ttl svg {
    width: 100%;
    height: auto;
  }
}

.c-bg-prizes {
  background: url(../img/SP/campaign-bg-sp.png) no-repeat center center/cover;
  width: 238px;
  height: 83px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .c-bg-prizes {
    background: url(../img/campaign-bg-pc.png) no-repeat center center/cover;
    width: 378px;
    height: 150px;
  }
}

.c-bg-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 260px;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#e9f6f8), color-stop(51.04%, rgba(255, 255, 255, 0))), url(../img/SP/img-prizes-bg-sp.jpg) lightgray 50%/cover no-repeat;
  background: linear-gradient(180deg, #e9f6f8 0%, rgba(255, 255, 255, 0) 51.04%), url(../img/SP/img-prizes-bg-sp.jpg) lightgray 50%/cover no-repeat;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 900px) {
  .c-bg-center {
    background: -webkit-gradient(linear, left top, left bottom, from(#e9f6f8), color-stop(51.04%, rgba(255, 255, 255, 0))), url(../img/img-prizes-bg.jpg) lightgray 50%/cover no-repeat;
    background: linear-gradient(180deg, #e9f6f8 0%, rgba(255, 255, 255, 0) 51.04%), url(../img/img-prizes-bg.jpg) lightgray 50%/cover no-repeat;
    height: 640px;
  }
}

.c-bg-wave__top {
  width: 100%;
  height: 46px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="96" height="46" viewBox="0 0 96 46" fill="none"><path d="M49.6 0.285645C26.7391 0.285626 23.04 12.4068 0 12.4069V45.9999H96V12.4069C72.96 12.4069 72.4609 0.285663 49.6 0.285645Z" fill="%2367B0C7"/></svg>') repeat-x;
}
@media screen and (min-width: 900px) {
  .c-bg-wave__top {
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="252" height="120" viewBox="0 0 252 120" fill="none"%3E%3Cpath d="M130.2 0C70.19 0 60.48 31.8181 0 31.8182V120H252V31.8182C191.52 31.8182 190.21 0 130.2 0Z" fill="%2367B0C7"/%3E%3C/svg%3E') repeat-x;
  }
}

.c-bg-wave__bottom {
  width: 100%;
  height: 46px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="96" height="46" viewBox="0 0 96 46" fill="none"><path d="M49.6 0.285645C26.7391 0.285626 23.04 12.4068 0 12.4069V45.9999H96V12.4069C72.96 12.4069 72.4609 0.285663 49.6 0.285645Z" fill="%2367B0C7"/></svg>') repeat-x;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
@media screen and (min-width: 900px) {
  .c-bg-wave__bottom {
    height: 102px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="252" height="120" viewBox="0 0 252 120" fill="none"%3E%3Cpath d="M130.2 0C70.19 0 60.48 31.8181 0 31.8182V120H252V31.8182C191.52 31.8182 190.21 0 130.2 0Z" fill="%2367B0C7"/%3E%3C/svg%3E') repeat-x;
    -webkit-transform: scaleY(-1);
            transform: scaleY(-1);
  }
}

.c-bg-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 99px;
  overflow: hidden;
  background: url(../img/SP/img-bg-entry.jpg) center center/cover no-repeat;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-bg-bottom {
    height: 200px;
  }
}
@media screen and (min-width: 900px) {
  .c-bg-bottom {
    background: url(../img/img-bg-entry.jpg) center center/cover no-repeat;
    height: 400px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-bg-bottom {
    height: 238px;
  }
}

.c-btn-form {
  display: inline-block;
  max-width: 100%;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 900px) {
  .c-btn-form {
    color: #4a3636;
    width: 240px;
    font-size: 1.6rem;
  }
}
.c-btn-form:hover {
  background: #ffee56;
  text-decoration: none;
}

.c-btn-form__text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #4a3636;
  font-weight: 700;
  font-size: 1.6rem;
}

.c-sns-icon img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 900px) {
  .c-sns-icon img {
    width: 40px;
    height: 40px;
  }
}

.c-page-top {
  padding-block: 29px 21px;
  text-align: center;
  z-index: 30;
}
@media screen and (min-width: 900px) {
  .c-page-top {
    position: fixed;
    bottom: 0;
    right: 2.5%;
  }
}

.c-page-top__icon img {
  width: 75px;
  height: 78px;
  opacity: 0.9;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.c-page-top__icon img:hover {
  opacity: 1;
}
@media screen and (min-width: 900px) {
  .c-page-top__icon img {
    width: 100px;
    height: 104px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.c-about-img {
  position: absolute;
  z-index: -1;
}
.c-about-img img {
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 900px) {
  .c-about-img img {
    width: 480px;
    height: 480px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.c-about-img--upperL {
  display: none;
}
@media screen and (min-width: 900px) {
  .c-about-img--upperL {
    display: block;
    left: -41.5%;
    top: -2.5%;
  }
  .c-about-img--upperL img {
    width: 250px;
    height: 250px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.c-about-img--left {
  top: 56%;
  left: -48.5%;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-about-img--left {
    left: -26.5%;
  }
}
@media screen and (min-width: 900px) {
  .c-about-img--left {
    top: 9%;
    left: -79%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-about-img--left {
    top: 9%;
    left: -90%;
  }
}

.c-about-img--lowerL.c-about-img--lowerL-layer {
  position: relative;
}
@media screen and (min-width: 900px) {
  .c-about-img--lowerL.c-about-img--lowerL-layer {
    display: none;
  }
}
.c-about-img--lowerL.c-about-img--lowerL-container {
  bottom: -99.5%;
  left: -0.5%;
  z-index: -2;
}
@media not screen and (min-width: 375px) {
  .c-about-img--lowerL.c-about-img--lowerL-container {
    bottom: -32%;
    left: -6%;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-about-img--lowerL.c-about-img--lowerL-container {
    bottom: -102%;
    left: 0;
  }
}
@media screen and (min-width: 900px) {
  .c-about-img--lowerL.c-about-img--lowerL-container {
    bottom: -37%;
    left: -51.3%;
  }
}
.c-about-img--lowerL img {
  width: 144px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-about-img--lowerL img {
    width: 180px;
  }
}
@media screen and (min-width: 900px) {
  .c-about-img--lowerL img {
    width: 427px;
    height: 817px;
  }
}

.c-about-img--right {
  top: 38.5%;
  right: -48.5%;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-about-img--right {
    right: -26.5%;
  }
}
@media screen and (min-width: 900px) {
  .c-about-img--right {
    right: -72.5%;
    top: 9%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-about-img--right {
    top: 9%;
    right: -90%;
  }
}

.c-about-img--upperR {
  top: -1.5%;
  right: -6%;
}
@media screen and (min-width: 900px) {
  .c-about-img--upperR {
    right: -19.5%;
    top: -10%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-about-img--upperR {
    right: -14%;
    top: -8%;
  }
}
.c-about-img--upperR img {
  width: 54px;
  height: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .c-about-img--upperR img {
    width: 100px;
    height: 220px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-about-img--upperR img {
    width: 80px;
    height: auto;
  }
}

.c-about-img--lowerRL {
  bottom: -17%;
  right: 11%;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-about-img--lowerRL {
    right: -10%;
  }
}
@media screen and (min-width: 900px) {
  .c-about-img--lowerRL {
    bottom: -9.5%;
    right: -30.5%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-about-img--lowerRL {
    right: -20%;
    bottom: -18%;
  }
}
.c-about-img--lowerRL img {
  width: 133px;
  height: 65.003px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-about-img--lowerRL img {
    width: 200px;
    height: auto;
  }
}
@media screen and (min-width: 900px) {
  .c-about-img--lowerRL img {
    width: 308px;
    height: 150.604px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-about-img--lowerRL img {
    width: 270px;
    height: auto;
  }
}

.c-about-img--lowerRR {
  bottom: -8.5%;
  right: 0.5%;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-about-img--lowerRR {
    right: -20%;
    bottom: -2%;
  }
}
@media screen and (min-width: 900px) {
  .c-about-img--lowerRR {
    bottom: 15.5%;
    right: -21.5%;
  }
}
.c-about-img--lowerRR img {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-about-img--lowerRR img {
    width: 80px;
    height: auto;
  }
}
@media screen and (min-width: 900px) {
  .c-about-img--lowerRR img {
    width: 101px;
    height: 100.047px;
  }
}

@media screen and (min-width: 900px) {
  .c-about-img--right-wave {
    bottom: 21.4%;
    right: -105.8%;
  }
}
.c-about-img--right-wave img {
  width: 873.922px;
  height: 45.021px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-HTE-img {
  position: absolute;
  z-index: -1;
}
.c-HTE-img img {
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 900px) {
  .c-HTE-img img {
    width: 480px;
    height: 480px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.c-HTE-img--center {
  left: 0%;
  top: 40.5%;
}
@media screen and (min-width: 900px) {
  .c-HTE-img--center {
    left: -15%;
    top: 69.5%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-HTE-img--center {
    left: -3%;
    top: 77.5%;
  }
}
.c-HTE-img--center img {
  width: 55px;
  height: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .c-HTE-img--center img {
    width: 100px;
    height: 220px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-HTE-img--center img {
    width: 70px;
    height: auto;
  }
}

.c-HTE-img--right {
  right: 0%;
  top: 5.5%;
}
.c-HTE-img--right img {
  width: 55px;
  height: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .c-HTE-img--right img {
    width: 100px;
    height: 220px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-HTE-img--right img {
    width: 70px;
    height: auto;
  }
}
@media screen and (min-width: 900px) {
  .c-HTE-img--right {
    right: -15%;
    top: 17.5%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-HTE-img--right {
    top: 18%;
    right: -3%;
  }
}

.c-HTE-img--lowerR {
  right: 0%;
  bottom: 26.5%;
}
.c-HTE-img--lowerR img {
  width: 55px;
  height: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .c-HTE-img--lowerR img {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .c-HTE-img--lowerR {
    right: 0%;
    top: 0%;
  }
}

.c-HTE-img--headL {
  left: -6%;
  top: -2.5%;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-HTE-img--headL {
    left: -10%;
  }
}
@media screen and (min-width: 900px) {
  .c-HTE-img--headL {
    left: -20.5%;
    top: -45%;
  }
}
.c-HTE-img--headL img {
  width: 149px;
  height: 223px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-HTE-img--headL img {
    width: 200px;
    height: auto;
  }
}
@media screen and (min-width: 900px) {
  .c-HTE-img--headL img {
    width: 460px;
    height: 689px;
  }
}

.c-HTE-img--headR {
  top: -4.5%;
  right: 1.5%;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-HTE-img--headR {
    right: 10%;
  }
}
@media screen and (min-width: 900px) {
  .c-HTE-img--headR {
    right: -1.5%;
    top: -21%;
  }
}
.c-HTE-img--headR img {
  width: 105px;
  height: 63px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .c-HTE-img--headR img {
    width: 238px;
    height: 141px;
  }
}

.c-HTE-img--headRR {
  top: 3.5%;
  right: -15%;
}
@media (min-width: 600px) and (max-width: 899px) {
  .c-HTE-img--headRR {
    right: -5%;
  }
}
.c-HTE-img--headRR img {
  width: 94px;
  height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .c-HTE-img--headRR img {
    width: 214px;
    height: 181.104px;
  }
}
@media screen and (min-width: 900px) {
  .c-HTE-img--headRR {
    right: -13.5%;
    top: -16%;
  }
}

.c-HTE-img--reverseY img {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.c-HTE-img--reverseX img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.c-HTE-img--reverseXY img {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

.c-HTE-img--line {
  bottom: -8.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .c-HTE-img--line {
    bottom: 58.5%;
    left: 0;
    right: -109%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c-HTE-img--line img {
  width: 7px;
  height: 34px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .c-HTE-img--line img {
    width: 113px;
    height: 24px;
  }
}

@media screen and (min-width: 900px) {
  .c-HTE-img--second {
    bottom: 67.5%;
    right: -115%;
    z-index: 1;
  }
}

.c-prizes-img {
  position: absolute;
  z-index: -1;
}

@media screen and (min-width: 900px) {
  .c-prizes-img--headL {
    top: 24%;
    left: 16%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-prizes-img--headL {
    left: 2%;
  }
}
@media screen and (min-width: 1200px) {
  .c-prizes-img--headL {
    left: 0;
  }
}
@media screen and (min-width: 900px) {
  .c-prizes-img--headL img {
    width: 315px;
    height: 86px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-prizes-img--headL img {
    width: 280px;
    height: auto;
  }
}

@media screen and (min-width: 900px) {
  .c-prizes-img--headR {
    top: 24%;
    right: 16%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-prizes-img--headR {
    right: 2%;
  }
}
@media screen and (min-width: 1200px) {
  .c-prizes-img--headR {
    right: 0;
  }
}
@media screen and (min-width: 900px) {
  .c-prizes-img--headR img {
    width: 315px;
    height: 86px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-prizes-img--headR img {
    width: 280px;
    height: auto;
  }
}

.c-prizes-img--reverseX {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.c-btn-modal {
  text-align: center;
  display: inline-block;
  max-width: 100%;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4a3636;
  background: #ffffff;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
}
@media screen and (min-width: 900px) {
  .c-btn-modal {
    color: #4a3636;
    font-size: 1.6rem;
  }
}
.c-btn-modal:hover {
  background: #ffee56;
  text-decoration: none;
}
.c-btn-modal:focus-visible {
  outline: none;
}

.c-spots-img {
  position: absolute;
  z-index: 3;
}
.c-spots-img img {
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 900px) {
  .c-spots-img img {
    width: 480px;
    height: 480px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.c-spots-img--upperL {
  display: none;
}
@media screen and (min-width: 900px) {
  .c-spots-img--upperL {
    display: block;
    left: -41.5%;
    top: -2.5%;
  }
  .c-spots-img--upperL img {
    width: 250px;
    height: 250px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.c-spots-img--lowerL {
  display: none;
}
@media screen and (min-width: 900px) {
  .c-spots-img--lowerL {
    display: block;
    top: 70.5%;
    left: 2.5%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-spots-img--lowerL {
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-spots-img--lowerL {
    left: 0.5%;
  }
}
@media screen and (min-width: 1920px) {
  .c-spots-img--lowerL {
    left: -15%;
  }
}
@media screen and (min-width: 900px) {
  .c-spots-img--lowerL img {
    width: 100px;
    height: 220px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-spots-img--lowerL img {
    width: 70px;
    height: auto;
  }
}

.c-footer-img {
  position: absolute;
}
.c-footer-img img {
  display: none;
}
@media screen and (min-width: 900px) {
  .c-footer-img img {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 900px) {
  .c-footer-img--upperR {
    right: 5.5%;
    top: -5.5%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-footer-img--upperR {
    right: 0;
    top: 5%;
  }
}
@media screen and (min-width: 900px) {
  .c-footer-img--upperR img {
    width: 100px;
    height: 220px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .c-footer-img--upperR img {
    width: 70px;
    height: 170px;
  }
}

.p-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding-inline: 20px;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .p-header {
    padding-inline: 24px;
  }
}

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

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .p-header__list {
    margin-inline: auto;
  }
}

.p-header__btn {
  margin-left: 4px;
  height: inherit;
}

.p-header__item {
  color: #4a3636;
  font-size: 1.2rem;
}

.p-header__img {
  display: inline-block;
  width: 210px;
  height: 27px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .p-header__img {
    width: 183px;
    height: 24px;
  }
}

.p-drawer-icon {
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  z-index: 43;
}
@media screen and (min-width: 1200px) {
  .p-drawer-icon {
    display: none;
  }
}
.p-drawer-icon.is-active .p-drawer-icon__bar1 {
  top: 13px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 32px;
  border-radius: 0;
}
.p-drawer-icon.is-active .p-drawer-icon__bar1 .p-drawer-icon__bar1-2 {
  display: none;
  border-radius: 0;
}
.p-drawer-icon.is-active .p-drawer-icon__bar2 {
  display: none;
}
.p-drawer-icon.is-active .p-drawer-icon__bar3 {
  top: 11px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 0;
}

.p-drawer-icon__bar1,
.p-drawer-icon__bar2,
.p-drawer-icon__bar3 {
  position: relative;
  display: block;
  background: #4a3636;
  width: 32px;
  height: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.p-drawer-icon__bar1 {
  width: 25.6px;
  top: 2px;
}
.p-drawer-icon__bar1 .p-drawer-icon__bar1-2 {
  position: absolute;
  top: 0;
  right: -6.6px;
  display: block;
  background: #4a3636;
  width: 4.8px;
  height: 3px;
  border-radius: 50%;
}

.p-drawer-icon__bar2 {
  top: 11px;
}

.p-drawer-icon__bar3 {
  top: 20px;
}

.p-drawer-content {
  width: 100%;
  height: calc(100vh - 64px);
  position: fixed;
  top: 64px;
  right: 0;
  background: #ffffff;
  padding-block: 82px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -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;
  z-index: -1;
  text-align: center;
}
.p-drawer-content.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-drawer-content__menu {
  padding-inline: 114px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 40px;
}

.p-drawer-content__link {
  color: var(--LP-Blown, #4a3636);
  display: block;
  width: 139px;
  font-size: 1.4rem;
  line-height: 1.6;
}

.p-fv {
  background: url(../img/SP/fv-img-onomichi-022.png) no-repeat center center/cover;
  position: relative;
  height: 554px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0px 0px 24px 24px;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-fv {
    background: url(../img/fv-img-onomichi-022.png) no-repeat center center/cover;
    height: 560px;
  }
}
@media screen and (min-width: 900px) {
  .p-fv {
    background: url(../img/fv-img-onomichi-022.png) no-repeat center center/cover;
    height: 740px;
  }
}
@media screen and (min-width: 1200px) {
  .p-fv {
    background: url(../img/fv-img-onomichi-022.png) no-repeat bottom center/cover;
    height: 740px;
  }
}

@media screen and (min-width: 900px) {
  .p-fv__contents {
    max-width: 846px;
    margin-inline: auto;
    text-align: center;
  }
}

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

.p-fv__lead {
  color: #4a3636;
  font-family: "Kiwi Maru";
  font-size: 1.4rem;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
}
@media screen and (min-width: 900px) {
  .p-fv__lead {
    font-size: 2.4rem;
  }
}

.p-fv__ttl-img {
  display: block;
  margin-inline: auto;
  margin-top: 20px;
  width: 335px;
}
@media screen and (min-width: 900px) {
  .p-fv__ttl-img {
    width: 520px;
    margin-top: 24px;
  }
}

.p-fv__body {
  position: absolute;
  top: 32%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-block: 113px 10px;
}
@media screen and (min-width: 900px) {
  .p-fv__body {
    margin-block: 73.6px 10px;
  }
}

.p-fv__item {
  width: 200px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-fv__item {
    width: 250px;
  }
}

.p-fv__main-area {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 12.8px;
  width: 160px;
  padding-bottom: 21.2px;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .p-fv__main-area {
    width: 200px;
    -webkit-transform: translate(-50%, -53%);
            transform: translate(-50%, -53%);
    padding-bottom: 24px;
  }
}

.p-fv__main-head {
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding: 4.6px 9.6px;
  text-align: center;
  border-radius: 12.8px 12.8px 0 0;
}
@media screen and (min-width: 900px) {
  .p-fv__main-head {
    line-height: 1.6;
    padding: 8px 12px;
  }
}

.p-fv__main-head-ttl {
  color: #ffffff;
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-fv__main-head-ttl {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.p-fv__main-body {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.2px;
  color: #4a3636;
  font-weight: 700;
  font-size: 1.2rem;
  padding-top: 12.8px;
}
@media screen and (min-width: 900px) {
  .p-fv__main-body {
    gap: 16px;
    padding-top: 16px;
  }
}

.p-fv__main-body-txt {
  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;
}

.p-fv__main-body-ttl {
  position: relative;
  font-size: inherit;
}
@media screen and (min-width: 900px) {
  .p-fv__main-body-ttl {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-fv__main-body-ttl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3.2px;
  top: 100%;
  left: 0;
  background: #ce2073;
}

.p-fv__main-body-term {
  margin-top: 3.2px;
  font-weight: 700;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
}
@media screen and (min-width: 900px) {
  .p-fv__main-body-term {
    margin-top: 10px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.p-fv__main-btn {
  display: inline-block;
  margin-top: 6px;
}
@media screen and (min-width: 900px) {
  .p-fv__main-btn {
    margin-top: 0;
  }
}

.p-fv__sub-img {
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-fv__sub-img:nth-of-type(2) {
  width: 142px;
  height: 80px;
  top: -94px;
  left: -68px;
}
@media screen and (min-width: 900px) {
  .p-fv__sub-img:nth-of-type(2) {
    width: 244px;
    height: 130px;
    top: -33px;
    left: -262px;
  }
}
.p-fv__sub-img:nth-of-type(3) {
  width: 110px;
  height: 110px;
  top: -102px;
  right: -42px;
}
@media screen and (min-width: 900px) {
  .p-fv__sub-img:nth-of-type(3) {
    width: 180px;
    height: 180px;
    top: -16px;
    right: -172px;
  }
}
.p-fv__sub-img:nth-of-type(4) {
  width: 86px;
  height: 141px;
  bottom: -18px;
  left: -67px;
}
@media screen and (min-width: 900px) {
  .p-fv__sub-img:nth-of-type(4) {
    bottom: -28px;
    height: 348px;
    left: -301px;
    width: 214px;
  }
}
.p-fv__sub-img:nth-of-type(5) {
  width: 62px;
  height: 69px;
  bottom: 46px;
  right: -67px;
}
@media screen and (min-width: 900px) {
  .p-fv__sub-img:nth-of-type(5) {
    width: 170px;
    height: 190px;
    right: -236px;
  }
}
.p-fv__sub-img:nth-of-type(6) {
  width: 98px;
  height: 72px;
  bottom: -12px;
  right: -57px;
}
@media screen and (min-width: 900px) {
  .p-fv__sub-img:nth-of-type(6) {
    width: 233px;
    height: 174px;
    bottom: -59px;
    right: -300px;
  }
}

.p-section-head {
  color: #4a3636;
  text-align: center;
  line-height: 1.25;
  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: 7px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-section-head {
    gap: 8px;
  }
}

.p-section-head__ttl-en {
  font-family: "Courgette", cursive, "Josefin Sans", sans-serif, "游ゴシック体", "游ゴシック", YuGothic, "Yu Gothic", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 1.6rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .p-section-head__ttl-en {
    font-size: 2rem;
  }
}

@media screen and (min-width: 900px) {
  .p-section-head__icon {
    width: 48px;
    height: 48px;
  }
}

.p-section-head__ttl-ja {
  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;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru";
  font-size: 2rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 6px;
}
@media screen and (min-width: 900px) {
  .p-section-head__ttl-ja {
    font-size: 3.2rem;
  }
}
.p-section-head__ttl-ja::after {
  content: "";
  width: 100%;
  height: 8px;
  background: #ffee56;
}

@media screen and (min-width: 900px) {
  .p-about {
    text-align: center;
  }
}

.p-about__head {
  position: relative;
}
.p-about__head::before, .p-about__head::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 62px;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .p-about__head::before, .p-about__head::after {
    width: 150px;
    height: 116px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-about__head::before {
  top: -5px;
  left: -11px;
  background: url(../img/SP/img-about-pic-1.png) no-repeat center center/cover;
}
@media screen and (min-width: 900px) {
  .p-about__head::before {
    left: 41px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-about__head::before {
    left: -15%;
    top: -10%;
  }
}
.p-about__head::after {
  top: -5px;
  right: -24px;
  background: url(../img/SP/img-about-pic-2.png) no-repeat center center/cover;
}
@media screen and (min-width: 900px) {
  .p-about__head::after {
    top: 6px;
    right: 39px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-about__head::after {
    right: -15%;
    top: -10%;
  }
}

.p-about__body {
  width: clamp(249px, 100%, 848px);
  margin-top: 25px;
  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;
  text-align: center;
  color: #4a3636;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .p-about__body {
    gap: 33px;
    margin-top: 38px;
  }
}

.p-about__body-ttl span {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-about__body-ttl span {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 900px) {
  .p-about__body-ttl span {
    font-size: 1.6rem;
    line-height: 1.6;
    -webkit-font-feature-settings: "pref" on;
            font-feature-settings: "pref" on;
  }
}

.p-about__body_message {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  line-height: 1.6;
  font-size: 1.2rem;
  color: var(--LP-Blown, #4a3636);
  text-align: center;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-about__body_message {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 900px) {
  .p-about__body_message {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.p-about__body_link {
  margin-top: 4px;
}
.p-about__body_strong {
  color: #4a3636;
  font-size: 1.4rem;
  line-height: 1.6;
  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;
  padding: 8px 0px;
  border-bottom: 2px dotted #9ed0e0;
  font-weight: 700;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-about__body_strong {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 900px) {
  .p-about__body_strong {
    font-size: 2rem;
    line-height: 1.6;
    margin-top: 5px;
  }
}

.p-swiper__wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.p-swiper__button-prev svg {
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-how-to-enter {
  text-align: center;
  position: relative;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-how-to-enter {
    width: min(500px, 100%);
    padding-inline: 20px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .p-how-to-enter {
    width: min(1104px, 100%);
    padding-inline: 40px;
    margin-inline: auto;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-how-to-enter {
    max-width: 1512px;
  }
}

.p-how-to-enter__container {
  margin-top: 28px;
}
@media screen and (min-width: 900px) {
  .p-how-to-enter__container {
    margin-top: 40px;
  }
}

.p-how-to-enter__items {
  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: 34px;
}
@media screen and (min-width: 900px) {
  .p-how-to-enter__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 72px;
  }
}

.p-how-to-enter__item {
  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;
  width: 194px;
  gap: 17px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-how-to-enter__item {
    width: 280px;
    gap: 24px;
  }
  .p-how-to-enter__item:nth-of-type(2) {
    margin-top: 68.63px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-how-to-enter__item {
    width: 28%;
  }
}

.p-how-to-enter__link {
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .p-how-to-enter__link {
    margin-top: 34px;
    padding-bottom: 4px;
  }
}

.p-step__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 16px;
  -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: 16px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-step__body {
    gap: 18px;
  }
}

.p-step__body--ttl {
  color: #4a3636;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
}
@media screen and (min-width: 900px) {
  .p-step__body--ttl {
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-step__body--ttl {
    font-size: 1.6rem;
  }
}

.p-step__body-message {
  width: 320px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: #4a3636;
  font-size: 1.2rem;
}
@media screen and (min-width: 900px) {
  .p-step__body-message {
    max-width: 320px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-step__body-message {
    font-size: 1.4rem;
  }
}

.p-step__body-message--strong {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-step__body-message--strong {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.p-step__body-link {
  background: #ffffff;
  padding: 8px 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-step__body-link:hover {
  outline: 1px solid #9ed0e0;
}
.p-step__body-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.p-step__body-link-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .p-step__body-link-icon svg {
    width: 24px;
    height: 24px;
  }
}

.p-step__body-link-text {
  color: #4a3636;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-step__body-link-text {
    font-size: 1.6rem;
    line-height: 1.6;
    text-decoration-line: underline;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-step__body-link-text {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 900px) {
  .p-step__body-message--link {
    color: var(--LP-Blown, #4a3636);
    /* JP/Text 16px Regular */
    text-decoration-line: underline;
  }
}

.p-img-card {
  border-radius: 8px;
}
@media screen and (min-width: 600px) {
  .p-img-card:hover {
    cursor: pointer;
  }
}
.p-img-card:nth-of-type(1) .p-img-card__head, .p-img-card:nth-of-type(2) .p-img-card__head {
  width: 100%;
  height: auto;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-img-card:nth-of-type(1) .p-img-card__head, .p-img-card:nth-of-type(2) .p-img-card__head {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .p-img-card:nth-of-type(1) .p-img-card__head_badge, .p-img-card:nth-of-type(2) .p-img-card__head_badge {
    top: 3.5%;
    width: 100px;
    height: auto;
  }
}
.p-img-card:nth-of-type(1) .p-img-card__body, .p-img-card:nth-of-type(2) .p-img-card__body {
  width: 100%;
  height: 56px;
  border-radius: 0 0 8px 8px;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-img-card:nth-of-type(1) .p-img-card__body, .p-img-card:nth-of-type(2) .p-img-card__body {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .p-img-card:nth-of-type(1) .p-img-card__body, .p-img-card:nth-of-type(2) .p-img-card__body {
    height: 120px;
  }
}
@media screen and (min-width: 900px) {
  .p-img-card:nth-of-type(1) .p-img-card__body__text, .p-img-card:nth-of-type(2) .p-img-card__body__text {
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 900px) {
  .p-img-card:nth-of-type(1) .p-img-card__body-badge, .p-img-card:nth-of-type(2) .p-img-card__body-badge {
    width: 100px;
    height: 100px;
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
  .p-img-card:nth-of-type(1) .p-img-card__body-badge svg, .p-img-card:nth-of-type(2) .p-img-card__body-badge svg {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 55%;
    right: 13%;
  }
}

.p-img-card__head {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.p-img-card__head img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 8px 8px 0 0;
  aspect-ratio: 160/140;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .p-img-card__head img {
    aspect-ratio: 0;
  }
}

.p-img-card__body {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 56px;
  background: #f5f5f5;
}
@media screen and (min-width: 900px) {
  .p-img-card__body {
    height: 80px;
  }
}

.p-img-card__body__text {
  color: #4a3636;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-img-card__body__text {
    font-size: 1.6rem;
  }
}

.p-img-card__head_badge {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 48px;
  z-index: 19;
}
@media screen and (min-width: 900px) {
  .p-img-card__head_badge {
    width: 80px;
    height: 80px;
    top: 7%;
  }
}

.p-img-card__body-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  background: #67b0c7;
  width: 38px;
  height: 38px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  border-radius: 0 0 8px 0;
}
@media screen and (min-width: 900px) {
  .p-img-card__body-badge {
    width: 64px;
    height: 64px;
  }
}
.p-img-card__body-badge svg {
  position: absolute;
  right: 5px;
  top: 20px;
}
@media screen and (min-width: 900px) {
  .p-img-card__body-badge svg {
    width: 20.48px;
    height: 20.48px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 50%;
    left: 50%;
  }
}

.p-img-card__wrap {
  overflow: hidden;
}
@supports (-webkit-hyphens: none) {
  .p-img-card__wrap {
    overflow: visible;
  }
}
@media screen and (min-width: 900px) {
  .p-img-card__wrap {
    border: 4px solid transparent;
    border-radius: 24px;
  }
  .p-img-card__wrap:hover, .p-img-card__wrap:focus {
    border: 4px solid #9ed0e0;
  }
  .p-img-card__wrap:hover .p-img-card__head-img img, .p-img-card__wrap:focus .p-img-card__head-img img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .p-img-card__wrap:hover .p-img-card__body-badge {
    background: #9ed0e0;
  }
}

.p-prizes {
  z-index: 2;
}

@media screen and (min-width: 900px) {
  .p-prizes__head_bg {
    top: 12%;
    left: 50%;
  }
}

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

.p-prizes__cards {
  margin-top: 24px;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media screen and (min-width: 900px) {
  .p-prizes__cards {
    margin-top: 13px;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px 28px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-prizes__cards {
    gap: 0 20px;
  }
}

.p-prizes__card {
  position: relative;
  padding-top: 24px;
  position: relative;
  overflow: hidden;
}
.p-prizes__card:last-child:nth-child(odd) {
  grid-area: span 2/span 2;
  margin-inline: 87.5px;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-prizes__card:last-child:nth-child(odd) {
    margin-inline: 130px;
  }
}
@media screen and (min-width: 900px) {
  .p-prizes__card {
    padding-top: 63px;
    grid-area: span 1/span 2;
  }
  .p-prizes__card:first-child, .p-prizes__card:nth-child(2) {
    grid-area: span 1/span 3;
  }
  .p-prizes__card:last-child:nth-child(odd) {
    margin-inline: 0;
  }
}

.p-prizes__btn {
  text-align: center;
  margin-top: 21px;
}
@media screen and (min-width: 900px) {
  .p-prizes__btn {
    margin-top: 24px;
  }
}

.p-prizes__message {
  margin-top: 14px;
  color: #4a3636;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-prizes__message {
    margin-top: 44px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.p-prizes__inner_head {
  padding-top: 6px;
}

.p-prizes__head_title--prize-top {
  margin-top: -70px;
}
@media screen and (min-width: 900px) {
  .p-prizes__head_title--prize-top {
    margin-top: -128px;
  }
}

.p-spots {
  background: #67b0c7;
  padding-bottom: 17px;
}
@media screen and (min-width: 900px) {
  .p-spots {
    padding-top: 47px;
    padding-left: 30px;
    padding-bottom: 22px;
  }
}

.p-spots__contents {
  padding-inline: 20px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-spots__contents {
    padding-inline: 0;
    margin-left: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 1512px;
    margin-inline: auto;
    overflow: visible;
  }
}
@media screen and (min-width: 1920px) {
  .p-spots__contents {
    max-width: 100vh;
  }
}

@media screen and (min-width: 900px) {
  .p-spots__spot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: min(1104px, 100%);
    padding-inline: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-inline: auto;
  }
}

.p-spots__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-family: "Kiwi Maru";
  font-size: 2.8rem;
  line-height: 1.25;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
}
@media screen and (min-width: 900px) {
  .p-spots__title {
    padding-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-font-feature-settings: "pwid" on;
            font-feature-settings: "pwid" on;
    font-size: 4rem;
    line-height: 1.25;
    gap: 8px;
  }
}
.p-spots__title svg {
  display: grid;
  place-items: center;
  margin-right: 8px;
}
@media screen and (min-width: 900px) {
  .p-spots__title svg {
    width: 56px;
    height: 56px;
    margin-right: 0;
  }
}

.p-spots__img-title svg {
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .p-spots__img-title svg {
    width: 495px;
    height: 107px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-spots__img-title svg {
    width: 360px;
  }
}

.p-spots__slider {
  margin-inline: -20px;
}
@media screen and (min-width: 900px) {
  .p-spots__slider {
    margin-inline: 0;
    margin-left: auto;
    padding-left: 32px;
    width: 139vh;
  }
}

.p-spots__card {
  margin-top: 24px;
}

.p-spots__message {
  margin-top: 12px;
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-size: 1.1444rem;
  line-height: 1.6000611674;
}
@media screen and (min-width: 900px) {
  .p-spots__message {
    margin-top: 5px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 900px) {
  .p-spots__img_link {
    max-width: 1052px;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    margin-top: 40px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-spots__img_link {
    margin-top: -30px;
    -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: 20px;
  }
}
.p-spots__img_link .p-spots__link_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 900px) {
  .p-spots__img_link .p-spots__link_area {
    gap: 24px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 600px) {
  .p-spots__pagination:hover ::before {
    content: "";
    position: absolute;
    left: 100%;
  }
  .p-spots__pagination:hover .swiper-button-next:after,
  .p-spots__pagination:hover .swiper-button-prev:after {
    left: 50px;
  }
}
@media screen and (min-width: 900px) {
  .p-spots__pagination {
    margin-top: -60px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 944px;
    height: 80px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-spots__pagination {
    max-width: 700px;
    margin-inline: 100px 80px;
  }
}

/* スワイパーのページネーションをホバーしたときのスタイル */
@media screen and (min-width: 600px) {
  .p-swiper-bottom__button-prev:hover::after {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    -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;
  }
  .p-swiper-bottom__button-next:hover::after {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    -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;
  }
}
.p-swiper-bottom {
  max-width: 100%;
}

.p-swiper-bottom__slide {
  overflow: visible;
}

.p-swiper-bottom__button-prev {
  position: absolute;
  opacity: 0;
}
.p-swiper-bottom__button-prev svg {
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 900px) {
  .p-swiper-bottom__button-prev {
    opacity: 1;
    padding: 40px;
    background: #ffee56;
    border-radius: 50%;
    top: 24px;
    left: -50px;
    width: 5px;
    height: 10px;
  }
}

.p-swiper-bottom__button-next {
  position: absolute;
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .p-swiper-bottom__button-next {
    opacity: 1;
    padding: 40px;
    background: #ffee56;
    border-radius: 50%;
    top: 24px;
    right: 50px;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 2.5em;
  font-weight: 700;
  color: #9ed0e0;
}

.p-card-detail {
  border-radius: 8px;
}

.p-card-detail__head {
  border-radius: 8px 8px 0 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  height: 180px;
  overflow: hidden;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-card-detail__head {
    height: auto;
  }
}
@media screen and (min-width: 900px) {
  .p-card-detail__head {
    border-radius: 24px 24px 0 0;
    height: auto;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .p-card-detail__head {
    height: auto;
  }
}
.p-card-detail__head img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  aspect-ratio: 240/180;
}
@media screen and (min-width: 900px) {
  .p-card-detail__head img {
    aspect-ratio: 340/240;
  }
}

.p-card-detail__body {
  position: relative;
  border-radius: 0 0 8px 8px;
  display: grid;
  place-items: center;
  background: #f5f5f5;
  height: 222px;
  padding-inline: 24px;
  display: block;
  place-items: unset;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .p-card-detail__body {
    padding-inline: 32px;
    border-radius: 0 0 24px 24px;
    height: 302px;
  }
}

.p-card-detail__title {
  padding-top: 16px;
  color: #4a3636;
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-card-detail__title {
    padding-top: 24px;
    font-size: 2rem;
    line-height: 160%; /* 32px */
    line-height: 1.6;
  }
}

.p-card-detail__text {
  margin-top: 16px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 12px;
  line-height: 160%;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-card-detail__text {
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.p-QA {
  margin-top: 24px;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-QA {
    width: min(640px, 100%);
    padding-inline: 20px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .p-QA {
    margin-top: 43px;
    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;
  }
}

.p-QA__list {
  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: 13px;
}
@media screen and (min-width: 900px) {
  .p-QA__list {
    gap: 20.5px;
  }
}

.p-QA__item {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-QA__item:hover {
    cursor: pointer;
  }
}

.p-QA-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #ffffff;
}
.p-QA-box summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}
.p-QA-box.is-open .p-QA-box__head-right-icon::after {
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .p-QA-box {
    border: 1px solid #000;
    border-radius: 16px;
    border: 2px solid #4a3636;
    background: #ffffff;
    width: 100%;
  }
}
.p-QA-box[open] .p-QA-box__head-right-icon::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-QA-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-QA-box__head {
    width: 100%;
    padding: 22px;
    gap: 16px;
  }
}

.p-QA-box__head-left-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 2.4rem;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .p-QA-box__head-left-icon {
    width: 29px;
    height: 35px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-family: "Josefin Sans";
    font-size: 3.2rem;
    line-height: 1.25;
  }
}

.p-QA-box__head-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  color: #4a3636;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-QA-box__head-text {
    font-size: 2rem;
    line-height: 1.6;
  }
}

.p-QA-box__head-right-icon {
  background: #9ed0e0;
  width: 26.182px;
  height: 26.182px;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-QA-box__head-right-icon {
    width: 48px;
    height: 48px;
    margin-left: -2px;
  }
}
.p-QA-box__head-right-icon::before, .p-QA-box__head-right-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  background: #ffffff;
  -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;
}
.p-QA-box__head-right-icon::before {
  -webkit-transform: translate(50%, -50%) rotate(0deg);
          transform: translate(50%, -50%) rotate(0deg);
  width: 10.182px;
  height: 1.455px;
}
@media screen and (min-width: 900px) {
  .p-QA-box__head-right-icon::before {
    width: 18.667px;
    height: 2.667px;
  }
}
.p-QA-box__head-right-icon::after {
  -webkit-transform: translate(50%, -50%) rotate(0deg);
          transform: translate(50%, -50%) rotate(0deg);
  width: 1.455px;
  height: 10.182px;
}
@media screen and (min-width: 900px) {
  .p-QA-box__head-right-icon::after {
    width: 2.667px;
    height: 18.667px;
  }
}
.p-QA-box__head-right-icon.is-open::after {
  -webkit-transform: translate(50%, -50%) rotate(90deg);
          transform: translate(50%, -50%) rotate(90deg);
}

.p-QA-box__body {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #f5f5f5;
  border-radius: 0 0 10px 10px;
  display: none;
}
@media screen and (min-width: 900px) {
  .p-QA-box__body {
    display: none;
    background: var(--LP-Gray, #f5f5f5);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    background: var(--LP-Gray, #f5f5f5);
    border-radius: 0 0 16px 16px;
    width: 100%;
  }
}
.p-QA-box__body.is-open {
  display: block;
}

.p-QA-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 16px 14px 14px 14px;
}
@media screen and (min-width: 900px) {
  .p-QA-box__a {
    padding: 22px;
  }
}

.p-QA-box__a-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 2.4rem;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .p-QA-box__a-icon {
    font-size: 3.2rem;
    line-height: 1.25;
  }
}

.p-QA-box__a-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-QA-box__a-text {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.p-QA-box__a-text a {
  text-decoration-line: underline;
}

.p-entry__table {
  width: 100%;
  padding-inline: 14px;
}
@media screen and (min-width: 900px) {
  .p-entry__table {
    padding-inline: 48px;
  }
}

.p-entry-item {
  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;
  text-align: left;
  gap: 8px;
  max-width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 900px) {
  .p-entry-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 12px;
    gap: 0;
  }
}
.p-entry-item:nth-of-type(n + 2) {
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .p-entry-item:nth-of-type(n + 2) {
    margin-top: 12px;
  }
}
.p-entry-item:last-of-type {
  border: none;
}

.p-entry-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4a3636;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-entry-item__title {
    min-width: 240px;
    font-size: 1.6rem;
    gap: 5px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 900px) {
  .p-entry-item__title span {
    padding-left: 16px;
  }
}

.p-entry-item__text {
  color: #4a3636;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-entry-item__text {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.p-entry-item__text a {
  text-decoration: underline;
}

.p-entry-item__text_list {
  padding-left: 18px;
  color: var(--LP-Blown, #4a3636);
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .p-entry-item__text_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: 1px;
    line-height: 1.6;
    padding-left: 22.5px;
  }
}
.p-entry-item__text_list li {
  position: relative;
}
.p-entry-item__text_list li::before {
  content: "•";
  position: absolute;
  left: -4.5%;
  font-size: 1.2rem;
  color: #4a3636;
}
@media screen and (min-width: 900px) {
  .p-entry-item__text_list li::before {
    left: -2.3%;
    font-size: 1.5rem;
  }
}

.p-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21.5px;
  width: min(888px, 100%);
  margin-inline: auto;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-contact {
    width: min(640px, 100%);
    padding-inline: 20px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .p-contact {
    margin-top: -4px;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 20px;
  }
}

.p-contact__item {
  color: #4a3636;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-contact__item {
    min-width: 140px;
    font-size: 1.6rem;
    line-height: 1.6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-contact__body {
  margin-top: 8px;
  color: #4a3636;
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-contact__body input[type=email]:focus {
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.p-contact__body input[type=email].invalid {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
.p-contact__body input[type=email].invalid:valid:focus {
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.p-contact__body input[type=email]:focus:invalid:not(:-moz-placeholder-shown) {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
.p-contact__body input[type=email]:focus:invalid:not(:-ms-input-placeholder) {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
.p-contact__body input[type=email]:focus:invalid:not(:placeholder-shown) {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
.p-contact__body input[type=email]:invalid:not(:focus):not(:-moz-placeholder-shown) {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
.p-contact__body input[type=email]:invalid:not(:focus):not(:-ms-input-placeholder) {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
.p-contact__body input[type=email]:invalid:not(:focus):not(:placeholder-shown) {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
.p-contact__body input[type=email]:valid:not(:focus) {
  outline: none;
  background: #f5f5f5;
}
.p-contact__body input.invalid,
.p-contact__body select.invalid,
.p-contact__body textarea.invalid {
  border: none;
  background: #fff0f7;
  outline: 1px solid #ce2073;
}
.p-contact__body input:valid,
.p-contact__body select:valid,
.p-contact__body textarea:valid {
  border: none;
  background: #e9f6f8;
  outline: 1px solid #9ed0e0;
}
.p-contact__body input:valid:not(:focus),
.p-contact__body select:valid:not(:focus),
.p-contact__body textarea:valid:not(:focus) {
  background: #f5f5f5;
  outline: none;
}
@media screen and (min-width: 900px) {
  .p-contact__body {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 74.0990990991%;
    margin-left: auto;
  }
}

.p-contact__body--radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
}

.p-contact__form-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16.5px;
  border-radius: 8px;
  background: #f5f5f5;
}
.p-contact__form-text:focus {
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.p-contact__form-text::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-contact__form-text::-moz-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-contact__form-text:-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-contact__form-text::-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-contact__form-text::placeholder {
  color: #cccccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-contact__form-text::-webkit-input-placeholder {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .p-contact__form-text::-moz-placeholder {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .p-contact__form-text:-ms-input-placeholder {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .p-contact__form-text::-ms-input-placeholder {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .p-contact__form-text::placeholder {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.p-contact__form-select {
  padding: 16px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #cccccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-contact__form-select:focus {
  outline: 1px solid #9ed0e0;
}
@media screen and (min-width: 900px) {
  .p-contact__form-select {
    color: #4a3636;
    font-size: 1.6rem;
  }
}

.p-contact__select-radio {
  color: #4a3636;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
  padding-left: 33px;
}
@media screen and (min-width: 900px) {
  .p-contact__select-radio {
    margin-left: 0;
    padding-left: 34px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.p-contact__select-radio::before, .p-contact__select-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.p-contact__select-radio::before {
  width: 24px;
  height: 24px;
  left: 0;
  background: #f5f5f5;
}
.p-contact__select-radio::after {
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  top: 50%;
  left: 5.5%;
  opacity: 0;
}
.p-contact__select-radio:hover::before {
  border: 1px solid #9ed0e0;
}

.p-contact__select-label input:checked + .p-contact__select-radio {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-weight: 700;
}
.p-contact__select-label input:checked + .p-contact__select-radio {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-weight: 700;
}
.p-contact__select-label input:focus + .p-contact__select-radio::before {
  outline: 1px solid #9ed0e0;
}
.p-contact__select-label input:checked + .p-contact__select-radio::after {
  opacity: 1;
}

.p-contact__form-textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 160px;
  padding: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  resize: both;
}
.p-contact__form-textarea:focus {
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.p-contact__form-textarea::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-contact__form-textarea::-moz-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-contact__form-textarea:-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-contact__form-textarea::-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-contact__form-textarea::placeholder {
  color: #cccccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-contact__form-textarea::-webkit-input-placeholder {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .p-contact__form-textarea::-moz-placeholder {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .p-contact__form-textarea:-ms-input-placeholder {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .p-contact__form-textarea::-ms-input-placeholder {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .p-contact__form-textarea::placeholder {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.p-contact__btn {
  text-align: center;
  margin-top: 6px;
}
@media screen and (min-width: 900px) {
  .p-contact__btn {
    margin-top: 15px;
  }
}

.p-contact__essential {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: #ce2073;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 12px;
}

.p-contact__select-area {
  position: relative;
}
.p-contact__select-area::before {
  pointer-events: none;
  content: "";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 0px;
  bottom: 0px;
  width: 52px;
  height: 100%;
  overflow: hidden;
  padding: 16px 1px 16px 0px;
  background: var(--LP-Blue, #9ed0e0);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0 8px 8px 0;
}
.p-contact__select-area::after {
  pointer-events: none;
  content: "";
  position: absolute;
  background: url(../img/SP/arrow-under-icon.png) center center/cover no-repeat;
  top: 0;
  right: 0;
  width: 52px;
  height: 55px;
}
.p-contact__select-area.invalid::before {
  background: #ce2073;
}
.p-contact__select-area.invalid .p-contact__form-select {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}

.p-contact__privacy {
  text-align: center;
  margin-top: 4px;
}
@media screen and (min-width: 900px) {
  .p-contact__privacy {
    margin-top: 16px;
    width: 276px;
  }
}
.p-contact__privacy input.invalid + .p-contact__checkbox_text::before {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
.p-contact__privacy input.invalid:not(:focus):checked + .p-contact__checkbox_text::before {
  outline: none;
  background: #f5f5f5;
}
.p-contact__privacy input:checked + .p-contact__checkbox_text::before {
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.p-contact__privacy input:checked:not(:focus) + .p-contact__checkbox_text::before {
  outline: none;
  background: #f5f5f5;
}

.p-contact__checkbox_text {
  color: #4a3636;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
  padding-left: 33px;
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  .p-contact__checkbox_text:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 900px) {
  .p-contact__checkbox_text {
    padding-left: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.p-contact__checkbox_text::before, .p-contact__checkbox_text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-contact__checkbox_text::before {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 4px;
  background: #f5f5f5;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (min-width: 900px) {
  .p-contact__checkbox_text::before {
    margin-top: 2px;
  }
}
.p-contact__checkbox_text::after {
  width: 20px;
  height: 14.53px;
  left: 1%;
  margin-top: -1.2px;
  background: url(../img/SP/check.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .p-contact__checkbox_text::after {
    margin-top: 0.8px;
  }
}
input:focus + .p-contact__checkbox_text::before {
  outline: 1px solid #9ed0e0;
}
.p-contact__checkbox_text a {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media screen and (min-width: 900px) {
  .p-contact__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}

@media screen and (min-width: 900px) {
  .p-contact__field--radio {
    height: 56px;
  }
}

@media screen and (min-width: 900px) {
  .p-contact__field--textarea {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-section-message {
  color: #4a3636;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-section-message {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 900px) {
  .p-footer {
    padding-bottom: 120px;
    max-width: 1512px;
    margin-inline: auto;
    position: relative;
  }
}

.p-footer__sns {
  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: 24px;
  width: auto;
  margin-inline: auto;
}

.p-footer__message {
  font-family: "Josefin Sans";
  color: #4a3636;
  font-size: 2rem;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .p-footer__message {
    font-size: 2.4rem;
    line-height: 1.25;
  }
}

.p-footer__organization {
  margin-top: -7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  -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: 24px;
  border-radius: 16px;
  background: var(--LP-White, #fff);
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-footer__organization {
    width: 600px;
    padding-inline: 0;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .p-footer__organization {
    margin-top: -11px;
    gap: 0px;
  }
}
@media screen and (min-width: 900px) {
  .p-footer__organization {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1024px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-inline: auto;
  }
}

.p-footer__organization_map {
  border-radius: 16px 16px 0 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  height: auto;
  max-height: 400px;
  overflow: hidden;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-footer__organization_map {
    max-height: 100%;
  }
}
@media screen and (min-width: 900px) {
  .p-footer__organization_map {
    width: 50%;
    border-radius: 0px 16px 16px 0;
  }
}
.p-footer__organization_map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: middle;
}

.p-footer__sns_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.p-footer__img-title {
  text-align: center;
  margin-top: 11px;
}
@media screen and (min-width: 900px) {
  .p-footer__img-title {
    margin-top: 38px;
  }
}
.p-footer__img-title svg {
  max-width: 100%;
  padding-inline: 3px;
}
@media screen and (min-width: 900px) {
  .p-footer__img-title svg {
    width: 755px;
    height: auto;
  }
}

.p-footer__organization_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 24px 24px 24px;
  -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: 30px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width: 900px) {
  .p-footer__organization_body {
    padding: 0;
    width: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-footer__organization-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .p-footer__organization-info {
    gap: 12px;
  }
}

.p-footer__organization_title img {
  width: 153px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .p-footer__organization_title img {
    width: 183px;
    height: 24px;
  }
}

.p-footer__organization-info_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-footer__organization-info_title {
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 1.2rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-footer__organization-info_title {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 900px) {
  .p-footer__organization-info_title {
    font-size: 1.6rem;
    line-height: normal;
    width: 120px;
  }
}

.p-footer__organization-info_text {
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 1.2rem;
  line-height: 1.6;
}
@media (min-width: 600px) and (max-width: 899px) {
  .p-footer__organization-info_text {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 900px) {
  .p-footer__organization-info_text {
    font-size: 16px;
    line-height: 1.6;
  }
}

.p-footer__copy_text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 160%;
  line-height: 1;
}
@media screen and (min-width: 900px) {
  .p-footer__copy_text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.p-footer__copy_area {
  background: #67b0c7;
  text-align: center;
  padding-top: 7px;
  padding-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .p-footer__copy_area {
    padding-top: 74px;
  }
}

.p-footer__organization_body-inner {
  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: 30px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width: 900px) {
  .p-footer__organization_body-inner {
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-inline: auto;
  }
}

.p-footer-info__body__text {
  color: #4a3636;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-footer-info__body__text {
    font-size: 1.6rem;
  }
}

.p-footer-info__head_badge {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 900px) {
  .p-footer-info__head_badge {
    width: 80px;
    height: 80px;
    top: 7%;
  }
}

.p-footer-info__body-badge {
  position: relative;
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  background: #9ed0e0;
  width: 38px;
  height: 38px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (min-width: 900px) {
  .p-footer-info__body-badge {
    width: 64px;
    height: 64px;
    border-radius: 0 0 24px 0;
  }
}
.p-footer-info__body-badge svg {
  position: absolute;
  right: 5px;
  top: 20px;
}
@media screen and (min-width: 900px) {
  .p-footer-info__body-badge svg {
    width: 20.48px;
    height: 20.48px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 50%;
    right: 13%;
  }
}

.p-modal {
  padding: 0;
  width: 336px;
  height: 480px;
  padding-bottom: 56px;
  border: none;
  inset: 0;
  border-radius: 24px;
  z-index: 100;
  overflow: auto;
  overscroll-behavior-y: none;
  margin: auto;
}
@media screen and (min-width: 900px) {
  .p-modal {
    padding: 0;
    width: 480px;
    height: 650px;
  }
}
.p-modal::-ms-backdrop {
  opacity: 0.7;
  background: #000;
}
.p-modal::backdrop {
  opacity: 0.7;
  background: #000;
}
.p-modal .p-modal__head {
  width: 336px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .p-modal .p-modal__head {
    width: 480px;
  }
}
.p-modal .p-modal__head img {
  aspect-ratio: 336/210;
}
@media screen and (min-width: 900px) {
  .p-modal .p-modal__head img {
    aspect-ratio: 480/300;
  }
}
.p-modal .p-modal__body {
  width: 336px;
  height: 175px;
  padding: 0px 25px;
  background: #ffffff;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-modal .p-modal__body {
    width: 480px;
    height: 350px;
  }
}
.p-modal .p-modal__body_title {
  padding-top: 39px;
}
@media screen and (min-width: 900px) {
  .p-modal .p-modal__body_title {
    padding-top: 32px;
  }
}
.p-modal .p-modal__close-button {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .p-modal .p-modal__close-button {
    margin-top: 24px;
  }
}