body {
  margin: 0;
  background: #fff;
  font-family: "Yu Gothic", "Hiragino Sans", sans-serif;
}

.lp {
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
}

.image-section {
  line-height: 0;
}

/* intro */
.intro {
  background: #fff;
}

.intro__head {
  padding: 40px 20px 30px;
  text-align: center;
}

.intro__top {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.intro__question {
  margin: 12px 0 0;
  font-size: 56px;
  font-weight: 700;
  color: #ff0000;
  line-height: 1.3;
}

.intro__question span {
  font-size: 32px;
  color: #000;
}

.intro__area {
  margin: 20px 0 0;
  font-size: 52px;
  font-weight: 700;
  color: #001dff;
  line-height: 1.4;
}

.intro__title {
  display: inline;
  margin: 36px 0 0;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(transparent 65%, #ffe600 65%);
}

.intro__image {
  line-height: 0;
}

@media screen and (max-width: 768px) {

  .intro__head {
    padding: 28px 16px 24px;
  }

  .intro__top {
    font-size: 18px;
  }

  .intro__question {
    font-size: 38px;
  }

  .intro__question span {
    font-size: 20px;
  }

  .intro__area {
    font-size: 34px;
  }

  .intro__title {
    font-size: 40px;
  }

}

.campaign {
  background: #fff;
}

.campaign__head {
  padding: 36px 20px 24px;
  text-align: center;
}

.campaign__title {
  margin: 0;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.4;
  color: #ff0000;
}

.campaign__title span {
  font-size: 24px;
  color: #000;
}

.campaign__price {
  margin: 18px 0 0;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
}

.campaign__limited {
  margin: 18px 0 0;
  font-size: 52px;
  line-height: 1.4;
  font-weight: 700;
  color: #ff0000;
}

.campaign__image {
  line-height: 0;
}

/* down arrow */
.downArrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 10px;
}

.downArrow > span {
  width: 60px;
  height: 40px;
  box-sizing: border-box;
}

.downArrow > span::before {
  content: "";
  display: block;
  width: 50%;
  height: 40%;
  margin: 0 auto;
  background: #ff69b4;
}

.downArrow > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 60%;
  background:
    linear-gradient(
      to top right,
      transparent 49%,
      #ff69b4 50%
    ) top left / 50% 100% no-repeat,

    linear-gradient(
      to top left,
      transparent 49%,
      #ff69b4 50%
    ) top right / 50% 100% no-repeat;
}

/* animation */
.movebtn {
  animation: btnAnime02 1.5s ease infinite;
}

@keyframes btnAnime02 {

  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0);
  }

}

@media screen and (max-width: 768px) {

  .campaign__head {
    padding: 28px 16px 20px;
  }

  .campaign__title {
    font-size: 32px;
  }

  .campaign__title span {
    font-size: 16px;
  }

  .campaign__price {
    margin-top: 12px;
    font-size: 18px;
  }

  .campaign__limited {
    margin-top: 12px;
    font-size: 34px;
  }

  .downArrow {
    gap: 4px;
    padding: 16px 0 8px;
  }

  .downArrow > span {
    width: 42px;
    height: 28px;
  }

}

.question {
  background: #fff;
}

.question__image {
  line-height: 0;
}

.question__choices {
  padding: 18px 24px 22px;
}

.question__choice {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  margin-top: 12px;
  padding: 0 20px 0 56px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 0 #d0d0d0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}

.question__choice:first-child {
  margin-top: 0;
}

.question__choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.question__choice::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid #cfcfcf;
  border-radius: 50%;
  box-sizing: border-box;
  transform: translateY(-50%);
  background: #fff;
}

.question__choice:has(input:checked) {
  border-color: #f5c64d;
  background: #f5c64d;
  box-shadow: none;
}

.question__choice:has(input:checked)::before {
  border-color: #fff;
  background: #f5c64d;
}

@media screen and (max-width: 768px) {

  .question__choices {
    padding: 14px 15px 18px;
  }

  .question__choice {
    min-height: 56px;
    margin-top: 10px;
    padding-left: 56px;
    font-size: 16px;
  }

  .question__choice::before {
    left: 15px;
    width: 26px;
    height: 26px;
  }

}
.thanks {
  background: #fff;
}

.thanks__top,
.thanks__director,
.thanks__extra-image {
  line-height: 0;
}

.thanks img {
  width: 100%;
  display: block;
}

/* text */
.thanks__text {
  padding: 20px 16px 24px;
  text-align: center;
}

