.point-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.point-head__title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.4;
  color: #D3A65E;
  letter-spacing: 0.05em;
  margin: 0;
}

.point-head__title span {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  letter-spacing: 0.05em;
}

.point-head__title-ja {
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #62422F;
  letter-spacing: 0.04em;
  margin: 0;
}

.point-page .header {
  position: fixed;
}

.point-main {
  width: 100%;
}

.point-fv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: #fffdf9;
}

.point-fv__bg {
  position: absolute;
  inset: 0;
  background: url(img/point-fv.png) center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
  animation: pointFvBgIn 1.8s ease-out forwards;
}

@keyframes pointFvBgIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.point-fv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 80px 0 40px;
  padding-top: 8vh;
}

.point-fv__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: pointFvContentIn 1.1s ease 0.35s both;
}

.point-fv__title {
  margin: 0;
  font-family: "Marcellus", serif;
  font-size: clamp(38px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0.29em;
  line-height: 1.6;
  color: #D1A054;
}

.point-fv__title-ja {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #62422F;
}

.point-fv__copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 450px;
  animation: pointFvContentIn 1.1s ease 0.55s both;
}

@keyframes pointFvContentIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.point-fv__lead {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #62422F;
}

.point-fv__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 2;
  color: #62422F;
}

.point-fv__cta {
  display: flex;
  margin-top: 16px;
}

.point-fv__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90%;
  padding: 15px 40px;
  border: 2px solid #D3A65E;
  border-radius: 999px;
  background: #D3A65E;
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  text-decoration: none;
  box-shadow: 2px 2px 2px 0px #00000014;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.point-fv__button:hover {
  background: #fff;
  color: #D3A65E;
  transform: translateY(-1px);
}

@media only screen and (max-width: 768px) {
  .point-head__title {
    font-size: 40px;
  }

  .point-fv {
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 206px 0 100px;
  }

  .point-fv__bg {
    background-image: url(img/point-fv-sp.png);
    background-position: center top;
  }

  .point-fv__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    padding: 0 22px;
    text-align: center;
  }

  .point-fv__brand {
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .point-fv__title {
    font-size: 38px;
    letter-spacing: 0.3em;
    line-height: 1.6;
    text-align: center;
  }

  .point-fv__title-ja {
    margin: 0;
    font-size: 17px;
    letter-spacing: 0.03em;
    line-height: 1.6;
    text-align: center;
  }

  .point-fv__brand::after {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    margin: 22px auto 0;
    background-color: #000;
  }

  .point-fv__copy {
    align-items: center;
    gap: 22px;
    max-width: 100%;
    width: 100%;
    margin-top: 32px;
    text-align: center;
  }

  .point-fv__lead {
    font-size: 17.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.9;
    text-align: center;
  }

  .point-fv__text {
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 2.1;
    text-align: center;
  }

  .point-fv__cta {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
  }

  .point-fv__button {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding: 14px 28px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .point-head__title {
    font-size: 37px;
  }

  .point-head__title-ja {
    font-size: 15px;
  }

  .point-fv__button {
    max-width: none;
    width: 100%;
  }
}

@media only screen and (max-width: 450px) {
  .point-fv__inner {
    padding: 0 20px;
  }

  .point-fv__text {
    font-size: 14px;
  }
}




/* Point intro + jump nav */

.point-intro {
  background: #fff;
}

.point-intro__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 100px 40px 110px;
}

.point-intro__text {
  margin: 0;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.4;
  text-align: center;
  color: #62422F;
}

.point-nav {
  position: relative;
  width: 100%;
  z-index: 2;
  background: #D3A65E;
}

.point-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  margin: 0;
  padding: 23px 0;
  list-style: none;
}

.point-nav__list a {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  text-decoration: none;
  transition: letter-spacing 0.35s ease, gap 0.35s ease;
}

