@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  font-size: 12px;
  line-height: 1.6;
  color: #4A3636;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #E9F6F8;
}
body.is-fixed {
  overflow: hidden;
}



.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .inner {
    max-width: 1104px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

@media screen and (min-width: 900px) {
  .hidden-md {
    display: none;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 900px) {
  .hidden-sp {
    display: block;
  }
}

.font-weight-bold {
  font-style: normal;
  font-weight: 700;
}

.text-link {
  text-decoration: underline;
}

.button {
  display: inline-block;
  text-align: center;
  color: #4A3636;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  height: 40px;
  padding: 4px 22px 6px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #4A3636;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background: #FFF;
  transition: background-color 0.3s;
}
@media screen and (min-width: 900px) {
  .button {
    font-size: 20px;
    height: 56px;
    padding: 7px 37px 9px;
    border: 3px solid #4A3636;
  }
}
@media screen and (max-width: 375px) {
  .button {
    font-size: 12px;
    line-height: 2.2;
  }
}
.button:hover {
  background-color: #FFEE56;
}

.button-big {
  display: inline-block;
  text-align: center;
  color: #4A3636;
  font-size: 20px;
  font-weight: 700;
  height: 56px;
  line-height: 1.6;
  padding: 7px 37px 9px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 3px solid #4A3636;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background: #FFF;
  transition: background-color 0.3s;
}
.button-big:hover {
  background-color: #FFEE56;
}

.button-small {
  display: inline-block;
  text-align: center;
  color: #4A3636;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  padding: 4px 22px 6px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #4A3636;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background: #FFF;
  transition: background-color 0.3s;
}
.button-small:hover {
  background-color: #FFEE56;
}

.heading {
  text-align: center;
}

@media screen and (min-width: 900px) {
  .heading-icon {
    width: 48px;
    height: 48px;
    margin-inline: auto;
  }
  .heading-icon img {
    width: 100%;
    height: 100%;
  }
}

.heading-en {
  margin-top: 6px;
  font-family: "Courgette", cursive;
  font-size: 16px;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .heading-en {
    font-size: 20px;
    margin-top: 9px;
  }
}

.heading-jp {
  margin-top: 6px;
  display: inline-block;
  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: 900px) {
  .heading-jp {
    font-size: 32px;
    margin-top: 8px;
    padding-bottom: 10px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 64px;
  width: 100vw;
  z-index: 100;
  background: #fff;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 24px;
  }
}

.header__logo a img {
  width: 210px;
  display: block;
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 183px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

.header__link {
  font-size: 12px;
  transition: color 0.3s;
}
.header__link:hover {
  color: #67B0C7;
  text-decoration: underline;
}

.header__button {
  margin-left: 4px;
}

@media screen and (min-width: 900px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 27px;
  position: relative;
  z-index: 101;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  transform: rotate(45deg);
  width: 32px;
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__dot {
  display: none;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: #4A3636;
  border-radius: 6px;
  transition: transform 0.4s linear, top 0.4s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  width: 25.6px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.drawer-icon__dot {
  position: absolute;
  top: 0;
  right: 0;
  left: 28px;
  width: 4px;
  height: 3px;
  background: #4A3636;
  border-radius: 6px;
}

.drawer-content {
  width: 100%;
  height: calc(100% - 24px);
  position: fixed;
  top: -164%;
  left: 0;
  background: #fff;
  z-index: 50;
  padding: 82px 40px;
  overflow-y: auto;
  transition: all 0.4s;
}
.drawer-content.is-checked {
  top: 64px;
}

.drawer-content__menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.drawer-content__link {
  font-size: 14px;
}

.fv {
  position: relative;
  padding-top: 17px;
  margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-top: 34px;
  }
}

.fv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 156px);
  overflow: hidden;
}
.fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 900px) {
  .fv__image {
    height: calc(100% - 96px);
    border-radius: 0px 0px 40px 40px;
  }
  .fv__image img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

.fv__inner {
  position: relative;
  width: 100%;
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    max-width: 848px;
  }
}

.fv__lead {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__lead {
    max-width: 848px;
    margin-inline: auto;
  }
}

.fv__text {
  text-shadow: 0px 0px 30px #FFF;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__title-1 {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .fv__title-1 {
    margin-top: 24px;
  }
}
.fv__title-1 img {
  width: 335px;
}
@media screen and (min-width: 900px) {
  .fv__title-1 img {
    width: 520px;
  }
}

.fv__title-2 {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .fv__title-2 {
    margin-top: 16px;
  }
}
.fv__title-2 img {
  width: 240px;
}
@media screen and (min-width: 900px) {
  .fv__title-2 img {
    width: 356px;
  }
}

.fv__pictures {
  position: relative;
  height: 522px;
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .fv__pictures {
    margin-top: 0;
    height: 560px;
  }
}

.fv-pictures__smart-phone {
  position: absolute;
  top: 103px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .fv-pictures__smart-phone {
    top: 33px;
    width: 250px;
  }
}

