@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  background-color: #E9F6F8;
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-weight: 400;
  color: #4A3636;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 36px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #fff;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
}

@media screen and (min-width: 768px) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-inline: 25px;
  }
}

.header__container {
  padding-block: 16px;
  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;
  background-color: #fff;
  position: relative;
  z-index: 50;
}

.header__logo {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .header__logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.header__logo:hover {
  opacity: 0.7;
}
.header__logo img {
  width: 210px;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 183px;
  }
}

.header__nav {
  background: #fff;
  padding: 82px 108px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 64px);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -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;
}
@media screen and (max-width: 374px) {
  .header__nav {
    padding: 82px 60px;
  }
}
@media screen and (min-width: 768px) {
  .header__nav {
    background: transparent;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: none;
    transition: none;
  }
}
.header__nav.is-active {
  top: 53px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .header__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .header__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
  }
}

.header__list {
  line-height: 1.6;
  padding: 10px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .header__list {
    padding: 0;
    font-size: 12px;
    font-weight: 400;
  }
}

.header__link {
  position: relative;
  text-decoration: none;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #67B0C7;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header__link:hover {
  color: #67B0C7;
}
.header__link:hover::after {
  width: 100%;
}

.header__button {
  margin-top: 28px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header__button {
    margin-top: 0;
    margin-left: 4px;
  }
}

.drawer-container.is-checked {
  width: 72px;
  height: 64px;
  padding: 20px;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .drawer-container.is-checked {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 27px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__line--short {
  width: 32px;
}
.drawer-icon.is-checked .drawer-icon__line::after {
  opacity: 0;
  visibility: hidden;
}
.drawer-icon.is-checked .drawer-icon__line:nth-of-type(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__line:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
}
.drawer-icon.is-checked .drawer-icon__line:nth-of-type(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__line {
  width: 32px;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background: #4A3636;
  border-radius: 8px;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .drawer-icon__line {
    display: none;
  }
}
.drawer-icon__line--short {
  width: 25.6px;
}
.drawer-icon__line--short::after {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 4.8px;
  height: 3px;
  background: #4A3636;
  border-radius: 8px;
}
.drawer-icon__line:nth-of-type(1) {
  top: 2px;
}
.drawer-icon__line:nth-of-type(2) {
  top: 14px;
}
.drawer-icon__line:nth-of-type(3) {
  top: 27px;
}

.fv {
  margin-top: 64px;
  padding-top: 17px;
  background: url(/img/sp/fv-bg.jpg) no-repeat center center/cover;
  height: 554px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-top: 35px;
    background: url(/img/fv-bg.jpg) no-repeat center center/cover;
    height: 740px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: static;
  }
}

.fv__content {
  text-align: center;
}

.fv__heading {
  text-shadow: 0px 0px 30px #fff;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .fv__heading {
    font-size: 24px;
    font-weight: 500;
  }
}

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

.fv__first {
  width: 335px;
}
@media screen and (min-width: 768px) {
  .fv__first {
    width: 520px;
  }
}

.fv__second {
  width: 240px;
}
@media screen and (min-width: 768px) {
  .fv__second {
    width: 356px;
  }
}

.fv__main {
  margin: 0 auto;
  max-width: 375px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__main {
    max-width: 848px;
    height: auto;
  }
}

.fv__bubble {
  position: absolute;
  top: 15.8px;
}
@media screen and (min-width: 768px) {
  .fv__bubble {
    top: 0;
    left: min(3.5377358491vw, 35px);
  }
}
.fv__bubble img {
  width: 142px;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .fv__bubble img {
    width: min(28.7735849057vw, 244px);
    height: 130px;
  }
}

.fv__circle {
  position: absolute;
  top: 10px;
  right: 25px;
}
@media screen and (min-width: 768px) {
  .fv__circle {
    top: 16px;
    /* 768px〜900pxの間で、rightの値を78pxから116pxまで滑らかに変化させる
    - clamp(最小値, 計算値, 最大値)
    - 768pxの時：78px
    - 900pxの時：116px
    */
    right: clamp(78px, 78px + 38 * (100vw - 768px) / 132, 116px);
  }
}
@media screen and (min-width: 900px) {
  .fv__circle {
    top: 16px;
    right: min(13.679245283vw, 126px);
  }
}
.fv__circle img {
  width: 110px;
}
@media screen and (min-width: 768px) {
  .fv__circle img {
    width: min(21.2264150943vw, 180px);
  }
}

.fv__phone {
  position: absolute;
  top: 114px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__phone {
    top: 32px;
    width: min(29.4811320755vw, 250px);
  }
}
.fv__phone img {
  width: 100%;
  max-height: 408px;
}
@media screen and (min-width: 768px) {
  .fv__phone img {
    max-height: 510px;
  }
}

.fv__campaign {
  width: 160px;
  padding-bottom: 16px;
  background: #fff;
  border-radius: 12.8px;
  position: absolute;
  top: 122px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .fv__campaign {
    width: 200px;
    border-radius: 16px;
    top: 152px;
    padding-bottom: 21px;
  }
}

.fv__campaign-head {
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
  width: 160px;
  border-top-left-radius: 12.8px;
  border-top-right-radius: 12.8px;
}
@media screen and (min-width: 768px) {
  .fv__campaign-head {
    width: 200px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}

.fv__campaign-title {
  color: #fff;
  text-align: center;
  font-size: 12.8px;
  font-weight: 700;
  padding: 6.4px 9.6px;
}
@media screen and (min-width: 768px) {
  .fv__campaign-title {
    padding: 8px 12px;
    font-size: 16px;
  }
}

.fv__campaign-body {
  text-align: center;
  padding-top: 12px;
}
@media screen and (min-width: 768px) {
  .fv__campaign-body {
    padding-top: 15px;
  }
}

.fv__campaign-period {
  display: inline-block;
  color: #4A3636;
  font-size: 12px;
  border-bottom: 2.4px solid #CE2073;
}
@media screen and (min-width: 768px) {
  .fv__campaign-period {
    font-size: 14px;
  }
}

.fv__campaign-date {
  margin-top: 2px;
  color: #4A3636;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .fv__campaign-date {
    font-size: 16px;
    margin-top: 6px;
  }
}

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

.fv__food {
  position: absolute;
  top: 392px;
  left: 2px;
}
@media screen and (min-width: 768px) {
  .fv__food {
    top: 226px;
    left: -2px;
  }
}
.fv__food img {
  width: 86px;
  height: 141px;
}
@media screen and (min-width: 768px) {
  .fv__food img {
    width: min(23.820754717vw, 213px);
    height: 332px;
  }
}

.fv__catblack {
  position: absolute;
  top: 404px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .fv__catblack {
    right: 62px;
    top: 309px;
  }
}
.fv__catblack img {
  width: 62px;
}
@media screen and (min-width: 768px) {
  .fv__catblack img {
    width: min(20.0471698113vw, 170px);
  }
}

.fv__catocher {
  position: absolute;
  top: 460px;
  right: 8px;
}
@media screen and (min-width: 768px) {
  .fv__catocher {
    top: 429px;
    right: 0px;
  }
}
.fv__catocher img {
  width: 98px;
}
@media screen and (min-width: 768px) {
  .fv__catocher img {
    width: min(27.4764150943vw, 233px);
  }
}

.about {
  margin-top: 189px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 178px;
  }
}