.point-nav__list a::after {
  background: #fff;
  bottom: -4px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.point-nav__icon {
  display: flex;
  width: 12px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.point-nav__icon svg {
  width: 100%;
}

#members-rank,
#points,
#faq {
  scroll-margin-top: 90px;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (min-width: 769px) {
  .point-nav__list a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  .point-nav__list a:hover .point-nav__icon {
    transform: translateY(3px);
  }
}

@media only screen and (max-width: 768px) {
  .point-intro__inner {
    padding: 80px 45px 100px;
  }

  .point-nav__list {
    gap: 0;
    justify-content: space-between;
    padding: 20px 40px;
  }

  .point-nav__list a {
    gap: 10px;
  }
}

@media only screen and (max-width: 576px) {
  .point-intro__inner {
    padding: 60px 45px 55px;
  }

  .point-intro__text {
    text-align: left;
  }
  
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .point-nav {
    background-color: transparent;
    padding: 0;
    padding-bottom: 50px;
  }

  .point-nav__list {
    flex-direction: column;
    background-color: transparent;
    padding: 0 22px;
    gap: 7px;
  }

  .point-nav__list li {
    width: 100%;
  }

  .point-nav__list a {
    display: flex;
    justify-content: center;
    padding: 12px 10px;
    gap: 9px;
    background-color: #D3A65E;
    box-shadow: 2px 2px 2px 0px #00000014;
    border-radius: 999px;
    border: 2px solid #D3A65E;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  }

  .point-nav__list a::after {
    display: none;
  }

  .point-nav__list a:hover {
    background-color: #fff;
    box-shadow: 2px 4px 8px 0px #0000001a;
    color: #D3A65E;
    transform: translateY(-1px);
  }

  .point-nav__list a:hover .point-nav__icon {
    transform: none;
  }

  .point-nav__list a:hover .point-nav__icon path {
    fill: #D3A65E;
  }
}

@media only screen and (max-width: 450px) {
  .point-intro__inner {
    padding-inline: 30px;
  }
}



/* Point Members Rank */

.point-rank {
  background: #F9F5F2;
  scroll-margin-top: 90px;
}

.point-rank__inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 120px 40px 188px;
}

.point-rank__lead {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  color: #62422F;
  margin-top: 55px;
}

.point-rank__cta {
  display: flex;
  justify-content: center;
  margin: 44px auto 100px;
}

.point-rank__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 386px;
  padding: 15px 40px;
  border: 2px solid #D3A65E;
  border-radius: 999px;
  background-color: #D3A65E;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  text-decoration: none;
  box-shadow: 2px 2px 2px 0px #00000014;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.point-rank__button:hover {
  background-color: #fff;
  color: #D3A65E;
  transform: translateY(-1px);
}

.point-rank__table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 2px 2px 2px 0px #00000014;
}

.point-rank__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #FFFFFF;
}

.point-rank__table,
.point-rank__table tr,
.point-rank__table th,
.point-rank__table td {
  border: 1px solid #E5E5E5;
}

.point-rank__table th,
.point-rank__table td { 
  vertical-align: middle;
}

.point-rank__table th:first-child,
.point-rank__table td:first-child {
  width: 13.6%;
}

.point-rank__tier {
  width: 19.5%;
  padding: 27px 12px 21px;
  text-align: center;
  font-weight: 400;
}

.point-rank__tier-en {
  display: block;
  font-family: "zen old mincho", serif;
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #EF8F59;
}

.point-rank__tier-ja {
  display: block;
  margin-top: 5px;
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #62422F;
}

