@charset "UTF-8";
html {
  scroll-padding-top: 64px;
}

body {
  font-family: "Noto Sans JP", "Kiwi Maru", sans-serif, serif;
  background-color: #e9f6f8;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
}
@media screen and ( min-width: 992px ) {
  body {
    font-size: 16px;
  }
}

@media screen and ( max-width: 349px) {
  .inner {
    padding-inline: 20px;
  }
}

html:has(.is-checked) {
  overflow: hidden;
}
@media screen and ( min-width: 992px ) {
  html:has(.is-checked) {
    overflow: visible;
  }
}

html:has(dialog[open]) {
  overflow: hidden;
}

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

.l-header__inner {
  position: relative;
  padding-inline: 20px;
  height: 64px;
}
@media screen and ( min-width: 992px ) {
  .l-header__inner {
    padding-inline: 24px;
  }
}
@media screen and ( min-width: 1200px ) {
  .l-header__inner {
    max-width: 1560px;
    margin-inline: auto;
  }
}

.l-header__content {
  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: 100%;
}
.l-header__logo {
  width: 210px;
}
@media screen and ( min-width: 992px ) {
  .l-header__logo {
    width: 183px;
  }
}
.l-header__logo img {
  width: 100%;
}

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

.l-header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__nav-link {
  font-size: 12px;
}

.l-header__nav-button {
  margin-left: 4px;
}

@media screen and ( min-width: 992px ) {
  .l-nav-button {
    font-size: 14px;
  }
}

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

