:root {
  --text-color: #6C1400;
  --bg-color: #F6F1E0;
}

/*
  reset
----------------------------- */

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none
}

/*
  共通
----------------------------- */

.section__inner {
  width: 100%;
  max-width: 1128px;
  padding-left: 24px;
  padding-right: 24px;
  margin-inline: auto;
}

@media (min-width: 744px) {
  .section__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.section__ttl {
  position: relative;
  text-align: center;
  padding-bottom: 22px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.52;
}

.section__ttl::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 128px;
  height: 2px;
  background-color: #843A2A;
}

@media (min-width: 744px) and (max-width: 1023px) {
  .section__ttl {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .section__ttl {
    font-size: 38px;
  }
}

.txt__caption {
  font-size: 12px;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .txt__caption {
      font-size: 14px;
  }
}

.font-normal {
  font-weight: 400 !important;
}

.font-midium {
  font-weight: 500 !important;
}

.font-bold {
  font-weight: 700 !important;
}

mark {
  padding: 0 0.1em;
  background-image: linear-gradient(180deg, transparent 0.5em, #f7de03 0.5em, #f7de03 1em, transparent 1em);
  color: inherit;
  font-weight: 700;
}

@media (min-width: 744px) {
  mark {
    padding: 0 0.1em;
    background-image: linear-gradient(180deg, transparent 0.35em, #f7de03 0.35em, #f7de03 1.3em, transparent 1.3em);
    color: inherit;
    font-weight: 700;
  }
}

/*
  header
----------------------------- */
#header.header {
  width: 100%;
  height: 56px;
  padding: 0;
  place-content: center;
  background: #893A29 url(../img/bg_header.png) repeat 0 0 / contain;
}

.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 864px;
  margin: 0 auto;
  padding-left: 42px;
  padding-right: 42px;
}

.header__maintitle {
  display: flex;
  align-items: center;
}

.header__maintitle-app {
  width: 40px;
  margin-right: 12px;
}

.header__maintitle-txt {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.header__appdl {
  width: 88px;
  margin-left: 10px;
}

@media (min-width: 744px) {
  #header.header {
    height: 64px;
    background: #893A29 url(../img/bg_header_pc.png) repeat 0 0 / contain;
  }

  .header__inner {
    justify-content: space-between;
    padding-left: 32px;
    padding-right: 32px;
  }

  .header__app {
    display: flex;
  }

  .header__app li {
    margin-left: 9px;
  }

  .header__app .header__app-qr {
    margin-left: 8px;
  }

  .header__app li img {
    height: 40px;
  }

  .header__app .header__app-qr img {
    width: 44px;
  }

  .header__maintitle-txt {
    font-size: 18px;
    font-weight: 500;
  }
}

@media (min-width: 1024px) {
  #header.header {
    height: 80px;
  }

  .header__maintitle-txt {
    font-weight: 700;
  }

  .header__app .header__app-qr {
    margin-left: 12px;
  }

  .header__app li img {
    height: 48px;
  }

  .header__app .header__app-qr img {
    width: 48px;
  }
}

/*
  lp-footer
----------------------------- */
.lp-footer {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 100px;
  background: #893A29 url(../img/bg_footer.png) repeat 0 0 / contain;
}

.lp-footer .lp-footer__inner {
  width: 100%;
  max-width: 1104px;
  padding-left: 24px;
  padding-right: 24px;
  margin-inline: auto;
}

.lp-footer .lp-footer__upper {
  padding: 24px;
  background-color: var(--bg-color);
  border-radius: 16px;
}

.lp-footer .lp-footer__apphome {
  width: min(12.8vw,96px);
  margin: 0 auto;
}

.lp-footer .lp-footer__upper-ttl {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.6;
}

.lp-footer .lp-footer__app {
  display: flex;
  justify-content: space-between;
  gap: 0 24px;
  margin: 16px 0;
}

.lp-footer .lp-footer__caption {
  color: #000;
  font-size: 12px;
}

.lp-footer .lp-footer__caption li {
  display: inline;
}

.lp-footer .lp-footer__lower {
  margin-top: 32px;
}

.lp-footer__lower .lp-footer__lower-ttl {
    color: #fff;
    padding-bottom: 25px;
    margin-bottom: 23px;
    border-bottom: 1px solid #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 1.7;
    letter-spacing: -0.04em;
  }

.lp-footer__lower .lp-footer__link li {
  color: #fff;
}

.lp-footer__lower .lp-footer__link li a {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.lp-footer__link li + li {
  margin-top: 10px;
}

.lp-footer__lower .lp-footer__link li a::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 4px;
  height: 8px;
  background: url(../img/icon_arrow_r_wh.png) no-repeat 0 0 / cover;
}