.point-rank__tier.--bronze {
  background: linear-gradient(180deg, #FFF7F2 0%, #F8E6DD 100%);
}

.point-rank__tier.--silver {
  background: linear-gradient(180deg, #F6F6F6 0%, #DFDFDF 100%);
}

.point-rank__tier.--silver .point-rank__tier-en {
  font-size: 26px;
  color: #9E9E9E;
}

.point-rank__tier.--gold {
  background: linear-gradient(180deg, #FFF8EC 0%, #D3A65E 99.99%);
}

.point-rank__tier.--gold .point-rank__tier-en {
  font-size: 27px;
  color: #D1A054;
}

.point-rank__tier.--diamond {
  background: linear-gradient(0deg, #FFB399 0%, #FFEEE8 100%);
}

.point-rank__tier.--diamond .point-rank__tier-en {
  font-size: 27px;
  color: #E97349;
}

.point-rank__table tbody th {
  padding: 16px 12px;
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
  color: #62422F;
}

.point-rank__table tbody td {
  padding: 18px 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: center;
  color: #000;
  height: 94px;
}

.point-rank__table tbody td.--bronze {
  background: #FFF7F2;
}

.point-rank__table tbody td.--silver {
  background: #F6F6F6;
}

.point-rank__table tbody td.--gold {
  background: #FFF8EC;
}

.point-rank__table tbody td.--diamond {
  background: #FFEEE8;
}

.point-rank__row--rate td {
  padding-top: 22px;
  padding-bottom: 22px;
}

.point-rank__table-text-wrap {
  font-size: 18px;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
  font-weight: 600;
  color: #62422F;
  line-height: 1.4;
}

.point-rank__table-text.--small {
  font-size: 12px;
  font-weight: 600;
}

.point-rank__rate {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #62422F;
  white-space: nowrap;
}

.point-rank__rate-num {
  font-family: "Marcellus", serif;
  font-size: 42px;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 1.4;
  color: #D3A65E;
}

.point-rank__rate-unit {
  font-family: "zen old mincho", serif;
  font-size: 21px;
  letter-spacing: 0.02em;
  font-weight: bold;
  line-height: 1.5;
  color: #D3A65E;
  margin-right: -1em;
}

.point-rank__mark {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #62422F;
}

.point-rank__mark.--none {
  color: #999;
}

@media only screen and (max-width: 768px) {
  .point-rank__inner {
    padding: 90px 24px 120px;
  }

  .point-rank .point-head__title {
    font-size: 36px;
  }

  .point-rank .point-head__title-ja {
    font-size: 15px;
  }

  .point-rank__lead {
    margin-top: 36px;
    font-size: 15px;
    line-height: 1.9;
  }

  .point-rank__cta {
    margin: 32px auto 56px;
    width: 100%;
  }

  .point-rank__button {
    min-width: 0;
    width: 100%;
    max-width: 386px;
    padding: 14px 24px;
    font-size: 15px;
  }

  .point-rank__table {
    min-width: 0;
    width: 100%;
  }

  .point-rank__table th:first-child,
  .point-rank__table td:first-child {
    width: 18%;
  }

  .point-rank__tier {
    padding: 16px 4px 14px;
  }

  .point-rank__tier-en {
    font-size: 16px;
  }

  .point-rank__tier.--silver .point-rank__tier-en,
  .point-rank__tier.--gold .point-rank__tier-en,
  .point-rank__tier.--diamond .point-rank__tier-en {
    font-size: 16px;
  }

  .point-rank__tier-ja {
    margin-top: 3px;
    font-size: 11px;
  }

  .point-rank__table tbody th {
    padding: 12px 4px;
    font-size: 11px;
    line-height: 1.35;
  }

  .point-rank__table tbody td {
    padding: 12px 2px;
    font-size: 11px;
    height: auto;
    min-height: 56px;
  }

  .point-rank__row--rate td {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .point-rank__table-text-wrap {
    font-size: 15px;
    line-height: 1.35;
  }

  .point-rank__table-text.--small {
    font-size: 10px;
  }

  .point-rank__rate {
    font-size: 11px;
  }

  .point-rank__rate-num {
    font-size: 26px;
    line-height: 1;
  }

  .point-rank__rate-unit {
    font-size: 13px;
    margin-right: 0;
  }

  .point-rank__mark {
    font-size: 14px;
  }
}

@media only screen and (max-width: 576px) {
  .point-rank__inner {
    padding: 80px 15px;
  }

  .point-rank__lead {
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 2;
    text-align: left;
    margin: 0 20px;
    margin-top: 51px;
    width: fit-content;
  }

  .point-rank__cta {
    margin: 32px auto 56px;
  }

  .point-rank__button {
    max-width: none;
    width: 100%;
  }

  .point-rank__table th:first-child,
  .point-rank__table td:first-child {
    width: 25%;
  }

  .point-rank__tier {
    padding: 12px 2px 10px;
  }

  .point-rank__tier-en {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .point-rank__tier.--silver .point-rank__tier-en,
  .point-rank__tier.--gold .point-rank__tier-en,
  .point-rank__tier.--diamond .point-rank__tier-en {
    font-size: 13px;
  }

  .point-rank__tier-ja {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 0;
  }

  .point-rank__table tbody th {
    padding: 10px 3px;
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.3;
  }

  .point-rank__table tbody td {
    padding: 10px 1px;
    font-size: 10px;
    min-height: 48px;
  }

  .point-rank__row--rate td {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .point-rank__table-text-wrap {
    font-size: 13px;
    line-height: 1.3;
  }

  .point-rank__table-text.--small:last-child {
    font-size: 9px;
    text-align: right;
    width: 100%;
    display: inline-block;
  }

  .point-rank__table tbody td {
    height: 47px;
  }

  .point-rank__rate-num {
    font-size: 30px;
  }

  .point-rank__rate-unit {
    font-size: 14px;
    margin-right: -1em;
  }

  .point-rank__rate-text {
    font-size: 11px;
  }

  .point-rank__mark {
    font-size: 13px;
  }
}

@media only screen and (max-width: 450px) {
  .point-rank__lead {
    font-size: 15px;
  }
}



/* Point Points section */

.point-points {
  position: relative;
  overflow: hidden;
  background: #FDF8F3;
  scroll-margin-top: 90px;
}

.point-points__bg {
  position: absolute;
  inset: 0;
  background: url(img/point-points-bg.png) center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.point-points__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 130px 50px 120px;
  text-align: center;
}

.point-points__lead {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.1;
  color: #62422F;
  margin-top: 42px;
}

.point-points__text {
  margin: 25px 0 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 2.1;
  color: #62422F;
}

.point-points__text span {
  font-size: .8em;
}

.point-points__cta {
  display: flex;
  justify-content: center;
  margin: 36px 0 80px;
}

.point-points__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 386px;
  padding: 14px 40px;
  border: 2px solid #D3A65E;
  border-radius: 999px;
  background: #D3A65E;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  text-decoration: none;
  box-shadow: 2px 2px 2px 0 #00000014;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.point-points__button:hover {
  background: #fff;
  color: #D3A65E;
  transform: translateY(-1px);
}

.point-points__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.point-points__step {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 2px 2px 0px #00000014;
}

.point-points__step-label {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 156px;
  background: #D3A65E;
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 16px;
  padding: 25px 38px;
  font-weight: 400;
  letter-spacing: .21em;
  line-height: 1.2;
}

.point-points__step-label span {
  font-size: 22px;
}

.point-points__step-text {
  display: flex;
  align-items: center;
  flex: 1;
  background: #fff;
  color: #62422F;
  font-family: "Zen Old Mincho", serif;
  font-size: 17px;
  font-weight: 400;
  padding: 25px 40px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .point-points {
    background-image: url(img/point-points-bg-sp.png);
  }

  .point-points__inner {
    padding: 90px 60px 80px;
  }

  .point-points__lead {
    margin-top: 36px;
    font-size: 18.5px;
    letter-spacing: 0.01em;
    line-height: 1.9;
  }

  .point-points__text {
    margin-top: 28px;
    font-size: 16px;
    line-height: 2;
  }

  .point-points__cta {
    margin: 26px 0 52px;
  }

  .point-points__button {
    min-width: 0;
    width: 100%;
    max-width: 386px;
    padding: 14px 24px;
    font-size: 15px;
  }

  .point-points__steps {
    gap: 12px;
  }

  .point-points__step {
    border-radius: 6px;
  }

  .point-points__step-label {
    width: 120px;
    gap: 8px;
    padding: 20px 18px;
    font-size: 14px;
    letter-spacing: 0.14em;
  }

  .point-points__step-label span {
    font-size: 18px;
  }

  .point-points__step-text {
    padding: 20px 28px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .point-points__bg {
    background-position: center bottom;
  }

  .point-points__inner {
    padding-inline: 22px;
  }

  .point-points__step-label {
    width: 90px;
  }

  .point-points__step-text {
    padding: 20px 23px;
  }
}

@media (max-width: 450px) {
  .point-points__inner {
    padding-inline: 15px;
  }

  .point-points__step-label {
    padding: 15px 18px;
  }

  .point-points__step-text {
    padding: 15px 20px;
  }
}



/* =======================================
 Point FAQ
======================================= */
.point-faq {
  background: #F9F5F2;
  padding: 120px 0 160px;
  scroll-margin-top: 90px;
}

.point-faq__head {
  gap: 30px;
}

.point-faq__inner {
  margin: 0 auto;
  max-width: 980px;
  padding: 0 40px;
  width: 100%;
}

.point-faq__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 95px;
}

.point-faq__item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 1px 1px 5px 1px #0000001F;
  overflow: hidden;
}

.point-faq__question {
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  font: inherit;
  list-style: none;
  padding: 30px 40px 25px;
  text-align: left;
  width: 100%;
}

.point-faq__mark {
  color: #D1A054;
  flex: 0 0 auto;
  font-family: "Marcellus", serif;
  font-size: 32px;
  line-height: 1;
  width: 1em;
  text-align: center;
}

.point-faq__q-text {
  color: #62422F;
  flex: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  padding-right: 12px;
  padding-left: 40px;
  padding-top: 5px;
}

.point-faq__toggle {
  flex: 0 0 auto;
  height: 22px;
  position: relative;
  width: 22px;
}

.point-faq__toggle::before,
.point-faq__toggle::after {
  background: #62422F;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.point-faq__toggle::before {
  height: 2px;
  width: 22px;
}

.point-faq__toggle::after {
  height: 22px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 2px;
}

.point-faq__item[open] .point-faq__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.point-faq__item:not([open]) .point-faq__question {
  padding-bottom: 30px;
}

.point-faq__item:not([open]) .point-faq__answer {
  display: none;
}

.point-faq__answer-body {
  display: flex;
  padding: 0 40px 30px;
}

.point-faq__a-text {
  color: #62422F;
  flex: 1 1 auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  min-width: 0;
  padding-right: 20px;
  padding-left: 40px;
  padding-top: 4px;
}

.point-faq__link {
  color: #2f6fed;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.point-faq__link:hover {
  color: #1d4fc7;
}

@media only screen and (max-width: 1024px) {
  .point-faq {
    padding: 90px 0 80px;
  }

  .point-faq__list {
    margin-top: 65px;
  }

  .point-faq__inner {
    padding: 0 80px;
  }

  .point-faq__question {
    padding: 26px 28px 22px;
  }

  .point-faq__mark {
    font-size: 28px;
  }

  .point-faq__item:not([open]) .point-faq__question {
    padding-bottom: 26px;
  }

  .point-faq__q-text {
    font-size: 17px;
    padding-left: 28px;
  }

  .point-faq__answer-body {
    padding: 0 28px 24px;
  }

  .point-faq__a-text {
    font-size: 15px;
    padding-left: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .point-faq {
    padding: 80px 0 100px;
  }

  .point-faq__head {
    gap: 16px;
    margin-bottom: 36px;
  }

  .point-faq__inner {
    padding: 0 40px;
  }

  .point-faq__list {
    gap: 10px;
  }

  .point-faq__item {
    border-radius: 6px;
  }

  .point-faq__question {
    align-items: flex-start;
    padding: 18px 16px 16px;
  }

  .point-faq__item:not([open]) .point-faq__question {
    padding-bottom: 18px;
  }

  .point-faq__mark {
    font-size: 26px;
    margin-top: 2px;
  }

  .point-faq__q-text {
    font-size: 16px;
    line-height: 1.6;
    padding-left: 20px;
    padding-right: 10px;
    padding-top: 2px;
  }

  .point-faq__toggle {
    height: 16px;
    margin-top: 4px;
    width: 16px;
  }

  .point-faq__toggle::before {
    width: 14px;
  }

  .point-faq__toggle::after {
    height: 14px;
  }

  .point-faq__answer-body {
    padding: 0 16px 18px;
  }

  .point-faq__a-text {
    font-size: 14px;
    line-height: 1.7;
    padding-left: 20px;
    padding-right: 26px;
    padding-top: 0;
    margin-top: 3px;
  }
}

@media only screen and (max-width: 576px) {
  .point-faq {
    padding: 60px 0 80px;
  }

  .point-faq__inner {
    padding: 0 20px;
  }

  .point-faq__question {
    padding: 25px 20px 16px;
  }

  .point-faq__item:not([open]) .point-faq__question {
    padding-bottom: 16px;
  }

  .point-faq__mark {
    font-size: 20px;
  }

  .point-faq__q-text {
    font-size: 15px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .point-faq__answer-body {
    padding: 0 20px 16px;
  }

  .point-faq__a-text {
    font-size: 14px;
    padding-left: 12px;
    padding-right: 0;
  }
}


/* Point Smart Shopping CTA */

.point-smart {
  position: relative;
  overflow: hidden;
  background: #FDF8F3;
  scroll-margin-top: 90px;
}

.point-smart__bg {
  position: absolute;
  inset: 0;
  background: url(img/point-smart-bg.jpg) center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.point-smart__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 160px 40px;
}

.point-smart__card {
  width: 100%;
  max-width: 980px;
  padding: 90px 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 1px 1px 5px 1px #0000001F;
  text-align: center;
  overflow: hidden;
}

.point-smart__title {
  margin: 0;
  font-family: "Marcellus", serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #D1A054;
}

.point-smart__title-ja {
  margin: 25px 0 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #62422F;
}

.point-smart__text {
  margin: 53px 0 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
  color: #62422F;
}

.point-smart__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.point-smart__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 386px;
  padding: 14px 40px;
  border: 2px solid #D3A65E;
  border-radius: 999px;
  background: #D3A65E;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  text-decoration: none;
  box-shadow: 2px 2px 2px 0 #00000014;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.point-smart__button:hover {
  background: #fff;
  color: #D3A65E;
  transform: translateY(-1px);
}

@media only screen and (max-width: 768px) {
  .point-smart {
    background-image: url(img/point-smart-bg-sp.png);
  }

  .point-smart__inner {
    padding: 100px 28px;
  }

  .point-smart__card {
    padding: 64px 32px 56px;
    border-radius: 8px;
  }

  .point-smart__title {
    font-size: 40px;
    line-height: 1.25;
  }

  .point-smart__title-ja {
    margin-top: 18px;
    font-size: 15px;
  }

  .point-smart__text {
    margin-top: 36px;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 1.9;
  }

  .point-smart__cta {
    margin-top: 36px;
  }

  .point-smart__button {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .point-smart__inner {
    padding: 90px 22px 80px;
  }

  .point-smart__card {
    padding: 80px 17px 70px;
    border-radius: 8px;
  }

  .point-smart__title {
    font-size: 36px;
    letter-spacing: 0.03em;
    line-height: 1.4;
  }

  .point-smart__title-ja {
    margin-top: 18px;
    font-size: 14px;
  }

  .point-smart__text {
    margin-top: 45px;
    font-size: 17.5px;
    letter-spacing: 0.03em;
    line-height: 1.8;
    font-family: 600;
  }

  .point-smart__cta {
    margin-top: 45px;
  }

  .point-smart__button {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 450px) {
  .point-smart__inner {
    padding-inline: 17px;
  }
  .point-smart__text {
    font-size: 16px;
  }
}