@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http:/*
 * File name: home.css
 * Summary:   home用スタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    home
 * ===============================================================
*/

/** =1
 * ========================================
 * home
 * ========================================
 */

/* 受付終了後のボタン */
.btn.colorAccent.is-closed {
  position: relative;
  background: linear-gradient(
    90deg,
    rgb(from #7f6427 r g b / 0.5) 0%,
    rgb(from #e5b346 r g b / 0.5) 100%
  );
  color: rgb(from #fff r g b / 0.6);
  cursor: default;
  pointer-events: none;
}
.btn.colorAccent.is-closed .textClose {
  display: grid;
  place-items: center;
  position: absolute;
  inset-block-start: 100%;
  inset-inline-start: 50%;
  transform: translate(-50%, calc(-50% - 2px));
  height: calc(20 / 12 * 1em);
  padding-inline: calc(8 / 10 * 1em);
  background: linear-gradient(to right, #a9041b, #e70020, #a9041b);
  color: #fff;
  font-size: clamp(10px, calc(12 / 20 * 1em), 16px);
  font-weight: bold;
  white-space: nowrap;
}
.btn.colorAccent.is-closed .textClose::before,
.btn.colorAccent.is-closed .textClose::after {
  position: absolute;
  border-block: calc(10 / 12 * 1em) solid #a9041b;
  content: "";
}
.btn.colorAccent.is-closed .textClose::before {
  inset-inline-end: 100%;
  border-inline-start: calc(10 / 12 * 1em) solid transparent;
}
.btn.colorAccent.is-closed .textClose::after {
  inset-inline-start: 100%;
  border-inline-end: calc(10 / 12 * 1em) solid transparent;
}

/* ========================================
/* main visual
/* ======================================== */
[id="mainVisual"] {
  position: relative;
}

[id="mainVisual"] .mainVisualImg img {
  width: 100%;
  height: auto;
}
[id="mainVisual"] .btn {
  position: absolute;
  inset-block-start: calc(1660 / 1920 * 100%);
  inset-inline-start: 50%;
  translate: -50% -50%;
  width: min(260px, 90%);
  padding-block: clamp(12px, calc(16 / 1920 * 100vw), 16px);
  font-size: clamp(14px, calc(18 / 1020 * 100vw), 18px);
}

@media screen and (max-width: 1024px) {
  [id="mainVisual"] .btn {
    inset-block-start: calc(1760 / 1920 * 100%);
  }
}

/* ========================================
/* Prize
/* ======================================== */
[id="prize"] {
  overflow: clip;
  padding-block-start: clamp(80px, calc(160 / 1024 * 100vw), 160px);
  padding-block-end: clamp(60px, calc(120 / 1024 * 100vw), 120px);
  text-align: center;
}
[id="prize"]:not(:last-child) {
  padding-block-end: 0;
}

[id="prize"] .prizeInner {
  position: relative;
  padding-block-start: clamp(32px, calc(64 / 1024 * 100vw), 64px);
  padding-block-end: clamp(20px, calc(64 / 1024 * 100vw), 64px);
  padding-inline: clamp(24px, calc(60 / 1024 * 100vw), 60px);
  border-radius: 20px;
  background-color: #fff;
  color: #000;
}
[id="prize"] .prizeInner::after {
  position: absolute;
  inset: 16px;
  z-index: 0;
  border: 2px solid #e5b346;
  /* border-image: linear-gradient(to bottom, #e5b346, #8b7137) 2 / 1 / 0 stretch; */
  border-radius: 8px;
  pointer-events: none;
  content: "";
}
@media screen and (max-width: 768px) {
  [id="prize"] .prizeInner {
    border-radius: 10px;
  }
  [id="prize"] .prizeInner::after {
    inset: 4px;
    border-radius: 6px;
  }
}

[id="prize"] .prizeTextLead {
  margin-block-end: clamp(20px, calc(40 / 768 * 100vw), 40px);
  margin-inline: auto;
}
[id="prize"] .prizeTextLead img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  [id="prize"] .prizeTextLead {
    width: calc(310 / 302 * 100%);
    margin-inline: calc(-4 / 302 * 100%);
  }
  [id="prize"] .prizeTextLead img {
    width: min(400px, 100%);
  }
}
@media screen and (min-width: 769px) {
  [id="prize"] .prizeTextLead {
    width: max(600px, calc(700 / 840 * 100%));
  }
}

[id="prize"] .prizeTitle {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  [id="prize"] .prizeTitle {
    inset-inline-start: 50%;
    translate: -50% 0;
    width: max(442px, calc(720 / 840 * 100%));
  }
}
@media screen and (min-width: 769px) {
  [id="prize"] .prizeTitle {
    width: max(617px, calc(720 / 840 * 100%));
    margin-inline: auto;
  }
}

[id="prize"] .listPrize {
  display: grid;
  position: relative;
  z-index: 5;
  row-gap: 20px;
}
@media screen and (max-width: 768px) {
  [id="prize"] .listPrize {
    max-width: 400px;
    margin-block-start: calc(-20 / 302 * 100%);
    margin-inline: auto;
  }
  [id="prize"] .listPrize img {
    width: 100%;
    height: auto;
  }
  [id="prize"] .listPrizeItem:not(:last-child) {
    border-block-end: 2px solid #d9d9d9;
  }
  [id="prize"] .listPrizeItem:nth-child(-n + 2):not(:last-child) {
    padding-block-end: 20px;
  }
  [id="prize"] .listPrizeItem:nth-child(n + 3) img {
    margin-block-start: calc(-40 / 302 * 100%);
  }
}
@media screen and (min-width: 769px) {
  [id="prize"] .listPrize {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-block-start: calc(-30 / 840 * 100%);
  }
  [id="prize"] .listPrizeItem:nth-child(-n + 2) {
    grid-column: span 2;
  }
  [id="prize"] .listPrizeItem:nth-child(-n + 2):not(:last-child) {
    padding-block-end: 20px;
    border-block-end: 2px solid #d9d9d9;
  }
  [id="prize"] .listPrizeItem:nth-child(n + 3) img {
    width: min(390px, calc(390 / 420 * 100%));
  }
  [id="prize"] .listPrizeItem:nth-child(n + 3):not(:nth-child(even)) {
    position: relative;
    text-align: left;
  }
  [id="prize"] .listPrizeItem:nth-child(n + 3):not(:nth-child(even))::after {
    position: absolute;
    inset-block: 0;
    inset-inline-end: -1px;
    border-inline-end: 2px solid #d9d9d9;
    content: "";
  }
  [id="prize"] .listPrizeItem:nth-child(n + 3):not(:nth-child(odd)) {
    text-align: right;
  }
}

[id="prize"] .prizeCondition:not(:first-child) {
  margin-block-start: clamp(20px, calc(60 / 1024 * 100vw), 60px);
}
[id="prize"] .prizeConditionTitle {
  width: fit-content;
  margin-block-end: calc(16 / 24 * 1em);
  margin-inline: auto;
  padding-block: calc(4 / 24 * 1em);
  padding-inline: calc(16 / 24 * 1em);
  border-radius: 3px;
  background-color: #0b2244;
  color: #fff;
  font-weight: 900;
  font-size: clamp(20px, calc(24 / 768 * 100vw), 24px);
}
[id="prize"] .prizeConditionDescription {
  width: fit-content;
  margin-inline: auto;
  text-align: left;
  font-size: clamp(16px, calc(20 / 768 * 100vw), 20px);
}
@media screen and (min-width: 769px) {
  [id="prize"] .prizeConditionDescription {
    text-align: center;
  }
}

/* ========================================
/* number of winning
/* ======================================== */
[id="numberWinning"] {
  padding-block: clamp(60px, calc(120 / 1024 * 100vw), 120px);
}
[id="numberWinning"]:not(:last-child) {
  padding-block-end: 0;
}

[id="numberWinning"] .numberWinningTitle {
  font-size: clamp(20px, calc(40 / 768 * 100vw), 40px);
}
[id="numberWinning"] .numberWinningTitle .marker {
  display: inline-block;
  margin-inline: calc(4 / 20 * 1em);
  padding-inline: calc(6 / 20 * 1em);
  background-color: #fff;
  color: #0f294c;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  [id="numberWinning"] .numberWinningTitle {
    margin-block-end: min(calc(120 / 1024 * 100vw), 120px);
  }
}

[id="numberWinning"] .numberWinningContent {
  position: relative;
}
[id="numberWinning"] .numberWinningImage {
  display: block;
  overflow: clip;
  border-radius: 20px 20px 0 0;
}
[id="numberWinning"] .numberWinningImage img {
  width: 100%;
  height: auto;
}
[id="numberWinning"] .numberWinningDescriptionWrap {
  display: flex;
  flex-direction: column;
  row-gap: clamp(16px, calc(20 / 768 * 100vw), 20px);
  /* margin-block-start: 10px; */
  padding-block: clamp(20px, calc(32 / 768 * 100vw), 32px);
  padding-inline: clamp(20px, calc(40 / 768 * 100vw), 40px);
  border-radius: 0 0 20px 20px;
  background-color: #00abd4;
  color: #fff;
}
[id="numberWinning"] .numberWinningDescription {
  font-weight: 700;
  font-size: clamp(20px, calc(24 / 768 * 100vw), 24px);
  text-align: center;
}
[id="numberWinning"] .numberWinningDescription span,
[id="numberWinning"] .numberWinningDescription strong {
  font-weight: inherit;
}
[id="numberWinning"] .numberWinningDescriptionWrap .listNotice {
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
}
[id="numberWinning"] .numberWinningDescriptionWrap a {
  color: inherit;
}
[id="numberWinning"] .numberWinningBalloon img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  [id="numberWinning"] .numberWinningImage {
    border-start-start-radius: 10px;
    border-start-end-radius: 10px;
  }
  [id="numberWinning"] .numberWinningDescriptionWrap {
    border-end-start-radius: 10px;
    border-end-end-radius: 10px;
  }
  [id="numberWinning"] .numberWinningBalloon {
    width: min(480px, 100%);
    margin-block-start: max(-20px, calc(-14 / 390 * 100vw));
    margin-inline: auto;
  }
}
@media screen and (min-width: 769px) {
  [id="numberWinning"] .numberWinningBalloon {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    translate: calc(-30 / 480 * 100%) calc(-100 / 247 * 100%);
    width: calc(480 / 960 * 100%);
  }
}

[id="numberWinning"] .numberWinningFooter {
  margin-block-start: clamp(20px, calc(60 / 1024 * 100vw), 60px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  [id="numberWinning"] .numberWinningFooter .btn {
    width: 100%;
  }
}

/* ========================================
/* Flow
/* ======================================== */
[id="flow"] {
  padding-block: clamp(60px, calc(120 / 768 * 100vw), 120px);
  /* background: linear-gradient(to bottom, #0b2244, #2360b2); */
}
[id="flow"]:not(:last-child) {
  padding-block-end: 0;
}

[id="flow"] .flowArticle {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

[id="flow"] .flowArticleItem {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  position: relative;
  padding: 30px 154px;
  border-radius: 20px;
  background-color: #fff;
  color: #000;
  font-size: clamp(14px, calc(16 / 768 * 100vw), 16px);
  text-align: center;
}
[id="flow"] .flowArticleItem::before {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50px;
  transform: translateY(-50%);
  width: 54px;
  height: 62px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
[id="flow"] .flowArticleItem:not(:last-child)::after {
  position: absolute;
  inset-block-start: calc(
    100% - 1px
  ); /* NOTE: .flowArticleの四角ブロックとafter疑似要素の下向き三角との間に線が入って見えるので1px分さらに上にずらす */
  inset-inline-start: 50%;
  translate: -50% 0;
  border-block-start: 30px solid #fff;
  border-inline: 30px solid transparent;
  content: "";
}

@media screen and (max-width: 768px) {
  [id="flow"] .flowArticle {
    row-gap: 30px;
  }
  [id="flow"] .flowArticleItem {
    padding-inline: 20px;
    border-radius: 10px;
  }
  [id="flow"] .flowArticleItem::before {
    inset-block-start: 0;
    transform: translateY(-40%);
    width: 80px;
    height: 80px;
  }
  [id="flow"] .flowArticleItem:not(:last-child)::after {
    border-block-start-width: 20px;
    border-inline-width: 20px;
  }
}
@media screen and (max-width: 600px) {
  [id="flow"] .flowArticleItem::before {
    inset-inline-start: 10px;
    width: 60px;
    height: 60px;
  }
}

[id="flow"] .flowArticleItem:nth-child(1)::before {
  background-image: url(/assets/metpo/img/1million/home/metopo_01.png);
}
[id="flow"] .flowArticleItem:nth-child(2)::before {
  background-image: url(/assets/metpo/img/1million/home/metopo_02.png);
}
[id="flow"] .flowArticleItem:nth-child(3)::before {
  background-image: url(/assets/metpo/img/1million/home/metopo_03.png);
}
[id="flow"] .flowArticleItem:nth-child(4)::before {
  background-image: url(/assets/metpo/img/1million/home/metopo_04.png);
}

[id="flow"] .flowArticle .flowTitle {
  font-weight: 700;
  font-size: clamp(24px, calc(32 / 768 * 100vw), 32px);
}
[id="flow"] .flowArticle .flowTitle span {
  font-weight: inherit;
}
[id="flow"] .flowArticle .flowTitle .marker {
  padding-inline: 0.25em;
  background-color: #fff666;
  font-weight: inherit;
}

[id="flow"] .flowArticle .btn {
  width: min(320px, 100%);
  margin-inline: auto;
}

[id="flow"] .flowArticle .flowArticleNotice {
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
  text-align: left;
}

/* ========================================
/* outline
/* ======================================== */
[id="outline"] {
  padding-block: clamp(60px, calc(120 / 768 * 100vw), 120px);
  background: linear-gradient(to bottom, #0b2244, #2360b2);
}
[id="outline"] .outlineLead {
  margin-block-end: clamp(24px, calc(40 / 768 * 100vw), 40px);
  margin-inline: auto;
  font-size: clamp(16px, calc(20 / 768 * 100vw), 20px);
}
@media screen and (min-width: 769px) {
  [id="outline"] .outlineLead {
    text-align: center;
  }
}

[id="outline"] .outlineContent {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, calc(40 / 768 * 100vw), 40px);
  max-width: 800px;
  padding-block: clamp(20px, calc(60 / 1024 * 100vw), 60px)
    clamp(30px, calc(60 / 1024 * 100vw), 60px);
  padding-inline: clamp(20px, calc(60 / 1024 * 100vw), 60px);
  border-radius: 20px;
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 768px) {
  [id="outline"] .outlineContent {
    border-radius: 10px;
  }
}

[id="outline"] .listOutline {
  display: grid;
  column-gap: calc(16 / 16 * 1em);
  font-size: clamp(14px, calc(16 / 768 * 100vw), 16px);
}
[id="outline"] .listOutlineTitle {
  padding-block: calc(4 / 16 * 1em);
  padding-inline: calc(12 / 16 * 1em);
  border-radius: 3px;
  background-color: #0b2244;
  color: #fff;
  font-weight: 700;
}
[id="outline"] .listOutlineDescription {
  padding-block: calc(4 / 16 * 1em);
}
[id="outline"] .listOutlineDescription .listNotice {
  font-size: clamp(12px, calc(14 / 768 * 100vw), 14px);
}
@media screen and (max-width: 768px) {
  [id="outline"] .listOutline {
    row-gap: calc(4 / 14 * 1em);
  }
  [id="outline"] .listOutlineDescription:not(:last-child) {
    margin-block-end: calc(8 / 14 * 1em);
  }
}
@media screen and (min-width: 769px) {
  [id="outline"] .listOutline {
    grid-template-columns: max(200px, 20%) auto;
    row-gap: calc(12 / 16 * 1em);
  }
}

[id="outline"] .outlineEntryBtn {
  text-align: center;
}
[id="outline"] .outlineEntryBtn .btn {
  width: min(320px, 100%);
}
@media screen and (min-width: 769px) {
  [id="outline"] .listOutline {
    grid-template-columns: max(200px, 20%) auto;
    row-gap: calc(12 / 16 * 1em);
  }
}

/* notice */
.noticeCampaign {
  margin-block-start: clamp(40px, calc(60 / 768 * 100vw), 60px);
  padding: 40px 60px;
  border-radius: 20px;
  background-color: #00abd4;
  font-size: 14px;
}
.noticeCampaign a {
  color: inherit;
}
@media screen and (max-width: 768px) {
  .noticeCampaign {
    padding: 20px;
    border-radius: 10px;
  }
}

/* ========================================
/* sub campaign
/* ======================================== */
.subCampaign {
  position: relative;
  padding-block-start: clamp(30px, calc(75 / 768 * 100vw), 75px);
  padding-block-end: clamp(60px, calc(120 / 768 * 100vw), 120px);
  background-image: url(/assets/metpo/img/1million/home/bg_snow.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}

.subCampaignSectionTitle {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 614px;
  margin-inline: auto;
  padding-block-end: 1em;
  padding-inline: 5%;
  box-sizing: border-box;
  background-image: url('/assets/metpo/img/1million/home/ribonTitle.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  aspect-ratio: 614 / 150;
  text-align: center;
  color: #fff;
  /* font-size: clamp(1.2em, 4vw, 2.2em); */
  font-size: clamp(1.4em, 4vw, 2.2em);
  font-weight: 900;
  line-height: 1.4;
}

.subCampaignSectionTitle.small{
  padding-inline: 8%;
  font-size: clamp(1.1em, 4vw, 1.8em);
  line-height: 1.3;
}

.subCampaignTitleImage {
  position: relative;
  margin-inline: auto;
}
.subCampaignTitleImage img {
  position: relative;
  z-index: 1;
}
.subCampaignTitleImage::before {
  opacity: 0.5;
  position: absolute;
  inset-block-start: calc(80 / 168 * 100%);
  inset-inline-start: 50%;
  translate: -50% -50%;
  z-index: 0;
  width: calc(90 / 240 * 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
}
.subCampaignText {
  margin-block-start: calc(16 / 32 * 1em);
  font-size: clamp(24px, calc(32 / 768 * 100vw), 32px);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}
.subCampaignText span {
  font-weight: inherit;
}

.listSubCampaign {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-block-end: clamp(80px, calc(140 / 768 * 100vw), 140px);
}

.listSubCampaignItem {
  /* width: calc((100% - 60px) / 3); */
  width: calc((100% - 80px) / 4);
}

@media screen and (max-width: 768px) {
  .listSubCampaignItem {
    width: calc((100% - 20px) / 2);
  }
}

.listSubCampaignItem a {
  width: 100%;
  height: 100%;
}


 .subCampaignInner {
  position: relative;
  scroll-margin-top: 20px;
  margin-block-end: clamp(80px, calc(140 / 920 * 100vw), 140px);
  padding-block-start: clamp(70px, calc(140 / 920 * 100vw), 140px);
  padding-block-end: clamp(60px, calc(80 / 920 * 100vw), 80px);
  padding-inline: clamp(40px, calc(60 / 920 * 100vw), 60px);
  border-radius: 40px;
  background: linear-gradient(to bottom,
  rgb(35,96,178),  rgb(14,37,69));
  z-index: 1;
  color: #000;
}

 .subCampaignInner:last-child {
  margin-block-end: 0;
 }

.subCampaignInner::before {
  position: absolute;
  inset: 20px;
  z-index: -1;
  background: #fff;
  border-radius: 20px;
  pointer-events: none;
  content: "";
}

.subCampaignComingsoonText {
  padding-block-start: clamp(0px, calc(40 / 920 * 100vw), 40px);
  padding-block-end: clamp(0px, calc(40 / 920 * 100vw), 40px);
  color: #00ABD4;
  font-size: clamp(30px, calc(60 / 768 * 100vw), 60px);
  font-weight: bold;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.pointThreeBlockPrivilege {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, calc(50 / 1024 * 100vw), 50px);
}
@media screen and (max-width: 768px) {
  .pointThreeBlockPrivilege {
    flex-direction: column;
  }
}

.pointThreeBlockPrivilegeTextMark {
  display: inline-flex;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: -.1em;
}

.pointThreeBlockPrivilegeTextMark span {
    position: relative;
    font-weight: 700;
}

.pointThreeBlockPrivilegeTextMark span:before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 5px;
    -webkit-transform: translate(-50%,-5px);
    transform: translate(-50%,-5px);
    border-radius: 50%;
    background-color: #00ABD4;
    content: ""
}

.pointThreeBlockPrivilegeTextMark.blue {
  color: #00ABD4;
}

.pointThreeBlockPrivilegeTextMark.blue {
  color: #00ABD4;
}

.pointThreeBlockPrivilegeTextMark.yellow {
  padding-inline: .2em;
  background-color: #F1C500;
}

.pointThreeBlockPrivilegeTextMark.silver {
  color: #807E7F;
}

.pointThreeBlockPrivilegeImage {
  border: 3px solid #225CAB;
  border-radius: 10px;
  padding-inline: 2.4em;
  padding-block: 2em;
}

@media screen and (max-width: 768px) {
  .pointThreeBlockPrivilegeTextMark {
    font-size: 1em;
  }

  .pointThreeBlockPrivilegeTextMark span:before {
    width: 3px;
    height: 3px;
    -webkit-transform: translate(-50%,-2px);
    transform: translate(-50%,-2px);
  }
}

.plus {
  position: relative;
  height: clamp(22px, calc(44 / 768 * 100vw), 44px);
  margin-block: 1.2em;
}
.plus:before, .plus:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #225CAB;
}
.plus:before {
  width: 7px;
  height: clamp(22px, calc(44 / 768 * 100vw), 44px);
}
.plus:after {
  width: clamp(22px, calc(44 / 768 * 100vw), 44px);
  height: 7px;
}

/* ========================================
/* point
/* ======================================== */
.point {
  padding-block-start: clamp(60px, calc(120 / 768 * 100vw), 120px);
  background-color: #fff;
}
.point .l-inner {
  max-width: 1140px;
}

.pointInner {
  padding-block: clamp(30px, calc(60 / 768 * 100vw), 60px)
    clamp(40px, calc(60 / 768 * 100vw), 60px);
  padding-inline: clamp(20px, calc(40 / 768 * 100vw), 40px);
  border-radius: 20px;
  background: linear-gradient(286deg, #225cab, #0e2545);
}
@media screen and (max-width: 768px) {
  .pointInner {
    border-radius: 10px;
  }
}

.point .listPoint {
  display: grid;
  column-gap: 30px;
  row-gap: 20px;
  max-width: 960px;
  margin-inline: auto;
}
.point .listPoint .listPointItem {
  border-radius: 20px;
  background-color: #fff;
  color: #000;
  text-align: center;
}
.point .listPoint .listPointImg {
  max-width: 110px;
  margin: 0 auto 10px;
}
.point .listPoint .listPointImg img {
  width: 100%;
  backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  .point .listPoint .listPointItem {
    padding: 25px 20px 20px;
    border-radius: 10px;
    font-size: 1.8rem;
  }
  .point .listPoint .listPointItem .listPointImg {
    max-width: 100px;
  }
}
@media screen and (min-width: 769px) {
  .point .listPoint {
    grid-template-columns: repeat(3, 1fr);
  }
  .point .listPoint .listPointItem {
    padding: 40px 20px 35px;
    font-size: 1.8rem;
  }
}

.point .pointBtn {
  margin-block-start: clamp(20px, calc(40 / 768 * 100vw), 40px);
  text-align: center;
}
.point .pointBtn .btn.large {
  width: min(320px, 100%);
  margin-inline: auto;
}

.btn.subCampaign {
  position: relative;
  width: min(490px, 100%);
  margin-inline: auto;
}

.btn.subCampaign::after {
  position: absolute;
  right: 16px;
  transform: translateY(-50%);
  content: "";
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: .5em;
}
