@charset "UTF-8";
.hidden-sp {
  display: none;
}

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
  .hidden-sp {
    display: block;
  }
  .hidden-pc {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif, "Courgette", cursive, "Kiwi Maru", serif, "Josefin Sans", sans-serif;
  color: #4a3636;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  background: #e9f6f8;
}
@media screen and (min-width: 600px) {
  body {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  body {
    font-size: 16px;
  }
}
body.is-fixed {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  body.is-fixed {
    overflow: auto;
  }
}

.wrapper {
  overflow: hidden;
}

.inner {
  padding-inline: 20px;
}

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

.header {
  height: 64px;
  padding-block: 16px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 1200px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 5;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.header__logo a img {
  width: 210px;
  display: block;
}
@media screen and (min-width: 1200px) {
  .header__logo a img {
    width: 186px;
    margin-left: 3px;
  }
}

.drawer-icon img {
  width: 32px;
  display: block;
}
@media screen and (min-width: 1200px) {
  .drawer-icon img {
    display: none;
  }
}

.header__nav {
  background-color: #fff;
  width: 100%;
  height: calc(100% - 64px);
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 1;
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    position: static;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding-top: 64px;
}
@media screen and (min-width: 1200px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 0;
    gap: 12px;
  }
}

.header__link {
  font-size: 14px;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  -webkit-transition: color 0.3s, text-decoration-color 0.3s;
  transition: color 0.3s, text-decoration-color 0.3s;
}
.header__link:hover {
  color: #67b0c7;
  text-decoration-color: #67b0c7;
}
@media screen and (min-width: 1200px) {
  .header__link {
    font-size: 12px;
  }
}

#menu-btn {
  width: 32px;
  height: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; /* スムーズな遷移のためのトランジション */
}

#menu-btn.on {
  width: 24.255px;
  height: 22.627px;
}

.header__button {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .header__button {
    margin-left: -13px;
  }
}
@media screen and (min-width: 1200px) {
  .header__button .button {
    padding-top: 4px;
    padding-right: 19px;
    padding-bottom: 6px;
    padding-left: 23px;
    font-size: 14px;
    border-width: 2px;
    margin-right: 5px;
    margin-top: 16px;
    margin-left: 6px;
    margin-bottom: 14px;
  }
}
.header__button .button:hover {
  background-color: #ffee56;
}

.button {
  display: inline-block;
  text-align: center;
  padding: 4px 22px 6px 22px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  font-size: 16px;
  font-weight: 700;
  -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;
}
.button:hover {
  background-color: #ffee56;
}

.header__open {
  margin-top: 3px;
}
@media screen and (min-width: 1200px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: relative;
  width: 32px;
  height: 27px;
}

