@charset "UTF-8";

/* =========================================================
  Foundation
========================================================= */
body {
  font-family: "Inter", "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  line-height: 1.7;
}

#wrapper {
  background-color: #fff;
}

p {
  color: #111;
}

img {
  max-width: 100%;
  -webkit-user-drag: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #038eed;
  outline-offset: 3px;
}

/* =========================================================
  Shared components
========================================================= */
.is-pc {
  display: block;
}
.is-sp {
  display: none;
}

.section-inner {
  width: 90%;
  max-width: 1240px;
  margin: auto;
}

.cta-button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  border-radius: 100vmax;
  background-image: linear-gradient(
    109.5deg,
    #038eed 6.09%,
    #005cbe 100%
  );
}

.cta-button::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: #fff;
  box-shadow: inset 0 0 0 2px #038eed;
  content: "";
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cta-button span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: inherit;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

.cta-button--secondary {
  padding: 2px;
}

.cta-button--secondary span {
  background: #fff;
  color: #038eed;
}

h2 {
  margin-bottom: 52px;
  font-size: 3rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  h2{
    margin-bottom: 32px;
    font-size: 2rem;
  }
}

/* =========================================================
  Header
========================================================= */
.header__outer,
.header__inner {
  height: 88px;
}

.header__outer {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 984px;
  margin: 0 auto;
  padding: 0 10px;
}

.header__logo {
  display: block;
  width: 58px;
  height: 44px;
}

.header__actions,
.header__cta-list {
  display: flex;
}

.header__actions {
  gap: 24px;
}

.header__cta-list {
  gap: 12px;
}

.header__actions .cta-button {
  height: 44px;
}

.header__actions .cta-button span {
  font-size: 0.875rem;
}

.close-button {
  display: flex;
  align-items: center;
  height: 44px;
  border: 2px solid #111;
  background-color: #fff;
}

.close-button .js-page-close {
  display: flex;
  justify-content: space-evenly;
  width: 180px;
  max-width: 380px;
  padding: 0 20px 0 26px;
  border: 0;
  background: transparent;
  color: #111;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.close-button .js-page-close p {
  line-height: 2;
}

.close-button__icon {
  width: 20px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .header__outer,
  .header__inner{
    height: 65px;
  }
  .header__cta-list{
    position: fixed;
    z-index: 10;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.16);
    opacity: 1;
    visibility: visible;
    gap: 8px;
    transform: translateY(0);
    transition: opacity 0.25s ease, visibility 0s, transform 0.25s ease;
  }
  .header__cta-list.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0s 0.25s, transform 0.25s ease;
  }
  .header__cta-list .cta-button {
    width: 100%;
    height: 44px;
  }
  .header__cta-list .cta-button span {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.875rem;
  }
  .close-button {
    height: 40px;
  }
}

/* =========================================================
  Main visual
========================================================= */
.l-main {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.mainvisual__img {
  width: 100%;
  overflow: hidden;
  border-style: solid none;
  border-width: 8px;
  border-color: #038eed;
  background: url("/promotion/ordercard/corp/bizone-h_cm_manga/images/mv/mv_bg.png") center / cover no-repeat,
    #038eed;
}

.mainvisual__img picture {
  display: block;
}

.mainvisual__img img {
  width: 100%;
  max-width: 1100px;
  height: 205px;
  margin: auto;
  object-fit: contain;
}

.mainvisual__txt {
  padding: 40px 0;
  font-size: 1.25rem;
  font-weight: 600;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .mainvisual__img img {
    height: auto;
    aspect-ratio: 1100 / 205;
  }
}

@media screen and (max-width: 767px) {
  .mainvisual__img{
    height: auto;
    background: none;
  }
  .mainvisual__img img {
    width: 100%;
    max-width: none;
    height: auto;
  }
  .mainvisual__txt{
    font-size: 1rem;
    padding: 20px;
  }
}

/* =========================================================
  Manga
========================================================= */
.manga__wrap {
  padding: 60px 0 100px;
}

.manga__area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: auto;
  gap: 64px 48px;
}

