:root {
  --black: #000;
  --orange: #f37b21;
  --green: #12b86f;
  --inner: 1024px;
  --bg-cream: #fff9df;
  --bg-blue: #cff1f9;
  --bg-blue02: #89d8ea;
  --bg-green: #b7ed83;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.7;
  background: #ffffff;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  overflow: hidden;
}

.inner {
  width: var(--inner);
  max-width: calc(100% - 40px);
  margin-inline: auto;
}

.fv picture,
.fv img {
  width: 100%;
}
.fv img {
  object-fit: cover;
}

.cta {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  background: var(--orange);
}
.cta--first {
  padding: 52px 0 48px;
  background-image: url("../images/pc/cta01_bg.jpg");
  background-position: center;
  background-size: cover;
}
.cta--middle, .cta--last {
  padding: 100px 0 84px;
  background-image: url("../images/pc/cta02_bg.jpg");
  background-position: center;
  background-size: cover;
}
.cta__message, .cta__button, .cta__button picture {
  display: block;
  margin-inline: auto;
}
.cta__message {
  width: 92%;
  max-width: 630px;
  margin-bottom: 16px;
}
.cta__button {
  width: 100%;
  max-width: 600px;
  line-height: 0;
  transition: transform 0.25s ease;
}
.cta__button:hover {
  transform: translateY(-6px);
}
.cta__message img, .cta__button img {
  width: 100%;
}