.lp-footer__lower .p-footer__link-caption {
  display: block;
  font-size: 12px;
  padding-left: 24px;
}

.lp-footer__sns {
  display: flex;
  justify-content: center;
  gap: 0 16px;
  margin-top: 33px;
}

.lp-footer__sns li {
  width: min(10.67vw,80px);
}

@media (min-width: 744px) {
  .lp-footer {
    width: 100%;
    padding-top: 48px;
    padding-bottom: 66px;
    background: #893A29 url(../img/bg_footer_pc.png) repeat 0 0 / contain;
  }

  .lp-footer .lp-footer__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .lp-footer .lp-footer__upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 22px 48px 26px;
  }

  .lp-footer .lp-footer__apphome {
    flex: 0 0 64px;
    width: 64px;
    margin: 0;
  }

  .lp-footer .lp-footer__upper-ttl {
    flex: 0 0 auto;
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: 0.022em;
  }

  .lp-footer .lp-footer__app {
    display: flex;
    justify-content: flex-start;
    gap: 0 15px;
    margin: 0;
  }

  .lp-footer .lp-footer__app li img {
    height: 64px;
  }

  .lp-footer .lp-footer__caption {
    flex: 0 0 100%;
    margin-top: 16px;
  }

  .lp-footer .lp-footer__lower {
    margin-top: 45px;
  }

  .lp-footer__lower .lp-footer__lower-ttl {
      padding-bottom: 17px;
      margin-bottom: 16px;
      text-align: left;
      line-height: 1.7;
      letter-spacing: 0.022em;
    }

  .lp-footer__lower .lp-footer__link {
    display: flex;
  }

  .lp-footer__lower .lp-footer__link li a {
    padding-left: 16px;
    letter-spacing: 0.022em;
  }

  .lp-footer__link li + li {
    margin-top: 0;
    margin-left: 42px;
  }

  .lp-footer__lower .lp-footer__link li a[target="_blank"]::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    background: #893A29 url(../img/icon_blank.png) repeat 0 0 / contain;
  }

  .lp-footer__lower .p-footer__link-caption {
    display: inline-block;
    padding-left: 10px;
    font-size: 12px;
    letter-spacing: 0.022em;
  }

  .lp-footer__sns {
    display: flex;
    justify-content: center;
    gap: 0 16px;
    margin-top: 54px;
  }

  .lp-footer__sns li {
    width: 40px;
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  .lp-footer {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .lp-footer .lp-footer__inner {
    padding-left: 88px;
    padding-right: 88px;
  }

  .lp-footer .lp-footer__upper {
    justify-content: flex-start;
    padding: 35px 48px;
  }

  .lp-footer .lp-footer__apphome {
    margin-right: 16px;
  }

  .lp-footer .lp-footer__app {
    flex: 0 0 100%;
    margin-top: 24px;
  }

  .lp-footer .lp-footer__caption li {
    line-height: 1.83;
  }

  .lp-footer .lp-footer__lower {
    margin-top: 35px;
  }

  .lp-footer__lower .p-footer__link-caption {
    display: block;
  }
}

/*
  contentsLayout
----------------------------- */
.autumn2511-top {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.autumn2511-top .maincontent {
  padding-top: 56px;
}

@media (min-width: 744px) {
  .autumn2511-top .maincontent {
    padding-top: 80px;
  }
}

/* hero */
.hero .hero__mainvis {
  position: relative;
}

.hero .hero__mainvis::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #F3ECD6;
  z-index: -1;
}

.hero .hero__mainvis-title {
  text-align: center;
}

.hero .hero__lower {
  padding: 20px 24px 0;
  background-color: #F3ECD6;
}

.hero__lower .apps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  justify-content: center;
  gap: 20px 40px;
  padding: 0 15px;
}

.hero__lower .app__img {
  position: relative;
}

.hero__lower .apps__txt {
  margin-top: 8px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.14;
}

@media (min-width: 744px) {
  .hero .hero__mainvis::after {
      height: 12px;
  }

  .hero .hero__lower {
    padding: 40px 24px;
  }

  .hero__lower .apps {
    margin: 0 auto;
  }

  .hero__lower .apps__txt {
    margin-top: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.14;
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  .hero__lower .apps {
    max-width: 552px;
    grid-template-columns: repeat(6,72px);
  }
}

@media (min-width: 1024px) {
  .hero__lower .apps {
    max-width: 768px;
    grid-template-columns: repeat(6,90px);
  }

  .hero__lower .apps__txt {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.22;
  }
}

/* about */
.about {
  position: relative;
  z-index: 1;
}

.about::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #F3ECD6;
  z-index: -2;
}

