@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  font-family: "Noto Serif JP", serif;
  color: #4A3636;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.wrap {
  background: #E9F6F8;
  overflow: hidden;
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 2000px;
    margin-inline: auto;
    padding-inline: 244px;
  }
}

@media screen and (max-width: 799px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .hidden-md {
    display: none;
  }
}
.section__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .section__content {
    margin-top: 120px;
  }
}

.button {
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #FFF;
  box-shadow: 0px 4px 0px 0px #4A3636;
  padding: 6px 22px 8px;
  transition: 0.5s;
}
.button:hover {
  background: #FFEE56;
}

.button__small {
  padding: 4px 24px;
}

.section__head {
  padding-top: 43.33px;
  text-align: center;
  position: relative;
}
.section__head::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 37.33px;
  height: 37.33px;
  content: "";
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .section__head::after {
    width: 48px;
    height: 48px;
  }
}

.section__head-text {
  font-family: "Courgette", cursive;
  font-size: 16px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .section__head-text {
    font-size: 20px;
    margin-top: 6px;
  }
}

.section__head-title {
  margin-top: 6px;
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  padding-bottom: 6px;
  border-bottom: 6px solid #FFEE56;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .section__head-title {
    font-size: 32px;
    padding-bottom: 10px;
  }
}

.link-text {
  text-decoration: underline;
}
.link-text:hover {
  color: #67B0C7;
}

/*=====================================================
# header
======================================================*/
.header {
  height: 64px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
}

.header__inner {
  padding-block: 16px;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 24px;
    padding-block: 20px;
    display: flex;
  }
}

.header__logo a img {
  width: 210px;
  height: 27px;
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 183px;
    height: 24px;
  }
}

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

