@charset "UTF-8";
/* ブレイクポイント設定 */
/* デフォルト 375px ~ 575px */
/* 374px 以下で適用 */
/* 576px ~ 767px で適用 */
/* 768px ~ 959px で適用 */
/* 960px 以上で適用 */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: none!important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 740px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

@media only screen and (min-width: 740px) {
    .pc { display: block !important; }
    .sp { display: none !important; }
}
header {
  max-width: 740px;
  margin: 0 auto;
}
header .header__band {
  background-color: #EAF9F7;
  font-size: 10px;
  height: 20px;
  width: 100%;
  padding-left: 5px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 740px) {
  header .header__band {
    font-size: 12px;
    height: auto;
    padding: 10px 5px;
  }
}
header .header__main {
  display: flex;
  align-items: center;
  padding: 10px;
  justify-content: space-between;
}
@media screen and (min-width: 740px) {
  header .header__main {
    padding: 30px 20px 20px;
  }
}
header .header__main-container {
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 740px) {
  header .header__main-container {
    border-bottom: 3px solid #ddd;
  }
}
header .header__main-logo {
  width: 144px;
}
header .header__main-cta-button {
  background-color: #cc3239;
  width: 151px;
  height: 38px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 8px;
  text-decoration: none;
}
header .header__main-cta-button--text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  flex-grow: 1;
}
header .header__chach-text {
  font-weight: 700;
  padding: 0 10px;
  max-width: 740px;
  margin: 0 auto;
}
@media screen and (min-width: 740px) {
  header .header__chach-text {
    padding: 0;
  }
}
header .header__chach-text--h2 {
  margin: 30px auto;
  font-size: 22px;
}

section {
  max-width: 740px;
  margin: 0 auto;
}

.eye-catch__img-wrap {
  background-image: url("/kojin/tameru/toushin/nisa/support-plan/img/eye-catch-sp.png");
  background-image: image-set(
    url("/kojin/tameru/toushin/nisa/support-plan/img/eye-catch-sp.png") 1x,
    url("/kojin/tameru/toushin/nisa/support-plan/img/eye-catch-sp_2x.png") 2x
  );
  background-position: 50% 60%;
  height: 380px;
  width: 100%;
  padding-top: 24px;
  background-size: cover;
}
@media screen and (min-width: 740px) {
  .eye-catch__img-wrap {
    background-image: url("/kojin/tameru/toushin/nisa/support-plan/img/eye-catch-pc.png");
    background-image: image-set(
      url("/kojin/tameru/toushin/nisa/support-plan/img/eye-catch-pc.png") 1x,
      url("/kojin/tameru/toushin/nisa/support-plan/img/eye-catch-pc_2x.png") 2x
    );
    height: 300px;
  }
}
.eye-catch__img-pc-wrap {
  display: none;
}
@media screen and (min-width: 740px) {
  .eye-catch__img-pc-wrap {
    display: block;
  }
}
.eye-catch__text-wrap {
  width: 345px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  padding: 24px 23px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 740px) {
  .eye-catch__text-wrap {
    width: 380px;
  }
}

.eye-catch__text-subtitle-box {
  width: 165px;
  height: 26px;
  border-radius: 20px;
  background: #ed6c00;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding-bottom: 3px;
}

@media screen and (min-width: 740px) {
  .eye-catch__text-subtitle-box {
    width: 181px;
  }
}
.eye-catch__text-subtitle {
  display: inline-block;
  line-height: 1;
}

