@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&display=swap");
.lp {
  font-family: "M PLUS Rounded 1c", Courier, monospace, sans-serif;
  overflow: hidden;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.bg-orange {
  background-color: #fc9e2e;
}

.bg-yellow {
  background-color: #ffe155;
}

.bg-blue {
  background-color: #524cd9;
}

.list-table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 992px) {
  .list-table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.list-table th {
  white-space: nowrap;
  padding: 8px;
  border: solid 1px #eee;
  font-size: 14px;
  background-color: #f7f7f7;
}

.list-table td {
  padding: 8px;
  border: solid 1px #eee;
  font-size: 14px;
}
.list-table td table {
  width: 100%;
}
.list-table td td {
  padding: 0;
  border: none;
}

.lp-voice-text {
  margin-top: -5%;
}
@media (max-width: 750px) {
  .lp-voice-text {
    margin-top: -6%;
  }
}

.lp-voice-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.lp-voice-item__img {
  display: block;
  width: 118px;
  height: auto;
}
@media (max-width: 750px) {
  .lp-voice-item__img {
    width: 79px;
  }
}

.lp-voice-item__body {
  color: #524cd9;
}
.lp-voice-item__body dt span {
  border-bottom: 4px solid #ffe155;
  line-height: 1.8;
}

.list-asterisk-num {
  display: inline-block;
  list-style: none;
}
.list-asterisk-num > li {
  position: relative;
  padding-left: 1.8rem;
  padding-bottom: 0.5rem;
  font-size: calc(1rem - 1px);
  text-align: left;
  counter-increment: num;
}
.list-asterisk-num > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※" counter(num);
}
.list-asterisk-num > li:last-child {
  padding-bottom: 0;
}
.list-asterisk-num .list-num {
  display: inline-block;
  list-style: none;
}
.list-asterisk-num .list-num > li {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 0.5rem;
  font-size: calc(1rem - 2px);
  text-align: left;
  counter-increment: innum;
}
.list-asterisk-num .list-num > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "（" counter(innum) "）";
}
.list-asterisk-num .list-num > li:last-child {
  padding-bottom: 0;
}

.btn-lp {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 20px;
  border-radius: 50rem;
  border: solid 2px #fff;
  background-color: #e61616;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.btn-lp::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  display: inline-block;
  width: 100%;
  height: 78px;
  background-color: #ffe155;
  border-radius: 50rem;
  z-index: -1;
}
.btn-lp:hover {
  color: #fff;
  background-color: #ff3a3a;
}

.lp-top {
  width: 100%;
  overflow: hidden;
}