.manga__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 340px;
  gap: 20px;
}

.manga__card::before {
  position: absolute;
  z-index: 0;
  inset: -18px;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.08);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.manga__card > * {
  position: relative;
  z-index: 1;
}

.manga__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.manga__heading {
  width: 100%;
  border-bottom: 2px solid #038eed;
}

.manga__heading h3 {
  padding: 8px 10px;
  color: #038eed;
  font-size: 1.25rem;
  font-weight: 600;
}

.manga__thumbnail {
  height: 256px;
  margin-bottom: 10px;
  overflow-y: hidden;
}

.manga__caption {
  padding: 0 5px;
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: left;
}

.manga__read-button {
  width: 100%;
  max-width: 240px;
  margin-top: auto;
  padding: 12px 52px;
  border: 2px solid #111;
  border-radius: 100vmax;
  background-color: #fff500;
  color: #111;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.manga__read-button:focus-visible {
  outline: 3px solid #038eed;
  outline-offset: 3px;
}

@media screen and (max-width: 1023px) {
  .manga__area.section-inner{
    width: 98%;
  }
  .manga__area ul{
    gap: 64px 28px;
  }
}

@media screen and (max-width: 767px) {
  .manga__wrap{
    padding-top: 40px;
  }
  .manga__area.section-inner{
    width: 90%;
  }
  .manga__card{
    width: 100%;
  }
  .manga__caption{
    font-size: 1rem;
  }
}

/* =========================================================
  How to use
========================================================= */
.howto__wrap {
  padding: 88px 0;
  background-color: #e5f5ff;
}

.howto__area ul {
  display: flex;
  gap: 40px;
}

.howto__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding: 30px 24px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 8px 20px 0 rgba(1, 97, 195, 0.08);
  gap: 12px;
}