.smart-phone__lead {
  position: absolute;
  top: 122.6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 160px;
  padding-bottom: 19.2px;
  flex-direction: column;
  align-items: center;
  gap: 12.8px;
  border-radius: 12.8px;
  background: #FFF;
}
@media screen and (min-width: 900px) {
  .smart-phone__lead {
    top: 152.5px;
    width: 200px;
    padding-bottom: 24px;
    gap: 16px;
    border-radius: 16px;
  }
}

.smart-phone__heading {
  padding: 6.4px 9.6px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
  color: #FFF;
  text-align: center;
  font-size: 12.8px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .smart-phone__heading {
    padding: 8px 12px;
    font-size: 16px;
  }
}

.smart-phone__body {
  text-align: center;
}

.smart-phone__title {
  font-size: 12px;
  padding-bottom: 0.8px;
  border-bottom: 2.4px solid #CE2073;
}
@media screen and (min-width: 900px) {
  .smart-phone__title {
    font-size: 14px;
    padding-bottom: 1px;
    border-bottom: 3px solid #CE2073;
  }
}

.smart-phone__text {
  margin-top: 8.2px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .smart-phone__text {
    margin-top: 10px;
    font-size: 16px;
  }
}

.smart-phone__button .button-small {
  height: 32px;
}
@media screen and (min-width: 900px) {
  .smart-phone__button .button-small {
    font-size: 16px;
    height: 40px;
  }
}

.fv-pictures__message {
  position: absolute;
  top: 7px;
  left: 0;
  width: 142px;
  height: 80px;
}
@media screen and (min-width: 900px) {
  .fv-pictures__message {
    top: 0;
    right: calc(50% + 125px + 18px);
    left: auto;
    width: 244px;
    height: 130px;
  }
}

.fv-pictures__present {
  position: absolute;
  top: 0;
  right: 25px;
  width: 110px;
}
@media screen and (min-width: 900px) {
  .fv-pictures__present {
    top: 17px;
    left: calc(50% + 125px - 8px);
    right: auto;
    width: 180px;
  }
}

.fv-pictures__food {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 90px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .fv-pictures__food {
    width: 212px;
    height: 332px;
  }
}

.fv-food__image img {
  width: 100%;
}

.fv-cat-black {
  position: absolute;
  bottom: 58px;
  right: 0;
  width: 62px;
  height: 69px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .fv-cat-black {
    bottom: 61px;
    right: 63px;
    width: 170px;
    height: 190px;
  }
}

.fv-cat-brown {
  position: absolute;
  bottom: 0;
  right: 9px;
  width: 98px;
  height: 72px;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .fv-cat-brown {
    bottom: -43px;
    right: 0;
    width: 233px;
    height: 174px;
  }
}

.about {
  position: relative;
  height: 1016px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .about {
    height: 1508px;
  }
}
@media screen and (min-width: 1200px) {
  .about {
    height: 1373px;
  }
}

.about__deco {
  position: absolute;
}

.about-photo-left {
  top: 427px;
  right: calc(50% + 127.5px);
  width: 200px;
  height: 200px;
}
.about-photo-left img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about-photo-left {
    top: 154px;
    right: calc(50% + 360px);
    width: 480px;
    height: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .about-photo-left {
    top: 154px;
    right: calc(50% + 614px);
    width: 480px;
    height: 480px;
  }
}

