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

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 6px;
  padding-inline: 15px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .heading {
    gap: 8px;
    padding-inline: 20px;
  }
}

.heading-icon {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 900px) {
  .heading-icon {
    width: 48px;
    height: 48px;
  }
}
.heading-icon img {
  display: block;
  width: 100%;
}

.heading_title-en {
  font-family: "Courgette";
  font-size: 16px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .heading_title-en {
    font-size: 20px;
  }
}

.heading_title-jp {
  display: inline-block;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 900px) {
  .heading_title-jp {
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid #ffee56;
  }
}

.inner {
  padding-inline: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-inline: 40px;
    max-width: 1104px;
  }
}

.button {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 22px 6px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
@media screen and (min-width: 900px) {
  .button {
    font-size: 20px;
    padding: 8px 37px 9px;
    border: 3px solid #4a3636;
  }
}
.button:hover {
  background-color: #ffee56;
}

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

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

.inline-block {
  display: inline-block;
  font-weight: inherit;
}

.account-id {
  -webkit-text-decoration: underline solid;
          text-decoration: underline solid;
}

.hashtag {
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  z-index: 51;
  background-color: #fff;
  padding-block: 18px;
}
@media screen and (min-width: 900px) {
  .header {
    padding-top: 12px;
    padding-bottom: 14px;
  }
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .header_inner {
    padding-inline: 24px;
  }
}

.header_logo {
  width: 210px;
}
@media screen and (min-width: 900px) {
  .header_logo {
    width: 183px;
  }
}
.header_logo a img {
  display: block;
  width: 100%;
}

.header_nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.header_link {
  color: #4a3636;
}

.header_button {
  margin-left: 4px;
  font-size: 14px;
  padding: 4px 22px 6px 22px;
}

.drawer-icon {
  width: 32px;
  height: 28px;
  position: relative;
  padding-top: 0.6px;
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon_bar:nth-of-type(1) {
  width: 32px;
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon_bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon_bar:nth-of-type(3) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon_bar:nth-of-type(4) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon_bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background-color: #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: 12.6px;
}
.drawer-icon_bar:nth-of-type(4) {
  top: 24.6px;
}

.drawer-content {
  width: 100%;
  height: calc(100% - 64px);
  padding-block: 82px;
  position: fixed;
  top: 64px;
  background-color: #ffffff;
  z-index: 5;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content_nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.drawer-content_link {
  display: block;
  text-align: center;
  font-size: 14px;
  padding-bottom: 40px;
}

.fv {
  position: relative;
}

.fv_bg-img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0px 0px 24px 24px;
  overflow: hidden;
  width: 100%;
  height: calc(100% - 156px);
}
@media screen and (min-width: 900px) {
  .fv_bg-img {
    border-radius: 0px 0px 40px 40px;
    height: calc(100% - 97px);
  }
}
.fv_bg-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.fv_inner {
  position: relative;
  width: 100%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 18px;
}
@media screen and (min-width: 900px) {
  .fv_inner {
    max-width: 848px;
    padding-top: 34px;
  }
}

.fv_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .fv_head {
    gap: 24px;
  }
}

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

.fv_head-title img {
  display: block;
  width: 100%;
  height: 100%;
}

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

.fv_decoration-hukidashi {
  width: 142px;
  position: absolute;
  top: 7px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .fv_decoration-hukidashi {
    width: 244px;
    top: 0;
    left: 37px;
  }
}
.fv_decoration-hukidashi img {
  display: block;
  width: 100%;
}

.fv_decoration-present {
  width: 110px;
  position: absolute;
  top: 0;
  right: 25px;
}
@media screen and (min-width: 900px) {
  .fv_decoration-present {
    width: 180px;
    top: 17px;
    left: 541px;
  }
}
.fv_decoration-present img {
  display: block;
  width: 100%;
}

.fv_decoration-phone {
  position: absolute;
  top: 103px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .fv_decoration-phone {
    top: 33px;
  }
}

.decoration-phone {
  position: relative;
  width: 200px;
  height: 408px;
}
@media screen and (min-width: 900px) {
  .decoration-phone {
    width: 250px;
    height: 510px;
  }
}

.decoration-phone-device {
  position: absolute;
  top: 0;
  left: 0;
}

.decoration-phone-text {
  position: absolute;
  top: 121.6px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .decoration-phone-text {
    top: 152.5px;
    left: 25px;
  }
}

.fv_decoration-food {
  width: 90.26px;
  position: absolute;
  top: 381px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .fv_decoration-food {
    width: 212px;
    top: 227px;
  }
}
.fv_decoration-food img {
  display: block;
  width: 100%;
}

.fv_decoration-cats {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 900px) {
  .fv_decoration-cats {
    top: 310px;
  }
}

.decoration-cat {
  position: relative;
  width: 107px;
  height: 127px;
}
@media screen and (min-width: 900px) {
  .decoration-cat {
    width: 233px;
    height: 294px;
  }
}

.decoration-cat-black {
  width: 62px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 900px) {
  .decoration-cat-black {
    width: 170px;
    right: 63px;
  }
}

.decoration-cat-blown {
  width: 98px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 900px) {
  .decoration-cat-blown {
    width: 233px;
    bottom: 2px;
  }
}

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

.about_decorations {
  position: absolute;
  width: 100%;
  height: 917.2px;
  top: 0;
  left: 0;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .about_decorations {
    height: 978.25px;
  }
}
@media screen and (min-width: 900px) {
  .about_decorations {
    height: 1173px;
  }
}

.about_decoration {
  position: relative;
  width: 100%;
  height: 100%;
}

.about_decoration-footprints {
  position: absolute;
  width: 54px;
  top: 22px;
  left: calc(50% + 133.5px);
}
@media screen and (min-width: 600px) {
  .about_decoration-footprints {
    left: calc(50% + 205.5px);
  }
}
@media screen and (min-width: 900px) {
  .about_decoration-footprints {
    width: 100px;
    top: 0;
    left: calc(50% + 290px);
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .about_decoration-footprints {
    left: calc(50% + 490px);
  }
}
.about_decoration-footprints img {
  display: block;
  width: 100%;
}

.about_decoration-right-photo {
  position: absolute;
  width: 200px;
  top: 305px;
  left: calc(50% + 127.5px);
}
@media screen and (min-width: 600px) {
  .about_decoration-right-photo {
    left: calc(50% + 180px);
  }
}
@media screen and (min-width: 900px) {
  .about_decoration-right-photo {
    width: 480px;
    height: 480px;
    top: 153.07px;
    left: calc(50% + 360px);
  }
}
@media screen and (min-width: 1200px) {
  .about_decoration-right-photo {
    left: calc(50% + 560px);
  }
}
.about_decoration-right-photo img {
  display: block;
  width: 100%;
}

.about_decoration-left-photo {
  position: absolute;
  width: 200px;
  top: 427px;
  right: calc(50% + 127.5px);
}
@media screen and (min-width: 600px) {
  .about_decoration-left-photo {
    right: calc(50% + 180px);
  }
}
@media screen and (min-width: 900px) {
  .about_decoration-left-photo {
    width: 480px;
    top: 154px;
    right: calc(50% + 364px);
    z-index: 1;
  }
}
@media screen and (min-width: 1200px) {
  .about_decoration-left-photo {
    right: calc(50% + 614px);
  }
}
.about_decoration-left-photo img {
  display: block;
  width: 100%;
}

.about_decoration-goods1 {
  position: absolute;
  top: 752px;
  width: 48px;
  left: calc(50% + 118.5px);
}
@media screen and (min-width: 600px) {
  .about_decoration-goods1 {
    top: 813px;
    left: calc(50% + 280px);
    width: 80px;
  }
}
@media screen and (min-width: 900px) {
  .about_decoration-goods1 {
    top: 681px;
    left: calc(50% + 305px);
    width: 101px;
    z-index: 1;
  }
}
@media screen and (min-width: 1200px) {
  .about_decoration-goods1 {
    left: calc(50% + 505px);
  }
}
.about_decoration-goods1 img {
  display: block;
  width: 100%;
}

.about_decoration-goods2 {
  position: absolute;
  top: 794px;
  width: 133px;
  left: calc(50% - 2.5px);
}
@media screen and (min-width: 600px) {
  .about_decoration-goods2 {
    top: 855px;
    left: calc(50% + 97px);
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about_decoration-goods2 {
    top: 837px;
    width: 308px;
    left: calc(50% + 174px);
  }
}
@media screen and (min-width: 1200px) {
  .about_decoration-goods2 {
    left: calc(50% + 374px);
  }
}
.about_decoration-goods2 img {
  display: block;
  width: 100%;
}

.about_decoration-slope {
  position: absolute;
  width: 138px;
  top: 741px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .about_decoration-slope {
    top: 401px;
    right: calc(50% + 174px);
    left: auto;
    width: 427px;
  }
}
@media screen and (min-width: 1200px) {
  .about_decoration-slope {
    right: calc(50% + 432px);
  }
}

.about_decoration-english {
  position: absolute;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 355px;
  max-width: 891px;
}
@media screen and (min-width: 600px) {
  .about_decoration-english {
    top: 941px;
  }
}
@media screen and (min-width: 900px) {
  .about_decoration-english {
    top: 1076px;
    width: 891px;
  }
}
.about_decoration-english img {
  display: block;
  width: 100%;
}

.about_decoration-diagonal {
  position: absolute;
  width: 250px;
  height: 250px;
  top: 60px;
  right: calc(50% + 277px);
}
@media screen and (min-width: 1200px) {
  .about_decoration-diagonal {
    right: calc(50% + 527px);
  }
}

.about_decoration-wave {
  position: absolute;
  width: 873.922px;
  height: 45.021px;
  top: 687.33px;
  left: calc(50% + 200px);
}
@media screen and (min-width: 1200px) {
  .about_decoration-wave {
    left: calc(50% + 448px);
  }
}

.about_contain {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px 20px;
  width: 100%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 600px) {
  .about_contain {
    max-width: 460px;
  }
}
@media screen and (min-width: 900px) {
  .about_contain {
    max-width: 580px;
    border-radius: 40px;
    padding: 41px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .about_contain {
    max-width: 848px;
  }
}
.about_contain::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 36px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #cce1e4;
}
@media screen and (min-width: 900px) {
  .about_contain::after {
    width: 140px;
    height: 50px;
  }
}

.contain-decoration-left {
  position: absolute;
  top: 35.77px;
  right: calc(50% + 53px);
  width: 80px;
  height: 60px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  border: 3.9px solid #f5f5f5;
}
@media screen and (min-width: 900px) {
  .contain-decoration-left {
    top: 46.35px;
    right: calc(50% + 199px);
    width: 134px;
    height: 100px;
    border: 6px solid #f5f5f5;
  }
}

.contain-decoration-right {
  position: absolute;
  top: 34.6px;
  left: calc(50% + 64px);
  width: 80px;
  height: 60px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  border: 3.6px solid #f5f5f5;
}
@media screen and (min-width: 900px) {
  .contain-decoration-right {
    top: 56px;
    left: calc(50% + 199px);
    width: 134px;
    height: 100px;
    border: 6px solid #f5f5f5;
  }
}

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

.about_contents-slogan {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .about_contents-slogan {
    font-size: 16px;
  }
}

.about_contents-texts {
  margin-top: 23px;
  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;
  gap: 18px;
}
@media screen and (min-width: 600px) {
  .about_contents-texts {
    margin-top: 28px;
  }
}
@media screen and (min-width: 900px) {
  .about_contents-texts {
    margin-top: 33px;
    gap: 27px;
  }
}

@media screen and (min-width: 600px) {
  .about_contents-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .about_contents-text {
    font-size: 16px;
  }
}

.about_contents-headcount {
  display: inline-block;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 700;
  padding-top: 6px;
  padding-bottom: 6px;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 900px) {
  .about_contents-headcount {
    margin-top: 32px;
    font-size: 20px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
}

.about_button {
  margin-top: 25px;
  font-size: 16px;
}
@media screen and (min-width: 600px) {
  .about_button {
    margin-top: 33px;
    font-size: 20px;
  }
}

.about_slider {
  padding-top: 144.8px;
}
@media screen and (min-width: 900px) {
  .about_slider {
    padding-top: 226px;
  }
}

.about_swiper {
  overflow: hidden;
}

.about_swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.about_swiper_slide img {
  display: block;
  width: 100%;
  height: auto;
}

.step_inner {
  padding-top: 65px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .step_inner {
    padding-top: 119px;
    max-width: 1512px;
    padding-inline: 36px;
  }
}

.step_decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.step_decoration {
  position: relative;
  width: 100%;
  height: 100%;
}

.step_decoration-blown-cat {
  position: absolute;
  top: 64px;
  left: calc(50% + 58.5px);
  width: 105px;
  height: 63px;
}
@media screen and (min-width: 900px) {
  .step_decoration-blown-cat {
    top: 94px;
    left: calc(50% + 187px);
    width: 238px;
    height: 141px;
  }
}
@media screen and (min-width: 1200px) {
  .step_decoration-blown-cat {
    left: calc(50% + 287px);
  }
}
.step_decoration-blown-cat img {
  display: block;
  width: 100%;
}

.step_decoration-black-cat {
  position: absolute;
  top: 70px;
  left: calc(50% + 124.5px);
  width: 94px;
  height: 80px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .step_decoration-black-cat {
    top: 104px;
    left: calc(50% + 337px);
    width: 214px;
    height: 181px;
    z-index: 1;
  }
}
@media screen and (min-width: 1200px) {
  .step_decoration-black-cat {
    left: calc(50% + 437px);
  }
}
.step_decoration-black-cat img {
  display: block;
  width: 100%;
}

.step_decoration-map {
  position: absolute;
  top: 64px;
  right: calc(50% + 38.5px);
  width: 149px;
}
@media screen and (min-width: 600px) {
  .step_decoration-map {
    right: calc(50% + 104px);
    width: 180px;
  }
}
@media screen and (min-width: 900px) {
  .step_decoration-map {
    top: 60px;
    right: calc(50% + 160px);
    width: 460px;
  }
}
@media screen and (min-width: 1200px) {
  .step_decoration-map {
    right: calc(50% + 260px);
  }
}
.step_decoration-footprints1 {
  position: absolute;
  top: 138px;
  left: calc(50% + 112.5px);
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 600px) {
  .step_decoration-footprints1 {
    left: calc(50% + 178.5px);
  }
}
@media screen and (min-width: 900px) {
  .step_decoration-footprints1 {
    top: 268px;
    right: 0;
    left: auto;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .step_decoration-footprints1 {
    right: 36px;
    width: 100px;
    height: 220px;
  }
}
.step_decoration-footprints1 img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.step_decoration-footprints2 {
  position: absolute;
  top: 614px;
  right: calc(50% + 112.5px);
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 600px) {
  .step_decoration-footprints2 {
    right: calc(50% + 178.5px);
  }
}
@media screen and (min-width: 900px) {
  .step_decoration-footprints2 {
    left: 0;
    right: auto;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .step_decoration-footprints2 {
    top: 700px;
    left: 36px;
    width: 100px;
    height: 220px;
  }
}
.step_decoration-footprints2 img {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.step_decoration-footprints3 {
  position: absolute;
  top: 944px;
  left: calc(50% + 112.5px);
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 600px) {
  .step_decoration-footprints3 {
    left: calc(50% + 178.5px);
  }
}
@media screen and (min-width: 900px) {
  .step_decoration-footprints3 {
    display: none;
  }
}
.step_decoration-footprints3 img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.step_decoration-line1 {
  position: absolute;
  top: 601px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7px;
}
@media screen and (min-width: 900px) {
  .step_decoration-line1 {
    top: 510px;
    left: auto;
    -webkit-transform: none;
            transform: none;
    right: calc(50% + 144px);
    z-index: 2;
  }
}
.step_decoration-line1 img {
  display: block;
  width: 100%;
}

.step_decoration-line2 {
  position: absolute;
  top: 995px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7px;
}
@media screen and (min-width: 900px) {
  .step_decoration-line2 {
    top: 510px;
    left: auto;
    -webkit-transform: none;
            transform: none;
    left: calc(50% + 104px);
    z-index: 2;
  }
}
.step_decoration-line2 img {
  display: block;
  width: 100%;
}

.step_boxes {
  margin-top: 30px;
  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;
  gap: 34px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .step_boxes {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}

.step_box {
  text-align: center;
  padding-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .step_box {
    width: 320px;
    padding-bottom: 8px;
    z-index: 1;
  }
}

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

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

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

@media screen and (min-width: 900px) {
  .step_box-text {
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .step_box-text {
    font-size: 16px;
  }
}

.step_box-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 8px 13px;
  background-color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: auto;
}

.step_box-link-icon {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .step_box-link-icon {
    width: 24px;
    height: 24px;
  }
}
.step_box-link-icon img {
  display: block;
  width: 100%;
}

.step_box-link-text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .step_box-link-text {
    font-size: 16px;
  }
}

.step_button {
  padding-bottom: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .step_button {
    margin-top: 40px;
    padding-bottom: 0;
  }
}

.prizes {
  margin-top: 16px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes {
    margin-top: 127px;
  }
}

.prizes_inner {
  width: 100%;
  padding-top: 19px;
  padding-bottom: 34px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .prizes_inner {
    padding-inline: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) {
  .prizes_inner {
    padding-top: 28px;
    padding-bottom: 53px;
    padding-inline: 20px;
    max-width: 952px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes_inner {
    max-width: 1024px;
    padding-inline: 56px;
  }
}
.prizes_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/prizes_decoration.png) no-repeat center center/cover;
  width: 238px;
  height: 83px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .prizes_inner::before {
    background: url(../img/prizes_decoration-pc.png) no-repeat center center/cover;
    width: 366px;
    height: 149px;
  }
}
.prizes_inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: calc(100% - 83px);
  background-color: #ffffff;
  border-radius: 24px;
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .prizes_inner::after {
    max-width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .prizes_inner::after {
    min-width: 840px;
    max-width: 1024px;
    height: calc(100% - 148.967px);
  }
}

.prizes_decoration-left {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes_decoration-left {
    display: block;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
  }
}

.prizes_decoration-right {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes_decoration-right {
    display: block;
    position: absolute;
    top: 30px;
    right: 0;
    width: 315px;
    height: 86px;
  }
}

.prizes_text {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .prizes_text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .prizes_text {
    margin-top: 40px;
    font-size: 16px;
  }
}

.prizes_cards {
  margin-top: 47px;
  margin-left: auto;
  margin-right: auto;
}

.prizes_card-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .prizes_card-2 {
    margin-top: 82px;
    gap: 30px;
  }
}

.prizes_card-3 {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 39px 15px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .prizes_card-3 {
    margin-top: 80px;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

.is-center {
  grid-column: 1/-1;
  justify-self: center;
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 900px) {
  .is-center {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
}

.prizes_card,
.prizes_card-big {
  position: relative;
}

.prizes_card-head,
.prizes_card-head-big {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 48px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .prizes_card-head,
  .prizes_card-head-big {
    top: -40px;
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width: 900px) {
  .prizes_card-head-big {
    top: -50px;
    width: 100px;
    height: 100px;
  }
}

.card-head {
  position: relative;
}
.card-head img {
  display: block;
  width: 100%;
}

.card-head-text-ja,
.card-head-text-ja-big {
  position: absolute;
  font-size: 7.68px;
  font-weight: 700;
  color: #ffffff;
  top: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .card-head-text-ja,
  .card-head-text-ja-big {
    font-size: 12.8px;
    top: 9px;
  }
}

@media screen and (min-width: 900px) {
  .card-head-text-ja-big {
    font-size: 16px;
    top: 12px;
  }
}

.card-head-text-no,
.card-head-text-no-big {
  font-family: "Josefin Sans";
  position: absolute;
  font-size: 23.04px;
  font-weight: 700;
  color: #ffffff;
  top: 13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .card-head-text-no,
  .card-head-text-no-big {
    font-size: 38.4px;
    top: 22px;
  }
}

@media screen and (min-width: 900px) {
  .card-head-text-no-big {
    font-size: 48px;
    top: 25px;
  }
}

.prizes_card_inner,
.prizes_card_inner-big {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes_card_inner,
  .prizes_card_inner-big {
    border-radius: 15px;
  }
}
.prizes_card_inner:hover,
.prizes_card_inner-big:hover {
  border: 2px solid #9ed0e0;
}

@media screen and (min-width: 900px) {
  .prizes_card_inner-big {
    border-radius: 25px;
  }
}

.prizes_card-img img {
  display: block;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.prizes_card-img img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media screen and (min-width: 900px) {
  .prizes_card-img-big {
    max-width: 440px;
  }
}
.prizes_card-img-big img {
  display: block;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.prizes_card-img-big img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.prizes_card-content,
.prizes_card-content-big {
  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-height: 56px;
  background-color: #f5f5f5;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes_card-content,
  .prizes_card-content-big {
    height: 80px;
  }
}

@media screen and (min-width: 900px) {
  .prizes_card-content-big {
    width: 100%;
    height: 120px;
  }
}

.prizes_card-content-text,
.prizes_card-content-text-big {
  text-align: center;
  color: #4a3636;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prizes_card-content-text,
  .prizes_card-content-text-big {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .prizes_card-content-text-big {
    font-size: 20px;
    padding-top: 3px;
  }
}

.prizes_card-content-zoom {
  position: absolute;
  right: 0;
  bottom: 0;
}

.zoom_decoration,
.zoom_decoration-big {
  position: relative;
  width: 36px;
  height: 36px;
}
@media screen and (min-width: 900px) {
  .zoom_decoration,
  .zoom_decoration-big {
    width: 64px;
    height: 64px;
  }
}

@media screen and (min-width: 900px) {
  .zoom_decoration-big {
    width: 100px;
    height: 100px;
  }
}

.zoom_decoration-triangular,
.zoom_decoration-triangular-big {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
@media screen and (min-width: 900px) {
  .zoom_decoration-triangular,
  .zoom_decoration-triangular-big {
    width: 64px;
    height: 64px;
  }
}
.zoom_decoration-triangular:hover path,
.zoom_decoration-triangular-big:hover path {
  fill: #9ed0e0;
}

@media screen and (min-width: 900px) {
  .zoom_decoration-triangular-big {
    width: 100px;
    height: 100px;
  }
}

.decoration-triangular {
  width: 100%;
  height: auto;
  display: block;
}

.zoom_decoration-icon,
.zoom_decoration-icon-big {
  position: absolute;
  top: 18px;
  left: 19px;
  width: 11.52px;
  height: 11.52px;
}
@media screen and (min-width: 900px) {
  .zoom_decoration-icon,
  .zoom_decoration-icon-big {
    top: 34.56px;
    left: 35.52px;
    width: 20.48px;
    height: 20.48px;
  }
}
.zoom_decoration-icon img,
.zoom_decoration-icon-big img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 900px) {
  .zoom_decoration-icon-big {
    top: 54px;
    left: 55.5px;
    width: 32px;
    height: 32px;
  }
}

.prizes_button {
  margin-top: 18px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes_button {
    margin-top: 40px;
  }
}

.prizes_bg {
  margin-top: -43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .prizes_bg {
    margin-top: 0;
  }
}
.prizes_bg img {
  display: block;
  width: 100%;
  min-width: 580px;
}

.prizes_modal {
  width: 336px;
  height: 480px;
  border: none;
  border-radius: 24px;
  background-color: #ffffff;
  overflow: hidden;
  padding: 0 0 56px 0;
}
@media screen and (min-width: 900px) {
  .prizes_modal {
    width: 480px;
    height: 650px;
    padding: 0 0 106px 0;
  }
}

.prizes_modal-img {
  width: 100%;
  height: 210px;
  display: block;
}
@media screen and (min-width: 900px) {
  .prizes_modal-img {
    height: 300px;
  }
}
.prizes_modal-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.prizes_modal-content {
  margin-top: 39px;
  padding-inline: 20px;
  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) {
  .prizes_modal-content {
    margin-top: 32px;
    padding-inline: 40px;
  }
}

.prizes_modal-content-head {
  color: #4a3636;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes_modal-content-head {
    font-size: 20px;
  }
}

.prizes_modal-content-main {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes_modal-content-main {
    font-size: 16px;
  }
}

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

.spots {
  position: relative;
  background-color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .spots {
    padding-left: max(20px, 50% - 512px);
  }
}

.spots_decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.spots_decoration {
  position: relative;
  width: 100%;
  height: 100%;
}

.spots_decoration_wave-top {
  position: absolute;
  left: 0;
  top: -46px;
  background-image: url(../img/spots_wave-top.png);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 46px;
}
@media screen and (min-width: 900px) {
  .spots_decoration_wave-top {
    background-image: url(../img/spots_wave-top-pc.png);
    height: 120px;
    top: -120px;
  }
}

.spots_decoration_wave-bottom {
  position: absolute;
  left: 0;
  bottom: -45px;
  background-image: url(../img/spots_wave-bottom.png);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 46px;
}
@media screen and (min-width: 900px) {
  .spots_decoration_wave-bottom {
    background-image: url(../img/spots_wave-bottom-pc.png);
    height: 120px;
    bottom: -119px;
  }
}

.spots_decoration_footprints {
  display: none;
  position: absolute;
}
@media screen and (min-width: 900px) {
  .spots_decoration_footprints {
    display: block;
    bottom: 0;
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .spots_decoration_footprints {
    left: calc(50% - 720px);
    width: 100px;
  }
}

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

.spots_head {
  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;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .spots_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    letter-spacing: 10px;
    gap: 15px;
  }
}

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

.spots_head-text {
  font-size: 28px;
  font-family: "Kiwi Maru";
  color: #ffffff;
  font-weight: 500;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .spots_head-text {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 40px;
  }
}

.spots_slider {
  width: 100%;
}

@media screen and (min-width: 900px) {
  .spots_swiper-slide {
    max-width: 344px;
    max-height: 542px;
  }
}

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

.spots_card-img {
  height: 180px;
}
@media screen and (min-width: 900px) {
  .spots_card-img {
    height: 240px;
  }
}
.spots_card-img img {
  display: block;
  width: 100%;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  .spots_card-img img {
    border-radius: 24px 24px 0 0;
  }
}

.spots_card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  padding-top: 18px;
  padding-inline: 24px;
  background-color: #ffffff;
  border-radius: 0 0 12px 12px;
  min-width: 240px;
  min-height: 222px;
}
@media screen and (min-width: 900px) {
  .spots_card-content {
    gap: 25px;
    height: 302px;
    border-radius: 0 0 24px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .spots_card-content {
    padding-top: 25px;
    padding-inline: 32px;
  }
}

.spots_card-content-head {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .spots_card-content-head {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .spots_card-content-head {
    font-size: 20px;
  }
}

@media screen and (min-width: 900px) {
  .spots_card-content-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots_card-content-text {
    font-size: 16px;
  }
}

.swiper-button-prev {
  display: none;
}
@media screen and (min-width: 900px) {
  .swiper-button-prev {
    background: url(../img/spots_slider-prev.png) no-repeat center center/contain;
    display: block;
    width: 80px;
    height: 80px;
    top: 510px;
    left: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-button-prev {
    left: 284px;
  }
}
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next {
  display: none;
}
@media screen and (min-width: 900px) {
  .swiper-button-next {
    background: url(../img/spots_slider-next.png) no-repeat center center/contain;
    display: block;
    width: 80px;
    height: 80px;
    top: 510px;
    right: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-button-next {
    right: 284px;
  }
}
.swiper-button-next::after {
  display: none;
}

.spots_inner {
  padding-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .spots_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 81px;
    margin-top: 64px;
    margin-left: 0;
    margin-right: 0;
    padding-inline: 0;
    padding-bottom: 4px;
  }
}

.spots_english {
  margin-left: auto;
  margin-right: auto;
  width: 255px;
}
@media screen and (min-width: 900px) {
  .spots_english {
    width: 495px;
  }
}
@media screen and (min-width: 1200px) {
  .spots_english {
    margin-left: 0;
    margin-right: 0;
  }
}
.spots_english img {
  display: block;
  width: 100%;
}

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

.spots_text {
  text-align: center;
  font-size: 11.444px;
  color: #ffffff;
}
@media screen and (min-width: 900px) {
  .spots_text {
    font-size: 16px;
  }
}

.spots_button {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots_button {
    text-align: right;
  }
}

.qa {
  margin-top: 46px;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .qa {
    margin-top: 120px;
    padding-top: 120px;
    padding-bottom: 0;
  }
}

.qa_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) {
  .qa_boxes {
    gap: 22px;
    margin-top: 40px;
  }
}

.qa_bax {
  border-radius: 12px;
  border: 2px solid #4a3636;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .qa_bax {
    border-radius: 18px;
  }
}

.qa_bax.is-open .qa_box-icon::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.qa_box-q {
  background-color: #ffffff;
  padding: 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .qa_box-q {
    padding-top: 21px;
    padding-bottom: 21.5px;
    padding-inline: 22px;
    gap: 16px;
  }
}

.qa_box-q-head {
  font-family: "Josefin Sans";
  color: #9ed0e0;
  font-size: 24px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .qa_box-q-head {
    font-size: 32px;
  }
}

.qa_box-q-text {
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .qa_box-q-text {
    font-size: 20px;
  }
}

.qa_box-icon {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #9ed0e0;
  margin-left: auto;
  -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;
}
@media screen and (min-width: 900px) {
  .qa_box-icon {
    width: 48px;
    height: 48px;
  }
}
.qa_box-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 10px;
  height: 2px;
  background-color: #ffffff;
}
@media screen and (min-width: 900px) {
  .qa_box-icon::before {
    width: 18px;
  }
}
.qa_box-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  content: "";
  width: 10px;
  height: 2px;
  background-color: #ffffff;
}
@media screen and (min-width: 900px) {
  .qa_box-icon::after {
    width: 18px;
  }
}

.qa_box-a {
  display: none;
  background-color: #f5f5f5;
  padding-top: 17px;
  padding-bottom: 14px;
  padding-inline: 14px;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .qa_box-a {
    padding-block: 23px;
    padding-inline: 22px;
  }
}

.qa_box-a-head {
  font-family: "Josefin Sans";
  color: #9ed0e0;
  font-size: 24px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .qa_box-a-head {
    font-size: 32px;
  }
}

.qa_box-a-text {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .qa_box-a-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .information {
    padding-top: 120px;
  }
}

.information_contents {
  border: 8px solid #ffffff;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-inline: 15.5px;
}
@media screen and (min-width: 900px) {
  .information_contents {
    padding-top: 30px;
    padding-bottom: 32px;
    padding-inline: 48px;
  }
}

.information_lists {
  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: 12px;
}
@media screen and (min-width: 900px) {
  .information_lists {
    margin-top: 40px;
  }
}

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

.last-info {
  border-bottom: none;
}

.information_info-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 16px;
}
@media screen and (min-width: 900px) {
  .information_info-title {
    padding-left: 32px;
    width: 240px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.information_info-title::before {
  content: "";
  position: absolute;
  display: block;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .information_info-title::before {
    top: 9px;
    left: 16px;
  }
}

@media screen and (min-width: 900px) {
  .last-info-title {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}

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

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

.text_list {
  padding-left: 18px;
  position: relative;
  line-height: 19px;
}
@media screen and (min-width: 900px) {
  .text_list {
    padding-left: 25px;
    font-size: 16px;
    line-height: 26px;
  }
}
.text_list::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 4px;
}

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

.form {
  background-color: #ffffff;
  padding-top: 41px;
  padding-bottom: 43px;
}
@media screen and (min-width: 900px) {
  .form {
    padding-block: 120px;
  }
}

@media screen and (min-width: 900px) {
  .form_inner {
    max-width: 928px;
  }
}

.form_text {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .form_text {
    margin-top: 33px;
    font-size: 16px;
  }
}

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

.form_contact-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

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

@media screen and (min-width: 900px) {
  .field-mail {
    padding-block: 15px;
  }
}

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

.form_contact-field-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .form_contact-field-head {
    width: 180px;
  }
}

.form_contact-field-label {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .form_contact-field-label {
    font-size: 16px;
  }
}

.contact_form-field-tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  color: #ffffff;
  background-color: #ce2073;
}

@media screen and (min-width: 900px) {
  .form_contact-field-main {
    width: calc(100% - 180px - 40px);
  }
}

.form-text,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: #f5f5f5;
  border: none;
}

.form-text:focus,
.form-textarea:focus {
  outline: none;
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
}
.form-text::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}
.form-text::-moz-placeholder, .form-textarea::-moz-placeholder {
  font-size: 14px;
  color: #cccccc;
}
.form-text:-ms-input-placeholder, .form-textarea:-ms-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}
.form-text::-ms-input-placeholder, .form-textarea::-ms-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}
.form-text::placeholder,
.form-textarea::placeholder {
  font-size: 14px;
  color: #cccccc;
}
@media screen and (min-width: 900px) {
  .form-text::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-text::-moz-placeholder, .form-textarea::-moz-placeholder {
    font-size: 16px;
  }
  .form-text:-ms-input-placeholder, .form-textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  .form-text::-ms-input-placeholder, .form-textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-text::placeholder,
  .form-textarea::placeholder {
    font-size: 16px;
  }
}

.form-text {
  height: 56px;
}

.form-select {
  height: 56px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/form_contact-select.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat;
  background-position: right 16px center, right 0 center;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:focus {
  outline: none;
  border: 1px solid #9ed0e0;
}

.form-select.is-error {
  background-image: url(../img/form_contact-select.svg), linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
}

.form-textarea {
  height: 160px;
}

.form_contact-field-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.form-radio-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio-input:checked + .form-radio-text {
  font-weight: 700;
}
.form-radio-input:checked + .form-radio-text::after {
  opacity: 1;
}
.form-radio-input:focus + .form-radio-text::before {
  border: 1px solid #9ed0e0;
}

.form-radio-text {
  font-size: 14px;
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width: 900px) {
  .form-radio-text {
    font-size: 16px;
  }
}
.form-radio-text::before, .form-radio-text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio-text::before {
  width: 24px;
  height: 24px;
  left: 0;
  background-color: #f5f5f5;
}
.form-radio-text::after {
  width: 12px;
  height: 12px;
  left: 6px;
  background-color: #9ed0e0;
  opacity: 0;
}

.form_contact-check {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .form_contact-check {
    margin-top: 41px;
  }
}

.form-checkbox {
  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;
}

.form-checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.form-checkbox-input:checked + .form-checkbox-text::after {
  opacity: 1;
}

.form-checkbox-text {
  font-size: 14px;
  padding-left: 36px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .form-checkbox-text {
    font-size: 16px;
  }
}
.form-checkbox-text::before, .form-checkbox-text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox-text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  left: 0;
  background-color: #f5f5f5;
}
.form-checkbox-text::after {
  width: 14px;
  height: 9px;
  left: 5px;
  background: url(../img/form_check-icon.svg) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox-text a {
  text-decoration-line: underline;
  text-decoration-style: solid;
}

.form_contact-submit {
  margin-top: 27px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .form_contact-submit {
    margin-top: 38px;
    margin-left: auto;
    margin-right: auto;
    width: 240px;
    height: 44px;
  }
}

@media screen and (min-width: 900px) {
  .submit_button {
    font-size: 16px;
    padding: 6px 37px 5px;
  }
}

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

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

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

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

.footer_heading {
  text-align: center;
  font-family: "Josefin Sans";
  font-size: 20px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .footer_heading {
    font-size: 24px;
  }
}

.footer_sns {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.footer_sns-youtube,
.footer_sns-instagram,
.footer_sns-twitter {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 900px) {
  .footer_sns-youtube,
  .footer_sns-instagram,
  .footer_sns-twitter {
    width: 40px;
    height: 40px;
  }
}
.footer_sns-youtube img,
.footer_sns-instagram img,
.footer_sns-twitter img {
  display: block;
  width: 100%;
}

.footer_english {
  margin-top: 15px;
  width: 328px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .footer_english {
    margin-top: 40px;
    width: 755px;
  }
}
.footer_english img {
  display: block;
  width: 100%;
}

.footer_info {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
  margin-top: -2px;
}
@media screen and (min-width: 900px) {
  .footer_info {
    -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;
    gap: 62px;
  }
}

@media screen and (min-width: 900px) {
  .footer_info-map {
    width: 50%;
  }
}
.footer_info-map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
}
@media screen and (min-width: 900px) {
  .footer_info-map iframe {
    aspect-ratio: 512/400;
  }
}

.footer-info-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .footer-info-company {
    margin-right: 0;
    padding-bottom: 0;
    gap: 27px;
  }
}

.footer_info-company-logo {
  width: 153px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .footer_info-company-logo {
    width: 183px;
    margin-left: 0;
  }
}
.footer_info-company-logo img {
  display: block;
  width: 100%;
}

.footer_info-company-items {
  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_info-company-items {
    gap: 12px;
  }
}

.footer_info-company-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer_info-company-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
}
@media screen and (min-width: 900px) {
  .footer_info-company-item-head {
    width: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .footer_info-company-item-head {
    width: 120px;
  }
}

.footer_info-company-item-head-point {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
}

.footer_info-company-item-head-text {
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .footer_info-company-item-head-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .footer_info-company-item-head-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .footer_info-company-item-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .footer_info-company-item-text {
    font-size: 16px;
  }
}

.footer_pagetop {
  padding-block: 25px;
  display: block;
  width: 75px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 51;
}
.footer_pagetop a {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .footer_pagetop {
    position: fixed;
    width: 100px;
    bottom: 40px;
    right: 40px;
  }
}
.footer_pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.footer_bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
  padding-bottom: 24px;
  background-color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .footer_bottom {
    margin-top: 237px;
    padding-bottom: 32px;
  }
}

.footer_bottom-wave {
  position: absolute;
  left: 0;
  top: -46px;
  background-image: url(../img/spots_wave-top.png);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 46px;
}
@media screen and (min-width: 900px) {
  .footer_bottom-wave {
    background-image: url(../img/spots_wave-top-pc.png);
    height: 120px;
    top: -119px;
  }
}

.footer_copyright {
  display: inline-block;
  color: #ffffff;
  font-size: 10px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer_copyright {
    font-size: 14px;
  }
}