.about__content {
  padding: 39px 12px;
  border-radius: 24px;
  background: #fff;
  text-align: center;
  width: min(100%, 335px);
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__content {
    padding-block: 40px;
    width: 100%;
    max-width: clamp(600px, 56vw, 848px);
    border-radius: 40px;
  }
}
.about__content::after {
  position: absolute;
  content: "";
  width: 54px;
  height: 120px;
  background: url("/img/img_bg_pawpads.png") no-repeat center center/cover;
  top: -10px;
  right: -19px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about__content {
    margin-top: 177px;
    gap: 0;
  }
  .about__content::after {
    top: -31px;
    right: -60px;
    width: 100px;
    height: 220px;
  }
}
@media screen and (min-width: 1024px) {
  .about__content {
    margin-top: 177px;
    gap: 0;
  }
  .about__content::after {
    top: -84px;
    right: -166px;
    width: 100px;
    height: 220px;
  }
}

.about__box {
  max-width: 249px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__box {
    gap: 32px;
    max-width: 620px;
  }
}

.about-img__left {
  position: absolute;
  top: -8px;
  left: -8px;
}
@media screen and (min-width: 768px) {
  .about-img__left {
    top: 0px;
    left: -27px;
  }
}
.about-img__left img {
  width: 85px;
  height: 70px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width: 768px) {
  .about-img__left img {
    width: 143px;
    height: 117px;
  }
}

.about-img__right {
  position: absolute;
  top: -9px;
  right: -22px;
}
@media screen and (min-width: 768px) {
  .about-img__right {
    top: 7px;
    right: -29px;
  }
}
.about-img__right img {
  width: 85px;
  height: 70px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width: 768px) {
  .about-img__right img {
    width: 144px;
    height: 115px;
  }
}

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

.about__text {
  font-size: 12px;
}
.about__text a {
  text-decoration: underline;
}
.about__text a:hover {
  color: #9ED0E0;
}
@media screen and (min-width: 768px) {
  .about__text {
    margin-top: 4px;
    font-size: 16px;
  }
}
.about__text span {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__text span {
    font-size: 16px;
  }
}

.about__lead {
  margin-top: 32px;
  padding-bottom: 7px; /* 調整 */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__lead {
    margin-top: 46px;
  }
}
.about__lead::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #9ED0E0 0px, #9ED0E0 2px, transparent 2px, transparent calc(100% - 2px), #9ED0E0 calc(100% - 2px), #9ED0E0 100%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .about__lead::after {
    bottom: -5px;
  }
}

.about__lead-text {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__lead-text {
    font-size: 20px;
  }
}

.about__button {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .about__button {
    margin-top: 38px;
  }
}

.about__arrow {
  text-align: center;
  position: relative;
}
.about__arrow img {
  width: 100px;
  height: 36px;
  display: block;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__arrow img {
    width: 140px;
    height: 50px;
  }
}