.eye-catch__text-subtitle--large {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.eye-catch__text-subtitle--small {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.eye-catch__text-title {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  line-height: 123%;
  border-bottom: 2px solid #ed6c00;
  padding-bottom: 10px;
}

@media screen and (min-width: 740px) {
  .eye-catch__text-title {
    font-size: 24px;
    line-height: 125%;
  }
}

.eye-catch__text-title-small {
  letter-spacing: -4.2px;
}

@media screen and (min-width: 740px) {
  .eye-catch__text-title-small {
    letter-spacing: -4.8px;
  }
}
.eye-catch__text-title--red {
  color: #ed6c00;
  font-size: 19px;
  font-weight: 700;
  line-height: 26px;
}
@media screen and (min-width: 740px) {
  .eye-catch__text-title--red {
    font-size: 22px;
    line-height: 30px;
  }
}
.eye-catch__text-price-sp {
  width: 295px;
  height: 97px;
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (min-width: 740px) {
  .eye-catch__text-price-sp {
    display: none;
  }
}
.eye-catch__text-price-pc {
  display: none;
  width: 310px;
  height: 97px;
  margin: 20px auto 0;
}
@media screen and (min-width: 740px) {
  .eye-catch__text-price-pc {
    display: block;
  }
}
.eye-catch__text-notice {
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  margin-top: 4px;
}
.eye-catch__text--badge {
  position: absolute;
  top: -21px;
  right: -15px;
}

@media screen and (min-width: 740px) {
  .eye-catch__text--badge {
    position: absolute;
    top: -13px;
    right: -39px;
  }
}

.eye-catch__text--badge img {
  width: 77px;
  height: 77px;
}
.eye-catch__text--coin01 {
  display: none;
}
@media screen and (min-width: 740px) {
  .eye-catch__text--coin01 {
    position: absolute;
    top: -15px;
    left: 139px;
  }
}
.eye-catch__text--coin01 img {
  width: 48px;
  height: 35px;
}
.eye-catch__text--coin02 {
  position: absolute;
  top: 32px;
  left: -18px;
}
@media screen and (min-width: 740px) {
  .eye-catch__text--coin02 {
    display: none;
  }
}
.eye-catch__text--coin02 img {
  width: 49px;
  height: 59px;
}
.eye-catch__person-wrap {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: -24px;
  position: absolute;
  left: calc((100% - 141px - 126px - 13px) / 2);
}
@media screen and (min-width: 740px) {
  .eye-catch__person-wrap {
    gap: 298px;
    left: calc((100% - 187px - 167px - 298px) / 2);
    margin-top: -144px;
  }
}
.eye-catch__person-women img {
  width: 141px;
  height: 164px;
}
@media screen and (min-width: 740px) {
  .eye-catch__person-women img {
    width: 187px;
    height: 218px;
  }
}
.eye-catch__person-men img {
  width: 126px;
  height: 164px;
}
@media screen and (min-width: 740px) {
  .eye-catch__person-men img {
    width: 167px;
    height: 217px;
  }
}
.eye-catch__add-wrap {
  width: 100%;
  background-color: #ffe500;
  padding: 60px 15px 35px;
}
@media screen and (min-width: 740px) {
  .eye-catch__add-wrap {
    padding: 40px 20px 30px;
    height: auto;
  }
}
.eye-catch__add-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 740px) {
  .eye-catch__add-title {
    font-size: 20px;
  }
}
.eye-catch__add-title span {
  margin: 0 4px;
}
@media screen and (min-width: 740px) {
  .eye-catch__add-title--second {
    margin-top: 4px;
  }
}
.eye-catch__add-card {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 740px) {
  .eye-catch__add-card {
    width: 325px;
  }
}
.eye-catch__add-card-title {
  border-radius: 6px 6px 0px 0px;
  background: #ed6c00;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eye-catch__add-card-body {
  border-radius: 0px 0px 6px 6px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 35px;
  color: #333;
  text-decoration: none;
  justify-content: center;
  height: 100px;
  position: relative;
}
@media screen and (min-width: 740px) {
  .eye-catch__add-card-body {
    height: 100px;
  }
}

.hidden-sm {
  display: none;
}

@media screen and (min-width: 740px) {
  .hidden-sm {
    display: block;
  }
}

.hidden-md {
  display: block;
}

@media screen and (min-width: 740px) {
  .hidden-md {
    display: none;
  }
}

.eye-catch__add-card-body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}
@media screen and (min-width: 740px) {
  .eye-catch__add-card-body p {
    letter-spacing: -0.2px;
  }
}
.eye-catch__add-card-body img {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
}
.eye-catch__add-card-wrap {
  margin-top: 18px;
}
@media screen and (min-width: 740px) {
  .eye-catch__add-card-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
  }
}
.eye-catch__add-card--second {
  margin-top: 22px;
  position: relative;
}
@media screen and (min-width: 740px) {
  .eye-catch__add-card--second {
    margin-top: 0;
  }
}

