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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}
html.is-drawer-open {
  overflow: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
  background: #e9f6f8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
body.is-drawer-open {
  overflow: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
}
body.is-drawer-open > main, body.is-drawer-open > footer, body.is-drawer-open > #js-pagetop-fab {
  -webkit-transform: translate3d(0, calc(-1 * var(--drawer-lock-y, 0px)), 0);
          transform: translate3d(0, calc(-1 * var(--drawer-lock-y, 0px)), 0);
}

main {
  width: 100%;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 0 rgba(74, 54, 54, 0.08);
          box-shadow: 0 1px 0 rgba(74, 54, 54, 0.08);
}
.lp-header__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .lp-header__inner {
    max-width: min(1024px, 100% - 40px);
  }
}
.lp-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 64px;
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .lp-header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.lp-header__logo {
  display: block;
  line-height: 0;
}
.lp-header__logo img {
  height: 27px;
  width: auto;
  max-width: 210px;
  margin-left: 4px;
}
.lp-header__nav {
  display: none;
}
@media (min-width: 768px) {
  .lp-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px 20px;
  }
}
.lp-header__nav-link {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.lp-header__nav-link:hover {
  color: #67b0c7;
}
.lp-header__toggle {
  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;
  width: 40px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 768px) {
  .lp-header__toggle {
    display: none;
  }
}
.lp-header__toggle.is-open .lp-header__toggle-icon {
  opacity: 0;
}
.lp-header__toggle.is-open .lp-header__toggle-bar:nth-child(2) {
  opacity: 1;
  -webkit-transform: translateY(12px) rotate(45deg);
          transform: translateY(12px) rotate(45deg);
}
.lp-header__toggle.is-open .lp-header__toggle-bar:nth-child(3) {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.lp-header__toggle.is-open .lp-header__toggle-bar:nth-child(4) {
  opacity: 1;
  -webkit-transform: translateY(-12px) rotate(-45deg);
          transform: translateY(-12px) rotate(-45deg);
}
.lp-header__toggle-graphic {
  position: relative;
  width: 32px;
  height: 27px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.lp-header__toggle-icon {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.lp-header__toggle-bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  background: #4a3636;
  border-radius: 1.5px;
  -webkit-transform-origin: center;
          transform-origin: center;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
}
.lp-header__toggle-bar:nth-child(2) {
  top: 0;
}
.lp-header__toggle-bar:nth-child(3) {
  top: 12px;
}
.lp-header__toggle-bar:nth-child(4) {
  top: 24px;
}
.lp-header__drawer {
  position: fixed;
  inset: 64px 0 0;
  z-index: 99;
  background: rgba(74, 54, 54, 0.45);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .lp-header__drawer {
    display: none;
  }
}
.lp-header__drawer--open {
  opacity: 1;
  pointer-events: auto;
}
.lp-header__drawer--open .lp-header__drawer-panel {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-header__drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: calc(100dvh - 64px);
  padding: 82px 24px 82px;
  background: #ffffff;
  -webkit-box-shadow: 0 8px 24px rgba(74, 54, 54, 0.12);
          box-shadow: 0 8px 24px rgba(74, 54, 54, 0.12);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-header__drawer-stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 139px;
  margin: 0 auto;
}
.lp-header__drawer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}
.lp-header__drawer-link {
  display: block;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
  text-align: center;
}
.lp-header__drawer-link:hover {
  color: #67b0c7;
}
.lp-header__drawer-cta {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 144px;
  height: 40px;
  margin: 0;
  padding: 6px 24px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0 4px 0 #4a3636;
          box-shadow: 0 4px 0 #4a3636;
  cursor: pointer;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  transition: background 0.2s, transform 0.15s, -webkit-transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.lp-header__drawer-cta:-moz-any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-header__drawer-cta:any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-header__drawer-cta:focus:not(:hover) {
  background: #ffffff;
  color: #4a3636;
}
.lp-header__drawer-cta:hover {
  background: #ffee56;
}
@media (hover: none) {
  .lp-header__drawer-cta:hover {
    background: #ffffff;
  }
}
.lp-header__drawer-cta:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.lp-header__drawer-cta:focus-visible {
  outline: 2px solid #79bfd6;
  outline-offset: 2px;
}

.lp-fv {
  padding-bottom: 32px;
}
.lp-fv__hero {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  overflow: visible;
  padding-bottom: 145px;
}
@media (min-width: 768px) {
  .lp-fv__hero {
    max-width: min(1024px, 100% - 48px);
    padding-bottom: 120px;
  }
}
.lp-fv__hero-bg {
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}
@media (min-width: 768px) {
  .lp-fv__hero-bg {
    border-radius: 0 0 32px 32px;
  }
}
.lp-fv__hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 375/554;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 42%;
     object-position: center 42%;
}
@media (min-width: 768px) {
  .lp-fv__hero-img {
    aspect-ratio: 16/9;
    max-height: 560px;
    -o-object-position: center 40%;
       object-position: center 40%;
  }
}
.lp-fv__hero-text {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 17px;
  z-index: 4;
  text-align: center;
  pointer-events: none;
}
@media (min-width: 768px) {
  .lp-fv__hero-text {
    top: 40px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: min(560px, 100% - 48px);
  }
}
.lp-fv__lead {
  margin: 0 0 20px;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #4a3636;
  text-shadow: 0 0 30px #ffffff;
}
.lp-fv__lead-main, .lp-fv__lead-sub {
  display: block;
}
.lp-fv__lead-sub {
  margin-top: -4px;
}
.lp-fv__titles {
  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: 12px;
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  font: inherit;
  line-height: 0;
  -webkit-filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.95));
          filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.95));
}
.lp-fv__title-img {
  display: block;
  height: auto;
  max-width: 100%;
}
.lp-fv__title-img--main {
  width: 100%;
  max-width: 335px;
  margin-top: -3px;
}
.lp-fv__title-img--sub {
  width: min(240px, 71.6%);
  max-width: 240px;
}
.lp-fv__collage {
  position: absolute;
  left: 20px;
  width: calc(100% - 40px);
  max-width: 335px;
  top: 188px;
  min-height: 522px;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 768px) {
  .lp-fv__collage {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: clamp(160px, 22vw, 220px);
    max-width: 360px;
    min-height: 522px;
  }
}
.lp-fv__fukidashi {
  position: absolute;
  left: 0;
  top: 7px;
  width: min(142px, 42.5%);
  height: auto;
  z-index: 1;
}
.lp-fv__present-img {
  position: absolute;
  right: 25px;
  width: min(110px, 33%);
  height: auto;
  z-index: 2;
  -webkit-filter: drop-shadow(0 6px 12px rgba(74, 54, 54, 0.15));
          filter: drop-shadow(0 6px 12px rgba(74, 54, 54, 0.15));
}
@media (min-width: 768px) {
  .lp-fv__present-img {
    right: 0;
    top: 0;
  }
}
.lp-fv__phone-wrap {
  position: absolute;
  left: 20.2985074627%;
  top: 19.7318007663%;
  width: min(200px, 59.7%);
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 768px) {
  .lp-fv__phone-wrap {
    top: 21.4559386973%;
    width: min(220px, 61%);
  }
}
.lp-fv__phone {
  display: block;
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 12px 28px rgba(74, 54, 54, 0.18));
          filter: drop-shadow(0 12px 28px rgba(74, 54, 54, 0.18));
  pointer-events: none;
}
.lp-fv__phone-cta-row {
  position: absolute;
  left: 50%;
  bottom: 36.8%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 132px;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 768px) {
  .lp-fv__phone-cta-row {
    bottom: 30.5%;
    width: min(162px, 74%);
  }
}
.lp-fv__phone-cta-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 118%;
  height: 56px;
  background: #ffffff;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .lp-fv__phone-cta-mask {
    height: 58px;
  }
}
.lp-fv__phone-cta {
  position: relative;
  z-index: 1;
  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;
  width: 100%;
  min-height: 17px;
  padding: 3px 24px 7px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #4a3636;
  text-decoration: none;
  background: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0 4px 0 #4a3636;
          box-shadow: 0 4px 0 #4a3636;
  cursor: pointer;
  pointer-events: auto;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.15s;
  transition: opacity 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.15s;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.15s;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.15s, -webkit-transform 0.15s, -webkit-box-shadow 0.15s;
}
@media (min-width: 768px) {
  .lp-fv__phone-cta {
    min-height: 40px;
    padding: 9px 16px 10px;
    font-size: 13px;
  }
}
.lp-fv__phone-cta:hover {
  background: #ffee56;
  opacity: 0.95;
}
.lp-fv__phone-cta:focus-visible {
  outline: 2px solid #79bfd6;
  outline-offset: 2px;
}
.lp-fv__phone-cta:active {
  opacity: 0.95;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0 2px 0 #4a3636;
          box-shadow: 0 2px 0 #4a3636;
}
.lp-fv__deco-food {
  position: absolute;
  left: 0;
  top: 72.9885057471%;
  width: min(86px, 25.671641791%);
  aspect-ratio: 86/141;
  z-index: 4;
}
.lp-fv__deco-food-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lp-fv__deco-food-layer {
  position: absolute;
  pointer-events: none;
}
.lp-fv__deco-food-layer img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-fv__deco-food-layer--latte {
  top: 0;
  bottom: 12.05%;
  left: 50%;
  right: -4.95%;
}
.lp-fv__deco-food-layer--snack {
  top: 62.95%;
  right: 37.13%;
  bottom: 0;
  left: 0;
}
.lp-fv__deco-cats {
  position: absolute;
  left: 68.0597014925%;
  top: 75.6704980843%;
  width: min(107px, 31.9402985075%);
  aspect-ratio: 107/127;
  z-index: 4;
}
.lp-fv__deco-cats-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.lp-fv__deco-cat {
  position: absolute;
  pointer-events: none;
}
.lp-fv__deco-cat img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-fv__deco-cat--black {
  left: 42.0560747664%;
  top: 0;
  width: 57.9439252336%;
  height: 54.3307086614%;
}
.lp-fv__deco-cat--ginger {
  left: 0;
  top: 43.3070866142%;
  width: 91.5887850467%;
  height: 56.6929133858%;
}

@media (max-width: 767px) {
  .lp-fv__hero {
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
  }
  .lp-fv__hero-img {
    width: 100%;
    aspect-ratio: 375/554;
    height: auto;
    max-height: none;
  }
  .lp-fv__collage {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: min(335px, 100% - 40px);
    max-width: 335px;
  }
}
.lp-ttl {
  text-align: center;
  margin-bottom: 24px;
}
.lp-ttl__en {
  font-family: "Courgette", cursive;
  font-size: 16px;
  margin: 0 0 6px;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.lp-ttl__jp {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  padding-bottom: 5.5px;
  border-bottom: 6px solid #ffee56;
  display: inline-block;
  margin-top: -7px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.lp-about {
  padding: 11px 0 40px;
}
.lp-about__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .lp-about__inner {
    max-width: min(1024px, 100% - 40px);
  }
}
.lp-about__inner {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 220px;
}
@media (min-width: 768px) {
  .lp-about__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lp-about__stage {
  position: relative;
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  overflow: visible;
  padding-bottom: 0;
}
.lp-about__column {
  position: relative;
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  min-height: 735px;
  height: 735px;
  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;
}
.lp-about__side-photos {
  position: absolute;
  left: 50%;
  top: -10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(375px, 100%);
  height: 850px;
  pointer-events: none;
  z-index: 4;
  overflow: visible;
}
.lp-about__decoration-layer {
  position: absolute;
  left: 50%;
  top: -10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(375px, 100%);
  height: 850px;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}
.lp-about__bg-sides {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lp-about__bg-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  -webkit-box-shadow: 0 8px 24px rgba(74, 54, 54, 0.12);
          box-shadow: 0 8px 24px rgba(74, 54, 54, 0.12);
}
.lp-about__bg-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-about__bg-photo--left {
  left: -160px;
  top: 405px;
  width: 200px;
  height: 200px;
  max-width: none;
  z-index: 1;
}
@media (max-width: 359px) {
  .lp-about__bg-photo--left {
    left: -120px;
  }
}
.lp-about__bg-photo--stairs {
  left: -181px;
  top: 659px;
  border-radius: 0;
  z-index: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: visible;
  width: 100%;
  height: 231px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(180%);
          transform: scale(180%);
}
.lp-about__bg-photo--stairs img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, black), color-stop(90%, transparent));
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, black), color-stop(90%, transparent));
          mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
}
.lp-about__bg-photo--right {
  left: 78.6666666667%;
  top: 284px;
  width: 200px;
  height: 200px;
  max-width: 53.5%;
  z-index: 1;
  overflow: visible;
}
.lp-about__bg-pawpads {
  position: absolute;
  left: 85.266667%;
  top: 0px;
  width: 54px;
  height: 120px;
  z-index: 3;
  opacity: 0.95;
  pointer-events: none;
}
.lp-about__paw {
  position: absolute;
  overflow: hidden;
}
.lp-about__paw img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-about__paw--1 {
  inset: 0 5.5% 82.77% 57.93%;
}
.lp-about__paw--2 {
  inset: 27.86% 0.21% 54.91% 63.22%;
}
.lp-about__paw--3 {
  inset: 54.91% 63.22% 27.86% 0.21%;
}
.lp-about__paw--4 {
  inset: 82.77% 57.93% 0 5.5%;
}
.lp-about__bg-goods-deco {
  position: absolute;
  left: 82%;
  top: 730px;
  width: 48px;
  height: 48px;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}