.drawer-icon::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  height: 64px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.drawer-icon__bar {
  position: absolute;
  width: 32px;
  height: 3px;
  left: 0;
  background-color: #4a3636;
  border-radius: 6px;
  -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 .drawer-icon__dot {
  position: absolute;
  top: 0;
  right: 0;
  left: 28px;
  width: 4px;
  height: 3px;
  background-color: #4a3636;
  border-radius: 6px;
}

.drawer-icon__bar:nth-of-type(1) {
  width: 25.6px;
  top: 0;
  left: 0;
}

.drawer-icon__bar:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.drawer-icon__bar:nth-of-type(3) {
  bottom: 0;
}

.drawer-icon.is-checked .drawer-icon__bar .drawer-icon__dot {
  display: none;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  width: 100%;
  -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) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header__open {
  margin-left: auto;
  line-height: 0;
}

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

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

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

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

.fv-first-view__lead {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .fv-first-view__lead {
    margin-top: 24px;
    width: 520px;
    margin-inline: auto;
    max-width: 100%;
  }
}

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

.fv-deco__spartphone {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
  width: 200px;
  max-width: 100%;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .fv-deco__spartphone {
    width: 250px;
    bottom: 15px;
  }
}

.fv-smartphone__wrap {
  position: absolute;
  top: 49%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  text-align: center;
  background-color: #fff;
  border-radius: 12.8px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__wrap {
    width: calc(100% - 50px);
    border-radius: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .fv-smartphone__wrap {
    top: 48%;
  }
}

.fv-smartphone__head {
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  font-size: 12.8px;
  font-weight: 700;
  color: #fff;
  padding: 6.4px 9.6px;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__head {
    font-size: 16px;
    padding: 8px 12px;
  }
}

.fv-smartphone__content {
  padding-top: 12.8px;
  padding-bottom: 15.2px;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__content {
    padding-top: 16px;
    padding-bottom: 20px;
  }
}

.fv-smartphone__subhead {
  display: inline-block;
  padding-bottom: 1px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__subhead {
    font-size: 14px;
    border-bottom: 3px solid #ce2073;
  }
}

.fv-smartphone__date {
  font-weight: 700;
  margin-top: 3.2px;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__date {
    font-size: 16px;
    margin-top: 4px;
  }
}

.fv-smartphone__button {
  margin-top: 12.8px;
  padding-bottom: 4px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__button {
    margin-top: 16px;
  }
}
.fv-smartphone__button .button {
  font-size: 14px;
  padding: 2px 22px 4px 22px;
  margin-left: 0;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__button .button {
    padding-top: 4px;
    padding-right: 22px;
    padding-bottom: 6px;
    padding-left: 22px;
    font-size: 16px;
    border-width: 2px;
  }
}
@media screen and (min-width: 1200px) {
  .fv-smartphone__button .button {
    padding-top: 4px;
    padding-right: 22px;
    padding-bottom: 6px;
    padding-left: 22px;
    font-size: 16px;
    border-width: 2px;
  }
}

.fv-deco__entext {
  position: absolute;
  width: 142px;
  top: 7px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .fv-deco__entext {
    top: 0;
    right: calc(50% + 143px);
    left: auto;
    width: 244px;
  }
}

.fv-deco__jatext {
  position: absolute;
  max-width: 100%;
  width: 110px;
  top: 0;
  right: 25px;
}
@media screen and (min-width: 900px) {
  .fv-deco__jatext {
    top: 17px;
    width: 180px;
    left: calc(50% + 117px);
  }
}

.fv-deco__cafe {
  position: absolute;
  width: 90px;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .fv-deco__cafe {
    width: 202px;
    bottom: 3px;
  }
}
@media screen and (min-width: 1200px) {
  .fv-deco__cafe {
    width: 211px;
  }
}

.fv-deco-cat__wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}

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

.fv-deco__cat-brown {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 98px;
}
@media screen and (min-width: 900px) {
  .fv-deco__cat-brown {
    width: 233px;
    right: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .fv-deco__cat-brown {
    bottom: -41px;
  }
}

.fv-deco__cat {
  width: 107px;
  height: 127px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .fv-deco__cat {
    width: 233px;
    height: 294px;
  }
}
@media screen and (min-width: 1200px) {
  .fv-deco__cat {
    height: 251px;
  }
}

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

.about__rera {
  position: absolute;
}

.about__naname {
  position: absolute;
  width: 250px;
  border-radius: 24px;
  overflow: hidden;
  top: -20px;
  right: calc(50% + 527px);
}

.about__lean {
  width: 200px;
  top: 395px;
  right: calc(50% + 128px);
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .about__lean {
    width: 480px;
    border-radius: 40px;
    top: 74px;
    right: calc(50% + 360px);
  }
}
@media screen and (min-width: 1200px) {
  .about__lean {
    right: calc(50% + 609px);
  }
}

.about__sakamiti {
  width: 138px;
  left: 1px;
  bottom: 62px;
}
@media screen and (min-width: 900px) {
  .about__sakamiti {
    width: 427px;
    bottom: 149px;
    left: auto;
    right: calc(50% + 150px);
  }
}
@media screen and (min-width: 1200px) {
  .about__sakamiti {
    right: calc(50% + 432px);
    bottom: 148px;
  }
}

.about__pow {
  width: 54px;
  top: -10px;
  left: calc(50% + 130px);
}
@media screen and (min-width: 1200px) {
  .about__pow {
    width: 100px;
    top: -80px;
    left: calc(50% + 490px);
  }
}

.about__hune {
  width: 200px;
  top: 273px;
  left: calc(50% + 127px);
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .about__hune {
    top: 73px;
    width: 480px;
    border-radius: 40px;
    left: calc(50% + 360px);
  }
}
@media screen and (min-width: 1200px) {
  .about__hune {
    left: calc(50% + 560px);
  }
}

.about__nami {
  width: 874px;
  bottom: 633px;
  left: calc(50% + 448px);
}

.about__good {
  bottom: 218px;
  width: 48px;
  left: calc(50% + 118px);
}
@media screen and (min-width: 900px) {
  .about__good {
    top: 601px;
    width: 101px;
    height: 101px;
    left: calc(50% + 300px);
  }
}
@media screen and (min-width: 1200px) {
  .about__good {
    left: calc(50% + 505px);
  }
}

.about__cash {
  width: 133px;
  bottom: 157px;
  left: calc(50% - 3px);
}
@media screen and (min-width: 900px) {
  .about__cash {
    bottom: 290px;
    left: calc(50% + 120px);
    width: 308px;
  }
}
@media screen and (min-width: 1200px) {
  .about__cash {
    bottom: 378px;
    left: calc(50% + 374px);
  }
}

.about__inner {
  max-width: 375px;
  padding-left: 20px;
  padding-right: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 640px;
    padding-inline: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 900px;
  }
}

.about__head {
  padding-top: 40px;
  padding-bottom: 39px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #fff;
  border-radius: 24px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .about__head {
    border-radius: 40px;
  }
}
.about__head::after {
  position: absolute;
  top: 100%;
  width: 100px;
  height: 36px;
  content: "";
  left: 50%;
  background-color: #cce1e4;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 900px) {
  .about__head::after {
    width: 140px;
    height: 50px;
  }
}

.about-image__left {
  position: absolute;
  top: 37.87px;
  right: calc(50% + 50.5px);
  width: 80px;
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
@media screen and (min-width: 900px) {
  .about-image__left {
    top: 41px;
    width: 134px;
    right: calc(50% + 192px);
  }
}
@media screen and (min-width: 1200px) {
  .about-image__left {
    top: 40px;
    width: 145px;
    right: calc(50% + 192px);
  }
}

.about-image__right {
  position: absolute;
  width: 80px;
  top: 30px;
  left: calc(50% + 60px);
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
@media screen and (min-width: 900px) {
  .about-image__right {
    width: 134px;
    top: 46px;
    left: calc(50% + 192px);
  }
}
@media screen and (min-width: 1200px) {
  .about-image__right {
    width: 150px;
    top: 43px;
    left: calc(50% + 190px);
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}

.heading {
  padding-top: 43.3px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .heading {
    padding-top: 56px;
  }
}
.heading::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 37.3px;
  height: 37.3px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .heading::before {
    width: 48px;
    height: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .heading::before {
    top: 0;
  }
}

.heading--campain::before {
  background-image: url(../img/about__icon.svg);
}

.head__en {
  font-size: 16px;
  line-height: 1.25;
  font-family: "Courgette", cursive;
}
@media screen and (min-width: 900px) {
  .head__en {
    font-size: 20px;
  }
}

.head__ja {
  display: inline-block;
  padding-top: 6px;
  padding-bottom: 6px;
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  border-bottom: 6px solid #ffee56;
  font-weight: 500;
  line-height: 1.25;
  font-family: "Kiwi Maru", serif;
}
@media screen and (min-width: 900px) {
  .head__ja {
    margin-top: 8px;
    padding-bottom: 8px;
    font-size: 32px;
    border-bottom: 8px solid #ffee56;
  }
}
@media screen and (min-width: 1200px) {
  .head__ja {
    margin-top: 2px;
  }
}

@media (min-width: 900px) {
  .about__subhead.hidden-sp {
    display: block;
  }
}
.about__subhead {
  font-weight: 700;
  font-size: 14px;
  margin-block: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about__subhead {
    font-size: 16px;
    margin-block: 32px;
  }
}

.about-head-text__wrap {
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 900px) {
  .about-head-text__wrap {
    margin-bottom: 32px;
  }
}

.about-head__text + .about-head__text {
  margin-top: 1.5em;
}
@media screen and (min-width: 900px) {
  .about-head__text + .about-head__text {
    margin-top: 1.7em;
  }
}

.link-text {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  cursor: pointer;
}
.link-text:hover {
  color: #9ed0e0;
}

.font-weight {
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .font-weight {
    font-size: 16px;
    font-family: "Noto Sans JP";
    font-style: normal;
  }
}

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

.about-head__button {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about-head__button .button {
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 10px;
    padding-inline: 37px;
    border-width: 3px;
  }
}

.about__bottom {
  margin-top: 161px;
}
@media screen and (min-width: 900px) {
  .about__bottom {
    margin-top: 154px;
  }
}

.about__deco-en {
  position: relative;
  z-index: 2;
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 355px;
  max-width: 100%;
  top: -21px;
}
@media screen and (min-width: 900px) {
  .about__deco-en {
    width: 770px;
  }
}
@media screen and (min-width: 1200px) {
  .about__deco-en {
    width: 897px;
    top: 15px;
  }
}
.about__deco-en img {
  width: 100%;
}

.about__slider {
  margin-top: -23px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .about__slider {
    margin-top: 11px;
  }
}
.about__slider .swiper-container {
  margin-top: -5px;
  width: 100%;
}
/* スライドの動き等速 */
.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.how-to {
  margin-top: 65px;
}
@media screen and (min-width: 900px) {
  .how-to {
    margin-top: 120px;
  }
}

.how-to__inner {
  position: relative;
  max-width: 375px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .how-to__inner {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__inner {
    max-width: 1512px;
    padding-inline: 30px;
  }
}

.how-to__deco {
  position: absolute;
}

.how-to__map {
  width: 149px;
  top: 0;
  right: calc(50% + 39px);
}
@media screen and (min-width: 900px) {
  .how-to__map {
    top: -60px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__map {
    width: 460px;
    right: calc(50% + 260px);
    height: 689px;
  }
  .how-to__map img {
    width: 100%;
  }
}

.how-to__cat {
  position: absolute;
  top: 0;
  left: calc(50% + 58px);
}
@media screen and (min-width: 900px) {
  .how-to__cat {
    top: -26px;
    left: calc(50% + 200px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to__cat {
    left: calc(50% + 287px);
  }
}

.cat-rela {
  position: relative;
  width: 160px;
  height: 85px;
}
@media screen and (min-width: 1200px) {
  .cat-rela {
    width: 364px;
    height: 191.08px;
  }
}

.how-to__cat-br {
  position: absolute;
  width: 105px;
  top: 0;
}
@media screen and (min-width: 1200px) {
  .how-to__cat-br {
    width: 238px;
  }
  .how-to__cat-br img {
    width: 100%;
  }
}

.how-to__cat-bl {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 94px;
}
@media screen and (min-width: 1200px) {
  .how-to__cat-bl {
    width: 214px;
  }
  .how-to__cat-bl img {
    width: 100%;
  }
}

.how-to__pow-top {
  width: 55px;
  top: 74px;
  right: 20px;
}
@media screen and (min-width: 1200px) {
  .how-to__pow-top {
    top: 148px;
    width: 100px;
    right: 36px;
  }
}

.how-to__pow-bottom1 {
  width: 55px;
  top: 550px;
  left: 20px;
}
@media screen and (min-width: 1200px) {
  .how-to__pow-bottom1 {
    width: 100px;
    top: 580px;
    left: 35px;
  }
}

.how-to__pow-bottom2 {
  width: 55px;
  top: 880px;
  right: 20px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.how-to__heading::before {
  content: "";
  background-image: url(../img/how-to__camera.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.how-to__step-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: 50px;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .how-to__step-boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 7px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__step-boxes {
    gap: 32px;
    margin-top: 40px;
  }
}

.how-to__step-box {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to__step-box {
    max-width: 294px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__step-box {
    max-width: 320px;
  }
}
@media screen and (min-width: 900px) {
  .how-to__step-box:nth-of-type(1)::after {
    top: 150px;
    right: -25px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__step-box:nth-of-type(1)::after {
    top: 205px;
    left: 234px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__step-box:nth-of-type(1) {
    margin-left: -7px;
  }
}
.how-to__step-box:nth-of-type(2)::after {
  top: 100%;
}
@media screen and (min-width: 1200px) {
  .how-to__step-box:nth-of-type(2)::after {
    top: 135px;
    right: -61px;
  }
}
@media screen and (min-width: 900px) {
  .how-to__step-box:nth-of-type(2) {
    margin-top: 50px;
    right: -21px;
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__step-box:nth-of-type(2) {
    margin-top: 69px;
  }
}
.how-to__step-box:nth-of-type(3) {
  margin-top: -16px;
}
.how-to__step-box:nth-of-type(3)::after {
  display: none;
}
@media screen and (min-width: 900px) {
  .how-to__step-box:nth-of-type(3) {
    position: relative;
    left: 29px;
    top: 15px;
  }
}
@media screen and (min-width: 900px) {
  .how-to__step-box:nth-of-type(3) .how-to__text-box {
    margin-top: 26px;
    margin-right: 2px;
  }
}
.how-to__step-box::after {
  position: absolute;
  content: "";
  background-image: url(../img/how-to__redline.png);
  width: 7px;
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 3;
  background-color: transparent;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(100% + 16px);
}
@media screen and (min-width: 900px) {
  .how-to__step-box::after {
    background-image: url(../img/how-to__red-line__pc.png);
    width: 70px;
    height: 16px;
    -webkit-transform: initial;
            transform: initial;
    left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__step-box::after {
    width: 114px;
    height: 24px;
  }
}

.how-to__img {
  margin: 0 auto;
}
.how-to__img img {
  width: 196px;
}
@media screen and (min-width: 900px) {
  .how-to__img img {
    width: 280px;
  }
}

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

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

.how-to__text {
  margin-block: 16px;
}
@media screen and (min-width: 900px) {
  .how-to__text:nth-of-type(3) {
    margin-top: 11px;
  }
}

.insta__box {
  background-color: #fff;
  display: inline-block;
  padding-left: 39px;
  padding-block: 7px;
  padding-right: 11px;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .insta__box {
    padding-left: 39px;
  }
}
.insta__box::before {
  position: absolute;
  content: "";
  background-image: url(../img/how-to__insta.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .insta__box::before {
    top: 52%;
    left: 9px;
  }
}
.insta__box:hover {
  border-color: #9ed0e0;
}

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

.how-to__button {
  text-align: center;
}
.how-to__button .button {
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.how-to__button .button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 900px) {
  .how-to__button .button {
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 10px;
    padding-inline: 37px;
    border-width: 3px;
    margin-top: 34px;
  }
}

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

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

.cam__content {
  padding-top: 20px;
  padding-inline: 20px;
  padding-bottom: 35px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .cam__content {
    padding-bottom: 49px;
  }
}
@media screen and (min-width: 1200px) {
  .cam__content {
    padding-inline: 56px;
  }
}
.cam__content::before {
  content: "";
  background-image: url(../img/cam__top.png);
  top: 6px;
  left: 50%;
  width: 238px;
  height: 83px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: transparent;
}
@media screen and (min-width: 900px) {
  .cam__content::before {
    background-image: url(../img/cam__top-pc.png);
    width: 365.624px;
    height: 148.967px;
  }
}
.cam__content::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 87px);
  border-radius: 24px;
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .cam__content::after {
    height: calc(100% - 148px);
  }
}

.cam__deco-left {
  position: absolute;
  top: 0;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
}
@media screen and (min-width: 900px) {
  .cam__deco-left {
    top: 30px;
  }
}

.cam__deco-right {
  position: absolute;
  top: 0;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 0;
}
@media screen and (min-width: 900px) {
  .cam__deco-right {
    top: 30px;
  }
}

.cam__heading {
  margin-top: 4px;
}
@media screen and (min-width: 900px) {
  .cam__heading {
    margin-top: 11px;
  }
}
.cam__heading::before {
  background-image: url(../img/cam__head.svg);
  top: 1px;
}

.cam__text {
  margin-top: 17px;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .cam__text {
    margin-top: 41px;
  }
}

.cam__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 38px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
}
@media screen and (min-width: 900px) {
  .cam__cards {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(6, 1fr);
    margin-top: 82px;
  }
}
@media screen and (min-width: 1200px) {
  .cam__cards {
    grid-column-gap: 32px;
  }
}

.cam-card {
  width: calc(50% - 7.5px);
  position: relative;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cam-card img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .cam-card:nth-child(1) {
    grid-area: 1/1/2/4;
    width: 100%;
  }
  .cam-card:nth-child(2) {
    grid-area: 1/4/2/7;
    width: 100%;
  }
  .cam-card:nth-child(3) {
    grid-area: 2/1/3/3;
    width: 100%;
    margin-top: 40px;
  }
  .cam-card:nth-child(4) {
    grid-area: 2/3/3/5;
    width: 100%;
    margin-top: 40px;
  }
  .cam-card:nth-child(5) {
    grid-area: 2/5/3/7;
    width: 100%;
  }
}
@media screen and (min-width: 900px) and (min-width: 900px) {
  .cam-card:nth-child(5) {
    margin-top: 40px;
  }
}

.cam-card__number {
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}
@media screen and (min-width: 900px) {
  .cam-card__number.min-number {
    width: 80px;
    top: -38px;
  }
}
@media screen and (min-width: 900px) {
  .cam-card__number {
    width: 100px;
    top: -52px;
  }
}

.cam-card__inner {
  text-align: center;
  position: relative;
  height: auto;
}

.cam-card__img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}
.cam-card__img img {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
@media screen and (min-width: 900px) {
  .cam-card__img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}

.cam-card__img-textbox {
  background-color: #f5f5f5;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media screen and (min-width: 900px) {
  .cam-card__img-textbox {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

.cam-card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 9px;
  font-weight: 700;
  min-height: 56px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .cam-card__heading.card-min {
    min-height: 81px;
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .cam-card__heading {
    min-height: 120px;
    font-size: 20px;
  }
}

.cam-card__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  border-radius: 8px;
  z-index: 1;
  background: transparent;
}
@media screen and (min-width: 900px) {
  .cam-card__button {
    border-radius: 24px;
  }
}
.cam-card__button:hover {
  border: 4px solid #9ed0e0;
}
.cam-card__button.large-icon .cam-card__icon {
  bottom: -2px;
}
@media screen and (min-width: 900px) {
  .cam-card__button.large-icon .cam-card__icon {
    bottom: -8px;
  }
}
.cam-card__button.large-icon .cam-card__icon svg {
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 10px;
}
@media screen and (min-width: 900px) {
  .cam-card__button.large-icon .cam-card__icon svg {
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 15px;
  }
}
@media screen and (min-width: 900px) {
  .cam-card__button.min-icon .cam-card__icon {
    bottom: -8px;
  }
}
.cam-card__button.min-icon .cam-card__icon svg {
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 10px;
}
@media screen and (min-width: 900px) {
  .cam-card__button.min-icon .cam-card__icon svg {
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 15px;
  }
}

.cam-card__icon {
  position: absolute;
  bottom: -3px;
  right: 0;
}
.cam-card__icon img {
  width: 36px;
  height: 36px;
}

.cam-card:hover .cam-card__icon svg .background {
  fill: #9ed0e0;
}

.cam__button {
  text-align: center;
  margin-top: 18px;
}
@media screen and (min-width: 1200px) {
  .cam__button .button {
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 10px;
    padding-inline: 37px;
    border-width: 3px;
    margin-top: 20px;
  }
}

.cam__background {
  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;
  margin-top: -45px;
}
@media screen and (min-width: 900px) {
  .cam__background {
    margin-top: -15px;
  }
}
.cam__background img {
  min-width: 580px;
  width: 100%;
}

.no_scroll {
  overflow: hidden;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.cam-modal {
  display: none;
  width: 336px;
  height: 480px;
  padding-inline: 20px;
  padding-bottom: 19px;
  background-color: #fff;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 20px;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .cam-modal {
    width: 480px;
    height: 650px;
    padding-inline: 40px;
    padding-bottom: 50px;
  }
}

.modal-img {
  width: calc(100% + 40px);
  margin-left: -20px;
}
@media screen and (min-width: 900px) {
  .modal-img {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}

.modal-head {
  margin-top: 39px;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .modal-head {
    margin-top: 32px;
    font-size: 20px;
  }
}

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

.spot {
  background-color: #67b0c7;
  padding-bottom: 22px;
  position: relative;
}
.spot::before {
  content: "";
  top: -45px;
  left: 0;
  background-image: url(../img/spot__nami-sp.png);
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 45.714px;
}
@media screen and (min-width: 900px) {
  .spot::before {
    background-image: url(../img/spot__wave-pc.png);
    height: 120px;
    top: -50px;
    width: 100%;
  }
}
.spot::after {
  content: "";
  bottom: -43px;
  left: 0;
  background-image: url(../img/spot__nami-sp-bottom.png);
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 45.714px;
}
@media screen and (min-width: 900px) {
  .spot::after {
    background-image: url(../img/spots__wave-bottom-pc.png);
    height: 120px;
    bottom: -100px;
  }
}
@media screen and (min-width: 900px) {
  .spot {
    padding-top: 120px;
    margin-top: -90px;
  }
}

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

.spot__deco {
  position: absolute;
}

.spot__pow {
  position: absolute;
  width: 100px;
  right: calc(50% + 620px);
  bottom: 20px;
  z-index: 3;
}

.spot__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .spot__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 900px) {
  .img-star {
    width: 56px;
    position: absolute;
    top: -50px;
    right: 0px;
  }
}
.img-star img {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 900px) {
  .img-star img {
    width: 56px;
    height: 56px;
  }
}

.spot-heading {
  font-weight: 500;
  font-size: 28px;
  font-family: "Kiwi Maru";
  color: #fff;
  margin-top: -5px;
  margin-bottom: 24px;
}
@media screen and (min-width: 900px) {
  .spot-heading {
    font-size: 40px;
    line-height: 1.25;
    margin-left: 8px;
    margin-top: -40px;
  }
}

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

.p-swiper__spot {
  width: 100%;
}
.p-spot__slide {
  height: auto;
  background-color: #fff;
  padding-bottom: 31px;
  border-radius: 10px;
  overflow: visible;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 900px) {
  .p-spot__slide {
    padding-bottom: 42px;
    border-radius: 20px;
  }
}

.swiper-card {
  height: 100%;
}
.spot-swiper__img {
  display: block;
  width: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .spot-swiper__img {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
  .spot-swiper__img img {
    height: 100%;
  }
}
.spot-swiper__textbox {
  padding-top: 1px;
  padding-inline: 24px;
}
@media screen and (min-width: 900px) {
  .spot-swiper__textbox {
    padding-inline: 32px;
  }
}

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

.spot-swiper__text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .spot-swiper__text {
    font-size: 16px;
    margin-top: 25px;
  }
}

.swiper-button-prev {
  display: none;
}
@media screen and (min-width: 900px) {
  .swiper-button-prev {
    display: block;
  }
}

.swiper-button-next {
  display: none;
}
@media screen and (min-width: 900px) {
  .swiper-button-next {
    display: block;
  }
}

.spots__arrows {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  margin-top: -50px;
}
@media screen and (min-width: 1200px) {
  .spots__arrows {
    max-width: 944px;
    margin-top: -100px;
  }
}

.spots__swiper-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.spots__swiper-arrows__prev {
  background-image: url(../img/spot-swiper-prev.svg);
}
.spots__swiper-arrows__prev::after {
  content: "";
}
.spots__swiper-arrows__prev:hover {
  background-position: center right 20px;
}

.spots__swiper-arrows__next {
  background-image: url(../img/spots-swiper-next.svg);
}
.spots__swiper-arrows__next::after {
  content: "";
}
.spots__swiper-arrows__next:hover {
  background-position: center left 20px;
}

.spots__swiper-arrows__prev,
.spots__swiper-arrows__next {
  position: static;
  width: 80px;
  height: 80px;
  background-color: #ffee56;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-position: center center;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}

.spot__inner {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spot__inner {
    max-width: 1084px;
    margin: 0 auto;
    margin-top: 64px;
    padding-inline: 30px;
  }
}

@media screen and (min-width: 900px) {
  .spots-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 41px;
  }
}

.spot-en__deco {
  width: 255px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .spot-en__deco {
    width: 495px;
    margin: 0;
  }
}

.spots__text-wrap {
  margin-top: 16px;
  margin-bottom: 23px;
}
@media screen and (min-width: 900px) {
  .spots__text-wrap {
    margin-top: -2px;
  }
}

.spots-text {
  font-size: 11.444px;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .spots-text {
    font-size: 16px;
  }
}

.spots__button .button {
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .spots__button .button {
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 10px;
    padding-inline: 37px;
    border-width: 3px;
    margin-left: 10px;
  }
}
.spots__button .button:hover {
  background-color: #ffee56;
}

.qa {
  margin-top: 82px;
}
@media screen and (min-width: 900px) {
  .qa {
    margin-top: 220px;
  }
}

.qa-inner {
  max-width: 640px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .qa-inner {
    max-width: 1084px;
    padding-inline: 30px;
  }
}

.qa__heading::before {
  background-image: url(../img/q-aheading.svg);
}

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

.qa-box {
  background-color: #fff;
  border: 2px solid #4a3636;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .qa-box {
    border-radius: 16px;
  }
}

.qa-box__head {
  padding: 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 20px 20px 21px 22px;
    gap: 16px;
  }
}
.qa-box__head.is-open .qa-box__head-toggle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.qa-box__head-icon {
  font-size: 24px;
  color: #9ed0e0;
  font-family: "Josefin Sans";
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .qa-box__head-icon {
    font-size: 32px;
  }
}

.qa-box__head-text {
  font-size: 14px;
  font-weight: 700;
  color: #4a3636;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__head-toggle {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__head-toggle::before, .qa-box__head-toggle::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle::before, .qa-box__head-toggle::after {
    width: 18.667px;
    height: 2.667px;
  }
}
.qa-box__head-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.qa__body {
  background-color: #f5f5f5;
  padding: 16px 14px 14px 14px;
  display: none;
}
@media screen and (min-width: 900px) {
  .qa__body {
    padding: 24px 22px 22px 22px;
  }
}

.qa-box:first-of-type .qa__body {
  display: block;
}

.qa__body-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.qa__body-answer-icon {
  font-size: 24px;
  line-height: 1.25;
  color: #9ed0e0;
  font-family: "Josefin Sans";
}
@media screen and (min-width: 900px) {
  .qa__body-answer-icon {
    font-size: 32px;
  }
}

.qa__body-answer-text {
  font-size: 14px;
  color: #4a3636;
}
@media screen and (min-width: 900px) {
  .qa__body-answer-text {
    font-size: 16px;
  }
}

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

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

.enrty__box {
  padding-top: 15.5px;
  padding-bottom: 16px;
  padding-right: 15.5px;
  padding-left: 13px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 900px) {
  .enrty__box {
    padding-top: 32px;
    padding-right: 48px;
    padding-bottom: 30px;
    padding-left: 48px;
  }
}

.enrty__heading::before {
  background-image: url(../img/entry-img.svg);
  top: 1px;
}

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

.entry--table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ccc;
  padding-top: 12px;
}
.entry--table__row:first-child {
  padding-top: 0;
}
@media screen and (min-width: 900px) {
  .entry--table__row:first-child {
    margin-top: -4px;
  }
}
.entry--table__row:last-child {
  border-bottom: none;
}
@media screen and (min-width: 900px) {
  .entry--table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    padding-left: 14px;
    padding-bottom: 12px;
  }
  .entry--table__row:nth-of-type(3) .entry--table__header::before {
    top: 16%;
  }
  .entry--table__row:nth-of-type(4) .entry--table__header::before {
    top: 24%;
  }
  .entry--table__row:nth-of-type(5) .entry--table__header::before {
    top: 3%;
  }
}

.entry--table__header {
  font-weight: 700;
  font-size: 14px;
  position: relative;
  padding-left: 16px;
}
.entry--table__header::before {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #9ed0e0;
}
.entry--table__header::before:nth-child(3) {
  top: 10px;
}
@media screen and (min-width: 900px) {
  .entry--table__header {
    font-size: 16px;
    width: 188px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.entry--table__data {
  font-size: 12px;
  color: #4a3636;
  font-weight: 400;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .entry--table__data {
    font-size: 16px;
    width: calc(100% - 224px);
  }
}
.entry--table__data li {
  position: relative;
  padding-left: 1.5em;
  line-height: 19px;
}
@media screen and (min-width: 900px) {
  .entry--table__data li {
    line-height: 26px;
  }
}
.entry--table__data li::before {
  position: absolute;
  content: "・";
  top: 0.1em;
  left: 0.2em;
}
.entry--table__data .link-text {
  text-underline-offset: 0px;
}

.entry__pic {
  display: block;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .entry__pic {
    margin-top: 118px;
  }
}

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

.contact__inner {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 908px;
    padding-inline: 30px;
  }
}

.heading--contact::before {
  background-image: url(../img/contact.svg);
  top: 0;
}

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

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

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

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

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

.contact-field__heading {
  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) {
  .contact-field__heading {
    width: 180px;
  }
}

.contact-field__label {
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .contact-field__label {
    font-size: 16px;
  }
}

.contact-field__tag {
  color: #fff;
  background-color: #ce2073;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  display: inline-block;
}

.contact-field__item {
  margin-top: 8px;
}
@media screen and (min-width: 900px) {
  .contact-field__item {
    width: calc(100% - 180px - 40px);
    margin-top: 0;
  }
}

.form-text,
.form-textarea {
  width: 100%;
  height: 56px;
  padding: 14.5px 15px;
  font-size: 14px;
  background-color: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 4px;
}
.form-text::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {
  color: #ccc;
}
.form-text::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #ccc;
}
.form-text:-ms-input-placeholder, .form-textarea:-ms-input-placeholder {
  color: #ccc;
}
.form-text::-ms-input-placeholder, .form-textarea::-ms-input-placeholder {
  color: #ccc;
}
.form-text::placeholder,
.form-textarea::placeholder {
  color: #ccc;
}
.form-text:-moz-placeholder,
.form-textarea:-moz-placeholder {
  color: #ccc;
}
.form-text:hover,
.form-textarea:hover {
  outline: none;
}
.form-text:focus,
.form-textarea:focus {
  outline: none;
  background-color: #e9f6f8;
  border: 1px solid #9ed0e0;
}
.form-text.is-error,
.form-textarea.is-error {
  background-color: #e9f6f8;
  border-color: #ce2073;
}
@media screen and (min-width: 900px) {
  .form-text,
  .form-textarea {
    font-size: 16px;
  }
}

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

.form-select {
  position: relative;
  width: 100%;
  height: 56px;
  font-size: 14px;
  padding: 14.5px 15px;
  background-color: #f5f5f5;
  background-image: url(../img/contact-icon.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat;
  background-repeat: no-repeat, no-repeat;
  background-position: center right 18.65px, center center;
  background-size: 14.9px 8.78px, cover;
  border: 1px solid transparent;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.form-select:hover, .form-select:focus {
  outline: none;
}
.form-select:focus {
  border-color: #9ed0e0;
}
.form-select.is-error {
  background-image: url(../img/contact-icon.svg), linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
  border-color: #ce2073;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .contact-field:nth-of-type(4) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10px;
  }
}
@media screen and (min-width: 900px) {
  .contact-field:nth-of-type(5) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 12px;
  }
}

.contact-fild__item {
  margin-top: 8px;
}

.contact-fild__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0);
}
.contact-radio__input:checked + .contact-radio__text {
  font-weight: 700;
}
.contact-radio__input:checked + .contact-radio__text::after {
  opacity: 1;
}
.contact-radio__input:focus + .contact-radio__text::before {
  border-color: #9ed0e0;
}
.contact-radio__input:hover + .contact-radio__text::before {
  border-color: #9ed0e0;
}

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

.form-textarea {
  height: 160px;
}
.form-textarea .contact-field__label.is-error {
  color: #ce2073;
}

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

.contact-checkbox {
  cursor: pointer;
}

.form-checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: #9ed0e0;
}
.form-checkbox__input.is-error + .form-checkbox__text::before {
  border-color: #ce2073;
}

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

.contact__button {
  text-align: center;
  margin-top: 26px;
}
.contact__button .button {
  background-color: #fff;
  cursor: pointer;
}
.contact__button .button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 42px;
  }
  .contact__button .button {
    width: 240px;
  }
}

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

.footer__inner {
  max-width: 640px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    max-width: 1084px;
    padding-inline: 30px;
  }
}

@media screen and (min-width: 900px) {
  .footer__deco-pow {
    position: absolute;
    top: 30px;
    width: 70px;
    z-index: -1;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer__deco-pow {
    width: 100px;
    right: auto;
    left: calc(50% + 576px);
    top: 82px;
  }
}

.sns-link-title {
  font-family: "Josefin Sans";
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
  display: block;
  margin-top: 4px;
}
@media screen and (min-width: 900px) {
  .sns-link-title {
    font-size: 24px;
    margin-top: 2px;
  }
}

.sms-link-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}

.sns-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.sns-button:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.sns-button::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .sns-button {
    width: 40px;
    height: 40px;
  }
}

.footer-deco__en {
  max-width: 335px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer-deco__en {
    margin-top: 45px;
    max-width: 738px;
  }
}

.footer__address-wrap {
  margin-top: 1px;
}
@media screen and (min-width: 900px) {
  .footer__address-wrap {
    margin-top: -3px;
  }
}

.address-wrap {
  overflow: hidden;
  background-color: #fff;
  border-radius: 16px;
}
@media screen and (min-width: 900px) {
  .address-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 900px) {
  .address-wrap__map {
    width: 50%;
  }
}

.googlemap {
  width: 100%;
  height: auto;
  aspect-ratio: 335/273;
  vertical-align: top;
}
@media screen and (min-width: 900px) {
  .googlemap {
    aspect-ratio: 512/400;
  }
}

.address-wrap__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 18px;
  padding-left: 26px;
  padding-right: 26px;
  padding-bottom: 26px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .address-wrap__content {
    padding: 10px;
    margin-top: 0;
  }
}

.address-wrap__logo {
  width: 153px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .address-wrap__logo {
    width: 183px;
    margin: 0;
    display: inline-block;
  }
}

.address-wrap__info {
  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;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .address-wrap__info {
    gap: 12px;
    margin-top: 24px;
  }
}

.address-wrap__info-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .address-wrap__info-flex {
    gap: 40px;
  }
}

.address-wrap__info-dt {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  padding-left: 16px;
  min-width: 64px;
  font-style: normal;
}
.address-wrap__info-dt::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .address-wrap__info-dt {
    font-size: 16px;
    width: 80px !important;
  }
}

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

.pagetop {
  width: 75px;
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.pagetop:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
@media screen and (min-width: 900px) {
  .pagetop {
    width: 80px;
    height: 83.2px;
  }
}
@media screen and (min-width: 1200px) {
  .pagetop {
    width: 100px;
    height: 104px;
  }
}

.footer__bottom {
  position: relative;
  padding-top: 47.5px;
  margin-top: 24px;
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: 2px;
  background-image: url(../img/footer__bottom.png), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
  width: 100%;
  height: 45.7px;
  background-repeat: repeat-x;
  background-size: contain;
  background-position: left 6px center;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 120px;
    padding-top: 120px;
  }
  .footer__bottom::before {
    height: 120px;
    background-image: url(../img/footer__bottom-pc.png);
    background-position: left center;
  }
}

.footer-copyright {
  display: block;
  padding-bottom: 25px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  background-color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .footer-copyright {
    font-size: 14px;
  }
}

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