.howto__card img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.howto__card h3 {
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.howto__caption {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .howto__area ul{
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .howto__area ul {
    flex-direction: column;
  }
  .howto__card{
    padding: 24px;
  }
  .howto__card img{
    max-width: 180px;
  }
  .howto__caption{
    font-size: 1rem;
  }
}
/* =========================================================
  Flow
========================================================= */
.flow__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 88px 0;
}

.flow__area {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 64px;
  row-gap: 28px;
}

.flow__box {
  display: contents;
}

.flow__box--card .flow__heading,
.flow__box--card .flow__caption,
.flow__box--card .flow__contents {
  grid-column: 1;
}

.flow__box--item .flow__heading,
.flow__box--item .flow__caption,
.flow__box--item .flow__contents {
  grid-column: 2;
}

.flow__heading {
  position: relative;
  display: flex;
  grid-row: 1;
  align-items: center;
  justify-content: center;
  padding: 4px 48px;
  border-radius: 8px;
  background: #DAF1FF;
  color: #038eed;
  font-size: 1.25rem;
  font-weight: 600;
}

.flow__heading::before {
  position: absolute;
  left: 6px;
  width: 31px;
  height: 31px;
  background: url("/promotion/ordercard/corp/bizone-h_cm_manga/images/icon/ico_cashmap.png") center / contain no-repeat;
  content: "";
}

.flow__caption {
  grid-row: 2;
  margin: auto 0;
  line-height: 1.8;
  text-align: center;
}

.flow__contents {
  grid-row: 3;
  width: 100%;
}

.flow__card {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.flow-card__item {
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fcfcfc;
}

.flow-card__title {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 600;
}

.flow-card__item img {
  width: auto;
  max-height: 80px;
}

.flow__item {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fcfcfc;
}

.flow-item__row {
  display: grid;
  grid-template-columns: 0.3fr 1fr 0.5fr;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid #e6e6e6;
}

.flow-item__row:last-child {
  border-bottom: none;
}

.flow-item__number {
  color: #e8e8e8;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.flow-item__title {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.flow__wrap .cta-button {
  margin-top: 80px;
  box-shadow: 0 8px 20px 0 rgba(1, 97, 195, 0.20);
}

.flow__wrap .cta-button span {
  padding-left: 58px;
  gap: 8px;
}

.flow__wrap .cta-button span::after {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("/promotion/ordercard/corp/bizone-h_cm_manga/images/icon/ico_arrow_left.png") center / contain no-repeat;
  mask: url("/promotion/ordercard/corp/bizone-h_cm_manga/images/icon/ico_arrow_left.png") center / contain no-repeat;
  content: "";
  transition: background-color 0.25s ease;
}

@media screen and (max-width: 1023px) {
  .flow__area{
    column-gap: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .flow__wrap{
    padding-bottom: 88px;
  }
  .flow__area {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .flow__box {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .flow__box--card {
    order: 1;
  }

  .flow__box--item {
    order: 2;
  }
  .flow-card__title{
    margin-bottom: 8px;
  }
  .flow-card__item img{
    max-height: 58px;
  }
  .flow__item{
    padding: 0 8px;
  }
  .flow-item__row{
    grid-template-columns: 0.5fr 1fr 0.5fr;
  }
  .flow__wrap .cta-button{
    width: 90%;
    margin-top: 88px;
  }
  .flow__wrap .cta-button span {
    font-size: 1.125rem;
    gap: 2px;
    margin: auto;
    padding: 20px 0 20px 10px;
  }
  .flow__wrap .cta-button span::after {
    width: 18px;
    height: 18px;
  }
}

/* =========================================================
  Logo
========================================================= */
.cashmap-logo__inner {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 72px;
}

@media only screen and (max-width: 767px) {
  .cashmap-logo__inner {
    max-width: 260px;
    margin: 0 auto 40px;
  }
}
/* =========================================================
  Manga modal
========================================================= */
html.is-manga-modal-open {
  overflow: hidden;
}

.manga-modal {
  width: calc(100% - 32px);
  max-width: 1280px;
  height: calc(100vh - 16px);
  height: calc(100dvh - 16px);
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: none;
  background: transparent;
  color: #fff;
}

.manga-modal::backdrop {
  background: rgba(17, 17, 17, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.manga-modal__panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
}

.manga-modal__panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 6px 16px 6px 24px;
  gap: 24px;
}

.manga-modal__panel > header h2 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.manga-modal__close {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

.manga-modal__close span::before,
.manga-modal__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  content: "";
}

.manga-modal__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.manga-modal__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.manga-modal__close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.manga-modal__content {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  padding: 0 64px 12px;
  overflow: hidden;
  gap: 12px;
}

.manga-slider-layout {
  display: grid;
  grid-template-columns: 44px minmax(0, 680px) 44px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  gap: 20px;
}

.manga-slider {
  width: 100%;
  min-width: 0;
  height: 100%;
}

.manga-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.manga-slider__image {
  width: auto;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.manga-slider__button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.72);
  cursor: pointer;
}

.manga-slider__button::before {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

.manga-slider__button--prev::before {
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
}

.manga-slider__button--next::before {
  left: 18px;
  transform: translateY(-50%) rotate(-135deg);
}

.manga-slider__button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.manga-slider__button.swiper-button-disabled {
  opacity: 0.25;
  cursor: default;
}

.manga-slider__pagination {
  position: static;
  width: 100%;
  color: #fff;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
  text-align: center;
}

.manga-slider__pagination .swiper-pagination-current,
.manga-slider__pagination .swiper-pagination-total {
  display: inline-block;
  width: 2ch;
  text-align: center;
}

.manga-slider__swipe-hint {
  display: none;
}

@media only screen and (max-width: 767px) {
  .manga-modal {
    width: 100%;
    height: 100vh;
    height: 100dvh;
  }

  .manga-modal__panel > header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .manga-modal__panel > header h2 {
    font-size: 1rem;
  }

  .manga-modal__content {
    grid-template-rows: auto auto;
    align-content: center;
    padding: 0 12px 12px;
  }

  .manga-slider__button {
    display: none;
  }

  .manga-slider-layout {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: calc((100vh - 116px) * 0.707);
    max-width: calc((100dvh - 116px) * 0.707);
    aspect-ratio: 1076 / 1522;
    justify-self: center;
    gap: 0;
  }

  .manga-slider__swipe-hint {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: block;
    width: 160px;
    max-width: calc(100% - 40px);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease, visibility 0s;
  }

  .manga-slider__swipe-hint.is-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0s 0.25s;
  }
}

/* =========================================================
  Footer
========================================================= */
.footer {
  padding-bottom: 135px;
  background: #111;
  letter-spacing: 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 10px;
}

.footer__list {
  display: flex;
  gap: 32px;
}

.footer__item a {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
}

.footer__item a::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.5em;
  transform: rotate(-45deg);
  border-right: solid #fff 2px;
  border-bottom: solid #fff 2px;
  vertical-align: middle;
  content: "";
}

.footer__pagetop-button {
  text-indent: -9999px;
}

.footer__pagetop-button span {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: url("/promotion/ordercard/corp/bizone-h_cm_manga/images/icon/ico_pagetop.png") no-repeat 50% 50%;
  background-size: 24px 24px;
  transition: background-color 0.25s ease;
}

.footer .close-button {
  width: 380px;
  height: 50px;
  margin: 0 auto;
  border-color: #fff;
  background-color: #111;
}

.footer .close-button .js-page-close {
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  font-size: 1.25rem;
}

.footer .close-button .js-page-close p {
  color: #fff;
}

.footer .close-button__icon {
  width: 27px;
  height: 27px;
}

@media screen and (max-width: 767px) {
  .footer__inner{
    width: 90%;
    padding: 40px 0;
    align-items: flex-start;
  }
  .footer .close-button{
    width: 90%;
  }
  .footer__list{
    flex-direction: column;
    gap: 16px;
  }
}

/* =========================================================
  Hover interactions
========================================================= */
.cta-button,
.cta-button span,
.close-button,
.close-button .js-page-close,
.close-button .js-page-close p,
.close-button__icon img,
.manga__read-button,
.manga-modal__close,
.manga-modal__close span::before,
.manga-modal__close span::after,
.manga-slider__button,
.manga-slider__button::before {
  transition: 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .cta-button:hover::before {
    opacity: 1;
  }

  .cta-button:hover span {
    color: #038eed;
  }

  .cta-button--secondary:hover {
    background-image: linear-gradient(109.5deg, #038eed 6.09%, #005cbe 100%);
    box-shadow: none;
  }

  .cta-button--secondary:hover::before {
    opacity: 0;
  }

  .cta-button--secondary:hover span {
    background: transparent;
    color: #fff;
  }

  .close-button:hover {
    background: #111;
  }

  .close-button:hover .js-page-close,
  .close-button:hover .js-page-close p {
    color: #fff;
  }

  .close-button:hover .close-button__icon img {
    filter: invert(1);
  }

  .footer .close-button:hover {
    background: #fff;
  }

  .footer .close-button:hover .js-page-close,
  .footer .close-button:hover .js-page-close p {
    color: #111;
  }

  .footer__pagetop-button:hover span {
    background-color: rgba(255, 255, 255, 0.14);
  }

  .footer__item a:hover {
    text-decoration: underline;
    text-underline-offset: 0.25em;
  }

  .manga__card {
    cursor: pointer;
  }

  .manga__card:hover .manga__read-button,
  .manga__read-button:hover {
    background: #111;
    color: #fff500;
  }

  .manga__card:hover::before {
    opacity: 1;
  }

  .manga-modal__close:hover {
    background: #fff;
  }

  .manga-modal__close:hover span::before,
  .manga-modal__close:hover span::after {
    background: #111;
  }

  .manga-slider__button:not(.swiper-button-disabled):hover {
    background: #fff;
  }

  .manga-slider__button:not(.swiper-button-disabled):hover::before {
    border-color: #111;
  }
}