.section {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
  background-color: var(--bg-cream);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
.section::before, .section::after {
  content: none;
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 100%;
  min-width: 1366px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  pointer-events: none;
  transform: translateX(-50%);
}
.section > .inner {
  position: relative;
  z-index: 2;
}

.flow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section .flow > .art:first-child {
  margin-bottom: 48px;
}

.art {
  display: block;
  width: 100%;
  max-width: var(--pc-w);
  margin-inline: auto;
}
.art img {
  width: 100%;
}
.art--wide {
  width: 100%;
  max-width: var(--pc-w);
}

.js-reveal {
  opacity: 0;
  translate: 0 34px;
  scale: 0.98;
  transition: opacity 0.3s ease-out, translate 0.75s cubic-bezier(0.22, 1, 0.36, 1), scale 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate, scale;
}

.js-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

.js-reveal--soft {
  translate: 0 18px;
  scale: 0.99;
}

.js-pop {
  scale: 0.82;
  translate: 0 22px;
}

.js-pop.is-visible {
  animation: chara-pop 0.72s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.js-zoom-heading {
  scale: 0.78;
  translate: 0 24px;
  transform-origin: center;
}

.js-zoom-heading.is-visible {
  animation: heading-zoom-up 0.78s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.js-cute-wiggle img {
  transform-origin: center bottom;
}

.js-cute-wiggle.is-visible img {
  animation: cute-wiggle 1.05s ease-out both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}

@keyframes cute-wiggle {
  0% {
    transform: rotate(0deg) scale(1);
  }
  18% {
    transform: rotate(-2.2deg) scale(1.035);
  }
  36% {
    transform: rotate(1.8deg) scale(1.015);
  }
  52% {
    transform: rotate(-1.1deg) scale(1.02);
  }
  68% {
    transform: rotate(0.7deg) scale(1.005);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes heading-zoom-up {
  0% {
    opacity: 0;
    scale: 0.78;
    translate: 0 24px;
  }
  54% {
    opacity: 1;
    scale: 1.08;
    translate: 0 -4px;
  }
  78% {
    scale: 0.98;
    translate: 0 1px;
  }
  100% {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}
@keyframes chara-pop {
  0% {
    opacity: 0;
    scale: 0.82;
    translate: 0 22px;
  }
  58% {
    opacity: 1;
    scale: 1.07;
    translate: 0 -3px;
  }
  82% {
    scale: 0.97;
    translate: 0 1px;
  }
  100% {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    transition: none;
  }
  .js-pop.is-visible,
  .js-zoom-heading.is-visible,
  .js-cute-wiggle.is-visible img {
    animation: none;
  }
}
/* LP01 */
.section--lp01 {
  padding: 80px 0 64px;
  background-color: #fcf9e0;
}

/* LP02 */
.section--lp02 {
  padding: 80px 0 80px;
  background-color: var(--bg-blue02);
  background-image: none;
}

.lp02-layout__main {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  min-height: 392px;
}
.lp02-layout__text {
  position: relative;
  z-index: 2;
  margin-left: 0;
  margin-top: 8px;
}
.lp02-layout__map {
  position: absolute;
  top: 0;
  right: calc((100% - 1366px) / 2);
  width: 595px;
  max-width: none;
  margin: 0;
  z-index: 1;
  pointer-events: none;
}
.lp02-layout__chara {
  position: absolute;
  left: 54.6875%;
  top: 100px;
  z-index: 2;
}
.lp02-layout {
  /*&__photos {
    width: 100vw;
    max-width: none;
    margin-left: calc((var(--inner) - 100vw) / 2);
    margin-right: calc((var(--inner) - 100vw) / 2);
  }*/
}

.lp02-photo-band {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  margin-bottom: -40px;
}

.lp02-photo-band picture,
.lp02-photo-band img {
  width: 100%;
}

/* LP03 */
.section--lp03 {
  padding: 88px 0 96px;
  background-color: var(--bg-green);
}

.lp03-layout {
  position: relative;
}
.lp03-layout__main {
  display: block;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 485px;
  margin-bottom: 14px;
}
.lp03-layout__text {
  position: relative;
  z-index: 2;
  width: 447px;
  max-width: 447px;
  margin: 0;
  margin-top: 40px;
}
.lp03-layout__photo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50vw;
  max-width: none;
  margin: 0;
  z-index: 1;
}
.lp03-layout__photo img {
  width: 100%;
}
.lp03-layout__bubble {
  position: absolute;
  top: 260px;
  left: 0;
  z-index: 3;
}

/* LP04 */
.section--lp04 {
  padding: 128px 0 0;
  background-image: url("../images/pc/lp04_bg.png");
  background-size: cover;
  overflow: visible;
}
.section--lp04::before {
  content: "";
  top: -47px;
  height: 94px;
  background-image: url("../images/pc/bg_wave01.png");
}

.lp04-layout__main {
  position: relative;
  width: 100%;
}
.lp04-layout__chara {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.lp04-layout__chara--black {
  left: -160px;
  top: 490px;
}
.lp04-layout__chara--green {
  right: -120px;
  top: 480px;
}

/* LP05 */
.section--lp05 {
  padding: 80px 0 176px;
  background-color: var(--bg-blue);
  overflow: visible;
}
.section--lp05::before {
  content: "";
  top: -114px;
  height: 115px;
  background-image: url("../images/pc/bg_circle01.png");
}
.section--lp05::after {
  content: "";
  bottom: -80px;
  left: 0;
  width: 166px;
  min-width: 0;
  height: 472px;
  background-image: url("../images/pc/deco01.png");
  background-size: 166px auto;
  transform: none;
}

.lp05-layout__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 56px;
}
.lp05-layout__text {
  margin-left: 0;
}
.lp05-layout__photo {
  margin-right: 0;
  margin-top: 8px;
}

/* LP06 */
.section--lp06 {
  padding: 0 0 96px;
  background-color: var(--bg-green);
  overflow: visible;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  gap: 28px 22px;
  width: 100%;
  max-width: 1024px;
}
.card-grid .card {
  width: 100%;
  max-width: var(--pc-w);
}
.card-grid .card:nth-child(4) {
  grid-column: 1/2;
  margin-left: 175px;
}
.card-grid .card:nth-child(5) {
  grid-column: 2/3;
  margin-left: 175px;
}

.lp06-heading {
  margin-top: -96px;
  margin-bottom: -16px;
}

/* LP07 */
.section--lp07 {
  padding: 80px 0 216px;
  background-color: var(--bg-blue02);
}

.lp07-layout__main {
  position: relative;
  width: 100%;
}
.lp07-layout__checks {
  position: relative;
  z-index: 2;
}
.lp07-layout__chara {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.lp07-layout__chara--red {
  left: -100px;
  bottom: -76px;
}
.lp07-layout__chara--blue {
  right: -96px;
  bottom: -120px;
}
.lp07-layout__message {
  margin-top: 40px;
}

/* LP08 */
.section--lp08 {
  padding: 0 0 112px;
  background-color: var(--bg-cream);
  overflow: visible;
}
.section--lp08::before {
  content: "";
  top: -114px;
  height: 115px;
  background-image: url("../images/pc/bg_circle02.png");
}
.section--lp08::after {
  content: "";
  top: -300px;
  left: auto;
  right: 0;
  width: 166px;
  min-width: 0;
  height: 540px;
  background-image: url("../images/pc/deco02.png");
  background-size: 166px auto;
  transform: none;
  z-index: 10;
}

.section--lp08 .flow > .art:nth-child(2) {
  margin-bottom: 80px;
}

/* LP09 */
.section--lp09 {
  background-color: var(--bg-blue);
  overflow: visible;
}
.section--lp09::after {
  content: "";
  top: 80px;
  left: 0;
  right: auto;
  width: 166px;
  min-width: 0;
  height: 410px;
  background-image: url("../images/pc/deco03.png");
  background-size: 166px auto;
  transform: none;
  z-index: 1;
}

.lp09-layout__main {
  position: relative;
  width: 100%;
}
.lp09-layout__content {
  position: relative;
  z-index: 1;
}
.lp09-layout__chara {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.lp09-layout__chara--left {
  left: -130px;
  bottom: -40px;
}
.lp09-layout__chara--right {
  right: -130px;
  top: 600px;
}

.lp09-bottom-bg {
  position: relative;
  z-index: 1;
  margin-top: -72px;
  margin-bottom: -1px;
  line-height: 0;
}
.lp09-bottom-bg picture,
.lp09-bottom-bg img {
  display: block;
  width: 100%;
}

/* LP10 */
.section--lp10 {
  padding: 80px 0 200px;
  background-color: var(--bg-green);
  margin-top: -47px;
}

/* LP11 */
.section--lp11 {
  padding: 0 0 112px;
  background-color: var(--bg-blue02);
  overflow: visible;
}
.section--lp11::before {
  content: "";
  top: -114px;
  height: 115px;
  background-image: url("../images/pc/bg_circle03.png");
}
.section--lp11::after {
  content: "";
  top: -300px;
  left: auto;
  right: 0;
  width: 166px;
  min-width: 0;
  height: 449px;
  background-image: url("../images/pc/deco04.png");
  background-size: 166px auto;
  transform: none;
}

/* LP12 */
.section--lp12 {
  padding: 136px 0 64px;
  background-color: var(--bg-cream);
  background-image: url("../images/pc/lp12_bg.jpg");
  background-size: cover;
}
.section--lp12 .inner {
  width: 100%;
}

@media (min-width: 1366px) {
  body {
    overflow-x: hidden;
  }
  .page {
    width: 1366px;
    margin-inline: auto;
    zoom: calc(0.0732064422vw / 1px);
  }
}
@media (min-width: 1060px) and (max-width: 1365px) {
  .section--lp05::after,
  .section--lp09::after {
    left: calc((100vw - 1024px) / 2 - 190px);
  }
  .section--lp08::after,
  .section--lp11::after {
    right: calc((100vw - 1024px) / 2 - 190px);
  }
  .section--lp08::after,
  .section--lp09::after {
    z-index: 1;
  }
}
@media (min-width: 769px) and (max-width: 1059px) {
  body {
    overflow-x: hidden;
  }
  .page {
    width: 1060px;
    margin-inline: auto;
    zoom: calc(100vw / 1060px);
  }
  .lp03-layout__photo {
    width: calc(1060px / 2);
  }
}
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .page {
    width: 390px;
    margin-inline: auto;
    zoom: calc(0.2564102564vw / 1px);
  }
  .inner {
    width: 342px;
    max-width: none;
  }
  .fv {
    position: relative;
    z-index: 2;
  }
  .cta {
    padding: 50px 0 30px;
  }
  .cta--first {
    background-image: url("../images/sp/cta01_bg_sp.jpg");
  }
  .cta--middle, .cta--last {
    background-image: url("../images/sp/cta02_bg_sp.jpg");
  }
  .cta__message {
    width: 253px;
    max-width: 253px;
    margin-bottom: 6px;
  }
  .cta__button {
    width: 100%;
  }
  .cta__button .art {
    max-width: 330px;
  }
  .cta--first {
    margin-top: -16px;
    padding: 24px 0 16px;
  }
  .section {
    padding: 40px 0;
    background-image: none;
    background-size: 100% auto;
  }
  .section::before, .section::after {
    content: none;
    min-width: 0;
  }
  .section .flow > .art:first-child {
    margin-bottom: 24px;
  }
  .art,
  .art--wide {
    width: 100%;
    max-width: var(--sp-w);
  }
  /* LP01 */
  .section--lp01 {
    padding: 32px 0 24px;
    background-image: url("../images/sp/lp01_bg_sp.jpg");
  }
  /* LP02 */
  .section--lp02 {
    padding: 40px 0 30px;
    background-image: url("../images/sp/lp02_bg_sp.jpg");
  }
  .lp02-layout__main {
    display: block;
    min-height: 438px;
  }
  .lp02-layout__chara {
    left: 20px;
    top: 280px;
    width: 162px;
    max-width: 180px;
  }
  .lp02-layout__map {
    display: none;
  }
  .lp02-layout__photos {
    width: 100%;
    margin-inline: auto;
  }
  /* LP03 */
  .section--lp03 {
    padding: 60px 0 90px;
    background-color: var(--bg-green);
  }
  .lp03-layout__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    min-height: 0;
    margin-bottom: 0;
  }
  .lp03-layout__text {
    width: 100%;
    max-width: var(--sp-w);
    margin-inline: auto;
    margin-top: 0;
  }
  .lp03-layout__photo {
    position: static;
    width: 100%;
    max-width: var(--sp-w);
    margin-inline: auto;
  }
  .lp03-layout__bubble {
    top: 400px;
    margin-left: auto;
  }
  /* LP04 */
  .section--lp04 {
    padding: 60px 0 60px;
    background-image: url("../images/sp/lp04_bg_sp.jpg");
    background-size: cover;
    overflow: visible;
  }
  .section--lp04::before {
    content: "";
    top: -16px;
    height: 32px;
    background-image: url("../images/sp/bg_wave01_sp.png");
  }
  .lp04-layout__main {
    position: relative;
    width: 100%;
  }
  .lp04-layout__chara {
    display: block;
    position: absolute;
    z-index: 2;
    pointer-events: none;
  }
  .lp04-layout__chara--black {
    left: -20px;
    top: 200px;
    width: var(--sp-w);
    max-width: var(--sp-w);
  }
  .lp04-layout__chara--green {
    right: -20px;
    top: 200px;
    width: var(--sp-w);
    max-width: var(--sp-w);
  }
  /* LP05 */
  .section--lp05 {
    padding: 20px 0 100px;
    background-color: var(--bg-blue);
    overflow: visible;
  }
  .section--lp05::before {
    content: "";
    top: -32px;
    width: 100%;
    height: 33px;
    background-image: url("../images/pc/bg_circle01.png");
    background-size: 100% auto;
  }
  .section--lp05::after {
    display: none;
  }
  .lp05-layout__main {
    flex-direction: column-reverse;
    align-items: center;
    gap: 28px;
    margin-bottom: 0;
  }
  .lp05-layout__photo {
    margin-top: 0;
  }
  /* LP06 */
  .section--lp06 {
    padding: 20px 0 40px;
    background-color: var(--bg-green);
    padding-top: 0;
  }
  .card-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .card-grid .card,
  .card-grid .card:nth-child(4),
  .card-grid .card:nth-child(5) {
    width: 100%;
    max-width: var(--sp-w);
    margin-left: 0;
  }
  .lp06-heading {
    width: 357px;
    max-width: 357px;
    margin-left: -7.5px;
    margin-right: -7.5px;
    margin-top: -64px;
    margin-bottom: -36px;
  }
  /* LP07 */
  .section--lp07 {
    padding: 40px 0 80px;
    background-color: var(--bg-blue02);
    overflow: visible;
  }
  .section--lp07::after {
    content: "";
    top: 196px;
    left: auto;
    right: 0;
    width: 86px;
    min-width: 0;
    height: 280px;
    background-image: url("../images/pc/deco02.png");
    background-size: 86px auto;
    transform: none;
  }
  .lp07-layout__main {
    margin-top: -40px;
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .lp07-layout__checks {
    flex: 0 0 390px;
    width: 390px;
    max-width: 390px;
    padding-top: 20px;
  }
  .lp07-layout__chara {
    display: none;
  }
  .lp07-layout__message {
    display: none;
  }
  /* LP08 */
  .section--lp08 {
    padding: 10px 0 60px;
    background-color: var(--bg-cream);
    overflow: visible;
  }
  .section--lp08::before {
    content: "";
    top: -32px;
    width: 100%;
    height: 33px;
    background-image: url("../images/pc/bg_circle02.png");
    background-size: 100% auto;
  }
  .section--lp08 .flow > .art:nth-child(2) {
    margin-bottom: 40px;
  }
  /* LP09 */
  .section--lp09 {
    padding: 40px 0 100px;
    background-color: var(--bg-blue);
    overflow: visible;
  }
  .section--lp09::after {
    content: "";
    top: 304px;
    left: 0;
    width: 86px;
    min-width: 0;
    height: 213px;
    background-image: url("../images/pc/deco03.png");
    background-size: 86px auto;
    transform: none;
  }
  .lp09-layout__main {
    position: relative;
    width: 100%;
  }
  .lp09-layout__chara {
    display: block;
    position: absolute;
    z-index: 2;
    pointer-events: none;
  }
  .lp09-layout__chara--left {
    right: auto;
    left: -40px;
    bottom: -130px;
    width: 164px;
    max-width: 164px;
  }
  .lp09-layout__chara--right {
    right: -50px;
    top: 170px;
    width: 186px;
    max-width: 186px;
  }
  /* LP10 */
  .section--lp10 {
    padding: 60px 0 80px;
    background-color: var(--bg-green);
  }
  /* LP11 */
  .section--lp11 {
    padding: 10px 0 40px;
    background-color: var(--bg-blue02);
    overflow: visible;
  }
  .section--lp11::before {
    content: "";
    top: -32px;
    width: 100%;
    height: 33px;
    background-image: url("../images/pc/bg_circle03.png");
    background-size: 100% auto;
  }
  .section--lp11::after {
    content: "";
    top: 110px;
    left: auto;
    right: 0;
    width: 86px;
    min-width: 0;
    height: 233px;
    background-image: url("../images/pc/deco04.png");
    background-size: 86px auto;
    transform: none;
  }
  /* LP12 */
  .section--lp12 {
    padding: 50px 0 40px;
    background-color: var(--bg-cream);
    background-image: url("../images/sp/lp12_bg_sp.jpg");
    background-size: cover;
  }
  .section--lp12 .art--wide {
    width: 390px;
    max-width: 390px;
    margin-left: -24px;
    margin-right: -24px;
  }
}
