@charset "UTF-8";
body {
  font-family: "Noto Sans JP";
  color: #4a3636;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  background: #e9f6f8;
}

.main {
  overflow: hidden;
}

.button {
  display: inline-block;
  padding: 5px 22px 6px 22px;
  text-align: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  color: #4a3636;
  white-space: nowrap;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.button:hover {
  background: #ffee56;
}

.button-sm {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  padding: 2px 23px 4px 23px;
}
@media screen and (min-width: 900px) {
  .button-sm {
    font-size: 16px;
    padding: 4px 22px 6px 22px;
  }
}

.hidden {
  display: none;
}
@media screen and (max-width: 374px) {
  .hidden {
    display: block;
  }
}

@media screen and (max-width: 899px) {
  .hidden-sp {
    display: none;
  }
}

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

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

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

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

.inner {
  padding-inline: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .inner {
    max-width: 560px;
  }
}
@media screen and (min-width: 760px) {
  .inner {
    max-width: 710px;
  }
}
@media screen and (min-width: 900px) {
  .inner {
    max-width: 860px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .inner {
    max-width: 1084px;
  }
}

.link_line:hover {
  color: #67b0c7;
}

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

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}
@media screen and (min-width: 760px) {
  .header__inner {
    padding-inline: 20px;
    margin: auto;
  }
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 24px;
  }
}

.header-inner__nav {
  position: relative;
  height: inherit;
  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: 18px 20px;
  z-index: 50;
  position: sticky;
  background: #fff;
  width: 100%;
}
@media screen and (min-width: 760px) {
  .header-inner__nav {
    padding: 0;
  }
}

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

.header__nav {
  position: fixed;
  top: 64px;
  width: 100%;
  height: calc(100% - 64px);
  padding: 76px 80px;
  background: #fff;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  z-index: 20;
}
.header__nav.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 760px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
}
@media screen and (min-width: 760px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
}
@media screen and (min-width: 900px) {
  .header__lists {
    gap: 12px;
  }
}

.header__link {
  display: inline-block;
  padding-block: 8px;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 760px) {
  .header__link {
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
  }
}
.header__link:hover {
  color: #67b0c7;
  -webkit-text-decoration: underline #67b0c7;
          text-decoration: underline #67b0c7;
}

.header__button {
  margin-top: 5px;
}
@media screen and (min-width: 760px) {
  .header__button {
    margin-top: 0;
    margin-left: 4px;
    font-size: 14px;
  }
}

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