.l-drawer-icon {
  width: 32px;
  height: 28px;
  position: relative;
  padding-block: 0.6px 0.4px;
}
.l-drawer-icon.is-checked .l-drawer-icon__bar:nth-child(1) {
  display: none;
}
.l-drawer-icon.is-checked .l-drawer-icon__bar:nth-child(2) {
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-drawer-icon.is-checked .l-drawer-icon__bar:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-drawer-icon__bar {
  position: absolute;
  top: 0.6px;
  left: 0;
  border-radius: 2.5px;
  background: #4a3636;
}
.l-drawer-icon__bar:nth-of-type(1) {
  width: 25.6px;
  height: 3px;
}
.l-drawer-icon__bar:nth-of-type(1)::after {
  position: absolute;
  content: "";
  top: 0;
  left: 27px;
  width: 4.8px;
  height: 3px;
  border-radius: 2.5px;
  background: #4a3636;
}
.l-drawer-icon__bar:nth-of-type(2) {
  width: 32px;
  height: 3px;
  top: 12.6px;
}
.l-drawer-icon__bar:nth-of-type(3) {
  width: 32px;
  height: 3px;
  top: 24.6px;
}

@media screen and ( min-width: 992px ) {
  .l-header__drawer-nav {
    display: none;
  }
}

.l-drawer__content {
  background: #ffffff;
  position: absolute;
  top: 100%;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 0;
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.l-drawer__content.is-checked {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.l-drawer__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
  padding-top: 12px;
}

.l-drawer__nav-link {
  display: inline-block;
  line-height: 1.4;
  padding-block: 8px;
}

.l-drawer__nav-button {
  margin-top: 9px;
}

.l-main__pagetop-link {
  display: none;
}
@media screen and ( min-width: 1200px ) {
  .l-main__pagetop-link {
    display: block;
    position: fixed;
    right: 40px;
    bottom: 35px;
    width: 100px;
    height: 104px;
    z-index: 1100;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.5s, visibility 0.5s;
    transition: opacity 0.5s, visibility 0.5s;
  }
  .l-main__pagetop-link.is-show {
    opacity: 1;
    visibility: visible;
  }
}

.l-footer__inner {
  padding-top: 40px;
}
@media screen and ( min-width: 1200px ) {
  .l-footer__inner {
    padding-block: 120px;
    overflow: hidden;
  }
}

.l-footer__pagetop {
  padding-block: 23px;
  display: block;
  text-align: center;
}
@media screen and ( min-width: 1200px ) {
  .l-footer__pagetop {
    display: none;
  }
}

.l-footer__copyright {
  display: block;
  margin-top: 43px;
  padding-bottom: 25px;
  text-align: center;
  color: #fff;
  font-size: 10px;
  background: #67b0c7;
  position: relative;
  line-height: 1.6;
  font-weight: 400;
}
@media screen and ( min-width: 1200px ) {
  .l-footer__copyright {
    font-size: 14px;
    margin-top: 120px;
    padding-bottom: 32px;
  }
}
.l-footer__copyright::before {
  position: absolute;
  content: "";
  background: url(../../../img/spots-deco-wave-top.png) repeat-x;
  background-size: 96px 46px;
  width: 100%;
  height: 46px;
  left: 0;
  top: -45px;
}
@media screen and ( min-width: 1200px ) {
  .l-footer__copyright::before {
    background-size: 252px 120px;
    width: 100%;
    height: 120px;
    left: 0;
    top: -119px;
  }
}

.c-button {
  display: inline-block;
  text-align: center;
  border-radius: 40px;
  color: #4a3636;
  font-weight: 700;
  background: #ffffff;
  line-height: 1.6;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
}
.c-button:hover {
  background: #ffee56;
}
.c-button--small {
  font-size: 14px;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4a3636;
}
.c-button--default {
  font-size: 16px;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4a3636;
}
.c-button--large {
  font-size: 20px;
  padding: 8px 38px 10px 38px;
  border: 3px solid #4a3636;
}

.c-heading__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and ( min-width: 1200px ) {
  .c-heading__wrap {
    gap: 8px;
  }
}

.c-heading-icon img {
  width: 37.333px;
  height: 37.333px;
}
@media screen and ( min-width: 1200px ) {
  .c-heading-icon img {
    width: 48px;
    height: 48px;
  }
}

.c-heading--en {
  color: #4a3636;
  text-align: center;
  font-family: "Courgette", "Josefin Sans", sans-serif, cursive;
  font-size: 16px;
  line-height: 1.25;
}
@media screen and ( min-width: 1200px ) {
  .c-heading--en {
    font-size: 20px;
  }
}

.c-heading--jp {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #4a3636;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
}
@media screen and ( min-width: 1200px ) {
  .c-heading--jp {
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid #ffee56;
  }
}

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

.c-card__text--head {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and ( min-width: 1200px ) {
  .c-card__text--head {
    font-size: 20px;
  }
}

.c-card__text--sub {
  font-size: 12px;
  font-weight: 400;
}
@media screen and ( min-width: 1200px ) {
  .c-card__text--sub {
    font-size: 14px;
  }
}
@media screen and ( min-width: 1200px ) {
  .c-card__text--sub {
    font-size: 16px;
  }
}

.p-fv {
  background: url(/demo-0100/img/fv_bg_sp.png) no-repeat top center/cover;
  border-radius: 0px 0px 24px 24px;
  max-height: 554px;
  margin-top: 64px;
}
@media screen and ( min-width: 768px ) {
  .p-fv {
    background: url(/img/fv_bg_pc.png) no-repeat top center/cover;
    max-height: 740px;
  }
}

.p-fv__inner {
  position: relative;
  margin-inline: auto;
  max-width: 335px;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__inner {
    max-width: 848px;
  }
}

.p-fv__lead {
  padding-top: 17px;
  width: 100%;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__lead {
    padding-top: 34px;
  }
}

.p-fv__lead-description {
  color: #4a3636;
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
  font-family: "Kiwi Maru", serif;
  line-height: 1.25;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__lead-description {
    font-size: 24px;
    font-weight: 500;
  }
}

.p-fv__lead-title {
  width: 100%;
  margin-top: 20px;
  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;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__lead-title {
    margin-top: 24px;
  }
}

.p-lead__title01 {
  max-width: 335px;
}
@media screen and ( min-width: 1200px ) {
  .p-lead__title01 {
    max-width: 520px;
  }
}

.p-lead__title02 {
  margin-top: 12px;
  max-width: 240px;
}
@media screen and ( min-width: 1200px ) {
  .p-lead__title02 {
    margin-top: 16px;
    max-width: 356px;
  }
}

.p-fv__image--fukidashi {
  width: 142px;
  position: absolute;
  top: 195px;
  left: 0px;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__image--fukidashi {
    width: 244px;
    top: 277px;
    left: 37px;
  }
}

.p-fv__image--present {
  width: 110px;
  position: absolute;
  top: 188px;
  right: 25px;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__image--present {
    width: 180px;
    top: 292px;
    right: 126px;
  }
}

.p-fv__image--device {
  width: 200px;
  position: relative;
  margin-top: 113px;
  margin-inline: auto;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__image--device {
    width: 250px;
    margin-top: 33px;
  }
}
.p-fv__image--device img {
  width: 100%;
}

.p-fv__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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 160px;
  top: 49%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and ( min-width: 1200px ) {
  .p-fv__info {
    width: 200px;
  }
}

.p-fv__info-tag {
  width: 100%;
  padding: 6px 10px;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  color: #fff;
  font-size: 12.8px;
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-weight: 700;
  border-radius: 12.8px 12.8px 0 0;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__info-tag {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 16px 16px 0 0;
  }
}

.p-fv__info-body {
  background: #fff;
  padding-block: 13px 19px;
  padding-inline: 14px;
  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;
  border-radius: 0 0 12.8px 12.8px;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__info-body {
    padding-block: 16px 24px;
    padding-inline: 12px;
    border-radius: 0 0 16px 16px;
  }
}

.p-fv__guide-head {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-bottom: 2.4px solid #ce2073;
  padding-bottom: 0.8px;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__guide-head {
    font-size: 14px;
    border-bottom: 3px solid #ce2073;
    padding-bottom: 1px;
  }
}

.p-fv__guide-date {
  display: inline-block;
  margin-top: 3px;
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12px;
  font-weight: 700;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__guide-date {
    margin-top: 4px;
    font-size: 16px;
  }
}

.p-fv__info-button {
  margin-top: 12.8px;
}
@media screen and ( min-width: 1200px ) {
  .p-fv__info-button {
    margin-top: 16px;
  }
}

.p-fv-button {
  padding: 2px 22px 4px 22px;
}
@media screen and ( min-width: 1200px ) {
  .p-fv-button {
    font-size: 16px;
    padding: 4px 22px 6px 22px;
  }
}

.p-fv__image--food {
  width: 86px;
  height: 141px;
  position: absolute;
  bottom: -17px;
  left: 0px;
}
@media screen and ( min-width: 768px ) {
  .p-fv__image--food {
    width: 130px;
    bottom: 10px;
    left: -70px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-fv__image--food {
    width: 202px;
    bottom: 162px;
    left: 5px;
  }
}

.p-fv__image--cat01 {
  width: 62px;
  position: absolute;
  bottom: 46px;
  right: 0px;
}
@media screen and ( min-width: 768px ) {
  .p-fv__image--cat01 {
    width: 130px;
    bottom: 0px;
    right: -80px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-fv__image--cat01 {
    width: 170px;
    bottom: 45px;
    right: 63px;
  }
}

.p-fv__image--cat02 {
  width: 98px;
  position: absolute;
  bottom: -12px;
  right: 9px;
}
@media screen and ( min-width: 768px ) {
  .p-fv__image--cat02 {
    width: 170px;
    bottom: -70px;
    right: -120px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-fv__image--cat02 {
    width: 233px;
    bottom: -60px;
    right: 0px;
  }
}

.p-about {
  overflow: hidden;
}

.p-about__inner {
  margin-inline: auto;
  max-width: 335px;
  padding-top: 188px;
  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;
}
@media screen and ( min-width: 992px ) {
  .p-about__inner {
    max-width: 770px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-about__inner {
    max-width: 1024px;
    padding-top: 177px;
  }
}

.p-deco--cat {
  position: absolute;
  display: block;
  background: url(../../../img/direction=default.png) no-repeat center center/contain;
  right: -20px;
  top: -10px;
  width: 54px;
  height: 120px;
  z-index: -1;
}
@media screen and ( min-width: 768px ) {
  .p-deco--cat {
    right: -89px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-deco--cat {
    right: -166.12px;
    top: -80px;
    width: 100px;
    height: 220px;
    z-index: 1;
  }
}

.p-deco--stripe {
  display: none;
}
@media screen and ( min-width: 768px ) {
  .p-deco--stripe {
    position: absolute;
    display: block;
    background: url(../../../img/about-stripe.png) no-repeat center center/contain;
    left: -340px;
    top: -20px;
    width: 250px;
    height: 250px;
    z-index: -1;
  }
}
@media screen and ( min-width: 992px ) {
  .p-deco--stripe {
    left: -353px;
    top: -20px;
    width: 250px;
    height: 250px;
    z-index: -1;
  }
}

.p-deco--image-l {
  position: absolute;
  display: block;
  background: url(../../../img/photo-left.png) no-repeat center center/contain;
  left: -160px;
  top: 395px;
  width: 200px;
  height: 200px;
  z-index: -1;
}
@media screen and ( min-width: 768px ) {
  .p-deco--image-l {
    background: url(../../../img/about-photo_L.png) no-repeat center center/contain;
    left: -190px;
    top: 380px;
    width: 230px;
    height: 230px;
  }
}
@media screen and ( min-width: 992px ) {
  .p-deco--image-l {
    left: -350px;
    width: 300px;
    height: 300px;
    top: 374px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-deco--image-l {
    left: -670px;
    top: 74px;
    width: 480px;
    height: 480px;
  }
}

.p-deco--image-r {
  position: absolute;
  display: block;
  background: url(../../../img/photo-right.png) no-repeat center center/contain;
  right: -160px;
  top: 273px;
  width: 200px;
  height: 200px;
  z-index: -1;
}
@media screen and ( min-width: 768px ) {
  .p-deco--image-r {
    background: url(../../../img/about-photo_R.png) no-repeat center center/contain;
    width: 230px;
    height: 230px;
    top: 211px;
    right: -195px;
  }
}
@media screen and ( min-width: 992px ) {
  .p-deco--image-r {
    width: 300px;
    height: 300px;
    top: 130px;
    right: -358px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-deco--image-r {
    width: 480px;
    height: 480px;
    top: 73.07px;
    right: -616.2px;
  }
}

.p-deco--wave01 {
  display: none;
}
@media screen and ( min-width: 992px ) {
  .p-deco--wave01 {
    position: absolute;
    display: block;
    background: url(../../../img/bg_wavyline.png) no-repeat center center/cover;
    right: -898px;
    top: 607.33px;
    width: 806.851px;
    height: 12.006px;
    z-index: -1;
  }
}

.p-deco--wave02 {
  display: none;
}
@media screen and ( min-width: 992px ) {
  .p-deco--wave02 {
    position: absolute;
    display: block;
    background: url(../../../img/bg_wavyline.png) no-repeat center center/cover;
    right: -830px;
    top: 640.34px;
    width: 806.851px;
    height: 12.006px;
    z-index: -1;
  }
}

.p-deco--arrow {
  position: absolute;
  display: block;
  background: url(../../../img/about-arrow.png) no-repeat center center/contain;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -36px;
  width: 100px;
  height: 36px;
  z-index: -1;
}
@media screen and ( min-width: 992px ) {
  .p-deco--arrow {
    width: 140px;
    height: 50px;
    bottom: -50px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-deco--arrow {
    top: 827px;
  }
}

.p-deco--steps {
  position: absolute;
  display: block;
  background: url(../../../img/about-steps-p.png) no-repeat center center/contain;
  left: calc(-50vw + 110px);
  top: 552px;
  width: 216px;
  height: 433px;
  z-index: -10;
}
@media screen and ( min-width: 1200px ) {
  .p-deco--steps {
    width: 427px;
    height: 817px;
    top: 321px;
    left: calc(-50vw + 321px);
  }
}

.p-deco--buttons {
  position: absolute;
  display: block;
  background: url(../../../img/Goods=button.png) no-repeat center center/contain;
  right: 0;
  top: 720px;
  width: 48px;
  height: 48px;
  z-index: -1;
}
@media screen and ( min-width: 768px ) {
  .p-deco--buttons {
    top: 670px;
    right: -137px;
  }
}
@media screen and ( min-width: 992px ) {
  .p-deco--buttons {
    width: 101px;
    height: 100.047px;
    top: 601.32px;
    right: -131px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-deco--buttons {
    width: 101px;
    height: 100.047px;
    top: 601.32px;
    right: -181px;
  }
}

.p-deco--fabrics {
  position: absolute;
  display: block;
  background: url(../../../img/Goods=fabric.png) no-repeat center center/contain;
  top: 762px;
  right: 38px;
  width: 133px;
  height: 65.003px;
  z-index: -10;
}
@media screen and ( min-width: 768px ) {
  .p-deco--fabrics {
    top: 757.4px;
    right: -126px;
  }
}
@media screen and ( min-width: 992px ) {
  .p-deco--fabrics {
    width: 200px;
    height: 150px;
    top: 757.4px;
    right: -213px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-deco--fabrics {
    width: 308px;
    height: 150.604px;
    top: 757.4px;
    right: -258px;
  }
}

.p-deco--logo {
  position: absolute;
  display: block;
  background: url(../../../img/ONOMICHI-sp.png) no-repeat center center/cover;
  top: 848px;
  width: 355px;
  height: 37.2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and ( min-width: 768px ) {
  .p-deco--logo {
    background: url(../../../img/ONOMICHI-sp.png) no-repeat center center/contain;
    width: 600px;
    height: 97px;
    top: 840px;
  }
}
@media screen and ( min-width: 992px ) {
  .p-deco--logo {
    background: url(../../../img/ONOMICHI-p.png) no-repeat center center/contain;
    width: 891px;
    height: 97px;
    top: 996px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-deco--logo {
    top: 996px;
  }
}

.p-about__content {
  position: relative;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 20px;
  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;
  gap: 24px;
}
@media screen and ( min-width: 768px ) {
  .p-about__content {
    gap: 32px;
    border-radius: 40px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-about__content {
    padding-inline: 13.4433962264%;
    max-width: 848px;
  }
}

.p-about__heading {
  position: relative;
}
.p-about__heading::before {
  position: absolute;
  content: "";
  display: block;
  width: 83.9px;
  height: 63.9px;
  left: -35.5px;
  top: -3.13px;
  background: url(../../img/img_about_pic1.png) no-repeat center center/cover;
}
@media screen and ( min-width: 992px ) {
  .p-about__heading::before {
    width: 140px;
    height: 106px;
    left: -179px;
    top: 5px;
  }
}
.p-about__heading::after {
  position: absolute;
  content: "";
  display: block;
  width: 83.9px;
  height: 63.9px;
  right: -46.72px;
  top: -6px;
  background: url(../../img/img_about_pic2.png) no-repeat center center/cover;
}
@media screen and ( min-width: 992px ) {
  .p-about__heading::after {
    width: 140px;
    height: 106px;
    right: -177px;
    top: 11px;
  }
}

.p-about__text-head {
  font-weight: 700;
}
@media screen and ( min-width: 992px ) {
  .p-about__text-head {
    font-size: 16px;
    letter-spacing: 0.02em;
  }
}

.p-about__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 18px;
}
@media screen and ( min-width: 992px ) {
  .p-about__text-wrap {
    gap: 27px;
  }
}

.p-about__text-body {
  font-size: 12px;
}
@media screen and ( min-width: 992px ) {
  .p-about__text-body {
    font-size: 16px;
  }
}

.p-about__text-last {
  font-weight: 700;
  padding-block: 8px 6px;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and ( min-width: 992px ) {
  .p-about__text-last {
    padding-block: 12px 10px;
    font-size: 20px;
  }
}

@media screen and ( min-width: 992px ) {
  .p-about-button {
    font-size: 20px;
    padding: 8px 38px 10px 38px;
    border: 3px solid #4a3636;
  }
}

.aboutScroll {
  margin-top: 176.87px;
}
@media screen and ( min-width: 992px ) {
  .aboutScroll {
    margin-top: 200px;
  }
}
@media screen and ( min-width: 1200px ) {
  .aboutScroll {
    margin-top: 258px;
  }
}

.p-about__swiper {
  width: 100%;
}

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

.swiper-card__img {
  display: block;
}
.swiper-card__img img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and ( min-width: 1200px ) {
  .swiper-card__img img {
    width: 200px;
    height: 200px;
  }
}

.p-step {
  overflow: hidden;
}

.p-step__inner {
  position: relative;
  padding-top: 32.8px;
  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;
}
@media screen and ( min-width: 1200px ) {
  .p-step__inner {
    padding-top: 60px;
    margin-inline: auto;
    max-width: 1024px;
  }
}

.p-step__content {
  position: relative;
  padding-block: 32px 21px;
  max-width: 1024px;
}
@media screen and ( min-width: 1200px ) {
  .p-step__content {
    padding-block: 60px;
  }
}
.p-step__content::before {
  position: absolute;
  content: "";
  background: url(../../img/img_map.png) no-repeat center center/contain;
  width: 149px;
  height: 223px;
  top: 31.8px;
  left: -22px;
}
@media screen and ( min-width: 992px ) {
  .p-step__content::before {
    width: 460px;
    height: 689px;
    top: 0;
    left: -208px;
  }
}

.p-step__heading {
  position: relative;
  width: 100%;
}
.p-step__heading::before {
  position: absolute;
  content: "";
  background: url(../../../img/cats=tabby.png) no-repeat center center/contain;
  width: 105px;
  height: 63px;
  top: 0;
  right: 4px;
}
@media screen and ( min-width: 992px ) {
  .p-step__heading::before {
    width: 238px;
    height: 141px;
    top: -26px;
    right: -13px;
  }
}
.p-step__heading::after {
  position: absolute;
  content: "";
  background: url(../../../img/cats=back.png) no-repeat center center/contain;
  width: 94px;
  height: 80px;
  top: 5px;
  right: -52px;
}
@media screen and ( min-width: 992px ) {
  .p-step__heading::after {
    width: 214px;
    height: 181.104px;
    top: -16.03px;
    right: -139px;
  }
}

.p-step__cards {
  position: relative;
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
}
@media screen and ( min-width: 992px ) {
  .p-step__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 32px;
    margin-block: 40px;
  }
}
.p-step__cards::before {
  position: absolute;
  content: "";
  background: url(../../../img/direction=default.png) no-repeat center center/contain;
  width: 55px;
  height: 120px;
  top: -64.33px;
  right: -2px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and ( min-width: 992px ) {
  .p-step__cards::before {
    display: none;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-step__cards::before {
    display: block;
    width: 100px;
    height: 220px;
    top: -37px;
    right: -208px;
  }
}
.p-step__cards::after {
  position: absolute;
  content: "";
  background: url(../../../img/direction=opposite.png) no-repeat center center/contain;
  width: 55px;
  height: 120px;
  bottom: 321.33px;
  right: -1px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and ( min-width: 992px ) {
  .p-step__cards::after {
    display: none;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-step__cards::after {
    display: block;
    background: url(../../../img/direction=opposite.png) no-repeat center center/contain;
    width: 100px;
    height: 220px;
    bottom: -62px;
    left: -208px;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-step__card {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding-bottom: 14px;
}
@media screen and ( min-width: 992px ) {
  .p-step__card {
    gap: 24px;
    width: 320px;
    padding-bottom: 8px;
  }
}
.p-step__card:nth-child(1)::after {
  position: absolute;
  content: "";
  background: url(../../../img/line-S.png) no-repeat center center/contain;
  width: 7px;
  height: 36px;
  bottom: -36px;
}
@media screen and ( min-width: 992px ) {
  .p-step__card:nth-child(1)::after {
    background: url(../../../img/line-P.png) no-repeat center center/contain;
    width: 113px;
    height: 24px;
    top: 204px;
    right: -48px;
  }
}
@media screen and ( min-width: 992px ) {
  .p-step__card:nth-child(2) {
    margin-top: 69px;
  }
}
.p-step__card:nth-child(2)::before {
  position: absolute;
  content: "";
  background: url(../../../img/direction=opposite.png) no-repeat center center/contain;
  width: 55px;
  height: 120px;
  top: -17.78px;
  left: -1px;
}
@media screen and ( min-width: 992px ) {
  .p-step__card:nth-child(2)::before {
    display: none;
  }
}
.p-step__card:nth-child(2)::after {
  position: absolute;
  content: "";
  background: url(../../../img/line-S.png) no-repeat center center/contain;
  width: 7px;
  height: 38px;
  bottom: -37px;
}
@media screen and ( min-width: 992px ) {
  .p-step__card:nth-child(2)::after {
    background: url(../../../img/line-P.png) no-repeat center center/contain;
    width: 113px;
    height: 24px;
    top: 136px;
    right: -57px;
  }
}
.p-step__card-image {
  width: 196px;
}
@media screen and ( min-width: 992px ) {
  .p-step__card-image {
    width: 280px;
  }
}
.p-step__card-image img {
  width: 100%;
}

.p-step__card-body {
  gap: 16px;
}
.p-step__link {
  position: relative;
  padding: 8px 12px 8px 40px;
  background: #ffffff;
  text-align: center;
}
.p-step__link-text {
  font-weight: 700;
}
@media screen and ( min-width: 992px ) {
  .p-step__link-text {
    font-size: 16px;
  }
}
.p-step__link::before {
  position: absolute;
  content: "";
  background: url(../../../img/Icon-insta.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
}

.p-step__button {
  text-align: center;
}

@media screen and ( min-width: 1200px ) {
  .p-step-button {
    font-size: 20px;
    padding: 8px 38px 10px 38px;
    border: 3px solid #4a3636;
  }
}

.p-prizes__inner {
  padding-top: 100.67px;
  padding-bottom: 216px;
  min-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and ( min-width: 1200px ) {
  .p-prizes__inner {
    padding-top: 217px;
    padding-bottom: 640px;
  }
}

.p-prizes__content {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 121px 20px 35px;
  max-width: 1024px;
  margin: 0 auto;
  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;
}
@media screen and ( min-width: 1200px ) {
  .p-prizes__content {
    padding: 120px 56px 53px;
  }
}
.p-prizes__content::before {
  position: absolute;
  content: "";
  display: block;
  background: url(../../../img/deco_prizes1_sp.png) no-repeat center center/contain;
  max-width: 238px;
  height: 83px;
  top: -82px;
  inset-inline: 0;
  margin-inline: auto;
}
@media screen and ( min-width: 1200px ) {
  .p-prizes__content::before {
    background: url(../../../img/deco_prizes1_p.png) no-repeat center center/contain;
    max-width: 366px;
    height: 149px;
    top: -148px;
  }
}
.p-prizes__content::after {
  position: absolute;
  content: "";
  background: url(../../../img/prizes-bg-s.png) no-repeat center center/cover;
  width: 100vw;
  height: 260px;
  bottom: -216px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  z-index: -1;
}
@media screen and ( min-width: 1200px ) {
  .p-prizes__content::after {
    background: url(../../../img/prizes-bg-p.png) no-repeat center center/cover;
    width: 100vw;
    height: 640px;
    bottom: -640px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    z-index: -1;
  }
}

.p-prizes__title {
  position: absolute;
  top: -63px;
  left: 0;
  right: 0;
  margin: auto;
  padding-inline: 20px;
}
@media screen and ( min-width: 1200px ) {
  .p-prizes__title {
    top: -121px;
    max-width: 858px;
    padding-inline: 0;
  }
}

.p-prizes__heading {
  position: relative;
}
@media screen and ( min-width: 1200px ) {
  .p-prizes__heading::before {
    position: absolute;
    content: "";
    background: url(../../../img/pattern=left.png) no-repeat center center/contain;
    width: 315px;
    height: 86px;
    top: 0;
    left: -83px;
  }
  .p-prizes__heading::after {
    position: absolute;
    content: "";
    background: url(../../../img/pattern=right.png) no-repeat center center/contain;
    width: 315px;
    height: 86px;
    top: 0;
    right: -83px;
  }
}

.p-prizes__description {
  text-align: center;
  font-size: 12px;
  margin-top: 16px;
}
@media screen and ( min-width: 1200px ) {
  .p-prizes__description {
    margin-top: 40px;
    font-size: 16px;
  }
}

.p-prizes__grid-top,
.p-prizes__grid-bottom {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 15px;
  max-width: 335px;
}
@media screen and ( max-width: 349px) {
  .p-prizes__grid-top,
  .p-prizes__grid-bottom {
    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: 992px ) {
  .p-prizes__grid-top,
  .p-prizes__grid-bottom {
    max-width: 912px;
  }
}

@media screen and ( min-width: 992px ) {
  .p-prizes__grid-top {
    grid-template-columns: repeat(2, 440px);
    gap: 32px;
  }
}

.p-prizes__card {
  position: relative;
  padding-top: 24px;
  max-width: 440px;
}
.p-prizes__card:hover .p-prizes__card-body {
  outline: 2px solid #9ed0e0;
}
.p-prizes__card:hover .p-prizes__card-body ~ .p-prizes__zoom {
  background: linear-gradient(135deg, transparent 0%, transparent 50%, #9ed0e0 50%, #9ed0e0 100%);
}
.p-prizes__card:hover:hover .p-prizes__body-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and ( min-width: 992px ) {
  .p-prizes__card {
    padding-top: 50px;
  }
  .p-prizes__card:hover .p-prizes__card-body {
    outline: 4px solid #9ed0e0;
  }
}

.p-prizes__card-head {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../../../img/prizes-bg-star.png) no-repeat center center/contain;
  width: 48px;
  height: 48px;
  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;
  z-index: 100;
}
@media screen and ( min-width: 992px ) {
  .p-prizes__card-head {
    width: 100px;
    height: 100px;
  }
}

.p-prizes__head-text {
  color: #fff;
  font-size: 7.68px;
  font-weight: 700;
  width: 17.6px;
  height: 13.6px;
  text-align: center;
}
@media screen and ( min-width: 992px ) {
  .p-prizes__head-text {
    font-size: 16px;
    width: 37px;
    height: 28px;
  }
}

.p-prizes__head-number {
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 23.04px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and ( min-width: 992px ) {
  .p-prizes__head-number {
    font-size: 48px;
  }
}

.p-prizes__card-body {
  min-width: 160px;
  min-height: 196px;
  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;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
@media screen and ( min-width: 992px ) {
  .p-prizes__card-body {
    border-radius: 24px;
  }
}

.p-prizes__body-image {
  min-width: 160px;
  min-height: 140px;
  overflow: hidden;
}
.p-prizes__body-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -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-prizes__body-text {
  width: 100%;
  height: 55px;
  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: 12px;
  font-weight: 700;
}
@media screen and ( min-width: 992px ) {
  .p-prizes__body-text {
    height: 122px;
    font-size: 20px;
  }
}

.p-prizes__zoom {
  position: absolute;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, transparent 0%, transparent 50%, #67b0c7 50%, #67b0c7 100%);
  right: 0;
  bottom: 0;
  border-radius: 0 0 7px 0;
}
@media screen and ( min-width: 992px ) {
  .p-prizes__zoom {
    width: 100px;
    height: 100px;
    border-radius: 0 0 23px 0;
  }
}

.p-prizes__zoom-icon {
  position: absolute;
  width: 11.52px;
  height: 11.52px;
  right: 5.22px;
  bottom: 6.12px;
  z-index: 1000;
}
@media screen and ( min-width: 992px ) {
  .p-prizes__zoom-icon {
    width: 32px;
    height: 32px;
    right: 13.5px;
    bottom: 15px;
  }
}

.p-prizes__grid-bottom {
  margin-top: 15px;
}
@media screen and ( min-width: 992px ) {
  .p-prizes__grid-bottom {
    margin-top: 40px;
    grid-template-columns: repeat(3, 280px);
    gap: 36px;
  }
}
@media screen and ( min-width: 992px ) {
  .p-prizes__grid-bottom .p-prizes__card {
    padding-top: 40px;
  }
}
.p-prizes__grid-bottom .p-prizes__card:nth-child(3) {
  grid-column: 1/span 2; /* 1列目から最後の列まで幅を取る（2列全幅） */
  justify-self: center; /* セル内で中央寄せ */
  width: 160px;
}
@media screen and ( max-width: 349px) {
  .p-prizes__grid-bottom .p-prizes__card:nth-child(3) {
    width: 100%;
  }
}
@media screen and ( min-width: 992px ) {
  .p-prizes__grid-bottom .p-prizes__card:nth-child(3) {
    grid-column: 3;
    width: 100%;
  }
}
@media screen and ( min-width: 992px ) {
  .p-prizes__grid-bottom .p-prizes__card-head {
    width: 80px;
    height: 80px;
    font-size: 12.8px;
  }
}
@media screen and ( min-width: 992px ) {
  .p-prizes__grid-bottom .p-prizes__head-text {
    font-size: 12.8px;
  }
}
@media screen and ( min-width: 992px ) {
  .p-prizes__grid-bottom .p-prizes__head-number {
    font-size: 38.4px;
  }
}
.p-prizes__grid-bottom .p-prizes__card-body {
  border-radius: 8px;
}
@media screen and ( min-width: 992px ) {
  .p-prizes__grid-bottom .p-prizes__card-body {
    border-radius: 16px;
  }
}
.p-prizes__grid-bottom .p-prizes__body-image {
  overflow: hidden;
}
@media screen and ( min-width: 992px ) {
  .p-prizes__grid-bottom .p-prizes__body-image {
    border-radius: 16px 16px 0 0;
  }
}
.p-prizes__grid-bottom .p-prizes__body-image img {
  -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-prizes__grid-bottom .p-prizes__body-image img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and ( min-width: 992px ) {
  .p-prizes__grid-bottom .p-prizes__body-text {
    height: 80px;
    font-size: 16px;
  }
}
@media screen and ( min-width: 992px ) {
  .p-prizes__grid-bottom .p-prizes__zoom {
    width: 64px;
    height: 64px;
    border-radius: 0 0 14px 0;
  }
}
@media screen and ( min-width: 992px ) {
  .p-prizes__grid-bottom .p-prizes__zoom-icon {
    width: 20.48px;
    height: 20.48px;
    right: 8px;
    bottom: 8.96px;
  }
}

.p-prizes__button {
  margin-top: 18px;
}
@media screen and ( min-width: 992px ) {
  .p-prizes__button {
    margin-top: 40px;
  }
}

@media screen and ( min-width: 992px ) {
  .p-prizes-button {
    font-size: 20px;
    padding: 8px 38px 10px 38px;
    border: 3px solid #4a3636;
  }
}

.p-prizes__card--button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
}
@media screen and ( min-width: 1200px ) {
  .p-prizes__card--button {
    border-radius: 24px;
  }
}

dialog button {
  all: unset;
}

.p-prizes-modal {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}
.p-prizes-modal::-ms-backdrop {
  background: rgba(0, 0, 0, 0.4);
}
.p-prizes-modal::backdrop {
  background: rgba(0, 0, 0, 0.4);
}

.p-modal__content {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 336px;
  height: 480px;
  border: none;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( min-width: 1200px ) {
  .p-modal__content {
    width: 480px;
    height: 650px;
  }
}

.p-modal__content-image {
  width: 100%;
}
.p-modal__content-image img {
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and ( min-width: 1200px ) {
  .p-modal__content-image img {
    height: 300px;
  }
}

.p-modal__content-body {
  padding-top: 39px;
  padding-inline: 20px;
}
@media screen and ( min-width: 1200px ) {
  .p-modal__content-body {
    padding-top: 32px;
    padding-inline: 40px;
  }
}

.p-modal__body-sub {
  margin-top: 12px;
}

.p-modal__close-button {
  margin-top: 16px;
  text-align: center;
}
@media screen and ( min-width: 1200px ) {
  .p-modal__close-button {
    margin-top: 24px;
  }
}

.p-spots {
  background-color: #67b0c7;
  position: relative;
}

.p-spots__inner {
  padding-bottom: 20px;
}
@media screen and ( min-width: 1200px ) {
  .p-spots__inner {
    padding-bottom: 0;
  }
}
.p-spots__inner::before {
  position: absolute;
  content: "";
  background: url(../../../img/spots-deco-wave-top.png) repeat-x;
  background-size: 96px 46px;
  width: 100%;
  height: 46px;
  top: -45px;
}
@media screen and ( min-width: 1200px ) {
  .p-spots__inner::before {
    background-size: 252px 128px;
    height: 128px;
    top: -127px;
  }
}
.p-spots__inner::after {
  position: absolute;
  content: "";
  background: url(../../../img/spots-deco-wave-bottom.png) repeat-x;
  background-size: 96px 46px;
  width: 100%;
  height: 46px;
  bottom: -44px;
}
@media screen and ( min-width: 1200px ) {
  .p-spots__inner::after {
    background-size: 252px 128px;
    height: 128px;
    bottom: -125px;
  }
}

.p-spots__content {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  width: 100%;
  overflow: hidden;
}
@media screen and ( min-width: 1200px ) {
  .p-spots__content::after {
    position: absolute;
    content: "";
    background: url(../../../img/direction=default.png) no-repeat center center/contain;
    width: 100px;
    height: 220px;
    left: 36px;
    bottom: 0;
  }
}

.p-spots__content-top {
  width: 100%;
}
@media screen and ( min-width: 768px ) {
  .p-spots__content-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 32px;
    padding-left: 70px;
    padding-right: 0;
    margin-top: 24px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-spots__content-top {
    padding-left: 250px;
    margin-top: 0;
  }
}

@media screen and ( min-width: 768px ) {
  .p-spots__top-head {
    width: 43px;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-spots__top-head {
    width: 56px;
  }
}

.p-spots__title {
  display: block;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin-inline: auto;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  padding-left: 36px;
  position: relative;
}
@media screen and ( min-width: 768px ) {
  .p-spots__title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding-left: 0;
    padding-top: 47px;
    letter-spacing: 0.3em;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-spots__title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 40px;
    padding-left: 0;
    padding-top: 66px;
    letter-spacing: 0.3em;
  }
}
.p-spots__title::before {
  position: absolute;
  content: "";
  background: url(../../../img/icon-star.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and ( min-width: 768px ) {
  .p-spots__title::before {
    width: 40px;
    height: 40px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and ( min-width: 1200px ) {
  .p-spots__title::before {
    width: 56px;
    height: 56px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.spotsSwiper {
  margin-top: 24px;
  width: 100%;
}
@media screen and ( min-width: 768px ) {
  .spotsSwiper {
    margin-top: 0;
    position: relative;
    width: calc(100vw - 145px);
    margin-right: calc(50vw - 50%);
  }
}
@media screen and ( min-width: 1200px ) {
  .spotsSwiper {
    position: relative;
    margin-top: 0px;
    width: calc(100vw - 332px);
  }
}

.p-spots__swiper {
  width: 100%;
}

.p-spots__slide {
  height: auto;
}

.p-spots-slide__content {
  display: block;
  border-radius: 12px;
  background: #fff;
  height: 100%;
  overflow: hidden;
}
@media screen and ( min-width: 1200px ) {
  .p-spots-slide__content {
    border-radius: 24px;
  }
}

.p-spots-slide__content-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and ( min-width: 1200px ) {
  .p-spots-slide__content-image img {
    aspect-ratio: 0;
  }
}

.p-spots-slide__content-body {
  padding-block: 16px 31px;
  padding-inline: 24px;
}
@media screen and ( min-width: 1200px ) {
  .p-spots-slide__content-body {
    padding-block: 24px 40px;
    padding-inline: 32px;
  }
}

.p-spots-slide__body-sub {
  margin-top: 16px;
}
@media screen and ( min-width: 1200px ) {
  .p-spots-slide__body-sub {
    margin-top: 24px;
  }
}

@media screen and ( min-width: 1200px ) {
  .p-spots__button-prev,
  .p-spots__button-next {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 94%;
    opacity: 1 !important;
  }
  .p-spots__button-prev::after,
  .p-spots__button-next::after {
    display: none;
  }
}

.p-spots__button-prev {
  display: none;
}
@media screen and ( min-width: 1200px ) {
  .p-spots__button-prev {
    display: block;
    background: url(../../../img/Icon-spots-arrow.svg) no-repeat center center/contain;
    left: -4%;
  }
}

.p-spots__button-next {
  display: none;
}
@media screen and ( min-width: 1200px ) {
  .p-spots__button-next {
    display: block;
    background: url(../../../img/Icon-spots-arrow.svg) no-repeat center center/contain;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    right: 24%;
  }
}

@media screen and ( min-width: 1200px ) {
  .p-spots__content-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1024px;
    margin-top: 64px;
    margin-inline: auto;
  }
}

.p-spots__body-logo {
  display: block;
  text-align: center;
}
.p-spots__body-logo img {
  width: 255px;
}
@media screen and ( min-width: 1200px ) {
  .p-spots__body-logo img {
    width: 495px;
  }
}

.p-spots__body-description {
  margin-top: 16px;
}
@media screen and ( min-width: 1200px ) {
  .p-spots__body-description {
    margin-top: 0;
  }
}

.p-spots__text {
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 11.4px;
}
@media screen and ( min-width: 1200px ) {
  .p-spots__text {
    font-size: 16px;
  }
}

.p-spots__button {
  margin-top: 24px;
}
@media screen and ( min-width: 1200px ) {
  .p-spots__button {
    text-align: right;
  }
}

@media screen and ( min-width: 1200px ) {
  .p-spots-button {
    font-size: 20px;
    padding: 8px 38px 10px 38px;
    border: 3px solid #4a3636;
  }
}

.p-qa__inner {
  padding-block: 86px 30px;
}
@media screen and ( min-width: 1200px ) {
  .p-qa__inner {
    padding-block: 242px 120px;
  }
}

.p-qa__content {
  max-width: clamp(335px, 70%, 1024px);
  margin-inline: auto;
}

.p-qa__boxes {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and ( min-width: 1200px ) {
  .p-qa__boxes {
    margin-top: 40px;
    gap: 24px;
  }
}

.p-qa__box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
  width: 100%;
}
.p-qa__box.is-open .p-qa__q .p-qa__icon::after {
  -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;
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}
.p-qa__box:nth-of-type(n + 2) .p-qa__q {
  padding: 10px 14px 10px 14px;
}
@media screen and ( min-width: 1200px ) {
  .p-qa__box:nth-of-type(n + 2) .p-qa__q {
    padding: 20.5px 22px 19.5px 22px;
  }
}

.p-qa__q {
  padding: 10px 14px 12px 14px;
  position: relative;
  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: 1200px ) {
  .p-qa__q {
    padding: 20.5px 22px 21.5px 22px;
  }
}

.p-qa__q-icon {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  color: #67b0c7;
  font-size: 24px;
  line-height: 1.25;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and ( min-width: 1200px ) {
  .p-qa__q-icon {
    font-size: 32px;
  }
}

.p-qa__q-text {
  display: inline-block;
  margin-left: 13px;
  margin-right: 12px;
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  text-align: left;
  width: 85.05859375%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and ( min-width: 1200px ) {
  .p-qa__q-text {
    font-size: 20px;
    margin-left: 16px;
    margin-right: 16px;
  }
}

.p-qa__icon {
  display: block;
  width: 26px;
  height: 26px;
  background: #9ed0e0;
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and ( min-width: 1200px ) {
  .p-qa__icon {
    width: 48px;
    height: 48px;
  }
}
.p-qa__icon::before, .p-qa__icon::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: #fff;
  border-radius: 2.5px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and ( min-width: 1200px ) {
  .p-qa__icon::before, .p-qa__icon::after {
    width: 19px;
    height: 3px;
  }
}
.p-qa__icon::after {
  -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;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.p-qa__box-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.p-qa__a {
  padding-top: 16px;
  padding-bottom: 12px;
  padding-inline: 14px;
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0 0 10px 10px;
  width: 100%;
}
@media screen and ( min-width: 1200px ) {
  .p-qa__a {
    padding-top: 26px;
    padding-bottom: 22px;
    padding-inline: 22px;
    border-radius: 0 0 15px 15px;
  }
}

.p-qa__a-icon {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  color: #67b0c7;
  font-size: 24px;
  line-height: 1.25;
}
@media screen and ( min-width: 1200px ) {
  .p-qa__a-icon {
    font-size: 32px;
  }
}

.p-qa__a-text {
  display: inline-block;
  margin-left: 16px;
  color: #4a3636;
  font-size: 14px;
}
@media screen and ( min-width: 1200px ) {
  .p-qa__a-text {
    font-size: 16px;
  }
}

.p-entry__inner {
  padding-bottom: 132px;
  position: relative;
}
@media screen and ( min-width: 1200px ) {
  .p-entry__inner {
    padding-bottom: 520px;
  }
}
.p-entry__inner::after {
  position: absolute;
  content: "";
  background: url(../../../img/entry-bg-s.png) no-repeat center center/cover;
  width: 100%;
  height: 99px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and ( min-width: 1200px ) {
  .p-entry__inner::after {
    background: url(../../../img/entry-bg-p.png) no-repeat center center/cover;
    height: 400px;
  }
}

.p-entry__content {
  margin-inline: auto;
  max-width: clamp(335px, 70%, 1024px);
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  padding: 16px;
  position: relative;
}
@media screen and ( min-width: 1200px ) {
  .p-entry__content {
    padding-block: 32px;
    padding-inline: 48px;
  }
}

.p-entry__lists {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and ( min-width: 1200px ) {
  .p-entry__lists {
    margin-top: 40px;
  }
}

.p-entry__list {
  width: 100%;
  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;
  gap: 7px;
  padding-bottom: 15px;
}
@media screen and ( min-width: 1200px ) {
  .p-entry__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 11px;
  }
}
.p-entry__list:nth-child(n+2) {
  padding-top: 12px;
  border-top: 1px solid #cccccc;
}

.p-entry__text-head {
  display: block;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  margin-left: 16px;
}
@media screen and ( min-width: 1200px ) {
  .p-entry__text-head {
    font-size: 16px;
    width: 200px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 32px;
  }
}
.p-entry__text-head::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -16px;
}

.p-entry__text-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
@media screen and ( min-width: 1200px ) {
  .p-entry__text-sub {
    font-size: 16px;
  }
}

.p-entry__attention-text {
  font-size: 12px;
  position: relative;
  margin-left: 18px;
  font-weight: 400;
}
.p-entry__attention-text:nth-child(n+3) {
  margin-top: -1px;
}
@media screen and ( min-width: 1200px ) {
  .p-entry__attention-text {
    font-size: 16px;
    margin-left: 24px;
  }
  .p-entry__attention-text:nth-child(n+3) {
    margin-top: 1.5px;
  }
}
.p-entry__attention-text::before {
  position: absolute;
  content: "";
  display: inline-block;
  background-color: #4a3636;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 11px;
  left: -11px;
}
@media screen and ( min-width: 1200px ) {
  .p-entry__attention-text::before {
    width: 4px;
    height: 4px;
    top: 13px;
    left: -12px;
  }
}

.p-contact {
  background-color: #fff;
}

.p-contact__inner {
  padding-top: 40px;
  padding-bottom: 45px;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__inner {
    padding-block: 120px;
  }
}

.p-contact__content {
  margin-inline: auto;
  max-width: clamp(335px, 70%, 848px);
  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;
  position: relative;
}

.p-contact__heading {
  text-align: center;
}

.p-contact__text {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  font-size: 12px;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__text {
    margin-top: 33px;
    font-size: 16px;
  }
}

.p-contact__forms {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__forms {
    margin-top: 40px;
  }
}

.p-contact__form-field {
  width: 100%;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__form-field {
    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;
    gap: 40px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-contact__form-field:nth-child(5) {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-contact__form-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__form-head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-contact__form-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__form-label {
    font-size: 16px;
  }
}

.p-contact__form-tag {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
}

.p-contact__form-item {
  margin-top: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1.7;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__form-item {
    margin-top: 0;
  }
  .p-contact__form-item:nth-child(1), .p-contact__form-item:nth-child(2) {
    line-height: 0;
  }
}

.p-contact__form-text {
  padding: 15px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #4a3636;
  font-size: 14px;
  border: 1px solid transparent;
  width: 100%;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.p-contact__form-text:hover {
  border: 1px solid #9ed0e0;
}
.p-contact__form-text:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
  color: #4a3636;
}
.p-contact__form-text::-webkit-input-placeholder {
  color: #cccccc;
}
.p-contact__form-text::-moz-placeholder {
  color: #cccccc;
}
.p-contact__form-text:-ms-input-placeholder {
  color: #cccccc;
}
.p-contact__form-text::-ms-input-placeholder {
  color: #cccccc;
}
.p-contact__form-text::placeholder {
  color: #cccccc;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__form-text {
    font-size: 16px;
  }
}
.p-contact__form-text.is-error {
  border-color: #ce2073;
  background-color: #fff0f7;
}

.p-contact__form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  color: #4a3636;
  border: 1px solid transparent;
  width: 100%;
  background: #f5f5f5 url(../../../img/Icon-select.svg) no-repeat right/52px 55px;
}
.p-contact__form-select.is-error {
  border-color: #ce2073;
  background-color: #fff0f7;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__form-select {
    font-size: 16px;
    line-height: 1.7;
    cursor: pointer;
  }
}

.p-contact__form-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__form-radios {
    padding-block: 15px;
  }
}

.p-contact__radio {
  line-height: 1.7;
}
.p-contact__radio:hover .p-contact__radio-text:before {
  border-color: #9ed0e0;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__radio {
    line-height: 1.3;
  }
}

.p-contact__radio-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.p-contact__radio-input:checked + .p-contact__radio-text {
  font-weight: bold;
}
.p-contact__radio-input:checked + .p-contact__radio-text:after {
  opacity: 1;
}
.p-contact__radio-input:focus + .p-contact__radio-text:before {
  border-color: #9ed0e0;
}

.p-contact__radio-text {
  font-size: 14px;
  margin-left: 32px;
  position: relative;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__radio-text {
    font-size: 16px;
  }
  .p-contact__radio-text:hover {
    cursor: pointer;
  }
}
.p-contact__radio-text::before, .p-contact__radio-text::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-contact__radio-text::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  left: -32px;
  border: 1px solid transparent;
  background-color: #f5f5f5;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.p-contact__radio-text::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  left: -26px;
  background-color: #9ed0e0;
  opacity: 0;
}

.p-content__form-textarea {
  width: 335px;
  height: 160px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 15px;
  color: #4a3636;
  font-size: 14px;
  background: #f5f5f5;
  width: 100%;
  line-height: 1.6;
  resize: vertical;
}
.p-content__form-textarea:hover {
  border: 1px solid #9ed0e0;
}
.p-content__form-textarea:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
  color: #4a3636;
}
.p-content__form-textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.p-content__form-textarea::-moz-placeholder {
  color: #cccccc;
}
.p-content__form-textarea:-ms-input-placeholder {
  color: #cccccc;
}
.p-content__form-textarea::-ms-input-placeholder {
  color: #cccccc;
}
.p-content__form-textarea::placeholder {
  color: #cccccc;
}
.p-content__form-textarea.is-error {
  border-color: #ce2073;
  background-color: #fff0f7;
}
@media screen and ( min-width: 1200px ) {
  .p-content__form-textarea {
    width: 100%;
    font-size: 16px;
    line-height: 1.7;
  }
}

.p-contact__privacy {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 14px;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__privacy {
    font-size: 16px;
    margin-top: 20px;
  }
}

.p-contact__checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.p-contact__checkbox-input:checked + .p-contact__checkbox-text:after {
  opacity: 1;
}
.p-contact__checkbox-input.is-error + .p-contact__checkbox-text:before {
  border-color: #ce2073;
  background-color: #fff0f7;
}

.p-contact__checkbox-text {
  font-size: 14px;
  position: relative;
  margin-left: 36px;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__checkbox-text {
    font-size: 16px;
    margin-left: 36px;
  }
}
.p-contact__checkbox-text::before, .p-contact__checkbox-text::after {
  position: absolute;
  content: "";
  top: 0;
  left: -36px;
  border-radius: 4px;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__checkbox-text::before, .p-contact__checkbox-text::after {
    left: -36px;
  }
}
.p-contact__checkbox-text::before {
  width: 24px;
  height: 24px;
  background-color: #f5f5f5;
  border: 1px solid transparent;
}
.p-contact__checkbox-text::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 11px;
  background: #f5f5f5 url(../../../img/Icon-check.svg);
  left: -32px;
  top: 7px;
  opacity: 0;
}
.p-contact__checkbox-text a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.p-contact__checkbox-text a:hover {
  color: #67b0c7;
  text-decoration: underline;
}

.p-contact__button {
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and ( min-width: 1200px ) {
  .p-contact__button {
    margin-top: 16px;
  }
}

@media screen and ( min-width: 1200px ) {
  .p-contact__button-link {
    padding: 4px 38px 6px 38px;
  }
}

.p-footer__content {
  max-width: 335px;
  margin-inline: auto;
}
@media screen and ( min-width: 1200px ) {
  .p-footer__content {
    max-width: 1024px;
    position: relative;
  }
  .p-footer__content::before {
    position: absolute;
    content: "";
    background: url(../../../img/direction=default.png) no-repeat center center/contain;
    width: 100px;
    height: 220px;
    top: -40px;
    right: -164px;
  }
}

.p-footer__text {
  text-align: center;
  font-size: 20px;
  line-height: 1.25;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and ( min-width: 1200px ) {
  .p-footer__text {
    font-size: 24px;
  }
}

.p-footer__sns-links {
  margin-top: 20px;
  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;
  gap: 31px;
}

.p-footer__sns-logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
}
@media screen and ( min-width: 1200px ) {
  .p-footer__sns-logo {
    width: 50px;
    height: 50px;
  }
  .p-footer__sns-logo:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-footer__sns-logo img {
  width: 32px;
  height: 32px;
}
@media screen and ( min-width: 1200px ) {
  .p-footer__sns-logo img {
    width: 40px;
    height: 40px;
  }
}

.p-footer__info {
  margin-top: 48px;
  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;
  position: relative;
}
@media screen and ( min-width: 1200px ) {
  .p-footer__info {
    margin-top: 114px;
    max-width: 1024px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-footer__info::before {
  position: absolute;
  content: "";
  background: url(../../../img/ONOMICHI-sp.png) no-repeat center center/cover;
  width: 100%;
  height: 35px;
  top: -38px;
  left: 0;
  z-index: 100;
}
@media screen and ( min-width: 1200px ) {
  .p-footer__info::before {
    background: url(../../../img/ONOMICHI-p.png) no-repeat center center/cover;
    width: 755px;
    height: 82px;
    top: -79px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 100;
  }
}

.p-footer__info-map {
  display: block;
  position: relative;
  width: 100%;
  height: 266px;
}
@media screen and ( min-width: 1200px ) {
  .p-footer__info-map {
    height: 400px;
  }
}
.p-footer__info-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 16px 16px 0 0;
  max-width: 335px;
  max-height: 271px;
}
@media screen and ( max-width: 349px) {
  .p-footer__info-map iframe {
    width: 100%;
  }
}
@media screen and ( min-width: 1200px ) {
  .p-footer__info-map iframe {
    max-width: 512px;
    max-height: 400px;
    border-radius: 0 16px 16px 0;
  }
}

.p-footer__info-details {
  display: block;
  padding-top: 21px;
  padding-inline: 24px;
  padding-bottom: 24px;
  background-color: #fff;
  border-radius: 0 0 16px 16px;
}
@media screen and ( min-width: 1200px ) {
  .p-footer__info-details {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 512px;
    max-height: 400px;
    padding-block: 105px;
    padding-inline: 61px;
    border-radius: 16px 0 0 16px;
  }
}

.p-footer__details-title {
  display: block;
  text-align: center;
}
@media screen and ( min-width: 1200px ) {
  .p-footer__details-title {
    text-align: left;
  }
}
.p-footer__details-title img {
  width: 153px;
}
@media screen and ( min-width: 1200px ) {
  .p-footer__details-title img {
    width: 183px;
  }
}

.p-footer__details-admin {
  margin-top: 23px;
  padding-block: 6px;
  display: grid;
  grid-template-columns: 82px 1fr;
  font-size: 12px;
  row-gap: 8px;
}
@media screen and ( min-width: 1200px ) {
  .p-footer__details-admin {
    padding-block: 0;
    font-size: 16px;
    grid-template-columns: 120px 1fr;
    row-gap: 12px;
  }
}

.p-footer__details-admin--head {
  font-weight: 700;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 18px;
}
.p-footer__details-admin--head::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -16px;
}
.u-hidden-pc {
  display: inline;
}
@media screen and ( min-width: 1200px ) {
  .u-hidden-pc {
    display: none;
  }
}

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

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

.u-link {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.u-link--hover:hover {
  color: #67b0c7;
  text-decoration: underline;
}

.u-text-position {
  text-align: center;
}