@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #4a3636;
  background: #E9F6F8;
  overflow-y: auto; /* 縦方向にスクロール可能にする */
}
@media screen and (min-width:900px) {
  body {
    font-size: 16px;
  }
}
body.is-fixed {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
}

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

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

.inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width:900px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1072px;
    margin: 0 auto;
  }
}

.inner-s {
  width: min(640px, 100%);
}

.button {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4a3636;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding-bottom: 4px;
  height: 40px;
  border-radius: 40px;
  background: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}
.button:hover {
  background-color: #ffee56;
}
@media screen and (min-width:320px) and (max-width:374px) {
  .button {
    padding-inline: 10px;
    max-width: 320px;
  }
}
@media screen and (min-width:900px) {
  .button {
    padding: 7px 37px 9px 37px;
    border: 3px solid #4a3636;
    height: 56px;
    font-size: 20px;
  }
}

.button--small {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 320px;
  left: 50%;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4a3636;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding-bottom: 4px;
  height: 32px;
  border-radius: 40px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}
.button--small:hover {
  background-color: #ffee56;
}

.button--large {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  padding: 7px 37px 9px 37px;
  align-items: center;
  border: 3px solid #4a3636;
  border: 3px solid #4a3636;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding-bottom: 4px;
  height: 56px;
  border-radius: 40px;
  background: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}
.button--large:hover {
  background-color: #ffee56;
}

