@charset "UTF-8";
body {
  font-size: 12px;
  line-height: 1.6;
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  background: #e9f6f8;
}
body.is-fixed {
  overflow: hidden;
}

img {
  width: 100%;
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1200px) {
  .inner {
    max-width: 1512px;
    margin-left: auto;
    margin-right: auto;
  }
}

.button {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  width: 132px;
  height: 32px;
  padding: 2px 2px 12px 2px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
}
@media screen and (min-width: 1200px) {
  .button {
    padding: 6px 2px 12px 2px;
    font-size: 16px;
    height: 40px;
    width: 144px;
  }
}

.link-text {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.link-text:hover {
  color: #67b0c7;
  cursor: pointer;
}

.heading {
  text-align: center;
}

.heading__icon img {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 900px) {
  .heading__icon img {
    width: 48px;
    height: 48px;
  }
}

.heading__title {
  margin-top: 6px;
  font-family: "Courgette", cursive;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .heading__title {
    margin-top: 8px;
    font-size: 20px;
  }
}

.heading__sub-title {
  margin-top: 6px;
  margin-bottom: 12px;
  display: inline-block;
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  position: relative;
}
@media screen and (min-width: 900px) {
  .heading__sub-title {
    margin-top: 8px;
    font-size: 32px;
  }
}
.heading__sub-title::after {
  position: absolute;
  bottom: -12px;
  left: 0;
  content: "";
  background: #ffee56;
  width: 100%;
  height: 6px;
}
@media screen and (min-width: 1200px) {
  .heading__sub-title::after {
    bottom: -15px;
    height: 8px;
  }
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  padding-top: 16.6px;
  padding-bottom: 16px;
  width: 100%;
  height: 64px;
}
@media screen and (min-width: 900px) {
  .header {
    padding-top: 14px;
    padding-bottom: 13px;
  }
}

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

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

.header-menu {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header-menu {
    display: inline-block;
  }
}

.header-list {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header-list {
    min-width: 556px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 13px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-list li:not(:last-of-type) {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header-list li:not(:last-of-type):hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #67b0c7;
    cursor: pointer;
  }
}

.header__button {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__button {
    display: inline;
    padding-bottom: 6px;
  }
  .header__button a {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
    height: 36px;
    padding: 4px 22px 6px 22px;
    border-radius: 40px;
    border: 2px solid #4a3636;
    -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
            box-shadow: 0px 4px 0px 0px #4a3636;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .header__button a:hover {
    background-color: #ffee56;
    cursor: pointer;
  }
}

.header__open {
  margin-top: 2px;
}

.drawer-icon {
  display: block;
  width: 32px;
  height: 27px;
  position: relative;
  z-index: 51;
}
@media screen and (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-open .drawer-icon__bar:nth-of-type(1) {
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 32px;
}
.drawer-icon.is-open .drawer-icon__bar:nth-of-type(2), .drawer-icon.is-open .drawer-icon__bar:nth-of-type(3) {
  display: none;
}
.drawer-icon.is-open .drawer-icon__bar:nth-of-type(4) {
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

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

.drawer-menu {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer-menu.js-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 120px;
  margin-left: auto;
  margin-right: auto;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}

.drawer-button a {
  width: 198.2px;
  height: 54.8px;
  padding: 8px 37px 10px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
}
.drawer-button a:hover {
  background-color: #ffee56;
  cursor: pointer;
}

body.no-scroll {
  overflow: hidden;
}

.fv {
  padding-top: 64px;
  padding-bottom: 156px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-bottom: 97px;
  }
}

.fv__picture {
  position: relative;
  z-index: -20;
}
.fv__picture img {
  border-radius: 0px 0px 24px 24px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 554px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__picture img {
    border-radius: 0px 0px 40px 40px;
    height: 740px;
  }
}

.fv__inner {
  position: absolute;
  top: 64px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 17px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    padding-top: 34px;
    max-width: 1512px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fv__content {
  width: 335px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .fv__content {
    width: 860px;
  }
}

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

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

.fv__heading1 {
  width: 100%;
}
.fv__heading1 img {
  width: 335px;
  height: 53px;
}
@media screen and (min-width: 900px) {
  .fv__heading1 img {
    width: 520px;
    height: 82px;
  }
}

.fv__heading2 {
  margin-top: 12px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__heading2 {
    margin-top: 16px;
  }
}
.fv__heading2 img {
  width: 240px;
  height: 40px;
}
@media screen and (min-width: 900px) {
  .fv__heading2 img {
    width: 356px;
    height: 60px;
  }
}

.fv__sp {
  margin-top: 235.6px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .fv__sp {
    margin-top: 185.5px;
  }
}

.fv-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 160px;
  border-radius: 12.8px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .fv-sp {
    width: 200px;
    border-radius: 16px;
  }
}

.fv-sp__head {
  color: #fff;
  padding: 7.5px 9.6px 5.4px 9.6px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 12.8px;
  font-weight: 700;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 900px) {
  .fv-sp__head {
    font-size: 16px;
    padding: 7.5px 9.6px 10.4px 9.6px;
  }
}

.fv-sp__body {
  padding-top: 12.8px;
  padding-bottom: 19.2px;
  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;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .fv-sp__body {
    padding-top: 8.8px;
  }
}

.fv-sp__time-title {
  border-bottom: 2.4px solid #ce2073;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .fv-sp__time-title {
    margin-top: 5px;
    line-height: 24px;
    font-size: 14px;
    border-bottom: 3px solid #ce2073;
  }
}

.fv-sp__time-text {
  margin-top: 6.4px;
  font-weight: 700;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media screen and (min-width: 900px) {
  .fv-sp__time-text {
    margin-top: 5px;
    font-size: 16px;
  }
}

.fv-sp__button {
  margin-top: 12px;
}
.fv-sp__button a {
  font-size: 14px;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 132px;
  height: 32px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.fv-sp__button a:hover {
  background-color: #ffee56;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .fv-sp__button {
    margin-top: 16px;
  }
  .fv-sp__button a {
    font-size: 16px;
    height: 40px;
    width: 144px;
  }
}

.fv-bg {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.fv-bg-smartphone {
  position: absolute;
  top: -278px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  max-width: 100%;
}
.fv-bg-smartphone img {
  min-width: 200px;
  height: 408px;
}
@media screen and (min-width: 900px) {
  .fv-bg-smartphone {
    top: -342px;
    left: 50%;
  }
  .fv-bg-smartphone img {
    min-width: 250px;
    height: 510px;
  }
}

.fv-bg__bottom-left {
  position: absolute;
  bottom: -140px;
  left: 0;
}
.fv-bg__bottom-left img {
  width: 89px;
  height: 141px;
}
@media screen and (min-width: 900px) {
  .fv-bg__bottom-left {
    bottom: -184px;
    left: 13px;
  }
  .fv-bg__bottom-left img {
    width: 202px;
    height: 332px;
  }
}

.fv-bg__bottom-right1 {
  position: absolute;
  bottom: -82px;
  right: 0;
}
.fv-bg__bottom-right1 img {
  width: 62px;
  height: 69px;
}
@media screen and (min-width: 900px) {
  .fv-bg__bottom-right1 {
    bottom: -124px;
    right: 69px;
  }
  .fv-bg__bottom-right1 img {
    width: 170px;
    height: 190px;
  }
}

.fv-bg__bottom-right2 {
  position: absolute;
  bottom: -139px;
  right: 9px;
}
.fv-bg__bottom-right2 img {
  width: 98px;
  height: 72px;
}
@media screen and (min-width: 900px) {
  .fv-bg__bottom-right2 {
    bottom: -228px;
    right: 6px;
  }
  .fv-bg__bottom-right2 img {
    width: 233px;
    height: 174px;
  }
}

.fv-bg__top-left {
  position: absolute;
  top: -376px;
  left: 0px;
}
.fv-bg__top-left img {
  width: 142px;
  height: 80px;
}
@media screen and (min-width: 900px) {
  .fv-bg__top-left {
    top: -375px;
    left: 43px;
  }
  .fv-bg__top-left img {
    width: 244px;
    height: 130px;
  }
}

.fv-bg__top-right {
  position: absolute;
  bottom: 272px;
  right: 25px;
  z-index: -2;
}
.fv-bg__top-right img {
  width: 110px;
  height: 110px;
}
@media screen and (min-width: 900px) {
  .fv-bg__top-right {
    bottom: 179px;
    right: 133px;
  }
  .fv-bg__top-right img {
    width: 180px;
    height: 180px;
  }
}

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

.about__wrap {
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  text-align: center;
  max-width: 335px;
}
@media screen and (min-width: 600px) {
  .about__wrap {
    max-width: 450px;
    border-radius: 32px;
  }
}
@media screen and (min-width: 900px) {
  .about__wrap {
    max-width: 570px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__wrap {
    max-width: 848px;
  }
}

.about__content {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.about__heading {
  position: relative;
}

.about__heading__pic-left {
  position: absolute;
  top: -3px;
  left: -9px;
  width: 80px;
  height: 60px;
}
@media screen and (min-width: 900px) {
  .about__heading__pic-left {
    left: -70px;
    width: 134px;
    height: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .about__heading__pic-left {
    left: -78px;
    top: 0px;
    width: 144px;
  }
}

.about__heading__pic-right {
  position: absolute;
  top: -10px;
  right: -17px;
  width: 80px;
  height: 60px;
}
@media screen and (min-width: 900px) {
  .about__heading__pic-right {
    right: -70px;
    width: 134px;
    height: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .about__heading__pic-right {
    top: 6px;
    right: -80px;
    width: 151px;
  }
}

.about__lead {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .about__lead {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .about__lead {
    margin-top: 36px;
  }
}

.about__text {
  margin-top: 24px;
  line-height: 1.6;
  white-space: nowrap;
}
.about__text + .about__text {
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .about__text + .about__text {
    margin-top: 27px;
  }
}
@media screen and (min-width: 600px) {
  .about__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .about__text {
    margin-top: 32px;
    font-size: 16px;
  }
}

.about__present {
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  border-bottom: dashed 2px #9ed0e0;
}
@media screen and (min-width: 900px) {
  .about__present {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .about__present {
    margin-top: 44px;
  }
}

.about__button {
  margin-top: 24px;
}
.about__button a {
  font-size: 16px;
  font-weight: 700;
  width: 192px;
  height: 40px;
  display: inline-block;
  padding: 4px 22px 6px 22px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 900px) {
  .about__button a {
    font-size: 20px;
    width: 260px;
    height: 56px;
    padding: 8px 20px 12px 20px;
    border-radius: 40px;
    border: 3px solid #4a3636;
  }
  .about__button a:hover {
    background-color: #ffee56;
    cursor: pointer;
  }
}
@media screen and (min-width: 1200px) {
  .about__button {
    margin-top: 37px;
  }
}

.about__bottom-english {
  margin-top: 139px;
  margin-left: auto;
  margin-right: auto;
  width: 355px;
}
@media screen and (min-width: 900px) {
  .about__bottom-english {
    margin-top: 167px;
    width: 770px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bottom-english {
    width: 890.604px;
  }
}

.about__bottom-swiper {
  margin-top: -2px;
}
@media screen and (min-width: 900px) {
  .about__bottom-swiper {
    margin-top: -7px;
  }
}

.about__bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.about-bg {
  height: 100%;
  position: relative;
}

.about-bg__left1 {
  display: none;
  position: absolute;
  top: 13px;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .about-bg__left1 {
    display: block;
    width: 250px;
    height: 250px;
    right: calc(50% + 270px);
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__left1 {
    top: 60px;
    right: calc(50% + 526px);
  }
}

.about-bg__left2 {
  position: absolute;
  top: 424px;
  right: calc(50% + 126px);
  width: 200px;
  height: 200px;
}
.about-bg__left2 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .about-bg__left2 {
    right: calc(50% + 176px);
  }
}
@media screen and (min-width: 900px) {
  .about-bg__left2 {
    top: 107px;
    right: calc(50% + 360px);
    width: 480px;
    height: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__left2 {
    right: calc(50% + 616px);
    top: 151px;
  }
}

.about-bg__left3 {
  position: absolute;
  bottom: -5px;
  left: -56px;
  width: 216px;
  height: 433px;
}
@media screen and (min-width: 600px) {
  .about-bg__left3 {
    bottom: 14px;
    left: -76px;
    width: 311px;
    height: auto;
  }
}
@media screen and (min-width: 900px) {
  .about-bg__left3 {
    bottom: 90px;
    left: -123px;
    width: 427px;
    height: 817px;
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__left3 {
    bottom: 151px;
    left: -103px;
    width: 427px;
    height: 817px;
  }
}

.about-bg__center {
  position: absolute;
  top: 742px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 36px;
}
@media screen and (min-width: 600px) {
  .about-bg__center {
    top: 790px;
  }
}
@media screen and (min-width: 900px) {
  .about-bg__center {
    top: 869px;
    width: 140px;
    height: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__center {
    top: 910px;
  }
}

.about-bg__right1 {
  position: absolute;
  top: 22px;
  left: calc(50% + 133px);
  width: 54px;
  height: 120px;
}
.about-bg__right1 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .about-bg__right1 {
    left: calc(50% + 203px);
  }
}
@media screen and (min-width: 900px) {
  .about-bg__right1 {
    top: 8px;
    left: calc(50% + 296px);
    width: 70px;
    height: 154px;
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__right1 {
    top: 0px;
    left: calc(50% + 489px);
    width: 100px;
    height: 220px;
  }
}

.about-bg__right2 {
  position: absolute;
  top: 304px;
  left: calc(50% + 126px);
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.about-bg__right2 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .about-bg__right2 {
    left: calc(50% + 176px);
  }
}
@media screen and (min-width: 900px) {
  .about-bg__right2 {
    top: 120px;
    left: calc(50% + 360px);
    width: 480px;
    height: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__right2 {
    top: 153px;
    left: calc(50% + 559px);
  }
}

.about-bg__right3 {
  position: absolute;
  top: 752px;
  left: calc(50% + 119px);
  width: 48px;
  height: 48px;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .about-bg__right3 {
    top: 721px;
    left: calc(50% + 281px);
    width: 76px;
    height: 76px;
  }
}
@media screen and (min-width: 900px) {
  .about-bg__right3 {
    top: 668px;
    left: calc(50% + 300px);
    width: 101px;
    height: 100.047px;
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__right3 {
    top: 681px;
    left: calc(50% + 507px);
  }
}

.about-bg__right4 {
  display: none;
  position: absolute;
  top: 0;
  left: calc(50% + 10px);
}
@media screen and (min-width: 900px) {
  .about-bg__right4 {
    display: block;
    top: 645px;
    left: calc(50% + 210px);
    width: 873.922px;
    height: 45.021px;
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__right4 {
    top: 685px;
    left: calc(50% + 445px);
  }
}

.about-bg__right5 {
  position: absolute;
  top: 794px;
  left: calc(50% - 2px);
  width: 133px;
  height: 65.003px;
}
@media screen and (min-width: 600px) {
  .about-bg__right5 {
    top: 806px;
    left: calc(50% + 87px);
    width: 203px;
  }
}
@media screen and (min-width: 900px) {
  .about-bg__right5 {
    top: 864px;
    left: calc(50% + 127px);
    width: 308px;
    height: 150.604px;
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__right5 {
    top: 836px;
    left: calc(50% + 372px);
    width: 311px;
    height: 151.604px;
  }
}

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

.step {
  padding-top: 64.8px;
  padding-bottom: 36.67px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .step {
    padding-top: 120px;
    padding-bottom: 125px;
  }
}

.step__cards {
  padding-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: 50px;
}
@media screen and (min-width: 900px) {
  .step__cards {
    max-width: 860px;
    padding-top: 36px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .step__cards {
    max-width: 1024px;
    padding-top: 44px;
    gap: 32px;
  }
}

.step__bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.step-card {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .step-card {
    width: 282px;
  }
  .step-card-second {
    margin-top: 60.375px;
  }
}
@media screen and (min-width: 1200px) {
  .step-card {
    width: 320px;
  }
  .step-card-second {
    margin-top: 69px;
  }
}
.step-card:nth-of-type(2)::after {
  display: block;
  width: 7px;
  height: 34px;
  position: absolute;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  background: url(../img/img_step_line_sp.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .step-card:nth-of-type(2)::after {
    width: 70px;
    height: 16px;
    top: 95px;
    left: -13px;
    background: url(../img/img_step_line_pc.png) no-repeat center center/contain;
  }
}
@media screen and (min-width: 1200px) {
  .step-card:nth-of-type(2)::after {
    width: 113px;
    height: 24px;
    top: 134px;
    left: -41px;
  }
}
.step-card:nth-of-type(3)::after {
  display: block;
  width: 7px;
  height: 34px;
  position: absolute;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  background: url(../img/img_step_line_sp.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .step-card:nth-of-type(3)::after {
    width: 70px;
    height: 16px;
    top: 162px;
    left: -14px;
    background: url(../img/img_step_line_pc.png) no-repeat center center/contain;
  }
}
@media screen and (min-width: 1200px) {
  .step-card:nth-of-type(3)::after {
    width: 113px;
    height: 24px;
    top: 202px;
    left: -32px;
  }
}

.step-card__head img {
  width: 196px;
  height: 210.519px;
}
@media screen and (min-width: 900px) {
  .step-card__head img {
    width: 245px;
    height: 262.5px;
  }
}
@media screen and (min-width: 1200px) {
  .step-card__head img {
    width: 280px;
    height: 300px;
  }
}

.step-card__body {
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
  .step-card__body {
    margin-top: 24px;
  }
}

.step-card__body-title {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.step-card__body-title-third {
  margin-left: 4px;
}
@media screen and (min-width: 1200px) {
  .step-card__body-title {
    font-size: 20px;
  }
}

.step-card__body-text {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin-top: 16px;
  font-weight: 400;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .step-card__body-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .step-card__body-text {
    font-size: 16px;
  }
}
.step-card__body-text-strong {
  font-weight: 700;
  letter-spacing: 0px;
}
.step-card__body-text-third {
  margin-top: 15px;
  text-indent: 1px;
}

.step-card__body-follow {
  margin-top: 16px;
}

.step-card__body-follow-text {
  display: inline-block;
  padding: 8px 12px 8px 40px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.step-card__body-follow-text:hover {
  border: 1px solid #9ed0e0;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .step-card__body-follow-text {
    padding: 8px 12px 8px 44px;
    font-size: 16px;
  }
}
.step-card__body-follow-text::before {
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/img_step-text_Icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 1200px) {
  .step-card__body-follow-text::before {
    width: 24px;
    height: 24px;
  }
}

.step-card__body-button {
  margin-top: 16px;
}
.step-card__body-button a {
  display: inline-block;
  padding: 4px 22px 6px 22px;
  width: 334px;
  height: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.5px;
  background-color: #fff;
  border-radius: 40px;
  border: 2px solid #4a3636;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.step-card__body-button a:hover {
  background-color: #ffee56;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .step-card__body-button {
    margin-top: 49px;
  }
  .step-card__body-button a {
    padding: 7px 37px 9px 37px;
    width: 435px;
    height: 55px;
    font-size: 20px;
    border: 3px solid var(--LP-Blown, #4a3636);
    -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
            box-shadow: 0px 4px 0px 0px #4a3636;
  }
}

.step-bg {
  height: 100%;
  position: relative;
}

.step-bg__left1 {
  position: absolute;
  top: 65px;
  right: calc(50% + 38px);
  width: 149px;
}
@media screen and (min-width: 600px) {
  .step-bg__left1 {
    top: 61px;
    right: calc(50% + 93px);
    width: 180px;
  }
}
@media screen and (min-width: 900px) {
  .step-bg__left1 {
    top: 61px;
    right: calc(50% + 163px);
    width: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .step-bg__left1 {
    top: 59px;
    right: calc(50% + 262px);
    width: 457px;
  }
}

.step-bg__left2 {
  position: absolute;
  top: 613px;
  right: calc(50% + 112px);
  width: 55px;
}
@media screen and (min-width: 600px) {
  .step-bg__left2 {
    top: 554px;
    right: calc(50% + 171px);
  }
}
@media screen and (min-width: 900px) {
  .step-bg__left2 {
    top: 620px;
    left: 0px;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .step-bg__left2 {
    top: 696px;
    left: 35px;
    width: 102px;
  }
}

.step-bg__right1 {
  position: absolute;
  top: 68px;
  left: calc(50% + 62px);
  width: 94px;
  height: 80px;
}
@media screen and (min-width: 900px) {
  .step-bg__right1 {
    top: 95px;
    left: calc(50% + 207px);
    width: 238px;
    height: 141px;
  }
}
@media screen and (min-width: 1200px) {
  .step-bg__right1 {
    top: 91px;
    left: calc(50% + 287px);
    width: 238px;
    height: 141px;
  }
}

.step-bg__right2 {
  position: absolute;
  top: 69px;
  left: calc(50% + 125px);
  width: 96px;
  height: 63px;
}
@media screen and (min-width: 600px) {
  .step-bg__right2 {
    top: 69px;
    right: calc(50% + 171px);
  }
}
@media screen and (min-width: 900px) {
  .step-bg__right2 {
    top: 103px;
    left: calc(50% + 344px);
    width: 214px;
    height: 181px;
  }
}
@media screen and (min-width: 1200px) {
  .step-bg__right2 {
    top: 102px;
    left: calc(50% + 436px);
    width: 214px;
    height: 181px;
  }
}

.step-bg__right3 {
  position: absolute;
  top: 140px;
  left: calc(50% + 112px);
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 600px) {
  .step-bg__right3 {
    top: 140px;
    left: calc(50% + 169px);
  }
}
@media screen and (min-width: 900px) {
  .step-bg__right3 {
    top: 268px;
    left: calc(100% - 75px);
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .step-bg__right3 {
    top: 267px;
    left: calc(100% - 135px);
    width: 100px;
  }
}

.step-bg__right4 {
  position: absolute;
  top: 944px;
  left: calc(50% + 111px);
  width: 55px;
  height: 120.12px;
}
@media screen and (min-width: 600px) {
  .step-bg__right4 {
    left: calc(50% + 169px);
  }
}
@media screen and (min-width: 900px) {
  .step-bg__right4 {
    display: none;
  }
}

.prizes__inner {
  padding-left: 0;
  padding-right: 0;
}

.prizes__content {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 34.67px;
  z-index: 0;
}
.prizes__content::after {
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #fff;
  border-radius: 24px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
}
@media screen and (min-width: 600px) {
  .prizes__content {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 53px;
    width: 600px;
  }
  .prizes__content::after {
    height: calc(100% - 81.967px);
  }
}
@media screen and (min-width: 900px) {
  .prizes__content {
    padding-bottom: 53px;
    width: 860px;
  }
  .prizes__content::after {
    height: calc(100% - 147.967px);
  }
}
@media screen and (min-width: 1200px) {
  .prizes__content {
    width: 1024px;
    padding-left: 56px;
    padding-right: 56px;
  }
  .prizes__content::after {
    height: calc(100% - 148.967px);
  }
}

.prizes__bg-triangle-left,
.prizes__bg-triangle-right {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__bg-triangle-left,
  .prizes__bg-triangle-right {
    display: block;
    position: absolute;
    top: 28px;
    width: calc((100% - 400px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .prizes__bg-triangle-left,
  .prizes__bg-triangle-right {
    display: block;
    position: absolute;
    top: 28px;
  }
}

.prizes__bg-triangle-left {
  left: 0;
}

.prizes__bg-triangle-right {
  right: 0;
}

.prizes__heading {
  padding-top: 20px;
  background: url(../img/img_prizes_bg_title.png) no-repeat center center/contain;
  background-size: 237.6px 83px;
  background-position-y: -1px;
}
@media screen and (min-width: 900px) {
  .prizes__heading {
    padding-top: 28px;
    background: url(../img/img_prizes_bg_title_PC.png) no-repeat center center/contain;
    background-size: 365.624px 148.967px;
    background-position-y: -1px;
  }
}

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

.prizes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 39px;
  -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;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(6, 1fr);
    row-gap: 60px;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__cards {
    margin-top: 83px;
    row-gap: 80px;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}

.prizes__button {
  margin-top: 19px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prizes__button a {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  width: 333px;
  height: 39px;
  padding: 6px 20px 8px 20px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.prizes__button a:hover {
  background-color: #ffee56;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 40px;
  }
  .prizes__button a {
    font-size: 20px;
    width: 437px;
    height: 56px;
    padding: 10px 37px 12px 37px;
    border: 3px solid #4a3636;
  }
}

@media screen and (min-width: 900px) {
  .prizes-cards {
    max-height: 860px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-cards {
    height: 860px;
  }
}

.prizes-card {
  position: relative;
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 900px) {
  .prizes-card {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card:nth-of-type(1) {
    grid-area: 1/1/span 1/span 3;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card:nth-of-type(2) {
    grid-area: 1/4/span 1/span 3;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card:nth-of-type(3) {
    grid-area: 2/1/span 1/span 2;
    width: calc(100% - 2.6666666667px);
  }
}
@media screen and (min-width: 900px) {
  .prizes-card:nth-of-type(4) {
    grid-area: 2/3/span 1/span 2;
    width: calc(100% - 2.6666666667px);
  }
}
@media screen and (min-width: 900px) {
  .prizes-card:nth-of-type(5) {
    grid-area: 2/5/span 1/span 2;
    width: calc(100% - 2.6666666667px);
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large > .prizes-card__number {
    top: -40px;
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card--large > .prizes-card__number {
    top: -50px;
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large > .prizes-card__inner {
    width: 100%;
    height: 460px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large > .prizes-card__inner > .prizes-card__head {
    width: 100%;
    height: 340px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large > .prizes-card__inner > .prizes-card__body {
    width: 100%;
    height: 120px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large > .prizes-card__inner > .prizes-card__body > .prizes-card__title {
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large > .prizes-card__inner > .prizes-card__body > .prizes-card__zoom {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card--large > .prizes-card__inner > .prizes-card__body > .prizes-card__zoom {
    width: 100px;
    height: 100px;
  }
}

.prizes-card__number {
  position: absolute;
  z-index: 1;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 900px) {
  .prizes-card__number {
    top: -30px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__number {
    top: -40px;
    width: 80px;
    height: 80px;
  }
}

.prizes-card__inner {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: outline 0.3s;
  transition: outline 0.3s;
}
@media screen and (min-width: 900px) {
  .prizes-card__inner {
    width: 100%;
    height: 320px;
    border-radius: 16px;
  }
}
.prizes-card__inner:hover {
  outline: 4px solid #9ed0e0;
}
.prizes-card__inner:hover .prizes-card__image source,
.prizes-card__inner:hover .prizes-card__image img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  -webkit-transition: 1s all;
  transition: 1s all;
}
.prizes-card__inner:hover .prizes-card__zoom svg path {
  fill: #9ed0e0;
}
.prizes-card__inner:hover .prizes-card__zoom svg g path {
  fill: #f5f5f5;
}

.prizes-card__head {
  min-width: 160px;
  min-height: 140px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes-card__head {
    width: 100%;
    height: 240px;
  }
}

.prizes-card__body {
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 160px;
  min-height: 56px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .prizes-card__body {
    width: 100%;
    min-height: 80px;
  }
}

.prizes-card__title {
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prizes-card__title {
    font-size: 16px;
  }
}

.prizes-card__zoom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
}
.prizes-card__zoom svg {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .prizes-card__zoom {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__zoom {
    width: 64px;
    height: 64px;
  }
}

.prizes-bg {
  margin-top: -45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes-bg {
    margin-top: -17px;
  }
}
.prizes-bg img {
  display: block;
  min-width: 580px;
}

.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  padding: 0 0 56px;
  border-radius: 24px;
  border: none;
  z-index: 110;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .prizes-modal {
    width: 400px;
    height: 540px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
  }
}

.modal-bg {
  display: none;
  position: fixed;
  z-index: 109;
  background: rgba(0, 0, 0, 0.768627451);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.prizes-modal__head {
  overflow: hidden;
}

.prizes-modal__body {
  margin-top: 39px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__body {
    margin-top: 32px;
  }
}

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

.prizes-modal__text {
  margin-top: 12px;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-modal__text {
    font-size: 14px;
  }
}

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

.prizes-modal__close-button {
  text-align: center;
  height: 40px;
  padding: 6px 24px 8px 24px;
  border: 2px solid #4a3636;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 700;
}

.spots {
  position: relative;
  padding-top: 46.7px;
  padding-bottom: 45.7px;
  margin-top: -45.7px;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-top: 120px;
    padding-bottom: 126px;
    margin-top: -140px;
  }
}
.spots::before, .spots::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 45.714px;
  background-repeat: repeat-x;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .spots::before, .spots::after {
    height: 120px;
  }
}
.spots::before {
  top: 0;
  background-image: url(../img/img_spots_bg_wave1.png);
}
@media screen and (min-width: 900px) {
  .spots::before {
    top: 0px;
    background-image: url(../img/img_spots_bg_wave1_PC.png);
  }
}
.spots::after {
  bottom: 0;
  background-image: url(../img/img_spots_bg_wave2.png);
}
@media screen and (min-width: 900px) {
  .spots::after {
    bottom: 10px;
    background-image: url(../img/img_spots_bg_wave2_PC.png);
  }
}

.spots__inner {
  background-color: #67b0c7;
  overflow: hidden;
  padding-top: 1px;
  margin-top: -1px;
}

@media screen and (min-width: 900px) {
  .spots__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__head {
    gap: 33px;
  }
}

.spots__header {
  margin-bottom: 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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .spots__header {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-left: max(30px, 50% - 512px);
    gap: 14px;
  }
}

.spots__header-icon {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 900px) {
  .spots__header-icon {
    width: 56px;
    height: 56px;
  }
}

.spots__header-title {
  color: #fff;
  text-align: center;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .spots__header-title {
    font-size: 40px;
    letter-spacing: 10px;
  }
}

.spots__card {
  height: 100%;
  overflow: hidden;
}

.spots-card {
  padding-left: 23px;
  padding-right: 23px;
  padding-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .spots-card {
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 42px;
    border-radius: 24px;
  }
}

.spots-card__image {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
  overflow: clip;
}
@media screen and (min-width: 900px) {
  .spots-card__image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}

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

.spots-card__body-title {
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .spots-card__body-title {
    font-size: 20px;
  }
}

.spots-card__body-text {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .spots-card__body-text {
    margin-top: 24px;
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .spots__body {
    position: relative;
    padding-left: 36px;
    padding-right: 36px;
    margin-bottom: 7px;
  }
}

@media screen and (min-width: 1200px) {
  .spots__body-inner {
    margin-left: auto;
    margin-right: auto;
    width: 1024px;
  }
}

.spots__body-wrap {
  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: 20px;
}
@media screen and (min-width: 900px) {
  .spots__body-wrap {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .spots__body-wrap {
    margin-left: auto;
    margin-right: auto;
    margin-top: 64px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 81px;
  }
}

.spots__body-title {
  margin-left: auto;
  margin-right: auto;
  width: 255px;
  height: 55px;
}
@media screen and (min-width: 900px) {
  .spots__body-title {
    width: 360px;
    height: 80.15px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__body-title {
    margin-left: 0;
    margin-right: 0;
    width: 495px;
    height: 107px;
  }
}

.spots__body-text {
  margin-top: 16px;
  text-align: center;
  color: #fff;
  font-size: 11.444px;
}
@media screen and (min-width: 900px) {
  .spots__body-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__body-text {
    margin-top: 0;
    font-size: 16px;
  }
}

.spots__button {
  margin-top: 24px;
  text-align: center;
}
.spots__button a {
  padding: 4px 22px 6px 22px;
  display: inline-block;
  height: 40px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.spots__button a:hover {
  background-color: #ffee56;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .spots__button {
    margin-left: 11px;
  }
  .spots__button a {
    height: 54px;
    padding: 7px 37px 9px 37px;
    border: 3px solid #4a3636;
    font-size: 20px;
  }
}

.spots__bg {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__bg {
    display: block;
    position: absolute;
    bottom: -3px;
    left: calc(50% - 720px);
    width: 100px;
    height: 220px;
  }
}

.swiper-spots-container {
  margin-top: -1px;
}
@media screen and (min-width: 900px) {
  .swiper-spots-container {
    width: calc(100% - 56px - 32px);
    margin-top: 0;
  }
}

.p-spots__slide {
  height: auto;
}
@media screen and (min-width: 900px) {
  .p-spots__slide {
    height: auto;
  }
}

.swiper-spots-button {
  display: none;
}
@media screen and (min-width: 900px) {
  .swiper-spots-button {
    padding-left: 100px;
    padding-right: 100px;
    height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-spots-button {
    max-width: 1144px;
    margin-left: auto;
    margin-right: auto;
  }
}

.swiper-spots-prev,
.swiper-spots-next {
  width: 80px;
  height: 80px;
}
@media screen and (min-width: 600px) {
  .swiper-spots-prev,
  .swiper-spots-next {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .swiper-spots-prev,
  .swiper-spots-next {
    display: inline-block;
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
}
@media screen and (min-width: 1200px) {
  .swiper-spots-prev,
  .swiper-spots-next {
    display: inline-block;
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
  }
}
.swiper-spots-prev::after,
.swiper-spots-next::after {
  content: "";
}

.swiper-spots-prev {
  background: url(../img/img_spots_swiper_prev.png) no-repeat center center/contain;
}

.swiper-spots-next {
  background: url(../img/img_spots_swiper_next.png) no-repeat center center/contain;
}

.qa {
  padding-top: 39px;
  padding-bottom: 30.67px;
}
@media screen and (min-width: 900px) {
  .qa {
    padding-top: 110px;
    padding-bottom: 120px;
  }
}

.qa__menu-wrap {
  margin-left: auto;
  margin-right: auto;
  padding-top: 23px;
}
@media screen and (min-width: 600px) {
  .qa__menu-wrap {
    max-width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .qa__menu-wrap {
    max-width: 900px;
  }
}
@media screen and (min-width: 1200px) {
  .qa__menu-wrap {
    max-width: 1024px;
    padding-top: 42px;
  }
}

.qa__menu {
  margin-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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;
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .qa__menu {
    border-radius: 16px;
  }
}
.qa__menu:nth-child(n+2) {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .qa__menu:nth-child(n+2) {
    margin-top: 26px;
  }
}

.qa__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 10px 14px 10px 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .qa__question {
    gap: 16px;
    padding: 22px 22px 18px 22px;
  }
}

.qa__circle {
  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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #9ed0e0;
  position: relative;
}
@media screen and (min-width: 900px) {
  .qa__circle {
    width: 48px;
    height: 48px;
  }
}
.qa__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .qa__circle::before {
    width: 3px;
    height: 20px;
    top: 50%;
    right: calc(50% - 3px);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.qa__circle::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .qa__circle::after {
    width: 20px;
    height: 3px;
    top: 50%;
    right: calc(50% - 20px);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.qa__icon-q,
.qa__icon-a {
  color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .qa__icon-q,
  .qa__icon-a {
    font-size: 32px;
  }
}

.qa__question-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .qa__question-text {
    font-size: 20px;
  }
}

.qa__answer {
  display: none;
  width: 100%;
}

.qa__answer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 14px 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #f5f5f5;
}
@media screen and (min-width: 900px) {
  .qa__answer-inner {
    padding: 27px 22px 19px;
  }
}

.qa__question.js-open .qa__circle::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.qa__answer-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.qa__answer-text a {
  color: inherit;
}
@media screen and (min-width: 900px) {
  .qa__answer-text {
    font-size: 16px;
  }
}

.entry__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.entry__content {
  margin-left: auto;
  margin-right: auto;
  padding: 17px 15.5px 18px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  max-width: 600px;
}
@media screen and (min-width: 900px) {
  .entry__content {
    padding: 32px 48px 32px;
    max-width: 1024px;
  }
}

.entry__table-wrap {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .entry__table-wrap {
    margin-top: 44px;
  }
}

.entry__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.entry__table th:nth-child(1),
.entry__table td:nth-child(1) {
  width: 240px;
}
@media screen and (min-width: 900px) {
  .entry__table th:nth-child(2),
  .entry__table td:nth-child(2) {
    width: calc(100% - 204px);
  }
}
@media screen and (min-width: 1200px) {
  .entry__table th:nth-child(2),
  .entry__table td:nth-child(2) {
    width: calc(100% - 240px);
  }
}

.entry__table-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .entry__table-body {
    gap: 13px;
  }
}

.entry__table-row {
  padding-bottom: 14px;
  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;
}
.entry__table-row:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 900px) {
  .entry__table-row {
    padding-bottom: 11px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.entry__table-head {
  padding-left: 16px;
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.entry__table-head::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 600px) {
  .entry__table-head {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .entry__table-head {
    padding-left: 32px;
  }
  .entry__table-head:before {
    top: 13px;
    left: 15px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media screen and (min-width: 600px) {
  .entry__table-data {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .entry__table-data {
    vertical-align: middle;
    font-size: 16px;
  }
}

.entry__table-lists li {
  line-height: 19px;
}
@media screen and (min-width: 600px) {
  .entry__table-lists li {
    line-height: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__table-lists li {
    line-height: 26px;
  }
}

.entry__table-list {
  padding-left: 19px;
  font-size: 12px;
  line-height: 1.6;
  position: relative;
}
.entry__table-list::before {
  position: absolute;
  content: "・";
  top: 2px;
  left: 2px;
}
@media screen and (min-width: 600px) {
  .entry__table-list {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__table-list {
    padding-left: 24px;
    font-size: 16px;
  }
  .entry__table-list::before {
    top: 4px;
    left: 3px;
  }
}

.entry__bg {
  display: block;
  margin-top: 33px;
}
@media screen and (min-width: 900px) {
  .entry__bg {
    margin-top: 120px;
  }
}

.contact {
  padding-top: 39px;
  padding-bottom: 42px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.contact__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.contact__content {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
@media screen and (min-width: 900px) {
  .contact__content {
    max-width: 848px;
  }
}

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

@media screen and (min-width: 600px) {
  .contact__text {
    font-size: 16px;
  }
}

.inline-block {
  display: inline-block;
}

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

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

.contact-form__row {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form__row.ai-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.contact-form__row.ai-start .head {
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .contact-form__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
.contact-form__row--radio {
  margin-top: -2px;
}

.contact-form__head {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .contact-form__head {
    width: 220px;
  }
}
.contact-form__head span {
  font-size: 14px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 600px) {
  .contact-form__head span {
    font-size: 16px;
  }
}
.contact-form__head span.must::after {
  content: "必須";
  white-space: nowrap;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(100% + 12px);
  font-size: 12px;
  padding: 2px 8px;
  background: #ce2073;
  color: #fff;
  border-radius: 4px;
}

.contact-form__data {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .contact-form__data {
    width: calc(100% - 220px);
  }
}
.contact-form__data--select {
  margin-top: 2px;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  height: auto;
  padding: 16px 16px;
  font-size: 14px;
  line-height: 1.6;
  background: #f5f5f5;
  border-radius: 8px;
  border: none;
  outline: none;
}
@media screen and (min-width: 900px) {
  input[type=text],
  input[type=email],
  textarea {
    font-size: 16px;
  }
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  outline: 1px solid #9ed0e0;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ccc;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
  color: #ccc;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ccc;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #ccc;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #ccc;
}

.form-text:focus,
.form-textarea:focus {
  background-color: #e9f6f8;
  border: 1px solid #9ed0e0;
}

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

.select-wrap {
  width: 100%;
  position: relative;
}
.select-wrap select {
  background: linear-gradient(270deg, #9ed0e0 0%, #9ed0e0 52px, #f5f5f5 52px, #f5f5f5 100%);
  width: 100%;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 8px;
  padding: 16px;
  border: none;
  outline: none;
}
@media screen and (min-width: 900px) {
  .select-wrap select {
    font-size: 16px;
    margin-top: -3px;
  }
}
.select-wrap select:hover {
  cursor: pointer;
}
.select-wrap select option {
  background-color: #fff;
}
.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 11px;
  width: 32px;
  height: 32px;
  background: url(../img/img_contact-arrow.png) no-repeat center center/cover;
  pointer-events: none;
}

.form-select.is-error {
  background: linear-gradient(270deg, #ce2073 0%, #ce2073 52px, #fff0f7 52px, #fff0f7 100%);
  border: 1px solid #ce2073;
}

textarea {
  height: 160px;
  resize: vertical;
}

.radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  margin-top: -2px;
}
@media screen and (min-width: 900px) {
  .radio-wrap {
    margin-top: -2px;
  }
}
.radio-wrap label input[type=radio] {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: absolute;
}
.radio-wrap label span {
  display: inline-block;
  padding-left: 32px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}
@media screen and (min-width: 900px) {
  .radio-wrap label span {
    padding-top: 17px;
    padding-bottom: 16px;
    padding-left: 33px;
    font-size: 16px;
  }
}
.radio-wrap label span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  outline: none;
  border: none;
  border-radius: 50%;
}
.radio-wrap label span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9ed0e0;
  opacity: 0;
}
.radio-wrap label input[type=radio]:checked + span {
  font-weight: 700;
}
.radio-wrap label input[type=radio]:focus + .form-radio__text::before {
  border: 1px solid #9ed0e0;
  outline: none;
}
.radio-wrap label input[type=radio]:checked + span::after {
  opacity: 1;
}
.radio-wrap label:hover {
  cursor: pointer;
}

.checkbox-wrap {
  margin-top: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}

.checkbox-wrap label input[type=checkbox] {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: absolute;
}
.checkbox-wrap label span {
  display: inline-block;
  padding-left: 36px;
  font-size: 14px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .checkbox-wrap label span {
    font-size: 16px;
  }
}
.checkbox-wrap label span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 4px;
  background: #f5f5f5;
}
.checkbox-wrap label span::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  left: 9px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #67b0c7;
  border-bottom: 2px solid #67b0c7;
  opacity: 0;
}
.checkbox-wrap label input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.checkbox-wrap label:hover {
  cursor: pointer;
}

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

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.contact-form__row.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .contact-form__row.jc-center {
    margin-top: 19px;
  }
}

.submit-wrap {
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.submit-wrap input[type=submit] {
  padding: 20px 60px;
  padding: 4px 22px 6px 22px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid #4a3636;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
}
@media screen and (min-width: 900px) {
  .submit-wrap input[type=submit] {
    width: 240px;
  }
}
.submit-wrap:hover input[type=submit] {
  background-color: #ffee56;
}

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

.footer__bg {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__bg {
    display: inline-block;
    position: absolute;
    top: 80px;
    right: 0;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__bg {
    right: auto;
    left: calc(50% + 576px);
    width: 100px;
    overflow: hidden;
  }
}

.footer__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.footer__content {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
@media screen and (min-width: 900px) {
  .footer__content {
    max-width: 1024px;
  }
}

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

.footer__snss {
  margin-top: 19px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .footer__snss {
    margin-top: 24px;
  }
}

.footer__sns {
  width: 32px;
}
@media screen and (min-width: 900px) {
  .footer__sns {
    width: 40px;
  }
}

.footer__picture {
  margin-top: 16px;
  text-align: center;
  padding-left: 2px;
  display: block;
}
.footer__picture img {
  width: 329px;
}
@media screen and (min-width: 900px) {
  .footer__picture {
    margin-top: 41px;
    margin-left: calc(50% - 373px);
    max-width: 739px;
  }
  .footer__picture img {
    width: 100%;
  }
}

.footer__access {
  margin-top: -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (min-width: 900px) {
  .footer__access {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.footer__pagetop {
  padding-top: 22px;
  padding-bottom: 22px;
}
@media screen and (min-width: 900px) {
  .footer__pagetop {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.footer__bottom {
  margin-top: 46px;
  padding-bottom: 22px;
  background: #67b0c7;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 242px;
    padding-bottom: 32px;
  }
}

.footer__bottom-inner {
  position: relative;
  text-align: center;
  margin-top: -2px;
  margin-left: -5px;
}
@media screen and (min-width: 900px) {
  .footer__bottom-inner {
    margin-left: -4px;
  }
}
.footer__bottom-inner::before {
  position: absolute;
  top: -45.714px;
  left: 0px;
  content: "";
  width: 100%;
  height: 45.714px;
  background-repeat: repeat-x;
  background-size: contain;
  background-image: url(../img/img_spots_bg_wave1.png);
}
@media screen and (min-width: 900px) {
  .footer__bottom-inner::before {
    z-index: -1;
    top: -120px;
    height: 120px;
    background-image: url(../img/img_spots_bg_wave1_PC.png);
  }
}

.footer__copyright {
  font-size: 10px;
  color: #fff;
  padding-left: 4px;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    font-size: 14px;
    line-height: 1.6;
  }
}

.footer-access__map {
  position: relative;
  padding-top: 80.8955223881%;
}
.footer-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .footer-access__map {
    width: 50%;
    padding-top: 39.0625%;
  }
}

.footer-access__wrap {
  padding-left: 10px;
  padding-right: 10px;
  background: #fff;
  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;
}
@media screen and (min-width: 900px) {
  .footer-access__wrap {
    width: 50%;
  }
}

.footer-access__content {
  margin-left: auto;
  margin-right: auto;
  padding-top: 23px;
  padding-bottom: 30px;
  width: 282px;
}
@media screen and (min-width: 600px) {
  .footer-access__content {
    width: 356px;
  }
}
@media screen and (min-width: 900px) {
  .footer-access__content {
    padding-top: 2px;
    padding-bottom: 0;
    width: 389px;
  }
}

.footer-access__logo {
  margin-left: auto;
  margin-right: auto;
  width: 153px;
}
@media screen and (min-width: 900px) {
  .footer-access__logo {
    margin-left: 0;
    width: 183px;
  }
}

.footer-access__body {
  margin-top: 31px;
}
@media screen and (min-width: 900px) {
  .footer-access__body {
    margin-top: 25px;
  }
}

.footer-form {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.footer-form tbody {
  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-form tbody {
    gap: 12px;
  }
}
.footer-form th:nth-child(1),
.footer-form td:nth-child(1) {
  width: 80px;
}
@media screen and (min-width: 600px) {
  .footer-form th:nth-child(1),
  .footer-form td:nth-child(1) {
    width: 120px;
  }
}

.footer-form__head {
  padding-left: 16px;
  text-align: left;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
@media screen and (min-width: 600px) {
  .footer-form__head {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .footer-form__head {
    font-size: 16px;
  }
}
.footer-form__head::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer-form__data {
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .footer-form__data {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .footer-form__data {
    font-size: 16px;
  }
}

.pagetop {
  z-index: 100;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  width: min(25%, 78px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 900px) {
  .pagetop {
    position: fixed;
    right: 30px;
    bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .pagetop {
    right: 40px;
    bottom: 40px;
    width: 100px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}