body {
  color: #4A3636;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  background: #E9F6F8;
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1101px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.button {
  max-width: 100%;
  border-radius: 40px;
  background: #FFFFFF;
  box-shadow: 0px 4px 0px 0px #4A3636;
  font-size: clamp(12px, 4vw, 20px);
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.3s;
}
.button.btn-small {
  height: 32px;
  padding: 6px 23px 8px;
  border: 2px solid #4A3636;
  font-size: 14px;
}
.button.btn-normal {
  letter-spacing: 1px;
  height: 40px;
  padding: 6px 23px 8px;
  border: 2px solid #4A3636;
}
.button.btn-large {
  letter-spacing: 1px;
  height: 40px;
  padding: 6px 23px 8px;
  border: 2px solid #4A3636;
}
@media screen and (min-width: 1101px) {
  .button.btn-large {
    height: 56px;
    padding: 10px 40px 12px 40px;
    border: 3px solid #4A3636;
    font-size: 20px;
    letter-spacing: 0;
  }
}
.button:hover {
  background: #FFEE56;
  cursor: pointer;
}

.link {
  color: inherit;
  text-decoration: underline;
  text-underline-position: from-font;
}
.link:hover {
  color: #67B0C7;
  cursor: pointer;
}

.heading {
  text-align: center;
}

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

.heading__en-text {
  margin-top: 6px;
  font-family: "Courgette";
  line-height: 1.25;
}
@media screen and (min-width: 1101px) {
  .heading__en-text {
    margin-top: 10px;
    font-size: 20px;
  }
}

.heading__ja-text {
  margin-top: 6px;
  display: inline-block;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 6px solid #FFEE56;
}
@media screen and (min-width: 1101px) {
  .heading__ja-text {
    margin-top: 7px;
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid #FFEE56;
  }
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  padding-top: 16px;
  padding-bottom: 17px;
  background: #FFFFFF;
}
@media screen and (min-width: 1101px) {
  .header {
    padding-top: 18px;
    padding-bottom: 17px;
  }
}

.header__inner {
  padding-left: 20px;
  padding-right: 14px;
}
@media screen and (min-width: 1101px) {
  .header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.header__contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.header__logo img {
  display: block;
  width: 210px;
  height: 29px;
}
@media screen and (min-width: 1101px) {
  .header__logo img {
    width: 183px;
    height: 24px;
  }
}

.header__menu--icon {
  position: relative;
  width: 38px;
  height: 30px;
}
.header__menu--icon.is-checked .header__icon-bar:nth-child(1),
.header__menu--icon.is-checked .header__icon-bar:nth-child(2) {
  display: none;
}
.header__menu--icon.is-checked .header__icon-bar:nth-child(3) {
  transform: rotate(45deg);
  top: 14px;
}
.header__menu--icon.is-checked .header__icon-bar:nth-child(4) {
  transform: rotate(-45deg);
  top: 14px;
}

.header__icon-bar {
  position: absolute;
  left: 0;
  height: 0;
  border: 2px solid #4A3636;
  border-radius: 2px;
  background: #4A3636;
}
.header__icon-bar:nth-child(1), .header__icon-bar:nth-child(2) {
  top: 2px;
}
.header__icon-bar:nth-child(1) {
  width: 25.6px;
}
.header__icon-bar:nth-child(2) {
  width: 4.8px;
  left: 27.2px;
}
.header__icon-bar:nth-child(3), .header__icon-bar:nth-child(4) {
  left: 0;
  width: 32px;
}
.header__icon-bar:nth-child(3) {
  top: 14px;
}
.header__icon-bar:nth-child(4) {
  top: 26px;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1101px) {
  .header__nav {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
}

.header__nav--link {
  font-size: 12px;
  white-space: nowrap;
}
.header__nav--link:hover {
  color: #67B0C7;
  cursor: pointer;
  text-decoration: underline;
  text-underline-position: from-font;
}

.header__nav--button {
  margin-left: 4px;
}

.header__drawer {
  position: fixed;
  top: 61px;
  left: 0;
  padding-top: 82px;
  background: #FFFFFF;
  z-index: 100;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  transition: transform 1s ease;
}
.header__drawer.is-checked {
  transform: translateY(0);
}

.header__drawer--nav {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 40px;
}

.drawer-link {
  font-size: 14px;
}

.drawer-button {
  margin-top: 5px;
}

.fv {
  margin-top: 62px;
  height: 556px;
  border-radius: 0px 0px 24px 24px;
  background-image: url(../img/fv-sp.png);
  background-color: lightgray;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1101px) {
  .fv {
    margin-top: 62px;
    height: 740px;
    border-radius: 0px 0px 40px 40px;
    background-image: url(../img/fv-pc.png);
    background-color: lightgray;
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}

.fv__head {
  padding-top: 20px;
  text-shadow: 0px 0px 30px #FFF;
  font-family: "Kiwi Maru";
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 1101px) {
  .fv__head {
    padding-top: 36px;
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__title {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 1101px) {
  .fv__title {
    margin-top: 24px;
    gap: 16px;
  }
}
.fv__title img {
  margin-left: auto;
  margin-right: auto;
}
.fv__title img:nth-child(1) {
  width: 335px;
}
@media screen and (min-width: 1101px) {
  .fv__title img:nth-child(1) {
    width: 520px;
  }
}
.fv__title img:nth-child(2) {
  width: 241px;
}
@media screen and (min-width: 1101px) {
  .fv__title img:nth-child(2) {
    width: 356px;
  }
}

.fv__images {
  margin-top: 10px;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .fv__images {
    margin-top: 1px;
    max-width: 848px;
  }
}

.bubble {
  position: absolute;
  top: 7px;
  right: calc(50% + 25px);
}
@media screen and (min-width: 1101px) {
  .bubble {
    top: 0;
    left: 37px;
  }
}
.bubble img {
  max-width: 142px;
}
@media screen and (min-width: 1101px) {
  .bubble img {
    max-width: 244px;
  }
}

.present {
  position: absolute;
  top: 0;
  left: calc(50% + 32px);
  max-width: 110px;
  z-index: 20;
}
@media screen and (min-width: 1101px) {
  .present {
    top: 16px;
    left: calc(50% + 116px);
    max-width: 180px;
  }
}

.phone {
  position: absolute;
  top: 103px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  z-index: 30;
}
@media screen and (min-width: 1101px) {
  .phone {
    top: 32px;
    width: 250px;
  }
}
.phone .phone__comment {
  position: absolute;
  top: 123px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  border-radius: 12.8px;
  background: #FFFFFF;
  overflow: hidden;
  z-index: 90;
}
@media screen and (min-width: 1101px) {
  .phone .phone__comment {
    top: 153px;
    width: 200px;
    border-radius: 16px;
  }
}
.phone .phone__comment--head {
  padding: 6.4px 9.6px;
  text-align: center;
  align-items: center;
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
}
.phone .phone__comment--head p {
  color: #FFFFFF;
  font-size: 12.8px;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .phone .phone__comment--head {
    padding: 8px 12px;
  }
  .phone .phone__comment--head p {
    font-size: 16px;
  }
}
.phone .phone__comment--contents {
  margin-top: 12.8px;
  padding: 0 14px 25.2px;
}
@media screen and (min-width: 1101px) {
  .phone .phone__comment--contents {
    margin-top: 16px;
    padding: 0 12px 32px;
  }
}
.phone .text-label {
  font-size: 12px;
  border-bottom: 2.4px solid #CE2073;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1101px) {
  .phone .text-label {
    font-size: 14px;
    border-bottom: 3px solid #CE2073;
  }
}
.phone .text-date {
  margin-top: 3.2px;
  font-size: 12px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1101px) {
  .phone .text-date {
    margin-top: 6px;
    font-size: 16px;
  }
}
.phone .phone__comment--button {
  margin-top: 14px;
  text-align: center;
}
.phone .phone__comment--button a {
  padding-top: 4px !important;
  padding-bottom: 5px !important;
}
@media screen and (min-width: 1101px) {
  .phone .phone__comment--button {
    margin-top: 23px;
  }
  .phone .phone__comment--button a {
    padding: 6px 24px 8px 24px;
    font-size: 16px;
  }
}

.food {
  position: absolute;
  top: 470px;
  left: 0;
  z-index: 40;
}
@media screen and (min-width: 1101px) {
  .food {
    top: 436px;
  }
}
.food img {
  width: 54.069px;
  height: 52.238px;
}
@media screen and (min-width: 1101px) {
  .food img {
    width: 127px;
    height: 123px;
  }
}

.black-cat {
  position: absolute;
  top: 395px;
  right: 0;
  z-index: 50;
}
@media screen and (min-width: 1101px) {
  .black-cat {
    top: 308px;
    right: 63px;
  }
}
.black-cat img {
  width: 62px;
  height: 69px;
}
@media screen and (min-width: 1101px) {
  .black-cat img {
    width: 170px;
    height: 190px;
  }
}

.sleeping-cat {
  position: absolute;
  top: 450px;
  right: 9px;
  z-index: 60;
}
@media screen and (min-width: 1101px) {
  .sleeping-cat {
    top: 429px;
    right: 0;
  }
}
.sleeping-cat img {
  width: 98px;
  height: 72px;
}
@media screen and (min-width: 1101px) {
  .sleeping-cat img {
    width: 233px;
    height: 174px;
  }
}

.drink {
  position: absolute;
  top: 381px;
  left: 43px;
  z-index: 35;
}
@media screen and (min-width: 1101px) {
  .drink {
    top: 227px;
    left: 100px;
  }
}
.drink img {
  width: 47.257px;
  height: 124.012px;
}
@media screen and (min-width: 1101px) {
  .drink img {
    width: 111px;
    height: 292px;
  }
}

.about {
  margin-top: 156px;
  padding-top: 32px;
  overflow: hidden;
}
@media screen and (min-width: 1101px) {
  .about {
    margin-top: 0;
    padding-top: 177px;
  }
}

.about__inner {
  padding-left: 10px;
  padding-right: 10px;
}

.about__contents {
  padding: 40px 12px 47px;
  border-radius: 24px;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  position: relative;
  z-index: 30;
}
@media screen and (min-width: 1101px) {
  .about__contents {
    padding: 40px 114px 52px;
    border-radius: 40px;
    max-width: 848px;
  }
}

.about__title--images {
  position: relative;
}

.about__title--image {
  position: absolute;
  width: 89px;
  height: 72px;
}
@media screen and (min-width: 1101px) {
  .about__title--image {
    width: 150px;
    height: 122px;
  }
}
.about__title--image.left {
  bottom: 43px;
  right: calc(50% + 45px);
}
@media screen and (min-width: 1101px) {
  .about__title--image.left {
    bottom: 26px;
    left: -30px;
    right: auto;
  }
}
.about__title--image.right {
  bottom: 46px;
  left: calc(50% + 59px);
}
@media screen and (min-width: 1101px) {
  .about__title--image.right {
    bottom: 17px;
    left: auto;
    right: -30px;
  }
}

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

.about__text1,
.about__text3 {
  font-size: 14px;
  font-weight: 700;
}

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

.about__text2 {
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.59;
}
@media screen and (min-width: 1101px) {
  .about__text2 {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.62;
  }
}

.about__text2--hash {
  font-weight: 700;
}

.about__text3 {
  margin-top: 24px;
  padding-top: 8px;
  padding-bottom: 6.5px;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  border-bottom: 2px dashed #9ED0E0;
}
@media screen and (min-width: 1101px) {
  .about__text3 {
    margin-top: 32px;
    padding-top: 12px;
    padding-bottom: 10px;
    font-size: 20px;
  }
}

.about__button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 1101px) {
  .about__button {
    margin-top: 43px;
  }
}

.bg-arrow {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.bg-arrow img {
  width: 100px;
  height: 36px;
}
@media screen and (min-width: 1101px) {
  .bg-arrow {
    bottom: -51px;
  }
  .bg-arrow img {
    width: 140px;
    height: 50px;
  }
}

.about__onomichi-logo {
  margin-top: 140px;
  max-width: 354px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 40;
}
@media screen and (min-width: 1101px) {
  .about__onomichi-logo {
    margin-top: 166px;
    max-width: 900px;
    padding-right: 7px;
  }
  .about__onomichi-logo img {
    padding: 0;
    width: 888px;
    height: 96px;
  }
}

.about__slide {
  position: relative;
  z-index: 50;
  margin-top: -2px;
}

.about__swiper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}
@media screen and (min-width: 1101px) {
  .about__swiper {
    height: auto;
  }
}

.about__swiper-wraper {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.about__swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 28.5714285714%;
  height: auto;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about__slide--image img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.about__bg-images {
  position: relative;
}

.about__bg-image {
  position: absolute;
  z-index: 20;
}
.about__bg-image img {
  max-width: none;
}
.about__bg-image.sakamichi {
  bottom: -383px;
  left: -68px;
  width: 425px;
  height: 822px;
  z-index: 15;
}
.about__bg-image.sakamichi img {
  width: 52%;
  height: 54%;
}
@media screen and (min-width: 1101px) {
  .about__bg-image.sakamichi {
    bottom: 149px;
    left: auto;
    right: calc(50% + 433px);
    z-index: 15;
  }
  .about__bg-image.sakamichi img {
    width: 427px;
    height: 817px;
  }
}
.about__bg-image.cloth {
  bottom: 158px;
  right: calc(50% - 130px);
}
.about__bg-image.cloth img {
  width: 133px;
  height: 65px;
}
@media screen and (min-width: 1101px) {
  .about__bg-image.cloth {
    bottom: 378px;
    right: calc(50% - 682px);
  }
  .about__bg-image.cloth img {
    width: 308px;
    height: 150.604px;
  }
}
.about__bg-image.two-buttons {
  bottom: 239px;
  right: calc(50% - 148px);
}
.about__bg-image.two-buttons img {
  width: 29.236px;
  height: 25.315px;
}
@media screen and (min-width: 1101px) {
  .about__bg-image.two-buttons {
    bottom: 632px;
    right: calc(50% - 568px);
  }
  .about__bg-image.two-buttons img {
    width: 61.518px;
    height: 52.765px;
  }
}
.about__bg-image.right-photo {
  bottom: 512px;
  left: calc(50% + 127px);
  border-radius: 24px;
  width: 200px;
  height: 200px;
}
.about__bg-image.right-photo img {
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 1101px) {
  .about__bg-image.right-photo {
    bottom: 734px;
    left: calc(50% + 559px);
    border-radius: 40px;
    width: 480px;
    height: 480px;
  }
  .about__bg-image.right-photo img {
    width: 480px;
    height: 480px;
  }
}
.about__bg-image.left-photo {
  bottom: 110px;
  right: calc(50% + 29px);
  border-radius: 24px;
  width: 480px;
  height: 480px;
}
.about__bg-image.left-photo img {
  width: 100%;
  height: 41%;
}
@media screen and (min-width: 1101px) {
  .about__bg-image.left-photo {
    bottom: 732px;
    right: calc(50% + 615px);
    border-radius: 40px;
    width: 480px;
    height: 480px;
  }
  .about__bg-image.left-photo img {
    width: 480px;
    height: 480px;
  }
}
.about__bg-image.ashiato-toRight {
  bottom: 875px;
  right: calc(50% - 188px);
}
.about__bg-image.ashiato-toRight img {
  width: 54px;
  height: 120px;
}
@media screen and (min-width: 1101px) {
  .about__bg-image.ashiato-toRight {
    bottom: 1147px;
    right: calc(50% - 590px);
  }
  .about__bg-image.ashiato-toRight img {
    width: 100px;
    height: 220px;
  }
}
.about__bg-image.namisen1 {
  display: none;
}
@media screen and (min-width: 1101px) {
  .about__bg-image.namisen1 {
    display: block;
    bottom: 663px;
    right: calc(50% - 1322px);
    z-index: 10;
  }
  .about__bg-image.namisen1 img {
    width: 807px;
    height: 12px;
  }
}
.about__bg-image.namisen2 {
  display: none;
}
@media screen and (min-width: 1101px) {
  .about__bg-image.namisen2 {
    display: block;
    bottom: 630px;
    right: calc(50% - 1256px);
    z-index: 10;
  }
  .about__bg-image.namisen2 img {
    width: 807px;
    height: 12px;
  }
}
.about__bg-image.single-button {
  bottom: 215px;
  right: calc(50% - 167px);
}
.about__bg-image.single-button img {
  width: 18.873px;
  height: 17.753px;
}
@media screen and (min-width: 1101px) {
  .about__bg-image.single-button {
    bottom: 586px;
    right: calc(50% - 606px);
  }
  .about__bg-image.single-button img {
    width: 39.711px;
    height: 37.004px;
  }
}
.about__bg-image.naname {
  display: none;
}
@media screen and (min-width: 1101px) {
  .about__bg-image.naname {
    display: block;
    bottom: 1057px;
    right: calc(50% + 527px);
    border-radius: 40px;
    width: 250px;
    height: 250px;
    z-index: 13;
  }
  .about__bg-image.naname img {
    width: 250px;
    height: 250px;
  }
}

.step {
  padding-top: 65px;
  padding-bottom: 38px;
  overflow: hidden;
}
@media screen and (min-width: 1101px) {
  .step {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.step__bg {
  position: relative;
}

.step__bg--image {
  position: absolute;
  z-index: 20;
}
.step__bg--image img {
  max-width: none;
}
.step__bg--image.map {
  top: 0;
  right: calc(50% + 40px);
  width: 149px;
  height: 223px;
}
.step__bg--image.map img {
  width: 138px;
  height: 203px;
}
@media screen and (min-width: 1101px) {
  .step__bg--image.map {
    top: -58px;
    right: calc(50% + 570px);
  }
  .step__bg--image.map img {
    width: 420px;
    height: 628.496px;
  }
}
.step__bg--image.cat1 {
  top: 5px;
  left: calc(50% + 125px);
}
.step__bg--image.cat1 img {
  width: 94px;
  height: 80px;
}
@media screen and (min-width: 1101px) {
  .step__bg--image.cat1 {
    top: -16px;
    left: calc(50% + 437px);
  }
  .step__bg--image.cat1 img {
    width: 214px;
    height: 181px;
  }
}
.step__bg--image.ashiato1 {
  top: 74px;
  left: calc(50% + 113px);
  transform: rotate(180deg);
}
.step__bg--image.ashiato1 img {
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 1101px) {
  .step__bg--image.ashiato1 {
    top: 149px;
    left: calc(50% + 620px);
  }
  .step__bg--image.ashiato1 img {
    width: 100px;
    height: 220px;
  }
}
.step__bg--image.ashiato2 {
  top: 549px;
  right: calc(50% + 113px);
}
.step__bg--image.ashiato2 img {
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 1101px) {
  .step__bg--image.ashiato2 {
    top: 580px;
    right: calc(50% + 620px);
  }
  .step__bg--image.ashiato2 img {
    width: 100px;
    height: 220px;
  }
}
.step__bg--image.ashiato3 {
  top: 881px;
  left: calc(50% + 113px);
  transform: rotate(180deg);
}
.step__bg--image.ashiato3 img {
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 1101px) {
  .step__bg--image.ashiato3 {
    display: none;
  }
}
.step__bg--image.cat2 {
  top: 0px;
  left: calc(50% + 58px);
  z-index: 15;
}
.step__bg--image.cat2 img {
  width: 105px;
  height: 63px;
}
@media screen and (min-width: 1101px) {
  .step__bg--image.cat2 {
    top: -26px;
    left: calc(50% + 285px);
  }
  .step__bg--image.cat2 img {
    width: 238px;
    height: 141px;
  }
}

.step__contents {
  position: relative;
  z-index: 50;
}

.step__cards {
  margin-top: 31px;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 32px;
}
@media screen and (min-width: 1101px) {
  .step__cards {
    margin-top: 38px;
    flex-direction: row;
    justify-content: center;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}

.step__card {
  padding-bottom: 16px;
}
@media screen and (min-width: 1101px) {
  .step__card {
    padding-bottom: 8px;
    width: 320px;
  }
}
.step__card:nth-child(2) {
  position: relative;
}
@media screen and (min-width: 1101px) {
  .step__card:nth-child(2) {
    margin-top: 68px;
  }
}
.step__card:nth-child(2)::before, .step__card:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 35px;
  background: url(../img/step-line-sp.png) no-repeat center center/contain;
}
@media screen and (min-width: 1101px) {
  .step__card:nth-child(2)::before, .step__card:nth-child(2)::after {
    width: 113px;
    height: 24px;
    background: url(../img/step-line-pc.png) no-repeat center center/contain;
  }
}
.step__card:nth-child(2)::before {
  top: -34px;
}
@media screen and (min-width: 1101px) {
  .step__card:nth-child(2)::before {
    top: calc(100% - 350px);
    left: -40px;
  }
}
.step__card:nth-child(2)::after {
  bottom: -34px;
}
@media screen and (min-width: 1101px) {
  .step__card:nth-child(2)::after {
    left: auto;
    bottom: auto;
    top: calc(100% - 350px);
    right: -114px;
  }
}

@media screen and (min-width: 1101px) {
  .step__card--image {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.step__card--image img {
  width: 196px;
}
@media screen and (min-width: 1101px) {
  .step__card--image img {
    width: 100%;
  }
}

.step__card--head {
  margin-top: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .step__card--head {
    margin-top: 25px;
    font-size: 20px;
  }
}
.step__card--head.padding-left {
  padding-left: 4px;
}
@media screen and (min-width: 1101px) {
  .step__card--head.padding-left {
    padding-left: 3px;
  }
}

.step__card--text {
  margin-top: 16px;
  font-size: 12px;
}
@media screen and (min-width: 1101px) {
  .step__card--text {
    font-size: 16px;
    line-height: 1.62;
  }
  .step__card--text:nth-child(3) {
    line-height: 1.64;
  }
}

@media screen and (min-width: 1101px) {
  .step1-account {
    line-height: 1.64;
  }
}

.step1-insta {
  margin-top: 15px;
  padding: 4px 12px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: border 0.3s;
}
@media screen and (min-width: 1101px) {
  .step1-insta {
    padding-top: 5px;
    padding-bottom: 7px;
  }
}
.step1-insta:hover {
  cursor: pointer;
  border: 1px solid #9ED0E0;
}

.step1-insta__icon {
  margin-bottom: 4px;
}
.step1-insta__icon img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1101px) {
  .step1-insta__icon img {
    width: 24px;
    height: 24px;
  }
}

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

.step3-hash {
  font-weight: 700;
}

.step__button {
  margin-top: 6px;
  text-align: center;
}
@media screen and (min-width: 1101px) {
  .step__button {
    margin-top: 50px;
  }
}

.prizes {
  position: relative;
  overflow: hidden;
}

.prizes__title {
  padding-top: 20px;
  margin-top: 8px;
}
.prizes__title .heading {
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 1101px) {
  .prizes__title {
    padding-top: 31px;
    margin-top: 15px;
  }
}

.prizes__title--bg {
  position: absolute;
  top: 8px;
  left: calc(50% - 118px);
  width: 248px;
  height: 83px;
  z-index: 30;
}
@media screen and (min-width: 1101px) {
  .prizes__title--bg {
    top: 16px;
    width: 425px;
    height: 174px;
    left: calc(50% - 204px);
  }
  .prizes__title--bg img {
    width: 100%;
    height: 100%;
  }
}

.prizes__contents {
  padding: 0 20px 42px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1101px) {
  .prizes__contents {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 56px 64px;
  }
}
.prizes__contents::before {
  content: "";
  position: absolute;
  top: 91px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 904px;
  background: #FFFFFF;
  border-radius: 24px;
  z-index: 30;
}
@media screen and (min-width: 1101px) {
  .prizes__contents::before {
    top: 167px;
    height: 1181.033px;
  }
}

.prizes__head-images {
  position: relative;
}

.prizes-heading-bg-Left,
.prizes-heading-bg-Right {
  position: absolute;
  bottom: 59px;
  width: 315px;
  height: 86px;
}

.prizes-heading-bg-Left {
  right: calc(50% + 345px);
}
@media screen and (min-width: 1101px) {
  .prizes-heading-bg-Left {
    right: calc(50% + 198px);
  }
}

.prizes-heading-bg-Right {
  left: calc(50% + 345px);
}
@media screen and (min-width: 1101px) {
  .prizes-heading-bg-Right {
    left: calc(50% + 198px);
  }
}

.prizes__text {
  margin-top: 16px;
  text-align: center;
  position: relative;
  z-index: 50;
}
.prizes__text p {
  font-size: 12px;
}
@media screen and (min-width: 1101px) {
  .prizes__text {
    margin-top: 40px;
  }
  .prizes__text p {
    font-size: 16px;
  }
}

.prizes__cards {
  margin-top: 23px;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1101px) {
  .prizes__cards {
    margin-top: 32px;
    max-width: 912px;
  }
}

.prizes__cards--first {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
@media screen and (min-width: 1101px) {
  .prizes__cards--first {
    gap: 32px;
  }
}
.prizes__cards--first .prizes__card:nth-child(1) .prizes__card--image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 140px;
  max-width: inherit;
}
.prizes__cards--first .prizes__card:nth-child(1) .prizes__card--image img {
  position: absolute;
  top: -36px;
  left: 0;
  width: 100%;
  height: 152%;
}
@media screen and (min-width: 1101px) {
  .prizes__cards--first .prizes__card:nth-child(1) .prizes__card--image {
    height: 340px;
  }
  .prizes__cards--first .prizes__card:nth-child(1) .prizes__card--image img {
    top: -115px;
    height: 168%;
  }
}
.prizes__cards--first .prizes__card:nth-child(2) .prizes__card--image {
  width: 164%;
  height: 140px;
  max-width: inherit;
  position: relative;
  overflow: hidden;
}
.prizes__cards--first .prizes__card:nth-child(2) .prizes__card--image img {
  position: absolute;
  top: -18px;
  right: 80px;
  width: 100%;
  height: 128%;
}
@media screen and (min-width: 1101px) {
  .prizes__cards--first .prizes__card:nth-child(2) .prizes__card--image {
    height: 340px;
  }
  .prizes__cards--first .prizes__card:nth-child(2) .prizes__card--image img {
    top: -44px;
    right: calc(50% - 95px);
    width: 84%;
    height: 122%;
  }
}
@media screen and (min-width: 1101px) {
  .prizes__cards--first .prizes__card {
    max-width: 440px;
  }
  .prizes__cards--first .prizes__card--name {
    height: 120px;
  }
  .prizes__cards--first .prizes__card--name h3 {
    font-size: 20px;
  }
  .prizes__cards--first .card-body {
    border-radius: 24px;
    top: 50px;
  }
  .prizes__cards--first .prizes__card--icon img {
    width: 100px;
    height: 100px;
  }
  .prizes__cards--first .prizes__card--zoom {
    width: 101px;
    height: 103px;
  }
  .prizes__cards--first .prizes__card--zoom img {
    width: 100%;
    height: 100%;
  }
}

.prizes__cards--second {
  margin-top: 37px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 37px 13px;
}
@media screen and (min-width: 1101px) {
  .prizes__cards--second {
    margin-top: 89px;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}
.prizes__cards--second .prizes__card:nth-child(1) .prizes__card--image {
  width: 100%;
  height: 140px;
  max-width: inherit;
  position: relative;
  overflow: hidden;
}
.prizes__cards--second .prizes__card:nth-child(1) .prizes__card--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1101px) {
  .prizes__cards--second .prizes__card:nth-child(1) .prizes__card--image {
    height: 240px;
  }
  .prizes__cards--second .prizes__card:nth-child(1) .prizes__card--image img {
    top: 0;
    height: 99%;
  }
}
.prizes__cards--second .prizes__card:nth-child(2) .prizes__card--image {
  width: 117%;
  height: 140px;
  max-width: inherit;
  position: relative;
  overflow: hidden;
}
.prizes__cards--second .prizes__card:nth-child(2) .prizes__card--image img {
  position: absolute;
  top: -52px;
  left: -19px;
  width: 187px;
  height: 239px;
}
@media screen and (min-width: 1101px) {
  .prizes__cards--second .prizes__card:nth-child(2) .prizes__card--image {
    height: 240px;
  }
  .prizes__cards--second .prizes__card:nth-child(2) .prizes__card--image img {
    top: -66px;
    left: 0;
    width: 86%;
    height: 151%;
  }
}
.prizes__cards--second .prizes__card:nth-child(3) {
  grid-column: span 2;
  justify-self: center;
}
@media screen and (min-width: 1101px) {
  .prizes__cards--second .prizes__card:nth-child(3) {
    grid-column: auto;
    justify-self: auto;
  }
}
@media screen and (min-width: 1101px) {
  .prizes__cards--second .prizes__card:nth-child(3) .prizes__card--image {
    width: 100%;
    height: 240px;
    max-width: inherit;
    position: relative;
    overflow: hidden;
  }
  .prizes__cards--second .prizes__card:nth-child(3) .prizes__card--image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1101px) {
  .prizes__cards--second .prizes__card {
    max-width: 280px;
  }
  .prizes__cards--second .prizes__card--name {
    height: 80px;
  }
  .prizes__cards--second .prizes__card--name h3 {
    font-size: 16px;
  }
  .prizes__cards--second .card-body {
    border-radius: 16px;
    top: 40px;
  }
  .prizes__cards--second .prizes__card--icon img {
    width: 80px;
    height: 80px;
  }
  .prizes__cards--second .prizes__card--zoom {
    width: 67px;
    height: 70px;
  }
  .prizes__cards--second .prizes__card--zoom img {
    width: 100%;
    height: 100%;
  }
}

.prizes__card {
  max-width: 161px;
  position: relative;
}

.prizes__card--icon {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.prizes__card--icon img {
  width: 48px;
  height: 48px;
}

.card-body {
  position: absolute;
  top: 24px;
  border-radius: 8px;
  background: #F5F5F5;
  border: 1px solid #FFFFFF;
  z-index: 30;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .card-body {
    border: 3px solid #FFFFFF;
  }
}
.card-body:hover, .card-body:focus {
  border: 1px solid #9ED0E0;
}
@media screen and (min-width: 1101px) {
  .card-body:hover, .card-body:focus {
    border: 3px solid #9ED0E0;
  }
}
.card-body:hover {
  cursor: pointer;
}
.card-body:hover .prizes__card--image img {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}
.card-body:hover .prizes__card--zoom {
  background: url(../img/zoom-hover.png) no-repeat center center/contain;
}

.prizes__card--name {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prizes__card--name h3 {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.prizes__card--zoom {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 37px;
  height: 37px;
  background: url(../img/img_prizes_zoom.png) no-repeat center center/contain;
}

.prizes__button {
  margin-top: 47px;
  text-align: center;
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 1101px) {
  .prizes__button {
    margin-top: 89px;
  }
}

.prizes__bottom-bg {
  width: 155%;
  height: 217px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.prizes__bottom-bg img {
  position: absolute;
  top: -42px;
  left: -102px;
  width: 100%;
  height: 120%;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .prizes__bottom-bg {
    height: 400px;
  }
}
@media screen and (min-width: 1101px) {
  .prizes__bottom-bg {
    width: 100%;
    height: 640px;
  }
  .prizes__bottom-bg img {
    top: -16px;
    left: 0;
    height: 106%;
  }
}

.prizes__bottom--wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 151%;
  height: auto;
  z-index: 40;
}
.prizes__bottom--wave img {
  width: 100%;
}
@media screen and (min-width: 1101px) {
  .prizes__bottom--wave {
    width: 100%;
    height: 120px;
  }
  .prizes__bottom--wave img {
    width: 100%;
    height: 100%;
  }
}

.prizes__modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: 336px;
  max-height: 480px;
  padding: 0 0 56px;
  text-align: center;
  border-radius: 24px;
  background: #FFFFFF;
  border: none;
  z-index: 130;
  overflow: hidden;
  overscroll-behavior-y: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.prizes__modal::backdrop {
  opacity: 0.6;
  background: #000;
}
.prizes__modal.is-visible {
  opacity: 1;
}
@media screen and (min-width: 1101px) {
  .prizes__modal {
    max-width: 480px;
    max-height: 650px;
    padding-bottom: 106px;
  }
}

.prizes__modal--image img {
  width: 100%;
}

.prizes__modal--name {
  margin-top: 39px;
}
.prizes__modal--name h3 {
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .prizes__modal--name {
    margin-top: 32px;
  }
  .prizes__modal--name h3 {
    font-size: 20px;
  }
}

.prizes__modal--text {
  margin-top: 12px;
  padding-left: 20px;
  padding-right: 20px;
}
.prizes__modal--text p {
  font-size: 12px;
}
@media screen and (min-width: 1101px) {
  .prizes__modal--text {
    padding-left: 40px;
    padding-right: 40px;
  }
  .prizes__modal--text p {
    font-size: 16px;
  }
}

.prizes__modal--button {
  margin-top: 22px;
}
@media screen and (min-width: 1101px) {
  .prizes__modal--button {
    margin-top: 30px;
  }
}

dialog {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

dialog[open] {
  pointer-events: auto;
}

dialog.is-visible {
  opacity: 1;
  transform: scale(1);
}

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

.spots__contents {
  background: #67B0C7;
  position: relative;
  z-index: 40;
  overflow: hidden;
}

.spots__main {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 40;
}
@media screen and (min-width: 1101px) {
  .spots__main {
    flex-direction: row;
    gap: 36px;
    padding-bottom: 137px;
  }
}

.spots__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  position: relative;
  z-index: 40;
}
@media screen and (min-width: 1101px) {
  .spots__heading {
    margin-left: 243px;
    flex-direction: column;
    justify-content: left;
    gap: 15px;
  }
}

.spots__heading--icon img {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 1101px) {
  .spots__heading--icon img {
    width: 57px;
    height: 57px;
  }
}

.spots__heading--text {
  color: #FFFFFF;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 1101px) {
  .spots__heading--text {
    writing-mode: vertical-rl;
    font-size: 40px;
    letter-spacing: 10px;
  }
}

.spots__slide {
  margin-top: 24px;
}
@media screen and (min-width: 1101px) {
  .spots__slide {
    margin-top: 3px;
    position: absolute;
    top: 0;
    left: 329px;
    width: calc(100vw - 300px);
  }
}

.spots-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 402px;
  max-width: 100%;
  border-radius: 12px;
  background: #FFFFFF;
  overflow: hidden;
}
@media screen and (min-width: 1101px) {
  .spots-card {
    height: 540px;
    border-radius: 24px;
  }
}

.spots-card__image {
  flex-shrink: 0;
  height: 45%;
  width: 100%;
  overflow: hidden;
}
.spots-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1101px) {
  .spots-card__image {
    height: 44%;
  }
}

.spots-card__script {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: scroll;
  margin-top: 17px;
  padding-left: 25px;
  padding-right: 24px;
  padding-bottom: 31.159px;
}
@media screen and (min-width: 1101px) {
  .spots-card__script {
    margin-top: 26px;
    padding-left: 32px;
    padding-right: 31px;
    padding-bottom: 40px;
  }
}

.spots-card__head {
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .spots-card__head {
    font-size: 20px;
  }
}

.spots-card__text {
  margin-top: 16px;
  font-size: 12px;
}
@media screen and (min-width: 1101px) {
  .spots-card__text {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.61;
  }
}

.spots__slide--prev,
.spots__slide--next {
  position: absolute;
  z-index: 100;
  display: none;
}
@media screen and (min-width: 1101px) {
  .spots__slide--prev,
  .spots__slide--next {
    display: block;
    margin-top: 216px;
    width: 80px;
    height: 80px;
  }
}
.spots__slide--prev::after,
.spots__slide--next::after {
  display: none;
}

@media screen and (min-width: 1101px) {
  .spots__slide--prev {
    left: -44px;
    background: url(../img/spots_swiper-prev.png) no-repeat center center/contain;
  }
}

@media screen and (min-width: 1101px) {
  .spots__slide--next {
    right: 313px;
    background: url(../img/spots_swiper-next.png) no-repeat center center/contain;
  }
}

.spots__bottom {
  background: #67B0C7;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  padding-bottom: 28px;
}
@media screen and (min-width: 1101px) {
  .spots__bottom {
    flex-direction: row;
    justify-content: center;
    gap: 78px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 8px;
  }
}

.spots__bottom--logo img {
  width: 255px;
}
@media screen and (min-width: 1101px) {
  .spots__bottom--logo img {
    width: 495px;
  }
}

.spots__bottom--text {
  color: #FFFFFF;
  font-size: 11.444px;
}
@media screen and (min-width: 1101px) {
  .spots__bottom--text {
    font-size: 16px;
  }
}

.spots__bottom--button {
  margin-top: 30px;
}
@media screen and (min-width: 1101px) {
  .spots__bottom--button {
    margin-top: 34px;
    padding-left: 11px;
    position: relative;
    z-index: 30;
  }
}

.spots__bottom-bg--wave {
  width: 151%;
  height: auto;
  background: linear-gradient(to bottom, #67B0C7 30px, #E9F6F8 30px);
}
.spots__bottom-bg--wave img {
  width: 100%;
}
@media screen and (min-width: 1101px) {
  .spots__bottom-bg--wave {
    width: 100%;
  }
  .spots__bottom-bg--wave img {
    width: 100%;
    height: 114px;
  }
}

.spots__bottom-bg--ashiato {
  display: none;
}
@media screen and (min-width: 1101px) {
  .spots__bottom-bg--ashiato {
    position: absolute;
    display: block;
    top: 498px;
    left: calc(50% - 720px);
  }
  .spots__bottom-bg--ashiato img {
    width: 100px;
    height: 220px;
  }
}

.spots__bottom-bg--space {
  height: 66px;
}
@media screen and (min-width: 1101px) {
  .spots__bottom-bg--space {
    height: 124px;
  }
}

.qa {
  padding-top: 41px;
  padding-bottom: 31px;
}
@media screen and (min-width: 1101px) {
  .qa {
    padding-top: 119px;
  }
}

.qa__boxes {
  margin-top: 23px;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1101px) {
  .qa__boxes {
    margin-top: 40px;
    max-width: 1024px;
  }
}

.qa__box {
  border-radius: 12px;
  border: 2px solid #4A3636;
  overflow: hidden;
}
@media screen and (min-width: 1101px) {
  .qa__box {
    border-radius: 16px;
  }
}
.qa__box.is-open .q-icon__bar:nth-child(2) {
  display: none;
}
.qa__box:nth-child(n+2) {
  margin-top: 11px;
}
@media screen and (min-width: 1101px) {
  .qa__box:nth-child(n+2) {
    margin-top: 23.5px;
  }
}

.qa__box--question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px 10px 14px;
  background: #FFFFFF;
}
@media screen and (min-width: 1101px) {
  .qa__box--question {
    gap: 16px;
    padding: 21px 22px 21px 23px;
  }
}
.qa__box--question:hover {
  cursor: pointer;
}

.q-head {
  color: #9ED0E0;
  font-family: "Josefin Sans";
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width: 1101px) {
  .q-head {
    font-size: 32px;
  }
}

.q-text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .q-text {
    font-size: 20px;
    flex-grow: 1;
  }
}

.q-icon {
  width: 26.182px;
  height: 26.182px;
  border-radius: 50%;
  background: #9ED0E0;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .q-icon {
    width: 48px;
    height: 48px;
  }
}

.q-icon__bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  transform: translateX(-50%);
  width: 10.182px;
  height: 1.455px;
  background: #FFFFFF;
}
.q-icon__bar:nth-child(2) {
  transform: rotate(90deg);
  left: 8px;
}
@media screen and (min-width: 1101px) {
  .q-icon__bar {
    width: 18.667px;
    height: 2.667px;
  }
  .q-icon__bar:nth-child(n+2) {
    left: 15px;
  }
}

.qa__box--answer {
  display: none;
}

.answer-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 16px 14px 15px;
  background: #F5F5F5;
}
@media screen and (min-width: 1101px) {
  .answer-box {
    padding: 24px 24px 22px 23px;
  }
}

.a-head {
  color: #9ED0E0;
  font-family: "Josefin Sans";
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width: 1101px) {
  .a-head {
    font-size: 32px;
  }
}

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

.entry {
  padding-bottom: 32px;
}
@media screen and (min-width: 1101px) {
  .entry {
    padding-top: 79px;
  }
}

.entry__contents {
  padding: 15px;
  border: 8px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 1101px) {
  .entry__contents {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 50px 35px 49px;
  }
}

.entry__info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 1101px) {
  .entry__info {
    margin-top: 40px;
  }
}

.entry__info--box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #CCCCCC;
}
.entry__info--box:nth-child(5) {
  border-bottom: none;
}
@media screen and (min-width: 1101px) {
  .entry__info--box {
    flex-direction: row;
    align-items: start;
    gap: 0;
    padding-bottom: 12px;
  }
  .entry__info--box:nth-child(4) {
    padding-bottom: 10px;
  }
}

.info-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1101px) {
  .info-head {
    padding-left: 16px;
    width: 240px;
  }
}

.info-head__icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ED0E0;
}

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

.info-text {
  width: auto;
  font-size: 12px;
}
@media screen and (min-width: 1101px) {
  .info-text {
    width: 670px;
    font-size: 16px;
  }
}

.info-text__table th {
  padding: 0 2px;
}
.info-text__table td {
  line-height: 1.55;
}
@media screen and (min-width: 1101px) {
  .info-text__table td {
    line-height: 1.57;
  }
}

.entry__bottom--img img {
  width: 100%;
}
@media screen and (min-width: 1101px) {
  .entry__bottom--img {
    margin-top: 87px;
  }
}

.contact {
  padding-top: 40px;
  padding-bottom: 44px;
  background: #FFFFFF;
}
@media screen and (min-width: 1101px) {
  .contact {
    padding-top: 119px;
    padding-bottom: 120px;
  }
}

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

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

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

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 23.5px;
}
@media screen and (min-width: 1101px) {
  .contact__fields {
    gap: 24px;
  }
}

@media screen and (min-width: 1101px) {
  .contact__field:nth-child(4) {
    margin-top: 15px;
  }
  .contact__field:nth-child(5) {
    margin-top: 16px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1101px) {
  .form-field {
    flex-direction: row;
    align-items: center;
  }
  .form-field.textarea-field {
    align-items: start;
  }
}

.form-field__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1101px) {
  .form-field__head {
    width: 214px;
    flex-shrink: 0;
  }
}

.form-field__head--label {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .form-field__head--label {
    font-size: 16px;
  }
}

.form-field__head--tag {
  padding: 4px 8px;
  border-radius: 4px;
  background: #CE2073;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
}

.form-field__item {
  width: 100%;
}

.form-text,
.form-textarea {
  width: 100%;
  border-radius: 8px;
  background: #F5F5F5;
  border: none;
}
.form-text::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #CCCCCC;
  font-size: 14px;
}
.form-text::placeholder,
.form-textarea::placeholder {
  color: #CCCCCC;
  font-size: 14px;
}
@media screen and (min-width: 1101px) {
  .form-text::-moz-placeholder, .form-textarea::-moz-placeholder {
    font-size: 16px;
  }
  .form-text::placeholder,
  .form-textarea::placeholder {
    font-size: 16px;
  }
}
.form-text:focus,
.form-textarea:focus {
  border: 1px solid #9ED0E0;
  background: #E9F6F8;
  outline: none;
  color: #4A3636;
}
.form-text.is-filled,
.form-textarea.is-filled {
  background: #F5F5F5;
  outline: none;
}
.form-text.is-filled::-moz-placeholder, .form-textarea.is-filled::-moz-placeholder {
  color: #4A3636;
}
.form-text.is-filled::placeholder,
.form-textarea.is-filled::placeholder {
  color: #4A3636;
}
.form-text.is-error,
.form-textarea.is-error {
  border: 1px solid #CE2073;
  background: #FFF0F7;
}
.form-text.is-error::-moz-placeholder, .form-textarea.is-error::-moz-placeholder {
  color: #4A3636;
}
.form-text.is-error::placeholder,
.form-textarea.is-error::placeholder {
  color: #4A3636;
}

