@charset "UTF-8";
/**
 * 変数
 */
/**
 * color
 * ---------------------------
 */
/**
 * コンテンツ幅
 * ---------------------------
 */
/**
 * font famiry
 * ---------------------------
 */
/**
 * font size
 * ---------------------------
 */
:root {
  --fontSize: 20px;
  --font-2xs: calc(var(--fontSize) * 0.6); /* 12px */
  --font-xs: calc(var(--fontSize) * 0.7); /* 14px */
  --font-s: calc(var(--fontSize) * 0.8); /* 16px */
  --font-m: calc(var(--fontSize) * 0.9); /* 18px */
  --font-l: calc(var(--fontSize) * 1);
  --font-xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-2xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-3xl: calc(var(--fontSize) * 1.25); /* 25px */
  --font-4xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-4_2xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-5xl: calc(var(--fontSize) * 1.5); /* 30px */
}

@media (min-width: 768px) {
  :root {
    --font-2xs: calc(var(--fontSize) * 0.7); /* 14px */
    --font-xs: calc(var(--fontSize) * 0.8); /* 16px */
    --font-s: calc(var(--fontSize) * 0.9); /* 18px */
    --font-m: calc(var(--fontSize) * 1);
    --font-l: calc(var(--fontSize) * 1.1); /* 22px */
    --font-xl: calc(var(--fontSize) * 1.25); /* 25px */
    --font-2xl: calc(var(--fontSize) * 1.5); /* 30px */
    --font-3xl: calc(var(--fontSize) * 1.75); /* 35px */
    --font-4xl: calc(var(--fontSize) * 2); /* 40px */
    --font-4_2xl: calc(var(--fontSize) * 2.1); /* 42px */
    --font-5xl: calc(var(--fontSize) * 2.25); /* 45px */
  }
}
/*
overview
---------------------------*/
#overview {
  background: linear-gradient(180deg, #FEF8DE 30%, #ffffff 70%);
}
#overview > .wrap {
  background: #ffffff;
  border-top: 1px solid #026934;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-radius: 25px 25px 0 0;
}
@media (min-width: 769px) {
  #overview > .wrap {
    border-radius: 50px 50px 0 0;
  }
}

/*
main-title
---------------------------*/
#main-title > .wrap {
  padding-bottom: 100px;
}
#main-title .title__wrap {
  width: 100%;
  max-width: 981px;
  margin: 0 auto;
}
#main-title .title__wrap p {
  padding: 20px 15px;
  font-size: min(6.5vw, 24px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  paint-order: stroke;
  background: #3EC06F;
  border: 1px solid #026934;
  border-radius: 10px;
  text-stroke: 2px #026934;
  -webkit-text-stroke: 2px #026934;
}
#main-title .detail__wrap {
  margin-top: 30px;
}
#main-title .detail__wrap p {
  font-size: min(6vw, 18px);
  font-weight: 500;
  line-height: 2.5;
}
#main-title .button__wrap .btn {
  margin: auto;
  border-radius: 30px;
}
#main-title .button__wrap .btn__down a {
  display: block;
  padding: 21px 10px 26px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  border-radius: 30px;
}
#main-title .button__wrap .btn__down a::after {
  transform: rotate(90deg);
}
@media (min-width: 769px) {
  #main-title .title__wrap p {
    padding: 7px 15px;
    font-size: min(4vw, 40px);
  }
  #main-title .detail__wrap {
    margin-top: 30px;
  }
  #main-title .detail__wrap p {
    font-size: min(2vw, 20px);
    text-align: center;
  }
  #main-title .button__wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  #main-title .button__wrap .btn {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 768px) {
  #main-title .button__wrap .btn {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

/*
get-points
---------------------------*/
#get-points .wrap {
  padding: 100px 0 150px;
  background: #D2FAE1;
  border-top: 1px solid #026934;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-radius: 25px 25px 0 0;
}
#get-points .title__wrap h2 {
  width: fit-content;
  margin: 0 auto;
}
#get-points .title__wrap p {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
#get-points .detail__wrap {
  margin-top: 30px;
}
#get-points .detail__wrap p {
  font-size: 18px;
  font-weight: 500;
}
#get-points .table {
  margin-top: 50px;
  overflow: hidden;
}
#get-points .table .table__wrap {
  overflow-x: auto;
}
#get-points .table .table__inner {
  width: 100%;
  min-width: 600px;
}
#get-points .table figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#get-points .attention__wrap {
  margin-top: 50px;
}
#get-points .attention__wrap p {
  font-size: 16px;
  font-weight: 700;
}
#get-points .attention__wrap p .link-underline {
  text-decoration: underline;
  font-weight: 700;
}
#get-points .attention__wrap .highlight p {
  text-decoration: underline;
  display: inline;
}
@media (min-width: 769px) {
  #get-points .wrap {
    border-radius: 50px 50px 0 0;
    background: #D2FAE1;
  }
  #get-points .detail__wrap p {
    font-size: 20px;
    text-align: center;
  }
  #get-points .attention__wrap p {
    font-size: 18px;
  }
  #get-points .attention__wrap .highlight p {
    text-decoration: underline;
    display: inline;
  }
}