.lp-about__bg-goods-deco-img {
  position: absolute;
  overflow: hidden;
}
.lp-about__bg-goods-deco-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.lp-about__bg-goods-deco-img--8 {
  inset: 0 39.09% 47.26% 0;
}
.lp-about__bg-goods-deco-img--9 {
  inset: 63.01% 0 0 60.68%;
}
.lp-about__bg-goods {
  position: absolute;
  left: 44%;
  top: 762px;
  width: min(133px, 36%);
  z-index: 2;
}
.lp-about__bg-goods img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: 19px;
  margin-top: 11px;
}
.lp-about__card-wrap {
  position: relative;
  z-index: 5;
  width: calc(100% - 40px);
  max-width: 335px;
  margin: 0 auto;
  overflow: visible;
}
.lp-about__stairs-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  width: min(375px, 100%);
  max-width: 375px;
  height: 850px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.lp-about__card {
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 0;
  padding: 40px 12px 40px;
  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: 24px;
  background: #ffffff;
  border-radius: 24px;
  -webkit-box-shadow: 0 4px 24px rgba(74, 54, 54, 0.06);
          box-shadow: 0 4px 24px rgba(74, 54, 54, 0.06);
  overflow: visible;
}
.lp-about__polaroids {
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 0;
  pointer-events: none;
  z-index: 5;
}
.lp-about__polaroid {
  position: absolute;
  top: 0;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.lp-about__polaroid--1 {
  left: 33px;
  top: 31.87px;
  -webkit-transform: translate(-50%, -50%) rotate(-8deg);
          transform: translate(-50%, -50%) rotate(-8deg);
}
.lp-about__polaroid--2 {
  left: 270.65px;
  top: 35px;
  -webkit-transform: translate(-50%, -50%) rotate(8deg);
          transform: translate(-50%, -50%) rotate(8deg);
}
.lp-about__polaroid-frame {
  width: 80px;
  height: 60px;
  border: 3.6px solid #f5f5f5;
}
.lp-about__polaroid--1 .lp-about__polaroid-frame {
  border-width: 3.9px;
  margin-top: 21px;
  margin-left: 83px;
}
.lp-about__polaroid--2 .lp-about__polaroid-frame {
  border-width: 3.9px;
}
.lp-about__polaroid-frame {
  overflow: hidden;
  background: #f5f5f5;
}
.lp-about__polaroid-frame img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-about__head {
  text-align: center;
  margin: 0;
  padding: 0 15px;
}
.lp-about__head-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 6px;
}
.lp-about__head-icon img {
  display: block;
  width: 37px;
  height: 37px;
  -webkit-transform: scale(80%);
          transform: scale(80%);
}
.lp-about__head-en {
  font-family: "Courgette", cursive;
  font-size: 16px;
  line-height: 1.25;
  color: #4a3636;
  margin: 0 0 6px;
}
.lp-about__head-jp {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #4a3636;
  margin: 0;
  padding: 0 0 6px;
  border-bottom: 6px solid #ffee56;
  display: inline-block;
}
.lp-about__lead {
  text-align: center;
  margin: 0;
  width: 100%;
}
.lp-about__lead-line {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
}
.lp-about__lead-accent {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
}
.lp-about__lead--pc, .lp-about__body--pc {
  display: none;
}
.lp-about__body {
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 249px;
  font-size: 12px;
  line-height: 1.6;
  color: #4a3636;
}
.lp-about__body p {
  margin: 0;
}
.lp-about__line {
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--01 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  line-height: 17px;
}
.lp-about__line--02 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--03 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--04 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--05 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--06 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--07 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--08 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--09 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--10 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--11 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--12 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lp-about__line--13 {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.lp-about__line--14 {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.lp-about__line--15 {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.lp-about__line--16 {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.lp-about__body-spacer {
  line-height: 1.6;
  font-size: 12px;
}
.lp-about__ig {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lp-about__tag {
  font-weight: 700;
}
.lp-about__gift {
  margin: 0 auto;
  padding: 8px 0;
  max-width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
  border-bottom: 0px dashed #9ed0e0;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.lp-about__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #4a3636;
  background: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 0 #4a3636;
          box-shadow: 0 4px 0 #4a3636;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  transition: background 0.2s, transform 0.15s, -webkit-transform 0.15s;
}
.lp-about__btn:-moz-any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-about__btn:any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-about__btn:focus:not(:hover) {
  background: #ffffff;
  color: #4a3636;
}
.lp-about__btn:hover {
  background: #ffee56;
}
@media (hover: none) {
  .lp-about__btn:hover {
    background: #ffffff;
  }
}
.lp-about__btn:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.lp-about__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  max-width: none;
  min-width: 192px;
  margin: -3px;
  min-height: 40px;
  padding: 5px 21px 6px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.lp-about__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
  width: 100%;
}
.lp-about__arrow-img {
  display: block;
  width: 100px;
  height: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.lp-about__marquee {
  position: absolute;
  left: 50%;
  top: 836px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 375px;
  margin: 0;
  padding: 0 0px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
  overflow: hidden;
}
@media (min-width: 768px) {
  .lp-about__marquee {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    max-width: none;
    margin-top: 24px;
  }
}
.lp-about__marquee-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.lp-about__marquee-logo img {
  display: block;
  width: min(354px, 92vw);
  height: auto;
  -webkit-transform: scaleX(1.03);
          transform: scaleX(1.03);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.lp-about__marquee-strip {
  padding: 4px 20px 12px;
  margin: 0;
  overflow: hidden;
}
.lp-about__marquee-strip .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.lp-about__marquee-strip .swiper-slide {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.lp-about__marquee-strip img {
  display: block;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .lp-about__inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
  }
  .lp-about__stage {
    max-width: 480px;
    padding-bottom: 140px;
  }
  .lp-about__column {
    max-width: 400px;
    min-height: 760px;
    height: auto;
  }
  .lp-about__decoration-layer {
    width: min(400px, 100%);
    height: 840px;
  }
  .lp-about__side-photos {
    width: min(400px, 100%);
    height: 840px;
  }
  .lp-about__stairs-layer {
    width: min(400px, 100%);
    max-width: 400px;
    height: 840px;
  }
  .lp-about__card-wrap {
    max-width: 400px;
  }
  .lp-about__bg-photo--left {
    top: 380px;
    left: -140px;
  }
  .lp-about__bg-photo--stairs {
    top: 544px;
    left: -48px;
    width: 198px;
    height: 397px;
  }
  .lp-about__bg-photo--right {
    top: 262px;
  }
  .lp-about__bg-goods-deco {
    top: 698px;
  }
  .lp-about__bg-goods {
    top: 740px;
    left: 44%;
  }
  .lp-about__bg-pawpads {
    left: auto;
    right: 8px;
    top: -8px;
  }
  .lp-about__card {
    max-width: 400px;
    width: 100%;
    padding: 48px 24px 40px;
  }
  .lp-about__body {
    font-size: 13px;
    max-width: 24em;
  }
}

.lp-steps {
  position: relative;
  padding: 32px 0 48px;
  background: #e9f6f8;
  top: 15px;
}
.lp-steps__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  max-width: 375px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp-steps__decor-map {
  position: absolute;
  left: -100px;
  top: 30px;
  width: 149px;
  height: 223px;
  background: url("../img/step-bg-map.svg") left top/149px 223px no-repeat;
  -webkit-transform: scale(92%);
          transform: scale(92%);
}
.lp-steps__decor-cats {
  position: absolute;
  right: 0;
  top: 40px;
  width: 160px;
  height: 88px;
  pointer-events: none;
  left: 81%;
}
.lp-steps__decor-cat {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-steps__decor-cat--1 {
  left: 0;
  top: 0;
  width: 105px;
}
.lp-steps__decor-cat--2 {
  left: 66px;
  top: 5px;
  width: 94px;
}
.lp-steps__decor-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.lp-steps__pawpads {
  position: absolute;
  width: 55px;
  height: 120px;
  pointer-events: none;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  opacity: 0.95;
}
.lp-steps__pawpads--1 {
  left: 74.6666666667%;
  top: 106px;
  -webkit-transform: rotate(180deg) scaleY(-1);
          transform: rotate(180deg) scaleY(-1);
  margin-left: 65px;
  margin-top: 8px;
}
.lp-steps__pawpads--2 {
  left: 110.666667%;
  top: 920px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.lp-steps__pawpads--3 {
  left: -74px;
  top: 590px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.lp-steps__paw {
  position: absolute;
  overflow: hidden;
}
.lp-steps__paw img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-steps__paw--1 {
  inset: 0 5.5% 82.77% 57.93%;
}
.lp-steps__paw--2 {
  inset: 27.86% 0.21% 54.91% 63.22%;
}
.lp-steps__paw--3 {
  inset: 54.91% 63.22% 27.86% 0.21%;
}
.lp-steps__paw--4 {
  inset: 82.77% 57.93% 0 5.5%;
}
.lp-steps__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .lp-steps__inner {
    max-width: min(1024px, 100% - 40px);
  }
}
.lp-steps__inner {
  position: relative;
  z-index: 1;
}
.lp-steps__head {
  text-align: center;
  margin: 0 0 32px;
}
.lp-steps__head-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 6px;
}
.lp-steps__head-icon svg,
.lp-steps__head-icon img {
  display: block;
  -webkit-transform: translateY(9px);
          transform: translateY(9px);
}
.lp-steps__head-en {
  font-family: "Courgette", cursive;
  font-size: 16px;
  line-height: 1.25;
  color: #4a3636;
  margin: 0 0 6px;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.lp-steps__head-jp {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #4a3636;
  margin: 0;
  padding: 0 8px 7px;
  border-bottom: 6px solid #ffee56;
  display: inline-block;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}
.lp-steps__list {
  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: 0;
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
}
.lp-steps__step {
  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: 16px;
  width: 100%;
  padding-bottom: 16px;
}
.lp-steps__step--1 {
  min-height: 0;
}
.lp-steps__step--3 {
  padding-bottom: 0;
}
.lp-steps__visual {
  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;
  width: 100%;
  height: 210px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.lp-steps__blob {
  position: relative;
  width: 196px;
  height: 210px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 6px;
}
.lp-steps__union {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.lp-steps__illust {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.lp-steps__illust--1 {
  left: 42px;
  top: 62px;
  width: 112px;
  height: 112px;
}
.lp-steps__illust--2, .lp-steps__illust--3 {
  left: 50%;
  top: 84px;
  width: 112px;
  height: 112px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp-steps__illust-canvas {
  position: relative;
  width: 112px;
  height: 112px;
  margin-left: 0px;
  margin-top: -4px;
}
.lp-steps__illust-camera {
  display: block;
  width: 112px;
  height: 112px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  margin-top: 3px;
}
.lp-steps__i1-follow {
  position: absolute;
  left: 12px;
  top: 117px;
  z-index: 2;
  padding: 3px 17px 3px;
  border: 1.4px solid #4a3636;
  border-radius: 6px;
  background: #ffffff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
  color: #4a3636;
}
.lp-steps__i1-phone-wrap {
  position: absolute;
  left: 30.8px;
  top: 37.1px;
  width: 38.5px;
  height: 67.9px;
  z-index: 1;
}
.lp-steps__i1-phone {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-steps__i1-ig {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 25px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-steps__i1-user {
  position: absolute;
  left: 60.2px;
  top: 49.5px;
  width: 46.2px;
  height: 46.2px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.lp-steps__i1-heart {
  position: absolute;
  left: 10px;
  top: 61px;
  width: 15px;
  height: 14px;
  -webkit-transform: rotate(26deg);
          transform: rotate(26deg);
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.lp-steps__i3-phone {
  position: absolute;
  left: 26.88%;
  top: 12.01%;
  width: 51.1px;
  height: 91.554px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-steps__i3-pic {
  position: absolute;
  left: 31.95%;
  top: 24.86%;
  width: 39.744px;
  height: 39.744px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-steps__i3-hand {
  position: absolute;
  left: 37.61%;
  top: 53.19%;
  width: 45.398px;
  height: 52.574px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-steps__i3-sparkle {
  position: absolute;
  left: 89.81px;
  top: 26.11px;
  width: 7.495px;
  height: 24.79px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-steps__bubble {
  position: absolute;
  z-index: 2;
  left: 72px;
  top: 31px;
  width: 52px;
  text-align: center;
  color: #ffffff;
}
.lp-steps__bubble--center {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp-steps__bubble-step {
  margin: 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  margin-left: 2px;
}
.lp-steps__bubble-p {
  letter-spacing: 0.08em;
}
.lp-steps__bubble-num {
  margin: 2px 0 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
  line-height: 0.9;
}
.lp-steps__content {
  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: 16px;
  width: 100%;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.lp-steps__heading {
  width: 100%;
  max-width: 320px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 1%;
}
.lp-steps__step--1 .lp-steps__heading {
  letter-spacing: 7%;
}
.lp-steps__step--2 .lp-steps__heading {
  letter-spacing: 1%;
}
.lp-steps__step--3 .lp-steps__heading {
  letter-spacing: 8%;
}
.lp-steps__text {
  width: 100%;
  max-width: 320px;
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
}
.lp-steps__text p {
  margin: 0;
}
.lp-steps__text p + p {
  margin-top: 0;
}
.lp-steps__text-ig {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: inherit;
}
.lp-steps__text-tag {
  font-weight: 700;
}
.lp-steps__br--pc-only {
  display: none;
}
.lp-steps__pc-only {
  display: none;
}
.lp-steps__s2-pc-tail {
  display: none;
}
.lp-steps__connector {
  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;
  width: 35px;
  height: 34px;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.lp-steps__connector img {
  display: block;
  width: 34px;
  height: 7px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.lp-steps__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  color: #4a3636;
  background: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 0 rgba(74, 54, 54, 0.06);
          box-shadow: 0 1px 0 rgba(74, 54, 54, 0.06);
}
.lp-steps__link:hover {
  text-decoration: underline;
  color: #67b0c7;
}
.lp-steps__link-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.lp-steps__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #4a3636;
  background: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 0 #4a3636;
          box-shadow: 0 4px 0 #4a3636;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  transition: background 0.2s, transform 0.15s, -webkit-transform 0.15s;
}
.lp-steps__btn:-moz-any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-steps__btn:any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-steps__btn:focus:not(:hover) {
  background: #ffffff;
  color: #4a3636;
}
.lp-steps__btn:hover {
  background: #ffee56;
}
@media (hover: none) {
  .lp-steps__btn:hover {
    background: #ffffff;
  }
}
.lp-steps__btn:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.lp-steps__btn {
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 0;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 2%;
  padding-top: 4px;
  padding-right: 22px;
  padding-bottom: 6px;
  padding-left: 17px;
}
.lp-steps__btn--pc {
  display: none;
}
@media (min-width: 768px) {
  .lp-steps__decor-paws {
    display: none;
  }
  .lp-steps__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    max-width: min(1100px, 100%);
  }
  .lp-steps__connector {
    display: none;
  }
  .lp-steps__step {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
    max-width: 320px;
    padding-bottom: 0;
  }
  .lp-steps__heading, .lp-steps__text {
    max-width: none;
  }
}

.lp-prizes {
  position: relative;
  padding: 0;
  background: #e9f6f8;
  overflow: hidden;
}
.lp-prizes__deco {
  display: none;
}
.lp-prizes__surface {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  background: transparent;
  isolation: isolate;
  margin-top: 10px;
}
.lp-prizes__panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.lp-prizes__panel-bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  padding-bottom: 8px;
}
.lp-prizes__inner {
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
  padding: 20px 0 40px;
  position: relative;
  z-index: 1;
}
.lp-prizes__head {
  text-align: center;
  margin: 0 0 16px;
}
.lp-prizes__head-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 6px;
}
.lp-prizes__head-icon img {
  display: block;
  width: 29.333px;
  height: 37.333px;
  -webkit-transform: rotateX(45deg);
          transform: rotateX(45deg);
}
.lp-prizes__head-en {
  font-family: "Courgette", cursive;
  font-size: 16px;
  line-height: 1.25;
  color: #4a3636;
  margin: 0 0 6px;
}
.lp-prizes__head-jp {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #4a3636;
  margin: 0;
  padding: 0 8px 6px;
  border-bottom: 6px solid #ffee56;
  display: inline-block;
}
.lp-prizes__lead {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
  margin: 0 0 24px;
}
.lp-prizes__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
}
.lp-prizes__card {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  width: 160px;
  height: 220px;
  padding: 0;
  border: none;
  margin: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.lp-prizes__card:focus-visible {
  outline: 2px solid #67b0c7;
  outline-offset: 4px;
}
.lp-prizes__badge {
  position: absolute;
  top: 0;
  left: 56px;
  z-index: 3;
  width: 48px;
  height: 45px;
  pointer-events: none;
}
.lp-prizes__badge-shape {
  display: block;
  width: 100%;
  height: 100%;
}
.lp-prizes__badge-text {
  position: absolute;
  inset: 0;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2px;
  color: #ffffff;
}
.lp-prizes__badge-label {
  font-size: 7.68px;
  font-weight: 700;
  line-height: 1.6;
}
.lp-prizes__badge-num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 23.04px;
  font-weight: 700;
  line-height: 1;
}
.lp-prizes__body {
  position: absolute;
  left: 0;
  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;
  width: 160px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.lp-prizes__img {
  display: block;
  width: 160px;
  height: 140px;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
}
.lp-prizes__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-prizes__card[data-prize-modal="2"] .lp-prizes__img img {
  position: absolute;
  left: -54.22%;
  top: -12.58%;
  width: 169.69%;
  height: 129.29%;
  max-width: none;
  margin: 0;
}
.lp-prizes__card[data-prize-modal="4"] .lp-prizes__img img {
  width: 106.65%;
  height: 164.86%;
  max-width: none;
  margin-left: -1.88%;
  margin-top: -28.61%;
}
.lp-prizes__meta {
  position: relative;
  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;
  min-height: 56px;
  padding: 4px 40px 4px 8px;
  isolation: isolate;
}
.lp-prizes__name {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
  -webkit-transform: translateX(16px);
          transform: translateX(16px);
}
.lp-prizes__zoom {
  position: absolute;
  right: -14px;
  top: 77%;
  z-index: 2;
  width: 50px;
  height: 46px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.lp-prizes__zoom-bg {
  display: block;
  width: 36px;
  height: 36px;
}
.lp-prizes__zoom-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11.52px;
  height: 11.52px;
  -webkit-transform: translate(-45%, -40%);
          transform: translate(-45%, -40%);
}
.lp-prizes__btn-wrap {
  text-align: center;
  margin-top: 24px;
}
.lp-prizes__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #4a3636;
  background: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 0 #4a3636;
          box-shadow: 0 4px 0 #4a3636;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  transition: background 0.2s, transform 0.15s, -webkit-transform 0.15s;
}
.lp-prizes__btn:-moz-any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-prizes__btn:any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-prizes__btn:focus:not(:hover) {
  background: #ffffff;
  color: #4a3636;
}
.lp-prizes__btn:hover {
  background: #ffee56;
}
@media (hover: none) {
  .lp-prizes__btn:hover {
    background: #ffffff;
  }
}
.lp-prizes__btn:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.lp-prizes__btn {
  width: 100%;
  max-width: 110%;
  min-height: 40px;
  padding: 6px 13px 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  margin-top: -8px;
  letter-spacing: 3.9%;
}
.lp-prizes__foot {
  position: relative;
  z-index: 0;
  left: 50%;
  width: 100%;
  height: 260px;
  max-width: none;
  margin-top: -44px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
}
.lp-prizes__foot-pic {
  position: relative;
  width: 580px;
  height: 260px;
  overflow: hidden;
}
.lp-prizes__foot-pic img {
  display: block;
  width: 580px;
  height: 244px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.lp-prizes__foot-pic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#e9f6f8), color-stop(51.042%, rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #e9f6f8 0%, rgba(255, 255, 255, 0.6) 51.042%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.lp-prizes__foot-waves {
  position: absolute;
  top: 206.286px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 384px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: none;
          transform: none;
  max-width: 100%;
  width: 100%;
}
.lp-prizes__foot-waves img {
  display: block;
  width: 100%;
  height: 46.714px;
  -o-object-fit: fill;
     object-fit: fill;
  scale: 101%;
}

@media (min-width: 768px) {
  .lp-prizes {
    padding: 0px 0 0;
  }
  .lp-prizes__surface {
    width: 1024px;
    max-width: min(1024px, 100% - 48px);
    margin-top: 28px;
  }
  .lp-prizes__panel-bg {
    inset: 0 auto auto 0;
    width: 100%;
    height: 1330px;
  }
  .lp-prizes__panel-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    padding-bottom: 0;
  }
  .lp-prizes__inner {
    max-width: 1024px;
    padding: 0;
  }
  .lp-prizes__head {
    margin: 0;
    position: relative;
    padding-top: 0;
  }
  .lp-prizes .lp-prizes__deco {
    display: block;
    position: absolute;
    top: 28px;
    width: 315px;
    z-index: 0;
  }
  .lp-prizes .lp-prizes__deco--left {
    left: 0;
  }
  .lp-prizes .lp-prizes__deco--right {
    right: 0;
  }
  .lp-prizes__head-icon {
    margin: 0 0 8px;
  }
  .lp-prizes__head-icon img {
    width: 48px;
    height: 48px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-prizes__head-en {
    font-size: 20px;
    margin: 0 0 8px;
  }
  .lp-prizes__head-jp {
    font-size: 32px;
    padding: 0 0 16px;
    border-bottom-width: 8px;
  }
  .lp-prizes__lead {
    font-size: 16px;
    line-height: 1.6;
    margin: 40px 0 0;
    white-space: nowrap;
  }
  .lp-prizes__grid {
    width: 912px;
    max-width: 912px;
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 40px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .lp-prizes__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .lp-prizes__card:nth-child(-n+2) {
    width: 440px;
    height: 510px;
  }
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__badge {
    left: 170px;
    width: 100px;
    height: 100px;
  }
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__badge-label {
    font-size: 16px;
  }
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__badge-num {
    font-size: 48px;
  }
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__body {
    top: 50px;
    width: 440px;
    border-radius: 24px;
  }
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__img {
    width: 440px;
    height: 340px;
  }
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__meta {
    min-height: 120px;
    padding: 32px 100px 24px 16px;
  }
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__name {
    font-size: 20px;
    -webkit-transform: translate(45px, -4px);
            transform: translate(45px, -4px);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__name--2 br {
    display: none;
  }
}
@media (min-width: 768px) {
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__zoom {
    right: 0;
    top: 20px;
    width: 100px;
    height: 100px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__zoom-bg {
    width: 100px;
    height: 100px;
  }
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__zoom-icon {
    width: 32px;
    height: 32px;
    left: 70px;
    top: 66px;
  }
  .lp-prizes__card:nth-child(n+3) {
    width: 280px;
    height: 360px;
  }
  .lp-prizes__card:nth-child(n+3) .lp-prizes__badge {
    left: 100px;
    width: 80px;
    height: 80px;
  }
  .lp-prizes__card:nth-child(n+3) .lp-prizes__badge-label {
    font-size: 12.8px;
  }
  .lp-prizes__card:nth-child(n+3) .lp-prizes__badge-num {
    font-size: 38.4px;
  }
  .lp-prizes__card:nth-child(n+3) .lp-prizes__body {
    top: 40px;
    width: 280px;
    border-radius: 16px;
  }
  .lp-prizes__card:nth-child(n+3) .lp-prizes__img {
    width: 280px;
    height: 240px;
  }
  .lp-prizes__card:nth-child(n+3) .lp-prizes__meta {
    min-height: 80px;
    padding: 16px 64px 16px 16px;
  }
  .lp-prizes__card:nth-child(n+3) .lp-prizes__name {
    font-size: 16px;
    -webkit-transform: none;
            transform: none;
    left: 24px;
  }
  .lp-prizes__card:nth-child(n+3) .lp-prizes__zoom {
    right: 0;
    top: 16px;
    width: 64px;
    height: 64px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-prizes__card:nth-child(n+3) .lp-prizes__zoom-bg {
    width: 64px;
    height: 64px;
  }
  .lp-prizes__card:nth-child(n+3) .lp-prizes__zoom-icon {
    width: 20.48px;
    height: 20.48px;
    left: 45px;
    top: 43px;
  }
  .lp-prizes__card[data-prize-modal="2"] .lp-prizes__img img {
    left: -32.81%;
    top: -11.43%;
    width: 135.41%;
    height: 120.01%;
  }
  .lp-prizes__btn-wrap {
    margin-top: 40px;
  }
  .lp-prizes__btn {
    width: auto;
    max-width: none;
    min-width: 440px;
    min-height: 56px;
    margin: 0 auto;
    padding: 10px 40px 12px;
    font-size: 20px;
    border-width: 3px;
    -webkit-box-shadow: 0 4px 0 #4a3636;
            box-shadow: 0 4px 0 #4a3636;
    letter-spacing: 2.2%;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .lp-prizes__foot {
    width: 100%;
    max-width: none;
    height: 640px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
  }
  .lp-prizes__foot-pic {
    width: 100%;
    height: 100%;
    -webkit-transform: none;
            transform: none;
  }
  .lp-prizes__foot-pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .lp-prizes__foot-waves {
    left: 0;
    top: 570px;
    width: 1512px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .lp-prizes__foot-waves img {
    width: 378px;
    height: 120px;
  }
}
.lp-prizes-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.22s ease, visibility 0.22s ease;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.lp-prizes-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lp-prizes-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 18, 22, 0.52);
  cursor: pointer;
}
.lp-prizes-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(336px, 100% - 32px);
  max-width: 336px;
  height: min(480px, 100vh - 32px);
  max-height: min(480px, 100vh - 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  -webkit-box-shadow: 0 16px 48px rgba(74, 54, 54, 0.18);
          box-shadow: 0 16px 48px rgba(74, 54, 54, 0.18);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
}
.lp-prizes-modal__img-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #f5f5f5;
}
.lp-prizes-modal__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-prizes-modal__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  padding: 39px 20px 56px;
  min-height: 0;
  overflow-y: auto;
}
.lp-prizes-modal__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
.lp-prizes-modal__desc {
  width: 100%;
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #000;
}
.lp-prizes-modal__desc p {
  margin: 0;
}
.lp-prizes-modal__close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #4a3636;
  background: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 0 #4a3636;
          box-shadow: 0 4px 0 #4a3636;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  transition: background 0.2s, transform 0.15s, -webkit-transform 0.15s;
}
.lp-prizes-modal__close:-moz-any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-prizes-modal__close:any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-prizes-modal__close:focus:not(:hover) {
  background: #ffffff;
  color: #4a3636;
}
.lp-prizes-modal__close:hover {
  background: #ffee56;
}
@media (hover: none) {
  .lp-prizes-modal__close:hover {
    background: #ffffff;
  }
}
.lp-prizes-modal__close:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.lp-prizes-modal__close {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 40px;
  padding: 6px 24px 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

body.is-prizes-modal-open {
  overflow: hidden;
  overflow-x: hidden;
}

.lp-spots {
  background: #67b0c7;
  color: #ffffff;
  padding: 0;
  position: relative;
  overflow: visible;
  margin-top: -8px;
}
.lp-spots__wave-top {
  height: 0;
  margin-bottom: 0;
}
.lp-spots__band {
  padding-bottom: 0;
}
.lp-spots__head {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .lp-spots__head {
    max-width: min(1024px, 100% - 40px);
  }
}
.lp-spots__head {
  padding-top: 0;
  padding-bottom: 0;
}
.lp-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;
  padding-bottom: 24px;
}
.lp-spots__heading-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 0;
}
.lp-spots__heading-icon img {
  display: block;
  width: 28px;
  height: 28px;
}
.lp-spots__heading-text {
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  color: #ffffff;
  -webkit-font-feature-settings: "pwid" 1;
          font-feature-settings: "pwid" 1;
}
.lp-spots__swiper-outer {
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-inline: 0;
  margin-bottom: -23px;
}
.lp-spots__swiper {
  width: 100%;
  overflow: hidden;
}
.lp-spots__swiper .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.lp-spots__swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 240px;
  height: auto;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lp-spots__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 16px;
  width: 100%;
  min-width: 0;
  min-height: 0;
  background: #ffffff;
  color: #4a3636;
  border-radius: 12px;
  overflow: hidden;
}
.lp-spots__img {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 180px;
  background: #f5f5f5;
  overflow: hidden;
}
.lp-spots__img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-spots__img--crop-wide img {
  left: -16.5%;
  right: auto;
  width: 133%;
  max-width: none;
  height: 100%;
}
.lp-spots__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -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: 16px;
  padding: 0 24px 31px;
  line-height: 1.6;
  min-height: 0;
}
.lp-spots__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
.lp-spots__desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  width: 100%;
}
.lp-spots__lower {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .lp-spots__lower {
    max-width: min(1024px, 100% - 40px);
  }
}
.lp-spots__lower {
  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;
  padding-top: 23px;
  padding-bottom: 62px;
}
.lp-spots__deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 335px;
  margin: 8px 0 0;
  line-height: 0;
}
.lp-spots__deco img {
  display: block;
  width: 100%;
  max-width: 254.439px;
  height: auto;
  margin-top: -8px;
}
.lp-spots__foot {
  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: 24px;
  width: 100%;
  max-width: 335px;
  text-align: center;
  margin-top: 16px;
}
.lp-spots__lead {
  font-size: 11.444px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: #ffffff;
}
.lp-spots__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #4a3636;
  background: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 0 #4a3636;
          box-shadow: 0 4px 0 #4a3636;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  transition: background 0.2s, transform 0.15s, -webkit-transform 0.15s;
}
.lp-spots__btn:-moz-any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-spots__btn:any-link {
  color: #4a3636;
  background: #ffffff;
}
.lp-spots__btn:focus:not(:hover) {
  background: #ffffff;
  color: #4a3636;
}
.lp-spots__btn:hover {
  background: #ffee56;
}
@media (hover: none) {
  .lp-spots__btn:hover {
    background: #ffffff;
  }
}
.lp-spots__btn:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.lp-spots__btn {
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  padding: 6px 24px 8px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  background: #ffffff;
  color: #4a3636;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  letter-spacing: 2%;
}

@media (min-width: 768px) {
  .lp-spots {
    margin-top: 0;
    padding: 50px;
    background: #67b0c7;
  }
  .lp-spots__band {
    position: relative;
    width: 1024px;
    max-width: min(1024px, 100% - 48px);
    height: 716px;
    margin: 0 auto;
    padding: 0;
  }
  .lp-spots__head {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    padding: 0;
    z-index: 5;
  }
  .lp-spots__heading {
    -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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 8px;
    padding-bottom: 0;
  }
  .lp-spots__heading-icon img {
    width: 56px;
    height: 56px;
    scale: 70%;
  }
  .lp-spots__heading-text {
    font-size: 40px;
    line-height: 1.25;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    letter-spacing: 11px;
  }
  .lp-spots__swiper-outer {
    position: absolute;
    left: 88px;
    top: 0;
    width: 936px;
    max-width: 936px;
    padding-inline: 0;
    z-index: 5;
  }
  .lp-spots__nav {
    position: absolute;
    top: 430px;
    z-index: 20;
    width: 80px;
    height: 80px;
    border: 0;
    border-radius: 50%;
    background: #ffee56;
    color: #67b0c7;
    -webkit-box-shadow: 0 2px 0 rgba(74, 54, 54, 0.25);
            box-shadow: 0 2px 0 rgba(74, 54, 54, 0.25);
    cursor: pointer;
    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;
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
    padding: 0;
  }
  .lp-spots__nav--prev {
    left: 96px;
  }
  .lp-spots__nav--next {
    right: 96px;
  }
  .lp-spots__nav.swiper-button-disabled {
    opacity: 0.45;
    cursor: default;
  }
  .lp-spots__swiper {
    width: 100%;
    overflow: visible;
  }
  .lp-spots__swiper .swiper-slide {
    width: 282px;
  }
  .lp-spots__card {
    width: 282px;
    height: 542px;
    border-radius: 24px;
    gap: 24px;
    padding-bottom: 40px;
  }
  .lp-spots__img {
    width: 282px;
    height: 240px;
  }
  .lp-spots__body {
    padding: 0 32px 0;
    gap: 24px;
  }
  .lp-spots__title {
    font-size: 20px;
    line-height: 1.6;
  }
  .lp-spots__desc {
    font-size: 16px;
    line-height: 1.6;
  }
  .lp-spots__lower {
    position: absolute;
    left: 0;
    top: 606px;
    width: 100%;
    max-width: none;
    padding: 0;
    display: grid;
    grid-template-columns: 495px 440px;
    -webkit-column-gap: 89px;
       -moz-column-gap: 89px;
            column-gap: 89px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    z-index: 15;
  }
  .lp-spots__deco {
    width: 495px;
    max-width: 495px;
    margin: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .lp-spots__deco img {
    max-width: 495px;
    width: 495px;
    margin-top: 0;
  }
  .lp-spots__foot {
    width: 440px;
    max-width: 440px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: visible;
    opacity: 1;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 24px;
    margin-top: 0;
    position: relative;
    z-index: 16;
  }
  .lp-spots__lead {
    font-size: 16px;
    text-align: right;
    white-space: nowrap;
  }
  .lp-spots__btn {
    width: auto;
    max-width: none;
    min-width: 440px;
    min-height: 56px;
    padding: 10px 35px 12px;
    font-size: 20px;
    border-width: 3px;
    -webkit-transform: none;
            transform: none;
    letter-spacing: 3%;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .lp-spots__wave-row {
    width: 100%;
    max-width: none;
    height: 46px;
    margin-top: -1px;
    margin-bottom: 0;
    z-index: auto;
    overflow: hidden;
  }
  .lp-spots__wave-row-inner {
    width: 100%;
    height: 46px;
    -webkit-transform: scaleY(-1);
            transform: scaleY(-1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: -2px;
  }
  .lp-spots__wave-row-inner img {
    position: relative;
    top: 0px;
    left: auto !important;
    width: 16.6667%;
    height: 46px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
    display: block;
    scale: 1.1;
  }
}
.lp-spots__wave-row {
  width: 100%;
  max-width: 375px;
  height: 45px;
  overflow: hidden;
  line-height: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 767px) {
  .lp-spots__wave-row {
    margin-top: -45px;
    margin-bottom: -45px;
  }
}
@media (min-width: 768px) {
  .lp-spots__wave-row {
    width: 100%;
    max-width: none;
    height: 46px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 10;
    -webkit-transform: translateY(-18px) scaleX(1) scaleY(2.8) translateX(-1px);
            transform: translateY(-18px) scaleX(1) scaleY(2.8) translateX(-1px);
  }
}

.lp-spots__wave-row-inner {
  position: relative;
  width: 100%;
  height: 45px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.lp-spots__wave-row-inner img {
  position: absolute;
  top: -0.714px;
  width: 96px;
  height: 45.714px;
  -o-object-fit: fill;
     object-fit: fill;
  display: block;
}
.lp-spots__wave-row-inner img:nth-child(n+5) {
  display: none;
}
.lp-spots__wave-row-inner img:nth-child(1) {
  left: -3px;
}
.lp-spots__wave-row-inner img:nth-child(2) {
  left: 92px;
}
.lp-spots__wave-row-inner img:nth-child(3) {
  left: 187px;
}
.lp-spots__wave-row-inner img:nth-child(4) {
  left: 282px;
}
@media (min-width: 768px) {
  .lp-spots__wave-row-inner {
    width: 100%;
    height: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: scaleY(-1);
            transform: scaleY(-1);
  }
  .lp-spots__wave-row-inner img {
    position: relative;
    top: 0;
    left: auto !important;
    width: 16.6667%;
    height: 46px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
    display: block;
  }
  .lp-spots__wave-row-inner img:nth-child(n+5) {
    display: block;
  }
}

.lp-faq {
  padding: 40px 0 31px;
  background: #e9f6f8;
  color: #4a3636;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .lp-faq {
    padding-top: 80px;
  }
}
.lp-faq__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .lp-faq__inner {
    max-width: min(1024px, 100% - 40px);
  }
}
.lp-faq__inner {
  max-width: 800px;
}
.lp-faq__head {
  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: 8px;
  margin-bottom: 24px;
}
.lp-faq__head-icon {
  line-height: 0;
}
.lp-faq__head-icon img {
  width: 30px;
  height: auto;
  margin-top: 8px;
}
.lp-faq__ttl.lp-ttl {
  margin-bottom: 0;
}
.lp-faq__list {
  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: 12px;
}
.lp-faq__item {
  --faq-toggle-size: 26px;
  --faq-toggle-bar-long: 10px;
  --faq-toggle-bar-short: 2px;
  width: 100%;
  max-width: 335px;
  border: 2px solid #4a3636;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.lp-faq__trigger {
  width: 100%;
  margin: 0;
  padding: 9px 16px;
  border: 0;
  background: #ffffff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.lp-faq__trigger:focus-visible {
  outline: 2px solid #79bfd6;
  outline-offset: 2px;
}
.lp-faq__q {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: #9ed0e0;
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}
.lp-faq__q-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}
.lp-faq__toggle {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: var(--faq-toggle-size);
  height: var(--faq-toggle-size);
  border-radius: 50%;
  background: #9ed0e0;
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.lp-faq__toggle::before, .lp-faq__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 1px;
}
.lp-faq__toggle::before {
  width: var(--faq-toggle-bar-long);
  height: var(--faq-toggle-bar-short);
}
.lp-faq__toggle::after {
  width: var(--faq-toggle-bar-short);
  height: var(--faq-toggle-bar-long);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.lp-faq__item.is-open .lp-faq__toggle::after {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scaleY(0);
          transform: translate(-50%, -50%) scaleY(0);
}
.lp-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.35s ease;
  transition: grid-template-rows 0.35s ease;
  transition: grid-template-rows 0.35s ease, -ms-grid-rows 0.35s ease;
}
.lp-faq__item.is-open .lp-faq__panel {
  grid-template-rows: 1fr;
}
@media (prefers-reduced-motion: reduce) {
  .lp-faq__panel {
    -webkit-transition-duration: 0.01ms;
            transition-duration: 0.01ms;
  }
  .lp-faq__toggle::after {
    -webkit-transition-duration: 0.01ms;
            transition-duration: 0.01ms;
  }
}
.lp-faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}
.lp-faq__a-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 13px;
  padding: 17px;
  background: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
}
.lp-faq__mark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: #9ed0e0;
  -webkit-transform: translateY(9px);
          transform: translateY(9px);
}
.lp-faq__a-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  margin-left: -3px;
}
.lp-faq__em {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

@media (min-width: 768px) {
  .lp-faq {
    padding: 120px 0 0px;
  }
  .lp-faq__inner {
    max-width: 1024px;
    padding-left: 0;
    padding-right: 0;
  }
  .lp-faq__head {
    gap: 8px;
    margin-bottom: 40px;
  }
  .lp-faq__head-icon img {
    width: 56px;
    height: 56px;
    margin-top: 0;
    -webkit-transform: scale(70%) translateY(27px);
            transform: scale(70%) translateY(27px);
  }
  .lp-faq__ttl.lp-ttl .lp-ttl__en {
    font-size: 20px;
    line-height: 1.25;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  .lp-faq__ttl.lp-ttl .lp-ttl__jp {
    margin-top: 14px;
    font-size: 32px;
    line-height: 1.25;
    padding-bottom: 10px;
    border-bottom-width: 8px;
  }
  .lp-faq__list {
    width: 100%;
    max-width: 1024px;
    gap: 24px;
  }
  .lp-faq__item {
    --faq-toggle-size: 48px;
    --faq-toggle-bar-long: 18px;
    --faq-toggle-bar-short: 3px;
    max-width: none;
    border-width: 3px;
    border-radius: 16px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-faq__trigger {
    padding: 16px 32px;
    gap: 16px;
    font-size: 20px;
    line-height: 1.6;
  }
  .lp-faq__q {
    font-size: 40px;
    line-height: 1.25;
    -webkit-transform: none;
            transform: none;
  }
  .lp-faq__toggle {
    -webkit-transform: none;
            transform: none;
  }
  .lp-faq__a-body {
    gap: 20px;
    padding: 24px 32px 28px;
    font-size: 16px;
    line-height: 1.6;
  }
  .lp-faq__mark {
    font-size: 40px;
    line-height: 1.25;
    -webkit-transform: none;
            transform: none;
  }
  .lp-faq__a-text {
    margin-left: -1px;
    margin-top: 8px;
  }
}
.lp-info {
  padding: 0 0 0px;
  background: #e9f6f8;
  color: #4a3636;
  border-radius: 0 0 0px 0px;
  overflow: hidden;
}
.lp-info__shell {
  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;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .lp-info__shell {
    max-width: min(1024px, 100% - 40px);
  }
}
.lp-info__card {
  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: 24px;
  width: 100%;
  max-width: 335px;
  padding: 24px 15.5px;
  padding-bottom: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(255, 255, 255, 0.5);
  border: 8px solid #ffffff;
}
.lp-info__head {
  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: 6px;
}
.lp-info__head-icon {
  line-height: 0;
}
.lp-info__head-icon img {
  display: block;
  width: 29.333px;
  height: 24.333px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-info__ttl.lp-ttl {
  margin-bottom: 0;
}
.lp-info__ttl.lp-ttl .lp-ttl__en {
  line-height: 1.25;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.lp-info__ttl.lp-ttl .lp-ttl__jp {
  margin-top: 0;
  padding-bottom: 2px;
}
.lp-info__lists {
  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%;
  max-width: 288px;
  margin-left: auto;
  margin-right: auto;
}
.lp-info__segment {
  margin: 0;
  width: 100%;
}
.lp-info__segment-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-bottom: 14px;
}
.lp-info__segment-body--ruled {
  border-bottom: 1px solid #cccccc;
}
.lp-info__segment-body--notes {
  padding-bottom: 2px;
}
.lp-info__label-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.lp-info__dot {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
}
.lp-info__label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
}
.lp-info__para {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
}
.lp-info__list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
  list-style-type: disc;
}
.lp-info__list li {
  margin: 0;
}
.lp-info__list li + li {
  margin-top: 0.35em;
}
.lp-info__list--notes {
  --notes-bullet-left: 0.35em;
  --notes-bullet-top: 0.65em;
  --notes-bullet-size: 3px;
  padding-left: 0;
  list-style: none;
}
.lp-info__list--notes li {
  position: relative;
  padding-left: 1.5em;
  margin: 0;
}
.lp-info__list--notes li + li {
  margin-top: 0;
  line-height: 19.2px;
  margin-bottom: -1px;
}
.lp-info__list--notes li::before {
  content: "";
  position: absolute;
  left: var(--notes-bullet-left);
  top: var(--notes-bullet-top);
  width: var(--notes-bullet-size);
  height: var(--notes-bullet-size);
  border-radius: 50%;
  background: #4a3636;
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.lp-info__link {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.lp-info__link:focus-visible {
  outline: 2px solid #79bfd6;
  outline-offset: 2px;
}
.lp-info__visual {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  padding-top: 32px;
  line-height: 0;
}
@media (max-width: 767px) {
  .lp-info__visual {
    width: calc(100% + 40px);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
  }
}
.lp-info__visual img {
  display: block;
  width: 100%;
  height: 99px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 768px) {
  .lp-info {
    padding: 0;
    border-radius: 0 0 80px 80px;
  }
  .lp-info__shell {
    max-width: 1024px;
    padding: 0;
  }
  .lp-info__card {
    width: 100%;
    max-width: 1024px;
    gap: 40px;
    padding: 56px 64px 64px;
    background: rgba(255, 255, 255, 0.5);
    border: 8px solid #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lp-info__head {
    gap: 8px;
  }
  .lp-info__head-icon img {
    width: 56px;
    height: 56px;
  }
  .lp-info__ttl.lp-ttl .lp-ttl__en {
    font-size: 20px;
    line-height: 1.25;
    -webkit-transform: none;
            transform: none;
  }
  .lp-info__ttl.lp-ttl .lp-ttl__jp {
    margin-top: 13px;
    font-size: 32px;
    line-height: 1.25;
    padding-bottom: 11px;
    border-bottom-width: 8px;
  }
  .lp-info__lists {
    max-width: 896px;
    gap: 24px;
  }
  .lp-info__segment-body {
    gap: 12px;
    padding-bottom: 20px;
  }
  .lp-info__segment-body--notes {
    padding-bottom: 0;
  }
  .lp-info__label-row {
    gap: 12px;
  }
  .lp-info__dot {
    width: 12px;
    height: 12px;
  }
  .lp-info__label {
    font-size: 20px;
    line-height: 1.6;
  }
  .lp-info__para, .lp-info__list {
    font-size: 16px;
    line-height: 1.8;
  }
  .lp-info__list--notes li {
    padding-left: 1.35em;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    padding-top: 1px;
    letter-spacing: 0.1px;
  }
  .lp-info__visual {
    width: 100vw;
    max-width: none;
    margin-top: 40px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: 0;
  }
  .lp-info__visual img {
    width: 100%;
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 58%;
       object-position: center 58%;
  }
}
.lp-contact {
  --lp-contact-message-height: 160px;
  --lp-contact-req-height: auto;
  --lp-contact-message-label-offset-y: 6px;
  --lp-contact-message-req-offset-y: 6px;
  --lp-contact-ttl-en-transform: translateY(29px);
  --lp-contact-ttl-jp-contact-transform: translateY(11px);
}
.lp-contact .lp-contact__input.is-error,
.lp-contact .lp-contact__textarea.is-error,
.lp-contact .lp-contact__select.is-error {
  background: #fff0f7;
  border: 1px solid #ce2073;
}
.lp-contact .lp-contact__check input.is-error {
  outline: 2px solid #ce2073;
  outline-offset: 2px;
}
.lp-contact {
  padding: 15px 0 49px;
  background: #ffffff;
  color: #4a3636;
}
.lp-contact__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .lp-contact__inner {
    max-width: min(1024px, 100% - 40px);
  }
}
.lp-contact__inner {
  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: 24px;
  max-width: 375px;
}
.lp-contact__head {
  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: 6px;
}
.lp-contact__head-icon {
  line-height: 0;
}
.lp-contact__head-icon img {
  display: block;
  width: 29px;
  height: 26px;
  margin-top: 4px;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
}
.lp-contact__ttl.lp-ttl {
  margin-bottom: 0;
}
.lp-contact__ttl.lp-ttl .lp-ttl__en {
  -webkit-transform: var(--lp-contact-ttl-en-transform, translate(0, 0));
          transform: var(--lp-contact-ttl-en-transform, translate(0, 0));
}
.lp-contact__ttl.lp-ttl .lp-ttl__jp-contact {
  display: inline-block;
  padding-bottom: 5.5px;
  border-bottom: 6px solid #ffee56;
  position: relative;
  z-index: 1;
  -webkit-transform: var(--lp-contact-ttl-jp-contact-transform, translate(0, 0));
          transform: var(--lp-contact-ttl-jp-contact-transform, translate(0, 0));
  margin-top: 0px;
  -webkit-transform: translateY(22px);
          transform: translateY(22px);
}
.lp-contact__lead {
  width: 100%;
  max-width: 335px;
  margin: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
  -webkit-transform: translateY(27px);
          transform: translateY(27px);
}
.lp-contact__lead-line {
  margin: 0;
  line-height: 1.6;
  -webkit-transform: translateY(-26px);
          transform: translateY(-26px);
  padding: 0px 58px 0px 58px;
}
@media (min-width: 768px) {
  .lp-contact__lead-line {
    padding: 0px 16px 0px 16px;
  }
}
.lp-contact__form {
  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;
  width: 100%;
  max-width: 335px;
}
.lp-contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.lp-contact__fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.lp-contact__fieldset > .lp-contact__label--solo, .lp-contact__fieldset > legend .lp-contact__label--solo {
  padding: 0;
}
.lp-contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.lp-contact__label-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.lp-contact__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
  cursor: pointer;
}
.lp-contact__label--solo {
  margin: 0;
  cursor: default;
}
.lp-contact__label--message-text {
  position: relative;
  top: var(--lp-contact-message-label-offset-y, 0px);
}
.lp-contact__req {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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-sizing: border-box;
          box-sizing: border-box;
  height: var(--lp-contact-req-height, auto);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  background: #ce2073;
  border-radius: 4px;
}
.lp-contact__req--message {
  position: relative;
  top: var(--lp-contact-message-req-offset-y, 0px);
}
.lp-contact__input, .lp-contact__textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 56px;
  padding: 16px;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
  background: #f5f5f5;
}
.lp-contact__input::-webkit-input-placeholder, .lp-contact__textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.lp-contact__input::-moz-placeholder, .lp-contact__textarea::-moz-placeholder {
  color: #cccccc;
}
.lp-contact__input:-ms-input-placeholder, .lp-contact__textarea:-ms-input-placeholder {
  color: #cccccc;
}
.lp-contact__input::-ms-input-placeholder, .lp-contact__textarea::-ms-input-placeholder {
  color: #cccccc;
}
.lp-contact__input::placeholder, .lp-contact__textarea::placeholder {
  color: #cccccc;
}
.lp-contact__input:focus, .lp-contact__textarea:focus {
  outline: 2px solid #79bfd6;
  outline-offset: 2px;
  -webkit-box-shadow: 0 0 0 4px rgba(158, 208, 224, 0.28);
          box-shadow: 0 0 0 4px rgba(158, 208, 224, 0.28);
  background: #ddf0f4;
}
.lp-contact__select-wrap {
  position: relative;
  width: 100%;
}
.lp-contact__select-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 100%;
  min-height: 56px;
  pointer-events: none;
  background-color: #9ed0e0;
  border-radius: 0 8px 8px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.lp-contact__select {
  display: block;
  width: 100%;
  height: 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 60px 16px 16px;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
  background: #f5f5f5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.lp-contact__select:focus {
  outline: none;
}
.lp-contact__select-wrap:focus-within .lp-contact__select {
  outline: 2px solid #79bfd6;
  outline-offset: 2px;
  -webkit-box-shadow: 0 0 0 4px rgba(158, 208, 224, 0.28);
          box-shadow: 0 0 0 4px rgba(158, 208, 224, 0.28);
}
.lp-contact__textarea {
  min-height: var(--lp-contact-message-height, 160px);
  height: var(--lp-contact-message-height, 160px);
  resize: vertical;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}
.lp-contact__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}
.lp-contact__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
}
.lp-contact__radio input[type=radio] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  background: #f5f5f5;
  cursor: pointer;
  -webkit-box-shadow: inset 0 0 0 1px rgba(74, 54, 54, 0.12);
          box-shadow: inset 0 0 0 1px rgba(74, 54, 54, 0.12);
}
.lp-contact__radio input[type=radio]:checked {
  -webkit-box-shadow: inset 0 0 0 6px #f5f5f5;
          box-shadow: inset 0 0 0 6px #f5f5f5;
  background: #9ed0e0;
}
.lp-contact__radio input[type=radio]:focus-visible {
  outline: 2px solid #79bfd6;
  outline-offset: 2px;
}
.lp-contact__radio-text {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.lp-contact__actions {
  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: 24px;
  width: 100%;
  padding-top: 0;
}
.lp-contact__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
  cursor: pointer;
  text-align: center;
  width: 100%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}
.lp-contact__check input[type=checkbox] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  margin-top: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 4px;
  background: #ffffff;
  border: 2px solid #9ed0e0;
  cursor: pointer;
}
.lp-contact__check input[type=checkbox]:checked {
  background-color: #9ed0e0;
  border-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1px #9ed0e0;
          box-shadow: 0 0 0 1px #9ed0e0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 10px;
}
.lp-contact__check input[type=checkbox]:focus {
  outline: 2px solid #79bfd6;
  outline-offset: 2px;
  -webkit-box-shadow: 0 0 0 4px rgba(158, 208, 224, 0.28);
          box-shadow: 0 0 0 4px rgba(158, 208, 224, 0.28);
}
.lp-contact__check input[type=checkbox]:checked:focus {
  -webkit-box-shadow: 0 0 0 1px #9ed0e0, 0 0 0 4px rgba(158, 208, 224, 0.28);
          box-shadow: 0 0 0 1px #9ed0e0, 0 0 0 4px rgba(158, 208, 224, 0.28);
}
.lp-contact__check-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  max-width: 100%;
  text-align: center;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.lp-contact__check-link {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.lp-contact__check-link:focus-visible {
  outline: 2px solid #79bfd6;
  outline-offset: 2px;
}
.lp-contact__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 209px;
  min-height: 40px;
  padding: 0px 23px 0px 22px;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
  background: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 0 #4a3636;
          box-shadow: 0 4px 0 #4a3636;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.lp-contact__submit:focus:not(:hover) {
  background: #ffffff;
  color: #4a3636;
}
.lp-contact__submit:hover {
  background: #ffee56;
}
@media (hover: none) {
  .lp-contact__submit:hover {
    background: #ffffff;
  }
}
.lp-contact__submit:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0 2px 0 #4a3636;
          box-shadow: 0 2px 0 #4a3636;
}
.lp-contact__submit:focus-visible {
  outline: 2px solid #79bfd6;
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .lp-contact {
    padding: 120px 0 120px;
  }
  .lp-contact__inner {
    gap: 40px;
    max-width: 1024px;
  }
  .lp-contact__head {
    gap: 8px;
  }
  .lp-contact__head-icon img {
    width: 56px;
    height: 56px;
    margin-top: 0;
    -webkit-transform: none;
            transform: none;
  }
  .lp-contact__ttl.lp-ttl .lp-ttl__en {
    font-size: 20px;
    line-height: 1.25;
    -webkit-transform: none;
            transform: none;
  }
  .lp-contact__ttl.lp-ttl .lp-ttl__jp-contact {
    font-size: 32px;
    line-height: 1.25;
    padding-bottom: 16px;
    border-bottom-width: 8px;
    margin-top: 8px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-contact__lead {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.6;
  }
  .lp-contact__form {
    gap: 24px;
    max-width: 920px;
  }
  .lp-contact__row {
    width: 100%;
  }
  .lp-contact__field {
    display: grid;
    grid-template-columns: 220px 1fr;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .lp-contact__fieldset {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 244px;
    min-height: 56px;
  }
  .lp-contact__label-row {
    grid-column: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    min-height: 56px;
  }
  .lp-contact__input, .lp-contact__select-wrap, .lp-contact__textarea {
    grid-column: 2;
  }
  .lp-contact__label {
    font-size: 20px;
    line-height: 1.6;
  }
  .lp-contact__req {
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 4px;
  }
  .lp-contact__input, .lp-contact__textarea {
    min-height: 56px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 8px;
  }
  .lp-contact__select-wrap::after {
    width: 56px;
    min-height: 56px;
  }
  .lp-contact__label--solo {
    position: absolute;
    left: 0;
    top: 0;
    width: 220px;
    margin: 0;
    padding: 0;
    min-height: 0;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lp-contact__select {
    height: 56px;
    padding: 14px 56px 14px 16px;
    font-size: 16px;
    line-height: 1.6;
    -webkit-transform: none;
            transform: none;
  }
  .lp-contact__textarea {
    min-height: 160px;
    height: 160px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-contact__radio-group {
    width: 100%;
    gap: 32px;
    -webkit-transform: none;
            transform: none;
    min-height: 0;
    height: 56px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
  .lp-contact__radio {
    gap: 12px;
    font-size: 16px;
  }
  .lp-contact__radio input[type=radio] {
    width: 32px;
    height: 32px;
  }
  .lp-contact__radio input[type=radio]:checked {
    -webkit-box-shadow: inset 0 0 0 8px #f5f5f5;
            box-shadow: inset 0 0 0 8px #f5f5f5;
  }
  .lp-contact__actions {
    gap: 40px;
    padding-top: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lp-contact__check {
    max-width: 620px;
    font-size: 16px;
    gap: 12px;
  }
  .lp-contact__check input[type=checkbox] {
    width: 28px;
    height: 28px;
    margin-top: 0;
  }
  .lp-contact__check-text {
    -webkit-transform: none;
            transform: none;
  }
  .lp-contact__submit {
    width: 440px;
    max-width: none;
    min-height: 56px;
    padding: 10px 40px 12px;
    -webkit-transform: none;
            transform: none;
    font-size: 20px;
    border-width: 3px;
    border-radius: 999px;
    -webkit-box-shadow: 0 4px 0 #4a3636;
            box-shadow: 0 4px 0 #4a3636;
  }
}
.lp-footer {
  --lp-footer-social-youtube-width: 32px;
  --lp-footer-social-youtube-height: 32px;
  --lp-footer-social-youtube-offset-x: 0px;
  --lp-footer-social-youtube-offset-y: 0px;
  --lp-footer-social-instagram-width: 32px;
  --lp-footer-social-instagram-height: 32px;
  --lp-footer-social-instagram-offset-x: 0px;
  --lp-footer-social-instagram-offset-y: 0px;
  --lp-footer-social-x-width: 32px;
  --lp-footer-social-x-height: 32px;
  --lp-footer-social-x-offset-x: 0px;
  --lp-footer-social-x-offset-y: 0px;
  position: relative;
  background: #e9f6f8;
  color: #4a3636;
}
.lp-footer__shell {
  position: relative;
  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;
  padding-top: 40px;
  overflow: hidden;
}
.lp-footer__onomichi {
  position: absolute;
  left: 50%;
  top: 136px;
  z-index: 0;
  width: min(328px, 92vw);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  line-height: 0;
  opacity: 0.9;
}
.lp-footer__onomichi img {
  display: block;
  width: 100%;
  height: auto;
}
.lp-footer__main {
  position: relative;
  z-index: 1;
  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;
  width: 100%;
}
.lp-footer__sns {
  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: 24px;
  padding-bottom: 48px;
  width: 100%;
}
.lp-footer__follow {
  margin: 0;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: #4a3636;
}
.lp-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.lp-footer__social-link {
  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;
  line-height: 0;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.lp-footer__social-link img {
  display: block;
}
.lp-footer__social-link:hover {
  opacity: 0.85;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.lp-footer__social-link:focus-visible {
  outline: 2px solid #79bfd6;
  outline-offset: 4px;
  border-radius: 4px;
}
.lp-footer__social-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.lp-footer__social-icon--youtube {
  width: var(--lp-footer-social-youtube-width, 32px);
  height: var(--lp-footer-social-youtube-height, 32px);
  position: relative;
  left: var(--lp-footer-social-youtube-offset-x, 0px);
  top: var(--lp-footer-social-youtube-offset-y, 0px);
  -webkit-transform: scale(80%);
          transform: scale(80%);
  height: 22px;
}
.lp-footer__social-icon--instagram {
  width: var(--lp-footer-social-instagram-width, 32px);
  height: var(--lp-footer-social-instagram-height, 32px);
  position: relative;
  left: var(--lp-footer-social-instagram-offset-x, 0px);
  top: var(--lp-footer-social-instagram-offset-y, 0px);
  -webkit-transform: scale(80%);
          transform: scale(80%);
}
.lp-footer__social-icon--x {
  width: var(--lp-footer-social-x-width, 32px);
  height: var(--lp-footer-social-x-height, 32px);
  position: relative;
  left: var(--lp-footer-social-x-offset-x, 0px);
  top: var(--lp-footer-social-x-offset-y, 0px);
  height: 21px;
}
.lp-footer__card {
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lp-footer__map {
  position: relative;
  width: 100%;
  height: 271px;
  background: #f5f5f5;
  line-height: 0;
}
.lp-footer__map img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.lp-footer__company {
  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: 28px;
  padding: 24px 24px 31px 26px;
}
.lp-footer__logo {
  display: block;
  width: 153px;
  max-width: 100%;
  height: auto;
  max-height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-footer__meta {
  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: 8px;
  width: 100%;
  max-width: 280px;
}
.lp-footer__meta-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: 100%;
}
.lp-footer__meta-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
}
.lp-footer__meta-dot {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 8px;
  height: 8px;
}
.lp-footer__meta-value {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
  margin-left: -10px;
}
.lp-footer__tel {
  color: inherit;
  text-decoration: none;
}
.lp-footer__tel:hover {
  text-decoration: underline;
}
.lp-footer__pagetop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 0;
  line-height: 0;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.lp-footer__pagetop:hover {
  opacity: 0.92;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.lp-footer__pagetop:focus-visible {
  outline: 2px solid #79bfd6;
  outline-offset: 6px;
  border-radius: 8px;
}
.lp-footer__pagetop-inner {
  position: relative;
  display: block;
  width: 75px;
  height: 78px;
}
.lp-footer__pagetop-inner > img {
  display: block;
  width: 75px;
  height: 78px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.lp-footer__pagetop-caption {
  position: absolute;
  left: 63%;
  top: 69%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  pointer-events: none;
}
.lp-footer__pagetop-line {
  display: block;
}
.lp-footer__wave {
  width: 100%;
  line-height: 0;
  margin-top: -1px;
  background: transparent;
}
.lp-footer__wave-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: perspective(10px);
          transform: perspective(10px);
}
.lp-footer__wave-track img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  width: 25%;
  min-width: 0;
  height: auto;
  display: block;
  scale: 101%;
}
.lp-footer__wave-track img:nth-child(n+5) {
  display: none;
}
@media (min-width: 768px) {
  .lp-footer__wave-track img:nth-child(n+5) {
    display: block;
  }
}
.lp-footer__copyright {
  width: 100%;
  background: #67b0c7;
  padding: 12px 16px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 45px;
  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;
}
.lp-footer__copy-text {
  margin: 0;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  -webkit-transform: translateY(-11px);
          transform: translateY(-11px);
}

@media (min-width: 768px) {
  .lp-footer {
    background: #e9f6f8;
  }
  .lp-footer__shell {
    padding-top: 72px;
    overflow: hidden;
  }
  .lp-footer__onomichi {
    top: 170px;
    width: 460px;
    opacity: 0.85;
  }
  .lp-footer__main {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 0 119px;
    position: relative;
  }
  .lp-footer__main::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 10px;
    width: 92px;
    height: 208px;
    background: url("img/about-paw-1.svg?v=1") center/contain no-repeat;
    opacity: 0.5;
    pointer-events: none;
  }
  .lp-footer__sns {
    gap: 16px;
    padding-bottom: 76px;
    position: relative;
    z-index: 2;
  }
  .lp-footer__follow {
    font-size: 16px;
    color: #4a3636;
  }
  .lp-footer__social {
    gap: 24px;
  }
  .lp-footer__social-icon--youtube {
    width: 32px;
    height: 22px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-footer__social-icon--instagram {
    width: 32px;
    height: 32px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-footer__social-icon--x {
    width: 32px;
    height: 22px;
  }
  .lp-footer__card {
    position: relative;
    width: 100%;
    max-width: 1024px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 520px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    background: #ffffff;
    overflow: hidden;
    z-index: 2;
  }
  .lp-footer__map {
    height: 400px;
    grid-column: 2;
    grid-row: 1;
    width: 520px;
  }
  .lp-footer__company {
    grid-column: 1;
    grid-row: 1;
    width: 504px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
    padding: 107px 35px 43px 61px;
  }
  .lp-footer__logo {
    width: 240px;
    max-height: none;
    margin: 0;
  }
  .lp-footer__meta {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
    max-width: none;
    width: 100%;
  }
  .lp-footer__meta-row {
    grid-template-columns: 120px 1fr;
    gap: 0 12px;
  }
  .lp-footer__meta-label {
    font-size: 16px;
  }
  .lp-footer__meta-dot {
    width: 12px;
    height: 12px;
  }
  .lp-footer__meta-value {
    font-size: 16px;
    margin-left: -7px;
  }
  .lp-footer__pagetop {
    display: none;
  }
  .lp-footer__pagetop-inner {
    width: 101px;
    height: 105px;
  }
  .lp-footer__pagetop-inner > img {
    width: 101px;
    height: 105px;
  }
  .lp-footer__pagetop-caption {
    font-size: 12px;
  }
  .lp-footer__wave {
    width: 100%;
    max-width: none;
    margin-top: 0;
    background: transparent;
    overflow: hidden;
    height: 120px;
  }
  .lp-footer__wave-track {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  .lp-footer__wave-track img {
    position: relative;
    width: 16.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
    height: 120px;
    -o-object-fit: fill;
       object-fit: fill;
    left: auto !important;
  }
  .lp-footer__copyright {
    min-height: 45px;
    padding: 8px 24px;
    background: #67b0c7;
    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;
  }
  .lp-footer__copy-text {
    font-size: 10px;
    line-height: 1.4;
    -webkit-transform: none;
            transform: none;
    color: #ffffff;
  }
}
.lp-pagetop-fab {
  display: none;
}
@media (min-width: 768px) {
  .lp-pagetop-fab {
    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;
    position: fixed;
    right: max(24px, (100vw - 1512px) / 2 + 24px);
    bottom: 24px;
    z-index: 150;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: inherit;
    line-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    -webkit-transition: opacity 0.28s ease, visibility 0.28s ease, -webkit-transform 0.28s ease;
    transition: opacity 0.28s ease, visibility 0.28s ease, -webkit-transform 0.28s ease;
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease, -webkit-transform 0.28s ease;
  }
  .lp-pagetop-fab.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .lp-pagetop-fab:hover {
    opacity: 0.92;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .lp-pagetop-fab:hover.is-visible {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .lp-pagetop-fab:focus-visible {
    outline: 2px solid #79bfd6;
    outline-offset: 6px;
    border-radius: 8px;
  }
}
.lp-pagetop-fab__inner {
  position: relative;
  display: block;
  width: 75px;
  height: 78px;
}
.lp-pagetop-fab__inner > img {
  display: block;
  width: 75px;
  height: 78px;
  scale: 120%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-top: -47px;
  margin-left: -30px;
}
.lp-pagetop-fab__caption {
  position: absolute;
  left: 24%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  pointer-events: none;
}
.lp-pagetop-fab__line {
  display: block;
}

.lp-prizes-modal__dialog {
  width: min(480px, 100% - 32px);
  max-width: 480px;
  max-height: min(650px, 100dvh - 32px);
}
.lp-prizes-modal__img-wrap {
  height: 210px;
}
.lp-prizes-modal__body {
  padding: 32px 20px 40px;
  gap: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.lp-prizes-modal__title {
  margin: 0 0 12px;
  font-size: 16px;
}
.lp-prizes-modal__desc {
  margin: 0 auto 24px;
  font-size: 12px;
  max-width: 400px;
}

@media (min-width: 768px) {
  .lp-prizes-modal__dialog {
    width: 480px;
    max-width: 480px;
    max-height: 650px;
    height: min(650px, 100vh - 32px);
  }
  .lp-prizes-modal__img-wrap {
    height: 300px;
  }
  .lp-prizes-modal__body {
    padding: 40px;
  }
  .lp-prizes-modal__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .lp-prizes-modal__desc {
    font-size: 16px;
  }
}
.lp-header__nav-label--pc {
  display: none;
}

.lp-header__cta {
  display: none;
}

@media (min-width: 768px) {
  .lp-header__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 24px;
    padding-right: 24px;
  }
  .lp-header__logo img {
    height: 24px;
    width: 183px;
    max-width: 183px;
    margin-left: 0;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left center;
       object-position: left center;
  }
  .lp-header__nav {
    margin-left: auto;
    gap: 12px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .lp-header__nav-link {
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
  }
  .lp-header__nav-link:hover {
    color: #67b0c7;
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-underline-offset: 3px;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
  }
  .lp-header__nav .lp-header__nav-link[href="#contact"] {
    display: none;
  }
  .lp-header__nav-link[href="#prizes"] .lp-header__nav-label--sp {
    display: none;
  }
  .lp-header__nav-link[href="#prizes"] .lp-header__nav-label--pc {
    display: inline;
  }
  .lp-header__cta {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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-sizing: border-box;
            box-sizing: border-box;
    height: 36px;
    margin-left: 16px;
    padding: 6px 24px 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: #4a3636;
    text-decoration: none;
    white-space: nowrap;
    background: #ffffff;
    border: 2px solid #4a3636;
    border-radius: 40px;
    -webkit-box-shadow: 0 4px 0 #4a3636;
            box-shadow: 0 4px 0 #4a3636;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: background 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: background 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  }
  .lp-header__cta:-moz-any-link {
    color: #4a3636;
    background: #ffffff;
    padding-left: 21px;
  }
  .lp-header__cta:any-link {
    color: #4a3636;
    background: #ffffff;
    padding-left: 21px;
  }
  .lp-header__cta:focus:not(:hover) {
    background: #ffffff;
    color: #4a3636;
  }
  .lp-header__cta:hover {
    background: #ffee56;
  }
}
@media (min-width: 768px) and (hover: none) {
  .lp-header__cta:hover {
    background: #ffffff;
  }
}
@media (min-width: 768px) {
  .lp-header__cta:active {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
    -webkit-box-shadow: 0 2px 0 #4a3636;
            box-shadow: 0 2px 0 #4a3636;
  }
  .lp-header__cta:focus-visible {
    outline: 2px solid #79bfd6;
    outline-offset: 2px;
  }
}
@media (min-width: 768px) {
  .lp-fv__hero-bg {
    border-radius: 0 0 40px 40px;
  }
  .lp-fv__hero-img {
    aspect-ratio: auto;
    width: 100%;
    height: 740px;
    max-height: min(740px, 85vh);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 0%;
       object-position: center 0%;
  }
  .lp-fv__hero {
    max-width: none;
    width: 100%;
    padding-bottom: 0px;
  }
  .lp-fv__hero-text {
    top: 35px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 520px;
    max-width: calc(100% - 48px);
  }
  .lp-fv__lead {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
  }
  .lp-fv__lead-sub {
    margin-top: 0;
  }
  .lp-fv__titles {
    gap: 16px;
    max-width: 520px;
  }
  .lp-fv__title-img--main {
    width: 520px;
    max-width: min(520px, 100%);
    margin-top: 0;
  }
  .lp-fv__title-img--sub {
    width: 356px;
    max-width: min(356px, 100%);
  }
  .lp-fv__collage {
    top: 242px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 848px;
    max-width: min(848px, 100% - 40px);
    min-height: 0;
    aspect-ratio: 848/603;
  }
  .lp-fv__fukidashi {
    left: 4.3632075472%;
    top: 35px;
    width: 28.7735849057%;
    max-width: 244px;
    height: auto;
  }
  .lp-fv__present-img {
    left: 63.7971698113%;
    right: auto;
    top: 8.7%;
    width: 21.2264150943%;
    max-width: 180px;
    -webkit-filter: drop-shadow(0 8px 16px rgba(74, 54, 54, 0.18));
            filter: drop-shadow(0 8px 16px rgba(74, 54, 54, 0.18));
  }
  .lp-fv__phone-wrap {
    left: 35.2594339623%;
    right: auto;
    top: 11%;
    width: 29.4811320755%;
    max-width: 250px;
  }
  .lp-fv__phone-cta-row {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: calc(100% - 16px);
    bottom: 36.5%;
  }
  .lp-fv__phone-cta-mask {
    left: 50%;
    top: 50%;
    width: calc(100% + 28px);
    max-width: none;
    height: 50px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .lp-fv__phone-cta {
    position: relative;
    left: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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-sizing: border-box;
            box-sizing: border-box;
    min-height: 40px;
    padding: 6px 24px 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    width: auto;
  }
  .lp-fv__deco-food {
    left: 0;
    top: 37.6451077944%;
    width: 23.820754717%;
    max-width: 202px;
    aspect-ratio: 202/332;
    height: auto;
  }
  .lp-fv__deco-food-inner {
    height: 100%;
    width: 100%;
    max-width: 202px;
    top: 10%;
  }
  .lp-fv__deco-cats {
    left: 72.5235849057%;
    top: 57%;
    width: 27.4764150943%;
    max-width: 233px;
    aspect-ratio: 233/294;
    height: auto;
  }
  .lp-fv__deco-cat--black {
    left: 0;
    top: 0;
    width: 72.9613733906%;
    height: 64.6258503401%;
  }
  .lp-fv__deco-cat--ginger {
    left: 0;
    top: 40.8163265306%;
    width: 100%;
    height: 59.1836734694%;
  }
}
@media (min-width: 768px) {
  .lp-about {
    padding: 145px 0 0px;
    margin-bottom: -10px;
  }
  .lp-about__lead--sp, .lp-about__body--sp {
    display: none;
  }
  .lp-about__lead--pc, .lp-about__body--pc {
    display: block;
  }
  .lp-about__inner {
    padding-bottom: 120px;
  }
  .lp-about__stage {
    max-width: none;
    width: 100%;
    padding-bottom: 59px;
  }
  .lp-about__column {
    max-width: none;
    width: 100%;
    min-height: 0;
    height: auto;
  }
  .lp-about__decoration-layer, .lp-about__side-photos {
    width: min(1512px, 100%);
    max-width: 1512px;
    height: 1218px;
    top: 0;
  }
  .lp-about__stairs-layer {
    width: min(1512px, 100%);
    max-width: 1512px;
    height: 1218px;
    top: 0;
  }
  .lp-about__side-photos::before {
    content: "";
    position: absolute;
    right: 103.5%;
    top: -21px;
    width: 250px;
    height: 250px;
    border-radius: 24px;
    background: repeating-linear-gradient(135deg, #b8dfe8 0 2px, transparent 2px 6px);
    z-index: 0;
    pointer-events: none;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    background: repeating-linear-gradient(135deg, #b8dfe8 0 2px, transparent 8px 12px);
  }
  .lp-about__bg-photo {
    border-radius: 40px;
  }
  .lp-about__bg-photo--left {
    left: -602px;
    top: 72px;
    width: 480px;
    height: 480px;
    max-width: none;
  }
  .lp-about__bg-photo--left img {
    position: absolute;
    left: -18%;
    top: -4.83%;
    width: 150.27%;
    height: 107.58%;
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lp-about__bg-photo--right {
    left: 1053.2px;
    right: auto;
    top: 73.07px;
    width: 480px;
    height: 480px;
    max-width: none;
    border-radius: 40px;
    overflow: hidden;
  }
  .lp-about__bg-photo--stairs {
    top: 323px;
    width: 431px;
    height: 817px;
    left: -368px;
    max-width: none;
    -webkit-transform: none;
            transform: none;
    border-radius: 0;
    overflow: hidden;
  }
  .lp-about__bg-photo--stairs img {
    position: absolute;
    left: -130.71%;
    top: 0.36%;
    width: 317.39%;
    height: 118.59%;
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .lp-about__bg-pawpads {
    width: 100px;
    height: 220px;
    left: 980.12px;
    right: auto;
    top: -82px;
  }
  .lp-about__bg-goods-deco {
    top: 601.32px;
    bottom: auto;
    left: 997px;
    right: auto;
    width: 101px;
    height: 100px;
  }
  .lp-about__bg-goods {
    top: 756.4px;
    bottom: auto;
    left: 867px;
    right: auto;
    width: 308px;
    max-width: 308px;
  }
  .lp-about__bg-goods img {
    margin-left: 0;
    margin-top: 0;
  }
  .lp-about__card-wrap {
    max-width: 848px;
    width: calc(100% - 48px);
  }
  .lp-about__card {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 848px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 114px;
    border-radius: 40px;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    min-height: 0;
  }
  .lp-about__polaroids {
    top: 0;
  }
  .lp-about__polaroid {
    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;
    width: 146.613px;
    height: 117.676px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-about__polaroid--1 {
    left: 85px;
    top: 40.35px;
  }
  .lp-about__polaroid--2 {
    left: 617.08px;
    top: 47px;
  }
  .lp-about__polaroid-frame {
    width: 134px;
    height: 100px;
    border-width: 6px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .lp-about__polaroid--1 .lp-about__polaroid-frame {
    margin-top: 0;
    margin-left: 0;
    border-width: 6px;
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  .lp-about__polaroid--2 .lp-about__polaroid-frame {
    border-width: 6px;
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  .lp-about__head {
    padding: 0 20px;
    gap: 8px;
    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;
  }
  .lp-about__head-icon {
    margin: 0 0 0;
  }
  .lp-about__head-icon img {
    width: 48px;
    height: 48px;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: scale(78%);
            transform: scale(78%);
  }
  .lp-about__head-en {
    font-size: 20px;
    margin: 0 0 0;
  }
  .lp-about__head-jp {
    font-size: 32px;
    padding: 0 0 10px;
    border-bottom-width: 8px;
    -webkit-font-feature-settings: "pwid" 1;
            font-feature-settings: "pwid" 1;
  }
  .lp-about__lead {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }
  .lp-about__lead p {
    margin: 0;
  }
  .lp-about__lead-single {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.625;
    -webkit-font-feature-settings: "pref" 1;
            font-feature-settings: "pref" 1;
  }
  .lp-about__lead-line, .lp-about__lead-accent {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.625;
    -webkit-font-feature-settings: "pref" 1;
            font-feature-settings: "pref" 1;
  }
  .lp-about__body {
    max-width: 620px;
    width: 100%;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-feature-settings: "pref" 1;
            font-feature-settings: "pref" 1;
  }
  .lp-about__body p {
    margin: 0;
  }
  .lp-about__ig {
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
  }
  .lp-about__tag {
    -webkit-font-feature-settings: "pref" 1;
            font-feature-settings: "pref" 1;
  }
  .lp-about__body-spacer {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 16px;
    min-height: 0;
  }
  .lp-about__line {
    line-height: 1.6;
  }
  .lp-about__gift {
    font-size: 20px;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 2px dashed #9ed0e0;
    -webkit-transform: none;
            transform: none;
    max-width: 620px;
    margin: 0 auto;
  }
  .lp-about__btn {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-height: 56px;
    min-width: 0;
    padding: 10px 40px 12px;
    font-size: 20px;
    border-width: 3px;
    -webkit-box-shadow: 0 4px 0 #4a3636;
            box-shadow: 0 4px 0 #4a3636;
    margin: 0;
  }
  .lp-about__arrow-img {
    width: 140px;
  }
  .lp-about__marquee {
    margin-top: 28px;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    -webkit-transform: none;
            transform: none;
  }
  .lp-about__marquee-logo {
    margin-bottom: 18px;
  }
  .lp-about__marquee-logo img {
    width: 890.604px;
    max-width: 100%;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  .lp-about__marquee-strip {
    padding: 8px 0 16px;
    width: 100%;
    max-width: none;
    margin-left: 0;
    -webkit-transform: none;
            transform: none;
    overflow: hidden;
  }
  .lp-about__marquee-strip .swiper-slide {
    width: 200px;
  }
  .lp-about__marquee-strip img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
  }
}
@media (min-width: 768px) {
  .lp-steps {
    top: 0;
    padding: 0px 0 93px;
  }
  .lp-steps__inner {
    max-width: 1024px;
    padding: 0;
  }
  .lp-steps__head {
    margin: 0 0 40px;
  }
  .lp-steps__head-icon {
    margin: 0 0 8px;
  }
  .lp-steps__head-icon img {
    width: 48px;
    height: 48px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-steps__head-en {
    font-size: 20px;
    margin: 0 0 8px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-steps__head-jp {
    font-size: 32px;
    padding: 0 0 9px;
    border-bottom-width: 8px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-steps__decor {
    width: min(1512px, 100%);
    max-width: 1512px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 60px;
    height: 860px;
  }
  .lp-steps__decor-map {
    left: 16px;
    top: -151px;
    width: 460px;
    height: 689px;
    background-size: 460px 689px;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: scale(91%);
            transform: scale(91%);
  }
  .lp-steps__decor-cats {
    left: 1043px;
    top: -84px;
    width: 364px;
    height: 191px;
    right: auto;
  }
  .lp-steps__decor-cat--1 {
    width: 238px;
    height: 141px;
  }
  .lp-steps__decor-cat--2 {
    left: 150px;
    top: 10px;
    width: 214px;
    height: 181px;
  }
  .lp-steps__decor-paws {
    display: block;
  }
  .lp-steps__pawpads--1 {
    left: 1376px;
    top: 90px;
    width: 100px;
    height: 220px;
    margin: 0;
    -webkit-transform: rotate(180deg) scaleY(-1);
            transform: rotate(180deg) scaleY(-1);
  }
  .lp-steps__pawpads--2 {
    display: none;
  }
  .lp-steps__pawpads--3 {
    left: 35px;
    top: 522px;
    width: 100px;
    height: 220px;
    -webkit-transform: scaleY(-1);
            transform: scaleY(-1);
  }
  .lp-steps__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1024px;
    gap: 0;
  }
  .lp-steps__step {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
    width: 320px;
    max-width: 320px;
    gap: 24px;
    padding-bottom: 0;
  }
  .lp-steps__step--1, .lp-steps__step--3 {
    margin-top: 0;
  }
  .lp-steps__step--2 {
    margin-top: 69px;
  }
  .lp-steps__visual {
    height: 300px;
  }
  .lp-steps__blob {
    width: 280px;
    height: 300.741px;
    top: 0;
  }
  .lp-steps__illust--1 {
    left: 94px;
    top: 121px;
    width: 160px;
    height: 160px;
    -webkit-transform: scale(140%);
            transform: scale(140%);
  }
  .lp-steps__illust--2, .lp-steps__illust--3 {
    top: 153px;
    width: 160px;
    height: 160px;
    left: 94px;
    -webkit-transform: scale(142%);
            transform: scale(142%);
  }
  .lp-steps__connector {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    width: 32px;
    height: 300px;
    margin: 0;
    -webkit-transform: none;
            transform: none;
  }
  .lp-steps__connector img {
    position: absolute;
    left: 113%;
    top: 213px;
    width: 164px;
    height: auto;
    -webkit-transform: translateX(-50%);
    /* transform: translateX(-50%); */
    scale: 352%;
  }
  .lp-steps__content {
    gap: 17px;
    width: 320px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-steps__heading {
    max-width: 320px;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0;
  }
  .lp-steps__text {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
  }
  .lp-steps__br--pc-only {
    display: block;
  }
  .lp-steps__pc-only {
    display: inline;
  }
  .lp-steps__sp-only {
    display: none;
  }
  .lp-steps__s2-pc-tail {
    display: inline;
  }
  .lp-steps__s2-sp-last {
    display: none;
  }
  .lp-steps__link {
    font-size: 16px;
    padding: 8px 12px;
    gap: 8px;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .lp-steps__link-icon svg path {
    stroke: #67b0c7;
  }
  .lp-steps__btn {
    width: 440px;
    max-width: none;
    min-width: 440px;
    min-height: 56px;
    margin-top: 47px;
    margin-left: auto !important;
    margin-right: auto !important;
    -ms-flex-item-align: center;
        align-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 40px 12px;
    font-size: 20px;
    border-width: 3px;
    -webkit-box-shadow: 0 4px 0 #4a3636;
            box-shadow: 0 4px 0 #4a3636;
    letter-spacing: 0;
  }
  .lp-steps__btn--sp {
    display: none;
  }
  .lp-steps__btn--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .lp-prizes__surface {
    width: 1042px;
    max-width: min(1024px, 100% - 48px);
  }
  .lp-prizes__panel-bg picture {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .lp-prizes__panel-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    padding-bottom: 0;
  }
  .lp-prizes__inner {
    max-width: 1042px;
  }
  .lp-prizes__head {
    padding-top: 24px;
  }
  .lp-prizes__head::before, .lp-prizes__head::after {
    top: 32px;
    width: 328px;
    height: 86px;
  }
  .lp-prizes__head::before {
    left: 0;
  }
  .lp-prizes__head::after {
    right: 0;
  }
  .lp-prizes__head-icon {
    margin: 0 0 3px;
  }
  .lp-prizes__head-icon img {
    width: 56px;
    height: 56px;
    -webkit-transform: scale(74%);
            transform: scale(74%);
  }
  .lp-prizes__head-en {
    font-size: 20px;
    line-height: 1.25;
    margin: 0px 0 12px;
    margin-bottom: 12px;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  .lp-prizes__head-jp {
    font-size: 32px;
    line-height: 1.25;
    padding: 0 0 12px;
    border-bottom-width: 10px;
  }
  .lp-prizes__lead {
    max-width: 920px;
    margin: 32px auto 0;
    font-size: 15px;
    line-height: 1.8;
    white-space: normal;
    letter-spacing: 1px;
  }
  .lp-prizes__grid {
    width: 912px;
    max-width: 920px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
  }
  .lp-prizes__card:nth-child(-n+2) .lp-prizes__badge {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(calc(-82% + 32px));
            transform: translateX(calc(-82% + 32px));
  }
  .lp-prizes__card:nth-child(n+3) .lp-prizes__badge {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(calc(-75% + 20px));
            transform: translateX(calc(-75% + 20px));
  }
}
@media (min-width: 768px) {
  .lp-steps__visual--1 {
    --lp-steps-pc-hook-visual-1: 0;
  }
  .lp-steps__visual--2 {
    --lp-steps-pc-hook-visual-2: 0;
  }
  .lp-steps__visual--3 {
    --lp-steps-pc-hook-visual-3: 0;
  }
  .lp-steps__bubble--1 {
    --lp-steps-pc-hook-bubble-1: 0;
    -webkit-transform: translate(31px, 19px);
            transform: translate(31px, 19px);
    scale: 137%;
  }
  .lp-steps__bubble--2 {
    --lp-steps-pc-hook-bubble-2: 0;
    -webkit-transform: translate(-19px, 18px);
            transform: translate(-19px, 18px);
    scale: 137%;
  }
  .lp-steps__bubble--3 {
    --lp-steps-pc-hook-bubble-3: 0;
    -webkit-transform: translate(-19px, 18px);
            transform: translate(-19px, 18px);
    scale: 137%;
  }
  .lp-steps__content--1 {
    --lp-steps-pc-hook-content-1: 0;
  }
  .lp-steps__content--2 {
    --lp-steps-pc-hook-content-2: 0;
  }
  .lp-steps__content--3 {
    --lp-steps-pc-hook-content-3: 0;
  }
  .lp-steps__heading--1 {
    --lp-steps-pc-hook-heading-1: 0;
  }
  .lp-steps__heading--2 {
    --lp-steps-pc-hook-heading-2: 0;
  }
  .lp-steps__heading--3 {
    --lp-steps-pc-hook-heading-3: 0;
  }
  .lp-steps__text--1 {
    --lp-steps-pc-hook-text-1: 0;
  }
  .lp-steps__text--2 {
    --lp-steps-pc-hook-text-2: 0;
  }
  .lp-steps__text--3 {
    --lp-steps-pc-hook-text-3: 0;
  }
  .lp-steps__link--1 {
    --lp-steps-pc-hook-link-1: 0;
    background-color: white;
  }
  .lp-steps__connector--1 {
    --lp-steps-pc-hook-connector-1: 0;
  }
  .lp-steps__connector--2 {
    --lp-steps-pc-hook-connector-2: 0;
  }
}
.lp-prizes__foot-waves picture {
  display: contents;
}
.lp-prizes__foot-waves picture.lp-prizes__foot-wave--pc-only {
  display: none;
}

@media (min-width: 768px) {
  .lp-prizes__foot-waves picture.lp-prizes__foot-wave--pc-only {
    display: contents;
  }
  .lp-prizes__foot-waves {
    top: 569px;
    width: 100%;
  }
  .lp-prizes__foot-waves img {
    width: 100%;
    height: 120px;
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
  }
}
@media (min-width: 768px) {
  .lp-spots__band {
    overflow-x: visible;
  }
  .lp-spots__heading-text {
    letter-spacing: 10px;
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
  }
  .lp-spots__swiper-outer {
    width: 1196px;
    max-width: 1196px;
  }
  .lp-spots__swiper .swiper-slide {
    width: 344px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .lp-spots__card {
    width: 344px;
    height: 542px;
    min-height: 542px;
  }
  .lp-spots__img {
    width: 344px;
    height: 240px;
  }
  .lp-spots__desc {
    max-width: 280px;
    text-align: left;
  }
  .lp-spots__nav {
    top: 483px;
  }
  .lp-spots__nav--prev {
    left: -50px;
  }
  .lp-spots__nav--next {
    right: 300px;
  }
}
@media (min-width: 768px) {
  .lp-faq__head {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lp-faq__head-icon img {
    width: 48px;
    height: 48px;
    margin-top: 22px;
    -webkit-transform: none;
            transform: none;
    -o-object-fit: contain;
       object-fit: contain;
    scale: 76%;
  }
  .lp-faq__ttl.lp-ttl .lp-ttl__en {
    margin: 0;
    -webkit-transform: none;
            transform: none;
  }
  .lp-faq__ttl.lp-ttl .lp-ttl__jp {
    margin-top: 8px;
    padding-bottom: 8px;
    border-bottom-width: 8px;
  }
  .lp-faq__item {
    border-width: 2px;
  }
  .lp-faq__trigger {
    padding: 20px;
  }
  .lp-faq__q {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 29px;
            flex: 0 0 29px;
    width: 29px;
    min-width: 29px;
    max-width: 29px;
    font-size: 32px;
    line-height: 1.25;
    text-align: center;
    -webkit-transform: translate(2px, 4px);
            transform: translate(2px, 4px);
  }
  .lp-faq__a-body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    padding: 24px;
  }
  .lp-faq__mark {
    font-size: 32px;
    line-height: 1.25;
    -webkit-transform: translate(-2px, 4px);
            transform: translate(-2px, 4px);
  }
}
@media (min-width: 768px) {
  .lp-info {
    padding: 120px 0 0;
    border-radius: 0 0 40px 40px;
    overflow: visible;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  .lp-info__card {
    padding: 40px 49px 30px;
    gap: 40px;
  }
  .lp-info__head {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lp-info__head-icon img {
    width: 48px;
    height: 48px;
    scale: 70%;
    margin-top: -4px;
  }
  .lp-info__ttl.lp-ttl .lp-ttl__en {
    margin: -5px;
    -webkit-transform: translate(-1px, 2px);
            transform: translate(-1px, 2px);
  }
  .lp-info__lists {
    max-width: none;
    width: 100%;
    gap: 12px;
  }
  .lp-info__segment-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    padding-bottom: 12px;
  }
  .lp-info__segment-body--notes {
    padding-bottom: 12px;
  }
  .lp-info__label-row {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 240px;
            flex: 0 0 240px;
    width: 240px;
    max-width: 240px;
    padding-left: 16px;
    gap: 8px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lp-info__dot {
    width: 8px;
    height: 8px;
  }
  .lp-info__label {
    font-size: 16px;
    line-height: 1.6;
  }
  .lp-info__para,
  .lp-info__list {
    font-size: 16px;
    line-height: 1.6;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
  }
  .pc-br {
    display: none;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .pc-br {
    display: inline;
  }
}
@media (min-width: 768px) {
  .lp-info__visual {
    margin-top: 0;
    padding-top: 120px;
  }
  .lp-info__visual img {
    height: 400px;
    -o-object-position: center;
       object-position: center;
  }
  .lp-info__list--notes li + li {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .lp-contact {
    --lp-contact-message-label-offset-y: 0px;
    --lp-contact-message-req-offset-y: 0px;
  }
  .lp-contact__inner {
    gap: 0;
  }
  .lp-contact__head {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 32px;
  }
  .lp-contact__head-icon img {
    width: 48px;
    height: 48px;
    scale: 75%;
  }
  .lp-contact__ttl.lp-ttl .lp-ttl__en {
    margin: 0;
    -webkit-transform: none;
            transform: none;
  }
  .lp-contact__ttl.lp-ttl .lp-ttl__jp-contact {
    margin-top: -17px;
    padding-bottom: 7px;
    border-bottom-width: 8px;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  .lp-contact__lead {
    margin-bottom: 38px;
  }
  .lp-contact__form {
    max-width: 848px;
  }
  .lp-contact__row {
    width: 848px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .lp-contact__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 848px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 0;
  }
  .lp-contact__field--message {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .lp-contact__label-row {
    grid-column: auto;
    min-height: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    gap: 12px;
  }
  .lp-contact__label-row--message {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 56px;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  .lp-contact__input,
  .lp-contact__textarea {
    grid-column: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 628px;
            flex: 0 0 628px;
    width: 628px;
    max-width: 628px;
    padding: 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lp-contact__select-wrap {
    grid-column: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 628px;
            flex: 0 0 628px;
    width: 628px;
    max-width: 628px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lp-contact__select {
    width: 100%;
    padding: 16px 52px 16px 16px;
    -webkit-transform: none;
            transform: none;
  }
  .lp-contact__select-wrap::after {
    width: 52px;
    min-height: 56px;
  }
  .lp-contact__label {
    font-size: 16px;
  }
  .lp-contact__req {
    padding: 4px 8px;
    font-size: 12px;
  }
  .lp-contact__fieldset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    width: 848px;
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    min-height: 56px;
    position: relative;
  }
  /* legend は既定で flex 子にならないため、中身を fieldset の flex 行に参加させる */
  .lp-contact__fieldset > .lp-contact__fieldset-legend {
    display: contents;
  }
  .lp-contact__fieldset .lp-contact__label--solo {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #4a3636;
  }
  .lp-contact__radio-group {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 628px;
            flex: 0 0 628px;
    width: 628px;
    max-width: 628px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    gap: 24px;
    height: auto;
    min-height: 56px;
  }
  .lp-contact__radio {
    font-size: 16px;
    gap: 8px;
  }
  .lp-contact__radio input[type=radio] {
    width: 24px;
    height: 24px;
  }
  .lp-contact__radio input[type=radio]:checked {
    -webkit-box-shadow: inset 0 0 0 6px #f5f5f5;
            box-shadow: inset 0 0 0 6px #f5f5f5;
  }
  .lp-contact__actions {
    padding-top: 0;
    gap: 40px;
  }
  .lp-contact__check {
    max-width: none;
    margin-top: 15px;
  }
  .lp-contact__check input[type=checkbox] {
    width: 24px;
    height: 24px;
    margin-top: 0;
    background: #f5f5f5;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .lp-contact__submit {
    width: 240px;
    max-width: 240px;
    min-height: 40px;
    height: 40px;
    padding: 6px 24px 8px;
    font-size: 16px;
    border-width: 2px;
    border-radius: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (min-width: 768px) {
  .lp-footer {
    --lp-footer-social-youtube-width: 40px;
    --lp-footer-social-youtube-height: 40px;
    --lp-footer-social-instagram-width: 40px;
    --lp-footer-social-instagram-height: 40px;
    --lp-footer-social-x-width: 40px;
    --lp-footer-social-x-height: 40px;
  }
  .lp-footer__shell {
    padding-top: 120px;
  }
  .lp-footer__onomichi {
    top: 255px;
    width: min(755px, 100% - 40px);
    max-width: 755px;
  }
  .lp-footer__onomichi img {
    width: 100%;
    height: auto;
    max-height: 83px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .lp-footer__sns {
    gap: 24px;
    padding-bottom: 120px;
  }
  .lp-footer__follow {
    font-size: 24px;
    line-height: 1.25;
  }
  .lp-footer__social {
    gap: 40px;
  }
  .lp-footer__social-icon--youtube,
  .lp-footer__social-icon--instagram,
  .lp-footer__social-icon--x {
    width: 40px;
    -webkit-transform: none;
            transform: none;
    height: 40px;
  }
  .lp-footer__social-icon--youtube {
    -webkit-transform: scale(0.87, 0.62);
            transform: scale(0.87, 0.62);
  }
  .lp-footer__social-icon--instagram {
    -webkit-transform: scale(85%);
            transform: scale(85%);
  }
  .lp-footer__social-icon--x {
    -webkit-transform: scale(95%, 74%);
            transform: scale(95%, 74%);
  }
  .lp-footer__card {
    max-width: 1024px;
    border-radius: 16px;
    grid-template-columns: minmax(0, 1fr) 512px;
  }
  .lp-footer__map {
    width: 512px;
    max-width: 512px;
    height: 400px;
  }
  .lp-footer__logo {
    width: 183px;
    max-width: 183px;
    max-height: 24px;
  }
  .lp-footer__meta-dot {
    width: 8px;
    height: 8px;
  }
  .lp-footer__meta-row {
    gap: 0 8px;
  }
  .lp-footer__main::after {
    top: -41px;
    right: -16%;
    width: 100px;
    height: 220px;
    background: url("../img/footer-pawpads.png?v=2") center/contain no-repeat;
  }
  .lp-footer__copyright {
    padding: 0 16px 32px;
    min-height: 0;
  }
  .lp-footer__copy-text {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .lp-spots__nav {
    display: none;
  }
}