@charset "UTF-8";
html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* PC: ヘッダー高さ分のオフセット（padding 34px×2 + コンテンツ高） */
  scroll-padding-top: 100px;
  /* SP: ヘッダー高さに合わせる（.mobile-content の top: 85px と統一） */
}
@media (max-width: 992px) {
  html {
    scroll-padding-top: 85px;
  }
}

body {
  margin: 0;
  translate: 0.5s all;
  font-family: "Noto Sans JP", system-ui;
  color: #232323;
  font-size: 14px;
  line-height: 175%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

div,
section {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

.c-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .c-container {
    padding: 0 32px;
  }
}

.c-lhalf-container {
  max-width: calc(50% + 620px);
  padding-right: 20px;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .c-lhalf-container {
    padding-right: 32px;
  }
}

.c-rhalf-container {
  max-width: calc(50% + 620px);
  padding-left: 20px;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .c-rhalf-container {
    padding-left: 32px;
  }
}

.c-container-md {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.sp-only-block {
  display: none;
}
@media (max-width: 768px) {
  .sp-only-block {
    display: block;
  }
}

.pc-only-block {
  display: block;
}
@media (max-width: 768px) {
  .pc-only-block {
    display: none;
  }
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-46 {
  margin-top: 46px;
}

.mt-56 {
  margin-top: 56px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-64 {
  margin-top: 64px;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.m-btn01 {
  padding: 16px 32px;
  font-size: 20px;
  line-height: 175%;
  font-weight: 700;
  color: #fff;
  background-color: #0C6AC3;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 768px) {
  .m-btn01 {
    font-size: 16px;
  }
}

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.shippori-mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

header.p-header {
  padding: 34px 20px;
  background-color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 992px) {
  header.p-header {
    padding: 25px 25px;
  }
}
header.p-header .inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  max-width: 1280px;
  margin: auto;
}
header.p-header .inner-wrapper .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 150px;
}
header.p-header .inner-wrapper .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header.p-header .inner-wrapper .nav-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
header.p-header .inner-wrapper .nav-wrapper .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 992px) {
  header.p-header .inner-wrapper .nav-wrapper .nav-list {
    display: none;
  }
}
header.p-header .inner-wrapper .nav-wrapper .nav-list > li a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0C6AC3;
  font-family: "Noto Sans JP", serif;
}
header.p-header .inner-wrapper .nav-wrapper .nav-list > li a:hover {
  opacity: 0.8;
}
header.p-header .inner-wrapper .nav-wrapper .hamburger-menu-item {
  display: none;
  width: 30px;
  height: 35px;
}
@media (max-width: 992px) {
  header.p-header .inner-wrapper .nav-wrapper .hamburger-menu-item {
    display: block;
  }
}
header.p-header .inner-wrapper .nav-wrapper .hamburger-menu-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header.p-header .mobile-content {
  display: none;
  position: fixed;
  width: 100%;
  height: calc(100vh - 85px);
  background-color: white;
  top: 85px;
  left: 0;
  z-index: 1000;
  padding: 60px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header.p-header .mobile-content .inner-content {
  margin: auto;
  max-width: 500px;
}
header.p-header .mobile-content .inner-content .mobile-nav-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 32px;
}
header.p-header .mobile-content .inner-content .mobile-nav-list > li a {
  font-size: 20px;
  font-weight: 700;
  color: #0C6AC3;
  font-family: "Noto Sans JP", serif;
  line-height: 1.7;
  text-align: justify;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.p-header .mobile-content .inner-content .mobile-nav-list > li a:hover {
  opacity: 0.8;
}

.p-top-mv {
  padding: 80px 0;
  background-color: #0C6AC3;
}
.p-top-mv .mv-content {
  position: relative;
  padding: 60px 20px 70px 20px;
  margin: auto;
  position: relative;
  max-width: 900px;
  width: 100%;
  background-color: white;
  border-radius: 30px;
  -webkit-box-shadow: 10px 10px 1px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 10px 10px 1px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1200px) {
  .p-top-mv .mv-content {
    max-width: 650px;
  }
}
@media (max-width: 768px) {
  .p-top-mv .mv-content {
    padding: 40px 20px 76px 20px;
  }
}
.p-top-mv .mv-content .mv-ttitle {
  font-size: 60px;
  color: #232323;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .p-top-mv .mv-content .mv-ttitle {
    font-size: 50px;
  }
}
@media (max-width: 420px) {
  .p-top-mv .mv-content .mv-ttitle {
    font-size: 40px;
  }
}
.p-top-mv .mv-content .mv-ttitle .text-sm {
  font-size: 45px;
}
@media (max-width: 768px) {
  .p-top-mv .mv-content .mv-ttitle .text-sm {
    font-size: 36px;
  }
}
.p-top-mv .mv-content .mv-ttitle .mv-ttitle-1 {
  font-weight: 900;
  color: #0C6AC3;
}
.p-top-mv .reward-wrapper {
  margin-top: 40px;
}
.p-top-mv .reward-wrapper .label {
  position: relative;
  margin: auto;
  font-size: 24px;
  font-weight: 700;
  color: #232323;
  font-family: "Noto Sans JP", serif;
  text-align: center;
  line-height: 1.7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #0C6AC3;
  padding: 6px 12px;
  color: white;
  border-radius: 5px;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-top-mv .reward-wrapper .label {
    font-size: 20px;
  }
}
@media (max-width: 420px) {
  .p-top-mv .reward-wrapper .label {
    font-size: 18px;
  }
}
.p-top-mv .reward-wrapper .reward-content-wrapper {
  position: relative;
  margin: auto;
  margin-top: -24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 600px;
  padding: 30px 20px 20px 20px;
  background-color: #E0F2FF;
  border: 4px solid #0C6AC3;
  gap: 16px;
}
@media (max-width: 1200px) {
  .p-top-mv .reward-wrapper .reward-content-wrapper {
    max-width: 450px;
  }
}
@media (max-width: 1200px) {
  .p-top-mv .reward-wrapper .reward-content-wrapper {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-mv .reward-wrapper .reward-content-wrapper .text-item {
  font-size: 24px;
  font-weight: 700;
  color: #232323;
  font-family: "Noto Sans JP", serif;
  text-align: right;
  line-height: 1.2;
  color: #232323;
}
@media (max-width: 1200px) {
  .p-top-mv .reward-wrapper .reward-content-wrapper .text-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-top-mv .reward-wrapper .reward-content-wrapper .reward-cost {
  font-size: 72px;
  font-weight: 700;
  color: #FFAD00;
  font-family: "Noto Sans JP", serif;
  text-align: right;
  line-height: 0.8;
}
@media (max-width: 1200px) {
  .p-top-mv .reward-wrapper .reward-content-wrapper .reward-cost {
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .p-top-mv .reward-wrapper .reward-content-wrapper .reward-cost {
    font-size: 60px;
  }
}
@media (max-width: 420px) {
  .p-top-mv .reward-wrapper .reward-content-wrapper .reward-cost {
    font-size: 50px;
  }
}
.p-top-mv .reward-wrapper .reward-content-wrapper::before {
  position: absolute;
  content: "";
  bottom: -32px;
  left: -33.5px;
  width: 67px;
  height: 64px;
  background-image: url(../images/top/coin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-top-mv .reward-wrapper .reward-content-wrapper::before {
    width: 46px;
    height: 44px;
    bottom: -20px;
    left: -20px;
  }
}
.p-top-mv .reward-wrapper .reward-content-wrapper::after {
  position: absolute;
  content: "";
  bottom: -32px;
  right: -33.5px;
  width: 67px;
  height: 64px;
  background-image: url(../images/top/coin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-top-mv .reward-wrapper .reward-content-wrapper::after {
    width: 46px;
    height: 44px;
    bottom: -20px;
    right: -20px;
  }
}
.p-top-mv .ev-car {
  position: absolute;
  width: 300px;
  height: auto;
  left: -180px;
  bottom: 64px;
}
.p-top-mv .ev-car img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1400px) {
  .p-top-mv .ev-car {
    width: 240px;
    left: -120px;
  }
}
@media (max-width: 1200px) {
  .p-top-mv .ev-car {
    left: -168px;
  }
}
@media (max-width: 992px) {
  .p-top-mv .ev-car {
    width: 240px;
    left: 0;
    bottom: -50px;
  }
}
.p-top-mv .flash {
  position: absolute;
  width: 98px;
  height: auto;
  top: -20px;
  left: -70px;
}
@media (max-width: 992px) {
  .p-top-mv .flash {
    width: 64px;
    top: -40px;
    left: -20px;
  }
}
.p-top-mv .flash img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top-mv .grid {
  position: absolute;
  width: 230px;
  height: auto;
  right: -120px;
  top: 98px;
}
@media (max-width: 1200px) {
  .p-top-mv .grid {
    width: 180px;
    right: -90px;
    top: 145px;
  }
}
@media (max-width: 992px) {
  .p-top-mv .grid {
    width: 160px;
    right: -20px;
    top: -40px;
  }
}
@media (max-width: 576px) {
  .p-top-mv .grid {
    width: 100px;
    right: -20px;
    top: -40px;
  }
}
.p-top-mv .grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top-mv .humans {
  position: absolute;
  width: 100px;
  height: auto;
  right: -90px;
  bottom: -42px;
}
@media (max-width: 992px) {
  .p-top-mv .humans {
    width: 80px;
    right: -22px;
    bottom: -70px;
  }
}
@media (max-width: 768px) {
  .p-top-mv .humans {
    width: 70px;
    right: -20px;
    bottom: -65px;
  }
}
@media (max-width: 576px) {
  .p-top-mv .humans {
    width: 52px;
    right: -20px;
    bottom: -50px;
  }
}
.p-top-mv .humans img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

section.p-about {
  position: relative;
  padding: 80px 0;
  background-color: #BBE0FC;
  overflow: hidden;
}
section.p-about::before {
  position: absolute;
  content: "";
  width: 1320px;
  height: 474px;
  left: calc(50% - 660px);
  top: calc(50% - 237px);
  background-image: url(../images/top/about-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 768px) {
  section.p-about::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-repeat: repeat;
  }
}
section.p-about .about-vs {
  position: relative;
  max-width: 466px;
  margin: auto;
  z-index: 3;
}
section.p-about .about-vs img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.p-about .description {
  position: relative;
  z-index: 3;
  font-size: 16px;
  color: #232323;
  line-height: 1.75;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  text-align: center;
}
section.p-about .description.mt-16 {
  margin-top: 16px;
}
section.p-about .description.mt-60 {
  margin-top: 60px;
}
section.p-about .household {
  position: relative;
  z-index: 3;
  margin-top: 32px;
}
section.p-about .household .label {
  position: relative;
  margin: auto;
  font-size: 24px;
  font-weight: 700;
  color: #232323;
  font-family: "Noto Sans JP", serif;
  text-align: center;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #0C6AC3;
  padding: 12px;
  color: white;
  border-radius: 5px;
  z-index: 4;
}
@media (max-width: 768px) {
  section.p-about .household .label {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  section.p-about .household .label {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  section.p-about .household .label {
    font-size: 16px;
  }
}
section.p-about .household .household-content {
  position: relative;
  z-index: 3;
  margin: auto;
  margin-top: -24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 505px;
  padding: 32px 20px 16px 20px;
  background-color: white;
  border: 4px solid #0C6AC3;
}
section.p-about .household .household-content .first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 65px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #FFD43E;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  line-height: 1;
  color: #232323;
  margin-right: 5px;
}
@media (max-width: 768px) {
  section.p-about .household .household-content .first {
    width: 55px;
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  section.p-about .household .household-content .first {
    width: 45px;
    font-size: 12px;
  }
}
section.p-about .household .household-content .number {
  font-size: 72px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #FF9200;
  line-height: 1;
}
@media (max-width: 768px) {
  section.p-about .household .household-content .number {
    font-size: 60px;
  }
}
@media (max-width: 420px) {
  section.p-about .household .household-content .number {
    font-size: 50px;
  }
}
section.p-about .household .household-content .middle {
  font-size: 40px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #FF9200;
  line-height: 1;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  section.p-about .household .household-content .middle {
    font-size: 36px;
  }
}
@media (max-width: 420px) {
  section.p-about .household .household-content .middle {
    font-size: 32px;
  }
}
section.p-about .household .household-content .last {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #232323;
  line-height: 1;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  section.p-about .household .household-content .last {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  section.p-about .household .household-content .last {
    font-size: 16px;
  }
}

.title-content .section-title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #0C6AC3;
  line-height: 1.7;
  letter-spacing: 2%;
  text-align: center;
}
.title-content .section-title.text-white {
  color: white;
}
.title-content .title-jp {
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  color: #232323;
  line-height: 1.7;
  letter-spacing: 2%;
  text-align: center;
}
.title-content .title-jp.text-white {
  color: white;
}

section.p-overview {
  padding: 80px 0;
  background-color: #E8F3FB;
}
section.p-overview .overview-wrapper {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
}
section.p-overview .overview-wrapper .overview-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 20px minmax(0, 1fr);
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 5px 20px;
}
@media (max-width: 768px) {
  section.p-overview .overview-wrapper .overview-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
section.p-overview .overview-wrapper .overview-item .item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0C6AC3;
  color: white;
  font-size: 20px;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  line-height: 1.7;
  letter-spacing: 2%;
  text-align: center;
  padding: 23px 20px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  section.p-overview .overview-wrapper .overview-item .item-label {
    padding: 20px 20px;
  }
}
section.p-overview .overview-wrapper .overview-item .item-content {
  background-color: white;
  padding: 20px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  line-height: 1.7;
  color: #232323;
}
@media (max-width: 768px) {
  section.p-overview .overview-wrapper .overview-item .item-content {
    padding: 20px 20px;
  }
}
section.p-overview .overview-wrapper .overview-item .item-content.items-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.p-overview .overview-wrapper .overview-item .item-content .item-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 12px;
}
section.p-overview .overview-wrapper .overview-item .item-content .item-list li {
  position: relative;
  padding-left: 20px;
  text-align: justify;
}
section.p-overview .overview-wrapper .overview-item .item-content .item-list li::before {
  position: absolute;
  content: "・";
  font-size: 16px;
  color: #0C6AC3;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  left: 0px;
  top: 0px;
}
section.p-overview .overview-wrapper .overview-item .item-content .item-list li a {
  color: #0C6AC3;
  text-decoration: underline !important;
}
section.p-overview .overview-wrapper .overview-item .item-content .sm-description {
  margin: 12px 0;
  font-size: 12px;
  font-weight: 400;
  font-family: "Noto Sans JP", serif;
  line-height: 2;
  color: #232323;
  text-align: justify;
}
section.p-overview .overview-wrapper .overview-item .item-content a {
  color: #0C6AC3;
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
section.p-overview .overview-wrapper .overview-item .item-content a:hover {
  opacity: 0.85;
}
section.p-overview .overview-wrapper .overview-item .item-content .item-link-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0C6AC3;
  color: white;
  font-size: 13px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  border-radius: 5px;
}
section.p-overview .overview-wrapper .overview-item .item-content .item-link-btn:hover {
  opacity: 0.85;
}
section.p-overview .overview-mv {
  margin-top: 60px;
  width: 100%;
}
section.p-overview .overview-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

section.p-enterable {
  padding: 80px 0;
  background-color: white;
}
section.p-enterable .description {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  line-height: 1.7;
  color: #232323;
  text-align: center;
}
section.p-enterable .enterable-content {
  position: relative;
  margin-top: 65px;
}
@media (max-width: 576px) {
  section.p-enterable .enterable-content {
    padding-bottom: 150px;
  }
}
section.p-enterable .enterable-content::after {
  position: absolute;
  content: "";
  width: 352px;
  height: auto;
  aspect-ratio: 352/211;
  background-image: url(../images/top/enterable-before.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  section.p-enterable .enterable-content::after {
    width: 300px;
  }
}
@media (max-width: 576px) {
  section.p-enterable .enterable-content::after {
    width: 100%;
    max-width: 200px;
  }
}
section.p-enterable .enterable-content .enterable-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 20px;
}
@media (max-width: 768px) {
  section.p-enterable .enterable-content .enterable-wrapper {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  section.p-enterable .enterable-content .enterable-wrapper {
    -ms-grid-columns: (minmax(0, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
section.p-enterable .enterable-content .enterable-wrapper .enterable-item {
  position: relative;
  padding: 40px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 184px;
  background-color: #E8F3FB;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  line-height: 1.7;
  color: #232323;
  text-align: center;
}
section.p-enterable .enterable-content .enterable-wrapper .enterable-item::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../images/icons/icon-check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -25px;
  left: calc(50% - 25px);
  z-index: 1;
}
section.p-enterable .enterable-content .enterable-wrapper .enterable-item .text-0C6AC3 {
  color: #0C6AC3;
}
section.p-enterable .enterable-content .enterable-wrapper .enterable-item a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  color: #0C6AC3;
}
section.p-enterable .enterable-content .enterable-wrapper .enterable-item a:hover {
  opacity: 0.85;
}

section.p-participant-rewards {
  position: relative;
  padding: 80px 0;
  background-color: #E8F3FB;
  overflow: hidden;
}
section.p-participant-rewards::before {
  position: absolute;
  content: "";
  width: 1320px;
  height: 474px;
  left: calc(50% - 660px);
  top: calc(50% - 237px);
  background-image: url(../images/top/about-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 768px) {
  section.p-participant-rewards::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-repeat: repeat;
  }
}
section.p-participant-rewards .description {
  margin-top: 60px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  line-height: 1.7;
  color: #232323;
  text-align: center;
}
section.p-participant-rewards .amazon-gift {
  margin-top: 40px;
}
section.p-participant-rewards .amazon-gift .label {
  position: relative;
  margin: auto;
  font-size: 24px;
  font-weight: 700;
  color: #232323;
  font-family: "Noto Sans JP", serif;
  text-align: center;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #0C6AC3;
  padding: 12px;
  color: white;
  border-radius: 5px;
  z-index: 4;
  max-width: 312px;
  width: 100%;
}
@media (max-width: 768px) {
  section.p-participant-rewards .amazon-gift .label {
    font-size: 20px;
  }
}
section.p-participant-rewards .amazon-gift .reward-content-wrapper {
  position: relative;
  margin: auto;
  margin-top: -24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 592px;
  padding: 30px 20px 20px 20px;
  background-color: white;
  border: 4px solid #0C6AC3;
  gap: 16px;
  z-index: 3;
}
section.p-participant-rewards .amazon-gift .reward-content-wrapper::before {
  position: absolute;
  content: "";
  bottom: -32px;
  left: -33.5px;
  width: 67px;
  height: 64px;
  background-image: url(../images/top/coin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 768px) {
  section.p-participant-rewards .amazon-gift .reward-content-wrapper::before {
    width: 46px;
    height: 44px;
    bottom: -20px;
    left: -20px;
  }
}
section.p-participant-rewards .amazon-gift .reward-content-wrapper::after {
  position: absolute;
  content: "";
  bottom: -32px;
  right: -33.5px;
  width: 67px;
  height: 64px;
  background-image: url(../images/top/coin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 768px) {
  section.p-participant-rewards .amazon-gift .reward-content-wrapper::after {
    width: 46px;
    height: 44px;
    bottom: -20px;
    right: -20px;
  }
}
section.p-participant-rewards .amazon-gift .reward-content-wrapper .cost {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #232323;
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  section.p-participant-rewards .amazon-gift .reward-content-wrapper .cost {
    font-size: 20px;
  }
}
section.p-participant-rewards .amazon-gift .reward-content-wrapper .cost .amount {
  font-size: 72px;
  color: #FFAD00;
}
@media (max-width: 768px) {
  section.p-participant-rewards .amazon-gift .reward-content-wrapper .cost .amount {
    font-size: 60px;
  }
}
section.p-participant-rewards .amazon-gift .reward-content-wrapper .detail {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  color: #232323;
  line-height: 1.7;
  text-align: center;
}

section.how-to-apply {
  padding: 80px 0;
  background-color: #BBE0FC;
}
section.how-to-apply .how-to-list {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 72px;
}
section.how-to-apply .how-to-list .how-to-item {
  position: relative;
  counter-increment: how-to-item;
  padding: 48px 90px;
  background-color: white;
  border-radius: 15px;
  width: 100%;
}
@media (max-width: 992px) {
  section.how-to-apply .how-to-list .how-to-item {
    padding: 48px 20px;
  }
}
@media (max-width: 768px) {
  section.how-to-apply .how-to-list .how-to-item {
    padding: 72px 20px 48px 20px;
  }
}
section.how-to-apply .how-to-list .how-to-item::before {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  content: "Step 0" counter(how-to-item);
  font-size: 22px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #232323;
  line-height: 1.2;
  text-align: center;
  background-color: #FFD43E;
  letter-spacing: -0.05em;
  left: 24px;
  top: -40px;
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 48px minmax(0, 1fr);
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 48px;
}
@media (max-width: 768px) {
  section.how-to-apply .how-to-list .how-to-item .main-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
  }
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-mv {
  width: 100%;
}
@media (max-width: 768px) {
  section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-mv {
    max-width: 300px;
    margin: auto;
  }
}
@media (max-width: 576px) {
  section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-mv {
    max-width: 200px;
    margin: auto;
  }
}
@media (max-width: 420px) {
  section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-mv {
    max-width: 170px;
    margin: auto;
  }
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-content .item-title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #0C6AC3;
  line-height: 1.7;
  text-align: justify;
}
@media (max-width: 768px) {
  section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-content .item-title {
    font-size: 20px;
  }
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-content .content-detail {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #232323;
  line-height: 1.7;
  text-align: justify;
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-content .content-detail a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  color: #0C6AC3;
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-content .content-detail .text-sm {
  font-size: 12px;
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-content .content-list {
  margin-top: 16px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-content .content-list > li {
  counter-increment: content-list;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #232323;
  line-height: 1.7;
  text-align: justify;
  padding: 10px;
  background-color: #E8F3FB;
  border-radius: 8px;
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-content .content-list > li::before {
  content: counter(content-list) ".";
  color: #0C6AC3;
  margin-right: 8px;
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-content .content-list > li .sub {
  margin-left: 20px;
  counter-reset: content-sublist;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 3px;
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-content .content-list > li .sub > li {
  position: relative;
  counter-increment: content-sublist;
  font-size: 12px;
  line-height: 1.7;
  color: #232323;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  padding-left: 20px;
}
section.how-to-apply .how-to-list .how-to-item .main-wrapper .item-content .content-list > li .sub > li::before {
  position: absolute;
  content: "(" counter(content-sublist, lower-alpha) ") ";
  color: #0C6AC3;
  left: 0;
  top: 0;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .label {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #232323;
  line-height: 1.7;
  text-align: center;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper {
  margin-top: 24px;
  padding: 24px;
  background-color: #F8FCFD;
  border-radius: 10px;
}
@media (max-width: 768px) {
  section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper {
    padding: 24px 16px;
  }
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-section-title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #0C6AC3;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-section-title {
    font-size: 20px;
  }
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #FFD43E;
  border-radius: 2px;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card-label {
  font-size: 13px;
  color: #232323;
  font-family: "Noto Sans JP", serif;
  margin-bottom: 8px;
  text-align: center;
  width: 100%;
  font-weight: bold;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card-label .expend-card-label-big {
  font-size: 130%;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card-label--yellow .expend-card-label-underline {
  border-bottom-color: #FF9800;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card-label--red .expend-card-label-underline {
  border-bottom-color: #E57373;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 38px 12px 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  position: relative;
  width: 100%;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 350px;
  margin: 0 auto;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card--switch {
  background-color: #FFD43E;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card--option {
  background-color: #FFCDD2;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card .expend-card-main {
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #232323;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 420px) {
  section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card .expend-card-main {
    font-size: 12px;
  }
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card .expend-card-sub {
  margin-top: 10px;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  padding: 4px 10px;
  border-radius: 20px;
  text-align: center;
  line-height: 1.7;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card.expend-card--switch .expend-card-sub {
  background-color: #ffb52a;
  color: #fff;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card.expend-card--option .expend-card-sub {
  background-color: #f54e0c;
  color: #fff;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-card .expend-card-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  color: #555555;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-notes {
  margin-top: 12px;
  font-size: 12px;
  color: #666666;
  font-family: "Noto Sans JP", serif;
  line-height: 1.8;
  font-weight: 500;
  text-align: left;
  width: 100%;
  padding: 0 4px;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-notes p {
  margin-bottom: 6px;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-notes p:last-child {
  margin-bottom: 0;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-notes a {
  color: #2196F3;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
section.how-to-apply .how-to-list .how-to-item .expend-content .expend-wrapper .expend-notes a:hover {
  text-decoration: none;
}
section.how-to-apply .link-content {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.p-faq {
  padding: 80px 0;
  background-color: #0C6AC3;
}
section.p-faq .faq-wrapper {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}
section.p-faq .faq-wrapper .faq-item .a-item {
  display: none; /* shown by jQuery on .q-item click */
}
section.p-faq .faq-wrapper .faq-item .q-item {
  position: relative;
  padding: 30px 100px 30px 80px;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  background-color: white;
  color: #232323;
  line-height: 1.7;
  text-align: justify;
  border-radius: 8px;
  cursor: pointer;
}
@media (max-width: 768px) {
  section.p-faq .faq-wrapper .faq-item .q-item {
    font-size: 18px;
    padding: 30px 80px 30px 60px;
  }
}
@media (max-width: 576px) {
  section.p-faq .faq-wrapper .faq-item .q-item {
    font-size: 16px;
  }
}
section.p-faq .faq-wrapper .faq-item .q-item::before {
  content: "Q";
  position: absolute;
  left: 40px;
  top: 28px;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #0C6AC3;
  font-weight: 700;
}
@media (max-width: 768px) {
  section.p-faq .faq-wrapper .faq-item .q-item::before {
    left: 20px;
  }
}
section.p-faq .faq-wrapper .faq-item .q-item::after {
  content: "";
  position: absolute;
  right: 40px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background-image: url(../images/icons/icon-plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  section.p-faq .faq-wrapper .faq-item .q-item::after {
    right: 20px;
  }
}
section.p-faq .faq-wrapper .faq-item .q-item.is-open::after {
  background-image: url(../images/icons/icon-minus.svg);
}
section.p-faq .faq-wrapper .faq-item .q-item:hover {
  background-color: #E8F3FB;
}
section.p-faq .faq-wrapper .faq-item .a-item {
  position: relative;
  padding: 30px 40px 30px 80px;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #232323;
  line-height: 1.7;
  text-align: justify;
  background-color: #E8F3FB;
  border-radius: 8px;
  text-align: left;
}
@media (max-width: 768px) {
  section.p-faq .faq-wrapper .faq-item .a-item {
    font-size: 15px;
    padding: 30px 40px 30px 60px;
  }
}
@media (max-width: 576px) {
  section.p-faq .faq-wrapper .faq-item .a-item {
    font-size: 14px;
  }
}
section.p-faq .faq-wrapper .faq-item .a-item::before {
  content: "A";
  position: absolute;
  left: 40px;
  top: 26px;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #0C6AC3;
}
@media (max-width: 768px) {
  section.p-faq .faq-wrapper .faq-item .a-item::before {
    left: 20px;
  }
}
section.p-faq .faq-wrapper .faq-item .a-item p {
  margin-bottom: 6px;
}
section.p-faq .faq-wrapper .faq-item .a-item p:last-child {
  margin-bottom: 0;
}
section.p-faq .faq-wrapper .faq-item .a-item ul {
  margin: 8px 0 0 16px;
  padding-left: 0;
  list-style: disc;
}
section.p-faq .faq-wrapper .faq-item .a-item ul li {
  margin-bottom: 4px;
}
section.p-faq .faq-wrapper .faq-item .a-item a {
  color: #0C6AC3;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
section.p-faq .faq-wrapper .faq-item .a-item a:hover {
  opacity: 0.85;
}
section.p-faq .faq-wrapper .faq-item .a-item .img--cellphone-wrapper2 {
  max-width: 500px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 420px) {
  section.p-faq .faq-wrapper .faq-item .a-item .img--cellphone-wrapper2 {
    max-width: 250px;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
section.p-faq .faq-wrapper .faq-item .a-item .img--cellphone-wrapper2 .cellphone-screen {
  width: 100%;
  height: 100%;
}
section.p-faq .faq-wrapper .faq-item .a-item .img--cellphone-wrapper2 .cellphone-screen img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
/*# sourceMappingURL=app.css.map */