/*
use-points
---------------------------*/
#use-points .wrap {
  padding: 112px 0 150px;
  border-top: 1px solid #026934;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-radius: 25px 25px 0 0;
}
#use-points .title__wrap h2 {
  width: fit-content;
  margin: 0 auto;
}
#use-points .title__wrap p {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
#use-points .detail__wrap {
  margin-top: 50px;
}
#use-points .detail__wrap p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.5;
}
#use-points .age__list {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
#use-points .age__list dl {
  width: 100%;
  border: 1px solid #026934;
  border-radius: 30px;
}
#use-points .age__list dl + dl {
  margin-top: 50px;
}
#use-points .age__list dt {
  padding: 30px 25px;
  background: #FFF9B1;
  border-radius: 30px 30px 0 0;
}
#use-points .age__list dt .age {
  padding: 14px 10px;
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background: #026934;
  border-radius: 30px;
}
#use-points .age__list dt .text {
  margin-top: 20px;
  font-size: min(5vw, 24px);
  font-weight: 700;
  text-align: center;
}
#use-points .age__list dd {
  padding: 30px 25px;
}
#use-points .age__list dd .main__wrap {
  display: flex;
  flex-direction: column-reverse;
}
#use-points .age__list dd .main__wrap--text {
  width: 100%;
  margin-top: 30px;
}
#use-points .age__list dd .main__wrap--text p {
  font-size: min(4.8vw, 16px);
  font-weight: 500;
  line-height: 2;
}
#use-points .age__list dd .main__wrap--img {
  width: 100%;
  max-width: 170px;
  margin: 0 auto;
}
#use-points .age__list dd .attention__wrap {
  margin-top: 10px;
}
#use-points .age__list dd .attention__wrap p {
  font-size: min(4.8vw, 16px);
  font-weight: 400;
  line-height: 2;
}
#use-points .age__list dd .attention__wrap .highlight p {
  text-decoration: underline;
  display: inline;
  font-weight: 700;
}
#use-points .detail__list {
  margin-top: 50px;
}
#use-points .detail__list dl {
  border: 1px solid #026934;
  border-radius: 30px;
}
#use-points .detail__list dl + dl {
  margin-top: 50px;
}
#use-points .detail__list dt {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 25px;
  background: #FEF8DE;
  border-radius: 30px 30px 0 0;
}
#use-points .detail__list dt .img__wrap {
  width: 80px;
}
#use-points .detail__list dt .text__wrap {
  width: 100%;
  margin-top: 25px;
}
#use-points .detail__list dt .text__wrap h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
#use-points .detail__list dd .main {
  padding: 30px 25px 50px;
}
#use-points .detail__list dd .main.column {
  display: flex;
  flex-direction: column;
}
#use-points .detail__list dd .main.column .main__text {
  width: 100%;
}
#use-points .detail__list dd .main.column .main__img {
  width: 100%;
  max-width: 350px;
  margin: 40px auto 0;
}
#use-points .detail__list dd .main .main__text > * + * {
  margin-top: 30px;
}
#use-points .detail__list dd .main .main__text .detail > * + * {
  margin-top: 30px;
}
#use-points .detail__list dd .main .main__text .detail p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
#use-points .detail__list dd .main .main__text .detail a {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: #3EC06F;
}
#use-points .detail__list dd .main .main__text .attention p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
#use-points .detail__list dd .main .main__text .attention .highlight p {
  text-decoration: underline;
  display: inline;
  font-weight: 700;
}
#use-points .detail__list dd .main#point-type {
  padding-top: 0;
}
#use-points .detail__list dd .main#point-type .text {
  margin-bottom: 2em;
  font-size: min(6vw, 24px);
  font-weight: 700;
  text-align: center;
}
#use-points .detail__list dd .main#point-type .icon__image img {
  margin-bottom: 1.5em;
}
#use-points .detail__list dd .main#point-type .icon {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
}
#use-points .detail__list dd .main#point-type .icon figure {
  text-align: center;
  margin-bottom: 2em;
  width: 48%;
}
#use-points .detail__list dd .main#point-type .icon figure img {
  width: auto;
  max-height: 60px;
  max-width: 90px;
}
#use-points .detail__list dd .main#point-type .icon figure figcaption {
  font-size: 10px;
  letter-spacing: normal;
  margin-top: 1em;
}
#use-points .detail__list dd .main#point-type .icon figure figcaption.mt0 {
  margin-top: 0em;
}
#use-points .detail__list dd .main#point-type .attention p {
  font-size: 10px;
  text-indent: -1em;
  padding-left: 1em;
}
#use-points .detail__list dd .main#point-type .attention p.mb1 {
  margin-bottom: 1em;
}
#use-points .detail__list dd .main#point-type #link .btn {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 15px;
}
#use-points .detail__list dd .main#point-type #link .btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20% 30px 13%;
  border-radius: 15px;
}
#use-points .detail__list dd .main#point-type #link .btn a p {
  font-size: min(4.5vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 769px) {
  #use-points .detail__list dd .main#point-type #link .btn {
    max-width: 780px;
    border-radius: 30px;
  }
  #use-points .detail__list dd .main#point-type #link .btn a {
    flex-direction: row;
    padding: 30px 65px;
    border-radius: 30px;
  }
  #use-points .detail__list dd .main#point-type #link .btn a p {
    font-size: min(2.5vw, 24px);
  }
}
#use-points .detail__list dd .supplement {
  padding: 40px 25px 50px;
  background: #C0EDC6;
  border-radius: 0 0 30px 30px;
}
#use-points .detail__list dd .supplement p {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
#use-points .detail__list dd .supplement .btn {
  width: 100%;
  max-width: 580px;
  margin: 30px auto 0;
  border-radius: 15px;
}
#use-points .detail__list dd .supplement .btn a {
  padding: 18px 15%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 15px;
}
@media (min-width: 450px) {
  #use-points .detail__list dd .main#point-type .icon figure {
    width: 30%;
    margin-bottom: 2em;
  }
}
@media (min-width: 769px) {
  #use-points .wrap {
    padding: 100px 0 150px;
    border-radius: 50px 50px 0 0;
  }
  #use-points .title__wrap p {
    font-size: 34px;
  }
  #use-points .detail__wrap {
    margin-top: 30px;
  }
  #use-points .detail__wrap p {
    font-size: 20px;
    text-align: center;
  }
  #use-points .detail__list {
    margin-top: 100px;
  }
  #use-points .detail__list dt {
    flex-direction: row;
    padding: 38px 50px;
  }
  #use-points .detail__list dt .img__wrap {
    margin-right: 30px;
  }
  #use-points .detail__list dt .text__wrap {
    width: calc(100% - 80px);
    margin-top: 0;
  }
  #use-points .detail__list dt .text__wrap h3 {
    font-size: 28px;
    text-align: left;
  }
  #use-points .detail__list dd .main {
    padding: 50px;
  }
  #use-points .detail__list dd .main.column {
    flex-direction: row;
    justify-content: space-between;
  }
  #use-points .detail__list dd .main.column .main__text {
    width: calc(100% - 340px);
  }
  #use-points .detail__list dd .main.column .main__img {
    width: 300px;
    max-width: initial;
    margin: 0;
  }
  #use-points .detail__list dd .main .main__text .detail p {
    font-size: 18px;
  }
  #use-points .detail__list dd .main .main__text .detail a {
    font-size: 18px;
  }
  #use-points .detail__list dd .main .main__text .attention p {
    font-size: 18px;
  }
  #use-points .detail__list dd .main#point-type .icon__image img {
    margin: auto;
    display: block;
    width: 80%;
    margin-bottom: 2.5em;
  }
  #use-points .detail__list dd .main#point-type .icon figure {
    width: 23%;
    margin-bottom: 2.5em;
  }
  #use-points .detail__list dd .supplement {
    padding: 40px 50px 50px;
  }
  #use-points .detail__list dd .supplement p {
    font-size: 18px;
  }
  #use-points .detail__list dd .supplement .btn {
    border-radius: 30px;
  }
  #use-points .detail__list dd .supplement .btn a {
    padding: 31px 15%;
    font-size: 24px;
    border-radius: 30px;
  }
}
@media (min-width: 461px) and (max-width: 999px) {
  #use-points .age__list dt .age br.break__bigSP {
    display: none;
  }
}
@media (min-width: 1000px) and (max-width: 1206px) {
  #use-points .age__list dt .age br.break__bigSP {
    display: block;
  }
}
@media (min-width: 1207px) {
  #use-points .age__list dt .age br.break__bigSP {
    display: none;
  }
}
@media (min-width: 1000px) {
  #use-points .age__list {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 100px;
    display: flex;
  }
  #use-points .age__list dl {
    width: calc((100% - 40px) / 2);
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  #use-points .age__list dl + dl {
    margin-top: 0;
  }
  #use-points .age__list dt {
    flex: 1;
    display: grid;
    padding: 30px;
  }
  #use-points .age__list dt .age {
    font-size: min(2vw, 18px);
    display: grid;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 14px 10px;
  }
  #use-points .age__list dt .text {
    flex: 1;
    margin-top: 20px;
    font-size: min(2.3vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #use-points .age__list dd {
    padding: 30px;
  }
  #use-points .age__list dd .main__wrap {
    flex-direction: row;
    justify-content: space-between;
  }
  #use-points .age__list dd .main__wrap--text {
    width: 65%;
    margin-top: 0;
  }
  #use-points .age__list dd .main__wrap--text p {
    font-size: min(2vw, 18px);
  }
  #use-points .age__list dd .main__wrap--img {
    width: 33%;
  }
  #use-points .age__list dd .attention__wrap p {
    font-size: min(2vw, 18px);
  }
  #use-points .detail__list dd .main#point-type .icon figure {
    width: auto;
  }
  #use-points .detail__list dd .main#point-type .icon figure figcaption {
    font-size: 12px;
  }
  #use-points .detail__list dd .main#point-type .attention p {
    font-size: 12px;
  }
}/*# sourceMappingURL=point.css.map */