.heading {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.heading__icon {
  display: inline-block;
  padding: 7px 3px;
}
.heading__icon img {
  width: 37px;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (min-width:900px) {
  .heading__icon {
    padding: 9px 4px;
  }
  .heading__icon img {
    width: 48px;
    height: auto;
    aspect-ratio: 1;
  }
}

.heading__midashi {
  font-family: "Courgette", sans-serif;
  font-size: 16px;
  line-height: 1;
}
@media screen and (min-width:900px) {
  .heading__midashi {
    font-size: 20px;
  }
}

.heading__title {
  display: block;
  margin: 0 auto;
  padding-bottom: 0px;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  border-bottom: 6px solid #ffee56;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width:900px) {
  .heading__title {
    font-size: 32px;
    padding-bottom: 0px;
    border-bottom: 8px solid #ffee56;
    width: 320px;
    -webkit-font-feature-settings: "pwid" on;
            font-feature-settings: "pwid" on;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.header {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
}

.header__inner {
  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;
  padding-left: 20px;
  padding-right: 20px;
  height: 64px;
}
@media screen and (min-width:900px) {
  .header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.header__logo img {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 210px;
  height: auto;
}
@media screen and (min-width:900px) {
  .header__logo img {
    width: 183px;
  }
}

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

@media screen and (min-width:900px) {
  .header__btn {
    margin-left: 4px;
  }
}

@media screen and (min-width:900px) {
  .button--small {
    font-size: 14px;
    height: 36px;
  }
}

.drawer-icon {
  width: 32px;
  height: 27px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 60;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width:1200px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  width: 32px;
  height: 3px;
  background: #4a3636;
}
.drawer-icon__bar:nth-of-type(1) {
  width: 25.6px;
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.drawer-icon__bar-dot {
  position: absolute;
  top: 0;
  right: -6px;
  border-radius: 6px;
  width: 4.8px;
  height: 3px;
  background: #4a3636;
}

.drawer-content {
  display: none;
  background-color: #ffffff;
  width: 100%;
  height: calc(100dvh - 64px);
  position: fixed;
  top: 64px;
  left: 0;
  padding-top: 59px;
  padding-bottom: 60px;
  overflow-y: auto;
  z-index: 50;
  -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;
}
@media screen and (min-width:900px) {
  .drawer-content {
    display: none;
  }
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer-content__link {
  display: block;
  text-align: center;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.drawer-content__btn {
  text-align: center;
  margin-top: 20px;
}

.fv {
  position: relative;
  margin-top: 64px;
  padding-top: 17px;
}
@media screen and (min-width:900px) {
  .fv {
    padding-top: 34px;
  }
}

.fv__image-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 156px);
  overflow: hidden;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}
@media screen and (min-width:900px) {
  .fv__image-top {
    height: calc(100% - 94px);
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
.fv__image-top 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-top img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
@media screen and (min-width:1200px) {
  .fv__image-top img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

.fv__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width:900px) {
  .fv__inner {
    max-width: 848px;
  }
}

.fv__texts {
  text-align: center;
  width: 89.3333333333%;
  margin: 0 auto;
}
.fv__text {
  margin-bottom: 23px;
  font-size: 14px;
  line-height: 1.25;
  font-family: "Kiwi Maru", sans-serif;
}
@media screen and (min-width:900px) {
  .fv__text {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width:900px) {
  .fv__title {
    gap: 16px;
  }
}

.fv__read1 {
  display: block;
}
.fv__read1 img {
  width: 335px;
  height: auto;
  aspect-ratio: 335/53;
}
@media screen and (min-width:900px) {
  .fv__read1 img {
    width: 520px;
    height: auto;
    aspect-ratio: 520/82;
  }
}

.fv__read2 img {
  width: 240px;
  height: auto;
  aspect-ratio: 240/40;
}
@media screen and (min-width:900px) {
  .fv__read2 img {
    width: 356px;
    aspect-ratio: 356/60;
  }
}

.fv__wrap {
  position: relative;
  height: 522px;
  margin-top: 10px;
}
@media screen and (min-width:900px) {
  .fv__wrap {
    height: 558px;
    margin-top: 0;
  }
}

.fv__device-wrap {
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 40;
}
@media screen and (min-width:900px) {
  .fv__device-wrap {
    top: 33px;
  }
}

.fv__screen-wrap {
  position: absolute;
  bottom: 144px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #ffffff;
  width: 160px;
  height: 154px;
  border-radius: 12.8px;
  text-align: center;
  padding-bottom: 21.2px;
  z-index: 40;
}
@media screen and (min-width:900px) {
  .fv__screen-wrap {
    bottom: 177px;
    width: 200px;
    height: 194px;
    border-radius: 16px;
  }
}

.fv__screen-head {
  display: inline-block;
  padding: 6.4px 9.6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12.8px 12.8px 0 0;
  font-size: 12.8px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  width: 160px;
}
@media screen and (min-width:900px) {
  .fv__screen-head {
    width: 200px;
    font-size: 16px;
    border-radius: 16px 16px 0 0;
  }
}

.fv__screen-head-title {
  padding-top: 12.8px;
  font-size: 12px;
  border-bottom: 2.4px solid #ce2073;
  width: 48px;
  margin: 0 auto;
}
@media screen and (min-width:900px) {
  .fv__screen-head-title {
    font-size: 14px;
    border-bottom: 3px solid #ce2073;
    width: 56px;
    padding-top: 16px;
  }
}

.fv__screen-date {
  padding-top: 3.2px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width:900px) {
  .fv__screen-date {
    padding-top: 4px;
    font-size: 16px;
  }
}

.fv__screen__btn {
  margin-top: 12.8px;
}
@media screen and (min-width:900px) {
  .fv__screen__btn {
    margin-top: 21px;
  }
}

@media screen and (min-width:900px) {
  .fv__screen__button {
    font-size: 16px;
    padding: 4px 22px 6px 22px;
  }
}

.fv__fukidashi {
  position: absolute;
  top: 6px;
  right: calc(50% + 24px);
}
.fv__fukidashi img {
  width: 142px;
  aspect-ratio: 142/80;
}
@media screen and (min-width:900px) {
  .fv__fukidashi {
    top: 0;
    right: calc(50% + 143px);
  }
  .fv__fukidashi img {
    width: 244px;
    aspect-ratio: 244/130;
  }
}

.fv__present {
  position: absolute;
  top: 0;
  left: calc(50% + 32px);
  z-index: 30;
}
.fv__present img {
  width: 110px;
  aspect-ratio: 110/110;
}
@media screen and (min-width:900px) {
  .fv__present {
    top: 17px;
    left: calc(50% + 116px);
  }
  .fv__present img {
    width: 180px;
    aspect-ratio: 180/180;
  }
}

.fv__food {
  position: absolute;
  bottom: 0;
  right: calc(50% + 81px);
  z-index: 40;
}
.fv__food img {
  width: 86px;
  aspect-ratio: 86/141;
}
@media screen and (min-width:900px) {
  .fv__food {
    top: 227px;
    right: calc(50% + 218px);
  }
  .fv__food img {
    width: 202px;
    aspect-ratio: 202/332;
  }
}

.fv__cat1 {
  position: absolute;
  bottom: 0px;
  left: calc(50% + 59px);
  z-index: 40;
}
.fv__cat1 img {
  width: 98px;
  aspect-ratio: 98/72;
}
@media screen and (min-width:900px) {
  .fv__cat1 {
    bottom: -44px;
    left: calc(50% + 189px);
  }
  .fv__cat1 img {
    width: 233px;
    aspect-ratio: 233/174;
  }
}

.fv__cat2 {
  position: absolute;
  bottom: 58px;
  left: calc(50% + 105px);
}
.fv__cat2 img {
  width: 62px;
  aspect-ratio: 62/69;
}
@media screen and (min-width:900px) {
  .fv__cat2 {
    bottom: 58px;
    left: calc(50% + 189px);
  }
  .fv__cat2 img {
    width: 170px;
    aspect-ratio: 170/190;
  }
}

.about {
  position: relative;
  margin-top: 30px;
}
@media screen and (min-width:900px) {
  .about {
    margin-top: 80px;
  }
}

.about__decoration {
  position: absolute;
  overflow: hidden;
}

.about-stripe {
  display: none;
}
@media screen and (min-width:900px) {
  .about-stripe {
    display: block;
    top: -20px;
    right: calc(50% + 527px);
  }
  .about-stripe img {
    min-width: 250px;
    width: 250px;
    height: auto;
    aspect-ratio: 1;
  }
}

.about-cable {
  top: 396px;
  right: calc(100% - 60px);
  overflow: hidden;
  z-index: 30;
}
@media screen and (min-width:600px) {
  .about-cable {
    top: 74px;
    right: calc(50% + 300px);
    border-radius: 40px;
  }
}
@media screen and (min-width:900px) {
  .about-cable {
    top: 74px;
    right: calc(50% + 614px);
  }
}
.about-cable img {
  max-width: 200px;
  height: auto;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width:600px) {
  .about-cable img {
    min-width: 480px;
    height: auto;
    aspect-ratio: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width:900px) {
  .about-cable img {
    min-width: 480px;
    aspect-ratio: 1;
  }
}

.about-stone-steps {
  top: 552px;
  right: calc(50% - 133px);
  width: 100%;
}
@media screen and (min-width:900px) {
  .about-stone-steps {
    top: 322px;
    left: calc(50% - 857px);
  }
}
.about-stone-steps img {
  width: 216px;
  height: auto;
  aspect-ratio: 216/433;
}
@media screen and (min-width:900px) {
  .about-stone-steps img {
    width: 427px;
    height: auto;
    aspect-ratio: 427/817;
  }
}

.about__bg__pawpads {
  top: -10px;
  right: 0;
}
@media screen and (min-width:900px) {
  .about__bg__pawpads {
    top: -80px;
    left: calc(50% + 490px);
  }
}
@media screen and (min-width:1200px) {
  .about__bg__pawpads {
    top: -80px;
    left: calc(50% + 490px);
  }
}
.about__bg__pawpads img {
  width: 54px;
  height: auto;
  aspect-ratio: 54/120;
}
@media screen and (min-width:600px) {
  .about__bg__pawpads img {
    width: 100%;
    max-width: 100px;
    height: auto;
    aspect-ratio: 100/220;
  }
}
@media screen and (min-width:900px) {
  .about__bg__pawpads img {
    width: 100px;
    height: auto;
    aspect-ratio: 100/220;
  }
}
@media screen and (min-width:1200px) {
  .about__bg__pawpads img {
    width: 100%;
    max-width: 100px;
    aspect-ratio: 100/220;
  }
}

.about-dock {
  overflow: hidden;
  top: 274px;
  left: calc(100% - 64px);
  overflow: hidden;
}
.about-dock img {
  min-width: 200px;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (min-width:600px) {
  .about-dock img {
    min-width: 480px;
    height: auto;
    aspect-ratio: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width:900px) {
  .about-dock img {
    min-width: 480px;
    height: auto;
    aspect-ratio: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width:900px) {
  .about-dock img {
    width: 480px;
    height: auto;
    aspect-ratio: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width:600px) {
  .about-dock {
    top: 80px;
    left: calc(50% + 300px);
  }
}
@media screen and (min-width:900px) {
  .about-dock {
    top: 73px;
    left: calc(50% + 560px);
  }
}

@media screen and (min-width:600px) {
  .about-wavyline {
    display: block;
    top: 610px;
    left: calc(50% + 442px);
    z-index: -1;
  }
  .about-wavyline img {
    min-width: 874px;
    height: auto;
    aspect-ratio: 874/45;
  }
}

.about_fabric-button {
  bottom: 215px;
  left: calc(50% + 118px);
  z-index: -1;
}
@media screen and (min-width:600px) {
  .about_fabric-button {
    top: 601px;
    left: calc(50% + 250px);
  }
}
@media screen and (min-width:900px) {
  .about_fabric-button {
    bottom: 585px;
    left: calc(50% + 505px);
  }
}
.about_fabric-button img {
  width: 48px;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (min-width:900px) {
  .about_fabric-button img {
    min-width: 101px;
    aspect-ratio: 101/100;
  }
}

.about_fabric {
  bottom: 157px;
  right: 57px;
  z-index: 40;
}
@media screen and (min-width:900px) {
  .about_fabric {
    bottom: 379px;
    left: calc(50% + 400px);
  }
}
@media screen and (min-width:1200px) {
  .about_fabric {
    bottom: 379px;
    left: calc(50% + 374px);
  }
}
.about_fabric img {
  width: 133px;
  height: auto;
  aspect-ratio: 133/65;
}
@media screen and (min-width:900px) {
  .about_fabric img {
    min-width: 308px;
    aspect-ratio: 308/151;
  }
}

.about__inner {
  max-width: 375px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
@media screen and (min-width:600px) {
  .about__inner {
    max-width: 500px;
  }
}
@media screen and (min-width:900px) {
  .about__inner {
    max-width: 848px;
    padding-left: 0;
    padding-right: 0;
  }
}

.about__top {
  position: relative;
  padding-top: 40px;
  padding-bottom: 58px;
  background: #ffffff;
  height: 708px;
  border-radius: 24px;
  z-index: 50;
}
@media screen and (min-width:900px) {
  .about__top {
    border-radius: 40px;
    padding-top: 46px;
    padding-bottom: 40px;
    padding-right: 30px;
    padding-left: 30px;
    width: 680px;
    height: 829px;
    margin: 0 auto;
  }
}
@media screen and (min-width:1200px) {
  .about__top {
    border-radius: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 114px;
    padding-left: 114px;
    width: 848px;
  }
}
.about__top::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100px;
  height: 36px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  background-color: #cce1e4;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width:900px) {
  .about__top::after {
    width: 140px;
    height: 50px;
  }
}

@media screen and (min-width:900px) {
  .about__heading .heading__midashi {
    margin-top: 6px;
  }
}
.about__heading .heading__icon img {
  width: 31px;
  height: auto;
  aspect-ratio: 31/24;
}
@media screen and (min-width:900px) {
  .about__heading .heading__icon img {
    width: 40px;
    height: auto;
    aspect-ratio: 40/30;
  }
}
@media screen and (min-width:900px) {
  .about__heading .heading__title {
    padding-bottom: 1px;
  }
}

.about__pic-L {
  position: absolute;
  top: 40px;
  right: calc(50% + 51px);
}
@media screen and (min-width:900px) {
  .about__pic-L {
    top: 57px;
    right: calc(50% + 200px);
  }
}
.about__pic-L img {
  width: 80px;
  height: auto;
  aspect-ratio: 80/60;
}
@media screen and (min-width:900px) {
  .about__pic-L img {
    width: 134px;
    height: auto;
    aspect-ratio: 134/100;
  }
}

.about__pic-R {
  position: absolute;
  top: 36px;
  left: calc(50% + 63px);
}
@media screen and (min-width:900px) {
  .about__pic-R {
    width: 100%;
    top: 57px;
    left: calc(50% + 200px);
  }
}
.about__pic-R img {
  width: 80px;
  height: auto;
  aspect-ratio: 80/60;
}
@media screen and (min-width:900px) {
  .about__pic-R img {
    width: 134px;
    aspect-ratio: 134/100;
  }
}

.about__texts-wraps {
  margin-top: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
@media screen and (min-width:900px) {
  .about__texts-wraps {
    margin-top: 32px;
    gap: 32px;
  }
}

.about__text-midashi {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width:900px) {
  .about__text-midashi {
    display: none;
  }
}

.about__text-midashi-2 {
  display: none;
}
@media screen and (min-width:900px) {
  .about__text-midashi-2 {
    display: inline;
    font-weight: 700;
    letter-spacing: 0.58px;
  }
}

.onomichi-sns {
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.about__text3 {
  line-height: 1.55;
}

@media screen and (min-width:900px) {
  .about__text4 {
    line-height: 1.75;
  }
}

.about__text-gift {
  padding-top: 10px;
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width:900px) {
  .about__text-gift {
    padding-top: 13px;
    font-size: 20px;
    white-space: nowrap;
    width: 356px;
  }
}

.about__bottom {
  margin-top: 139.67px;
  text-align: center;
}
@media screen and (min-width:900px) {
  .about__bottom {
    margin-top: 168px;
  }
}

.about__onomichi-en {
  position: relative;
}
.about__onomichi-en img {
  width: 355px;
  height: auto;
  aspect-ratio: 355/37;
}
@media screen and (min-width:900px) {
  .about__onomichi-en img {
    width: 891px;
    height: auto;
    aspect-ratio: 891/97;
  }
}

.about__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.how-to-enter {
  margin-top: 55px;
}
@media screen and (min-width:900px) {
  .how-to-enter {
    margin-top: 100px;
  }
}

.how-to-enter__inner {
  max-width: 415px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width:900px) {
  .how-to-enter__inner {
    max-width: 1512px;
  }
}

.how-to-entry__decoration {
  position: absolute;
  overflow: hidden;
}

.how-to-enter__map-image {
  top: 10px;
  right: calc(50% + 52px);
}
@media screen and (min-width:900px) {
  .how-to-enter__map-image {
    top: -47px;
    right: calc(50% + 297px);
  }
}
.how-to-enter__map-image img {
  width: 149px;
  height: auto;
  aspect-ratio: 149/223;
}
@media screen and (min-width:900px) {
  .how-to-enter__map-image img {
    width: 420px;
    height: auto;
    aspect-ratio: 420/628;
  }
}

.how-to-entry__decoration {
  position: absolute;
}

.how-to-enter__cat2-1 {
  top: 13px;
  right: calc(50% - 219px);
  overflow: hidden;
  z-index: 30;
}
@media screen and (min-width:900px) {
  .how-to-enter__cat2-1 {
    top: -10px;
    right: calc(50% - 652px);
  }
}
.how-to-enter__cat2-1 img {
  width: 94px;
  height: auto;
  aspect-ratio: 94/80;
}
@media screen and (min-width:900px) {
  .how-to-enter__cat2-1 img {
    width: 214px;
    aspect-ratio: 214/181;
  }
}

.how-to-enter__cat2-2 {
  top: 10px;
  right: calc(50% - 165px);
}
@media screen and (min-width:900px) {
  .how-to-enter__cat2-2 {
    top: -17px;
    right: calc(50% - 527px);
  }
}
.how-to-enter__cat2-2 img {
  width: 105px;
  height: auto;
  aspect-ratio: 105/63;
}
@media screen and (min-width:900px) {
  .how-to-enter__cat2-2 img {
    width: 238px;
    aspect-ratio: 238/141;
  }
}

.how-to-enter__bg__pawpads-1 img,
.how-to-enter__bg__pawpads-2 img,
.how-to-enter__bg__pawpads-3 img {
  width: 55px;
  height: auto;
  aspect-ratio: 55/120;
}
@media screen and (min-width:900px) {
  .how-to-enter__bg__pawpads-1 img,
  .how-to-enter__bg__pawpads-2 img,
  .how-to-enter__bg__pawpads-3 img {
    width: 100px;
    aspect-ratio: 100/220;
  }
}

.how-to-enter__bg__pawpads-1 {
  position: absolute;
  top: 85px;
  right: calc(50% - 165px);
}
@media screen and (min-width:900px) {
  .how-to-enter__bg__pawpads-1 {
    top: 156px;
    right: calc(50% - 720px);
  }
}

.how-to-enter__bg__pawpads-2 {
  position: absolute;
  top: 560px;
  left: calc(50% - 167px);
}
@media screen and (min-width:900px) {
  .how-to-enter__bg__pawpads-2 {
    top: 587px;
    left: calc(50% - 720px);
  }
}

.how-to-enter__bg__pawpads-3 {
  position: absolute;
  top: 889px;
  right: calc(50% - 165px);
}
@media screen and (min-width:900px) {
  .how-to-enter__bg__pawpads-3 {
    display: none;
  }
}

.how-to-enter__heading .heading__icon img {
  width: 37px;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (min-width:900px) {
  .how-to-enter__heading .heading__icon img {
    width: 48px;
    height: auto;
    aspect-ratio: 1;
  }
}
.how-to-enter__heading .heading__title {
  margin-top: -1px;
  padding-bottom: 0;
}
@media screen and (min-width:900px) {
  .how-to-enter__heading .heading__title {
    padding-bottom: 2px;
  }
}

.how-to-enter__steps {
  position: relative;
  padding-top: 29px;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  text-align: center;
  z-index: 30;
}
@media screen and (min-width:900px) {
  .how-to-enter__steps {
    padding-top: 40px;
    margin-bottom: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    max-width: 1024px;
    margin: 0 auto;
  }
}

.how-to-enter__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width:900px) {
  .how-to-enter__step {
    width: 320px;
  }
}

.step2::before {
  content: url(../img/how-to-stroke.png);
}
@media screen and (min-width:900px) {
  .step2::before {
    content: url(../img/how-to-stroke-pc.png);
    position: absolute;
    top: calc(50% - 54px);
    right: calc(50% + 142px);
  }
}

.step3::before {
  content: url(../img/how-to-stroke.png);
}
@media screen and (min-width:900px) {
  .step3::before {
    content: url(../img/how-to-stroke-pc.png);
    position: absolute;
    top: calc(50% - 54px);
    right: calc(50% - 216px);
  }
}

.step__box2 {
  margin-top: -4px;
}
@media screen and (min-width:900px) {
  .step__box2 {
    margin-top: 69px;
  }
}

.step__box3 {
  margin-top: -5px;
}
@media screen and (min-width:900px) {
  .step__box3 {
    margin-top: 0;
  }
}

.step__box-image img {
  width: 196px;
  height: auto;
  aspect-ratio: 196/210;
}
@media screen and (min-width:900px) {
  .step__box-image img {
    width: 280px;
    height: auto;
    aspect-ratio: 280/300;
  }
}

.step__box-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
@media screen and (min-width:900px) {
  .step__box-heading {
    margin-top: 24px;
    gap: 18px;
  }
}

.step__box-title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width:900px) {
  .step__box-title {
    font-size: 20px;
  }
}

.link-text {
  text-decoration-line: underline;
}

.step__box__button a {
  color: #4a3636;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  background: #ffffff;
  display: inline-block;
  padding: 8px 12px 8px 40px;
  margin-top: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.step__box__button a::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../img/how-to-enter-icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.how-to-enter-content__btn {
  text-align: center;
}
@media screen and (min-width:900px) {
  .how-to-enter-content__btn {
    margin-top: 43px;
  }
}

.prizes {
  margin-top: 120.67px;
  position: relative;
  margin-bottom: 219px;
}
@media screen and (min-width:900px) {
  .prizes {
    margin-top: 270px;
    margin-bottom: 640px;
  }
}
.prizes::after {
  position: absolute;
  content: "";
  background-image: url(../img/prises-bg-sp.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  bottom: -215px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  min-height: 260px;
  z-index: -2;
  overflow: hidden;
}
@media screen and (min-width:900px) {
  .prizes::after {
    background-image: url(../img/prises-bg-pc.jpg);
    min-height: 640px;
    bottom: -640px;
  }
}

.prizes__inner {
  background: #ffffff;
  max-width: 375px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  border-radius: 24px;
}
@media screen and (min-width:900px) {
  .prizes__inner {
    max-width: 1024px;
    padding-left: 56px;
    padding-right: 56px;
    height: 1187px;
    padding-bottom: 0;
  }
}

.prizes__contents::before {
  content: "";
  position: absolute;
  background-image: url(../img/deco_prizes1_sp.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: transparent;
  top: -83px;
  left: 50%;
  width: 238px;
  height: 83px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width:900px) {
  .prizes__contents::before {
    background-image: url(../img/deco_prizes1_pc.png);
    top: -148px;
    width: 366px;
    height: 148px;
  }
}

.prizes__decoration-imageL {
  display: none;
}
@media screen and (min-width:900px) {
  .prizes__decoration-imageL {
    display: block;
    position: absolute;
    top: -118px;
    right: calc(50% + 200px);
  }
}

.prizes__decoration-imageR {
  display: none;
}
@media screen and (min-width:900px) {
  .prizes__decoration-imageR {
    display: block;
    position: absolute;
    top: -118px;
    left: calc(50% + 200px);
  }
}

.prizes__heading {
  position: absolute;
  top: -68px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width:900px) {
  .prizes__heading {
    top: -123px;
  }
}
.prizes__heading .heading__midashi {
  margin-top: -5px;
}
.prizes__heading .heading__title {
  margin-top: -3px;
}
@media screen and (min-width:900px) {
  .prizes__heading .heading__title {
    border-bottom: 5px;
  }
}

.prizes__wrap {
  padding-top: 60px;
  padding-bottom: 34px;
  text-align: center;
}
@media screen and (min-width:900px) {
  .prizes__wrap {
    padding-top: 68px;
  }
}

.prizes__text {
  margin-bottom: 48px;
}
@media screen and (min-width:900px) {
  .prizes__text {
    margin-bottom: 82px;
  }
}

.prizes__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 14px;
  grid-row-gap: 39px;
}
@media screen and (min-width:900px) {
  .prizes__cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 80px;
  }
}

.prizes__card {
  position: relative;
  -webkit-box-shadow: inset 0 0 0 4px transparent;
          box-shadow: inset 0 0 0 4px transparent; /* 初期状態で透明な枠線 */
}
.prizes__card:nth-child(5) {
  grid-column: 1/3;
  justify-self: center;
  width: calc(50% - 7.5px);
}
@media screen and (min-width:900px) {
  .prizes__card:nth-child(5) {
    grid-column: auto;
    justify-self: auto;
    width: auto;
    height: auto;
    grid-area: 2/5/3/7;
  }
}
@media screen and (min-width:900px) {
  .prizes__card:nth-child(1) {
    grid-area: 1/1/2/4;
  }
  .prizes__card:nth-child(2) {
    grid-area: 1/4/2/7;
  }
  .prizes__card:nth-child(3) {
    grid-area: 2/1/3/3;
  }
  .prizes__card:nth-child(4) {
    grid-area: 2/3/3/5;
  }
}

@media screen and (min-width:900px) {
  .card-L .head-number-image img {
    width: 100px;
    height: auto;
    aspect-ratio: 1;
  }
}
@media screen and (min-width:900px) {
  .card-L .prizes__box__body::after {
    width: 100px;
    height: 100px;
  }
  .card-L .prizes__box__body .prizes__box-zoom-image {
    right: 6px;
    bottom: 6px;
  }
  .card-L .prizes__box__body .prizes__box-zoom-image img {
    width: 32px;
    height: auto;
    aspect-ratio: 1;
  }
}

.prizes__box__head {
  position: absolute;
  top: -24px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  z-index: 50;
}
@media screen and (min-width:900px) {
  .prizes__box__head {
    top: -50px;
  }
}

.head-number-image img {
  width: 48px;
  height: auto;
  aspect-ratio: 1;
}

.prizes__box__body {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 8px;
  border: 2px solid transparent; /* 初期状態で透明な枠線 */
}
@media screen and (min-width:900px) {
  .prizes__box__body {
    border-radius: 24px;
    border: 4px solid transparent; /* 初期状態で透明な枠線 */
  }
}
.prizes__box__body:hover {
  overflow: hidden;
  border: 4px solid #9ed0e0;
  border-radius: 8px;
}
@media screen and (min-width:900px) {
  .prizes__box__body:hover {
    border-radius: 24px;
  }
}
.prizes__box__body:hover .prizes__box__image {
  width: 100%;
}
.prizes__box__body:hover .prizes__box__image img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.prizes__box__body .prizes__box-zoom-image {
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 50;
}
.prizes__box__body .prizes__box-zoom-image img {
  width: 11.52px;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (min-width:900px) {
  .prizes__box__body .prizes__box-zoom-image img {
    position: relative;
    width: 20.48px;
    height: auto;
    aspect-ratio: 1;
    right: 4px;
    bottom: 4px;
  }
}
.prizes__box__body::after {
  position: absolute;
  overflow: hidden;
  content: "";
  bottom: -2px;
  right: -2px;
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #67b0c7;
  border-radius: 0 0 12px;
}
@media screen and (min-width:900px) {
  .prizes__box__body::after {
    min-width: 64px;
    height: 64px;
    border-radius: 0 0 24px;
  }
}
.prizes__box__body:hover::after {
  background-color: #9ed0e0;
}

.prizes__box__image {
  overflow: hidden;
  display: block;
}
.prizes__box__image img {
  width: 160px;
  height: auto;
  aspect-ratio: 160/140;
  border-radius: 8px 8px 0 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (min-width:900px) {
  .prizes__box__image img {
    width: 440px;
    height: auto;
    aspect-ratio: 440/340;
    border-radius: 24px 24px 0 0;
  }
}

.prizes__box__text {
  font-weight: 700;
  white-space: nowrap;
  display: grid;
  place-items: center;
  height: 56px;
}

@media screen and (min-width:900px) {
  .text-L {
    font-size: 20px;
    height: 120px;
  }
}

@media screen and (min-width:900px) {
  .card-S .prizes__box__head {
    margin-top: 8px;
  }
}
@media screen and (min-width:900px) {
  .card-S .head-number-image img {
    width: 80px;
    height: auto;
    aspect-ratio: 1;
  }
}
@media screen and (min-width:900px) {
  .card-S .prizes__box__image img {
    width: 280px;
    height: auto;
    aspect-ratio: 280/240;
    border-radius: 16px 16px 0 0;
  }
}
@media screen and (min-width:900px) {
  .card-S .box-zoom-S img {
    right: 6px;
    bottom: 6px;
  }
}

@media screen and (min-width:900px) {
  .text-S {
    font-size: 16px;
    height: 80px;
  }
}

.prizes-content__btn {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width:900px) {
  .prizes-content__btn {
    margin-top: 37px;
  }
}

.prizes__button {
  margin-top: -5px;
}
@media screen and (min-width:320px) and (max-width:374px) {
  .prizes__button {
    font-size: 14px;
    padding-bottom: 4px;
  }
}

.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 70;
  border: none;
  border-radius: 24px;
  padding: 0;
  max-width: calc(100% - 20px);
  width: 336px;
  max-height: calc(100% - 20px);
  height: 480px;
}
@media screen and (min-width:900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
  }
}
.prizes-modal::-ms-backdrop {
  opacity: 0.7;
  background: #000;
}
.prizes-modal::backdrop {
  opacity: 0.7;
  background: #000;
}

.prizes-modal__box {
  border-radius: 24px;
  text-align: center;
  background: #ffffff;
}

.prizes-modal__image img {
  border-radius: 24px 24px 0 0;
}

.prizes-modal__body {
  padding-top: 36px;
  padding-bottom: 56px;
}
@media screen and (min-width:900px) {
  .prizes-modal__body {
    padding-top: 32px;
    padding-bottom: 106px;
  }
}

.prizes-modal__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (min-width:900px) {
  .prizes-modal__title {
    font-size: 20px;
  }
}

.prizes-modal__text {
  font-size: 12px;
  margin-bottom: 16px;
}
@media screen and (min-width:900px) {
  .prizes-modal__text {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.spots {
  margin-top: 22px;
  padding-bottom: 17.84px;
  position: relative;
  background: #67b0c7;
}
.spots::before {
  content: "";
  position: absolute;
  display: block;
  overflow: hidden;
  left: 0;
  top: -45px;
  width: 100%;
  height: 46px;
  background: url(../img/spots-bg-blue-sp.png);
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
  background-color: transparent;
}
@media screen and (min-width:900px) {
  .spots::before {
    background: url(../img/spots-bg-blue-pc.png);
    height: 120px;
    top: -120px;
  }
}
.spots::after {
  content: "";
  position: absolute;
  display: block;
  overflow: hidden;
  left: 0;
  bottom: -44px;
  width: 100%;
  height: 45.714px;
  background: url(../img/spots-bg-blue90-sp.png);
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
  background-color: transparent;
}
@media screen and (min-width:900px) {
  .spots::after {
    background: url(../img/spots-bg-blue90-pc.png);
    height: 120px;
    left: 0;
    bottom: -106px;
  }
}

@media screen and (min-width:900px) {
  .spots__inner {
    width: min(3000px, 100%);
    overflow: hidden;
    margin-inline: auto;
    position: relative;
  }
}

@media screen and (min-width:900px) {
  .spots__body {
    padding-left: max(30px, 50% - 605px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 38px;
  }
}

.spots__title {
  position: relative;
  padding-left: 93px;
  display: inline-block;
  margin-bottom: 24px;
}
@media screen and (min-width:900px) {
  .spots__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 38px;
    padding-top: 70px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    text-align: center;
  }
}
.spots__title::before {
  position: absolute;
  content: "";
  background-image: url(../img/spots-title-icon.png);
  width: 20px;
  height: 19px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(50% + 75px);
}
@media screen and (min-width:900px) {
  .spots__title::before {
    width: 40px;
    height: 38px;
    top: 26px;
    right: calc(50% - 72px);
  }
}

.spots__title-name {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
}
@media screen and (min-width:900px) {
  .spots__title-name {
    font-size: 40px;
    letter-spacing: 0.25em;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.spots__card {
  overflow: hidden;
}
@media screen and (min-width:900px) {
  .spots__card {
    position: relative;
  }
}

.spots__card__inner {
  width: min(880px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width:900px) {
  .spots__card__inner {
    overflow: visible;
  }
}

.spots__card__swiper-slide {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  width: 240px;
  height: auto;
  overflow: hidden;
  padding-bottom: 30px;
}
@media screen and (min-width:900px) {
  .spots__card__swiper-slide {
    border-radius: 24px;
    width: 344px;
    padding-bottom: 40px;
    overflow: visible;
  }
}

.spots__image img {
  border-radius: 12px 12px 0 0;
  width: 240px;
  height: auto;
  aspect-ratio: 240/180;
}
@media screen and (min-width:900px) {
  .spots__image img {
    border-radius: 24px 24px 0 0;
    width: 344px;
    height: auto;
    aspect-ratio: 344/240;
  }
}

.spots__box__text-wrap {
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width:900px) {
  .spots__box__text-wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}

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

.spots__box__text {
  margin-top: 12px;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .spots__box__text {
    font-size: 16px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  display: none;
}

.spots__card__swiper-container,
.spots__card__swiper,
.spots__card__swiper-wrapper,
.spots__card__swiper-slide {
  position: relative;
}

.spots__card__swiper-container {
  position: unset;
}
@media screen and (min-width:900px) {
  .spots__card__swiper-container {
    margin-left: -190px;
    padding-left: 104px;
    overflow: visible;
  }
}

.spots__card__swiper {
  overflow: visible;
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}
@media screen and (min-width:600px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
@media screen and (min-width:900px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
@media screen and (min-width:1200px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    bottom: calc(50% + 65px);
    top: auto;
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width:1200px) {
  .swiper-button-prev {
    right: calc(50% + 392px);
  }
}

@media screen and (min-width:1200px) {
  .swiper-button-next {
    left: calc(50% + 392px);
  }
}

@media screen and (min-width:900px) {
  .spots__bottom__inner {
    position: relative;
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0 auto;
  }
}

.spots__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media screen and (min-width:900px) {
  .spots__bottom {
    padding-top: 68px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
  }
}

.spots__bottom-image img {
  width: 255px;
  height: auto;
  aspect-ratio: 255/55;
}
@media screen and (min-width:900px) {
  .spots__bottom-image img {
    width: 495px;
    aspect-ratio: 495/107;
  }
}

.spots__bottom-text {
  white-space: nowrap;
  font-size: 11.444px;
  color: #ffffff;
}
@media screen and (min-width:900px) {
  .spots__bottom-text {
    font-size: 16px;
  }
}

.spots-content__btn {
  margin-top: 24px;
}
@media screen and (min-width:900px) {
  .spots-content__btn {
    margin-top: 20px;
  }
}

@media screen and (min-width:900px) {
  .spots__button {
    height: 56px;
    padding: 10px 40px 12px 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 40px;
    border-bottom: -2px;
  }
}

.spots__decoration-pawpads {
  position: absolute;
}
.spots__decoration-pawpads img {
  width: 100px;
  height: auto;
  aspect-ratio: 100/220;
}
@media screen and (min-width:900px) {
  .spots__decoration-pawpads {
    display: block;
    bottom: 15px;
    left: calc(50% - 720px);
  }
}

.qa {
  padding-top: 74px;
  padding-bottom: 36px;
}
@media screen and (min-width:900px) {
  .qa {
    margin-top: 120px;
  }
}

.qa__heading {
  margin-top: 3px;
}
@media screen and (min-width:900px) {
  .qa__heading {
    margin-top: 18px;
  }
}
@media screen and (min-width:900px) {
  .qa__heading .heading__icon img {
    width: 48px;
    height: auto;
    aspect-ratio: 1;
  }
}
.qa__heading .heading__title {
  margin-top: -7px;
}
@media screen and (min-width:900px) {
  .qa__heading .heading__title {
    padding-bottom: 3px;
  }
}

.qa__boxes {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
@media screen and (min-width:900px) {
  .qa__boxes {
    margin-top: 36px;
    gap: 24px;
  }
}

.qa__box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #ffffff;
  color: #4a3636;
}
@media screen and (min-width:900px) {
  .qa__box {
    border-radius: 16px;
  }
}
.qa__box.is-open .qa__box__head::after {
  background: url(../img/qa-minus-button.png) no-repeat center center/contain;
  width: 26.182px;
  height: 26.182px;
}
@media screen and (min-width:900px) {
  .qa__box.is-open .qa__box__head::after {
    width: 48px;
    height: 48px;
  }
}

.qa__box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 17px;
  padding-right: 13px;
  display: flex;
  width: 100%;
  height: 63px;
}
@media screen and (min-width:900px) {
  .qa__box__head {
    gap: 15px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 24px;
    padding-left: 24px;
    height: 89px;
  }
}
.qa__box__head::after {
  content: "";
  background: url(../img/qa-plus-button.png) no-repeat center center/contain;
  width: 26.182px;
  height: 26.182px;
}
@media screen and (min-width:900px) {
  .qa__box__head::after {
    width: 48px;
    height: 48px;
  }
}

.qa__box__head-icon {
  font-size: 24px;
  color: #9ed0e0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (min-width:900px) {
  .qa__box__head-icon {
    font-size: 32px;
  }
}

.qa__box__head-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
}
@media screen and (min-width:900px) {
  .qa__box__head-text {
    font-size: 20px;
    font-family: "Josefin Sans", sans-serif;
  }
}

.qa-box__body {
  background: #f5f5f5;
  border-radius: 0 0 12px 12px;
  padding: 15px;
  display: none;
}
@media screen and (min-width:900px) {
  .qa-box__body {
    border-radius: 0 0 16px 16px;
    padding: 18px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:900px) {
  .qa-box__a {
    gap: 21px;
  }
}

.qa-box__a-icon {
  color: #9ed0e0;
  font-size: 24px;
  font-family: "Josefin Sans", sans-serif;
}
@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 {
    margin-top: 80px;
  }
}

@media screen and (min-width:900px) {
  .entry-requirements__inner {
    margin-bottom: 120px;
  }
}

.entry-requirements__contents {
  border: 8px solid #ffffff;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 34px;
}
@media screen and (min-width:900px) {
  .entry-requirements__contents {
    padding-top: 20px;
    padding-bottom: 18px;
  }
}

@media screen and (min-width:900px) {
  .entry-requirements__heading {
    gap: 3px;
  }
}
@media screen and (min-width:900px) {
  .entry-requirements__heading .heading__title {
    margin-top: -2px;
    padding-bottom: 1px;
  }
}

.entry-requirements__table {
  margin-top: 20px;
  margin-bottom: 14px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width:900px) {
  .entry-requirements__table {
    margin-top: 39px;
    padding-left: 62px;
    padding-right: 46px;
  }
}

.table__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.table__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 14px;
}
@media screen and (min-width:900px) {
  .table__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 54px;
    padding-bottom: 12px;
  }
}
.table__content:nth-child(5) {
  border-bottom: none;
}

.table__head {
  position: relative;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 15px;
  vertical-align: middle;
}
@media screen and (min-width:900px) {
  .table__head {
    font-size: 16px;
    width: 170px;
  }
}
.table__head::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 8px;
  height: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: #9ed0e0;
}

.table__date {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: -0.1px;
  vertical-align: middle;
}
@media screen and (min-width:900px) {
  .table__date {
    font-size: 16px;
    width: calc(100% - 224px);
    line-height: 1.57;
  }
}
.table__date li {
  position: relative;
  padding-left: 15px;
  letter-spacing: 0.1px;
  line-height: 19px;
}
@media screen and (min-width:900px) {
  .table__date li {
    padding-left: 22px;
    line-height: 26px;
  }
}
.table__date li::before {
  position: absolute;
  content: "";
  background: #4a3636;
  left: 10px;
  top: 11px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
}
@media screen and (min-width:900px) {
  .table__date li::before {
    top: 14px;
  }
}

.jtb-sns {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-policy {
  text-decoration: underline;
}

.entry-requirements__bg img {
  width: 100%;
}

.contact {
  padding-top: 32px;
  padding-bottom: 46px;
  background: #ffffff;
}
@media screen and (min-width:900px) {
  .contact {
    padding-top: 106px;
    padding-bottom: 120px;
  }
}

.contact__heading .heading__midashi {
  margin-top: -4px;
}
@media screen and (min-width:900px) {
  .contact__heading .heading__midashi {
    margin-top: 0;
  }
}
.contact__heading .heading__title {
  margin-top: -3px;
}
@media screen and (min-width:900px) {
  .contact__heading .heading__title {
    margin-top: 0;
    padding: 0;
  }
}

.contact__message-text {
  margin-top: 23px;
  text-align: center;
}
@media screen and (min-width:900px) {
  .contact__message-text {
    margin-top: 27px;
  }
}

.contact__form {
  margin-top: 24px;
}
@media screen and (min-width:900px) {
  .contact__form {
    margin-top: 32px;
    max-width: 848px;
    margin: 0 auto;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (min-width:900px) {
  .contact__fields {
    margin-top: 40px;
    gap: 22px;
  }
}

@media screen and (min-width:900px) {
  .contact__field:nth-child(4) {
    margin-top: 18px;
  }
  .contact__field:nth-child(5) {
    margin-top: 14px;
  }
}

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

.form-field__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:900px) {
  .form-field__head {
    width: 212px;
    gap: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width:900px) {
  .form-field__label {
    font-size: 16px;
    margin-right: 12px;
  }
}

.form-field__tag {
  font-weight: 700;
  padding: 4px 8px;
  color: #ffffff;
  background: #ce2073;
  border-radius: 4px;
}
@media screen and (min-width:900px) {
  .form-field__tag {
    font-size: 12px;
  }
}

.form-field__item {
  background-color: #f5f5f5;
  border-radius: 8px;
}
@media screen and (min-width:900px) {
  .form-field__item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.form-text {
  padding: 16px;
  background-color: #f5f5f5;
  border-radius: 8px;
  border: none;
  background: inherit;
  font-size: 14px;
  width: 100%;
}
@media screen and (min-width:900px) {
  .form-text {
    font-size: 16px;
  }
}
.form-text::-webkit-input-placeholder {
  color: #cccccc;
}
.form-text::-moz-placeholder {
  color: #cccccc;
}
.form-text:-ms-input-placeholder {
  color: #cccccc;
}
.form-text::-ms-input-placeholder {
  color: #cccccc;
}
.form-text::placeholder {
  color: #cccccc;
}
.form-text:focus {
  border: 1px solid #9ed0e0;
  background: #E9F6F8;
  outline: none;
}

.form-text.is-error,
.form-textarea.is-error {
  background-color: #fff0f7;
  border-color: #ce2073;
}

.form-select {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 8px;
  border: none;
  width: 100%;
  height: 56px;
  padding-inline: block;
  padding: 16px;
  font-size: 14px;
  cursor: pointer;
  background-image: url(../img/contact-control.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat;
  background-position: center right 10.5px, center center;
  background-size: 32px 32px, cover;
  border: 1px solid transparent;
}
@media screen and (min-width:900px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:focus {
  border: 1px solid #9ed0e0;
  background: #E9F6F8;
  outline: none;
}

.form-field__item-white {
  background: #ffffff;
  padding: 0;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.form-radio__input:focus + .form-radio__text::before {
  border: 1px solid #9ed0e0;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::before {
  border: 1px solid #9ed0e0;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__input:focus .form-checkbox__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, .form-radio__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  left: 0;
  background: #f5f5f5;
}
.form-radio__text::after {
  background: #9ed0e0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 6px;
  opacity: 0;
}
.form-radio__text:focus {
  border: 1px solid #9ed0e0;
}

@media screen and (min-width:900px) {
  .form-field--top-alignment {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-textarea {
  padding: 16px;
  width: 100%;
  height: 160px;
  border: none;
  background-color: #f5f5f5;
  border-radius: 8px;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .form-textarea {
    font-size: 16px;
  }
}
.form-textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.form-textarea::-moz-placeholder {
  color: #cccccc;
}
.form-textarea:-ms-input-placeholder {
  color: #cccccc;
}
.form-textarea::-ms-input-placeholder {
  color: #cccccc;
}
.form-textarea::placeholder {
  color: #cccccc;
}
.form-textarea:focus {
  border: 1px solid #9ed0e0;
  background: #E9F6F8;
  outline: none;
}

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

.form-checkbox {
  cursor: pointer;
}

.form-checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border: 1px solid #9ed0e0;
  background: #E9F6F8;
  outline: none;
}

.form-checkbox__text {
  position: relative;
  font-size: 14px;
  padding-left: 37px;
}
@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%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text a {
  text-decoration-line: underline;
}
.form-checkbox__text a:hover {
  color: #67b0c7;
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f5f5f5;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-checkbox__text::after {
  background: url(../img/contact-privacy-check.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  opacity: 0;
}

.contact__button {
  margin-top: 24px;
  text-align: center;
}
.contact__button:focus {
  border: 1px solid #9ed0e0;
  background: #E9F6F8;
}
@media screen and (min-width:900px) {
  .contact__button {
    margin-top: 40px;
  }
}

.button--submit {
  display: inline-block;
  padding: 6px 20px 8px 24px;
  border: 2px solid #4a3636;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding-bottom: 4px;
  height: 40px;
  border-radius: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}
@media screen and (min-width:900px) {
  .button--submit {
    padding: 6px 37px 8px 37px;
  }
}
.button--submit:hover {
  background-color: #ffee56;
  outline: none;
}

.footer {
  padding-top: 40px;
}
@media screen and (min-width:900px) {
  .footer {
    position: relative;
    padding-top: 120px;
  }
}

.footer__inner {
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
@media screen and (min-width:900px) {
  .footer__inner {
    max-width: 984px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width:1200px) {
  .footer__inner {
    max-width: 1024px;
    padding-left: 0;
    padding-right: 0;
  }
}

.footer__decoration-pawpads {
  position: absolute;
  z-index: -1;
}
@media screen and (min-width:900px) {
  .footer__decoration-pawpads {
    display: none;
  }
}
@media screen and (min-width:1200px) {
  .footer__decoration-pawpads {
    top: 80px;
    left: calc(100% - 180px);
  }
}

.footer__sns {
  text-align: center;
}

.footer__sns-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width:900px) {
  .footer__sns-title {
    font-size: 24px;
  }
}

.footer__sns__items {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__sns__items img {
  width: 32px;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (min-width:900px) {
  .footer__sns__items img {
    width: 40px;
  }
}

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

.footer__onomichi-en img {
  max-width: 328px;
  width: 100%;
  height: auto;
  aspect-ratio: 328/34.4;
}
@media screen and (min-width:900px) {
  .footer__onomichi-en img {
    max-width: 755px;
    height: auto;
    aspect-ratio: 755/82.2;
  }
}

.footer__maps {
  overflow: hidden;
}
@media screen and (min-width:900px) {
  .footer__maps {
    margin-bottom: 106px;
  }
}

@media screen and (min-width:900px) {
  .map__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 120px;
  }
}

.footer__map-iframe iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width:900px) {
  .footer__map-iframe iframe {
    width: 450.5px;
    height: auto;
    aspect-ratio: 512/400;
    border-radius: 0 16px 16px 0;
  }
}
@media screen and (min-width:1200px) {
  .footer__map-iframe iframe {
    width: 512px;
    height: auto;
    aspect-ratio: 512/400;
    border-radius: 0 16px 16px 0;
  }
}

.footer__map-address {
  padding-top: 17px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  text-align: center;
  background: #ffffff;
  border-radius: 0 0 16px 16px;
}
@media screen and (min-width:320px) and (max-width:374px) {
  .footer__map-address {
    padding-left: max(15px, 50% - 232px);
    padding-right: max(15px, 50% - 232px);
  }
}
@media screen and (min-width:900px) {
  .footer__map-address {
    border-radius: 16px 0 0 16px;
    padding-top: 100px;
    padding-left: max(20px, 50% - 500px);
    padding-right: max(20px, 50% - 500px);
    padding-bottom: 0;
    text-align: left;
  }
}
@media screen and (min-width:1200px) {
  .footer__map-address {
    border-radius: 16px 0 0 16px;
    padding-top: 100px;
    padding-left: 61.5px;
    padding-right: 61.5px;
    padding-bottom: 0;
    text-align: left;
  }
}

.footer__map-address-logo img {
  width: 153px;
  height: auto;
  aspect-ratio: 153/20;
}
@media screen and (min-width:900px) {
  .footer__map-address-logo img {
    width: 183px;
    height: auto;
    aspect-ratio: 183/24;
  }
}

@media screen and (min-width:900px) {
  .footer__map__table {
    height: 140px;
  }
}

.footer__table__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  vertical-align: middle;
  gap: 4px;
}
@media screen and (min-width:900px) {
  .footer__table__contents {
    gap: 7px;
  }
}

@media screen and (min-width:900px) {
  .footer__table__content:nth-child(1) {
    margin-top: -5px;
    margin-left: -2px;
  }
  .footer__table__content:nth-child(2) {
    margin-top: 1px;
    margin-left: -2px;
  }
  .footer__table__content:nth-child(3) {
    margin-top: 1px;
    margin-left: -2px;
  }
  .footer__table__content:nth-child(4) {
    margin-top: 1px;
    margin-left: -2px;
  }
}

.footer__table__head {
  position: relative;
  text-align: left;
  min-width: 78px;
  padding-left: 16px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (min-width:900px) {
  .footer__table__head {
    font-size: 16px;
    width: 120px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.footer__table__head::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 8px;
  height: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: #9ed0e0;
}
@media screen and (min-width:900px) {
  .footer__table__head::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.footer__table__date {
  font-style: normal;
  text-align: left;
}
@media screen and (min-width:900px) {
  .footer__table__date {
    letter-spacing: -0.08px;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -moz-text-align-last: left;
         text-align-last: left;
    font-size: 16px;
    white-space: nowrap;
  }
}

.footer__pagetop {
  margin-top: 27px;
  text-align: center;
  margin-bottom: 69px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  cursor: pointer;
}
@media screen and (min-width:900px) {
  .footer__pagetop {
    position: fixed;
    bottom: -30px;
    right: 40px;
    z-index: 30;
  }
  .footer__pagetop img {
    width: 100px;
    height: auto;
    aspect-ratio: 100/104;
  }
}

.footer__bottom {
  position: relative;
  margin-top: 24px;
  padding-bottom: 25px;
  text-align: center;
  background: #67b0c7;
}
@media screen and (min-width:900px) {
  .footer__bottom {
    margin-top: 22px;
    padding-bottom: 32px;
  }
}
.footer__bottom::before {
  content: "";
  position: absolute;
  display: block;
  overflow: hidden;
  bottom: 41px;
  left: 0;
  width: 100%;
  height: 49px;
  background: url(../img/footer-wave-sp.png);
  background-repeat: repeat-x;
  background-position: left -6px center;
  background-size: contain;
  background-color: transparent;
}
@media screen and (min-width:900px) {
  .footer__bottom::before {
    background: url(../img/footer-wave-pc.png);
    height: 120px;
    bottom: 58px;
    left: 0;
    background-repeat: repeat-x;
    background-position: left center;
    background-size: contain;
    background-color: transparent;
  }
}

.footer__copyright {
  font-size: 10px;
  color: #ffffff;
  padding-bottom: 25px;
  line-height: 2;
}
@media screen and (min-width:900px) {
  .footer__copyright {
    font-size: 14px;
  }
}