.about .about__inner {
  position: relative;
  width: 100%;
  max-width: 1128px;
  padding: 0 24px;
  margin-inline: auto;
  z-index: 1;
}

.about .about__ttl {
  text-align: center;
}

.about__ttl span {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  color: #F63828;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.16;
}

.about__ttl span::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: -.5em;
  width: 2px;
  height: 25px;
  background-color: #F63828;
  transform: rotate(328deg);
}

.about__ttl span::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: -.5em;
  width: 2px;
  height: 25px;
  background-color: #F63828;
  transform: rotate(28deg);
}

.about .scene {
  margin-top: 6.13vw;
}

.scene .scene__ttl {
  color: #843A2A;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.77;
}

.scene .scene__item + .scene__item {
  /* margin-top: 35px; */
  margin-top: 9.33vw;
}

.scene .scene__img {
  /* margin: 22px 0 13px; */
  margin: 5.87vw 0 3.47vw;
  padding: 0 24px;
}

.scene .scene__txt {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.022em;
  line-height: 1.44;
}

.scene .scene__caption {
  /* margin-top: 16px; */
  margin-top: 4.27vw;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}

.scene .scene-event .scene__caption,
.scene .scene-event .scene__txt {
  color: #F63828;
}

.scene .scene-mobileorder .scene__caption,
.scene .scene-mobileorder .scene__txt {
  color: #00AAD7;
}

@media (max-width: 743px) {
  .about__bg {
    position: relative;
    padding: 21.33vw 0 16vw;
    aspect-ratio: 375 / 1213;
  }

  .about__bg::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/bg_wave.svg) no-repeat 0 0 / cover;
    z-index: -1;
  }
}

@media (min-width: 744px) {
  .about {
    margin-inline: auto;
    padding: 8.3vw 0 8.3vw;
  }

  .about__bg {
    position: relative;
    aspect-ratio: auto;
    background-color: #fbf8f0;
  }

  .about__bg::before,
  .about__bg::after {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 1200 / 100;
    position: absolute;
    left: 0;
  }

  .about__bg::before {
    top: -8.2vw;
    background: url(../img/bg_wave_t_pc.png) no-repeat center top / cover;
  }

  .about__bg::after {
    bottom: -8.2vw;
    background: url(../img/bg_wave_b_pc.png) no-repeat center bottom / cover;
  }

  .about .about__inner {
    padding: 0 40px;
  }

  .about__ttl span {
    padding-bottom: 0;
  }

  .about__ttl span::before {
    left: -.7em;
    width: 3px;
    height: 36px;
  }

  .about__ttl span::after {
    right: -.7em;
    width: 3px;
    height: 36px;
  }

  .about .scene {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    gap: 0 125px;
    justify-content: center
  }

  .scene .scene__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
  }

  .scene .scene__ttl {
    line-height: 1.2;
  }

  .scene .scene__item + .scene__item {
    margin-top: 0;
  }

  .scene .scene__img {
    max-width: 400px;
    padding: 0;
  }

  .scene .scene__txt {
    letter-spacing: 0;
    line-height: 1.58;
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  .about {
    padding: 52px 0 68px;
    aspect-ratio: auto;
  }

  .about .about__inner {
    max-width: 704px;
    padding: 0 20px;
  }

  .about__ttl span {
    font-size: 30px;
  }

  .about .scene {
    display: grid;
    grid-template-columns: repeat(2,auto);
    gap: 0 22px;
    justify-content: space-between;
    margin-top: 25px;
  }

  .scene .scene__ttl {
    font-size: 20px;
  }

  .scene .scene__img {
    max-width: 300px;
    margin: 20px auto 10px;
  }

  .scene .scene__txt {
    font-size: 20px;
  }

  .scene .scene__caption {
    margin-top: 8px;
  }
}

@media (min-width: 1024px) {
  .about__ttl span {
    font-size: 40px;
  }

  .about .scene {
    margin-top: 38px;
  }

  .scene .scene__ttl {
    font-size: 25px;
  }

  .scene .scene__img {
    max-width: 400px;
    margin: 40px auto 22px;
  }

  .scene .scene__txt {
    font-size: 24px;
  }

  .scene .scene__caption {
    margin-top: 23px;
    font-size: 14px;
  }
}

@media (min-width: 1400px) {
  .about {
    align-content: center;
  }
}

/* .appfunction */
.appfunction {
  padding-top: 18px;
}

.appfunction__items + .appfunction__items {
  margin-top: 30px;
}