.entry {
  background-color: #fef7c7;
  padding: 28px 20px 30px;
}
@media screen and (min-width: 740px) {
  .entry {
    padding: 30px;
  }
}
.entry__title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 740px) {
  .entry__title {
    font-size: 24px;
  }
}
.entry__button {
  display: flex;
  text-decoration: none;
  height: 64px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
  padding-right: 17px;
}
@media screen and (min-width: 740px) {
  .entry__button {
    width: 330px;
  }
}
@media screen and (min-width: 740px) {
  .entry__button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.entry__button-wrap {
  position: relative;
}
.entry__button-wrap--consultation {
  margin-top: 30px;
}
@media screen and (min-width: 740px) {
  .entry__button-wrap--consultation {
    margin-top: 0;
  }
}
.entry__button-account {
  background-color: #007561;
  color: #fff;
}
.entry__button-account--text {
  flex-grow: 1;
  text-align: center;
}
.entry__button-consultation {
  background-color: #fff;
  color: #333;
  border: 2px solid #777;
}
.entry__button-consultation--text {
  flex-grow: 1;
  text-align: center;
}
.entry__button-subtext {
  font-size: 12px;
}
.entry__button-subtext-box {
  width: 190px;
  height: 25px;
  border-radius: 17.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -12px;
  left: calc((100% - 190px) / 2);
}
.entry__button-subtext-box--account {
  background-color: #fff;
  border: 1px solid #007561;
}
.entry__button-subtext-box--consultation {
  background-color: #ffe500;
  border: 1px solid #777;
}

.plan__title h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 23px;
  line-height: 40px;
}
@media screen and (min-width: 740px) {
  .plan__title h2 {
    font-size: 24px;
    margin: 80px 0 23px;
  }
}
.plan__title-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.plan__img {
  width: 80px;
  height: auto;
  position: absolute;
}
@media screen and (min-width: 740px) {
  .plan__img {
    width: 100px;
  }
}
.plan__img-woman {
  top: 15px;
  left: 40px;
}
@media screen and (min-width: 740px) {
  .plan__img-woman {
    top: 35px;
    left: 80px;
  }
}
.plan__img-man {
  top: 15px;
  right: 40px;
}
@media screen and (min-width: 740px) {
  .plan__img-man {
    top: 35px;
    right: 80px;
  }
}
.plan__period {
  position: relative;
}
.plan__period-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 740px) {
  .plan__period-text {
    font-size: 14px;
  }
}

.plan__period-text-notice {
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 0.4px;
}
.plan__content-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 740px) {
  .plan__content-text {
    font-size: 14px;
  }
}
.plan__content-index {
  margin-top: 20px;
}
.plan__content-index p {
  color: #ed6c00;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.56px;
}
@media screen and (min-width: 740px) {
  .plan__content-index p {
    font-size: 16px;
  }
}
.plan__content-index span {
  color: #ed6c00;
  font-weight: 400;
}
.plan__content-detail {
  padding-left: 18px;
  margin-top: 4px;
}
.plan__content-detail p {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 740px) {
  .plan__content-detail p {
    font-size: 14px;
  }
}
.plan__content-detail--flex {
  display: flex;
}
.plan__content-detail--flex span {
  min-width: 63px;
}
.plan__content-detail--flex-mt {
  margin-top: 24px;
}