.form-text {
  height: 56px;
  padding: 12px 16px 16px;
}
@media screen and (min-width: 1101px) {
  .form-text {
    padding: 17px 14px 16px;
  }
}

.form-field__item--select {
  position: relative;
}
.form-field__item--select::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 11px;
  width: 32px;
  height: 32px;
  background: url(../img/contact-select-Icon.png) no-repeat center center/contain;
  pointer-events: none;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 56px;
  padding: 16px 52px 16px 14px;
  border-radius: 8px;
  background: linear-gradient(to right, #F5F5F5 calc(100% - 52px), #67B0C7 52px);
  border: none;
  font-size: 14px;
}
@media screen and (min-width: 1101px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:hover {
  cursor: pointer;
}
.form-select:focus {
  border: 1px solid #9ED0E0;
  background: linear-gradient(to right, #E9F6F8 calc(100% - 52px), #67B0C7 52px);
  outline: none;
}
.form-select.is-filled {
  background: linear-gradient(to right, #F5F5F5 calc(100% - 52px), #67B0C7 52px);
}
.form-select.is-error {
  border: 1px solid #CE2073;
  background: linear-gradient(to right, #FFF0F7 calc(100% - 52px), #CE2073 52px);
}

.form-field__radios {
  display: flex;
  gap: 24px;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:focus + .form-radio__text::before {
  border: 1px solid #9ED0E0;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

.form-radio__text {
  font-size: 14px;
  padding-left: 32px;
  position: relative;
}
.form-radio__text:hover {
  cursor: pointer;
}
@media screen and (min-width: 1101px) {
  .form-radio__text {
    font-size: 16px;
  }
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  background: #F5F5F5;
  left: 0;
}
.form-radio__text::after {
  width: 12px;
  height: 12px;
  background: #9ED0E0;
  left: 6px;
  opacity: 0;
}

.form-textarea {
  height: 160px;
  padding: 15px 16px 16px;
}
@media screen and (min-width: 1101px) {
  .form-textarea {
    margin-top: -2px;
    padding: 18px 14px 16px;
  }
}

.contact__privacy {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 1101px) {
  .contact__privacy {
    margin-top: 41px;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  font-size: 14px;
  padding-left: 36px;
  position: relative;
}
.form-checkbox__text:hover {
  cursor: pointer;
}
@media screen and (min-width: 1101px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.form-checkbox__text::before {
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #F5F5F5;
}
.form-checkbox__text::after {
  left: 5px;
  width: 14px;
  height: 9px;
  background: url(../img/contact-privacy-check.png) no-repeat center center/contain;
  opacity: 0;
}

.contact__button {
  margin-top: 25px;
  text-align: center;
}
.contact__button input {
  width: auto;
}
@media screen and (min-width: 1101px) {
  .contact__button {
    margin-top: 39px;
  }
  .contact__button input {
    font-size: 16px;
    width: 240px;
    letter-spacing: 0 !important;
    height: 40px;
    padding: 6px 23px 8px;
    border: 2px solid #4A3636;
  }
}

.footer {
  padding-top: 40px;
  overflow: hidden;
}
@media screen and (min-width: 1101px) {
  .footer {
    padding-top: 121px;
  }
}

.footer__contents {
  position: relative;
  overflow: visible;
}

.footer__bg-ashiato {
  position: absolute;
  top: -39px;
  left: calc(50% + 577px);
  width: 100px;
  height: 220px;
}

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

.footer__sns {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

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

.footer__logo {
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-50%);
  width: 328px;
}
.footer__logo img {
  width: 328px;
}
@media screen and (min-width: 1101px) {
  .footer__logo {
    top: 135px;
    width: 755px;
  }
  .footer__logo img {
    width: 755px;
  }
}

.footer__box {
  margin-top: 49px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  background: #FFFFFF;
  overflow: hidden;
}
@media screen and (min-width: 1101px) {
  .footer__box {
    margin-top: 120px;
    flex-direction: row-reverse;
    gap: 0;
    max-width: 1024px;
    max-height: 400px;
  }
}

.footer__map iframe {
  width: 335px;
  height: 271px;
  aspect-ratio: 335/271;
}
@media screen and (min-width: 1101px) {
  .footer__map iframe {
    width: 100%;
    height: 400px;
    aspect-ratio: 512/400;
  }
}

.footer__info {
  padding: 0 24px 31px;
}
@media screen and (min-width: 1101px) {
  .footer__info {
    width: 50%;
    margin-top: auto;
    margin-bottom: auto;
    padding: 0 10px 6px 61px;
  }
}

.footer__info--logo {
  text-align: center;
}
.footer__info--logo img {
  width: 153px;
}
@media screen and (min-width: 1101px) {
  .footer__info--logo {
    text-align: left;
  }
  .footer__info--logo img {
    width: 183px;
  }
}

.footer__info--matter {
  margin-top: 30px;
}
@media screen and (min-width: 1101px) {
  .footer__info--matter {
    margin-top: 25px;
  }
}

.footer__info-line {
  display: flex;
  align-items: start;
  gap: 10px;
}
.footer__info-line:nth-child(n+2) {
  margin-top: 8px;
}
@media screen and (min-width: 1101px) {
  .footer__info-line:nth-child(n+2) {
    margin-top: 12px;
  }
}

.footer__info-title {
  padding-left: 20px;
  display: inline-block;
  text-align: left;
  width: 73px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}
.footer__info-title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ED0E0;
}
@media screen and (min-width: 1101px) {
  .footer__info-title {
    padding-left: 16px;
    width: 110px;
    font-size: 16px;
  }
  .footer__info-title::before {
    top: 10px;
    left: 0px;
  }
}

.footer__info-text {
  flex-grow: 1;
  font-size: 12px;
}
@media screen and (min-width: 1101px) {
  .footer__info-text {
    font-size: 16px;
  }
}

.footer__page-top {
  margin-top: 20px;
  text-align: center;
}
.footer__page-top img {
  width: 77px;
  height: 81px;
}

.footer__wave {
  margin-top: 24px;
  background: linear-gradient(to bottom, #E9F6F8 30px, #67B0C7 30px);
  width: 151%;
  height: auto;
}
.footer__wave img {
  width: 100%;
}
@media screen and (min-width: 1101px) {
  .footer__wave {
    margin-top: 121px;
    background: linear-gradient(to bottom, #E9F6F8 100px, #67B0C7 100px);
    width: 100%;
  }
  .footer__wave img {
    width: 100%;
    height: 117px;
  }
}

.footer__copyright {
  padding-bottom: 24px;
  background: #67B0C7;
  width: 100%;
  text-align: center;
}
.footer__copyright small {
  color: #FFFFFF;
  font-size: 10px;
}
@media screen and (min-width: 1101px) {
  .footer__copyright {
    padding-bottom: 32px;
  }
  .footer__copyright small {
    font-size: 14px;
  }
}

.page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 80px;
  opacity: 0;
  z-index: 90;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}