.appfunction__ttl {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.appfunction__ttl img {
  display: block;
  width: 48px;
  margin: 0 auto 9px;
}

.appfunction__sttl {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.appfunction__img {
  margin: 20px auto 24px;
}

.appfunction__caption {
  margin-top: 10px;
  font-size: 12px;
}

@media (max-width: 743px) {
  .appfunction__items.appfunction__items--2clm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .appfunction__item--mobile-order .appfunction__img {
    width: 50%;
  }
}

@media (min-width: 744px) {
  .appfunction {
    padding-top: 64px;
  }

  .appfunction__body {
    margin-top: 60px;
  }

  .appfunction__items + .appfunction__items {
    margin-top: 65px;
  }

  .appfunction__ttl {
    font-size: 32px;
    line-height: 56px;
  }

  .appfunction__ttl img {
    display: inline-block;
    width: 56px;
    margin-right: 15px;
    margin-bottom: 0;
  }

  .appfunction__ttl span {
    font-size: 24px;
  }

  .appfunction__sttl {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .appfunction__img {
    max-width: 190px;
    margin: 15px auto 40px;
  }

  .appfunction__txt {
    font-size: 18px;
    line-height: 1.88;
    letter-spacing: 0.022em;
  }

  .appfunction__caption {
    margin-top: 10px;
    font-size: 12px;
  }

  .appfunction__items.appfunction__items--2clm {
    display: flex;
    justify-content: center;
    gap: 0 184px;
  }

  .appfunction__item {
    flex: 0 0 340px;
  }

  .appfunction__item--event {
    flex: 0 0 368px;
  }

  .appfunction__item--event .appfunction__detail {
    padding-left: 28px;
  }

  .appfunction__item--crowdedness .appfunction__ttl {
    text-align: left;
    padding-left: 27px;
  }

  .appfunction__item--mobile-order .appfunction__img {
    width: 190px;
    margin: 0;
  }

  .appfunction__item--mobile-order .appfunction__flex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
  }

  .appfunction__item--mobile-order .appfunction__detail {
    flex: 0 0 340px;
    margin-left: 64px;
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  .appfunction {
    padding-top: 32px;
  }

  .appfunction__body {
    margin-top: 48px;
  }

  .appfunction__items + .appfunction__items {
    margin-top: 56px;
  }

  .appfunction__ttl {
    font-size: 24px;
    line-height: 48px;
  }

  .appfunction__ttl img {
    width: 48px;
  }

  .appfunction__sttl {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .appfunction__img {
    max-width: 160px;
    margin: 21px auto 17px;
  }

  .appfunction__txt {
    font-size: 16px;
    line-height: 1.5;
  }

  .appfunction__caption {
    margin-top: 16px;
    font-size: 12px;
  }

  .appfunction__items.appfunction__items--2clm {
    display: flex;
    justify-content: center;
    gap: 0 64px;
  }

  .appfunction__item {
    flex: 0 0 288px;
  }

  .appfunction__item--event {
    flex: 0 0 288px;
  }

  .appfunction__item--event .appfunction__detail {
    padding-left: 28px;
  }

  .appfunction__item--crowdedness .appfunction__ttl {
    text-align: left;
    padding-left: 0;
  }

  .appfunction__item--crowdedness .appfunction__ttl img {
    margin-right: 46px;
  }

  .appfunction__item--mobile-order .appfunction__img {
    width: 170px;
  }

  .appfunction__item--mobile-order .appfunction__flex {
    margin-top: 22px;
  }

  .appfunction__item--mobile-order .appfunction__detail {
    flex: 0 0 288px;
    margin-left: 53px;
  }

  .appfunction__item--stamp1 .appfunction__img,
  .appfunction__item--stamp2 .appfunction__img {
    width: 152px;
  }
}

/* memberrank */
.memberrank-wrap {
  margin-top: 65px;
}

.memberrank__information {
  margin-top: 32px;
}

.memberrank__information .information {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 16px;
}

.information__ttl {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.information__contents {
  margin-top: 38px;
}

.step .step__img {
  position: relative;
  width: 180px;
  padding-top: 28px;
  margin-inline: auto;
  transform: translateX(-24px);
}

.step .step__img .step__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
}

.step .step__img .step__icon {
  width: 128px;
  margin-left: 52px;
}

.step .step__ttl {
  margin: 16px 0;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
}

.step .step__txt {
  font-size: 16px;
  line-height: 1.5;
}

.step__caption {
  font-size: 12px;
  margin-top: 8px;
}

.step__item:not(:last-child) {
  position: relative;
  padding-bottom: 52px;
  margin-bottom: 8px;
}

.step__item:not(:last-child)::after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 32px;
  height: 24px;
  background: #f63828;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

@media (min-width: 744px) {
  .memberrank-wrap {
    margin-top: 73px;
  }

  .memberrank__information .information {
    padding: 48px 92px;
    border-radius: 24px;
  }

  .information .information__contents {
    margin-top: 40px;
  }

  .information .information__ttl {
    font-size: 28px;
  }

  .step {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 75px;
    justify-content: center;
  }

  .step .step__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0
  }

  .step .step__img {
    width: 200px;
    padding-top: 105px;
    transform: none;
  }

  .step .step__img .step__num {
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
  }

  .step .step__img .step__icon {
    width: 100%;
    margin-left: 0;
  }

  .step .step__ttl {
    margin: 24px 0 20px;
    font-size: 24px;
  }

  .step .step__txt {
    font-size: 18px;
    letter-spacing: 0.022em;
  }

  .step__caption {
    margin-top: 24px;
    font-size: 14px;
    text-align: center;
  }

  .step__item:not(:last-child) {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .step__item:not(:last-child)::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: auto;
    bottom: auto;
    top: 190px;
    right: -52px;
    transform: none;
    width: 24px;
    height: 27px;
    background: #f63828;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  .memberrank {
    margin-top: 40px;
  }

  .memberrank__information .information {
    padding: 40px 32px;
  }

  .information .information__ttl {
    font-size: 22px;
  }

  .information .information__contents {
    margin-top: 32px;
  }

  .step {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 80px;
    justify-content: center;
  }

  .step .step__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0
  }

  .step .step__img {
    position: relative;
    width: 136px;
    padding-top: 58px;
    margin-inline: auto;
    transform: none;
  }

  .step .step__img .step__num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
  }

  .step .step__img .step__icon {
    width: 100%;
    margin-left: 0;
  }

  .step .step__ttl {
    margin: 16px 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.45;
  }

  .step .step__txt {
    font-size: 14px;
    line-height: 1.57;
  }

  .step__caption {
    font-size: 12px;
    margin-top: 24px;
  }

  .step__item:not(:last-child) {
    position: relative;
    padding-bottom: 52px;
    margin-bottom: 8px;
  }

  .step__item:not(:last-child)::after {
    top: 117px;
    right: -50px;
    width: 16px;
    height: 19px;
  }
}

/* appfunction__benefit */
.appfunction__benefit {
  margin-top: 40px;
  padding-bottom: 56px;
}

.benefit .benefit__ttl {
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.benefit .benefit__ttl img {
  display: inline-block;
  width: 34px;
  vertical-align: top;
}

.benefit__upper .benefit__lead {
  margin-bottom: 32px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.benefit__upper .benefit__item {
  padding: 28px 24px;
  background-color: #fff;
  border-radius: 16px;
}

.benefit__item + .benefit__item {
  margin-top: 24px;
}

.benefit__upper .benefit__fukidashi {
  text-align: center;
}

.benefit__upper .benefit__catch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.benefit__catch .benefit__catch-txt {
  margin-left: 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.benefit .benefit__more {
  margin: 24px 0;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.benefit .benefit__caption {
  margin-top: 16px;
  text-align: center;
}

.benefit__item--benefit1 .benefit__catch-img {
  width: min(17.6vw, 112px);
}

.benefit__item--benefit2 .benefit__catch-img {
  width: min(16.27vw, 105px);
}

.benefit__item--benefit3 .benefit__catch {
  flex-direction: column;
  margin-top: 0;
}

.benefit__item--benefit3 .benefit__catch-img {
  width: min(28.8vw, 173px);
}

.benefit__item--benefit3 .benefit__catch-txt {
  margin-top: 16px;
}

.benefit .benefit__lower {
  margin-top: 25px;
}

.benefit .benefit__lower-catch {
  text-align: center;
}

.benefit__lower-catch strong {
  position: relative;
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.54;
}

.benefit__lower-catch strong::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: -.5em;
  width: 2px;
  height: 48px;
  background-color: var(--text-color);
  transform: rotate(328deg);
}

.benefit__lower-catch strong::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: -.5em;
  width: 2px;
  height: 48px;
  background-color: var(--text-color);
  transform: rotate(28deg);
}

.benefit .benefit__lower-txt {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.33;
  text-align: center;
}

@media (min-width: 744px) {
  .appfunction__benefit {
    margin-top: 50px;
    padding-bottom: 90px;
  }

  .appfunction__benefit .benefit {
    max-width: 864px;
    margin-inline: auto;
  }

  .benefit .benefit__ttl {
    margin-bottom: 35px;
    font-size: 32px;
  }

  .benefit .benefit__ttl img {
    width: 45px;
    position: relative;
    transform: translateY(-4px);
  }

  .benefit__upper .benefit__lead {
    margin-bottom: 56px;
    font-size: 28px;
  }

  .benefit .benefit__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 48px;
  }

  .benefit__items .benefit__item {
    padding: 32px 0;
    border-radius: 24px;
  }

  .benefit__item + .benefit__item {
    margin-top: 0;
  }

  .benefit__catch .benefit__catch-txt {
    margin-left: 7px;
    font-size: 24px;
  }

  .benefit .benefit__more {
    margin: 34px 0 74px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
  }

  .benefit .benefit__caption {
    margin-top: 12px;
    font-size: 14px;
  }

  .benefit__item--benefit1 .benefit__catch-img {
    width: min(56px, 65px);
    margin-right: 17px;
  }

  .benefit__item--benefit1 .benefit__fukidashi {
      width: 308px;
      margin: 0 auto;
  }

  .benefit__item--benefit2 .benefit__catch-img {
    width: min(52px, 61px);
    margin-right: 30px;
  }

  .benefit__item--benefit2 .benefit__fukidashi {
      width: 303px;
      margin: 0 auto;
  }

  .benefit__item--benefit3 .benefit__catch {
    flex-direction: row;
    margin-top: 0;
  }

  .benefit__item--benefit3 .benefit__catch-img {
    width: min(86px, 106px);
    margin-right: 7px;
  }

  .benefit__item--benefit3 .benefit__catch-txt {
    margin-top: 0;
  }

  .benefit__item--benefit3 {
    position: relative;
    padding-top: 31px;
    padding-bottom: 31px;
  }

  .benefit__item--benefit3 .benefit__fukidashi {
    position: absolute;
    top: -67px;
    right: 76px;
    width: 305px;
  }

  .benefit .benefit__lower {
    margin-top: 60px;
  }

  .benefit__lower-catch strong {
    font-size: 28px;
  }

  .benefit__lower-catch strong::before {
    bottom: 3px;
    left: -.8em;
    height: 29px;
  }

  .benefit__lower-catch strong::after {
    bottom: 3px;
    right: -.8em;
    height: 29px;
  }

  .benefit .benefit__lower-txt {
    font-size: 24px;
  }

  .benefit .benefit__lower-txt mark {
    font-weight: 500;
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  .appfunction__benefit {
    padding-bottom: 47px;
  }

  .appfunction__benefit .benefit {
    max-width: 642px;
  }

  .benefit .benefit__ttl {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .benefit .benefit__ttl img {
    width: 33px;
  }

  .benefit__upper .benefit__lead {
    margin-bottom: 32px;
    font-size: 20px;
  }

  .benefit .benefit__items {
    gap: 0 32px;
  }

  .benefit__items .benefit__item {
    padding: 25px 0 21px;
    border-radius: 16px;
  }

  .benefit__catch .benefit__catch-txt {
    margin-left: 0;
    font-size: 18px;
  }

  .benefit .benefit__more {
    margin: 30px 0 34px;
    font-size: 18px;
  }

  .benefit .benefit__caption {
    margin-top: 15px;
    font-size: 12px;
  }

  .benefit__item--benefit1 .benefit__catch-img {
    margin-right: 14px;
  }

  .benefit__item--benefit1 .benefit__fukidashi {
      width: 252px;
      margin: 0 auto;
  }

  .benefit__item--benefit2 .benefit__catch-img {
    margin-right: 15px;
  }

  .benefit__item--benefit2 .benefit__fukidashi {
      width: 250px;
      margin: 0 auto;
  }
  .benefit__item--benefit3 .benefit__catch-img {
    margin-right: 7px;
  }

  .benefit__item--benefit3 .benefit__catch-txt {
    margin-top: 0;
  }

  .benefit__item--benefit3 {
    position: relative;
    padding-top: 31px;
    padding-bottom: 31px;
  }

  .benefit__item--benefit3 .benefit__fukidashi {
    position: absolute;
    top: -60px;
    right: 20px;
    width: 243px;
  }

  .benefit .benefit__lower {
    margin-top: 25px;
  }

  .benefit__lower-catch strong {
    font-size: 20px;
  }

  .benefit__lower-catch strong::before {
    bottom: 3px;
    left: -.3em;
    height: 21px;
  }

  .benefit__lower-catch strong::after {
    bottom: 3px;
    right: -.3em;
    height: 21px;
  }

  .benefit .benefit__lower-txt {
    font-size: 16px;
  }
}

/* appfunction__memberrank */
.appfunction__memberrank {
  padding: 40px 0;
  background-color: #FBF8F0;
}

.memberrank .memberrank__ttl {
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.23;
  text-align: center;
}

.memberrank .memberrank__ttl img {
  width: 42px;
  margin-right: 16px;
}

.memberrank .memberrank__lead {
  padding: 0 24px;
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.77;
  letter-spacing: -0.04em;
}

.memberrank__upper {
  padding: 0 24px;
}

.memberrank__upper .memberrank__item {
  text-align: center;
}

.memberrank__item .memberrank__img {
  margin: 0 auto;
  width: min(48.53vw, 300px);
}

.memberrank__upper .memberrank__item--second .memberrank__img {
  transform: translateX(10px);
}

.memberrank__item .memberrank__ttl {
  margin: 20px 0 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.memberrank__or {
  margin: 24px 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.memberrank__caption {
  margin-top: 24px;
}

.memberrank__lower {
  margin-top: 54px;
}

.memberrank__lower .memberrank__lower-catch {
  margin-bottom: 8px;
  text-align: center;
}

.memberrank__lower-catch strong {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.54;
}

.memberrank__lower-catch strong::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 5px;
  left: -.7em;
  width: 2px;
  height: 18px;
  background-color: var(--text-color);
  transform: rotate(328deg);
}

.memberrank__lower-catch strong::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 5px;
  right: -.7em;
  width: 2px;
  height: 18px;
  background-color: var(--text-color);
  transform: rotate(28deg);
}

.memberrank__lower-tableimg figcaption {
  margin-top: 24px;
}

.memberrank__lower-tableimg .figcaption__list li {
  margin-top: 8px;
  font-size: 16px;
}

@media (min-width: 744px) {
  .appfunction__memberrank {
    padding: 50px 0;
  }

  .memberrank .memberrank__ttl {
    margin-bottom: 33px;
    font-size: 32px;
  }

  .memberrank .memberrank__ttl img {
    width: 58px;
    transform: translateY(-3px);
  }

  .memberrank .memberrank__lead {
    margin-bottom: 35px;
    font-size: 24px;
    text-align: center;
    line-height: 1.66;
    letter-spacing: 0;
  }

  .memberrank__upper .memberrank__items {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 340px);
    justify-content: center;
    gap: 0 124px;
  }

  .memberrank__item .memberrank__img {
    width: 180px;
  }

  .memberrank__upper .memberrank__item--second .memberrank__img {
    width: 196px;
  }

  .memberrank__item .memberrank__ttl {
    margin: 27px 0 20px;
    font-size: 24px;
  }

  .memberrank__txt {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.022em;
  }

  .memberrank__or {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 22px;
    font-weight: 500;
  }

  .memberrank__caption {
    text-align: center;
    margin-top: 40px;
  }

  .memberrank__lower {
    margin-top: 72px;
  }

  .memberrank__lower-tableimg {
    width: 767px;
    margin: 0 auto;
  }

  .memberrank__lower-tableimg figcaption {
    margin-top: 56px;
    text-align: center;
  }

  .memberrank__lower-tableimg .figcaption__list li {
    margin-top: 0;
    font-size: 18px;
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  .appfunction__memberrank {
    padding: 45px 0 40px;
  }

  .memberrank {
    margin-top: 0;
  }

  .memberrank .memberrank__ttl {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .memberrank .memberrank__ttl img {
    width: 40px;
    transform: translateY(-3px);
  }

  .memberrank .memberrank__lead {
    margin-bottom: 25px;
    font-size: 18px;
  }

  .memberrank__upper .memberrank__items {
    grid-template-columns: repeat(2, 288px);
    gap: 0 64px;
  }

  .memberrank__item .memberrank__img {
    width: 150px;
  }

  .memberrank__upper .memberrank__item--second .memberrank__img {
    width: 170px;
  }

  .memberrank__item .memberrank__ttl {
    margin: 16px 0;
    font-size: 20px;
  }

  .memberrank__txt {
    font-size: 16px;
    font-weight: 400;
  }

  .memberrank__or {
    top: 80px;
    font-size: 18px;
    font-weight: 700;
  }

  .memberrank__caption {
    text-align: center;
    margin-top: 24px;
  }

  .memberrank__lower {
    margin-top: 33px;
  }

  .memberrank__lower-tableimg {
    width: 592px;
  }

  .memberrank__lower-tableimg figcaption {
    margin-top: 24px;
  }

  .memberrank__lower-tableimg .figcaption__list li {
    font-size: 16px;
  }
}

/* memberrank__rule */
.memberrank__rule {
  padding: 40px 0 48px;
}

.memberrank__rule .rule {
  padding: 25px 24px 32px;
  background-color: #fff;
  border-radius: 16px;
}

.rule .rule__title {
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  line-height: 1.53;
}

.rule .rule__title img {
  display: block;
  width: 88px;
  margin: 0 auto 24px;
}

.rule .rule__stxt,
.rule .rule__txt {
  font-size: 16px;
  line-height: 1.5;
}

.rule .rule__img {
  margin: 24px 0;
  text-align: center;
}

.rule .rule__catch {
  margin: 24px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

@media (min-width: 744px) {
  .memberrank__rule {
    padding: 72px 0 85px;
  }

  .memberrank__rule .rule {
    padding: 32px 24px 40px;
    border-radius: 24px;
    text-align: center;
  }

  .rule .rule__title {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 1.42;
  }

  .rule .rule__title img {
    width: 88px;
    margin-bottom: 28px;
  }

  .rule .rule__stxt,
  .rule .rule__txt {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.022em;
    line-height: 1.55;
  }

  .rule .rule__img {
    width: 767px;
    margin: 32px auto 56px;
  }

  .rule .rule__catch {
    margin: 27px 0 32px;
    font-size: 24px;
    letter-spacing: 0.022em;
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  .memberrank__rule {
    padding: 48px 0 56px;
  }

  .memberrank__rule .rule {
    padding: 40px 32px 40px;
    border-radius: 32px;
  }

  .rule .rule__title {
    font-size: 26px;
  }

  .rule .rule__title img {
    width: 88px;
    margin-bottom: 32px;
  }

  .rule .rule__txt {
    font-size: 16px;
    font-weight: 400;
  }

  .rule .rule__stxt {
    font-size: 12px;
  }

  .rule .rule__img {
    width: min(100%,640px);
    margin: 24px auto 32px;
  }

  .rule .rule__catch {
    margin: 32px 0 22px;
    font-size: 17px;
  }
}

/* note */
.note {
  padding: 16px 0 48px;
}

.note .note__contents {
  padding: 32px 24px;
  background-color: #fff;
  border-radius: 16px;
}

.note .note__ttl {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.note__list li {
  position: relative;
  padding-left: 1em;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.note__list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--text-color);
  border-radius: 8px;
}

.note__list li:not(:last-child) {
  margin-bottom: 16px;
}

@media (min-width: 744px) {
  .note {
    padding: 60px 32px 40px;
  }

  .note .note__contents {
    display: grid;
    justify-content: center;
    padding: 32px 24px 57px;
    border-radius: 24px;
  }

  .note .note__ttl {
    margin-bottom: 32px;
    font-size: 32px;
  }

  .note__list li {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.022em;
  }

  .note__list li:not(:last-child) {
    margin-bottom: 19px;
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  .note .note__contents {
    padding: 40px 24px 57px;
    border-radius: 24px;
  }

  .note .note__ttl {
    margin-bottom: 40px;
    font-size: 26px;
  }

  .note__list li {
    font-size: 14px;
    line-height: 2;
  }

  .note__list li:not(:last-child) {
    margin-bottom: 24px;
  }
}

/* target-event */
.target-event__header {
  margin-bottom: 60px;
}

/* slide  */
.target-event .swiper {
  padding: 0 48px;
}

.target-event .swiper-slide img {
  width: 100%;
  max-width: auto;
}

.target-event .swiper-prev,
.target-event .swiper-next {
  display: grid;
  place-content: center;
  position: absolute;
  top: 23.17%;
  width: min(8.53vw, 64px);
  aspect-ratio: 1/1;
  z-index: 1;
}

.target-event .swiper-prev {
  left: 24px;
  background: url(../img/arrow_prev.svg) no-repeat 0 0 / cover;
}

.target-event .swiper-next {
  right: 24px;
  background: url(../img/arrow_next.svg) no-repeat 0 0 / cover;
}

@media (min-width: 744px) {
  .target-event__header {
    margin-bottom: 64px;
  }

  .target-event .swiper-slide {
    width: 340px !important;
  }

  .target-event .swiper-prev,
  .target-event .swiper-next {
    width: 40px;
    z-index: 1;
    cursor: pointer;
    transition: opacity .2s;
  }

  .target-event .swiper-prev:hover,
  .target-event .swiper-next:hover {
    opacity: .8;
  }

  .target-event .swiper-prev {
    left: 24px;
    background: url(../img/arrow_prev_pc.svg) no-repeat 0 0 / cover;
  }

  .target-event .swiper-next {
    right: 24px;
    background: url(../img/arrow_next_pc.svg) no-repeat 0 0 / cover;
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  .target-event__header {
    margin-bottom: 48px;
  }
}