.lp-firstview {
  z-index: 1;
  position: relative;
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: auto;
  background-image: url(/img/big/100yen/pc/mv-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
@supports (background-image: url(/img/big/100yen/pc/mv-bg.webp)) {
  .lp-firstview {
    background-image: url(/img/big/100yen/pc/mv-bg.webp);
  }
}
@media (max-width: 750px) {
  .lp-firstview {
    background-image: url(/img/big/100yen/sp/mv-bg.png);
    background-position: right 0 top -27px;
    background-size: 100%;
  }
  @supports (background-image: url(/img/big/100yen/sp/mv-bg.webp)) {
    .lp-firstview {
      background-image: url(/img/big/100yen/sp/mv-bg.webp);
    }
  }
}

/*
	アニメーション
*/
.lp-title {
  position: relative;
  z-index: 0;
  display: block;
  margin: 0 auto;
  text-align: center;
  -webkit-transform: scale(0.3);
  transform: scale(0.3);
  -webkit-animation: scaleUp 0.8s ease 0s 1 forwards;
  animation: scaleUp 0.8s ease 0s 1 forwards;
}
.lp-title img {
  display: block;
  width: 70%;
  margin: auto;
}
@media (max-width: 750px) {
  .lp-title img {
    width: 100%;
  }
}

@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.lp-img__to-left {
  position: absolute;
  z-index: -1;
  top: 30%;
  left: -50%;
  display: block;
  width: auto;
  height: 100%;
  opacity: 0;
  -webkit-animation: slideToRight 0.5s ease-in 0s 1 forwards;
  animation: slideToRight 0.5s ease-in 0s 1 forwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
@media (max-width: 750px) {
  .lp-img__to-left {
    top: 28%;
    left: -100%;
  }
}

.lp-img__to-right {
  position: absolute;
  z-index: -1;
  top: 30%;
  right: -50%;
  display: block;
  width: auto;
  height: 100%;
  opacity: 0;
  -webkit-animation: slideToLeft 0.5s ease-in 0s 1 forwards;
  animation: slideToLeft 0.5s ease-in 0s 1 forwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
@media (max-width: 750px) {
  .lp-img__to-right {
    top: 28%;
    right: -100%;
  }
}

@-webkit-keyframes slideToRight {
  0% {
    opacity: 0;
    left: -40%;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    left: -9%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    left: -9%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes slideToRight {
  0% {
    opacity: 0;
    left: -40%;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    left: -9%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    left: -9%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes slideToLeft {
  0% {
    opacity: 0;
    right: -40%;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    right: -9%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    right: -9%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes slideToLeft {
  0% {
    opacity: 0;
    right: -40%;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    right: -9%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    right: -9%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media (max-width: 750px) {
  @-webkit-keyframes slideToRight {
    0% {
      opacity: 0;
      left: -40%;
      -webkit-transform: scale(0.3);
      transform: scale(0.3);
    }
    50% {
      left: -30%;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      left: -30%;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes slideToRight {
    0% {
      opacity: 0;
      left: -40%;
      -webkit-transform: scale(0.3);
      transform: scale(0.3);
    }
    50% {
      left: -30%;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      left: -30%;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @-webkit-keyframes slideToLeft {
    0% {
      opacity: 0;
      right: -40%;
      -webkit-transform: scale(0.3);
      transform: scale(0.3);
    }
    50% {
      right: -30%;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      right: -30%;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes slideToLeft {
    0% {
      opacity: 0;
      right: -40%;
      -webkit-transform: scale(0.3);
      transform: scale(0.3);
    }
    50% {
      right: -30%;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      right: -30%;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
}
.lp-end {
  position: relative;
  display: block;
  background-color: #f8f8fe;
  background-image: repeating-linear-gradient(-45deg, #fff, #fff 20px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 45px);
}
@media (max-width: 750px) {
  .lp-end {
    background-image: repeating-linear-gradient(-45deg, #fff, #fff 14px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 32px);
  }
}

.lp-scroll-top {
  position: absolute;
  right: 20px;
  bottom: 8px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50rem;
  background-color: #524cd9;
  color: rgba(255, 255, 255, 0);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.lp-scroll-top::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  border-top: solid 4px #fff;
  border-left: solid 4px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.lp-scroll-top:hover {
  background-color: #ff3a3a;
  color: rgba(255, 255, 255, 0);
}

.js-fadeIn-to-right {
  opacity: 0;
  -webkit-transform: translate(-10%, 0);
  transform: translate(-10%, 0);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.js-fadeIn-to-right.is-show {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.js-fadeIn-to-left {
  opacity: 0;
  -webkit-transform: translate(10%, 0);
  transform: translate(10%, 0);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.js-fadeIn-to-left.is-show {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.js-fadeIn {
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.js-fadeIn.is-show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.js-accordion-header {
  position: relative;
  text-align: center;
  padding-right: 3rem;
  color: #e61616;
  font-weight: bold;
  font-size: 16px;
}
.js-accordion-header::after, .js-accordion-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 15%;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 0.75em;
  background-color: #e61616;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-accordion-header::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.js-accordion-open .js-accordion-header::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.link-big-top {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #0000FF !important;
}
.link-big-top:visited, .link-big-top:link {
  color: #0000FF !important;
}
.link-big-top:hover {
  opacity: 0.8;
}

/* add for top banner */
.topBanner {
  margin: 12px auto 16px auto;
  max-width: 980px;
  padding-left: 16px;
  padding-right: 16px;
}

.topBanner a, .topBanner img {
  display: block;
  margin: 0 auto;
}

.topBanner img {
  width: 100%;
  height: auto;
  max-width: 750px;
}

@media (max-width: 768px) {
  .topBanner {
    margin-bottom: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.fixed-banner {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
}
@media (max-width: 576px) {
  .fixed-banner {
    bottom: 0px;
    right: 0px;
  }
}
.fixed-banner[data-display-flag=false] {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.fixed-banner[data-display-flag=false] img {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.fixed-banner-link {
  position: relative;
  z-index: 3;
}

.fixed-banner-img {
  width: 476px;
  height: auto;
  cursor: pointer;
}
@media (max-width: 576px) {
  .fixed-banner-img {
    width: 100%;
    height: auto;
  }
}
.fixed-banner-img:hover, .fixed-banner-img:active {
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
}

.fixed-banner-cancel {
  position: absolute;
  display: block;
  top: -22px;
  right: 0;
  z-index: 4;
}
.fixed-banner-cancelBtn {
  width: 44px;
  height: 44px;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background: #FFFFFF;
  border-radius: 50%;
  border: 1px solid #bcbcbc;
  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;
  cursor: pointer;
}
.fixed-banner-cancelBtn:hover {
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
}
.fixed-banner-cancelBtn:hover > img {
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
}
.fixed-banner-cancelBtn > img {
  width: 24px;
  height: auto;
  display: block;
  cursor: pointer;
}

body:has(.fixed-banner) {
  padding-bottom: 140px;
}

body:has(.fixed-banner[data-display-flag=false]) {
  padding-bottom: 0px;
}

.largeBanner.pitari-banner {
  display: block;
  max-width: 1080px;
  width: 100%;
  padding: 0px 30px;
  margin: 20px auto 80px auto;
}
@media (max-width: 576px) {
  .largeBanner.pitari-banner {
    margin-top: 16px;
    margin-bottom: 52px;
  }
}
.largeBanner.pitari-banner img {
  width: 100%;
  height: auto;
}
.largeBanner.pitari-banner a:hover {
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
}
.largeBanner.pitari-banner.mega {
  margin-top: 40px;
}
@media (max-width: 576px) {
  .largeBanner.pitari-banner.mega {
    margin-top: 16px;
  }
}