.drawer__icon {
  width: 32px;
  height: 24px;
  position: relative;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(1), .drawer__icon.is-checked .drawer__icon-bar:nth-child(3) {
  top: 12px;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(1) {
  transform: rotate(45deg);
  width: 32px;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(3) {
  transform: rotate(-45deg);
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(2) {
  display: none;
}
.drawer__icon.is-checked .drawer__icon-bar .drawer__icon-dot {
  display: none;
}

.drawer__icon-bar {
  position: absolute;
  width: 32px;
  height: 3px;
  left: 0;
  background-color: #4A3636;
  transition: top 0.4s, transform 0.4s;
}
.drawer__icon-bar:nth-child(1) {
  width: 25.6px;
  top: 0;
}
.drawer__icon-bar:nth-child(2) {
  top: 10px;
}
.drawer__icon-bar:nth-child(3) {
  top: 21px;
}

.drawer__icon-dot {
  position: absolute;
  top: 0;
  left: 28px;
  width: 4px;
  height: 3px;
  background-color: #4A3636;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 799px) {
  .header__nav {
    display: none;
  }
}

.header__lists {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__link {
  font-size: 12px;
  transition: 0.3s;
}
.header__link:hover {
  color: #67B0C7;
  text-decoration: underline;
}

.button__small {
  font-weight: 700;
  width: 128px;
  height: 36px;
  padding-left: 22px;
  padding-right: 22px;
}

.drawer__content {
  background-color: #fff;
  width: 100%;
  height: calc(100% - 64px);
  position: fixed;
  right: 0;
  top: 64px;
  padding: 82px 65px;
  transform: translateY(-101%);
  transition: transform 0.4s;
  z-index: 5;
}
.drawer__content.is-checked {
  transform: translateY(0);
}

.drawer__content-menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.drawer__content-link {
  font-size: 3.7vw;
  line-height: 22.4px;
  text-align: center;
}

.drawer__content-button {
  text-align: center;
}

.drawer__button {
  font-size: 4.3vw;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  font-weight: 700;
}

/*=====================================================
# fv
======================================================*/
.first__view {
  position: relative;
}

.first__view-background__image img {
  width: 100%;
  height: 554px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .first__view-background__image img {
    width: 100%;
    height: 740px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.first__view-inner {
  position: absolute;
  top: 17px;
  width: 100%;
  max-width: 335px;
  transform: translateX(-50%);
  left: 50%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .first__view-inner {
    max-width: 848px;
    top: 35px;
    height: 900px;
  }
}

.first__view-description {
  text-shadow: 0px 0px 30px #FFF;
  font-family: "Kiwi Maru", serif;
  text-align: center;
  margin: 0 auto;
  width: 253px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .first__view-description {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    width: 500px;
  }
}

.first__view-lead {
  width: 335px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .first__view-lead {
    width: 520px;
    margin: 0 auto;
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .first__view-lead {
    width: 330px;
  }
}

.first__view-decoration-wrap {
  position: relative;
  height: 522px;
  margin-top: 10px;
}

.decoration__smart-phone {
  position: absolute;
  transform: translateX(50%);
  right: 50%;
  width: 200px;
  height: 408px;
  z-index: 2;
  bottom: 11px;
}
@media screen and (min-width: 768px) {
  .decoration__smart-phone {
    width: 250px;
    height: 510px;
    bottom: -9px;
  }
}

.decoration__smart-phone__wrap {
  position: absolute;
  top: calc(50% - 7px);
  left: 50%;
  width: calc(100% - 40px);
  overflow: hidden;
  text-align: center;
  background: #fff;
  border-radius: 12.8px;
  transform: translate(-50%, -50%);
}

.decoration__smart-phone__heading {
  padding: 3px 9.6px;
  font-size: 12.8px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
}
@media screen and (min-width: 768px) {
  .decoration__smart-phone__heading {
    font-size: 16px;
    font-weight: 700;
    padding: 8px 23px;
  }
}

.decoration__smart-phone__body {
  padding-top: 11.8px;
  padding-bottom: 13.2px;
}
@media screen and (min-width: 768px) {
  .decoration__smart-phone__body {
    padding: 24px 12px;
  }
}

@media screen and (min-width: 768px) {
  .decoration__smart-phone__sub-heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
  }
}
.decoration__smart-phone__sub-heading span {
  display: inline-block;
  padding-bottom: 1px;
  font-size: 12px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 768px) {
  .decoration__smart-phone__sub-heading span {
    font-size: 14px;
  }
}

.decoration__smart-phone__text {
  margin-top: 3.2px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .decoration__smart-phone__text {
    font-size: 16px;
    font-weight: 700;
  }
}

.decoration__smart-phone__button {
  margin-top: 19px;
}

.first__view__decoration-english__message {
  position: absolute;
  width: 142px;
  height: 80px;
  max-width: 100%;
  top: 7px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .first__view__decoration-english__message {
    width: 244px;
    height: 130px;
    left: 37px;
    top: -9px;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .first__view__decoration-english__message {
    left: 14px;
  }
}

.first__view-decoration__red-circle-text {
  position: absolute;
  width: 110px;
  height: 110px;
  right: 26px;
  top: 0;
}
@media screen and (min-width: 768px) {
  .first__view-decoration__red-circle-text {
    width: 180px;
    height: 180px;
    right: 127px;
    top: 7px;
  }
}
@media screen and (min-width: 768px) {
  .first__view-decoration__red-circle-text {
    right: 90px;
  }
}

.first__view-decoration__coffee-and-sweets {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 3;
  width: 90px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .first__view-decoration__coffee-and-sweets {
    width: 202px;
    height: 332px;
    bottom: -35px;
    left: 9px;
  }
}

.first__view-decoration__cats {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.decoration__cats1 {
  position: relative;
  width: 107px;
  height: 127px;
}
@media screen and (min-width: 768px) {
  .decoration__cats1 {
    width: 250px;
    height: 300px;
    top: 73px;
    right: 65px;
  }
}

.decoration__cats1__1 {
  width: 62px;
  height: 69px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .decoration__cats1__1 {
    width: 170px;
    height: 190px;
  }
}

.decoration__cats1__2 {
  width: 98px;
  height: 72px;
  position: absolute;
  right: 8px;
  bottom: 0;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .decoration__cats1__2 {
    width: 233px;
    height: 174px;
    right: -65px;
  }
}

/*=====================================================
# about
======================================================*/
.about {
  position: relative;
  padding-top: 35px;
  overflow: hidden;
  top: 156px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .about {
    top: 0;
    padding-top: 168px;
  }
}

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

.about__picture {
  position: absolute;
}

.about__picture-middle__headーleft {
  width: 250px;
  right: calc(50% + 530px);
  top: 155px;
  z-index: 0;
}

.about__picture-middle__headーright {
  top: 23px;
  left: calc(50% + 133px);
  width: 54px;
}
@media screen and (min-width: 768px) {
  .about__picture-middle__headーright {
    width: 100px;
    left: calc(50% + 488px);
    top: 96px;
  }
}

.about__picture-middle__left {
  top: 430px;
  right: calc(50% + 130px);
  width: 200px;
}
@media screen and (min-width: 768px) {
  .about__picture-middle__left {
    width: 480px;
    top: 250px;
    right: calc(50% + 612px);
  }
}

.about__picture-middle__right {
  top: 305px;
  left: calc(50% + 160px);
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .about__picture-middle__right {
    width: 480px;
    top: 250px;
    left: calc(50% + 560px);
  }
}

.about__picture-bottom__left {
  top: 740px;
  right: calc(50% + 50px);
  width: 138px;
}

.about__picture-middle__wave {
  width: 873.922px;
  height: 45.021px;
  top: 782px;
  left: calc(50% + 440px);
}

.about__picture-bottom__center {
  top: 795px;
  left: calc(50% - 3px);
  width: 133px;
  height: 65px;
}

.about__picture-bottom__right {
  top: 752px;
  left: calc(50% + 120px);
  width: 48px;
}

.about__picture-head__left {
  top: 30px;
  right: calc(50% + 46.5px);
  width: 87px;
  transform: rotate(-1deg);
  transform-origin: right bottom;
}
@media screen and (min-width: 768px) {
  .about__picture-head__left {
    top: 47px;
    width: 145px;
    right: calc(50% + 192px);
  }
}

.about__picture-head__right {
  top: 30px;
  left: calc(50% + 61px);
  width: 85px;
  transform: rotate(-1deg);
}
@media screen and (min-width: 768px) {
  .about__picture-head__right {
    top: 57px;
    width: 145px;
    left: calc(50% + 192px);
  }
}

.about__wrap {
  position: relative;
  background: #fff;
  padding: 37px 12px 45px;
  border-radius: 24px;
  width: 335px;
  z-index: 5;
  text-align: center;
  margin: 0 auto;
}
.about__wrap::after {
  position: absolute;
  content: "";
  bottom: -38px;
  transform: translateX(-50%);
  left: 50%;
  width: 110px;
  height: 38px;
  background: url(/img/arrow.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .about__wrap::after {
    width: 160px;
    height: 55px;
    bottom: -55px;
  }
}
@media screen and (min-width: 768px) {
  .about__wrap {
    width: 848px;
    padding-top: 55px;
    padding-bottom: 53px;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .about__wrap {
    width: 750px;
  }
}

.about__head::after {
  background: url(/img/フォーン.png) no-repeat center center/cover;
}

.about__box {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@media screen and (min-width: 768px) {
  .about__box {
    gap: 28px;
  }
}

.about__sub-title {
  font-weight: 700;
  padding-top: 24px;
  padding-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .about__sub-title {
    font-size: 16px;
    padding-top: 36px;
    padding-bottom: 0px;
  }
}

.about__text {
  font-size: 12px;
}
.about__text span {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 16px;
    font-weight: 700;
  }
}

.about__text-gift {
  padding: 8px 0px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px dashed #9ED0E0;
}
@media screen and (min-width: 768px) {
  .about__text-gift {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    padding-top: 18px;
  }
}

.about__button {
  margin-top: 14px;
}

.about__section-button {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__section-button {
    font-size: 20px;
    padding: 6px 40px 8px;
  }
}

.about__bottom {
  margin-top: 138px;
}
@media screen and (min-width: 768px) {
  .about__bottom {
    margin-top: 167px;
  }
}

.about__word {
  position: relative;
  z-index: 0;
}
.about__word img {
  width: 356px;
}
@media screen and (min-width: 768px) {
  .about__word {
    text-align: center;
  }
  .about__word img {
    width: 893px;
  }
}

.about__slider {
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .about__slider {
    margin-top: -3px;
  }
}

.swiper-wrapper {
  display: flex;
  gap: 10px;
  transition-timing-function: linear;
}

.about-swiper__slide {
  width: 100px !important;
  height: 100px !important;
}
@media screen and (min-width: 768px) {
  .about-swiper__slide {
    width: 200px !important;
    height: 200px !important;
    margin-top: -5px;
  }
}

/*=====================================================
# how-to
======================================================*/
.how-to {
  position: relative;
  overflow: hidden;
  margin-top: 180px;
  padding-bottom: 38px;
}
@media screen and (min-width: 768px) {
  .how-to {
    margin-top: 67px;
  }
}

@media screen and (min-width: 768px) {
  .how-to__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.how-to__decoration {
  position: absolute;
}

.how-to__decoration-map {
  width: 149px;
  top: 46px;
  right: calc(50% + 40px);
}
@media screen and (min-width: 768px) {
  .how-to__decoration-map {
    width: 460px;
    height: 860px;
    top: -7px;
    right: calc(50% + 270px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .how-to__decoration-map {
    width: 350px;
    right: calc(50% + 80px);
  }
}

.how-to__decoration-cats {
  width: 100%;
}

.decoration-cats2__1 {
  position: absolute;
  top: 3px;
  left: calc(50% + 43px);
}
.decoration-cats2__1 img {
  width: 94px;
}
@media screen and (min-width: 768px) {
  .decoration-cats2__1 img {
    width: 238px;
    height: 141px;
  }
}
@media screen and (min-width: 768px) {
  .decoration-cats2__1 {
    top: -31px;
    left: calc(50% + 275px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .decoration-cats2__1 {
    left: calc(50% + 100px);
    top: 45px;
  }
  .decoration-cats2__1 img {
    width: 120px;
    height: 70px;
  }
}

.decoration-cats2__2 {
  position: absolute;
  top: 8px;
  left: calc(50% + 105px);
}
@media screen and (min-width: 768px) {
  .decoration-cats2__2 {
    left: calc(50% + 428px);
    top: -23px;
  }
}
.decoration-cats2__2 img {
  width: 105px;
}
@media screen and (min-width: 768px) {
  .decoration-cats2__2 img {
    width: 214px;
    height: 181px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .decoration-cats2__2 {
    left: calc(50% + 195px);
    top: 45px;
  }
  .decoration-cats2__2 img {
    width: 120px;
    height: 70px;
  }
}

.how-to__decoration-pawpads-1 {
  width: 55px;
  top: 113px;
  left: calc(50% + 115px);
}
@media screen and (min-width: 768px) {
  .how-to__decoration-pawpads-1 {
    width: 100px;
    height: 220px;
    top: 200px;
    left: calc(50% + 618px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .how-to__decoration-pawpads-1 {
    left: calc(50% + 200px);
  }
}

.how-to__decoration-pawpads-2 {
  width: 55px;
  top: 590px;
  right: calc(50% + 115px);
  width: 100px;
  height: 220px;
  top: 250px;
  right: calc(50% + 615px);
}
@media screen and (min-width: 768px) {
  .how-to__decoration-pawpads-2 {
    top: 635px;
  }
}

.how-to__decoration-pawpads-3 {
  width: 55px;
  top: 925px;
  left: calc(50% + 115px);
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .how-to__decoration-pawpads-3 {
    width: 100px;
    height: 220px;
    left: calc(50% + 200px);
  }
}

.how-to__head {
  margin-top: 40px;
}
.how-to__head::after {
  background: url(/img/camra.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .how-to__head {
    margin-top: 60px;
  }
}

.how-to__steps {
  margin-top: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 58px;
}
@media screen and (min-width: 768px) {
  .how-to__steps {
    flex-direction: row;
    justify-content: center;
    gap: 45px;
    top: 7px;
    left: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .how-to__steps {
    flex-direction: column;
  }
}

.how-to__step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.how-to__step:not(:last-child)::before {
  position: absolute;
  content: "";
  bottom: -65px;
  transform: translateX(50%);
  right: 50%;
  width: 7px;
  height: 34px;
  background: url(/img/img_step_line.svg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .how-to__step:not(:last-child)::before {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .how-to__step {
    gap: 20px;
  }
  .how-to__step:nth-child(2) {
    margin-top: 75px;
  }
  .how-to__step:nth-child(1)::after {
    position: absolute;
    content: "";
    width: 113px;
    height: 24px;
    top: 210px;
    right: -60px;
    background: url(/img/img_step_line.png) no-repeat center center/cover;
  }
  .how-to__step:nth-child(2)::after {
    position: absolute;
    content: "";
    width: 113px;
    height: 24px;
    top: 133px;
    transform: translateX(-50%);
    right: -40%;
    background: url(/img/img_step_line.png) no-repeat center center/cover;
  }
}

.how-to__step-img img {
  width: 196px;
}
@media screen and (min-width: 768px) {
  .how-to__step-img img {
    width: 280px;
  }
}

.how-to__step-lead {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .how-to__step-lead {
    font-size: 20px;
    line-height: 32px;
  }
}

.how-to__step-text {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .how-to__step-text {
    font-size: 16px;
  }
  .how-to__step-text strong {
    font-weight: 700;
  }
}

.how-to__instagram {
  width: 226px;
  padding: 8px 12px 8px 40px;
  background: #fff;
  top: 6px;
  position: relative;
}
.how-to__instagram::before {
  position: absolute;
  content: "";
  left: 12px;
  width: 20px;
  height: 20px;
  background: url(/img/instagram.png) no-repeat center center/cover;
  transform: translateY(-50%);
  top: 50%;
}
@media screen and (min-width: 768px) {
  .how-to__instagram {
    font-size: 16px;
    line-height: 25.6px;
    width: 256px;
    height: 42px;
  }
}

.how-to__button {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .how-to__button {
    margin-top: 63px;
    text-align: center;
  }
}

.how-to__section-button {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .how-to__section-button {
    font-size: 20px;
    line-height: 32px;
    padding: 9px 38px 14px;
  }
}

/*=====================================================
# price
======================================================*/
.price {
  position: relative;
  margin-top: 90px;
}
@media screen and (min-width: 768px) {
  .price {
    margin-top: 200px;
  }
}

.price__inner {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .price__inner {
    position: relative;
    max-width: 1024px;
  }
  .price__inner::before {
    position: absolute;
    content: "";
    top: -75px;
    left: 0;
    width: 315px;
    height: 86px;
    background: url(/img/img_bg_triangle_left.png) no-repeat center center/cover;
  }
  .price__inner::after {
    position: absolute;
    content: "";
    top: -75px;
    right: 0;
    width: 315px;
    height: 86px;
    background: url(/img/img_bg_triangle_right.png) no-repeat center center/cover;
  }
}

.price__head-content {
  background-color: #fff;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  padding: 20px;
  position: absolute;
  top: -84px;
  transform: translateX(50%);
  right: 50%;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .price__head-content {
    width: 320px;
    height: 312px;
    top: -95px;
  }
}

.price__head::after {
  background: url(/img/gift.png) no-repeat center center/cover;
}

@media screen and (min-width: 768px) {
  .price__head-text {
    margin-top: 16px;
  }
}

.price__content {
  background-color: #fff;
  position: relative;
  padding: 56px 20px 45px;
  border-radius: 24px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .price__content {
    top: 50px;
  }
}

.price__text {
  position: relative;
  font-size: 12px;
  z-index: 4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price__text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 25.6px;
  }
}

.price__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 39px;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .price__cards {
    row-gap: 72px;
    -moz-column-gap: 32px;
         column-gap: 32px;
    margin-top: 82px;
    position: relative;
    z-index: 4;
  }
}

.price__card {
  position: relative;
  width: calc(50% - 7.5px);
  background-color: #D9D9D9;
  border-radius: 8px;
}
.price__card::after {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  bottom: 0;
  right: 0;
  background: url(/img/img_prizes_zoom.png) no-repeat center center/cover;
  border-radius: 0 0 8px 0;
}
@media screen and (min-width: 768px) {
  .price__card::after {
    width: 64px;
    height: 64px;
  }
}
.price__card:hover {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .price__card:nth-of-type(1) {
    width: 45%;
    height: 460px;
  }
  .price__card:nth-of-type(2) {
    width: 45%;
    height: 460px;
  }
  .price__card:nth-of-type(3) {
    width: 29%;
    height: 320px;
  }
  .price__card:nth-of-type(4) {
    width: 29%;
    height: 320px;
  }
  .price__card:nth-of-type(5) {
    width: 29%;
    height: 320px;
  }
}

@media screen and (min-width: 768px) {
  .price__card-large .price__card-number {
    top: -52px;
  }
  .price__card-large .price__card-number img {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .price__card-large .price__card-text {
    font-size: 20px;
    margin-top: 28px;
  }
}
@media screen and (min-width: 768px) {
  .price__card-large::after {
    width: 100px;
    height: 100px;
  }
}

.price__card-number {
  position: absolute;
  top: -24px;
  transform: translateX(50%);
  right: 50%;
}
@media screen and (min-width: 768px) {
  .price__card-number {
    top: -35px;
  }
}
.price__card-number img {
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .price__card-number img {
    width: 80px;
    height: 80px;
  }
}

.price__card-container {
  height: 196px;
}
@media screen and (min-width: 768px) {
  .price__card-container {
    height: 320px;
  }
}

@media screen and (min-width: 768px) {
  .price__card-container-large {
    height: 480px;
  }
}

.prizes-card__image {
  width: 100%;
  height: 140px;
}
@media screen and (min-width: 768px) {
  .prizes-card__image {
    height: auto;
  }
}
.prizes-card__image img {
  border-radius: 8px 8px 0 0;
  width: inherit;
  height: inherit;
}

.price__card-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 56px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price__card-text {
    font-size: 16px;
    margin-top: 14px;
  }
}

.price__button {
  margin-top: -15px;
}

.price__cover-background {
  margin-top: -45px;
  display: inline-block;
}
.price__cover-background img {
  width: 580px;
  height: 260px;
}
@media screen and (min-width: 768px) {
  .price__cover-background img {
    width: 100%;
    height: 649px;
  }
}
@media screen and (min-width: 768px) {
  .price__cover-background {
    margin-top: 65px;
  }
}

.price__modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 345px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  padding: 0;
  padding-bottom: 19px;
  text-align: center;
  background: #fff;
  border: none;
  border-radius: 24px;
  z-index: 50;
  overscroll-behavior-y: none;
}
.price__modal::-webkit-backdrop {
  opacity: 0.2;
  background: #000;
}
.price__modal::backdrop {
  opacity: 0.2;
  background: #000;
}

.price__modal-img {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-top: -40px;
}
.price__modal-img img {
  border-radius: 24px 24px 0 0;
}

.price__modal-title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 39px;
}

.price__modal-text {
  font-size: 12px;
  margin-top: 12px;
  margin-bottom: 16px;
}

.price__modal-button {
  font-size: 16px;
  font-weight: 700;
}

/*=====================================================
# spots
======================================================*/
.spots {
  position: relative;
  background-color: #67B0C7;
  padding-bottom: 27px;
}
@media screen and (min-width: 768px) {
  .spots {
    top: -122px;
  }
}
.spots::before {
  position: absolute;
  content: "";
  top: -45px;
  width: 100%;
  height: 100px;
  background: url(/img/img_wave-top.png);
}
@media screen and (min-width: 768px) {
  .spots::before {
    height: 150px;
    top: -119px;
    background: url(/img/wave_top-pc.svg);
  }
}
.spots::after {
  position: absolute;
  content: "";
  bottom: -45px;
  width: 100%;
  height: 46px;
  background: url(/img/img_wave-bottom.png);
}
@media screen and (min-width: 768px) {
  .spots::after {
    background: url(/img/wave_bottom-pc.svg);
    height: 119px;
    bottom: -97px;
  }
}

.spots__decoration-pawpads img {
  width: 100px;
  height: 220px;
  position: absolute;
  bottom: 10px;
  left: 36px;
}
@media screen and (min-width: 768px) {
  .spots__decoration-pawpads img {
    bottom: 22px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .spots__decoration-pawpads {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .spots__title {
    display: flex;
    -moz-column-gap: 32px;
         column-gap: 32px;
    padding-left: max(30px, 50vw - 512px);
    align-items: center;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .spots__head {
    width: 40px;
  }
}

.spots__lead {
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateX(-50%);
  left: 55%;
  position: relative;
}
.spots__lead::before {
  position: absolute;
  content: "";
  transform: translateY(-50%);
  top: 50%;
  left: -36px;
  width: 28px;
  height: 28px;
  background: url(/img/Icon.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .spots__lead::before {
    top: -70px;
    transform: translateX(-50%);
    left: 50%;
    width: 56px;
    height: 56px;
  }
}
@media screen and (min-width: 768px) {
  .spots__lead {
    writing-mode: vertical-rl;
    font-size: 40px;
    letter-spacing: 9.5px;
    left: 67%;
  }
}

@media screen and (min-width: 768px) {
  .spots__slider {
    margin-top: 120px;
  }
}

.spots-swiper {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .spots-swiper {
    margin-top: 0;
  }
}

.swiper-wrapper {
  gap: 16px;
}

.spots-swiper__slide {
  background-color: #fff;
  width: 240px;
  height: 400px;
  border-radius: 12px;
}
.spots-swiper__slide img {
  width: 100%;
  height: 180px;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 768px) {
  .spots-swiper__slide img {
    height: 240px;
  }
}
@media screen and (min-width: 768px) {
  .spots-swiper__slide {
    width: 344px;
    height: 545px;
  }
}

.spots__card-container {
  padding: 16px 24px;
}
@media screen and (min-width: 768px) {
  .spots__card-container {
    padding: 16px 32px;
  }
}

.spots__card-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .spots__card-title {
    font-size: 20px;
  }
}

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

.swiper-button-prev {
  width: 80px;
  height: 80px;
  background: url(/onomichi/img/prev.png) no-repeat center center/cover;
  position: absolute;
  left: 283px;
  top: 509px;
}

.swiper-button-next {
  width: 80px;
  height: 80px;
  background: url(/onomichi/img/next.png) no-repeat center center/cover;
  position: absolute;
  right: 283px;
  top: 509px;
}

@media screen and (min-width: 768px) {
  .spots__bottom {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
  }
}

.spots__decoration-english img {
  margin: 0 auto;
  width: 255px;
  display: block;
}
@media screen and (min-width: 768px) {
  .spots__decoration-english img {
    width: 495px;
  }
}

@media screen and (min-width: 768px) {
  .spots__text-wrap {
    margin-top: -10px;
  }
}

.spots__text {
  text-align: center;
  color: #fff;
  font-size: 11.4px;
  margin-top: 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .spots__text {
    font-size: 16px;
  }
}

.spots__button {
  text-align: center;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .spots__button a {
    margin-top: -11px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    display: inline-block;
    width: 437px;
    height: 50px;
    padding: 10px 0 12px;
    justify-content: center;
    align-items: center;
  }
}

.spots-hidden {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .spots-hidden {
    display: block;
  }
}

/*=====================================================
# qa
======================================================*/
.qa {
  margin-top: 85px;
}
@media screen and (min-width: 768px) {
  .qa {
    margin-top: 102px;
  }
}

.qa__inner {
  padding-inline: 20px;
}

.qa__head::after {
  background: url(/img/qa-Icon.png) no-repeat center center/cover;
}

.qa__boxes {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 40px;
    gap: 28px;
  }
}

.qa__box {
  border-radius: 12px;
  border: 2px solid #4A3636;
}

.qa__box-heading {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 11px 16px 11px 16px;
  background: #fff;
  width: 100%;
  border-radius: 12px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .qa__box-heading {
    padding: 24px 19px 12px 24px;
    gap: 20px;
  }
}

.qa__box-heading__icon {
  width: 22px;
  height: 30px;
  color: #9ED0E0;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .qa__box-heading__icon {
    font-size: 32px;
    line-height: 1.25;
    display: flex;
    align-items: center;
  }
}

.qa__box-heading__text {
  font-weight: 700;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .qa__box-heading__text {
    font-size: 20px;
  }
}

.qa__box-heading__toggle {
  position: relative;
  width: 26px;
  height: 26px;
  top: 10px;
  border-radius: 50%;
  background: #9ED0E0;
}
@media screen and (min-width: 768px) {
  .qa__box-heading__toggle {
    width: 48px;
    height: 48px;
    top: -4px;
  }
}
.qa__box-heading__toggle::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .qa__box-heading__toggle::before {
    width: 19px;
  }
}
.qa__box-heading__toggle::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .qa__box-heading__toggle::after {
    height: 19px;
  }
}
.qa__box-heading__toggle.is-open::after {
  display: none;
}

.qa__box-body {
  display: none;
}

.qa__box-answer {
  display: flex;
  flex-direction: row;
  padding: 17px 16px 14px 16px;
  background: #F5F5F5;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 768px) {
  .qa__box-answer {
    padding: 29px 24px 19px 24px;
  }
}

.qa__box-answer__icon {
  width: 17px;
  height: 30px;
  color: #9ED0E0;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .qa__box-answer__icon {
    font-size: 32px;
    display: flex;
    align-items: center;
  }
}

.qa__box-answer__text {
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .qa__box-answer__text {
    font-size: 16px;
    margin-left: 20px;
  }
}

/*=====================================================
# entry-requirements
======================================================*/
.entry-requirements {
  margin-top: 7px;
}
@media screen and (min-width: 768px) {
  .entry-requirements {
    margin-top: 98px;
  }
}

.entry-requirements-inner {
  padding-inline: 20px;
  padding-top: 24px;
  padding-bottom: 28px;
  max-width: 1050px;
}
@media screen and (min-width: 768px) {
  .entry-requirements-inner {
    padding-bottom: 109px;
  }
}

.entry-requirements__contents {
  background: #fff;
  padding-top: 15.5px;
  padding-right: 15.5px;
  padding-bottom: 20px;
  padding-left: 14px;
  border: 8px solid #FFF;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media screen and (min-width: 768px) {
  .entry-requirements__contents {
    padding: 40px 56px;
  }
}

.entry-requirements__head::after {
  background: url(/img/entry-icon.png) no-repeat center center/cover;
}

.entry-requirements__table {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .entry-requirements__table {
    margin-top: 18px;
  }
}

.entry-requirement-table tr:not(:last-child) {
  border-bottom: 1px solid #CCC;
}

.entry-requirement-table__row {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .entry-requirement-table__row {
    flex-direction: row;
  }
}

.entry-requirement-table__header {
  font-weight: 700;
  padding-left: 15px;
  position: relative;
}
.entry-requirement-table__header::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ED0E0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .entry-requirement-table__header {
    font-size: 16px;
    width: 217px;
    flex-shrink: 0;
    height: 26px;
  }
}

.entry-requirement-table__data {
  padding-bottom: 15px;
  font-size: 12px;
}
.entry-requirement-table__data li {
  position: relative;
  padding-left: 1.5em;
  line-height: 19px;
}
.entry-requirement-table__data li::before {
  position: absolute;
  top: 0.1em;
  left: 0.2em;
  content: "・";
}
@media screen and (min-width: 768px) {
  .entry-requirement-table__data li {
    line-height: 26px;
  }
}
@media screen and (min-width: 768px) {
  .entry-requirement-table__data {
    font-size: 16px;
    padding-bottom: 12px;
  }
}

.entry-requirements__cover-background img {
  width: 100%;
}

/*=====================================================
# contact
======================================================*/
.contact {
  background: #fff;
}

.contact__inner {
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 640px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 908px;
    padding-top: 128px;
    padding-bottom: 120px;
    padding-left: 29px;
    padding-right: 29px;
  }
}

.contact__head::after {
  background: url(/img/contact-icon.png) no-repeat center center/cover;
}

.contact__text {
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .contact__text {
    padding-top: 32px;
    padding-bottom: 39px;
    font-size: 16px;
  }
}

.contact__fields {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .contact__fields {
    gap: 30px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .form-field {
    flex-direction: row;
    gap: 40px;
    max-width: 908px;
  }
}

.form-field__heading {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .form-field__heading {
    width: 188px;
    flex-shrink: 0;
    justify-content: flex-start;
  }
}

.form-field__label {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field__tag {
  width: 40px;
  height: 27px;
  background-color: #CE2073;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 12px;
}

.form-field__item {
  width: 100%;
}

.form-text {
  width: 100%;
  height: 56px;
  padding: 16px;
  background-color: #F5F5F5;
  border: none;
  border-radius: 8px;
}
.form-text::-moz-placeholder {
  opacity: 0.5;
}
.form-text::placeholder {
  opacity: 0.5;
}
.form-text:focus {
  background-color: #E9F6F8;
  border: 1px solid #9ed0e0;
  outline: none;
}
.form-text.is-error {
  background-color: #fff0f7;
  border: 1px solid #ce2073;
}
@media screen and (min-width: 768px) {
  .form-text {
    font-size: 16px;
    padding: 10px;
  }
}

.form-select {
  width: 100%;
  height: 56px;
  background-color: #F5F5F5;
  border: none;
  padding: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 8px;
  position: relative;
  background-image: url(/onomichi/img/select-arrow.png), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 10.65px, center center;
  background-size: 32px 32px, cover;
}
.form-select.is-error {
  background-image: url(/img/select-arrow.png), linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
  border: 1px solid #ce2073;
}
@media screen and (min-width: 768px) {
  .form-select {
    font-size: 16px;
    padding: 18px 10px 10px 10px;
  }
}

.form-field__radios {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .form-field__radios {
    gap: 30px;
  }
}

.from-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.from-radio__input:checked + .from-radio__text::after {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .from-radio__input:active + .from-radio__text::before {
    border: 1px solid #9ed0e0;
  }
}

.from-radio__text {
  font-weight: 700;
  padding-left: 32px;
  position: relative;
}
.from-radio__text::before, .from-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #f5f5f5;
}
.from-radio__text::before {
  width: 24px;
  height: 24px;
  left: 0;
  border: 1px solid transparent;
}
.from-radio__text::after {
  width: 10px;
  height: 10px;
  background: #9ed0e0;
  left: 7px;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .from-radio__text {
    font-size: 16px;
    padding-left: 27px;
  }
}

@media screen and (min-width: 768px) {
  .form-field--top-alignment {
    align-items: flex-start;
  }
}

.form-textarea {
  width: 100%;
  background-color: #F5F5F5;
  padding: 16px;
  height: 167px;
  border: none;
}
.form-textarea::-moz-placeholder {
  opacity: 0.5;
}
.form-textarea::placeholder {
  opacity: 0.5;
}
.form-textarea:focus {
  background-color: #E9F6F8;
  border: 1px solid #9ed0e0;
  outline: none;
}
.form-textarea.is-error {
  background-color: #fff0f7;
  border: 1px solid #ce2073;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    font-size: 16px;
  }
}

.contact__privacy {
  text-align: center;
  padding-top: 17px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    padding-top: 42px;
    padding-bottom: 39px;
  }
}

.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__input.is-error + .form-checkbox__text::before {
  background-color: #fff0f7;
  border: 1px solid #ce2073;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #F5F5F5;
  transition: border-color 0.3s;
}
.form-checkbox__text::after {
  width: 14px;
  height: 9px;
  left: 7px;
  margin-top: -1.2px;
  background: url(/img/check-box_check.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text {
    font-size: 16px;
    padding-left: 39px;
  }
}

.contact__button {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.button--submit {
  padding: 6px 24px 8px 24px;
}
@media screen and (min-width: 768px) {
  .button--submit {
    padding: 6px 37px 8px;
  }
}

/*=====================================================
# footer
======================================================*/
.footer {
  position: relative;
}

.footer__inner {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 117px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .footer__inner {
    padding-inline: 20px;
  }
}

.footer__decoration-pawpads {
  position: absolute;
  right: 80px;
  top: 80px;
}
.footer__decoration-pawpads img {
  width: 100px;
  height: 220px;
}

.footer__sns-links {
  text-align: center;
}

.sns-links__title {
  font-size: 18px;
  line-height: 1.25;
  font-family: "Josefin Sans", sans-serif;
  position: relative;
}
.sns-links__title::before {
  position: absolute;
  content: "";
  left: -7px;
  height: 18px;
  width: 2px;
  background: #4A3636;
  transform: rotate(-20deg) translateY(-50%);
  top: 50%;
}
.sns-links__title::after {
  position: absolute;
  content: "";
  right: -7px;
  height: 18px;
  width: 2px;
  background: #4A3636;
  transform: rotate(20deg) translateY(-50%);
  top: 50%;
}
@media screen and (min-width: 768px) {
  .sns-links__title {
    font-size: 24px;
  }
}

.sns-links__nav {
  padding-top: 24px;
  padding-bottom: 9px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .sns-links__nav {
    padding-bottom: 40px;
  }
}

.sns-button img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .sns-button img {
    width: 40px;
    height: 40px;
  }
}

.footer__decoration-english {
  text-align: center;
}
.footer__decoration-english img {
  width: 755px;
}

.footer__address-wrap {
  border-radius: 16px;
}

.address-wrap {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1400px) {
  .address-wrap {
    flex-direction: row-reverse;
    max-width: 1084px;
  }
}

.address-wrap__map {
  width: 100%;
}
.address-wrap__map iframe {
  border-radius: 16px 16px 0 0;
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .address-wrap__map iframe {
    border-radius: 0 16px 16px 0;
  }
}
@media screen and (min-width: 768px) {
  .address-wrap__map {
    width: 50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .address-wrap__map {
    width: 100%;
    padding-inline: 20px;
  }
}

.address-wrap__body {
  padding: 24px;
  background: #fff;
  border-radius: 0 0 16px 16px;
}
@media screen and (min-width: 768px) {
  .address-wrap__body {
    width: 50%;
    padding: 98px 62px 50px;
    border-radius: 16px 0 0 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .address-wrap__body {
    width: 100%;
  }
}

.address-wrap__logo {
  text-align: center;
}
.address-wrap__logo img {
  width: 153px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .address-wrap__logo {
    text-align: left;
  }
  .address-wrap__logo img {
    width: 183px;
    height: 24px;
  }
}

.address-wrap__info {
  margin-top: 31px;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .address-wrap__info {
    margin-top: 26px;
    padding-left: 6px;
    gap: 13px;
  }
}

.address-wrap__info-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .address-wrap__info-row {
    gap: 22px;
  }
}

.address-wrap__info-term {
  width: 56px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  padding-left: 8px;
  position: relative;
}
.address-wrap__info-term::before {
  position: absolute;
  content: "";
  left: -8px;
  width: 8px;
  height: 8px;
  background: #9ED0E0;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .address-wrap__info-term {
    font-size: 16px;
    width: 90px;
  }
}

.address-wrap__info-description {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .address-wrap__info-description {
    font-size: 16px;
  }
}

.footer__pagetop {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .footer__pagetop {
    position: fixed;
    right: 40px;
    bottom: 192px;
    z-index: 10;
  }
}

.pagetop {
  width: 75px;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 100px;
    height: 104px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
}

.footer__bottom {
  margin-top: 48px;
  padding-bottom: 45px;
  width: 100%;
  background: #67B0C7;
  text-align: center;
  position: relative;
}
.footer__bottom::before {
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 45px;
  content: "";
  background-image: url(/img/img_wave-top.png), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
  background-repeat: repeat-x;
  background-position: left -6px center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .footer__bottom::before {
    background-image: url(/img/img_wave-top.png);
    height: 121px;
    top: -100px;
  }
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    margin-top: 200px;
    padding-bottom: 55px;
  }
}

.footer__copyright {
  color: #fff;
  display: block;
  position: relative;
  z-index: 3;
  top: 22px;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 14px;
  }
}