.plan__content-table-img-01 {
  width: 100%;
}
.plan__content-table-img-01--text {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.48px;
  margin: 24px auto 10px;
}
@media screen and (min-width: 740px) {
  .plan__content-table-img-01--text {
    font-size: 14px;
    margin: 30px auto 16px;
  }
}
@media screen and (min-width: 740px) {
  .plan__content-table-img-01 {
    width: 430px;
    margin: 0 auto;
  }
}
.plan__send-presents-text {
  color: #af231d;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 740px) {
  .plan__send-presents-text {
    font-size: 14px;
  }
}
.plan__send-presents-text.mt-12 {
  margin-top: 12px;
}
.plan__send-presents-img {
  width: 100%;
  margin: 24px auto 30px;
}
@media screen and (min-width: 740px) {
  .plan__send-presents-img {
    width: 430px;
    margin: 32px auto 40px;
  }
}
.plan__send-presents-button {
  display: flex;
  align-items: center;
  padding-left: 10px;
  height: 70px;
  width: 259px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e3e2e2;
  text-decoration: none;
  margin: 16px auto 0;
  position: relative;
  padding-inline: 6px;
}
.plan__send-presents-button-img {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

@media screen and (min-width: 740px) {
  .plan__send-presents-button-wrap {
    display: flex;
  }
}
.plan__send-presents-button-text {
  color: #333;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
  white-space: nowrap;
}
.plan__send-presents-button-text--wallet {
  display: block;
  width: 85px;
  height: 18px;
}

.plan__send-presents-button-text--wallet-text {
  position: relative;
  top: 9px;
}
.plan__send-presents-button-text--my-coin {
  width: 114px;
  height: 24px;
}
.plan__send-presents-button-text-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.plan__subject-card {
  border: 1px solid #ed6c00;
}
.plan__subject-card--title {
  height: 32px;
  padding: 5px 10px;
  text-align: center;
  background-color: #ed6c00;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 740px) {
  .plan__subject-card--title {
    height: 40px;
    font-size: 16px;
    padding-top: 6px;
  }
}
.plan__subject-card--body {
  padding: 20px;
}
.plan__subject-card--body-index {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (min-width: 740px) {
  .plan__subject-card--body-index {
    font-size: 14px;
  }
}
.plan__subject-card--body-index p {
  display: flex;
}
.plan__subject-card--body-index-mt {
  margin-top: 20px;
}
.plan__subject-card--body-index-span {
  color: #ed6c00;
}
.plan__subject-card--body-index-detail {
  margin-top: 4px;
  padding-left: 16px;
  font-size: 12px;
}
@media screen and (min-width: 740px) {
  .plan__subject-card--body-index-detail {
    font-size: 14px;
  }
}
.plan__subject-card--body-index-detail p {
  display: flex;
}
.plan__subject-card--body-index-detail p.mt-8 {
  margin-top: 4px;
}
.plan__subject-card--body-notice {
  margin-top: 4px;
  color: #777;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (min-width: 740px) {
  .plan__subject-card--body-notice {
    font-size: 14px;
  }
}
.plan__subject-card--body-notice p {
  display: flex;
}
.plan__subject-card--mb {
  margin-bottom: 24px;
}
.plan__subject-card--second {
}
.plan__subject-card--third {
}
.plan__row {
  padding: 0 10px;
}
.plan__row-title {
  background: #EAF9F7;
}
.plan__row-title h3 {
  height: 32px;
  font-size: 17px;
  font-weight: 600;
  padding: 5px 10px;
}
@media screen and (min-width: 740px) {
  .plan__row-title h3 {
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
  }
}
.plan__row-title--border {
  width: 100%;
  height: 4px;
  background: #fff;
  border: 1px solid #EAF9F7;
}
.plan__row-body {
  padding: 18px 0 32px;
}
@media screen and (min-width: 740px) {
  .plan__row-body {
    padding: 24px 0 32px;
  }
}
.plan__notice {
  margin-bottom: 38px;
}
.plan__notice-title {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid #ccc;
  padding-bottom: 14px;
}
@media screen and (min-width: 740px) {
  .plan__notice-title {
    font-size: 16px;
  }
}
.plan__notice-body--text {
  margin-top: 16px;
  display: flex;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (min-width: 740px) {
  .plan__notice-body--text {
    font-size: 14px;
  }
}
.plan__notice-body--text span {
  margin-right: 4px;
}

.cta-button {
  padding: 30px 10px;
  max-width: 740px;
  margin: 0 auto;
}
@media screen and (min-width: 740px) {
  .cta-button {
    padding: 40px 10px;
  }
}
@media screen and (min-width: 740px) {
  .cta-button__wrap {
    display: flex;
    justify-content: space-between;
  }
}
.cta-button__link {
  display: flex;
  align-items: center;
  padding-left: 16px;
  height: 38px;
  border-radius: 4px;
  background: #ed6c00;
  text-decoration: none;
  width: 100%;
}
@media screen and (min-width: 740px) {
  .cta-button__link {
    width: 330px;
    height: 40px;
  }
}
.cta-button__link--mb {
  margin-bottom: 16px;
}
.cta-button__text {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  margin: 0 30px 0 24px;
  flex-grow: 1;
}
@media screen and (min-width: 740px) {
  .cta-button__text {
    font-size: 14px;
  }
}