/* ------------------------------------
About decoration img
-------------------------------------*/
.about-decoration__left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-decoration__square {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-decoration__square {
    display: block;
    position: absolute;
    top: -23px;
    left: -19px;
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__square {
    display: block;
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-310%);
            transform: translateX(-310%);
  }
}
@media screen and (min-width: 768px) {
  .about-decoration__square img {
    width: 106px;
    height: 106px;
  }
}
@media screen and (min-width: 1024px) {
  .about-decoration__square img {
    width: min(max(106px, 17vw), 250px);
    height: min(max(106px, 17vw), 250px);
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__square img {
    width: 250px;
    height: 250px;
  }
}

.about-decoration__photo1 {
  position: absolute;
  top: 395px;
  left: 50%;
  -webkit-transform: translateX(-164%);
          transform: translateX(-164%);
}
@media screen and (min-width: 768px) {
  .about-decoration__photo1 {
    top: 74px;
    left: -320px;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__photo1 {
    left: 50%;
    -webkit-transform: translateX(-228%);
            transform: translateX(-228%);
    top: 71px;
  }
}
.about-decoration__photo1 img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .about-decoration__photo1 img {
    max-width: 375px;
    max-height: 375px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .about-decoration__photo1 img {
    max-width: min(max(375px, 30vw), 480px);
    max-height: min(max(375px, 30vw), 480px);
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__photo1 img {
    max-width: 480px;
    max-height: 480px;
  }
}

.about-decoration__road {
  position: absolute;
  top: 560px;
  left: -55px;
}
@media screen and (min-width: 768px) {
  .about-decoration__road {
    top: 319px;
    left: -103px;
    z-index: -1;
    margin-left: -38px;
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__road {
    top: 319px;
    left: 50%;
    -webkit-transform: translateX(-201%);
            transform: translateX(-201%);
    z-index: -1;
    margin-left: 0;
  }
}
.about-decoration__road img {
  max-width: 216px;
  max-height: 433px;
}
@media screen and (min-width: 768px) {
  .about-decoration__road img {
    max-width: 427px;
    max-height: clamp(756px, 80vh, 817px);
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__road img {
    max-width: 427px;
    max-height: 817px;
  }
}

.about-decoration__right {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .about-decoration__right {
    overflow-x: clip;
  }
}

.about-decoration__photo2 {
  position: absolute;
  top: 272px;
  right: 50%;
  -webkit-transform: translateX(164%);
          transform: translateX(164%);
}
@media screen and (min-width: 768px) {
  .about-decoration__photo2 {
    top: 72px;
    right: -285px;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__photo2 {
    top: 72px;
    right: 50%;
    -webkit-transform: translateX(217%);
            transform: translateX(217%);
  }
}
.about-decoration__photo2 img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .about-decoration__photo2 img {
    max-width: 375px;
    max-height: 375px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .about-decoration__photo2 img {
    max-width: min(max(375px, 30vw), 480px);
    max-height: min(max(375px, 30vw), 480px);
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__photo2 img {
    max-width: 480px;
    max-height: 480px;
  }
}

.about-decoration__wavyline1 {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-decoration__wavyline1 {
    display: block;
    position: absolute;
    top: 596px;
    right: -566px;
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__wavyline1 {
    top: 596px;
    right: 50%;
    -webkit-transform: translateX(169%);
            transform: translateX(169%);
  }
}
@media screen and (min-width: 768px) {
  .about-decoration__wavyline1 img {
    width: 807px;
    height: 12px;
  }
}

.about-decoration__wavylin2 {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-decoration__wavylin2 {
    display: block;
    position: absolute;
    top: 629px;
    right: -499px;
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__wavylin2 {
    top: 630px;
    right: 50%;
    -webkit-transform: translateX(160%);
            transform: translateX(160%);
  }
}
@media screen and (min-width: 768px) {
  .about-decoration__wavylin2 img {
    width: 807px;
    height: 12px;
  }
}

.about-decoration__goods1 {
  position: absolute;
  top: 718px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .about-decoration__goods1 {
    top: 600px;
    right: 7px;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 1024px) {
  .about-decoration__goods1 {
    top: 600px;
    right: 149px;
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__goods1 {
    top: 600px;
    right: 50%;
    -webkit-transform: translateX(600%);
            transform: translateX(600%);
  }
}
.about-decoration__goods1 img {
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .about-decoration__goods1 img {
    width: 80px;
    height: 79px;
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__goods1 img {
    width: 101px;
    height: 100px;
  }
}

.about-decoration__goods2 {
  position: absolute;
  top: 761px;
  right: 56px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .about-decoration__goods2 {
    top: 756px;
    right: -96px;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 1024px) {
  .about-decoration__goods2 {
    top: 755px;
    right: 72px;
  }
}
@media screen and (min-width: 1500px) {
  .about-decoration__goods2 {
    top: 756px;
    right: 50%;
    -webkit-transform: translateX(222%);
            transform: translateX(222%);
  }
}
.about-decoration__goods2 img {
  width: 133px;
  height: 65px;
}
@media screen and (min-width: 768px) {
  .about-decoration__goods2 img {
    width: 308px;
    height: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .about-decoration__goods2 img {
    width: 308px;
    height: 150px;
  }
}

/* ------------------------------------
About Slider
-------------------------------------*/
.about__onomichi {
  margin-top: 103px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__onomichi {
    margin-top: 119px;
    z-index: -1;
  }
}
.about__onomichi img {
  width: 355px;
}
@media screen and (min-width: 768px) {
  .about__onomichi img {
    width: 891px;
  }
}

@media screen and (min-width: 768px) {
  .about__slider {
    overflow: hidden;
    width: 100%;
    margin-top: -9px;
  }
}

.about__swiper {
  width: 100%;
}

.about__slide {
  width: auto;
  height: auto;
}

.about-gallery img {
  max-width: 100px;
  max-height: 100px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about-gallery img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 24px;
  }
}

.step {
  margin-top: 64px;
  width: min(100%, 375px);
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step {
    margin-top: 120px;
    width: min(100%, 1440px);
    padding-inline: clamp(20px, 3vw, 36px);
  }
}

/* ------------------------------------
Step cat decoration
-------------------------------------*/
.step__cats {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (min-width: 0) and (max-width: 435px) {
  .step__cats {
    overflow-x: hidden;
  }
}
@media screen and (min-width: 768px) {
  .step__cats {
    overflow-x: visible;
  }
}

.step__cats-left {
  position: absolute;
  top: -1px;
  right: 23px;
}
@media screen and (min-width: 320px) and (max-width: 350px) {
  .step__cats-left {
    right: 9px;
  }
}
@media screen and (min-width: 768px) {
  .step__cats-left {
    top: 0px;
    right: 132px;
  }
}
@media screen and (min-width: 1024px) {
  .step__cats-left {
    top: -26px;
    right: 193px;
  }
}
.step__cats-left img {
  width: 105px;
  height: 63px;
}
@media screen and (min-width: 768px) {
  .step__cats-left img {
    width: 121px;
    height: 72px;
  }
}
@media screen and (min-width: 768px) {
  .step__cats-left img {
    width: clamp(121px, 16vw, 238px);
    height: auto;
    aspect-ratio: 238/141;
  }
}
@media screen and (min-width: 1500px) {
  .step__cats-left img {
    width: 238px;
    height: 141px;
  }
}

.step__cats-right {
  position: absolute;
  top: 5px;
  right: -30px;
}
@media screen and (min-width: 320px) and (max-width: 350px) {
  .step__cats-right {
    right: -40px;
  }
}
@media screen and (min-width: 768px) {
  .step__cats-right {
    top: 7px;
    right: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .step__cats-right {
    top: -16px;
    right: 70px;
  }
}
.step__cats-right img {
  width: 94px;
  height: 80px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .step__cats-right img {
    width: clamp(109px, 15vw, 214px);
    height: auto;
    aspect-ratio: 214/181;
  }
}
@media screen and (min-width: 1500px) {
  .step__cats-right img {
    width: 214px;
    height: 181px;
  }
}

.step__map {
  position: absolute;
  top: 3px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .step__map {
    top: -62px;
    left: 3px;
  }
}
.step__map img {
  width: 149px;
  height: 223px;
}
@media screen and (min-width: 768px) {
  .step__map img {
    width: clamp(230px, 25vw, 453px);
    height: auto;
    aspect-ratio: 453/692;
  }
}
@media screen and (min-width: 1500px) {
  .step__map img {
    width: 453px;
    height: 692px;
  }
}

.step__foot1 {
  position: absolute;
  top: 74px;
  right: 20px;
}
@media screen and (min-width: 320px) and (max-width: 350px) {
  .step__foot1 {
    right: 3px;
  }
}
@media screen and (min-width: 768px) {
  .step__foot1 {
    top: 142px;
    right: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .step__foot1 {
    top: 149px;
    right: 0px;
  }
}
.step__foot1 img {
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 768px) {
  .step__foot1 img {
    width: clamp(51px, 6vw, 100px);
    height: auto;
    aspect-ratio: 100/220;
  }
}
@media screen and (min-width: 1500px) {
  .step__foot1 img {
    width: 100px;
    height: 220px;
  }
}

.step__foot2 {
  position: absolute;
  top: 550px;
  left: 20px;
  z-index: -1;
}
@media screen and (min-width: 320px) and (max-width: 350px) {
  .step__foot2 {
    left: 7px;
  }
}
@media screen and (min-width: 768px) {
  .step__foot2 {
    top: 583px;
    left: -1px;
  }
}
.step__foot2 img {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 768px) {
  .step__foot2 img {
    width: clamp(51px, 6vw, 100px);
    height: auto;
    aspect-ratio: 100/220;
  }
}
@media screen and (min-width: 1500px) {
  .step__foot2 img {
    width: 100px;
    height: 220px;
  }
}

.step__foot3 {
  position: absolute;
  bottom: 361px;
  right: 20px;
}
@media screen and (min-width: 320px) and (max-width: 350px) {
  .step__foot3 {
    right: 13px;
  }
}
@media screen and (min-width: 768px) {
  .step__foot3 {
    display: none;
  }
}
.step__foot3 img {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  width: 55px;
  height: 120px;
}

/* ------------------------------------
Step contents
-------------------------------------*/
@media screen and (min-width: 768px) {
  .step__inner {
    width: min(100%, 1024px);
    margin-inline: auto;
    position: relative;
    z-index: 1;
  }
}

.step__container {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 51px;
}
@media screen and (min-width: 768px) {
  .step__container {
    margin-top: 44px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(16px, 2vw, 32px);
  }
}

.step__box {
  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;
  position: relative;
  width: 100%;
  max-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .step__box {
    margin-inline: 0;
    width: calc((100% - 40px) / 3);
    min-width: 220px;
  }
  .step__box:nth-child(2) {
    margin-top: 69px;
  }
}
.step__box::after {
  position: absolute;
  content: "";
  background-image: url(/img/sp/step-line.png);
  background-size: cover;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 768px) {
  .step__box::after {
    background-image: url(/img/step-line-pc.png);
    width: 113px;
    height: 24px;
  }
}
.step__box:nth-child(1)::after {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 859px) {
  .step__box:nth-child(2)::after {
    top: 77px;
    left: -18px;
  }
}
@media screen and (min-width: 860px) and (max-width: 950px) {
  .step__box:nth-child(2)::after {
    top: 108px;
    left: -18px;
  }
}
@media screen and (min-width: 951px) and (max-width: 1023px) {
  .step__box:nth-child(2)::after {
    top: 129px;
    left: -18px;
  }
}
@media screen and (min-width: 1024px) {
  .step__box:nth-child(2)::after {
    top: 134px;
    left: -39px;
  }
}
@media screen and (min-width: 768px) and (max-width: 859px) {
  .step__box:nth-child(3)::after {
    top: 149px;
    left: -30px;
  }
}
@media screen and (min-width: 860px) and (max-width: 950px) {
  .step__box:nth-child(3)::after {
    top: 171px;
    left: 3px;
  }
}
@media screen and (min-width: 951px) and (max-width: 1023px) {
  .step__box:nth-child(3)::after {
    top: 195px;
    left: -30px;
  }
}
@media screen and (min-width: 1024px) {
  .step__box:nth-child(3)::after {
    top: 204px;
    left: -32px;
  }
}

.step__image img {
  width: 196px;
  height: 210px;
}
@media screen and (min-width: 768px) {
  .step__image img {
    width: clamp(200px, 25vw, 280px);
    height: auto;
    aspect-ratio: 280/300;
  }
}

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

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

.step__text {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
}
.step__text a {
  text-decoration: underline;
}
.step__text a:hover {
  color: #9ED0E0;
}
@media screen and (min-width: 768px) {
  .step__text {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .step__text {
    font-size: 16px;
  }
}
.step__text span {
  font-weight: 700;
}

.step__btn {
  margin-top: 16px;
  background: #fff;
  padding: 7px 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step__btn {
    margin-top: 20px;
    padding: 7px 10px;
  }
}
@media screen and (min-width: 1024px) {
  .step__btn {
    padding: 7px 12px;
  }
}

.step__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.step__link:hover {
  color: #9ED0E0;
}

.step__icon {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .step__icon {
    width: 24px;
    height: 24px;
  }
}

.step__link-text {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .step__link-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .step__link-text {
    font-size: 16px;
  }
}

.step__button {
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .step__button {
    margin-top: 49px;
  }
}

.step__line {
  text-align: center;
  margin-top: 16px;
}
.step__line img {
  width: 7px;
  height: 34px;
}

.prizes {
  margin-top: 38px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .prizes {
    margin-top: 120px;
  }
}

@media screen and (min-width: 768px) {
  .prizes__inner {
    padding-inline: 0;
  }
}

.prizes__decobg {
  display: none;
}
@media screen and (min-width: 768px) {
  .prizes__decobg {
    display: block;
    max-width: 1024px;
    margin-inline: auto;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .prizes__decobg-left {
    position: absolute;
    top: 37px;
    left: -1px;
  }
  .prizes__decobg-left img {
    width: clamp(250px, 30vw, 315px);
    aspect-ratio: 315/86;
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .prizes__decobg-right {
    position: absolute;
    top: 37px;
    right: -1px;
  }
  .prizes__decobg-right img {
    width: clamp(250px, 30vw, 315px);
    aspect-ratio: 315/86;
    height: auto;
  }
}

.prizes__wrapper {
  position: relative;
  padding-top: 83px;
  padding-bottom: 218px;
}
@media screen and (min-width: 768px) {
  .prizes__wrapper {
    padding-top: 158px;
    padding-bottom: 640px;
  }
}

.heading__prizes {
  position: relative;
  margin-top: -82px;
}
@media screen and (min-width: 768px) {
  .heading__prizes {
    margin-top: -179px;
    padding-top: 28px;
  }
}

.prizes__container {
  padding-top: 20px;
  padding-bottom: 34px;
  margin-inline: -20px;
  padding-inline: 20px;
  border-radius: 24px;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .prizes__container {
    margin-inline: 20px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__container {
    padding-top: 28px;
    padding-bottom: 55px;
    padding-inline: 20px;
    margin-inline: auto;
    max-width: 900px;
    width: calc(100% - 60px);
  }
}
.prizes__container::before {
  position: absolute;
  content: "";
  background: url(/img/sp/prizes-deco1-sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 237px;
  height: 83px;
  top: -82px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .prizes__container::before {
    background-size: 100% 100%;
    top: -153px;
    width: 408.624px;
    height: 170.967px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__container {
    margin-inline: auto;
    padding-inline: 0;
    width: 100%;
    max-width: 1024px;
  }
}

.prizes__lead {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prizes__lead {
    margin-top: 40px;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .prizes__lead {
    margin-top: 42px;
  }
}
.prizes__lead p {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .prizes__lead p {
    font-size: 16px;
  }
}

.prizes__list {
  margin-top: 45px;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: auto;
  margin-inline: auto;
  grid-auto-rows: auto;
  gap: 39px 15px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes__list {
    margin-top: 82px;
    gap: 80px 33px;
    padding-inline: 22px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
  }
  .prizes__list > *:nth-child(-n+2) {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 24px;
    grid-column: span 3;
    aspect-ratio: 440/460;
  }
  .prizes__list > *:nth-child(n+3) {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 16px;
    grid-column: span 2;
    aspect-ratio: 280/320;
  }
  .prizes__list > *:nth-child(5) {
    max-width: 280px;
    height: auto;
    aspect-ratio: 280/320;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__list {
    margin-top: 82px;
    gap: 80px 33px;
    padding-inline: 22px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
  }
  .prizes__list > *:nth-child(-n+2) {
    grid-column: span 3;
    width: 100%;
    max-width: 440px;
    height: 460px;
    border-radius: 24px;
  }
  .prizes__list > *:nth-child(n+3) {
    grid-column: span 2;
    width: 100%;
    max-width: 280px;
    height: 320px;
    border-radius: 16px;
  }
  .prizes__list > *:nth-child(5) {
    max-width: 280px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .prizes__list {
    padding-inline: 38px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__list {
    padding-inline: 56px;
  }
}

.prizes__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  min-height: 196px;
  border-radius: 8px;
  background: #F5F5F5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .prizes__item--large {
    border-radius: 24px;
  }
  .prizes__item--medium {
    border-radius: 16px;
  }
}
.prizes__item:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 4px solid #9ED0E0;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .prizes__item:hover::after {
    border-radius: 24px;
  }
}
.prizes__item:hover .prizes__body-icon {
  background-color: #9ED0E0;
}
.prizes__item:hover .prizes__image {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 768px) {
  .prizes__item:hover .prizes__image {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__item:hover .prizes__image--medium {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}
.prizes__item:hover .prizes__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and (min-width: 768px) {
  .prizes__item--medium:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 4px solid #9ED0E0;
    pointer-events: none;
    z-index: 1;
  }
}
.prizes__item:nth-of-type(1)::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/sp/prizes-icon1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .prizes__item:nth-of-type(1)::before {
    top: -50px;
    width: 100px;
    height: 100px;
    z-index: 2;
  }
}
.prizes__item:nth-of-type(2)::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/sp/prizes-icon2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .prizes__item:nth-of-type(2)::before {
    top: -50px;
    width: 100px;
    height: 100px;
    z-index: 2;
  }
}
.prizes__item:nth-of-type(3)::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/sp/prizes-icon3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .prizes__item:nth-of-type(3)::before {
    width: 80px;
    height: 100px;
    top: -50px;
    z-index: 2;
  }
}
.prizes__item:nth-of-type(4)::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/sp/prizes-icon4.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .prizes__item:nth-of-type(4)::before {
    width: 80px;
    height: 100px;
    top: -50px;
    z-index: 2;
  }
}
.prizes__item:nth-of-type(5)::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/sp/prizes-icon5.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .prizes__item:nth-of-type(5)::before {
    width: 80px;
    height: 100px;
    top: -50px;
    z-index: 2;
  }
}
.prizes__item:nth-of-type(5) {
  grid-column: 1/span 2;
  justify-self: center;
  width: 160px;
}
@media screen and (min-width: 376px) and (max-width: 899px) {
  .prizes__item:nth-of-type(5) {
    width: 50%;
    max-width: 400px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__item:nth-of-type(5) {
    justify-self: initial;
    grid-column: span 2;
    width: 280px;
    height: auto;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__item:nth-of-type(5) {
    justify-self: initial;
    grid-column: span 2;
    width: 280px;
    height: 320px;
    width: 100%;
  }
}

.prizes__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  width: 100%;
}
.prizes__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 140px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (min-width: 768px) {
  .prizes__image img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    z-index: -2;
  }
}
@media screen and (min-width: 768px) {
  .prizes__image--medium img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__image--medium {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__image--large {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}

.prizes__body {
  padding: 9px 26px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .prizes__body {
    padding: 27px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__body--large-padding {
    padding: 43px;
  }
}
.prizes__body--medium-padding {
  padding-block: 19px;
}
@media screen and (max-width: 374px) {
  .prizes__body--medium-padding {
    padding-block: 9px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__body--medium-padding {
    padding-block: 27px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__body--small-padding {
    padding-block: 14px;
  }
}

.prizes__text {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 374px) {
  .prizes__text {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__text {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__text--small {
    font-size: 16px;
  }
}

.prizes__body-icon {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 2%, 0% 100%, 100% 100%);
          clip-path: polygon(100% 2%, 0% 100%, 100% 100%);
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
  background-color: #67B0C7;
}
@media screen and (min-width: 768px) {
  .prizes__body-icon {
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    -webkit-clip-path: polygon(100% 2%, 0% 100%, 100% 100%);
            clip-path: polygon(100% 2%, 0% 100%, 100% 100%);
    background-color: #67B0C7;
    border-bottom-right-radius: 24px;
  }
  .prizes__body-icon--small {
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 16px;
  }
}

.prizes__body-zoom svg {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  bottom: 8px;
  right: 6px;
}
@media screen and (min-width: 768px) {
  .prizes__body-zoom svg {
    width: 32px;
    height: 32px;
    bottom: 12px;
    right: 14px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__body-zoom--small svg {
    width: 20px;
    height: 20px;
    bottom: 8px;
    right: 7px;
  }
}

.prizes__button {
  margin-top: 17px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prizes__button {
    margin-top: 41px;
  }
}

.prizes__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 100%;
}
.prizes__bg img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .prizes__bg img {
    height: 640px;
    width: 100vw;
    max-width: none;
  }
}

/* ------------------------------------
Modal
-------------------------------------*/
.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  max-width: 336px;
  max-height: 480px;
  border: none;
  border-radius: 24px;
  background: #fff;
  z-index: 1000;
  overflow: hidden;
}
.prizes-modal:focus {
  outline: none;
}
@media screen and (min-width: 768px) {
  .prizes-modal {
    max-width: 480px;
    max-height: 650px;
  }
}
.prizes-modal::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}
.prizes-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

.prizes-modal__card {
  max-width: 336px;
  max-height: 480px;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .prizes-modal__card {
    max-width: 480px;
    max-height: 650px;
  }
}

@media screen and (min-width: 768px) {
  .prizes-modal__image {
    overflow: hidden;
  }
}
.prizes-modal__image img {
  max-width: 336px;
  max-height: 210px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
@media screen and (min-width: 768px) {
  .prizes-modal__image img {
    width: 100%;
    display: block;
    max-width: 480px;
    max-height: 300px;
  }
}

.prizes-modal__body {
  padding: 39px 20px 56px;
  max-height: 424px;
}
@media screen and (min-width: 768px) {
  .prizes-modal__body {
    padding: 32px 40px 106px;
    max-width: 480px;
    max-height: 544px;
  }
}

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

.prizes-modal__text {
  margin-top: 12px;
  text-align: center;
  color: #000;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .prizes-modal__text {
    font-size: 16px;
  }
}

.prizes-modal__button {
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .prizes-modal__button {
    margin-top: 24px;
  }
}

.spots {
  margin-top: -3px;
  background: #67B0C7;
  position: relative;
}

.spots__inner {
  padding-bottom: 19px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .spots__column {
    padding-left: calc(50% - 266px);
  }
}
@media screen and (min-width: 1024px) {
  .spots__column {
    padding-left: calc(50% - 322px);
  }
}
@media screen and (min-width: 1200px) {
  .spots__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-left: calc(50% - 520px);
  }
}

.spots__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .spots__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding-left: calc(50% - 284px);
  }
}
@media screen and (min-width: 1024px) {
  .spots__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding-left: calc(50% - 343px);
  }
}
@media screen and (min-width: 1200px) {
  .spots__heading {
    padding-left: calc(50% - 520px);
  }
}

@media screen and (min-width: 768px) {
  .spots__icon {
    width: 40px;
    height: 40px;
  }
}
.spots__icon svg {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .spots__icon svg {
    width: 56px;
    height: 56px;
  }
}

.spots__title {
  display: block;
  color: #fff;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 374px) {
  .spots__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .spots__title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.2em;
    margin-top: 30px;
    font-size: 38px;
    padding-left: 8px;
    padding-right: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .spots__title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.3em;
    margin-top: 30px;
    font-size: 38px;
    padding-right: 4px;
  }
}
@media screen and (min-width: 1500px) {
  .spots__title {
    margin-top: 31px;
    font-size: 40px;
    letter-spacing: 0.66rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .spots__container {
    margin-top: 35px;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .spots__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 39px;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__container {
    gap: 79px;
  }
}

.spots__decoration {
  display: block;
  text-align: center;
}
.spots__decoration img {
  width: 255px;
  height: 55px;
}
@media screen and (min-width: 1024px) {
  .spots__decoration img {
    width: 495px;
    height: 107px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .spots__decoration img {
    width: 495px;
    height: 107px;
  }
}

.spots__lead {
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .spots__lead {
    margin-top: 2px;
  }
}
.spots__lead p {
  color: #fff;
  text-align: center;
  font-size: 11.444px;
}
@media screen and (min-width: 320px) and (max-width: 330px) {
  .spots__lead p {
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .spots__lead p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .spots__lead p {
    font-size: 16px;
  }
}

.spots__button {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spots__button {
    text-align: end;
  }
}

.spots-decoration__foot {
  display: none;
}
@media screen and (min-width: 768px) {
  .spots-decoration__foot {
    display: block;
    position: absolute;
    bottom: 13px;
    left: 36px;
    z-index: 2;
  }
}
@media screen and (min-width: 1024px) {
  .spots-decoration__foot {
    bottom: 151px;
    left: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-decoration__foot {
    bottom: 13px;
    left: -201px;
    padding-left: calc(50% - 520px);
  }
}
@media screen and (min-width: 768px) {
  .spots-decoration__foot img {
    width: 100px;
    height: 220px;
  }
}

/* ------------------------------------
Spots Slider
-------------------------------------*/
.spots__slider {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .spots__slider {
    width: 100%;
    margin-top: 0;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .spots__swiper {
    padding-bottom: 24px;
    margin-left: 95px;
  }
}

@media screen and (min-width: 768px) {
  .spots__wrapper {
    overflow: visible;
  }
}

.spots__slide {
  width: 240px;
  height: 402px;
  border-radius: 12px;
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 374px) {
  .spots__slide {
    width: calc(100% + 4px);
    max-width: 240px;
    margin-right: 8px;
  }
}
@media screen and (min-width: 768px) {
  .spots__slide {
    width: 344px;
    height: 480px;
    border-radius: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__slide {
    width: calc(344px + 80 * (100vw - 1512px) / 488);
    height: 542px;
    margin-right: 50px;
    border-radius: 24px;
  }
}

.spots__image img {
  width: 240px;
  height: 180px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
@media screen and (min-width: 768px) {
  .spots__image img {
    width: 344px;
    height: 240px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__image img {
    width: calc(344px + 80 * (100vw - 1512px) / 488);
    height: calc(240px + 38 * (100vw - 1512px) / 488);
  }
}

.spots__body {
  padding: 17px 24px 31px;
}
@media screen and (min-width: 768px) {
  .spots__body {
    padding: 24px 32px 40px;
  }
}

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

.spots__text {
  margin-top: 16px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .spots__text {
    margin-top: 9px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .spots__text {
    margin-top: 10px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__text {
    margin-top: 25px;
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .spots__prev,
  .spots__next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 64px;
    height: 64px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__prev,
  .spots__next {
    width: 80px;
    height: 80px;
  }
}
.spots__prev::after,
.spots__next::after {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .spots__prev {
    background: url(/img/spots-prev-icon.png) no-repeat center center/contain;
    top: 486px;
    left: calc((100% - 437px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .spots__prev {
    background: url(/img/spots-prev-icon.png) no-repeat center center/contain;
    top: 497px;
    left: calc((100% - 522px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .spots__prev {
    background: url(/img/spots-prev-icon.png) no-repeat center center/contain;
    top: 550px;
    left: calc((100% - 948px) / 2);
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .spots__next {
    background: url(/img/spots-next-icon.png) no-repeat center center/contain;
    top: 486px;
    right: 152px;
  }
}
@media screen and (min-width: 1024px) {
  .spots__next {
    background: url(/img/spots-next-icon.png) no-repeat center center/contain;
    top: 497px;
    right: calc((100% - 715px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .spots__next {
    background: url(/img/spots-next-icon.png) no-repeat center center/contain;
    top: 550px;
    right: calc((100% - 948px) / 2);
  }
}

.qa {
  margin-top: 47px;
  padding-block: 40px;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-block: 0;
    padding-top: 178px;
  }
}

.qa-container {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .qa-container {
    padding-top: 41px;
    max-width: 1024px;
    display: grid;
    margin: 0 auto;
    gap: 23px;
  }
}

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

.qa-box {
  border-radius: 12px;
  border: 2px solid #4A3636;
  background: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .qa-box {
    border-radius: 16px;
  }
}
.qa-box[open] .qa-box__btn::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.qa-box[open] .qa-box__btn::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0;
}

.qa-box__head {
  padding: 10px 52px 9px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  list-style: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding: 25px 88px 24px 24px;
    gap: 16px;
  }
}
.qa-box__head::-webkit-details-marker {
  display: none;
}

.qa-box__icon {
  color: #9ED0E0;
  font-family: "Josefin Sans", serif;
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .qa-box__icon {
    font-size: 32px;
  }
}

.qa-box__text {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .qa-box__text {
    font-size: 20px;
  }
}

.qa-box__btn {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background: url(/img/qa-ellipse.png) no-repeat center center/contain;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .qa-box__btn {
    width: 48px;
    height: 48px;
  }
}
.qa-box__btn::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: url(/img/qa-line.png) no-repeat center center/contain;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .qa-box__btn::before {
    width: 19px;
    height: 3px;
    right: 14px;
    top: 23px;
  }
}
.qa-box__btn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: url(/img/qa-line.png) no-repeat center center/contain;
  top: 50%;
  right: 7px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .qa-box__btn::after {
    width: 19px;
    height: 3px;
    right: 13px;
    top: 23px;
  }
}

.qa-box__body {
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}

.qa-box__a {
  background: #F5F5F5;
  padding: 17px 14px 14px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media screen and (min-width: 768px) {
  .qa-box__a {
    font-size: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 26px 27px 24px 22px;
  }
}

.qa-box__a-icon {
  color: #9ED0E0;
  font-family: "Josefin Sans", serif;
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .qa-box__a-icon {
    font-size: 32px;
  }
}

.qa-box__a-text a {
  text-decoration: underline;
}
.qa-box__a-text a:hover {
  color: #9ED0E0;
}

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

.infomation__container {
  padding-top: 18px;
  padding-bottom: 16px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .infomation__container {
    padding: 40px 20px;
    max-width: 1024px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .infomation__container {
    padding: 30px 48px 30px;
  }
}

.infomation__info {
  padding-inline: 15px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .infomation__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 42px;
    padding-inline: 0;
  }
}

.infomation__title {
  font-weight: 700;
  padding-left: 16px;
  position: relative;
}
.infomation__title::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: url(/img/infomation-ellipse.png) no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .infomation__title::before {
    -webkit-transform: none;
            transform: none;
    top: 9px;
    left: 16px;
  }
}
@media screen and (min-width: 768px) {
  .infomation__title {
    width: 26%;
    font-size: 16px;
    font-weight: 700;
    padding-left: 32px;
  }
  .infomation__title::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
  }
  .infomation__title:last-of-type::after {
    display: none;
  }
}

.infomation__text {
  font-size: 12px;
  position: relative;
  padding-bottom: 15px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.infomation__text a {
  text-decoration: underline;
}
.infomation__text a:hover {
  color: #9ED0E0;
}
.infomation__text:last-child {
  margin-bottom: 0;
}
.infomation__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.infomation__text:last-of-type::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .infomation__text {
    width: 74%;
    font-size: 16px;
    margin-top: 0;
    padding-bottom: 13px;
    padding-left: 1px;
  }
}
.infomation__text ul {
  margin: 0;
  padding: 0;
}
.infomation__text li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: -0.7px;
}
.infomation__text li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: #4A3636;
}
@media screen and (min-width: 768px) {
  .infomation__text li {
    padding-left: 28px;
    margin-bottom: 1px;
  }
  .infomation__text li::before {
    left: 11px;
    top: -1px;
  }
}

.section-devider {
  margin-top: 31px;
}
@media screen and (min-width: 768px) {
  .section-devider {
    margin-top: 120px;
  }
}
.section-devider img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.contact {
  padding-top: 39px;
  padding-bottom: 45px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 122px;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 928px;
    padding-inline: 40px;
    margin: 0 auto;
  }
}

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

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

.contact__field:nth-of-type(3) .form-field__item {
  position: relative;
}
.contact__field:nth-of-type(3) .form-field__item::before, .contact__field:nth-of-type(3) .form-field__item::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.contact__field:nth-of-type(3) .form-field__item::before {
  display: inline-block;
  right: 0;
  background-color: #9ED0E0;
  border-radius: 0 8px 8px 0;
  width: 52px;
  height: 56px;
}
.contact__field:nth-of-type(3) .form-field__item::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/select-arrow.png) no-repeat center center/contain;
  width: 32px;
  height: 32px;
}
.contact__field--error:nth-of-type(3) .form-field__item::before {
  background-color: #CE2073;
}

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

.contact__button {
  margin-top: 26px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 38px;
  }
}

.form-field--error .form-field__label {
  color: #CE2073;
}
.form-field--error .form-text,
.form-field--error .form-select,
.form-field--error .form-textarea {
  border: 1px solid #CE2073;
  background: #FFF0F7;
}
.form-field--error .form-text:focus, .form-field--error .form-text:hover,
.form-field--error .form-select:focus,
.form-field--error .form-select:hover,
.form-field--error .form-textarea:focus,
.form-field--error .form-textarea:hover {
  outline: none;
}
@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.form-field__head--message {
  margin-top: 0.2em;
}
@media screen and (min-width: 768px) {
  .form-field__head--message {
    margin-top: 1em;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .form-field__head--newsletter {
    margin-top: 14px;
  }
}
@media screen and (min-width: 768px) {
  .form-field__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

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

.form-field__tag {
  display: inline-block;
  border-radius: 4px;
  background: #CE2073;
  padding: 4px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.form-field__item {
  margin-top: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    margin-top: 0;
  }
}

.form-text {
  width: 100%;
  height: 56px;
  padding: 15px;
  border-radius: 8px;
  background: #F5F5F5;
  border: none;
}
@media screen and (min-width: 768px) {
  .form-text {
    font-size: 16px;
  }
}
.form-text:hover, .form-text:focus {
  outline: 1px solid #9ED0E0;
}
.form-text:focus {
  background: #E9F6F8;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 56px;
  padding: 13px 38px 15px 15px;
  border-radius: 8px;
  background: #F5F5F5;
  border: none;
}
.form-select:hover, .form-select:focus {
  outline: 1px solid #9ED0E0;
}

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

.form-radio {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.4375;
}

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

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

.form-textarea {
  border-radius: 8px;
  background: #F5F5F5;
  width: 100%;
  height: 160px;
  border: none;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    margin-top: 18px;
  }
}
.form-textarea:hover, .form-textarea:focus {
  outline: 1px solid #9ED0E0;
}
.form-textarea:focus {
  background: #E9F6F8;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    font-size: 16px;
  }
}

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

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

.footer {
  padding-top: 39px;
  background: #E9F6F8;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 118px;
  }
}

@media screen and (max-width: 374px) {
  .footer__inner {
    padding-inline: 10px;
  }
}
@media screen and (min-width: 600px) {
  .footer__inner {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: 10px;
  }
}

.footer__title {
  font-family: "Josefin Sans", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__title {
    font-size: 24px;
  }
}

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

.footer__link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__link:hover {
  opacity: 0.7;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

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

.footer__onomichi {
  margin-top: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__onomichi {
    margin-top: 39px;
  }
}
.footer__onomichi img {
  width: 328px;
}
@media screen and (min-width: 768px) {
  .footer__onomichi img {
    width: 755px;
  }
}

.footer__content {
  margin-top: -3px;
}
@media screen and (min-width: 768px) {
  .footer__content {
    margin: 0 auto;
    max-width: 1024px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    position: relative;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .footer__content::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 220px;
    background: url("/img/img_bg_pawpads.png") no-repeat center center/cover;
    top: -307px;
    right: 2px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .footer__content::after {
    top: -257px;
    right: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1500px) {
  .footer__content::after {
    right: -164px;
  }
}

.footer__map {
  line-height: 0;
}

.footer__iframe {
  aspect-ratio: 335/270;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
}
@media screen and (min-width: 768px) {
  .footer__iframe {
    aspect-ratio: 512/400;
    width: 512px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 16px;
  }
}

.footer__info {
  background-color: #fff;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}
@media screen and (min-width: 768px) {
  .footer__info {
    display: grid;
    place-content: center;
    width: 512px;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 0;
  }
}

.footer__info {
  padding: 24px 24px 29px 24px;
  background-color: #fff;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}
@media screen and (min-width: 320px) and (max-width: 335px) {
  .footer__info {
    padding: 24px 24px 29px 18px;
  }
}
@media screen and (min-width: 768px) {
  .footer__info {
    padding: 0;
  }
}

.footer__logo {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .footer__logo {
    margin-left: -10px;
    margin-top: -10px;
  }
}
.footer__logo img {
  width: 153px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 183px;
    height: 24px;
  }
}

.footer__detail {
  display: grid;
  grid-template-columns: 80px 202px;
  row-gap: 8px;
}
@media screen and (min-width: 768px) {
  .footer__detail {
    grid-template-columns: 80px 270px;
    row-gap: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__detail {
    grid-template-columns: 114px 270px;
  }
}
@media screen and (min-width: 1500px) {
  .footer__detail {
    grid-template-columns: 114px 261px;
    row-gap: 12px;
  }
}

.footer__details {
  display: grid;
  place-items: center;
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .footer__details {
    margin-top: 24px;
  }
}

.footer__label {
  padding-left: 16px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__label {
    padding-left: 15px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__label {
    padding-left: 16px;
  }
}
.footer__label::before {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/footer-ellipse.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .footer__label {
    left: -8px;
  }
}

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

.footer__copyright {
  background-color: #67B0C7;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: -2px;
    padding-bottom: 32px;
  }
}
.footer__copyright small {
  display: block;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright small {
    font-size: 14px;
  }
}

.info-content {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
}

.page-top {
  display: block;
  margin-top: 26px;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.page-top:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .page-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 100;
  }
  .page-top.is-show {
    opacity: 1;
  }
}
.page-top img {
  width: 75px;
  height: 78px;
}
@media screen and (min-width: 768px) {
  .page-top img {
    width: 100px;
    height: 104px;
  }
}

.button {
  display: inline-block;
  padding: 4px 24px 6px;
  border-radius: 40px;
  border: 2px solid currentColor;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  color: #4A3636;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.button:hover {
  background: #FFEE56;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0px 2px 0px 0px #4A3636;
          box-shadow: 0px 2px 0px 0px #4A3636;
}
.button--fv {
  font-size: 14px;
  padding: 4px 23px 6px;
}
@media screen and (max-width: 374px) {
  .button--step {
    font-size: 14px;
  }
}
.button--prizes {
  padding: 4px 22px 6px;
}
@media screen and (min-width: 320px) and (max-width: 373px) {
  .button--prizes {
    font-size: 12px;
  }
}
@media screen and (min-width: 320px) and (max-width: 335px) {
  .button--spots {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .button--spots {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .button {
    padding: 7px 37px 9px;
    border: 3px solid currentColor;
  }
  .button--fv {
    padding: 4px 24px 6px;
    font-size: 16px;
  }
  .button--small {
    font-size: 14px;
    padding: 3px 21px 5px;
  }
  .button--medium {
    border: 2px solid currentColor;
    padding: 4px 22px 6px;
  }
  .button--medium-large {
    border: 2px solid currentColor;
    padding: 4px 22px 6px;
    width: 240px;
    height: 40px;
  }
  .button--large {
    font-size: 20px;
  }
}

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

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

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

.heading__en {
  font-family: "Courgette", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .heading__en {
    font-size: 20px;
    font-weight: 400;
  }
}

.card-title {
  font-size: 20px;
  font-weight: 700;
}

.wave-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  min-width: 320px;
}
.wave-container--footer {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .wave-container--footer {
    margin-top: 119px;
  }
}
.wave-container--prizes {
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .wave-container--prizes {
    bottom: 3px;
  }
}
.wave-container--spots {
  position: absolute;
  bottom: -45px;
}
@media screen and (min-width: 768px) {
  .wave-container--spots {
    bottom: -107px;
  }
}

.wave-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 96px;
          flex: 1 0 96px;
  min-width: 96px;
  height: 45.714px;
  background-size: auto 100%;
  background-repeat: repeat-x;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .wave-item {
    min-width: 252px;
    height: 120px;
  }
}
.wave-container--footer .wave-item {
  background-image: url("/img/img_bg_wave.svg");
}
.wave-container--prizes .wave-item {
  background-image: url("/img/img_bg_wave.svg");
}
.wave-container--spots .wave-item {
  background-image: url("/img/spots-bottom-wave.svg");
}

.text-bold {
  font-size: 16px;
  font-weight: 700;
}

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

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

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}