.about-naname {
  display: none;
}
@media screen and (min-width: 900px) {
  .about-naname {
    display: block;
    width: 250px;
    top: 60px;
    right: calc(50% + 280px);
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .about-naname {
    display: block;
    width: 250px;
    top: 60px;
    right: calc(50% + 527px);
    z-index: -1;
  }
}

.about-step {
  top: 740px;
  left: 0;
  width: 141px;
}
@media screen and (min-width: 900px) {
  .about-step {
    top: 402px;
    right: calc(50% + 147px);
    left: auto;
    width: 427px;
    height: 817px;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .about-step {
    top: 402px;
    right: calc(50% + 432px);
    left: auto;
    width: 427px;
    height: 817px;
    z-index: -1;
  }
}

.about-photo-right {
  top: 305px;
  left: calc(50% + 127.5px);
  width: 200px;
  width: 200px;
}
.about-photo-right img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about-photo-right {
    top: 153.07px;
    left: calc(50% + 360px);
    width: 480px;
    width: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .about-photo-right {
    top: 153.07px;
    left: calc(50% + 560.2px);
    width: 480px;
    width: 480px;
  }
}

.about-asiato {
  top: 22px;
  right: 0;
  width: 54px;
}
@media screen and (min-width: 900px) {
  .about-asiato {
    top: 0;
    left: calc(50% + 300px);
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .about-asiato {
    top: 0;
    left: calc(50% + 490.12px);
    width: 100px;
  }
}

.about-goods-button {
  top: 751.67px;
  right: 20px;
  width: 48px;
}
@media screen and (min-width: 900px) {
  .about-goods-button {
    top: 681.32px;
    left: calc(50% + 300px);
    width: 101px;
  }
}
@media screen and (min-width: 1200px) {
  .about-goods-button {
    top: 681.32px;
    left: calc(50% + 505px);
    width: 101px;
  }
}

.about-goods-nuno {
  top: 793.67px;
  right: 57px;
  width: 133px;
}
@media screen and (min-width: 900px) {
  .about-goods-nuno {
    top: 918.4px;
    right: 74px;
    width: 308px;
  }
}
@media screen and (min-width: 1200px) {
  .about-goods-nuno {
    top: 837.4px;
    right: 74px;
    width: 308px;
  }
}

.about-wave-1 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about-wave-1 {
    display: block;
    top: 684.33px;
    left: calc(50% + 200px);
    width: 806.851px;
    height: 12.006px;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .about-wave-1 {
    display: block;
    top: 684.33px;
    left: calc(50% + 520.15px);
    width: 806.851px;
    height: 12.006px;
    z-index: -1;
  }
}

.about-wave-2 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about-wave-2 {
    display: block;
    top: 717.34px;
    left: calc(50% + 200px);
    width: 806.851px;
    height: 12.006px;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .about-wave-2 {
    display: block;
    top: 717.34px;
    left: calc(50% + 453.08px);
    width: 806.851px;
    height: 12.006px;
    z-index: -1;
  }
}

.about__inner {
  padding-inline: 20px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 640px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 908px;
  }
}

.about__content {
  max-width: 848px;
  position: relative;
  margin-block: 32px;
  background: #fff;
  padding: 40px 12px 40px;
  border-radius: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about__content {
    padding-inline: 20px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .about__content {
    padding-inline: 114px;
  }
}
.about__content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 36px;
  background: url(../img/page-onomichi/arrow.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .about__content::after {
    width: 140px;
    height: 50px;
  }
}

.about__content-deco-left {
  position: absolute;
  top: 31.87px;
  right: calc(50% + 46.93px);
  width: 89px;
}
@media screen and (min-width: 900px) {
  .about__content-deco-left {
    top: 40px;
    right: calc(50% + 192.39px);
    width: 147px;
  }
}
.about__content-deco-left img {
  width: 100%;
  height: auto;
}

.about__content-deco-right {
  position: absolute;
  top: 30px;
  left: calc(50% + 60.15px);
  width: 89px;
}
@media screen and (min-width: 900px) {
  .about__content-deco-right {
    top: 47px;
    left: calc(50% + 193.08px);
    width: 147px;
  }
}

.about__sub-heading-sp {
  font-size: 14px;
  margin-top: 24px;
  font-weight: 700;
}

.about__sub-heading-pc {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .about__sub-heading-pc {
    margin-top: 34px;
  }
}

.about__body {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 19.2px;
}
@media screen and (min-width: 900px) {
  .about__body {
    gap: 26.6px;
    margin-top: 32px;
  }
}

@media screen and (min-width: 900px) {
  .about__text {
    font-size: 16px;
  }
}

.about__text-present {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-top: 29px;
  padding-bottom: 6px;
  border-bottom: 2px dashed #9ED0E0;
}
@media screen and (min-width: 900px) {
  .about__text-present {
    font-size: 20px;
    margin-top: 44px;
    padding-bottom: 10px;
  }
}

.about__button {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__button {
    margin-top: 33px;
  }
}

.about__under-text {
  position: relative;
  margin-top: 139.67px;
  width: 355px;
  height: 37.2px;
  z-index: 1;
  display: block;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .about__under-text {
    width: 890.6px;
    margin-top: 167px;
    height: 97px;
  }
}
@media screen and (min-width: 1200px) {
  .about__under-text {
    width: 890.6px;
    margin-top: 167px;
    height: 92px;
  }
}

.about-swiper {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.about-swiper-wrap {
  transition-timing-function: linear;
}

.about-swiper-slide {
  width: 100px !important;
}
@media screen and (min-width: 900px) {
  .about-swiper-slide {
    width: 200px !important;
  }
}

.about-slide-img {
  display: block;
  width: 100px;
}
@media screen and (min-width: 900px) {
  .about-slide-img {
    width: 200px;
  }
}
.about-slide-img img {
  height: auto;
  width: 100%;
}

.how-to-enter {
  overflow: hidden;
}

.how-to-enter__inner {
  position: relative;
  max-width: 375px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__inner {
    max-width: 1512px;
  }
}

.how-to-enter__deco {
  position: absolute;
  z-index: -1;
}

.how-to-enter__deco-map {
  top: 0;
  right: calc(50% + 39px);
  width: 149px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__deco-map {
    right: calc(50% + 80px);
    width: 180px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__deco-map {
    top: -60px;
    right: calc(50% + 180px);
    left: auto;
    width: 380px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__deco-map {
    right: calc(50% + 260px);
    width: 460px;
  }
}

.how-to-enter__deco-cats {
  top: 0;
  left: calc(50% + 58px);
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .how-to-enter__deco-cats {
    top: -26px;
    left: calc(50% + 200px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__deco-cats {
    left: calc(50% + 287px);
  }
}

.deco-cats {
  position: relative;
  width: 160px;
  height: 85px;
}
@media screen and (min-width: 900px) {
  .deco-cats {
    width: 364px;
    height: 191.08px;
  }
}

.deco-cat-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 105px;
}
@media screen and (min-width: 900px) {
  .deco-cat-1 {
    width: 238px;
  }
}

.deco-cat-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 94px;
}
@media screen and (min-width: 900px) {
  .deco-cat-2 {
    width: 214px;
  }
}

.how-to-enter__deco-ashiato-1 {
  top: 74px;
  right: 20px;
  width: 55px;
  transform: scale(-1, 1);
}
@media screen and (min-width: 900px) {
  .how-to-enter__deco-ashiato-1 {
    top: 148px;
    right: 0px;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__deco-ashiato-1 {
    right: 36px;
    width: 100px;
  }
}

.how-to-enter__deco-ashiato-2 {
  top: 550px;
  left: 20px;
  width: 55px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__deco-ashiato-2 {
    bottom: 40px;
    left: 0;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__deco-ashiato-2 {
    left: 36px;
    width: 100px;
  }
}

.how-to-enter__deco-ashiato-3 {
  right: 20px;
  bottom: 363px;
  width: 55px;
  transform: scale(-1, 1);
}
@media screen and (min-width: 900px) {
  .how-to-enter__deco-ashiato-3 {
    display: none;
  }
}

.how-to-enter__heading {
  margin-top: 66px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__heading {
    margin-top: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__heading {
    margin-top: 115px;
  }
}

.how-to-enter__content {
  text-align: center;
  margin-top: 32px;
  height: 1243px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .how-to-enter__content {
    margin-top: 40px;
    height: 669px;
    padding-inline: 30px;
  }
}

.how-to-enter__steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__steps {
    flex-direction: row;
    gap: 7px;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__steps {
    gap: 32px;
    margin-top: 40px;
  }
}

.how-to-enter__step {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step {
    max-width: 294px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step {
    max-width: 320px;
  }
}
.how-to-enter__step:nth-of-type(1)::after {
  content: "";
  width: 7px;
  height: 34px;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/page-onomichi/img_step_line-sp.png) no-repeat center center/contain;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-of-type(1)::after {
    width: 70px;
    height: 16px;
    left: auto;
    top: 150px;
    right: -25px;
    background: url(../img/page-onomichi/img_step_line-pc.png) no-repeat center center/contain;
    transform: initial;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step:nth-of-type(1)::after {
    width: 114px;
    height: 24px;
    top: 204px;
    right: -50px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-of-type(2) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step:nth-of-type(2) {
    margin-top: 68px;
  }
}
.how-to-enter__step:nth-of-type(2)::after {
  content: "";
  width: 7px;
  height: 34px;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/page-onomichi/img_step_line-sp.png) no-repeat center center/contain;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-of-type(2)::after {
    width: 70px;
    height: 16px;
    top: 100px;
    right: -25px;
    left: auto;
    background: url(../img/page-onomichi/img_step_line-pc.png) no-repeat center center/contain;
    transform: initial;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step:nth-of-type(2)::after {
    width: 114px;
    height: 24px;
    top: 136px;
    right: -57px;
  }
}

.step-image {
  width: 196px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .step-image {
    width: 87.5%;
  }
}

.step-title {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .step-title {
    margin-top: 24px;
    font-size: 20px;
  }
}

.step-text {
  margin-top: 16px;
  line-height: 1.59;
}
@media screen and (min-width: 900px) {
  .step-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .step-text {
    margin-top: 17px;
    font-size: 16px;
  }
}

.step-follow-link {
  margin-top: 14px;
}
@media screen and (min-width: 900px) {
  .step-follow-link {
    margin-top: 16px;
  }
}

.follow-link {
  display: inline-block;
  background: #fff;
  padding: 8px 12px 8px 40px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.follow-link::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/page-onomichi/instagram-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .follow-link {
    font-size: 16px;
    margin-top: 2px;
  }
  .follow-link::before {
    width: 24px;
    height: 24px;
  }
}

.how-to-enter__button {
  margin-top: 16px;
  text-align: center;
  margin-bottom: 57.67px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__button {
    margin-top: 49px;
    margin-bottom: 152px;
  }
}

.prizes__inner {
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    max-width: 1104px;
    padding-inline: 40px;
  }
}

.prizes__content {
  position: relative;
  padding-bottom: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prizes__content {
    max-width: 100%;
    padding-inline: 56px;
    padding-bottom: 53px;
  }
}
.prizes__content::before, .prizes__content::after {
  position: absolute;
  content: "";
  z-index: -1;
}
.prizes__content::after {
  top: 63px;
  left: 0;
  width: 100%;
  height: calc(100% - 63px);
  border-radius: 24px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .prizes__content::after {
    top: 120px;
    height: calc(100% - 120px);
  }
}
.prizes__content::before {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 238px;
  height: 83px;
  background: url(../img/page-onomichi/prizes_content-bg.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .prizes__content::before {
    top: -28px;
    width: 372px;
    height: 148px;
  }
}

.prizes__decoration-triangle-left,
.prizes__decoration-triangle-right {
  position: absolute;
  top: -28px;
  display: none;
  align-items: center;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
}
@media screen and (min-width: 900px) {
  .prizes__decoration-triangle-left,
.prizes__decoration-triangle-right {
    display: flex;
  }
}

.prizes__decoration-triangle-left {
  left: 0;
}

.prizes__decoration-triangle-right {
  right: 0;
}

.prizes__text {
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .prizes__text {
    margin-top: 43px;
    font-size: 16px;
  }
}

.prizes__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    margin-top: 32px;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(6, 1fr);
    grid-row-gap: 40px;
    grid-column-gap: 32px;
  }
}

.prizes__card {
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 900px) {
  .prizes__card {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(1) {
    grid-area: 1/1/2/4;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(2) {
    grid-area: 1/4/2/7;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(3) {
    grid-area: 2/1/3/3;
    width: calc(100% - 2.6666666667px);
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(4) {
    grid-area: 2/3/3/5;
    width: calc(100% - 2.6666666667px);
    margin-left: 1px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(5) {
    grid-area: 2/5/3/7;
    width: calc(100% - 2.6666666667px);
    margin-left: 3px;
  }
}

.prizes-card {
  position: relative;
  margin-top: 24px;
  border-radius: 8px;
}
.prizes-card:hover .card__body {
  position: relative;
}
.prizes-card:hover .card__body::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #9ED0E0;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes-card:hover .card__body::after {
    border-radius: 16px;
  }
}
.prizes-card:hover .card__image img {
  transform: scale(1.2);
}
.prizes-card:hover .card__icon-img-bg path {
  fill: #9ED0E0;
}
@media screen and (min-width: 900px) {
  .prizes-card {
    margin-top: 40px;
  }
}

@media screen and (min-width: 900px) {
  .prizes-card-large:hover .card__body {
    position: relative;
  }
  .prizes-card-large:hover .card__body::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #9ED0E0;
    border-radius: 24px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card-large {
    margin-top: 50px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card-large .card__number {
    top: -50px;
    width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card-large .card__body {
    border-radius: 24px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card-large .card__image {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card-large .card__text {
    min-height: 120px;
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card-large .card__icon-img-bg {
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 24px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card-large .card__icon-img {
    width: 32px;
    height: 32px;
    right: 12.5px;
    bottom: 14px;
  }
}

.card__number {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .card__number {
    top: -40px;
    width: 80px;
  }
}

.card__body {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .card__body {
    border-radius: 16px;
  }
}

.card__image {
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
@media screen and (min-width: 900px) {
  .card__image {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}

.card__text {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 56px;
  padding-block: 5px;
  padding-inline: 5px;
}
@media screen and (min-width: 900px) {
  .card__text {
    min-height: 80px;
    padding-top: 7px;
    padding-bottom: 5px;
    font-size: 16px;
  }
}

.card__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
}

.card__icon-img-bg {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: block;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
}
@media screen and (min-width: 900px) {
  .card__icon-img-bg {
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 16px;
  }
}

.card__icon-img {
  position: absolute;
  width: 11.52px;
  height: 11.52px;
  right: 4.8px;
  bottom: 5px;
  display: block;
}
@media screen and (min-width: 900px) {
  .card__icon-img {
    width: 20.48px;
    height: 20.48px;
    right: 8px;
    bottom: 9px;
  }
}

.prizes-modal {
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  padding: 0;
  padding-right: 20px;
  padding-bottom: 19px;
  padding-left: 20px;
  text-align: center;
  background: #fff;
  border: none;
  border-radius: 24px;
}
.prizes-modal::-webkit-backdrop {
  background: #000;
  opacity: 0.7;
}
.prizes-modal::backdrop {
  background: #000;
  opacity: 0.7;
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
    padding-right: 40px;
    padding-bottom: 23px;
    padding-left: 40px;
  }
}

.prizes-modal__image {
  width: calc(100% + 40px);
  margin-left: -20px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__image {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}

.prizes-modal__head {
  margin-top: 39px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prizes-modal__head {
    font-size: 20px;
  }
}

.prizes-modal__text {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__text {
    font-size: 16px;
  }
}

.prizes-modal__button {
  padding-bottom: 4px;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__button {
    margin-top: 24px;
  }
}

.prizes__button {
  margin-top: 16px;
  text-align: center;
  padding-bottom: 4px;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 38px;
  }
}

.prizes__cover-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -43px;
  z-index: -2;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes__cover-bg {
    display: block;
    margin-top: 0;
  }
}
.prizes__cover-bg img {
  display: block;
  width: 100%;
  min-width: 580px;
}
@media screen and (min-width: 900px) {
  .prizes__cover-bg img {
    min-height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

.spot {
  position: relative;
  padding-top: 45.7px;
  padding-bottom: 45.7px;
  margin-top: -45.7px;
}
@media screen and (min-width: 900px) {
  .spot {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: -125px;
  }
}
.spot::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 45.7px;
  content: "";
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
  top: 1px;
  background-image: url(../img/page-onomichi/spots-wave-top-sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}
@media screen and (min-width: 900px) {
  .spot::before {
    background-image: url(../img/page-onomichi/spots-wave-top-pc.svg);
    height: 121px;
  }
}
.spot::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 45.7px;
  content: "";
  background-color: transparent;
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 1px;
  background-image: url(../img/page-onomichi/spots-wave-bottom-sp.svg), linear-gradient(to top, transparent 13px, #67b0c7 13px);
  background-position: left -6px center;
}
@media screen and (min-width: 900px) {
  .spot::after {
    background-image: url(../img/page-onomichi/spots-wave-bottom-pc.svg);
    height: 121px;
  }
}

.spot__deco-ashiato {
  position: absolute;
  bottom: 120px;
  left: calc(50% - 720px);
  width: 100px;
}

.spot__inner {
  padding-bottom: 17.86px;
  background-color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .spot__inner {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 900px) {
  .spots__top {
    padding-left: max(30px, 50% - 512px);
    display: flex;
    gap: 32px;
  }
}

.spot__heading {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spot__heading {
    width: 56px;
  }
}

.spot__head {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .spot__head::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 56px;
    height: 56px;
    content: "";
    background-color: transparent;
    background-image: url(../img/page-onomichi/spots-icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 900px) {
  .spot__head {
    writing-mode: vertical-lr;
    padding-top: 72px;
    padding-right: 3px;
    padding-left: 3px;
    font-size: 40px;
    letter-spacing: 0.25em;
  }
}

.spot__slider {
  margin-top: 25px;
}
@media screen and (min-width: 900px) {
  .spot__slider {
    width: calc(100% - 56px - 32px);
    margin-top: 0;
  }
}

.spot-swiper-slide {
  height: auto;
}

.spot-card {
  height: 100%;
  padding-right: 24px;
  padding-bottom: 28px;
  padding-left: 24px;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .spot-card {
    padding-right: 32px;
    padding-bottom: 40px;
    padding-left: 32px;
    border-radius: 24px;
  }
}

.spot-card__image {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
}
@media screen and (min-width: 900px) {
  .spot-card__image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
.spot-card__image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.spot-card__title {
  margin-top: 29px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spot-card__title {
    margin-top: 25px;
    font-size: 20px;
  }
}

.spot-card__text {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .spot-card__text {
    margin-top: 25px;
    font-size: 16px;
  }
}

.spot__arrows {
  max-width: 944px;
  margin-top: -32px;
  position: relative;
  z-index: 2;
  margin-right: auto;
  margin-left: auto;
}

.spot-swiper-arrows {
  display: flex;
  justify-content: space-between;
}

.spot-swiper-arrows__prev {
  background-image: url(../img/page-onomichi/spot-swiper-arrows-prev.svg);
}
.spot-swiper-arrows__prev::after {
  content: "";
}

.spot-swiper-arrows__next {
  background-image: url(../img/page-onomichi/spot-swiper-arrows-next.svg);
}
.spot-swiper-arrows__next::after {
  content: "";
}

.spot-swiper-arrows__prev,
.spot-swiper-arrows__next {
  position: static;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffee56;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-position 0.3s;
}

.spots__bottom {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1200px) {
  .spots__bottom {
    max-width: 1104px;
    padding-inline: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 33px;
  }
}

.spot__title {
  display: block;
  width: 254px;
  line-height: 1;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1200px) {
  .spot__title {
    width: 495px;
    margin: 0;
  }
}

.spot__text {
  margin-top: 16px;
  font-size: 11.444px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spot__text {
    font-size: 16px;
    margin-top: 8px;
  }
}

.spot__button {
  padding-bottom: 4px;
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spot__button .button {
    margin-left: 10px;
  }
}

.qa {
  padding-top: 40px;
}
@media screen and (min-width: 900px) {
  .qa {
    padding-top: 120px;
  }
}

.qa__boxes {
  margin-top: 24px;
  margin-bottom: 29px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 0;
  }
}

.qa__box {
  border-radius: 12px;
  border: 2px solid #4A3636;
  background: #FFF;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .qa__box {
    border-radius: 16px;
  }
}

.qa-box.is-open .qa-box__head-open::after {
  display: none;
}

.qa-box__head {
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 20px 21px 21px 21px;
    gap: 16px;
  }
}

.qa-box__head-icon {
  color: #9ED0E0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .qa-box__head-icon {
    font-size: 32px;
  }
}

.qa-box__head-text {
  color: #4A3636;
  font-size: 14px;
  font-weight: 700;
  flex-grow: 1;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__head-open {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  background-color: #9ED0E0;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .qa-box__head-open {
    width: 48px;
    height: 48px;
  }
}
.qa-box__head-open::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  content: "";
  background: #fff;
  border-radius: 50px;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .qa-box__head-open::before {
    width: 18.667px;
    height: 2.667px;
  }
}
.qa-box__head-open::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 10px;
  content: "";
  background: #fff;
  border-radius: 50px;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .qa-box__head-open::after {
    width: 2.667px;
    height: 18.667px;
  }
}

.qa-box__body {
  display: none;
  padding: 16px 16px 14px 16px;
  background: #F5F5F5;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    padding: 23px;
  }
}

.qa-box__a {
  display: flex;
  gap: 16px;
  align-items: center;
}

.qa-box__a-icon {
  color: #9ED0E0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .qa-box__a-icon {
    font-size: 32px;
  }
}

.qa-box__a-text {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .entry-requirements {
    padding-top: 120px;
  }
}

.entry-requirements__content {
  border: 8px solid #FFF;
  background: rgba(255, 255, 255, 0.5);
  padding: 16px 16px;
  margin-bottom: 33px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__content {
    margin-bottom: 119px;
    padding: 32px 48px;
  }
}

.entry-requirements__lists {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__lists {
    margin-top: 41px;
  }
}

.entry-requirement__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-bottom: 14px;
}
@media screen and (min-width: 900px) {
  .entry-requirement__list {
    flex-direction: row;
    padding-bottom: 11px;
    gap: 20px;
  }
}
.entry-requirement__list:nth-child(n+2) {
  padding-top: 11px;
  border-top: 1px solid #CCC;
}

.entry-requirement__list-title {
  font-weight: 700;
  font-size: 14px;
  padding-left: 16px;
  position: relative;
  text-align: left;
  vertical-align: middle;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .entry-requirement__list-title {
    flex-grow: 1;
    width: 226px;
    font-size: 16px;
    padding-left: 32px;
  }
}
.entry-requirement__list-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #9ED0E0;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .entry-requirement__list-title::before {
    left: 16px;
  }
}

@media screen and (min-width: 900px) {
  .entry-requirement__list-text {
    width: calc(100% - 217px);
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .entry-requirement__list-data {
    width: calc(100% - 217px);
  }
}

.entry-requirement__list-data-text {
  position: relative;
  padding-left: 1.5em;
  line-height: 19px;
}
.entry-requirement__list-data-text::before {
  position: absolute;
  top: 0.1em;
  left: 0.2em;
  content: "・";
}
@media screen and (min-width: 900px) {
  .entry-requirement__list-data-text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-requirement__list-data-text {
    line-height: 26px;
  }
}

.link-text {
  text-decoration: underline;
}

.entry-requirement__image img {
  width: 100%;
}

.contact {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 45px;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-block: 120px;
  }
}

@media screen and (min-width: 900px) {
  .contact__inner {
    width: 928px;
    padding-inline: 40px;
  }
}

.contact__text {
  text-align: center;
  margin-top: 25px;
}
@media screen and (min-width: 900px) {
  .contact__text {
    margin-top: 32px;
    font-size: 16px;
  }
}

.contact__form {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .contact__form {
    margin-top: 39px;
  }
}

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 900px) {
  .contact__fields {
    gap: 23px;
  }
}

.contact__privacy {
  margin-top: 23px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__privacy {
    margin-top: 40px;
  }
}

.contact__button {
  margin-top: 25px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 40px;
  }
}
.contact__button .button {
  font-size: 16px;
  padding-top: 4px;
  padding-bottom: 6px;
  border-width: 2px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .contact__button .button {
    width: 240px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .form-field {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
}

@media screen and (min-width: 900px) {
  .form-field-message {
    align-items: flex-start;
  }
}

.form-field__head {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .form-field__head {
    width: 180px;
  }
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field__tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: #CE2073;
  color: #FFF;
  font-weight: 700;
}

.form-field__item {
  margin-top: 8.5px;
  flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .form-field__item {
    max-width: 628px;
    margin-top: 0;
  }
}

.form-text {
  width: 100%;
  border-radius: 8px;
  background: #F5F5F5;
  padding: 16px;
  border: none;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-text {
    font-size: 16px;
  }
}
.form-text.is-error {
  border: 1px solid #CE2073;
  background: #FFF0F7;
}
.form-text:focus {
  border: 1px solid #9ED0E0;
  background: #E9F6F8;
  outline: none;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text {
  font-weight: 700;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__input:focus + .form-radio__text::before {
  border: 1px solid #9ED0E0;
}

.form-radio__text {
  position: relative;
  font-size: 14px;
  padding-left: 32px;
}
@media screen and (min-width: 900px) {
  .form-radio__text {
    font-size: 16px;
  }
}
.form-radio__text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background: #F5F5F5;
  left: 0;
  transition: border-color 0.3s;
}
.form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #9ED0E0;
  width: 12px;
  height: 12px;
  left: 6px;
  opacity: 0;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 8px;
  border: none;
  background-color: #F5F5F5;
  width: 100%;
  padding: 16px;
  background-image: url(../img/page-onomichi/select-arrow.svg), linear-gradient(to left, #9ED0E0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 18.65px, center center;
  background-size: 14.9px 8.78px, cover;
  font-size: 14px;
  color: #4A3636;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select.is-error {
  border: 1px solid #CE2073;
  background-color: #FFF0F7;
  background-image: url(../img/page-onomichi/select-arrow.svg), linear-gradient(to left, #CE2073 52px, #FFF0F7 52px);
}
.form-select:focus {
  outline: none;
  border: 1px solid #9ED0E0;
}

.form-textarea {
  border-radius: 8px;
  border: none;
  background: #F5F5F5;
  padding: 16px;
  width: 100%;
  height: 160px;
  font-size: 14px;
  transition: border-color 0.3s;
}
@media screen and (min-width: 900px) {
  .form-textarea {
    font-size: 16px;
  }
}
.form-textarea.is-error {
  border: 1px solid #CE2073;
  background: #FFF0F7;
}
.form-textarea:focus {
  border: 1px solid #9ED0E0;
  background: #E9F6F8;
  outline: none;
}

.form-field__radios {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    height: 56px;
    padding-left: 2px;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border: 1px solid #9ED0E0;
}

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #F5F5F5;
  border: none;
  transition: border-color 0.3s;
}
.form-checkbox__text::after {
  width: 14px;
  height: 9px;
  left: 5px;
  background: url(../img/page-onomichi/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #9ED0E0;
}

.footer {
  background: #E9F6F8;
  text-align: center;
  overflow: hidden;
}

.footer__inner {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    margin-top: 120px;
    position: relative;
  }
}

.footer__deco-ashiato {
  position: absolute;
}
@media screen and (min-width: 900px) {
  .footer__deco-ashiato {
    top: -40px;
    right: 0;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__deco-ashiato {
    right: auto;
    left: calc(50% + 576px);
    width: 100px;
  }
}

.footer__sns-text {
  color: #4A3636;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .footer__sns-text {
    font-size: 24px;
  }
}

.footer__sns-items {
  margin-top: 24px;
  margin-bottom: 15px;
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .footer__sns-items {
    margin-bottom: 41px;
  }
}

@media screen and (min-width: 1200px) {
  .footer__sns-item {
    width: 40px;
    height: 40px;
  }
}
.footer__sns-item img {
  width: 100%;
}

.footer__logo {
  display: block;
  max-width: 328px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .footer__logo {
    max-width: 755px;
  }
}

.footer__access {
  margin-top: -3px;
  border-radius: 16px;
  background: #FFF;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .footer__access {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}

@media screen and (min-width: 900px) {
  .footer__map {
    width: 50%;
  }
}
.footer__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: top;
}
@media screen and (min-width: 900px) {
  .footer__map iframe {
    aspect-ratio: 512/400;
  }
}

.footer__address {
  padding: 22px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1200px) {
  .footer__address {
    padding: 10px;
  }
}

.footer__address-logo {
  width: 153px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .footer__address-logo {
    width: 183px;
    margin: 0;
    text-align: left;
  }
}

.footer__address-items {
  margin-top: 30px;
  margin-bottom: 7px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1200px) {
  .footer__address-items {
    margin-bottom: 0;
    margin-top: 24px;
    gap: 12px;
  }
}

.footer__address-item {
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .footer__address-item {
    font-size: 16px;
    gap: 40px;
  }
}

.item-title {
  min-width: 64px;
  position: relative;
  padding-left: 16px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .item-title {
    width: 80px;
  }
}
.item-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ED0E0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.footer__pagetop {
  margin-top: 22px;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .footer__pagetop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 10;
    margin-block: 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer__pagetop {
    right: 40px;
    bottom: 40px;
  }
}

.pagetop img {
  width: 79px;
  height: 82px;
}
@media screen and (min-width: 900px) {
  .pagetop img {
    width: 100px;
    height: 104px;
  }
}

.footer__bottom {
  position: relative;
  padding-top: 47px;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 121px;
    padding-top: 121px;
  }
}
.footer__bottom::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 47px;
  content: "";
  background-image: url(../img/page-onomichi/spots-wave-top-sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
  background-repeat: repeat-x;
  background-position: left -6px center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .footer__bottom::before {
    background-image: url(../img/page-onomichi/spots-wave-top-pc.svg);
    height: 121px;
  }
}

.footer__copyright {
  display: block;
  padding-bottom: 25px;
  font-size: 10px;
  color: #fff;
  background-color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    padding-bottom: 32px;
    font-size: 14px;
  }
}