@charset "UTF-8";
/* フォントファミリー
-----------------------------------------------*/
/* フォント
-----------------------------------------------*/
/* カラー
-----------------------------------------------*/
/* インナー幅
-----------------------------------------------*/
/* 重なり順の定義
-----------------------------------------------*/
/*==============================================
#共通クラス
===============================================*/
body {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2rem;
  color: #4A3636;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #E9F6F8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body.no-scroll {
  overflow: hidden;
}

main {
  overflow: hidden;
}

.inner {
  min-width: 320px;
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 1025px) {
  .inner {
    max-width: 1024px;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

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

.is-tab {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .is-tab {
    display: none;
  }
}

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

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

/* ボタン
-----------------------------------------------*/
.btn,
.btn--small,
.btn--large {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 2.5rem;
  padding: 0.375rem 1.5rem 0.5rem 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 2.5rem;
  border: 2px solid #4A3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn:hover,
.btn--small:hover,
.btn--large:hover {
  background: #FFEE56;
}

.btn--small {
  height: 2rem;
  font-size: 0.875rem;
  line-height: 1.4rem;
}

.btn--large {
  height: 3.5rem;
  padding: 0.625rem 2.5rem 0.75rem 2.5rem;
  border: 3px solid #4A3636;
  font-size: 1.25rem;
  line-height: 2rem;
}

/* 見出しタイトル
-----------------------------------------------*/
.section-heading {
  text-align: center;
}

.section-icon {
  width: 2.33331rem;
  height: 2.33331rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .section-icon {
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .section-icon {
    width: 3rem;
    height: 3rem;
  }
}
.section-icon img {
  width: 100%;
}

.section__titile--en {
  font-family: "Courgette", "cursive";
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
  margin-top: 0.38rem;
}
@media screen and (min-width: 768px) {
  .section__titile--en {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-top: 0.4em;
  }
}
@media screen and (min-width: 1025px) {
  .section__titile--en {
    font-size: 1.25rem;
    line-height: 1.5625rem;
    margin-top: 0.5em;
  }
}

.section__title--ja {
  display: inline-block;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  padding-bottom: 0.75rem;
  border-bottom: 6px solid #FFEE56;
  margin-top: 0.37rem;
}
@media screen and (min-width: 768px) {
  .section__title--ja {
    font-size: 1.5rem;
    line-height: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 7px solid #FFEE56;
    margin-top: 0.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .section__title--ja {
    font-size: 2rem;
    line-height: 2.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 8px solid #FFEE56;
    margin-top: 0.5rem;
  }
}

/*==============================================
#header
===============================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 4rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .header {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 1.5rem;
}

.header-logo {
  width: 13.125rem;
  height: 1.6875rem;
}

.header-logo__link {
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header-logo__link {
    width: 87%;
  }
}

/* ドロワー
-----------------------------------------------*/
.drawer-icon {
  padding: 0.225rem 0rem 0.025rem 0rem;
  width: 2rem;
  height: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.drawer-icon .bar {
  display: block;
  width: 2rem;
  height: 0.1875rem;
  background: #4A3636;
  border-radius: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.drawer-icon .bar1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.1rem;
}
.drawer-icon .bar1-1 {
  width: 1.6rem;
}
.drawer-icon .bar1-2 {
  width: 0.3rem;
}
.drawer-icon.js-open .bar1 {
  display: none;
}
.drawer-icon.js-open .bar2 {
  -webkit-transform: translateY(9px) rotate(40deg);
          transform: translateY(9px) rotate(40deg);
}
.drawer-icon.js-open .bar3 {
  -webkit-transform: translateY(-12px) rotate(-40deg);
          transform: translateY(-12px) rotate(-40deg);
}

@media screen and (min-width: 1025px) {
  .drawer-icon.is-sp {
    display: none;
  }
}

.drawer-menu {
  background-color: #fff;
  position: fixed;
  z-index: 19;
  top: 4rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateY(-300%);
          transform: translateY(-300%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.drawer-menu.js-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-list {
  padding: 5.125rem 7.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}

.drawer-item {
  font-size: 0.875rem;
  line-height: 1.4rem;
  white-space: nowrap;
}

.drawer-item__link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.drawer-item__link:hover {
  border-bottom: 1px solid #67B0C7;
  color: #67B0C7;
}

/* pc用ヘッダー
-----------------------------------------------*/
.gnav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.gnav__list {
  font-size: 0.75rem;
  line-height: 1.2rem;
}
.gnav__list + .gnav__list {
  padding-left: 0.75rem;
}

.gnav__link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.gnav__link:hover {
  font-size: 0.75rem;
  color: #67B0C7;
  border-bottom: 1px solid #67B0C7;
  cursor: pointer;
}

.gnav__btn {
  padding-left: 1rem;
}

.gnav__btn__link {
  padding: 0.375rem 1rem 0.5rem 1rem;
}

/*==============================================
#fv
===============================================*/
.fv {
  margin-top: 4rem;
  position: relative;
  padding-bottom: 9.75rem;
}
@media screen and (min-width: 1025px) {
  .fv {
    padding-bottom: 6.06rem;
  }
}

.fv__background {
  display: block;
  border-radius: 0rem 0rem 1.5rem 1.5rem;
  overflow: hidden;
  max-width: 100vw;
  height: 34.625rem;
}
@media screen and (min-width: 1025px) {
  .fv__background {
    border-radius: 0rem 0rem 2rem 2rem;
    height: 46.25rem;
  }
}
.fv__background source,
.fv__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.fv-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-width: 19rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .fv-inner {
    max-width: 53rem;
  }
}

.fv__lead {
  font-family: "Kiwi Maru", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2rem;
  text-shadow: 0px 0px 30px #FFF;
  margin-top: 1.06rem;
}
@media screen and (min-width: 1025px) {
  .fv__lead {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.875rem;
    margin-top: 2.12rem;
  }
}

.fv__title {
  margin-top: 1.25rem;
  max-width: 20.9375rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .fv__title {
    max-width: 32.5rem;
    margin-top: 1.3rem;
  }
}

.fv-deco__wrap {
  margin-top: 7.06rem;
  width: 12.3rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .fv-deco__wrap {
    margin-top: 2.06rem;
    margin-left: 17rem;
    margin-right: 17rem;
  }
}

.fv-phone {
  width: 12.4rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .fv-phone {
    width: 15.625rem;
  }
}

.fv-phone__card {
  width: 10rem;
  padding-bottom: 1.2rem;
  background: #fff;
  border-radius: 0.8rem;
  text-align: center;
  position: absolute;
  top: 7.66rem;
  left: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .fv-phone__card {
    width: 12.5rem;
    padding-bottom: 1.5rem;
    border-radius: 1rem;
    top: 9.6rem;
    left: 1.65rem;
  }
}

.fv-card__title {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.28rem;
  color: #fff;
  padding: 0.4rem 0.6rem;
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
  border-radius: 0.8rem 0.8rem 0 0;
}
@media screen and (min-width: 1025px) {
  .fv-card__title {
    font-size: 1rem;
    line-height: 1.6rem;
    padding: 0.5rem 0.75rem;
    border-radius: 1rem 1rem 0 0;
  }
}

.fv-card__body {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  font-size: 0.75rem;
  line-height: 1.2rem;
}
@media screen and (min-width: 1025px) {
  .fv-card__body {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4rem;
  }
}

.fv-card__sub-title {
  margin: 0.8rem auto 0;
  width: 3rem;
  font-weight: 400;
  border-bottom: 2.4px solid #CE2073;
}
@media screen and (min-width: 1025px) {
  .fv-card__sub-title {
    margin: 1rem auto 0;
    width: 3.5rem;
    border-bottom: 3px solid #CE2073;
  }
}

.fv-card__text {
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .fv-card__text {
    margin-top: 0.3rem;
  }
}

.fv-card__btn {
  margin-top: 0.8rem;
}
@media screen and (min-width: 1025px) {
  .fv-card__btn {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .fv-card__btn .btn--small {
    font-size: 1rem;
    height: 2.5rem;
    line-height: 1.6rem;
  }
}

.fv-fukidashi {
  width: 8.875rem;
  height: 5rem;
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 7.87rem;
}
@media screen and (min-width: 1025px) {
  .fv-fukidashi {
    width: 15.25rem;
    height: 8.125rem;
    top: -2.1rem;
    right: calc(100% + 1.2rem);
  }
}

.fv-present {
  width: 6.875rem;
  height: 6.875rem;
  position: absolute;
  bottom: 25.06rem;
  right: -2.64rem;
}
@media screen and (min-width: 1025px) {
  .fv-present {
    width: 11.25rem;
    height: 11.25rem;
    top: -1rem;
    left: 15.13rem;
  }
}

.fv-foods {
  width: 5.375rem;
  height: 8.8125rem;
  position: absolute;
  right: 11rem;
  bottom: -1rem;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .fv-foods {
    width: 12.625rem;
    height: 20.75rem;
    right: calc(100% + 5.5rem);
    bottom: -2rem;
  }
}

.cat1 {
  width: 3.875rem;
  height: 4.3125rem;
  position: absolute;
  z-index: 2;
  left: 12.7rem;
  bottom: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 374px) {
  .cat1 {
    left: 12rem;
  }
}
@media screen and (min-width: 1025px) {
  .cat1 {
    width: 10.625rem;
    height: 11.875rem;
    left: calc(100% + 7.5rem);
    bottom: 2.75rem;
  }
}

.cat2 {
  width: 6.125rem;
  height: 4.5rem;
  position: absolute;
  z-index: 2;
  left: 10rem;
  bottom: -0.7rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1025px) {
  .cat2 {
    width: 14.5625rem;
    height: 10.875rem;
    left: calc(100% + 10rem);
    bottom: -3.75rem;
  }
}

/*==============================================
#about
===============================================*/
.about-top {
  position: relative;
  margin-top: 2rem;
  height: 847px;
}
@media screen and (min-width: 1025px) {
  .about-top {
    height: 1040px;
  }
}

.about-deco {
  position: absolute;
}

.about-deco__slash {
  width: 15.625rem;
  top: 3.75rem;
  left: -1rem;
}
@media screen and (min-width: 1025px) {
  .about-deco__slash {
    top: 2rem;
    left: -1.5rem;
  }
}

.about-deco__photo-left {
  width: 12.5rem;
  top: 26.69rem;
  right: calc(50% + 8.31rem);
}
@media screen and (min-width: 768px) {
  .about-deco__photo-left {
    top: 20.69rem;
    right: calc(50% + 20.31rem);
  }
}
@media screen and (min-width: 1025px) {
  .about-deco__photo-left {
    width: 30rem;
    top: 7.69rem;
    right: calc(50% + 38.5rem);
  }
}

.about-deco__sakamichi {
  width: 8.625rem;
  height: 13.4375rem;
  top: 44.31rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .about-deco__sakamichi {
    top: 40.31rem;
  }
}
@media screen and (min-width: 1025px) {
  .about-deco__sakamichi {
    width: 26.6875rem;
    top: 23.06rem;
    left: -6.5rem;
  }
}

.about-deco__pawpads {
  width: 3.375rem;
  top: -0.7rem;
  right: 0rem;
}
@media screen and (min-width: 1025px) {
  .about-deco__pawpads {
    width: 6.25rem;
    top: -30px;
    right: 10.37rem;
  }
}

.about-deco__photo-right {
  width: 12.5rem;
  top: 17.06rem;
  left: calc(50% + 8.12rem);
}
@media screen and (min-width: 768px) {
  .about-deco__photo-right {
    left: calc(50% + 20.12rem);
  }
}
@media screen and (min-width: 1025px) {
  .about-deco__photo-right {
    width: 30rem;
    top: 7.63rem;
    left: calc(50% + 35rem);
  }
}

.about-deco__wave {
  width: 54.62013rem;
  top: 41.02rem;
  left: 75.25rem;
}

.about-deco__button {
  width: 3rem;
  top: 45rem;
  right: 1.31rem;
}
@media screen and (max-width: 374px) {
  .about-deco__button {
    top: 50rem;
  }
}
@media screen and (min-width: 1025px) {
  .about-deco__button {
    width: 6.3125rem;
    top: 40.65rem;
    left: calc(50% + 32.19rem);
  }
}

.about-deco__goods {
  width: 8.3125rem;
  top: 47.62rem;
  right: 3.56rem;
}
@media screen and (max-width: 374px) {
  .about-deco__goods {
    top: 53rem;
    right: 0.56rem;
  }
}
@media screen and (min-width: 1025px) {
  .about-deco__goods {
    width: 19.25rem;
    top: 50.4rem;
    left: calc(50% + 24rem);
  }
}

.about-inner {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .about-inner {
    top: 3rem;
  }
}
.about-inner::before {
  content: "";
  position: absolute;
  width: 6.25rem;
  height: 2.25rem;
  background: url(../img/img-about-arrow.png) no-repeat center center/cover;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .about-inner::before {
    width: 8.75rem;
    height: 3.125rem;
  }
}

.about-content {
  max-width: 20.9375rem;
  padding: 2.5rem 2.3rem;
  border-radius: 1.5rem;
  background: #fff;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 374px) {
  .about-content {
    padding: 2.5rem 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .about-content {
    max-width: 30.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .about-content {
    padding: 2.5rem 7.125rem;
    border-radius: 2.5rem;
    max-width: 53rem;
  }
}

.about-icon {
  position: relative;
}
.about-icon::before {
  content: "";
  position: absolute;
  background: url(../img/img-about-pic-1.png) no-repeat center center/cover;
  width: 5rem;
  height: 3.75rem;
  top: -5px;
  left: -112px;
}
@media screen and (min-width: 1025px) {
  .about-icon::before {
    width: 8.375rem;
    height: 6.25rem;
    top: 7px;
    left: -310px;
  }
}
.about-icon::after {
  content: "";
  position: absolute;
  background: url(../img/img-about-pic-2.png) no-repeat center center/cover;
  width: 5rem;
  height: 3.75rem;
  top: -5px;
  right: -125px;
}
@media screen and (min-width: 1025px) {
  .about-icon::after {
    width: 8.375rem;
    height: 6.25rem;
    top: 7px;
    right: -310px;
  }
}

.about-content__body {
  margin-top: 1.1rem;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .about-content__body {
    margin-top: 2rem;
  }
}

.about-content__sub-heading {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4rem;
}
@media screen and (min-width: 1025px) {
  .about-content__sub-heading {
    font-size: 1.03rem;
    line-height: 1.6rem;
  }
}

.about-content__text-wrap {
  margin-top: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .about-content__text-wrap {
    margin-top: 2rem;
  }
}

.about-content__text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2rem;
}
.about-content__text + .about-content__text {
  margin-top: 1.2rem;
}
@media screen and (min-width: 1025px) {
  .about-content__text + .about-content__text {
    margin-top: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .about-content__text {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
.about-content__text em {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 160%;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .about-content__text em {
    font-size: 1rem;
  }
}

.about-content__text-link {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.about-content__text-link:hover {
  color: #67B0C7;
}

.about-content__announce {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4rem;
  margin-top: 1.3rem;
  padding: 0.4rem 0rem;
  border-bottom: 2px dashed #9ED0E0;
}
@media screen and (min-width: 1025px) {
  .about-content__announce {
    margin-top: 3rem;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

.about-content__btn {
  margin-top: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .about-content__btn {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .about-content__btn .btn {
    height: 3.5rem;
    padding: 0.625rem 2.5rem 0.75rem 2.5rem;
    border: 3px solid #4A3636;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

.about-bottom {
  position: relative;
}
@media screen and (max-width: 374px) {
  .about-bottom {
    margin-top: 4rem;
  }
}

.about-bottom__image {
  max-width: 22.16513rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .about-bottom__image {
    max-width: 30rem;
  }
}
@media screen and (min-width: 1025px) {
  .about-bottom__image {
    max-width: 55.66275rem;
  }
}

/* アバウトスワイパー
-----------------------------------------------*/
.about-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.about-swiper__slide {
  height: 6.25rem;
  width: 6.25rem;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about-swiper__slide {
    height: 10rem;
    width: 10rem;
    border-radius: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .about-swiper__slide {
    height: 12.5rem;
    width: 12.5rem;
  }
}

/*==============================================
#enter
===============================================*/
.enter-inner {
  position: relative;
  margin: 0 auto;
  max-width: 1070px;
}

.enter-deco {
  position: absolute;
}

.enter-deco__map {
  width: 9.3125rem;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .enter-deco__map {
    width: 28.75rem;
    top: -3.75rem;
    left: -12rem;
  }
}

.enter-deco__pawpad-left {
  width: 3.4375rem;
  top: 34.35rem;
  left: 1.25rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .enter-deco__pawpad-left {
    width: 6.25rem;
    top: 36.25rem;
    left: -11.75rem;
  }
}

.enter-deco__cat1 {
  width: 6.5625rem;
  top: 0;
  right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .enter-deco__cat1 {
    width: 14.875rem;
    top: -2rem;
    right: 0.5rem;
  }
}

.enter-deco__cat2 {
  width: 5.875rem;
  top: 0.36rem;
  right: -1.94rem;
}
@media screen and (min-width: 768px) {
  .enter-deco__cat2 {
    width: 13.375rem;
    top: -1rem;
    right: -7.31rem;
  }
}

.enter-deco__pawpad-right1 {
  width: 3.4375rem;
  top: 4.5rem;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .enter-deco__pawpad-right1 {
    width: 6.25rem;
    top: 9.25rem;
    right: -11.75rem;
  }
}

.enter-deco__pawpad-right2 {
  width: 3.4375rem;
  top: 55.04rem;
  right: 1.25rem;
  -webkit-transform: rotate(180deg) scale(-1, 1);
          transform: rotate(180deg) scale(-1, 1);
}

.enter-content {
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .enter-content {
    margin-top: 7.5rem;
  }
}

.enter-body {
  margin-top: 1.8rem;
}
@media screen and (min-width: 768px) {
  .enter-body {
    margin-top: 2.5rem;
  }
}

.enter-body__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .enter-body__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.enter-body__list {
  text-align: center;
  width: 100%;
  padding-bottom: 1rem;
}
.enter-body__list + .enter-body__list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .enter-body__list + .enter-body__list {
    margin-top: 0;
    margin-left: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .enter-body__list {
    width: 20rem;
    padding-bottom: 0.5rem;
  }
  .enter-body__list:nth-of-type(2) {
    margin-top: 4.31rem;
  }
}

.enter-body__list2 {
  position: relative;
}

.enter-deco__line--sp1 {
  height: 2.125rem;
  width: 0.4375rem;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.enter-deco__line--sp2 {
  height: 2.125rem;
  width: 0.4375rem;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.enter-deco__line--tab1 {
  width: 7.0625rem;
  top: 8.2rem;
  right: calc(50% + 6rem);
}
@media screen and (min-width: 1025px) {
  .enter-deco__line--tab1 {
    right: calc(50% + 9rem);
  }
}

.enter-deco__line--tab2 {
  width: 7.0625rem;
  top: 5.3rem;
  left: calc(50% + 5rem);
}
@media screen and (min-width: 1025px) {
  .enter-deco__line--tab2 {
    top: 8.3rem;
    left: calc(50% + 6.5rem);
  }
}

.enter-body__img {
  width: 12.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .enter-body__img {
    width: 17.5rem;
  }
}

.enter-body__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .enter-body__title {
    font-size: 1.25rem;
    line-height: 2rem;
    margin-top: 1.5rem;
  }
}

.enter-body__text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .enter-body__text {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
.enter-body__text a {
  display: inline-block;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.enter-body__text a:hover {
  color: #67B0C7;
}
.enter-body__text .is-bold {
  font-size: 0.75rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .enter-body__text .is-bold {
    font-size: 1rem;
    white-space: nowrap;
  }
}

.enter-body__insta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0.75rem;
  background: #fff;
  margin-top: 1rem;
  border: 1px solid #fff;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.enter-body__insta:hover {
  border: 1px solid #67B0C7;
}

.enter-insta__icon {
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .enter-insta__icon {
    width: 1.5rem;
  }
}

.enter-insta__text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4rem;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .enter-insta__text {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

.enter-btn {
  text-align: center;
  padding-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .enter-btn {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 374px) {
  .enter-btn__link {
    padding: 1.375rem 1.5rem 1.5rem 1.5rem;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .enter-btn__link {
    height: 3.5rem;
    padding: 0.625rem 2.5rem 0.75rem 2.5rem;
    border: 3px solid #4A3636;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

/*==============================================
#prizes
===============================================*/
.prizes {
  margin-top: 2rem;
  height: 1183px;
}
@media screen and (max-width: 374px) {
  .prizes {
    height: 1150px;
  }
}
@media screen and (min-width: 768px) {
  .prizes {
    height: 1300px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes {
    margin-top: 7.5rem;
    height: 1900px;
  }
}

.prizes-inner {
  position: relative;
  margin: 0 auto;
}

.prizes__img-pattern {
  width: 19.6875rem;
  height: 5.375rem;
  position: absolute;
  top: 2rem;
}

.prizes__img-left {
  right: calc(50% + 12.2rem);
}

.prizes__img-right {
  left: calc(50% + 12.2rem);
}

.prizes-heading {
  padding-top: 1.4rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/img-prizes-head.png) no-repeat center bottom/cover;
  width: 14.875rem;
  height: 5.1875rem;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .prizes-heading {
    padding-top: 1.75rem;
    background: url(../img/pc/img-prizes-head.png) no-repeat center bottom/cover;
    width: 23.625rem;
    height: 9.375rem;
  }
}

.prizes-icon img {
  width: 100%;
}

.prizes__titile--en {
  margin-top: 0.3rem;
}

.prizes__title--ja {
  padding-bottom: 0.5rem;
}

.prizes-content {
  position: absolute;
  background: #fff;
  border-radius: 1.5rem;
  top: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding-top: 2.8rem;
  max-width: 375px;
}
@media screen and (min-width: 768px) {
  .prizes-content {
    padding-top: 5.8rem;
    max-width: 700px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes-content {
    top: 9.1875rem;
    padding-top: 2rem;
    max-width: 1024px;
  }
}

.prizes-content__text {
  text-align: center;
  margin-top: 1rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .prizes-content__text {
    margin-top: 2.4rem;
    font-size: 1rem;
    line-height: 1.6rem;
    padding-left: 5.19rem;
    padding-right: 5.19rem;
  }
}

/* カード
-----------------------------------------------*/
.prizes-content__cards {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-top: 2.4rem;
}
@media screen and (min-width: 1025px) {
  .prizes-content__cards {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    margin-top: 4.5rem;
  }
}

.prizes-content__cards-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prizes-content__cards-bottom {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.prizes-card {
  position: relative;
  border-radius: 1rem;
  border: 4px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.prizes-card:hover {
  cursor: pointer;
  border: 4px solid #9ED0E0;
}
.prizes-card:hover .prizes-card__icon:after {
  border-color: transparent transparent #9ED0E0 transparent;
}
.prizes-card:hover .prizes-card__img-wrapper img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  top: 0;
}

.prizes-card--large {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 0.3rem);
          flex: 0 0 calc(50% - 0.3rem);
}
@media screen and (min-width: 768px) {
  .prizes-card--large {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 1rem);
            flex: 0 1 calc(50% - 1rem);
  }
}

.prizes-card--bottom {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 0.3rem);
          flex: 0 0 calc(50% - 0.3rem);
  margin-top: 3.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .prizes-card--bottom {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(33.3333333333% - 1.5rem);
            flex: 0 1 calc(33.3333333333% - 1.5rem);
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .prizes-card--bottom {
    margin-top: 5rem;
  }
}

.prizes-card__img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem 0.8rem 0 0;
}

.prizes-card__img-wrapper--large {
  padding-top: 77.5%;
}
@media screen and (min-width: 1025px) {
  .prizes-card__img-wrapper--large {
    padding-top: 77.2727%;
  }
}

.prizes-card__img-wrapper--bottom {
  padding-top: 77.5%;
}
@media screen and (min-width: 1025px) {
  .prizes-card__img-wrapper--bottom {
    padding-top: 85.7142%;
  }
}

.prizes-card__img {
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.prizes-card__body {
  background: #F5F5F5;
  border-radius: 0 0 1rem 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.prizes-card__body--large {
  height: 3.3rem;
}
@media screen and (min-width: 768px) {
  .prizes-card__body--large {
    height: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .prizes-card__body--large {
    height: 7.5rem;
  }
}

.prizes-card__body--bottom {
  height: 3.3rem;
}
@media screen and (min-width: 768px) {
  .prizes-card__body--bottom {
    height: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .prizes-card__body--bottom {
    height: 5.2rem;
  }
}

.prizes-card__title {
  font-weight: 700;
  padding: 0.56rem 1rem;
  text-align: center;
}

.prizes-card__title--large {
  font-size: 0.75rem;
  line-height: 1.2rem;
}
@media screen and (min-width: 768px) {
  .prizes-card__title--large {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .prizes-card__title--large {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

.prizes-card__title--bottom {
  font-size: 0.75rem;
  line-height: 1.2rem;
}
@media screen and (min-width: 768px) {
  .prizes-card__title--bottom {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .prizes-card__title--bottom {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

.prizes-card__icon::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #67B0C7 transparent;
  border-radius: 0 0 0.7rem;
  border-width: 0 0 2rem 2rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .prizes-card__icon::after {
    border-width: 0 0 3rem 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .prizes-card__icon::after {
    border-width: 0 0 3.5rem 3.5rem;
  }
}
.prizes-card__icon img {
  position: absolute;
  z-index: 2;
  bottom: 0.4rem;
  right: 0.2rem;
  width: 0.72rem;
}
@media screen and (min-width: 768px) {
  .prizes-card__icon img {
    width: 1.2rem;
    bottom: 0.4rem;
    right: 0.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .prizes-card__icon img {
    width: 1.2rem;
    bottom: 0.55rem;
    right: 0.35rem;
  }
}

.prizes-card__icon--large {
  border-width: 0 0 6.25rem 6.25rem;
}
@media screen and (min-width: 1025px) {
  .prizes-card__icon--large::after {
    border-width: 0 0 6.25rem 6.25rem;
  }
}
.prizes-card__icon--large img {
  bottom: 0.4rem;
  right: 0.2rem;
  width: 0.72rem;
}
@media screen and (min-width: 768px) {
  .prizes-card__icon--large img {
    width: 1.2rem;
    bottom: 0.4rem;
    right: 0.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .prizes-card__icon--large img {
    width: 2rem;
    bottom: 0.88rem;
    right: 0.78rem;
  }
}

.prizes-card__badge {
  width: 3rem;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .prizes-card__badge {
    width: 4rem;
    top: -1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .prizes-card__badge {
    width: 6.25rem;
    top: -3.13rem;
  }
}

.prizes-card__badge--large {
  width: 3rem;
}
@media screen and (min-width: 1025px) {
  .prizes-card__badge--large {
    width: 6.25rem;
    top: -3.13rem;
  }
}

.prizes-card__badge--bottom {
  width: 3rem;
}
@media screen and (min-width: 1025px) {
  .prizes-card__badge--bottom {
    width: 5rem;
    top: -2.13rem;
  }
}

.prizes-btn {
  margin-top: 2.5rem;
  padding-bottom: 2.17rem;
  text-align: center;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .prizes-btn {
    padding-bottom: 3.5rem;
  }
}

@media screen and (max-width: 374px) {
  .prizes-btn__link {
    padding: 1.375rem 1.5rem 1.5rem 1.5rem;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .prizes-btn__link {
    height: 3.5rem;
    padding: 0.625rem 2.5rem 0.75rem 2.5rem;
    border: 3px solid #4A3636;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

/* モーダル
-----------------------------------------------*/
.prizes-dialogs {
  opacity: 0;
}

.prizes-modal {
  overscroll-behavior-y: none;
}

.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 100;
  border: none;
  border-radius: 1.5rem;
  width: 21rem;
  padding: 0;
}
@media screen and (min-width: 1025px) {
  .prizes-modal {
    width: 30rem;
  }
}
.prizes-modal::-ms-backdrop {
  opacity: 0.7;
  background: #000;
}
.prizes-modal::backdrop {
  opacity: 0.7;
  background: #000;
}

.prizes-modal figure {
  margin: 0;
}

.prizes-modal__image {
  position: relative;
  padding-top: 62.5%;
}
.prizes-modal__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
}

.prizes-modal__body {
  background: #fff;
  text-align: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .prizes-modal__body {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.prizes-modal__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
  margin-top: 2.44rem;
}
@media screen and (min-width: 1025px) {
  .prizes-modal__title {
    font-size: 1.2rem;
    line-height: 2rem;
    margin-top: 2rem;
  }
}

.prizes-modal__text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 1025px) {
  .prizes-modal__text {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

.prizes-modal__btn {
  margin-top: 1rem;
  padding-bottom: 3.5rem;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .prizes-modal__btn {
    margin-top: 1.5rem;
    padding-bottom: 6.62rem;
  }
}

.js-modal-close:focus-visible {
  outline: none;
}

.prizes-background {
  width: 100%;
  position: relative;
  top: 1000px;
  z-index: -1;
}
@media screen and (max-width: 374px) {
  .prizes-background {
    top: 1000px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes-background {
    top: 1450px;
  }
}
.prizes-background img {
  -o-object-fit: cover;
     object-fit: cover;
}

/*==============================================
#spots
===============================================*/
.spots {
  background: #67B0C7;
  position: relative;
}
.spots::before {
  content: "";
  position: absolute;
  top: -2.8rem;
  left: 0;
  background: url(../img/img-spots-wave1.png);
  background-repeat: repeat-x;
  width: 100%;
  height: 2.85713rem;
}
.spots::after {
  content: "";
  position: absolute;
  top: 98%;
  left: 0;
  background-image: url(../img/img-spots-wave2.png);
  background-repeat: repeat-x;
  width: 100%;
  height: 6rem;
}

@media screen and (min-width: 768px) {
  .spots-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 16%;
    padding-top: 3rem;
  }
}

.spots__title-wrap {
  text-align: center;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .spots__title-wrap {
    padding-top: 0;
    padding-bottom: 4rem;
  }
}

.spots__title {
  font-family: "Kiwi Maru", serif;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2.1875rem;
  padding-left: 2.25rem;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .spots__title {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    font-size: 2.5rem;
    line-height: 3.125rem;
    padding-left: 0;
    padding-top: 5rem;
    margin-top: 1rem;
    letter-spacing: 0.6rem;
  }
}
.spots__title::before {
  content: "";
  position: absolute;
  width: 1.75rem;
  height: 1.75rem;
  background: url(../img/icon-spot.svg) no-repeat center center/cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .spots__title::before {
    width: 3.5rem;
    height: 3.5rem;
    top: 2rem;
    left: 0;
  }
}

/* スポットスワイパー
-----------------------------------------------*/
.spots-slider {
  width: 100%;
  margin-top: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .spots-slider {
    margin-left: 2rem;
  }
}

.spots-swiper {
  height: 100%;
}

.spots-swiper-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-slide {
  height: auto;
}

.spots-swiper-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.spots-swiper__card {
  margin-left: 1rem;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .spots-swiper__card {
    margin-left: 2rem;
  }
}
.spots-swiper__card figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}

.spots-swiper__image {
  position: relative;
  padding-top: 75%;
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .spots-swiper__image {
    padding-top: 68%;
  }
}
.spots-swiper__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.spots-swiper__body {
  background: #fff;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1.95rem;
  border-radius: 0 0 0.75rem 0.75rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .spots-swiper__body {
    padding-top: 1.5rem;
  }
}

.spots-swiper__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spots-swiper__title {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

.spots-swiper__text {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .spots-swiper__text {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

.swiper-button-prev {
  top: 98%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -40px;
}
.swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  background: url(../img/pc/icon-spots-arrow-prev.svg) no-repeat center center/cover;
}

.swiper-button-next {
  top: 98%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 33%;
}
.swiper-button-next::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  background: url(../img/pc/icon-spots-arrow-next.svg) no-repeat center center/cover;
}

.spots-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .spots-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 3.5rem;
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  .spots-bottom::before {
    content: "";
    position: absolute;
    width: 6.25rem;
    height: 13.75rem;
    background: url(../img/img-about-pawpads.png) no-repeat center center/cover;
    top: -105px;
    left: 35px;
  }
}

.spots__image {
  width: 15.9375rem;
}
@media screen and (min-width: 768px) {
  .spots__image {
    width: 30.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .spots-bottom__right {
    margin-left: 5.06rem;
  }
}

.spots__text {
  margin-top: 1rem;
  font-size: 0.71525rem;
  font-weight: 400;
  line-height: 1.1444rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .spots__text {
    line-height: 1.6rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.6rem;
    white-space: nowrap;
  }
}

.spots__btn {
  padding-bottom: 16px;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spots__btn {
    padding-bottom: 20px;
    padding-left: 1rem;
  }
}

@media screen and (max-width: 374px) {
  .spots-btn__link {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .spots-btn__link {
    height: 3.5rem;
    padding: 0.625rem 2.5rem 0.75rem 2.5rem;
    border: 3px solid #4A3636;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

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

.qa-heading {
  margin-top: 5rem;
}
@media screen and (min-width: 1025px) {
  .qa-heading {
    margin-top: 13rem;
  }
}

.qa-inner {
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .qa-inner {
    max-width: 700px;
  }
}
@media screen and (min-width: 1025px) {
  .qa-inner {
    max-width: 1070px;
    margin-top: 3rem;
  }
}

.qa-box {
  width: 100%;
  border-radius: 0.75rem;
  border: 2px solid #4A3636;
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .qa-box {
    border-radius: 1rem;
  }
}
.qa-box + .qa-box {
  margin-top: 0.5rem;
}
@media screen and (min-width: 1025px) {
  .qa-box + .qa-box {
    margin-top: 1.5rem;
  }
}
.qa-box.is-open .qa-head__btn > .bar2 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.qa-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0.75rem 3.25rem 0.75rem 1rem;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .qa-head {
    padding: 1.5rem;
  }
}

.qa__icon {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.875rem;
  color: #9ED0E0;
}
@media screen and (min-width: 1025px) {
  .qa__icon {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

.qa-head__text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4rem;
  margin-left: 0.75rem;
  padding-right: 0.75rem;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .qa-head__text {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

.qa-head__btn {
  width: 1.63638rem;
  height: 1.63638rem;
  background: #9ED0E0;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  right: 0;
}
@media screen and (min-width: 1025px) {
  .qa-head__btn {
    width: 3rem;
    height: 3rem;
  }
}
.qa-head__btn .bar {
  position: absolute;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .qa-head__btn .bar {
    width: 18px;
    height: 3px;
  }
}
.qa-head__btn .bar2 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  left: 28%;
}
@media screen and (min-width: 1025px) {
  .qa-head__btn .bar2 {
    left: 31%;
  }
}

.qa-body {
  padding: 0.75rem 1rem;
  background: #F5F5F5;
  border-radius: 0 0 0.75rem 0.75rem;
  display: none;
}
@media screen and (min-width: 1025px) {
  .qa-body {
    padding: 1.5rem;
    border-radius: 0 0 1rem 1rem;
  }
}

.qa__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.qa-body__text {
  font-size: 0.875rem;
  line-height: 1.4rem;
  margin-left: 1rem;
}
@media screen and (min-width: 1025px) {
  .qa-body__text {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

/*==============================================
#Entry Requirements
===============================================*/
.entry-requirements {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .entry-requirements {
    margin-top: 7.5rem;
  }
}

.entry-requirements-inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .entry-requirements-inner {
    max-width: 700px;
  }
}
@media screen and (min-width: 1025px) {
  .entry-requirements-inner {
    max-width: 1070px;
  }
}

.entry-requirements__wrapper {
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  padding: 1rem;
}
@media screen and (min-width: 1025px) {
  .entry-requirements__wrapper {
    padding: 2rem 3rem;
  }
}

.entry-requirements__title--ja {
  padding-bottom: 0.5rem;
}

.entry-requirements__list {
  margin-top: 1rem;
}
@media screen and (min-width: 1025px) {
  .entry-requirements__list {
    margin-top: 2.5rem;
  }
}

.entry-requirements__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 1025px) {
  .entry-requirements__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 0.75rem;
  }
}
.entry-requirements__row:last-of-type {
  border-bottom: none;
}

.entry-requirements__title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4rem;
  padding-left: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.entry-requirements__title::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: #9ED0E0;
  border-radius: 50%;
  top: 0.44rem;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .entry-requirements__title::before {
    left: 1rem;
    top: 0.56rem;
  }
}
@media screen and (min-width: 1025px) {
  .entry-requirements__title {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .entry-requirements__title {
    font-size: 1rem;
    line-height: 1.6rem;
    padding-left: 2rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15rem;
            flex: 0 0 15rem;
  }
}

@media screen and (min-width: 1025px) {
  .entry-requirements__text {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
.entry-requirements__text a {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.entry-requirements__text a:hover {
  color: #67B0C7;
}

.entry-requirements__text-list {
  list-style: disc;
  margin-left: 1rem;
}

.entry-requirements__bg {
  margin-top: 1rem;
}
@media screen and (min-width: 1025px) {
  .entry-requirements__bg {
    margin-top: 8rem;
  }
}

/*==============================================
#contact
===============================================*/
.contact {
  background: #fff;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 7.5rem 0;
  }
}

.contact__inner {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.contact__text {
  margin-top: 1.5rem;
  text-align: center;
  padding: 0 3.5rem;
}
@media screen and (max-width: 374px) {
  .contact__text {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .contact__text {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .contact__text {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

.contact__form {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 2.5rem;
  }
}

.form__fields {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .form__fields {
    margin-top: 2.5rem;
  }
}

/* フォーム内
-----------------------------------------------*/
.form-field {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  .form-field {
    margin-top: 2rem;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    width: 25.9434%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .form-field__head.ai-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-top: 0.5rem;
  }
}

.form-field__label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4rem;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

.form-field__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2rem;
  color: #fff;
  padding: 0.25rem 0.5rem;
  background: #CE2073;
  border-radius: 0.25rem;
}

.form-field__item {
  margin-top: 0.5rem;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    width: 74.0566%;
    margin-top: 0;
  }
}

.form-text {
  width: 100%;
  padding: 1rem;
  background-color: #F5F5F5;
  border-radius: 0.5rem;
  border: 1px solid transparent;
}
.form-text::-webkit-input-placeholder {
  color: #ccc;
  font-size: 0.875rem;
  line-height: 1.4rem;
}
.form-text::-moz-placeholder {
  color: #ccc;
  font-size: 0.875rem;
  line-height: 1.4rem;
}
.form-text:-ms-input-placeholder {
  color: #ccc;
  font-size: 0.875rem;
  line-height: 1.4rem;
}
.form-text::-ms-input-placeholder {
  color: #ccc;
  font-size: 0.875rem;
  line-height: 1.4rem;
}
.form-text::placeholder {
  color: #ccc;
  font-size: 0.875rem;
  line-height: 1.4rem;
}
.form-text:focus-visible {
  outline: none;
}
.form-text:focus {
  border: 1px solid #9ED0E0;
  background-color: #E9F6F8;
}
.form-text.is-error {
  border: 1px solid #CE2073;
  background-color: #FFF0F7;
}

/* セレクトボックス
-----------------------------------------------*/
.form-select {
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/icon-contact-arrow.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat;
  background-position: center right 10px, center center;
  cursor: pointer;
}
.form-select.is-error {
  border: 1px solid #CE2073;
  background-image: url(../img/icon-contact-arrow.svg), linear-gradient(to left, #CE2073 52px, #FFF0F7 52px);
}

/* ラジオボタン
-----------------------------------------------*/
.form-radio + .form-radio {
  margin-left: 1.5rem;
}

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

.form-radio__text {
  font-size: 0.875rem;
  line-height: 1.4rem;
  padding-left: 2rem;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .form-radio__text {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid transparent;
  left: 0;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  background-color: #F5F5F5;
}
.form-radio__text::after {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #9ED0E0;
  left: 0.38rem;
  opacity: 0;
}

/* テキストエリア
-----------------------------------------------*/
.form-textarea {
  resize: vertical;
  min-height: 10rem;
}

/* プライバシーリンク
-----------------------------------------------*/
.contact__privacy {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .contact__privacy {
    margin-top: 3rem;
  }
}

.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 {
  border: 1px solid #CE2073;
  background-color: #FFF0F7;
}

.form-checkbox__text {
  font-size: 0.875rem;
  line-height: 1.4rem;
  padding-left: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  background-color: #F5F5F5;
}
.form-checkbox__text::after {
  width: 1.5rem;
  height: 1.5rem;
  left: -1px;
  margin-top: -1.2px;
  background: url(../img/icon-contact-check.svg) no-repeat center center/cover;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.form-checkbox__text a:hover {
  color: #67B0C7;
}

/* コンタクトボタン
-----------------------------------------------*/
.contact__btn {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    margin-top: 2.5rem;
  }
}

.contact-submit {
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .contact-submit {
    padding: 0.375rem 2.5rem 0.5rem 2.5rem;
  }
}

/*==============================================
#footer
===============================================*/
.footer {
  padding-top: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .footer::before {
    content: "";
    position: absolute;
    width: 6.25rem;
    height: 13.75rem;
    background: url(../img/img-about-pawpads.png) no-repeat center center/contain;
    top: 5rem;
    right: 5rem;
  }
}

.footer-inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .footer-inner {
    max-width: 67rem;
  }
}

.footer-sns__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-sns__title {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}

.footer-sns__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 11rem;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .footer-sns__nav {
    width: 12.5rem;
  }
}

.footer-sns__link {
  width: 2rem;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media screen and (min-width: 768px) {
  .footer-sns__link {
    width: 2.5rem;
  }
}
.footer-sns__link:hover {
  -webkit-filter: brightness(1.12);
          filter: brightness(1.12);
}
.footer-sns__link img {
  width: 100%;
}

.footer-image {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 374px) {
  .footer-image {
    min-width: 15.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .footer-image {
    max-width: 47.1875rem;
    margin-top: 2.5rem;
  }
}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .footer-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer-info__body {
  background-color: #fff;
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 0 0 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .footer-info__body {
    width: 50%;
    height: 25rem;
    border-radius: 1rem 0 0 1rem;
  }
}

@media screen and (min-width: 768px) {
  .footer-info__wrap {
    margin-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .footer-info__wrap {
    margin-top: 5rem;
  }
}

.footer-info__logo {
  width: 9.5625rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .footer-info__logo {
    width: 11.4375rem;
  }
}
@media screen and (min-width: 1025px) {
  .footer-info__logo {
    width: 11.4375rem;
    margin-left: 1.5rem;
  }
}

.footer-info__inner {
  margin: 0 auto;
  max-width: 18.5rem;
}
@media screen and (min-width: 1025px) {
  .footer-info__inner {
    max-width: 24.3125rem;
  }
}

.footer-info__lists {
  margin-top: 1.5rem;
}

.footer-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer-info__row {
    margin-top: 0.75rem;
  }
}

.footer-info__title {
  font-weight: 700;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5rem;
          flex: 0 0 5rem;
}
@media screen and (min-width: 768px) {
  .footer-info__title {
    font-size: 1rem;
    line-height: 1rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7.5rem;
            flex: 0 0 7.5rem;
  }
}
.footer-info__title::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  top: 0.3rem;
  left: 0;
  border-radius: 50%;
  background-color: #9ED0E0;
}

.footer-info__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(100% - 5rem);
          flex: 1 1 calc(100% - 5rem);
}
@media screen and (min-width: 768px) {
  .footer-info__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 7.5rem);
            flex: 1 1 calc(100% - 7.5rem);
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

.footer-info__map {
  position: relative;
  padding-top: 80.8955%;
}
@media screen and (min-width: 768px) {
  .footer-info__map {
    width: 50%;
    padding-top: 39.125%;
  }
}
.footer-info__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem 1rem 0 0;
}
@media screen and (min-width: 768px) {
  .footer-info__map iframe {
    border-radius: 0 1rem 1rem 0;
  }
}

/* ページトップ
-----------------------------------------------*/
.footer__pagetop {
  text-align: center;
}

.pagetop {
  display: inline-block;
  width: 4.6875rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-filter 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-filter 0.3s;
  transition: opacity 0.3s, visibility 0.3s, filter 0.3s;
  transition: opacity 0.3s, visibility 0.3s, filter 0.3s, -webkit-filter 0.3s;
}
@media screen and (min-width: 1025px) {
  .pagetop {
    position: fixed;
    right: 2.25rem;
    bottom: 2rem;
    z-index: 30;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.pagetop:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}

/* コピーライト
-----------------------------------------------*/
.footer-copyright {
  background-color: #67B0C7;
  padding-bottom: 1.5rem;
  text-align: center;
  position: relative;
  margin-top: 2.85713rem;
}
@media screen and (min-width: 1025px) {
  .footer-copyright {
    margin-top: 15rem;
    padding-bottom: 2rem;
  }
}
.footer-copyright::before {
  content: "";
  position: absolute;
  background: url(../img/img-spots-wave1.png) repeat-x;
  width: 100%;
  height: 2.85713rem;
  bottom: 97%;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .footer-copyright::before {
    background: url(../img/pc/img_bg_wave.png) repeat-x;
    height: 7.5rem;
    bottom: 97%;
  }
}
.footer-copyright small {
  color: #fff;
  font-size: 0.625rem;
  line-height: 1rem;
}
@media screen and (min-width: 1025px) {
  .footer-copyright small {
    font-size: 0.875rem;
    line-height: 1.4rem;
  }
}