.drawer__icon {
  width: 32px;
  height: 27px;
  position: relative;
}
.drawer__icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer__icon.is-checked .drawer-icon__bar:nth-child(1), .drawer__icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 14px;
}
.drawer__icon.is-checked .drawer-icon__bar:nth-child(1) {
  width: 32px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer__icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer__icon.is-checked .drawer-icon__point {
  opacity: 0;
}

.drawer-icon__bar {
  position: absolute;
  width: 32px;
  height: 3px;
  background: #4a3636;
  left: 0;
  border-radius: 3px;
  -webkit-transition: top 0.6s, -webkit-transform 0.6s;
  transition: top 0.6s, -webkit-transform 0.6s;
  transition: top 0.6s, transform 0.6s;
  transition: top 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-child(2) {
  top: 12px;
}
.drawer-icon__bar:nth-child(3) {
  top: 24px;
}

.drawer-icon__point {
  position: absolute;
  right: 0;
  width: 4.8px;
  height: 3px;
  background: #4a3636;
  border-radius: 3px;
  top: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.fv {
  position: relative;
}

.fv__image {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: calc(100% - 156px);
  border-radius: 0px 0px 24px 24px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .fv__image {
    height: calc(100% - 94px);
  }
}
.fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

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

.fv__texts {
  padding-top: 18px;
}
@media screen and (min-width: 900px) {
  .fv__texts {
    padding-top: 35px;
  }
}

.fv__message {
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
  font-family: "Kiwi Maru";
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .fv__message {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__message2 {
  text-align: center;
  padding-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .fv__message2 {
    padding-top: 22px;
  }
}

.fv__message2-1 {
  width: 335px;
}
@media screen and (max-width: 320px) {
  .fv__message2-1 {
    width: 300px;
  }
}
@media screen and (min-width: 900px) {
  .fv__message2-1 {
    width: 520px;
  }
}

.fv__message2-2 {
  margin-top: 12px;
  width: 240px;
}
@media screen and (max-width: 320px) {
  .fv__message2-2 {
    width: 205px;
  }
}
@media screen and (min-width: 900px) {
  .fv__message2-2 {
    margin-top: 16px;
    width: 356px;
  }
}

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

.fv-images__phone {
  width: 200px;
  position: absolute;
  bottom: 11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .fv-images__phone {
    width: 250px;
    bottom: 14px;
  }
}

.fv-phone__wrap {
  position: absolute;
  width: 160px;
  padding-bottom: 20px;
  text-align: center;
  border-radius: 12.8px;
  background: #fff;
  top: 226px;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .fv-phone__wrap {
    border-radius: 16px;
    top: 187px;
    width: 200px;
    padding-bottom: 24px;
  }
}

.fv-phone__title {
  color: #fff;
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12.8px;
  font-weight: 700;
  line-height: 160%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6.4px 9.6px 5px 9.6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 12.8px 12.8px 0 0;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 900px) {
  .fv-phone__title {
    font-size: 16px;
    padding: 8px 12px 7px;
  }
}

.fv-phone__body {
  margin-top: 13px;
}
@media screen and (min-width: 900px) {
  .fv-phone__body {
    margin-top: 16px;
  }
}

.fv-phone__heading {
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .fv-phone__heading {
    font-size: 14px;
  }
}

.fv-phone__border {
  padding-bottom: 1px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 900px) {
  .fv-phone__border {
    padding-bottom: 2px;
    border-bottom: 3px solid #ce2073;
  }
}

.fv-phone__text {
  margin-top: 6px;
  color: #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .fv-phone__text {
    margin-top: 9px;
    font-size: 16px;
  }
}

.fv-phone__button {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .fv-phone__button {
    margin-top: 16px;
  }
}

.fv-images__message {
  position: absolute;
  top: 7px;
  left: 0;
}
.fv-images__message img {
  width: 142px;
}
@media screen and (min-width: 900px) {
  .fv-images__message {
    top: 1px;
    left: 36px;
  }
  .fv-images__message img {
    width: 244px;
  }
}

.fv-images__present {
  position: absolute;
  right: 25px;
}
.fv-images__present img {
  width: 110px;
}
@media screen and (min-width: 900px) {
  .fv-images__present {
    top: 18px;
    right: 127px;
  }
  .fv-images__present img {
    width: 180px;
  }
}

.fv-images__cafe {
  position: absolute;
  bottom: 0;
  left: 0px;
  z-index: 1;
}
.fv-images__cafe img {
  width: 90px;
}
@media screen and (min-width: 900px) {
  .fv-images__cafe {
    left: 0;
  }
  .fv-images__cafe img {
    width: 210px;
  }
}

.fv-images__cat1 {
  position: absolute;
  bottom: 0;
  right: 9px;
  z-index: 1;
}
.fv-images__cat1 img {
  width: 98px;
}
@media screen and (min-width: 900px) {
  .fv-images__cat1 {
    bottom: -45px;
    right: -1px;
  }
  .fv-images__cat1 img {
    width: 233px;
  }
}

.fv-images__cat2 {
  position: absolute;
  bottom: 58px;
  right: 0;
  z-index: 0;
}
.fv-images__cat2 img {
  width: 62px;
}
@media screen and (min-width: 900px) {
  .fv-images__cat2 {
    bottom: 59px;
    right: 62px;
  }
  .fv-images__cat2 img {
    width: 170px;
  }
}

.about {
  margin-top: 32px;
  position: relative;
  scroll-margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: 83px;
    scroll-margin-top: 64px;
  }
}

.about__inner {
  max-width: 375px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: calc(100% - 52px);
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 908px;
  }
}

.about-top {
  margin-top: 3px;
}

.about__top {
  padding: 40px 12px;
  border-radius: 24px;
  background: #fff;
  position: relative;
  z-index: 1;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 600px) {
  .about__top {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .about__top {
    padding-top: 37px;
    padding-inline: 50px;
    padding-bottom: 50px;
    border-radius: 40px;
    max-width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  .about__top {
    padding: 37px 114px 50px;
    max-width: 864px;
  }
}
.about__top::after {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 36px;
  content: "";
  background: url(../img/about/arrow.png) center center/contain;
}
@media screen and (min-width: 1200px) {
  .about__top::after {
    width: 140px;
    height: 50px;
  }
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 43.3px 15px 0px 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .heading {
    margin-top: 3px;
    padding: 52px 20px 0px 20px;
    gap: 8px;
  }
}
.heading::before {
  position: absolute;
  content: "";
  width: 37.333px;
  height: 37.333px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: transparent no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .heading::before {
    width: 48px;
    height: 48px;
  }
}

.heading__about::before {
  background-image: url(../img/about/Icon-about.png);
}

.heading__en {
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .heading__en {
    font-size: 20px;
    margin-top: 5px;
  }
}

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

.about__top-left {
  position: absolute;
  top: 38px;
  left: 36px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
.about__top-left img {
  width: 80px;
}
@media screen and (min-width: 900px) {
  .about__top-left {
    top: 35px;
    left: 70px;
  }
  .about__top-left img {
    width: 134px;
  }
}
@media screen and (min-width: 1200px) {
  .about__top-left {
    top: 49px;
    left: 91px;
  }
}

.about__top-right {
  position: absolute;
  top: 36px;
  right: 24px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}
.about__top-right img {
  width: 80px;
}
@media screen and (min-width: 900px) {
  .about__top-right {
    top: 35px;
    right: 70px;
  }
  .about__top-right img {
    width: 134px;
  }
}
@media screen and (min-width: 1200px) {
  .about__top-right {
    top: 55px;
    right: 91px;
  }
}

.about__message {
  margin-top: 24px;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 760px) {
  .about__message {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .about__message {
    margin-top: 32px;
    -webkit-font-feature-settings: "pref" on;
            font-feature-settings: "pref" on;
    font-size: 16px;
  }
}

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

.about__text {
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 760px) {
  .about__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .about__text {
    font-size: 16px;
  }
}
.about__text:not(:first-child) {
  margin-top: 1.5em;
}
@media screen and (min-width: 900px) {
  .about__text:not(:first-child) {
    margin-top: 1.7em;
  }
}
.about__text a {
  text-decoration-line: underline;
  text-underline-position: under;
}

.about__text-2 {
  margin-top: 32px;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  display: inline-block;
  border-bottom: 2px dashed #9ed0e0;
  padding-bottom: 6px;
}
@media screen and (min-width: 900px) {
  .about__text-2 {
    margin-top: 44px;
    font-size: 20px;
    padding-bottom: 10px;
  }
}

.about__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .about__button {
    font-size: 20px;
    height: 56px;
    padding: 10px 38px 12px 38px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 22px;
  }
}

.about__decorations {
  position: relative;
}

.about__decoration-paw {
  position: absolute;
  top: -10px;
  left: calc(50% + 135px);
}
.about__decoration-paw img {
  width: 54px;
}
@media screen and (min-width: 600px) {
  .about__decoration-paw {
    left: calc(50% + 250px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-paw {
    top: -30px;
    left: calc(50% + 350px);
    width: 70px;
  }
  .about__decoration-paw img {
    width: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-paw {
    top: -80px;
    left: calc(50% + 490px);
    width: 100px;
  }
}

.about__decoration-left {
  position: absolute;
  top: 395px;
  right: calc(50% + 127px);
  width: 200px;
}
.about__decoration-left img {
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .about__decoration-left {
    right: calc(50% + 200px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-left {
    z-index: 1;
    width: 480px;
    right: calc(50% + 450px);
    top: 74px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-left {
    right: calc(50% + 614px);
  }
}

.about__decoratoin-right {
  position: absolute;
  top: 273px;
  left: calc(50% + 127px);
  width: 200px;
}
.about__decoratoin-right img {
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .about__decoratoin-right {
    left: calc(50% + 200px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoratoin-right {
    z-index: 1;
    width: 480px;
    left: calc(50% + 420px);
    top: 73px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoratoin-right {
    left: calc(50% + 560px);
  }
}

.about__decoration-sakamichi {
  position: absolute;
  width: 138px;
  top: 709px;
  left: 0px;
}
.about__decoration-sakamichi img {
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .about__decoration-sakamichi {
    width: 300px;
    top: 650px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-sakamichi {
    width: 427px;
    height: 817px;
    top: 350px;
    right: calc(50% + 300px);
    left: unset;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-sakamichi {
    right: calc(50% + 432px);
    top: 321px;
  }
}
@media screen and (min-width: 1600px) {
  .about__decoration-sakamichi {
    left: 0;
  }
}

.about__decoration-goods {
  position: absolute;
  width: 133px;
  top: 762px;
  right: 57px;
}
.about__decoration-goods img {
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .about__decoration-goods {
    top: 850px;
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-goods {
    right: 75px;
    top: 757px;
    width: 308px;
  }
  .about__decoration-goods img {
    max-width: 100%;
  }
}

.about__decoration-button {
  position: absolute;
  width: 48px;
  top: 720px;
  right: 21px;
}
.about__decoration-button img {
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .about__decoration-button {
    width: 80px;
    top: 700px;
    right: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-button {
    z-index: 1;
    width: 101px;
    right: 150px;
    top: 601px;
  }
  .about__decoration-button img {
    max-width: 100%;
  }
}

@media screen and (min-width: 900px) {
  .about__decoration-pattern {
    position: absolute;
    top: -20px;
    right: calc(50% + 400px);
    width: 250px;
    height: 250px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .about__decoration-pattern img {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-pattern {
    right: calc(50% + 527px);
  }
}

@media screen and (min-width: 900px) {
  .about__decoration-path1 {
    position: absolute;
    top: 601px;
    left: calc(50% + 314px);
  }
  .about__decoration-path1 img {
    width: auto;
    height: 14.5px;
    max-width: none;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-path1 {
    left: calc(50% + 514px);
  }
}

@media screen and (min-width: 900px) {
  .about__decoration-path2 {
    position: absolute;
    top: 635px;
    left: calc(50% + 248px);
  }
  .about__decoration-path2 img {
    width: auto;
    height: 14.5px;
    max-width: none;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-path2 {
    left: calc(50% + 448px);
  }
}

.about__bottom {
  margin-top: 138px;
}
@media screen and (min-width: 1200px) {
  .about__bottom {
    margin-top: 167px;
  }
}

.about__decoration-onomichi {
  position: relative;
  width: 358px;
  margin-left: auto;
  margin-right: auto;
}
.about__decoration-onomichi img {
  width: 100%;
}
@media screen and (min-width: 760px) {
  .about__decoration-onomichi {
    width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-onomichi {
    width: 750px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-onomichi {
    width: 892px;
    left: -2px;
  }
}

.about__slider {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: -2px;
}
@media screen and (min-width: 900px) {
  .about__slider {
    margin-top: -8px;
  }
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  list-style: none;
  padding: 0;
  display: block;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: 3000ms;
          transition-duration: 3000ms;
}

.about__slide {
  width: auto;
}

.about__slide-image {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 900px) {
  .about__slide-image {
    width: 200px;
    height: 200px;
  }
}
.about__slide-image img {
  width: auto;
  height: 100%;
}

.enter {
  position: relative;
  margin-top: 65px;
}
@media screen and (min-width: 900px) {
  .enter {
    margin-top: 119px;
    scroll-margin-top: 64px;
  }
}

.enter__inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .enter__inner {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__inner {
    max-width: 1092px;
  }
}
@media screen and (min-width: 1600px) {
  .enter__inner {
    max-width: 1200px;
  }
}

.enter__decoration {
  position: relative;
  width: 100%;
}

.enter-decoration__map {
  position: absolute;
  top: 0px;
  width: 136px;
  height: auto;
  right: calc(50% + 52px);
}
.enter-decoration__map img {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .enter-decoration__map {
    right: calc(50% + 152px);
    width: 250px;
  }
}
@media screen and (min-width: 900px) {
  .enter-decoration__map {
    width: 300px;
    top: -60px;
    right: calc(50% + 160px);
  }
}
@media screen and (min-width: 1200px) {
  .enter-decoration__map {
    width: 420px;
    right: calc(50% + 300px);
  }
}

.enter-decoration__cat1 {
  position: absolute;
  top: 0px;
  width: 105px;
  left: calc(50% + 58px);
}
.enter-decoration__cat1 img {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .enter-decoration__cat1 {
    left: calc(50% + 158px);
    width: 180px;
  }
}
@media screen and (min-width: 900px) {
  .enter-decoration__cat1 {
    width: 238px;
    top: -26px;
    left: calc(50% + 187px);
  }
}
@media screen and (min-width: 1200px) {
  .enter-decoration__cat1 {
    left: calc(50% + 287px);
  }
}

.enter-decoration__cat2 {
  position: absolute;
  width: 94px;
  top: 5px;
  left: calc(50% + 124px);
}
.enter-decoration__cat2 img {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .enter-decoration__cat2 {
    left: calc(50% + 270px);
    width: 169px;
  }
}
@media screen and (min-width: 900px) {
  .enter-decoration__cat2 {
    width: 214px;
    top: -16px;
    left: calc(50% + 337px);
  }
}
@media screen and (min-width: 1200px) {
  .enter-decoration__cat2 {
    left: calc(50% + 437px);
  }
}

.enter-decoration__paw1 {
  position: absolute;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 55px;
  top: 74px;
  right: 20px;
}
.enter-decoration__paw1 img {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .enter-decoration__paw1 {
    top: 150px;
    right: 100px;
    width: 80px;
  }
}
@media screen and (min-width: 900px) {
  .enter-decoration__paw1 {
    width: 100px;
    top: 148px;
    right: 36px;
  }
}
@media screen and (min-width: 1600px) {
  .enter-decoration__paw1 {
    left: calc(50% + 650px);
  }
}

.enter-decoration__paw2 {
  position: absolute;
  width: 55px;
  top: 549px;
  left: 20px;
}
.enter-decoration__paw2 img {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .enter-decoration__paw2 {
    left: 100px;
    width: 80px;
  }
}
@media screen and (min-width: 900px) {
  .enter-decoration__paw2 {
    width: 100px;
    top: 520px;
    left: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .enter-decoration__paw2 {
    top: 580px;
  }
}
@media screen and (min-width: 1600px) {
  .enter-decoration__paw2 {
    right: calc(50% + 650px);
    left: auto;
  }
}

.enter-decoration__paw3 {
  position: absolute;
  width: 55px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 880px;
  right: 20px;
}
.enter-decoration__paw3 img {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .enter-decoration__paw3 {
    right: 100px;
    width: 80px;
  }
}

.heading__enter::before {
  background-image: url(../img/enter/Icon-enter.png);
}

.enter__steps {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .enter__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 40px;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .enter__steps {
    gap: 34px;
  }
}

.enter__step {
  position: relative;
}
.enter__step:nth-child(1)::after, .enter__step:nth-child(2)::after {
  content: "";
  display: block;
  width: 9px;
  height: 34px;
  background-image: url(../img/enter/img_step_line-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .enter__step:nth-child(2) {
    margin-top: 68px;
  }
  .enter__step:nth-child(1)::after {
    content: "";
    display: block;
    top: 204px;
    left: unset;
    right: -106px;
    width: 113px;
    height: 24px;
    background-image: url(../img/enter/img_step_line-pc.png);
  }
  .enter__step:nth-child(2)::after {
    content: "";
    display: block;
    top: 136px;
    left: unset;
    right: -114px;
    width: 113px;
    height: 24px;
    background-image: url(../img/enter/img_step_line-pc.png);
  }
}

.enter-step__image img {
  height: 210px;
}
@media screen and (min-width: 900px) {
  .enter-step__image {
    padding-left: 20px;
    padding-right: 20px;
  }
  .enter-step__image img {
    height: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .enter-step__image img {
    height: 300px;
  }
}

.enter-step__body {
  margin-top: 17px;
}
@media screen and (min-width: 900px) {
  .enter-step__body {
    margin-top: 25px;
  }
}

.enter-step__title {
  color: #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 760px) {
  .enter-step__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .enter-step__title {
    font-size: 20px;
  }
}

.enter-step__text {
  margin-top: 16px;
  margin-bottom: 16px;
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 159%;
}
@media screen and (min-width: 760px) {
  .enter-step__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .enter-step__text {
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 18px;
  }
}
.enter-step__text a {
  text-decoration-line: underline;
  text-underline-position: under;
}

.bold-text1 {
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .bold-text1 {
    font-weight: normal;
  }
}

.bold-text2 {
  font-weight: bold;
}

.enter-step__follow-button {
  margin-bottom: 16px;
}

.follow-button {
  position: relative;
  display: inline-block;
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  padding: 6px 11px 7px 39px;
  background: #fff;
  border: solid 1px transparent;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.follow-button:hover {
  border: solid 1px #9ed0e0;
}
@media screen and (min-width: 900px) {
  .follow-button {
    font-size: 16px;
    padding: 7px 12px 7px 44px;
  }
}
.follow-button::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center/contain;
  background-image: url(../img/enter/Icon-insta.png);
}
@media screen and (min-width: 900px) {
  .follow-button::before {
    width: 24px;
    height: 24px;
  }
}

.enter-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.enter__button {
  display: block;
  margin: auto;
}
@media screen and (max-width: 320px) {
  .enter__button {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .enter__button {
    margin-top: 32px;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    padding: 9px 38px 9px;
  }
}

.prizes {
  margin-top: 32px;
  scroll-margin-top: 60px;
}
@media screen and (min-width: 900px) {
  .prizes {
    margin-top: 126px;
    scroll-margin-top: 64px;
  }
}

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

.prizes__contents {
  position: relative;
  padding: 25px 20px 34px 20px;
}
@media screen and (min-width: 900px) {
  .prizes__contents {
    max-width: 980px;
    padding: 25px 50px 53px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__contents {
    max-width: 1024px;
    padding: 25px 56px 53px;
  }
}
.prizes__contents::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 51.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 250px;
  height: 83px;
  background-color: transparent;
  background: url(../img/prizes/device=SP.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .prizes__contents::before {
    width: 387px;
    height: 155px;
    left: 50%;
    top: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: url(../img/prizes/device=PC.png) no-repeat center center/contain;
  }
}
.prizes__contents::after {
  content: "";
  position: absolute;
  background-color: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 88px);
  border-radius: 24px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .prizes__contents::after {
    height: calc(100% - 149px);
  }
}

.prizes__decoration1 {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 315px;
  left: 1px;
  top: 29px;
}
.prizes__decoration1 img {
  width: 100%;
}

.prizes__decoration2 {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 315px;
  right: 1px;
  top: 29px;
}
.prizes__decoration2 img {
  width: 100%;
}

.heading__prizes::before {
  background-image: url(../img/prizes/Icon.png);
}

.prizes__text {
  margin-top: 16px;
  color: #4a3636;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 760px) {
  .prizes__text {
    font-size: 13px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__text {
    font-size: 16px;
    margin-top: 40px;
  }
}

.prizes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 38px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 47px;
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    margin-top: 82px;
    row-gap: 80px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__cards {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.prizes__card {
  width: calc(50% - 7.5px);
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(-n+2) {
    width: 380px;
    height: 414px;
  }
  .prizes__card:nth-child(n+3) {
    width: 240px;
    height: 287px;
  }
  .prizes__card:nth-child(n+3) .prizes-card__number {
    width: 80px;
    height: 80px;
    top: -40px;
  }
  .prizes__card:nth-child(n+3) .prizes-card__content {
    border-radius: 16px;
  }
  .prizes__card:nth-child(n+3)::before {
    border-radius: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__card:nth-child(-n+2) {
    width: 440px;
    height: 460px;
  }
  .prizes__card:nth-child(n+3) {
    width: 280px;
    height: 320px;
  }
  .prizes__card:nth-child(n+3) .prizes-card__number {
    width: 80px;
    height: 80px;
    top: -40px;
  }
  .prizes__card:nth-child(n+3) .prizes-card__content {
    border-radius: 16px;
  }
}
.prizes__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  z-index: 1;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes__card::before {
    border-radius: 24px;
  }
}
.prizes__card:hover::before {
  border-color: #9ed0e0;
}
.prizes__card:hover .prizes-card__icon svg {
  color: #9ed0e0;
}
.prizes__card:hover .prizes-card__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.prizes-card__number {
  position: absolute;
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -24px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes-card__number {
    width: 100px;
    height: 100px;
    top: -50px;
  }
}
.prizes-card__number img {
  width: 100%;
}

.prizes-card__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: center;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes-card__content {
    border-radius: 24px;
  }
}

.prize-card__figure {
  width: 100%;
  margin: 0;
}

.prizes-card__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.prizes-card__image figure {
  margin: 0;
  width: 100%;
}
.prizes-card__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  border-radius: inherit;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.prizes-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 9px;
  padding-bottom: 9px;
  display: flex;
  color: #4a3636;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
  min-height: 56px;
  background: #f5f5f5;
}
@media screen and (min-width: 900px) {
  .prizes-card__title {
    font-size: 20px;
    height: 120px;
  }
}

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

.prizes-card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.prizes-card__zoom {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 11.52px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  bottom: 6.12px;
  right: 5.22px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes-card__zoom {
    width: 32px;
    height: 32px;
    bottom: 14px;
    right: 12.5px;
  }
}
.prizes-card__zoom img {
  width: 100%;
  height: auto;
}

.prizes-card__icon svg {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: block;
  width: 40px;
  height: 40px;
  z-index: 1;
  color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .prizes-card__icon svg {
    right: -5px;
    bottom: -5px;
    width: 110px;
    height: 110px;
  }
}

@media screen and (min-width: 900px) {
  .prizes-card__icon-2 svg {
    width: 75px;
    height: 75px;
  }
  .prizes-card__icon-2 .prizes-card__zoom {
    width: 20.48px;
    height: 20.48px;
    bottom: 9px;
    right: 8px;
  }
}

.prizes__modal {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

.prizes__modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 24px;
  border: transparent;
  background: #fff;
  width: 336px;
  height: 480px;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  padding: 0px 20px 20px 20px;
}
@media screen and (min-width: 900px) {
  .modal {
    width: 480px;
    height: 650px;
    border-radius: 24px;
  }
}

dialog[open] {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-content {
  text-align: center;
}

.modal__image {
  border-radius: 24px 24px 0 0;
  position: relative;
  width: calc(100% + 40px);
  left: -20px;
  overflow: hidden;
}
.modal__image img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-title {
  margin-top: 39px;
  color: #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .modal-title {
    font-size: 20px;
    margin-top: 32px;
  }
}

.modal__text {
  margin-top: 12px;
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .modal__text {
    font-size: 16px;
  }
}

.close-modal {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .close-modal {
    margin-top: 24px;
  }
}

.prizes-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.prizes__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: 18px;
}
@media screen and (max-width: 374px) {
  .prizes__button {
    font-size: 12px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__button {
    font-size: 20px;
    margin-top: 40px;
    padding: 10px 38px 10px 38px;
  }
}

dialog {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  display: none;
}

.prizes-bg {
  position: relative;
  padding-bottom: 216px;
}
@media screen and (min-width: 600px) {
  .prizes-bg {
    padding-bottom: 300px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-bg {
    padding-bottom: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-bg {
    padding-bottom: 500px;
  }
}
@media screen and (min-width: 1512px) {
  .prizes-bg {
    padding-bottom: 560px;
  }
}
@media screen and (min-width: 1600px) {
  .prizes-bg {
    padding-bottom: 680px;
  }
}

.prizes__bg {
  display: block;
  width: 580px;
  height: 260px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
  top: -44px;
  z-index: -2;
}
@media screen and (min-width: 600px) {
  .prizes__bg {
    width: 870px;
    height: 390px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__bg {
    width: 1160px;
    height: 520px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__bg {
    width: 100%;
    height: 640px;
    top: 0;
  }
}
@media screen and (min-width: 1600px) {
  .prizes__bg {
    width: 100%;
    height: auto;
  }
}
.prizes__bg img {
  -o-object-fit: cover;
     object-fit: cover;
}

.spots {
  display: block;
  position: relative;
  scroll-margin-top: 109px;
}
.spots::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 46px;
  top: -46px;
  background: transparent repeat left center/contain;
  background-image: url(../img/spots/sp/device=SPtop.png);
}
@media screen and (min-width: 900px) {
  .spots::before {
    content: "";
    height: 120px;
    top: -120px;
    background-image: url(../img/spots/pc/device=PCtop.png);
  }
}
@media screen and (min-width: 1200px) {
  .spots::before {
    top: -40px;
  }
}
.spots::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 45px;
  bottom: -42px;
  background: transparent repeat left center/contain;
  background-image: url(../img/spots/sp/device=SPbottom.png);
}
@media screen and (min-width: 900px) {
  .spots::after {
    content: "";
    height: 120px;
    bottom: -102px;
    background-image: url(../img/spots/pc/device=PCbottom.png);
  }
}
@media screen and (min-width: 1200px) {
  .spots::after {
    bottom: -180px;
  }
}
@media screen and (min-width: 900px) {
  .spots {
    scroll-margin-top: 184px;
  }
}

.spots__inner {
  background: #67b0c7;
  position: relative;
  top: -2px;
  padding-top: 2px;
}
@media screen and (min-width: 1200px) {
  .spots__inner {
    top: 78px;
  }
}

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

@media screen and (min-width: 900px) {
  .spots__heading-wrap {
    position: relative;
    left: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__heading-wrap {
    left: 244px;
  }
}

.spots__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 子要素を横並びに */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 900px) {
  .spots__heading {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-align: center;
    -webkit-font-feature-settings: "pwid" on;
            font-feature-settings: "pwid" on;
    font-family: "Kiwi Maru";
    font-size: 40px;
    font-weight: 500;
    line-height: 125%; /* 50px */
    letter-spacing: 0.25em;
  }
}
.spots__heading::before {
  content: ""; /* アイコンを表示する */
  display: block; /* ブロック要素にする */
  width: 28px; /* アイコンの幅 */
  height: 28px; /* アイコンの高さ */
  margin-right: 8px; /* テキストとの間隔 */
  background: transparent no-repeat center center/contain;
  background-image: url(../img/spots/Icon6.png);
}
@media screen and (min-width: 900px) {
  .spots__heading::before {
    margin-right: 0px;
    margin-bottom: 14px;
    width: 56px;
    height: 56px;
  }
}

.spots__decoration {
  display: none;
}
@media screen and (min-width: 1200px) {
  .spots__decoration {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    width: 100px;
    height: 220px;
    top: 496px;
    left: 36px;
  }
}
@media screen and (min-width: 900px) {
  .spots__slider {
    position: relative;
    width: calc(100% - 120px); /* スライダー領域の右端を画面内に制限 */
    left: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__slider {
    width: calc(100% - 252px);
    left: 252px;
  }
}

.swiper__spots {
  position: relative;
  overflow: visible;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .swiper__spots {
    overflow: hidden;
  }
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  width: auto;
}

.swiper-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0; /* カードが縮小しないようにする */
  width: auto;
}

.spots-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 240px;
  height: 402px;
  background-color: #fff;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .spots-card {
    width: 344px;
    height: 542px;
    border-radius: 24px;
  }
}

.spots-card__image {
  height: 180px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width: 900px) {
  .spots-card__image {
    height: 240px;
  }
}
.spots-card__image img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  .spots-card__image img {
    border-radius: 24px 24px 0 0;
  }
}

.spots-card__title {
  margin-top: 16px;
  color: #4a3636;
  text-align: center;
  -webkit-font-feature-settings: "pref";
          font-feature-settings: "pref";
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .spots-card__title {
    margin-top: 24px;
    font-size: 20px;
  }
}

.spots-card__text {
  margin-top: 16px;
  padding-bottom: 31.159px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width: 900px) {
  .spots-card__text {
    margin-top: 26px;
    font-size: 16px;
    padding-right: 32px;
    padding-left: 32px;
  }
}

.spots__bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .spots__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: -17px;
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bottom {
    gap: 81px;
  }
}

.spots-deco__bottom {
  width: 255px;
}
@media screen and (min-width: 760px) {
  .spots-deco__bottom {
    width: 300px;
  }
}
@media screen and (min-width: 900px) {
  .spots-deco__bottom {
    width: 400px;
    margin-top: -50px;
  }
}
.spots-deco__bottom img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .spots-deco__bottom {
    width: 495px;
    height: 107px;
    margin-top: -20px;
  }
}

.spots__texts {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.spots_text {
  color: #fff;
  text-align: center;
  font-size: 11.444px;
  font-weight: 400;
  line-height: 160%; /* 18.311px */
}
@media screen and (min-width: 760px) {
  .spots_text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .spots_text {
    font-size: 16px;
    margin-top: 2px;
  }
}

.spots__button {
  margin-top: 24px;
  margin-bottom: 21px;
}
@media screen and (max-width: 320px) {
  .spots__button {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .spots__button {
    font-size: 20px;
    padding: 10px 38px 9px 38px;
    margin-left: 11px;
  }
}

@media screen and (min-width: 900px) {
  .swiper-button-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 80px;
    top: -75px;
    margin-left: auto;
    margin-right: auto;
    width: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-button-wrap {
    width: 964px;
    z-index: 1;
  }
}

@media screen and (min-width: 900px) {
  .swiper-button-prev {
    display: block;
    width: 80px;
    height: 80px;
  }
  .swiper-button-prev::before {
    content: "";
  }
  .swiper-button-prev::after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/spots/pc/Component-prev.png);
  }
}

@media screen and (min-width: 900px) {
  .swiper-button-next {
    display: block;
    width: 80px;
    height: 80px;
  }
  .swiper-button-next::before {
    content: "";
  }
  .swiper-button-next::after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/spots/pc/Component-next.png);
  }
}

.qa {
  scroll-margin-top: 64px;
}

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

.heading__qa {
  margin-top: 82px;
}
.heading__qa::before {
  height: 38px;
  background-image: url(../img/qa/Icon7.png);
}
@media screen and (min-width: 900px) {
  .heading__qa::before {
    width: 49px;
    height: 53px;
  }
}
@media screen and (min-width: 900px) {
  .heading__qa {
    margin-top: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .heading__qa {
    margin-top: 300px;
  }
}

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

.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
  width: 335px;
}
@media screen and (max-width: 320px) {
  .qa-box {
    width: 300px;
  }
}
@media screen and (min-width: 600px) {
  .qa-box {
    width: 500px;
  }
}
@media screen and (min-width: 760px) {
  .qa-box {
    width: 650px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box {
    border-radius: 16px;
    width: 800px;
  }
  .qa-box:first-of-type ~ .qa-box .qa-box__head {
    padding: 21px 24px 19px 22px;
    width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box {
    width: 1024px;
  }
  .qa-box:first-of-type ~ .qa-box .qa-box__head {
    width: 1024px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media screen and (min-width: 900px) {
  .qa-box.is-open .qa-box__body {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.qa-box.is-open .qa-box__toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 13px 10px 14px;
  position: relative;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: start;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 21px 20px 22px 22px;
  }
}

.qa-box__head-icon {
  color: var(--LP-Blue, #9ed0e0);
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 125%; /* 30px */
  margin-right: 13px;
}
@media screen and (min-width: 900px) {
  .qa-box__head-icon {
    font-size: 32px;
    margin-right: 16px;
  }
}

.qa-box__head-text {
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
  margin-right: 16px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 600px) {
  .qa-box__head-text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__toggle {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #9ed0e0;
  -webkit-transform: none;
          transform: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .qa-box__toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__toggle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 10px;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  content: "";
  background: #fff;
  border-radius: 50px;
}
@media screen and (min-width: 900px) {
  .qa-box__toggle::before {
    width: 3px;
    height: 19px;
  }
}
.qa-box__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 10px;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  content: "";
  background: #fff;
  border-radius: 50px;
}
@media screen and (min-width: 900px) {
  .qa-box__toggle::after {
    width: 3px;
    height: 19px;
  }
}

.qa-box__body {
  background: #f5f5f5;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden; /* 内容が見えないようにする */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 14px;
  padding-right: 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    padding-left: 22px;
    padding-right: 22px;
  }
}

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

.qa-box__a-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 125%; /* 30px */
  margin-right: 16px;
}
@media screen and (min-width: 900px) {
  .qa-box__a-icon {
    font-size: 32px;
  }
}

.qa-box__a-text {
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.qa-box__a-text a {
  text-decoration: underline;
}
@media screen and (min-width: 900px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

.entry {
  margin-top: 30px;
  scroll-margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .entry {
    margin-top: 120px;
    scroll-margin-top: 64px;
  }
}

.entry-requirements__contents {
  padding-top: 16px;
  padding-inline: 13.5px;
  padding-bottom: 29px;
  border: 8px solid var(--LP-White, #fff);
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 900px) {
  .entry-requirements__contents {
    padding-top: 27px;
    padding-inline: 46px;
    padding-bottom: 43px;
  }
}

.heading__entry::before {
  background-image: url(../img/entry/Icon-entry.png);
}
@media screen and (min-width: 900px) {
  .heading__entry::before {
    width: 49px;
    height: 50px;
  }
}

.entry-requirements__table {
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__table {
    margin-top: 28px;
  }
}

.entry-requirements-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 14px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}
.entry-requirements-table__row:last-child {
  padding-bottom: 0;
  border: none;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 11px;
    gap: 20px;
    padding-left: 16px;
  }
}

.entry-requirements-table__head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  padding-left: 16px;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__head {
    font-size: 16px;
    padding-left: 16px;
    width: 188px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.entry-requirements-table__head::before {
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  width: 8px;
  height: 8px;
  background: transparent no-repeat center center/contain;
  background-image: url(../img/entry/point.png);
}

.entry-requirements-table__data {
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 760px) {
  .entry-requirements-table__data {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__data {
    font-size: 16px;
    width: calc(100% - 224px);
    line-height: 162%;
  }
}
.entry-requirements-table__data a {
  text-decoration-line: underline;
  text-underline-position: under;
}
.entry-requirements-table__data li {
  position: relative;
  line-height: 19px;
  padding-left: 18px;
}
.entry-requirements-table__data li::before {
  content: "・";
  position: absolute;
  left: 3px;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__data li::before {
    left: 4px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__data li {
    line-height: 26px;
    padding-left: 24px;
  }
}

.entry__photo {
  display: block;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .entry__photo {
    margin-top: 120px;
  }
}
.entry__photo img {
  width: 100%;
}

.contact {
  scroll-margin-top: 40px;
  background: #fff;
}

.contact__inner {
  padding-top: 40px;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    padding-top: 115px;
  }
}

.heading__contact::before {
  background-image: url(../img/contact/Icon.png);
}
@media screen and (min-width: 900px) {
  .heading__contact::before {
    margin-top: 1px;
  }
}

.contact__text {
  margin-top: 24px;
  color: #4a3636;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 900px) {
  .contact__text {
    margin-top: 33px;
    font-size: 16px;
    position: relative;
    left: 1px;
  }
}

.contact-text {
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .contact-text {
    position: relative;
    left: -3px;
  }
}

.contact__form {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .contact__form {
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .contact__form {
    max-width: 848px;
  }
}

.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: 24px;
}

@media screen and (min-width: 900px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.form-field-last {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-field__label {
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field__tag {
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--LP-Red, #ce2073);
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
}

.form-field__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 8px;
}
@media screen and (min-width: 900px) {
  .form-field__item {
    margin-top: 0;
    max-width: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .form-field__item {
    max-width: 628px;
  }
}

.form-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 56px;
  padding: 15px 15px 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 8px;
  background: var(--LP-Gray, #f5f5f5);
  border: 1px solid transparent;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  border: 1px solid transparent;
}
.form-text::-webkit-input-placeholder {
  color: #ccc;
}
.form-text::-moz-placeholder {
  color: #ccc;
}
.form-text:-ms-input-placeholder {
  color: #ccc;
}
.form-text::-ms-input-placeholder {
  color: #ccc;
}
.form-text::placeholder {
  color: #ccc;
}
.form-text:hover, .form-text:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
  outline: none;
  color: #4a3636;
}
.form-text:not(:-moz-placeholder-shown) {
  color: #4a3636;
}
.form-text:not(:-ms-input-placeholder) {
  color: #4a3636;
}
.form-text:not(:placeholder-shown) {
  color: #4a3636;
}
@media screen and (min-width: 900px) {
  .form-text {
    padding: 15px;
    font-size: 16px;
    width: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .form-text {
    width: 628px;
  }
}
.form-text.is-error {
  border-radius: 8px;
  border: 1px solid #ce2073;
  background: #fff0f7;
}

.form-select {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  padding: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #f5f5f5;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/contact/Vector.png), 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;
}
.form-select:hover, .form-select:focus {
  border: 1px solid #9ed0e0;
  outline: none;
}
@media screen and (min-width: 900px) {
  .form-select {
    width: 500px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .form-select {
    width: 628px;
  }
}
.form-select.is-error {
  background-image: url(../img/contact/Vector.png), linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
  border-color: #ce2073;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding-left: 0;
    gap: 22px;
  }
}

.form-radio {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .form-radio {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form-radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-radio__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  padding-left: 32px;
}
.form-radio__text::before {
  position: absolute;
  top: 50%;
  content: "";
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: #f5f5f5;
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
}
.form-radio__text::after {
  position: absolute;
  content: "";
  left: 6px;
  width: 12px;
  height: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: #9ed0e0;
  opacity: 0;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .form-radio__text {
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 16px;
    padding-left: 34px;
  }
}

.form-radio__input:hover + .form-radio__text::before {
  border-color: #9ed0e0;
}

.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

.form-radio__input:checked + .form-radio__text {
  font-weight: 700;
  font-size: 16px;
}

.form-textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 160px;
  padding: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  background: var(--LP-Gray, #f5f5f5);
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  border: 1px solid transparent;
}
.form-textarea:hover, .form-textarea:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
  outline: none;
  color: #4a3636;
}
.form-textarea:not(:-moz-placeholder-shown) {
  color: #4a3636;
}
.form-textarea:not(:-ms-input-placeholder) {
  color: #4a3636;
}
.form-textarea:not(:placeholder-shown) {
  color: #4a3636;
}
.form-textarea::-webkit-input-placeholder {
  color: #ccc;
}
.form-textarea::-moz-placeholder {
  color: #ccc;
}
.form-textarea:-ms-input-placeholder {
  color: #ccc;
}
.form-textarea::-ms-input-placeholder {
  color: #ccc;
}
.form-textarea::placeholder {
  color: #ccc;
}
@media screen and (min-width: 900px) {
  .form-textarea {
    width: 500px;
    padding: 15px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .form-textarea {
    width: 628px;
  }
}
.form-textarea.is-error {
  border-radius: 8px;
  border: 1px solid #ce2073;
  background: #fff0f7;
}

.contact__privacy {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .contact__privacy {
    margin-top: 40px;
  }
}

.form-checkbox {
  position: relative;
  cursor: pointer;
}

.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__input:hover + .form-checkbox__text::before {
  border: 1px solid #9ed0e0;
}

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.form-checkbox__text a:hover {
  color: #67b0c7;
}
.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::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f5f5f5;
}
.form-checkbox__text::after {
  width: 14px;
  height: 9px;
  background: url(../img/contact/check.png) no-repeat center center/contain;
  opacity: 0;
  left: 5px;
}

.form-checkbox__input.is-error + .form-checkbox__text::before {
  border-radius: 4px;
  border: 1px solid #ce2073;
  background: #fff0f7;
}

.contact__button {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 44px;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 40px;
    padding-bottom: 120px;
  }
}

@media screen and (min-width: 900px) {
  .contact-button {
    padding-top: 4px;
    padding-left: 39px;
    padding-right: 39px;
  }
}

.footer {
  position: relative;
}

.footer__inner {
  position: relative;
}

.footer__sns-links {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
}
@media screen and (min-width: 900px) {
  .footer__sns-links {
    padding-top: 120px;
  }
}

.sns-links__title {
  color: #4a3636;
  font-family: "Josefin Sans";
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 760px) {
  .sns-links__title {
    font-size: 24px;
  }
}

.sns-links__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
}

.sns__icon {
  position: relative;
}
.sns__icon img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 900px) {
  .sns__icon img {
    width: 40px;
    height: 40px;
  }
}
.sns__icon:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.footer__onomichi {
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: 14px;
  width: 327px;
  z-index: -1;
  position: relative;
  left: -1px;
}
@media screen and (min-width: 760px) {
  .footer__onomichi {
    width: 600px;
  }
}
.footer__onomichi img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .footer__onomichi {
    width: 744px;
    margin-top: 41px;
  }
}

.footer__address {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  background: var(--LP-White, #fff);
  margin-top: -2px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .footer__address {
    margin-top: -3px;
  }
}

.footer-address {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .footer-address {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.footer-address__map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-address__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: top;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .footer-address__map {
    max-width: 512px;
  }
  .footer-address__map iframe {
    aspect-ratio: 512/400;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 16px;
  }
}

.footer-address__body {
  padding: 22px 27px 28px 27px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .footer-address__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .footer-address__body {
    padding: 10px;
  }
}

.footer-address__logo {
  width: 153px;
  height: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 760px) {
  .footer-address__logo {
    width: 183px;
    height: 24px;
  }
}
.footer-address__logo img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .footer-address__logo {
    margin: 0;
  }
}

.footer-address__info {
  margin-top: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .footer-address__info {
    gap: 12px;
    margin-top: 26px;
  }
}

.footer-address__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .footer-address__row {
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-address__row {
    gap: 40px;
  }
}

.footer-address__term {
  position: relative;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
  padding-left: 16px;
  min-width: 64px;
}
@media screen and (min-width: 760px) {
  .footer-address__term {
    font-size: 14px;
    min-width: 74px;
  }
}
@media screen and (min-width: 900px) {
  .footer-address__term {
    font-size: 16px;
    min-width: 80px;
  }
}
.footer-address__term:before {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer-address__description {
  position: relative;
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  left: 0;
}
@media screen and (min-width: 760px) {
  .footer-address__description {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .footer-address__description {
    font-size: 16px;
  }
}

.footer__button {
  position: relative;
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__button {
    margin: 0;
    right: 40px;
    bottom: 40px;
    position: fixed;
    z-index: 10;
  }
}

.pagetop {
  width: 78px;
  cursor: pointer;
}
.pagetop img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .pagetop {
    width: 100px;
    height: 104px;
  }
}

.footer__bottom {
  position: relative;
  margin-top: 69px;
}
.footer__bottom:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  top: -46px;
  height: 47px;
  background: transparent repeat left -8px center/contain;
  background-image: url(../img/follow/sp-wave.png);
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 240px;
  }
  .footer__bottom:before {
    content: "";
    width: 100%;
    top: -120px;
    height: 121px;
    background: transparent repeat left -6px center/contain;
    background-image: url(../img/follow/pc-wave.png);
  }
}

.footer__copyright {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 16px */
  display: block;
  background: #67b0c7;
  padding-bottom: 25px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    font-size: 14px;
    padding-bottom: 32px;
  }
}

@media screen and (min-width: 900px) {
  .footer__paw {
    position: absolute;
    top: 40px;
    right: 80px;
    width: 80px;
  }
  .footer__paw img {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .footer__paw {
    position: absolute;
    top: 80px;
    right: 80px;
    width: 100px;
  }
  .footer__paw img {
    width: 100%;
  }
}