@charset "UTF-8";
body {
  background: #e9f6f8;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  font-family: "Noto Sans JP", "Kiwi Maru", sans-serif;
}

.button {
  display: inline-block;
  padding: 6px 24px 6px 24px;
  -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: 2px solid var(--LP-Blown, #4a3636);
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button:active {
  -webkit-box-shadow: 0px 0px 0px 0px #4a3636;
          box-shadow: 0px 0px 0px 0px #4a3636;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
.button:hover {
  background: #ffee56;
}

.inner {
  padding-inline: 20px;
}

.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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .heading {
    gap: 8px;
  }
}
.heading__icon {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 900px) {
  .heading__icon {
    width: 48px;
    height: 48px;
  }
}
.heading__icon img {
  width: 100%;
  height: 100%;
}
.heading__main {
  color: #4a3636;
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%; /* 20px */
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .heading__main {
    font-size: 20px;
  }
}
.heading__sub {
  color: #4a3636;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 125%; /* 25px */
  display: inline-block;
  position: relative;
  border-bottom: 6px solid #ffee56;
  padding-bottom: 6px;
}
@media screen and (min-width: 900px) {
  .heading__sub {
    font-size: 32px;
    border-bottom: 8px solid #ffee56;
  }
}

figure,
picture {
  margin: 0; /* デフォルトmarginもあるので消す */
  padding: 0;
  margin-inline: 0;
  margin-block: 0;
}

figure img {
  display: block; /* これで行間の影響がなくなる！ */
  height: auto;
  width: 100%;
  line-height: 0;
}

.wrapper {
  overflow: hidden;
}

.header {
  position: fixed;
  width: 100%;
  height: 64px;
  background: #fff;
  z-index: 30;
  top: 0;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 24px;
  }
}
.header__logo img {
  width: 210px;
}
@media screen and (min-width: 1200px) {
  .header__logo {
    width: 183px;
  }
}
.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;
  }
}
.header__nav-link {
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .header__nav-link {
    font-size: 12px;
  }
}
.header__nav-link.button {
  font-weight: 700;
}
.header__button a {
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  font-size: 14px;
}
.header__open {
  display: block;
}
@media screen and (min-width: 1200px) {
  .header__open {
    display: none;
  }
}
.header .drawer-icon {
  position: relative;
  width: 32px;
  height: 24px;
  right: 0;
  z-index: 51;
}
.header .drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  width: 32px;
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header .drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.header .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header .drawer-icon.is-checked .drawer-icon__dot {
  opacity: 0;
}
.header .drawer-icon__bar {
  height: 3px;
  background: #4a3636;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header .drawer-icon__bar:nth-child(1) {
  width: 25.6px;
  top: 0;
}
.header .drawer-icon__bar:nth-child(2) {
  width: 32px;
  top: 11px;
}
.header .drawer-icon__bar:nth-child(3) {
  width: 32px;
  top: 22px;
}
.header .drawer-icon__dot {
  position: absolute;
  width: 4.8px;
  height: 3px;
  background: #4a3636;
  right: 0;
  top: 0;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.drawer-content {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100% - 64px);
  background: #fff;
  text-align: center;
  padding-top: 59px;
  padding-bottom: 60px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
  z-index: 10;
}
.drawer-content__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.drawer-content__button a {
  font-weight: 700;
  line-height: 160%; /* 25.6px */
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 1200px) {
  .drawer-content {
    display: none;
  }
}

.fv {
  position: relative;
  padding-top: 64px;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-top: 64px;
  }
}
.fv__picture {
  position: absolute;
  height: 555px;
  border-radius: 0px 0px 24px 24px;
  top: 64px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}