.thanks__sub {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.thanks__catch {
  margin: 10px 0 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  color: #ff0000;
}

.thanks__title {
  margin: 8px 0 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

/* extra image */
.thanks__extra-image {
  margin-top: 24px;
}

/* video */
.thanks__video {
  margin-top: 24px;
  padding: 0 20px 32px;
}

.thanks__video video {
  width: 100%;
  display: block;
}

@media screen and (max-width: 768px) {

  .thanks__text {
    padding: 14px 14px 20px;
  }

  .thanks__sub {
    font-size: 15px;
  }

  .thanks__catch {
    margin-top: 6px;
    font-size: 30px;
  }

  .thanks__title {
    margin-top: 4px;
    font-size: 34px;
  }

  .thanks__extra-image {
    margin-top: 18px;
  }

  .thanks__video {
    margin-top: 18px;
    padding: 0 14px 24px;
  }

}

.cta {
  padding: 0 0 32px;
  background: #fff;
}

.cta__image,
.cta__tel,
.cta__line {
  line-height: 0;
}

.cta img {
  width: 100%;
  display: block;
}

/* timer */
.cta__timer {
  margin: 0 16px;
  padding: 16px 10px;
  background: #c91f3a;
  text-align: center;
}

.cta__timer-text {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.cta__count {
  margin-top: 10px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.cta__count span {
  font-size: 52px;
}

.cta__count small {
  margin-right: 6px;
  font-size: 22px;
}

/* buttons */
.cta__tel {
  display: block;
  margin: 16px 16px 0;
}

.cta__line {
  display: block;
  margin: 18px 16px 0;
}

@media screen and (max-width: 768px) {

  .cta {
    padding-bottom: 24px;
  }

  .cta__timer {
    margin: 0 12px;
    padding: 12px 8px;
  }

  .cta__timer-text {
    font-size: 14px;
  }

  .cta__count {
    margin-top: 6px;
  }

  .cta__count span {
    font-size: 34px;
  }

  .cta__count small {
    margin-right: 4px;
    font-size: 14px;
  }

  .cta__tel {
    margin: 12px 12px 0;
  }

  .cta__line {
    margin: 14px 12px 0;
  }

}

.voice {
  padding: 0 0 32px;
  background: #fff;
}

.voice__head,
.voice__item {
  line-height: 0;
}

.voice img {
  width: 100%;
  display: block;
}

.voice__list {
  padding: 0 14px;
}

.voice__item {
  margin-top: 18px;
}

.voice__item:first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {

  .voice {
    padding-bottom: 24px;
  }

  .voice__list {
    padding: 0 10px;
  }

  .voice__item {
    margin-top: 14px;
  }

}

.reason {
  background: #fff;
}

.reason__head,
.reason__image,
.reason__number {
  line-height: 0;
}

.reason img {
  width: 100%;
  display: block;
}

/* item */
.reason__item {
  position: relative;
  padding: 18px 14px 60px;
}

.reason__item--blue {
  background: linear-gradient(
    180deg,
    #dff6ff 0%,
    #e8fbff 100%
  );
}

.reason__item--orange {
  background: linear-gradient(
    180deg,
    #fff0df 0%,
    #fff7ef 100%
  );
}

.reason__item--pink {
  background: linear-gradient(
    180deg,
    #ffe1ef 0%,
    #fff1f7 100%
  );
}

.reason__content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reason__content--reverse {
  flex-direction: row-reverse;
}

/* image */
.reason__image {
  width: 42%;
  flex-shrink: 0;
}

.reason__image img {
  border: 2px solid #00b7ff;
  border-radius: 10px;
}

/* text */
.reason__text {
  flex: 1;
}

.reason__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

.reason__desc {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

/* number */
.reason__number {
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 100%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {

  .reason__item {
    padding: 14px 10px 48px;
  }

  .reason__content {
    gap: 10px;
  }

  .reason__title {
    font-size: 16px;
  }

  .reason__desc {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.8;
  }

  .reason__number {
    width: 40px;
  }

}

.comment {
  padding: 30px 20px;
  background: #fff;
}

.comment__area {
  position: relative;
  padding: 10px 10px 18px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 3px 3px 2px #f4d2de;
  background: #fff;
}

.comment__head {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 8px;
  background: #ff80bf;
  border-radius: 5px;
  box-shadow: 2px 2px 2px #888;
  z-index: 2;
}

.comment__head p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 1px 1px 1px #888;
}

.comment__video {
  line-height: 0;
}

.comment__video video {
  width: 100%;
  display: block;
  object-fit: cover;
}

.comment__text {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 700;
}

.comment__text span {
  background: linear-gradient(
    transparent 80%,
    #ffff00 0%
  );
}

.comment__caption {
  margin: 12px 0 0;
  color: #bbb;
  font-size: 10px;
  line-height: 1.4;
  text-align: right;
}

@media screen and (max-width: 768px) {

  .comment {
    padding: 24px 10px;
  }

  .comment__head p {
    font-size: 14px;
  }

  .comment__text {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.8;
  }

  .comment__caption {
    font-size: 8px;
  }

}

.access {
  padding: 0 10px 40px;
  background: #fff;
}

.access__head,
.access__logo,
.access__map {
  line-height: 0;
}

.access img {
  width: 100%;
  display: block;
}

/* logo */
.access__logo {
  margin-top: 26px;
  text-align: center;
}

/* table */
.access__table-wrap {
  margin-top: 24px;
}

.access__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.access__table th,
.access__table td {
  border: 1px solid #d9d9d9;
  padding: 18px 14px;
  font-size: 16px;
  line-height: 1.8;
  vertical-align: middle;
}

.access__table th {
  width: 34%;
  background: #f5e1e1;
  text-align: center;
  font-weight: 700;
}

.access__table td {
  background: #fff;
}

.access__table a {
  color: inherit;
  text-decoration: none;
}

/* map */
.access__map {
  margin-top: 28px;
}

.access__map iframe {
  display: block;
  width: 100%;
}

@media screen and (max-width: 768px) {

  .access {
    padding: 0 8px 28px;
  }

  .access__logo {
    margin-top: 18px;
  }

  .access__table-wrap {
    margin-top: 18px;
  }

  .access__table th,
  .access__table td {
    padding: 12px 10px;
    font-size: 12px;
    line-height: 1.7;
  }

  .access__map {
    margin-top: 20px;
  }

  .access__map iframe {
    height: 300px;
  }

}