.fv__picture 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__picture {
    height: 740px;
    border-radius: 0px 0px 40px 40px;
  }
}
.fv__inner {
  text-align: center;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    max-width: 848px;
    margin-inline: auto;
  }
}
.fv__text {
  color: #4a3636;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%; /* 17.5px */
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 24px;
    font-weight: 500;
    margin-top: 32px;
  }
}
.fv__title {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .fv__title {
    margin-top: 24px;
  }
}
.fv__title img {
  width: 335px;
  display: block;
  margin-inline: auto;
}
.fv__title img:nth-child(2) {
  margin-top: 12px;
  width: 240px;
  display: block;
}
@media screen and (min-width: 900px) {
  .fv__title img:nth-child(2) {
    width: 356px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 900px) {
  .fv__title img {
    width: 520px;
  }
}
.fv__content {
  margin-top: 10px;
  position: relative;
  height: 522px;
}
@media screen and (min-width: 900px) {
  .fv__content {
    margin-top: 32px;
    height: 558px;
  }
}
.fv__content-left {
  width: 142px;
  position: absolute;
  top: 8px;
}
.fv__content-left img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__content-left {
    width: 244px;
    height: auto;
    top: -32px;
    right: calc(50% + 125px + 20px);
  }
}
.fv__content-right {
  position: absolute;
  width: 110px;
  top: 0;
  right: 24px;
}
@media screen and (min-width: 900px) {
  .fv__content-right {
    width: 180px;
    top: -16px;
    left: calc(50% + 125px - 7px);
  }
}
.fv__content-center {
  position: absolute;
  width: 200px;
  height: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
}
.fv__content-center img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__content-center {
    width: 250px;
    bottom: 46px;
  }
}
.fv__box {
  position: relative;
}
.fv__content-phone {
  position: absolute;
  top: calc(50% - 5px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  border-radius: 12.8px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .fv__content-phone {
    top: calc(50% - 4px);
    border-radius: 16px;
    width: calc(100% - 50px);
  }
}
.fv__image {
  position: absolute;
}
.fv .phone {
  border-radius: 12.8px;
}
.fv .phone__title {
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding: 6.4px 9.6px;
  font-size: 12.8px;
  font-weight: 700;
  line-height: 160%; /* 20.48px */
  color: #fff;
}
@media screen and (min-width: 900px) {
  .fv .phone__title {
    font-size: 16px;
    padding: 8px 12px;
  }
}
.fv .phone__body {
  background: #fff;
  padding-top: 12.8px;
  padding-bottom: 15.2px;
}
@media screen and (min-width: 900px) {
  .fv .phone__body {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.fv .phone__text1 {
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
.fv .phone__text1 span {
  border-bottom: 2.4px solid var(--LP-Red, #ce2073);
  display: inline-block;
  font-size: 12px;
  padding-bottom: 1px;
}
@media screen and (min-width: 900px) {
  .fv .phone__text1 span {
    font-size: 14px;
    border-bottom: 3px solid var(--LP-Red, #ce2073);
  }
}
.fv .phone__text2 {
  color: #4a3636;
  margin-top: 3.2px;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 900px) {
  .fv .phone__text2 {
    font-size: 16px;
    margin-top: 4px;
  }
}
.fv .phone__button {
  margin-top: 12.8px;
  padding-bottom: 4px;
}
@media screen and (min-width: 900px) {
  .fv .phone__button {
    margin-top: 16px;
  }
}
.fv .phone__button a {
  padding-top: 2px;
  padding-right: 22px;
  padding-bottom: 4px;
  padding-left: 22px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .fv .phone__button a {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 25.6px */
    padding-top: 4px;
    padding-bottom: 6px;
  }
}
.fv__content-drink {
  position: absolute;
  width: 86px;
  bottom: 3px;
  left: 1px;
}
.fv__content-drink img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__content-drink {
    width: 202px;
    right: calc(50% + 125px + 94px);
    bottom: 34px;
    left: auto;
  }
}
.fv__content-cat1 {
  width: 62px;
  position: absolute;
  right: 0;
  bottom: 57px;
}
.fv__content-cat1 img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__content-cat1 {
    width: 170px;
    left: calc(50% + 125px + 66px);
    bottom: 89px;
  }
}
.fv__content-cat2 {
  width: 98px;
  position: absolute;
  right: 8px;
  bottom: 0;
}
.fv__content-cat2 img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__content-cat2 {
    width: 233px;
    left: calc(50% + 125px + 66px);
    bottom: -11px;
  }
}

.about {
  margin-top: 32px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: 52px;
  }
}
.about__inner {
  max-width: 375px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 640px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 884px;
  }
}
.about__box {
  border-radius: 24px;
  background: #fff;
  text-align: center;
  position: relative;
  padding-top: 40px;
  padding-right: 20px;
  padding-bottom: 36px;
  padding-left: 20px;
}
@media screen and (min-width: 900px) {
  .about__box {
    border-radius: 40px;
  }
}
.about__photo-right {
  position: absolute;
  width: 85px;
  top: 31.87px;
  right: calc(50% + 46.5px);
}
.about__photo-right img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .about__photo-right {
    width: 144px;
    top: 41px;
    right: calc(50% + 180px + 12.39px);
  }
}
.about__photo-left {
  position: absolute;
  width: 85px;
  top: 30px;
  left: calc(50% + 60.15px);
}
.about__photo-left img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about__photo-left {
    width: 144px;
    top: 49px;
    left: calc(50% + 180px + 13.08px);
  }
}
.about__textarea {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__textarea {
    margin-top: 38px;
  }
}
.about__text-head p {
  color: #4a3636;
  font-size: 14px;
  line-height: 160%; /* 22.4px */
}
.about__text-head .sp-text {
  display: block;
  color: #4a3636;
  font-size: 14px;
  line-height: 160%; /* 22.4px */
}
.about__text-head .pc-text {
  display: none;
}
@media screen and (min-width: 600px) {
  .about__text-head .sp-text {
    font-size: 16px;
    font-weight: 700;
  }
}
@media screen and (min-width: 900px) {
  .about__text-head .pc-text {
    display: block;
    font-size: 16px;
    font-weight: 700;
  }
  .about__text-head .sp-text {
    display: none;
  }
}
.about__text-body {
  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: 18px;
}
@media screen and (min-width: 900px) {
  .about__text-body {
    margin-top: 30px;
    gap: 27px;
  }
}
.about__text-body p {
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 159.5%; /* 19.2px */
}
.about__text-body p .sp-hidden {
  display: block;
}
.about__text-body p .pc-hidden {
  display: none;
}
@media screen and (min-width: 600px) {
  .about__text-body p {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .about__text-body p .pc-hidden {
    display: block;
  }
  .about__text-body p .sp-hidden {
    display: none;
  }
}
.about__text-foot {
  margin-top: 32px;
}
.about__text-foot p {
  color: #4a3636;
  font-size: 14px;
  line-height: 160%; /* 22.4px */
  border-bottom: 2px dashed #9ed0e0;
  display: inline-block;
  padding-bottom: 3px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .about__text-foot p {
    font-size: 20px;
    padding-bottom: 9px;
  }
}
@media screen and (min-width: 900px) {
  .about__text-foot {
    margin-top: 47px;
  }
}
.about__button {
  margin-top: 24px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .about__button {
    margin-top: 30px;
  }
  .about__button a {
    padding: 10px 40px 12px;
    font-size: 20px;
  }
}
.about__button::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 36px solid #cce1e4; /* 矢印の色 */
  bottom: -73px;
}
@media screen and (min-width: 900px) {
  .about__button::after {
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-top: 50px solid #cce1e4; /* 矢印の色 */
    bottom: -87px;
  }
}
.about__bg-photo-left {
  width: 200px;
  position: absolute;
  top: 395px;
  right: calc(50% + 155.5px - 40px);
  z-index: -1;
}
.about__bg-photo-left img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about__bg-photo-left {
    width: 480px;
    top: 74px;
    z-index: -1;
    border-radius: 40px;
    right: calc(50% + 364px);
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-photo-left {
    right: calc(50% + 424px + 190px);
  }
}
.about__bg-photo-right {
  width: 200px;
  position: absolute;
  top: 273px;
  left: calc(50% + 155.5px - 40px);
  z-index: -1;
}
.about__bg-photo-right img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about__bg-photo-right {
    width: 480px;
    top: 74px;
    left: calc(50% + 364px);
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-photo-right {
    left: calc(50% + 424px + 136.6px);
  }
}
.about__bg-square {
  width: 250px;
  display: none;
  z-index: -2;
}
@media screen and (min-width: 600px) {
  .about__bg-square {
    display: block;
    position: absolute;
    top: -20px;
    right: calc(50% + 424px + 103px);
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-square {
    position: absolute;
    top: -20px;
    right: calc(50% + 424px + 103px);
  }
}
.about__bg-pawpads {
  width: 54px;
  position: absolute;
  top: -10px;
  left: calc(50% + 155.5px - 20px);
  z-index: -1;
}
.about__bg-pawpads img {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .about__bg-pawpads {
    left: calc(50% + 215px - 20px);
  }
}
@media screen and (min-width: 900px) {
  .about__bg-pawpads {
    left: calc(50% + 300px);
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-pawpads {
    width: 100px;
    left: calc(50% + 424px + 66.12px);
    top: -80px;
  }
}
.about__bg-sakamichi {
  position: absolute;
  z-index: -1;
  width: 138px;
  bottom: 61px;
  left: 0;
}
.about__bg-sakamichi img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about__bg-sakamichi {
    left: auto;
    right: calc(50% + 424px + 8px);
    bottom: 148px;
    width: 427px;
  }
}
.about__bg-item {
  position: absolute;
  z-index: -1;
  width: 133px;
  right: 59px;
  bottom: 158px;
  left: calc(50% - 3px);
}
.about__bg-item img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about__bg-item {
    width: 308px;
    bottom: auto;
    left: calc(50% + 140px);
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-item {
    left: calc(50% + 424px - 50px);
    bottom: 371px;
  }
}
.about__bg-item2 {
  position: absolute;
  z-index: -1;
  width: 48px;
  bottom: 217px;
  left: calc(50% + 155.5px - 38px);
}
.about__bg-item2 img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about__bg-item2 {
    width: 101px;
    top: 601px;
    left: calc(50% + 300px);
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-item2 {
    left: calc(50% + 424px + 81px);
    bottom: 580px;
  }
}
.about__bg-onomichi {
  width: 355px;
  position: absolute;
  bottom: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.about__bg-onomichi img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about__bg-onomichi {
    width: 891px;
    bottom: 190px;
  }
}
.about__slider {
  margin-top: 179px;
}
@media screen and (min-width: 900px) {
  .about__slider {
    margin-top: 257px;
  }
}
.about__slide {
  width: 100px; /* ← 画像幅固定 */
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .about__slide {
    width: 200px;
  }
}
.about__slide img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.about .swiper-button-next,
.about .swiper-button-prev {
  display: none;
}
.about .swiper-button-next {
  display: none;
}
.about .swiper-scrollbar {
  display: none;
}

.how-to-enter {
  margin-top: 62.8px;
  padding-bottom: 36.37px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    margin-top: 120px;
  }
}
.how-to-enter__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 32px;
  gap: 48.5px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__boxes {
    -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;
    margin-inline: auto;
    margin-top: 43px;
    gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__boxes {
    gap: 32px;
  }
}
.how-to-enter .box {
  text-align: center;
  position: relative;
}
.how-to-enter .box:nth-child(1)::after, .how-to-enter .box:nth-child(2)::after {
  content: "";
  position: absolute;
  background: url(../img/img_step_line.png) no-repeat center center/contain;
  bottom: -48px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 900px) {
  .how-to-enter .box:nth-child(1)::after, .how-to-enter .box:nth-child(2)::after {
    background: url(../img/pc-line.png) no-repeat center center/contain;
    width: 113px;
    height: 24px;
    right: -58px;
    left: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.how-to-enter .box:nth-child(1)::after {
  top: 206px;
  right: -49px;
}
.how-to-enter .box:nth-child(2)::after {
  top: 138px;
  right: -58px;
}
@media screen and (min-width: 900px) {
  .how-to-enter .box {
    max-width: 294px;
  }
  .how-to-enter .box:nth-child(2) {
    margin-top: 68px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter .box {
    max-width: 320px;
  }
}
.how-to-enter .box__head {
  width: 196px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .how-to-enter .box__head {
    width: 87.5%;
  }
}
.how-to-enter .box__head img {
  width: 100%;
}
.how-to-enter .box__body {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .how-to-enter .box__body {
    margin-top: 28px;
  }
}
.how-to-enter .box__title {
  color: #4a3636;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
}
@media screen and (min-width: 900px) {
  .how-to-enter .box__title {
    font-size: 20px;
  }
}
.how-to-enter .box__text {
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  margin-top: 16px;
  text-align: center;
}
.how-to-enter .box__text .sp-hidden {
  display: none;
}
.how-to-enter .box__text .pc-hidden {
  display: block;
}
@media screen and (min-width: 900px) {
  .how-to-enter .box__text {
    font-size: 14px;
    margin-top: 16px;
  }
  .how-to-enter .box__text .sp-hidden {
    display: block;
  }
  .how-to-enter .box__text .pc-hidden {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter .box__text {
    font-size: 16px;
  }
}
.how-to-enter .box__text a {
  text-decoration: underline;
}
.how-to-enter .box__text span {
  font-weight: 700;
}
.how-to-enter .box__tag {
  background: #fff;
  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;
  padding: 8px 12px;
  margin-top: 13px;
  gap: 8px;
  max-width: 226px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .how-to-enter .box__tag {
    max-width: 252px;
    margin-top: 15px;
  }
}
.how-to-enter .box__tag-icon img {
  max-width: 100%;
}
.how-to-enter .box__tag-text {
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .how-to-enter .box__tag-text {
    font-size: 16px;
  }
}
.how-to-enter__button {
  margin-top: 16px;
  text-align: center;
}
.how-to-enter__button a {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  padding-inline: 24px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__button a {
    padding-inline: 40px;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__button {
    margin-top: 46.5px;
  }
}
.how-to-enter__map {
  position: absolute;
  top: 0;
  right: calc(50% + 187.5px - 138px);
  width: 136px;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .how-to-enter__map {
    width: 420px;
    right: calc(50% + 716px - 420px);
    top: -60px;
  }
}
.how-to-enter__map img {
  width: 100%;
}
.how-to-enter__cat1 {
  position: absolute;
  top: 0;
  left: calc(50% + 187.5px - 129px);
  width: 105px;
}
@media screen and (min-width: 1200px) {
  .how-to-enter__cat1 {
    width: 238px;
    top: -21px;
    left: calc(50% + 716px - 238px - 191px);
  }
}
.how-to-enter__cat1 img {
  width: 100%;
}
.how-to-enter__cat2 {
  position: absolute;
  top: 5px;
  left: calc(50% + 187.5px - 63px);
  width: 94px;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .how-to-enter__cat2 {
    width: 214px;
    top: -13px;
    left: calc(50% + 736px - 214px - 83px);
  }
}
.how-to-enter__cat2 img {
  width: 100%;
}
.how-to-enter__pawpods1 {
  position: absolute;
  top: 74px;
  left: calc(50% + 187.5px - 75px);
  width: 55px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__pawpods1 {
    right: 36px;
    left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__pawpods1 {
    top: 150px;
    width: 100px;
  }
}
.how-to-enter__pawpods1 img {
  max-width: 100%;
}
.how-to-enter__pawpods2 {
  position: absolute;
  bottom: 728px;
  right: calc(50% + 187.5px - 75px);
  width: 55px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media screen and (min-width: 900px) {
  .how-to-enter__pawpods2 {
    left: 36px;
    right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__pawpods2 {
    width: 100px;
    bottom: 72px;
  }
}
.how-to-enter__pawpods2 img {
  max-width: 100%;
}
.how-to-enter__pawpods3 {
  position: absolute;
  bottom: 397px;
  left: calc(50% + 187.5px - 75px);
  width: 55px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media screen and (min-width: 900px) {
  .how-to-enter__pawpods3 {
    display: none;
  }
}
.how-to-enter__pawpods3 img {
  max-width: 100%;
}

.prizes {
  position: relative;
  max-width: 600px;
  margin-inline: auto;
  margin-top: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 900px) {
  .prizes {
    max-width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes {
    max-width: 1024px;
    margin-top: 128px;
  }
}
.prizes::before {
  content: "";
  background: url(../img/deco_prizes1_sp.png) no-repeat center center/contain;
  position: absolute;
  width: 237.6px;
  height: 83px;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .prizes::before {
    background: url(../img/deco_prizes1_pc.png) no-repeat center center/contain;
    width: 365px;
    height: 149px;
    top: -30px;
  }
}
.prizes::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  height: calc(100% - 50px);
  top: 63px;
  left: 0;
  z-index: -5;
}
@media screen and (min-width: 1200px) {
  .prizes::after {
    top: 118px;
    height: calc(100% - 128px);
  }
}
.prizes__left-pic {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__left-pic {
    position: absolute;
    width: 315px;
    left: 0;
    display: block;
  }
}
.prizes__right-pic {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__right-pic {
    position: absolute;
    width: 315px;
    right: 0;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__inner {
    padding-inline: 54px;
    padding-bottom: 50px;
  }
}
.prizes__title {
  margin-top: 20px;
}
@media screen and (min-width: 1200px) {
  .prizes__title {
    margin-top: -10px;
  }
}
.prizes__main-text {
  margin-top: 16px;
  color: #4a3636;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 1200px) {
  .prizes__main-text {
    font-size: 16px;
    margin-top: 40px;
  }
}
.prizes__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  justify-content: center;
  margin-top: 23px;
}
@media screen and (min-width: 1200px) {
  .prizes__boxes {
    gap: 32px;
    margin-top: 58px;
  }
}
.prizes .box {
  position: relative;
  width: calc(50% - 7.5px);
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .prizes .box {
    width: calc(50% - 16px);
  }
  .prizes .box:nth-child(1) .box__number, .prizes .box:nth-child(2) .box__number {
    width: 100px;
    height: 100px;
    top: -50px;
  }
  .prizes .box:nth-child(4) {
    margin-left: 4px;
    margin-right: 4px;
  }
  .prizes .box:nth-child(n+3) {
    width: calc(33.333333% - 24px);
    margin-top: 48px;
  }
  .prizes .box:nth-child(n+3) .box__number {
    width: 80px;
    height: 80px;
    top: -40px;
  }
  .prizes .box:nth-child(n+3) .box__text {
    font-size: 16px;
    height: 80px;
  }
  .prizes .box:nth-child(n+3) .prizes__modal-icon {
    width: 20px;
    height: 20px;
    right: 10px;
    bottom: 10px;
  }
  .prizes .box:nth-child(n+3) .prizes__modal-icon-box {
    border-top: 64px solid transparent;
    border-left: 64px solid transparent;
    border-right: 64px solid #67b0c7;
  }
}
.prizes .box:hover .prizes__modal-open {
  border: 4px solid #9ed0e0;
}
.prizes .box:hover .box__picture img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.prizes .box:hover .prizes__modal-icon-box {
  border-top: 36px solid transparent;
  border-left: 36px solid transparent;
  border-right: 36px solid #9ed0e0;
}
@media screen and (min-width: 1200px) {
  .prizes .box:hover .prizes__modal-icon-box {
    border-top: 100px solid transparent;
    border-left: 100px solid transparent;
    border-right: 100px solid #9ed0e0;
  }
}
.prizes .box__number {
  position: absolute;
  width: 48px;
  height: 48px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
.prizes .box__wrapper {
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
.prizes .box__wrapper img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .prizes .box__wrapper {
    border-radius: 24px;
  }
}
.prizes .box__picture {
  overflow: hidden;
  display: block;
}
.prizes .box__text {
  color: #4a3636;
  background: #f5f5f5;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
  height: 56px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1200px) {
  .prizes .box__text {
    font-size: 20px;
    height: 120px;
  }
  .prizes .box__text .sp-hidden {
    display: block;
  }
}
.prizes .box .sp-hidden {
  display: none;
}
.prizes__modal-open {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 3;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (min-width: 1200px) {
  .prizes__modal-open {
    border-radius: 24px;
  }
}
.prizes__modal-icon-box {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 36px solid transparent;
  border-left: 36px solid transparent;
  border-right: 36px solid #67b0c7;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 1200px) {
  .prizes__modal-icon-box {
    border-top: 100px solid transparent;
    border-left: 100px solid transparent;
    border-right: 100px solid #67b0c7;
  }
}
.prizes__modal-icon {
  content: "";
  position: absolute;
  background: url(../img/img_prizes_zoom_icon.png) no-repeat center center/contain;
  width: 11px;
  height: 11px;
  bottom: 8px;
  right: 6px;
}
@media screen and (min-width: 1200px) {
  .prizes__modal-icon {
    width: 32px;
    height: 32px;
    bottom: 16px;
    right: 16px;
  }
}
.prizes__button {
  text-align: center;
  margin-top: 16px;
  padding-bottom: 20px;
}
.prizes__button .button {
  padding: 6px 22px 6px 22px;
}
@media screen and (min-width: 1200px) {
  .prizes__button {
    margin-top: 40px;
  }
  .prizes__button .button {
    padding: 6px 40px 6px 40px;
    font-size: 20px;
  }
}
.prizes .modal {
  max-width: 100%;
  width: 336px;
  height: 480px;
  max-height: 100%;
  padding: 0;
  border: none;
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .prizes .modal {
    width: 480px;
    height: 650px;
  }
}
.prizes .modal::-ms-backdrop {
  background: black;
  opacity: 0.7;
}
.prizes .modal::backdrop {
  background: black;
  opacity: 0.7;
}
.prizes .modal__head img {
  width: 100%;
  display: block;
}
.prizes .modal__body {
  padding-top: 39px;
  padding-bottom: 56px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .prizes .modal__body {
    padding-top: 32px;
    padding-bottom: 106px;
    padding-inline: 40px;
  }
}
.prizes .modal__body-title {
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .prizes .modal__body-title {
    font-size: 20px;
  }
}
.prizes .modal__body-text {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
}
@media screen and (min-width: 1200px) {
  .prizes .modal__body-text {
    font-size: 16px;
  }
}
.prizes .modal__button {
  margin-top: 12px;
}
@media screen and (min-width: 1200px) {
  .prizes .modal__button {
    margin-top: 24px;
    padding-inline: 24px;
    font-size: 16px;
  }
}

.sv {
  position: relative;
}
.sv__image {
  background: url(../img/bg_pic@2x.png) no-repeat center center/cover;
  width: 100%;
  height: 260px;
  position: absolute;
  top: -34px;
  z-index: -6;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .sv__image {
    height: 680px;
  }
}

.spots {
  position: relative;
  margin-top: 225px;
  padding-bottom: 21px;
  background: #67b0c7;
}
@media screen and (min-width: 900px) {
  .spots {
    margin-top: 627px;
  }
}
.spots::before {
  content: "";
  background: url(../img/img_bg_wave.png) repeat-x center center/contain;
  position: absolute;
  background-position: left 1px center;
  top: -43px;
  left: 0;
  width: 100%;
  height: 45.714px;
}
@media screen and (min-width: 900px) {
  .spots::before {
    background: url(../img/img_bg_pppwave.png) repeat-x center center/contain;
    background-position: left 3px center;
    height: 120px;
    top: -119px;
  }
}
.spots::after {
  content: "";
  background: url(../img/img_bg_wave.png) repeat-x center center/contain;
  position: absolute;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-position: left -5px center;
  bottom: -44px;
  left: 0;
  width: 100%;
  height: 45.714px;
}
@media screen and (min-width: 900px) {
  .spots::after {
    background: url(../img/img_bg_wave.png) repeat-x center center/contain;
    background-position: left 3px center;
    height: 120px;
    bottom: -102px;
  }
}
.spots__pawapos {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__pawapos {
    display: block;
    position: absolute;
    width: 100px;
    left: 36px;
    bottom: 14px;
  }
}
@media screen and (min-width: 900px) {
  .spots__inner {
    padding-inline: 0;
  }
}
@media screen and (min-width: 900px) {
  .spots__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__top {
    padding-left: max(30px, 50% - 519px);
  }
}
.spots__title {
  text-align: center;
  color: #fff;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 125%; /* 35px */
}
@media screen and (min-width: 900px) {
  .spots__title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    line-height: 125%; /* 50px */
    margin-right: 32px;
    margin-top: -80px;
    letter-spacing: 0.25em;
  }
}
.spots__title span {
  display: inline-block;
  margin-right: 7px;
  margin-top: 2px;
}
@media screen and (min-width: 900px) {
  .spots__title span {
    padding-bottom: 14px;
  }
}
.spots__title span img {
  width: 28px;
  height: 28px;
  vertical-align: top;
}
@media screen and (min-width: 900px) {
  .spots__title span img {
    width: 56px;
    height: 56px;
    padding-left: 5px;
  }
}
.spots__swiper {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .spots__swiper {
    width: calc(100% - 56px - 32px);
    margin-top: 0;
    position: relative;
  }
}
.spots__slide {
  height: auto;
}
.spots .slide__content {
  padding-right: 24px;
  padding-bottom: 30px;
  padding-left: 24px;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .spots .slide__content {
    padding-right: 32px;
    padding-bottom: 40px;
    padding-left: 32px;
    border-radius: 24px;
  }
}
.spots .slide__head {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
}
@media screen and (min-width: 900px) {
  .spots .slide__head {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
.spots .slide__body {
  background: #fff;
  text-align: center;
}
.spots .slide__body-title {
  padding-top: 17px;
  color: #4a3636;
  line-height: 160%; /* 25.6px */
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .spots .slide__body-title {
    font-size: 20px;
    padding-top: 24px;
  }
}
.spots .slide__body-text {
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  text-align: left;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .spots .slide__body-text {
    font-size: 16px;
    margin-top: 24px;
  }
}
.spots__bottom {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
    gap: 74px;
  }
}
.spots__bottom-logo {
  margin-inline: auto;
  width: 255px;
}
@media screen and (min-width: 900px) {
  .spots__bottom-logo {
    width: 495px;
  }
}
@media screen and (min-width: 900px) {
  .spots__bottom-under {
    padding-right: 8px;
  }
}
.spots__bottom-text {
  color: #fff;
  font-size: 11.444px;
  font-weight: 400;
  line-height: 160%; /* 18.311px */
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .spots__bottom-text {
    font-size: 16px;
    margin-top: 0;
    margin-right: 6px;
  }
}
.spots__button {
  text-align: center;
  margin-top: 21px;
}
@media screen and (min-width: 900px) {
  .spots__button {
    margin-top: 28px;
  }
}
@media screen and (min-width: 900px) {
  .spots__button .button {
    padding-inline: 40px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__wrapper {
    max-width: 1110px;
    padding-inline: 30px;
    margin-inline: auto;
    margin-top: -32px;
  }
}
.spots__arrow {
  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-inline: 52px;
}
.spots__prev, .spots__next {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__prev, .spots__next {
    display: block;
    width: 80px;
    height: 80px;
    background-color: #ffee56;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 57px 57px;
    border-radius: 50%;
    position: static;
  }
  .spots__prev::after, .spots__next::after {
    display: none;
  }
}
.spots__prev {
  background-image: url(../img/prev.png);
}
.spots__next {
  background-image: url(../img/next.png);
}

.faq {
  padding-top: 84px;
  padding-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .faq {
    padding-top: 224px;
    padding-bottom: 119px;
  }
}
@media screen and (min-width: 900px) {
  .faq__inner {
    max-width: 860px;
    padding-inline: 30px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .faq__inner {
    max-width: 1084px;
    padding-inline: 30px;
  }
}
.faq__boxes {
  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;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .faq__boxes {
    margin-top: 40px;
    gap: 23px;
  }
}
.faq__box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
  overflow: hidden;
}
.faq__box .is-checked .faq__q-icon-bar:nth-child(1) {
  display: none;
}
.faq__box .is-checked .faq__q-icon-bar:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.faq__question {
  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;
  padding: 10px 14px;
  width: 100%;
  gap: 12px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .faq__question {
    padding: 21px 20px 21px 25px;
    gap: 16px;
  }
}
.faq__q-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq__q-tag {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 125%; /* 30px */
}
@media screen and (min-width: 900px) {
  .faq__q-tag {
    font-size: 32px;
  }
}
.faq__q-title {
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
  text-align: left;
}
@media screen and (min-width: 900px) {
  .faq__q-title {
    font-size: 20px;
  }
}
.faq__q-icon {
  width: 26.182px;
  height: 26.182px;
  background: #9ed0e0;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 900px) {
  .faq__q-icon {
    width: 48px;
    height: 48px;
  }
}
.faq__q-icon-bar {
  position: absolute;
  background: #fff;
}
.faq__q-icon-bar:nth-child(1) {
  width: 10.182px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .faq__q-icon-bar:nth-child(1) {
    width: 18.667px;
    height: 2.667px;
  }
}
.faq__q-icon-bar:nth-child(2) {
  width: 1.5px;
  height: 10.182px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 900px) {
  .faq__q-icon-bar:nth-child(2) {
    height: 18.667px;
    width: 2.667px;
  }
}
.faq__answer {
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 17px 15px 14px 14px;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .faq__answer {
    padding: 26px 22px 20px 23px;
    gap: 16px;
  }
}
.faq__a-tag {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 125%; /* 30px */
}
@media screen and (min-width: 900px) {
  .faq__a-tag {
    font-size: 32px;
  }
}
.faq__a-text {
  color: #4a3636;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .faq__a-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .infomation__inner {
    margin-inline: auto;
    max-width: 860px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .infomation__inner {
    max-width: 1084px;
    padding-inline: 30px;
  }
}
.infomation__wrapper {
  border: 8px solid #fff;
  padding: 16px 14px 16px 14px;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 900px) {
  .infomation__wrapper {
    padding: 32px 49px 32px 48px;
  }
}
.infomation__table {
  text-align: left;
  width: 100%;
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .infomation__table {
    margin-top: 28px;
  }
}
.infomation__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 14px;
  padding-top: 12px;
  border-bottom: 1px solid #ccc;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .infomation__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 12px;
  }
}
.infomation__row:nth-child(5) {
  border-bottom: none;
}
.infomation__row-title {
  position: relative;
  padding-left: 16px;
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 900px) {
  .infomation__row-title {
    width: 240px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 16px;
    padding-left: 30px;
  }
}
.infomation__row-title::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
  left: 0;
  top: 10px;
}
@media screen and (min-width: 900px) {
  .infomation__row-title::before {
    left: 14px;
  }
}
.infomation__row-text {
  margin-top: 8px;
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
.infomation__row-text .sp-hidden {
  display: none;
}
@media screen and (min-width: 900px) {
  .infomation__row-text .sp-hidden {
    display: block;
  }
}
.infomation__row-text a {
  text-decoration: underline;
}
@media screen and (min-width: 900px) {
  .infomation__row-text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 16px;
    margin-top: 0;
  }
}
.infomation__row-textlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.infomation__row-textitem {
  padding-left: 18px;
  color: #4a3636;
  font-weight: 400;
  line-height: 159%;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .infomation__row-textitem {
    line-height: 162%;
    padding-left: 22px;
  }
}
.infomation__row-textitem::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 10px;
  left: 7px;
  background: #4a3636;
}

.bg-entry {
  margin-top: 29px;
}
@media screen and (min-width: 900px) {
  .bg-entry {
    margin-top: 117px;
  }
}
.bg-entry__picture {
  width: 100%;
}
.bg-entry__picture img {
  width: 100%;
}

.contact {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.contact__inner {
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 888px;
  }
}
.contact__text {
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  text-align: center;
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .contact__text {
    font-size: 16px;
    margin-top: 33px;
  }
}
.contact__text br {
  display: block;
}
@media screen and (min-width: 900px) {
  .contact__text br {
    display: none;
  }
}
.contact .form {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .contact .form {
    margin-top: 40px;
  }
}
.contact .form__boxes {
  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 .form__boxes {
    gap: 24.7px;
  }
}
.contact .form__box:nth-child(5) {
  margin-top: -4px;
}
@media screen and (min-width: 900px) {
  .contact .form__box:nth-child(5) .form__box-head {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media screen and (min-width: 900px) {
  .contact .form__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.contact .form__box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .form__box-label {
  color: #4a3636;
  font-size: 14px;
  line-height: 160%; /* 22.4px */
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .contact .form__box-label {
    font-size: 16px;
  }
}
.contact .form__box-tag {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  line-height: 160%; /* 19.2px */
  background: #ce2073;
  border-radius: 4px;
  padding: 4px 8px;
}
.contact .form__box-body {
  margin-top: 7px;
}
@media screen and (min-width: 900px) {
  .contact .form__box-body {
    margin-left: auto;
    width: 628px;
    margin-top: 0;
  }
}
.contact .form__box-input {
  outline: none;
  border: none;
  background: #f5f5f5;
  height: 56px;
  padding: 16px;
  border-radius: 8px;
  width: 100%;
}
.contact .form__box-input:hover {
  border: 1px solid #9ed0e0;
}
.contact .form__box-input:focus {
  background: #e9f6f8;
  border: 1px solid #9ed0e0;
}
.contact .form__box-input::-webkit-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.contact .form__box-input::-moz-placeholder {
  color: #ccc;
  font-size: 14px;
}
.contact .form__box-input:-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.contact .form__box-input::-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.contact .form__box-input::placeholder {
  color: #ccc;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .contact .form__box-input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .contact .form__box-input::-moz-placeholder {
    font-size: 16px;
  }
  .contact .form__box-input:-ms-input-placeholder {
    font-size: 16px;
  }
  .contact .form__box-input::-ms-input-placeholder {
    font-size: 16px;
  }
  .contact .form__box-input::placeholder {
    font-size: 16px;
  }
}
.contact .form__box-input.is-error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}
.contact .form__box-select {
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 8px;
  width: 100%;
  height: 56px;
  background-image: url(../img/control.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 51px;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .contact .form__box-select {
    font-size: 16px;
  }
}
.contact .form__box-select.is-error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}
.contact .form__box-radios {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .contact .form__box-radios {
    width: 628px;
    margin-left: auto;
    margin-top: 0;
    height: 56px;
  }
}
.contact .form .form-radio:hover .form-radio__text::before {
  border: 1px solid #9ed0e0;
}
.contact .form .form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.contact .form .form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.contact .form .form-radio__input:focus + .form-radio__text::before {
  border: 1px solid #9ed0e0;
}
.contact .form .form-radio__text {
  position: relative;
  padding-left: 32px;
  margin-right: 24px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .contact .form .form-radio__text {
    font-size: 16px;
    margin-right: 26px;
  }
}
.contact .form .form-radio__text::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact .form .form-radio__text::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  border-radius: 50%;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
.contact .form__box-textarea {
  height: 160px;
  width: 100%;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 8px;
  border: none;
  outline: none;
}
.contact .form__box-textarea.is-error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}
.contact .form__box-textarea::-webkit-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.contact .form__box-textarea::-moz-placeholder {
  color: #ccc;
  font-size: 14px;
}
.contact .form__box-textarea:-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.contact .form__box-textarea::-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.contact .form__box-textarea::placeholder {
  color: #ccc;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .contact .form__box-textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  .contact .form__box-textarea::-moz-placeholder {
    font-size: 16px;
  }
  .contact .form__box-textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  .contact .form__box-textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  .contact .form__box-textarea::placeholder {
    font-size: 16px;
  }
}
.contact .form__box-textarea:hover {
  border: 1px solid #9ed0e0;
}
.contact .form__box-textarea:focus {
  background: #e9f6f8;
  border: 1px solid #9ed0e0;
}
.contact .form__privacy {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact .form__privacy {
    margin-top: 40px;
  }
}
.contact .form__checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.contact .form__checkbox-input.is-error + .form__checkbox-text::before {
  border: 1px solid #ce2073;
  background: #fff0f7;
}
.contact .form__checkbox-input:checked + .form__checkbox-text::after {
  opacity: 1;
}
.contact .form__checkbox-text {
  position: relative;
  padding-left: 36px;
  color: #4a3636;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.contact .form__checkbox-text a {
  text-decoration: underline;
}
.contact .form__checkbox-text::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: none;
  background: #f5f5f5;
  border-radius: 4px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact .form__checkbox-text::after {
  content: "";
  position: absolute;
  background: url(../img/check.png) no-repeat center center/contain;
  width: 14px;
  height: 9px;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .contact .form__checkbox-text {
    font-size: 16px;
  }
}
.contact .form__foot {
  text-align: center;
}
.contact .form__button {
  text-align: center;
  margin-top: 21px;
}
@media screen and (min-width: 900px) {
  .contact .form__button {
    margin-top: 40px;
  }
}
.contact .form__submit-button {
  padding: 6px 22px 6px 22px;
}
@media screen and (min-width: 900px) {
  .contact .form__submit-button {
    padding: 6px 40px 6px 40px;
    font-size: 16px;
  }
}

.footer {
  padding-top: 43px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 120px;
    position: relative;
  }
}
.footer__bg {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__bg {
    display: block;
    position: absolute;
    top: 80px;
    right: 80px;
  }
  .footer__bg img {
    width: 100px;
  }
}
@media screen and (min-width: 600px) {
  .footer__inner {
    max-width: 660px;
    margin-inline: auto;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 900px) {
  .footer__inner {
    max-width: 1084px;
  }
}
.footer__title {
  color: #4a3636;
  font-family: "Josefin Sans";
  font-size: 20px;
  font-weight: 400;
  line-height: 125%; /* 25px */
}
@media screen and (min-width: 900px) {
  .footer__title {
    font-size: 24px;
  }
}
.footer__icons {
  margin-top: 24px;
  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;
  gap: 40px;
}
.footer__icon-link img {
  width: 32px;
}
@media screen and (min-width: 900px) {
  .footer__icon-link img {
    width: 40px;
  }
}
.footer__logo {
  margin-top: 15px;
  width: 328px;
  margin-inline: auto;
  z-index: -99;
  position: sticky;
}
.footer__logo img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .footer__logo {
    width: 755px;
    margin-top: 41px;
  }
}
.footer .map {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin-top: -3px;
}
@media screen and (min-width: 900px) {
  .footer .map {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: -8px;
  }
}
.footer .map__head iframe {
  display: block;
  width: 100%;
  height: 271px;
  border: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .footer .map__head iframe {
    height: 400px;
  }
}
@media screen and (min-width: 900px) {
  .footer .map__head {
    width: 50%;
  }
}
.footer .map__body {
  margin-inline: auto;
  padding: 18px 26px 30px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .footer .map__body {
    padding: 10px;
  }
}
.footer .map__body-title {
  width: 153px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .footer .map__body-title {
    width: 183px;
    text-align: left;
    margin-inline: 0;
  }
}
.footer .map__address {
  margin-top: 28px;
}
@media screen and (min-width: 900px) {
  .footer .map__address {
    margin-top: 24px;
  }
}
.footer .map__address-rows {
  text-align: left;
  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 .map__address-rows {
    gap: 12px;
  }
}
.footer .map__address-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.footer .map__address-row dt {
  color: #4a3636;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
  position: relative;
  padding-left: 20px;
  width: 80px;
}
.footer .map__address-row dt::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  background: #9ed0e0;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .footer .map__address-row dt {
    font-size: 16px;
    width: 120px;
  }
}
.footer .map__address-row dd {
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 900px) {
  .footer .map__address-row dd {
    font-size: 16px;
  }
}
.footer__page-top {
  margin-top: 24px;
  display: block;
}
.footer__page-top img {
  width: 75px;
}
@media screen and (min-width: 900px) {
  .footer__page-top {
    display: none;
  }
}
.footer__copyright {
  position: relative;
  margin-top: 62px;
  background: #67b0c7;
  width: 100%;
  padding-bottom: 24px;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    padding-bottom: 32px;
    margin-top: 239px;
  }
}
.footer__copyright::before {
  content: "";
  position: absolute;
  background-image: url(../img/img_small_wave.png);
  background-repeat: repeat-x;
  background-position: left 6px center;
  background-size: contain;
  top: -38px;
  left: 0;
  width: 100%;
  height: 45.714px;
}
@media screen and (min-width: 1200px) {
  .footer__copyright::before {
    background-image: url(../img/img_small-pc_wave.png);
    height: 120px;
    top: -117px;
  }
}
.footer small {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-weight: 400;
  line-height: 160%; /* 16px */
}
@media screen and (min-width: 1200px) {
  .footer small {
    font-size: 14px;
  }
}

#top {
  position: fixed;
  z-index: 99;
  bottom: 40px;
  right: 40px;
  display: none;
  width: 100px;
}
@media screen and (min-width: 900px) {
  #top.show {
    display: block;
  }
}