@charset "UTF-8";
/* https://piccalil.li/blog/a-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
}

* {
  padding: 0;
  margin: 0;
  line-height: 1;
}

main {
  display: block;
}

ul li {
  list-style: none;
}

.onlyPc {
  display: block;
}
.onlyPc.--inline {
  display: inline;
}
.onlyPc.--flex {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .onlyPc {
    display: none;
  }
  .onlyPc.--inline {
    display: none;
  }
  .onlyPc.--flex {
    display: none;
  }
}

.onlySp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .onlySp {
    display: block;
  }
  .onlySp.--inline {
    display: inline;
  }
  .onlySp.--flex {
    display: flex;
  }
}

.sectionTitle {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3;
  color: #313131;
  text-align: center;
}
.sectionTitle::after {
  display: block;
  width: 6.1rem;
  height: 0.4rem;
  content: "";
  background: linear-gradient(228deg, rgb(183, 14, 45) 12%, rgb(132, 0, 24) 88%);
  border-radius: 0.2rem;
}
@media screen and (max-width: 1024px) {
  .sectionTitle {
    gap: 2.4rem;
    font-size: 2.8rem;
  }
}

.fadeIn {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fadeIn.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn.fadeIn--delay1 {
  transition-delay: 0.1s;
}
.fadeIn.fadeIn--delay2 {
  transition-delay: 0.2s;
}
.fadeIn.fadeIn--delay3 {
  transition-delay: 0.3s;
}

.fixNav {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.fixNav.is-hidden {
  transform: translateY(100%);
}
.fixNav__inner {
  display: flex;
  flex-direction: row;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  background-color: #840018;
  box-shadow: 0 -0.2rem 0.8rem 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .fixNav__inner {
    gap: 1.6rem;
    padding: 0.8rem 2.4rem;
  }
}
.fixNav__text {
  display: flex;
  gap: 1em;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .fixNav__text {
    flex-direction: column;
    gap: 0.25em;
    align-items: flex-start;
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
.fixNav__buttons {
  flex-shrink: 0;
}
.fixNav__buttonsPc {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .fixNav__buttonsPc {
    display: none;
  }
}
.fixNav__buttonsSp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .fixNav__buttonsSp {
    display: flex;
    gap: 0.8rem;
    align-items: center;
  }
}
.fixNav__button {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.fixNav__button:hover {
  opacity: 0.8;
}
.fixNav__button img {
  display: block;
}
.fixNav__buttonSpApple {
  display: block;
  width: 12rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.fixNav__buttonSpApple:hover {
  opacity: 0.8;
}
.fixNav__buttonSpApple img {
  display: block;
  width: 100%;
  height: auto;
}
.is-mobile.is-android .fixNav__buttonSpApple {
  display: none !important;
}
.fixNav__buttonSpGoogle {
  display: block;
  width: 14.7rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.fixNav__buttonSpGoogle:hover {
  opacity: 0.8;
}
.fixNav__buttonSpGoogle img {
  display: block;
  width: 100%;
  height: auto;
}
.is-mobile.is-ios .fixNav__buttonSpGoogle {
  display: none !important;
}
.fixNav__buttonGoogle {
  width: 14.7rem;
}
.fixNav__buttonGoogle img {
  width: 100%;
  height: auto;
}
.is-mobile.is-ios .fixNav__buttonGoogle {
  display: none !important;
}
.fixNav__buttonApple {
  width: 12rem;
}
.fixNav__buttonApple img {
  width: 100%;
  height: auto;
}
.is-mobile.is-android .fixNav__buttonApple {
  display: none !important;
}
.fixNav__buttonQr {
  width: 6rem;
}
.fixNav__buttonQr:hover {
  opacity: 1;
}
.fixNav__buttonQr img {
  width: 100%;
  height: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 7.5rem;
  padding: 2rem 1rem 2rem 3.2rem;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 6.4rem;
    padding: 0 0 0 0.8rem;
  }
}
.header__logoLink {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header__logoLink:hover {
  opacity: 0.8;
}
.header__logo {
  display: block;
  width: 21.5rem;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 15.1165rem;
  }
}
.header__hamburger {
  position: relative;
  z-index: 1102;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  padding: 0;
  cursor: pointer;
  background-color: #840018;
  border: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__hamburger {
    gap: 0.6rem;
    width: 6.4rem;
    height: 6.4rem;
  }
}
.header__hamburger:hover {
  opacity: 0.8;
}
.header__hamburgerLine {
  display: block;
  width: 2.6rem;
  height: 0.2rem;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__hamburgerLine {
    width: 2.6rem;
    height: 0.2rem;
  }
}
.header__hamburger.is-active .header__hamburgerLine:nth-child(1) {
  transform: translateY(0.8rem) rotate(45deg);
}
.header__hamburger.is-active .header__hamburgerLine:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburgerLine:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}
.header__overlay {
  position: fixed;
  top: 7.5rem;
  left: 0;
  z-index: 1099;
  visibility: hidden;
  width: 100%;
  height: calc(100% - 7.5rem);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__overlay {
    top: 6.4rem;
    height: calc(100% - 6.4rem);
  }
}
.header__overlay.is-active {
  visibility: visible;
  opacity: 1;
}
.header__nav {
  position: fixed;
  top: 7.5rem;
  right: 0;
  z-index: 1101;
  width: 32rem;
  height: calc(100% - 7.5rem);
  overflow-y: auto;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    top: 6.4rem;
    width: 80%;
    max-width: 32rem;
    height: calc(100% - 6.4rem);
  }
}
.header__nav.is-active {
  transform: translateX(0);
}
.header__navList {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header__navItem {
  border-bottom: 0.1rem solid #e5e7eb;
}
.header__navItem:first-child {
  border-top: 0.1rem solid #e5e7eb;
}
.header__navLink {
  display: flex;
  align-items: center;
  width: 100%;
  height: 6.4rem;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: #313131;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.header__navLink:hover {
  background-color: #f8f6f6;
}
@media screen and (max-width: 1024px) {
  .header__navLink {
    height: 6.4rem;
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
  }
}

.mv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(38.06% 123.82% at 50% 50%, #b70e2d 0%, #840018 100%);
}
@media (width >= 1024px) {
  .mv {
    min-height: 72.5rem;
  }
}
.mv__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  transform: translateX(-50%) translateY(-50%);
}
.mv__bgImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: mv-background 0.75s 0.2s ease;
}
.mv__wrapper {
  position: relative;
  z-index: 10;
}
.mv__wrapper--sp {
  display: block;
}
@media (width >= 1024px) {
  .mv__wrapper--sp {
    display: none;
  }
}
.mv__wrapper--pc {
  display: none;
}
@media (width >= 1024px) {
  .mv__wrapper--pc {
    display: block;
  }
}
.mv__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
  width: 34.5rem;
  padding: 4.4rem 0 5rem;
}
@media (width >= 1024px) {
  .mv__content {
    flex-direction: row;
    gap: 5rem;
    width: 100.8rem;
    padding: 2.058rem 0;
  }
}
.mv__small {
  position: absolute;
  right: 0;
  bottom: -2rem;
  font-size: 1rem;
  color: #fff;
}
@media (width >= 1024px) {
  .mv__small {
    bottom: -1rem;
  }
}
.mv__text {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
}
@media (width >= 1024px) {
  .mv__text {
    gap: 3.6rem;
    align-items: flex-start;
  }
}
.mv__title {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
  align-items: center;
  font-weight: 500;
  color: #fff;
  animation: mv-fade-in 0.6s 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@media (width >= 1024px) {
  .mv__title {
    gap: 2.4rem;
    align-items: flex-start;
  }
}
.mv__titleMain {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1em;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (width >= 1024px) {
  .mv__titleMain {
    font-size: 5rem;
    text-align: left;
  }
}
.mv__titleSub {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1em;
  text-align: left;
  letter-spacing: 0.03em;
}
@media (width >= 1024px) {
  .mv__titleSub {
    font-size: 2.6rem;
    text-align: center;
  }
}
.mv__featureWrapper {
  width: 100%;
  animation: mv-fade-in 0.6s 1.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@media screen and (max-width: 1024px) {
  .mv__featureWrapper {
    animation-delay: 0s;
  }
}
.mv__featureList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 18.8rem;
}
@media (width >= 1024px) {
  .mv__featureList {
    width: 40.7rem;
    height: auto;
  }
}
.mv__featureItem {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #840018;
  text-align: center;
  letter-spacing: -0.02em;
  background-color: #fff;
}
.mv__featureItem1 {
  padding: 1.2rem 0.5rem;
  font-size: 2rem;
  line-height: 1em;
  letter-spacing: 0;
  border-radius: 1.2rem 1.2rem 0 0;
  opacity: 0.95;
}
@media (width >= 1024px) {
  .mv__featureItem1 {
    padding: 2rem 1rem;
    font-size: 2.4rem;
    letter-spacing: -0.02em;
    opacity: 1;
  }
}
.mv__featureItem2 {
  display: flex;
  align-items: flex-end;
  padding: 0.6rem 1.35rem 1.4rem;
  font-size: 2.4rem;
  line-height: 1em;
  letter-spacing: -0.048rem;
  border-top: 0.1rem solid #840018;
  border-bottom: 0.1rem solid #840018;
}
@media (width >= 1024px) {
  .mv__featureItem2 {
    padding: 1.4rem 2rem;
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    border-top: 0.1rem solid #840018;
    border-bottom: none;
  }
}
.mv__featureItem3 {
  padding: 1.6rem 0.5rem;
  font-size: 3rem;
  line-height: 1em;
  letter-spacing: 0;
  border-radius: 0 0 1.2rem 1.2rem;
}
@media (width >= 1024px) {
  .mv__featureItem3 {
    padding: 1.2rem 1rem 1.5rem;
    font-size: 3.1rem;
    letter-spacing: -0.02em;
    border-top: 0.1rem solid #840018;
    border-bottom: 0.1rem solid #840018;
  }
}
.mv__featureHighlight {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -0.088rem;
}
.mv__featurePlus {
  font-size: 2.4rem;
}
@media (width >= 1024px) {
  .mv__featurePlus {
    font-size: 4.4rem;
  }
}
.mv__qrWrapper {
  display: none;
}
@media (width >= 1024px) {
  .mv__qrWrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    width: 100%;
    padding: 3em 1.4rem 1rem;
    background-color: #fff;
    border-radius: 1.2rem;
    animation: mv-fade-in 0.6s 1.3s cubic-bezier(0.4, 0, 0.2, 1) both;
  }
}
.mv__qrTooltipWrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0.25em 1em;
  background-color: #c80025;
  border-radius: 1.2rem 1.2rem 0 0;
}
.mv__qrTooltip {
  position: relative;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.7em;
  color: #fff;
}
.mv__qrTooltip::before {
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent transparent #c80025 transparent;
  border-style: solid;
  border-width: 0 0.9rem 1.4rem;
  transform: rotate(-180deg);
}
.mv__qrCode {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  width: 37.9rem;
}
.mv__appLinkSp {
  display: block;
  width: 100%;
}
@media (width >= 1024px) {
  .mv__appLinkSp {
    display: none;
  }
}
.mv__thumb {
  width: 34.5rem;
  height: 39.2rem;
}
.mv__thumbSp {
  display: block;
}
@media (width >= 1024px) {
  .mv__thumbSp {
    display: none;
  }
}
.mv__thumbPc {
  display: none;
}
@media (width >= 1024px) {
  .mv__thumbPc {
    display: block;
    width: 55.1rem;
    height: auto;
  }
}
.mv__thumbImage {
  width: 100%;
  height: auto;
}
.mv__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding-top: 3rem;
  overflow: hidden;
  border-radius: 0 0 17.25rem 17.25rem;
}
@media (width >= 1024px) {
  .mv__frame {
    width: 55.1rem;
    padding-top: 6rem;
    border-radius: 0 0 27.55rem 27.55rem;
  }
}
.mv__frameInner {
  position: relative;
  width: 34.5rem;
  height: 34.5rem;
}
@media (width >= 1024px) {
  .mv__frameInner {
    width: 55.1rem;
    height: 55.1rem;
  }
}
.mv__frameInner::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  flex-shrink: 0;
  width: 34.5rem;
  height: 34.5rem;
  content: "";
  background-color: #f66182;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  animation: mv-circle 0.4s ease-out 0.75s forwards;
}
@media (width >= 1024px) {
  .mv__frameInner::before {
    width: 55.1rem;
    height: 55.1rem;
  }
}
.mv__frameDevice {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 10;
  width: 27.6rem;
  height: auto;
  opacity: 0;
  transform: translateX(-50%) translateY(50%);
  animation: mv-device 1.25s cubic-bezier(0.16, 0.75, 0.3, 1) 0.9s forwards;
}
@media (width >= 1024px) {
  .mv__frameDevice {
    width: 44.1rem;
  }
}

@keyframes mv-device {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(30%);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0%);
  }
}
@keyframes mv-circle {
  0% {
    transform: translateX(-50%) scale(0);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}
@keyframes mv-background {
  0% {
    transform: scale(2) rotate(45deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
@keyframes mv-fade-in {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.appDownloadBox {
  display: flex;
  flex-direction: row;
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
}
.downloadCta .appDownloadBox {
  padding: 0.8rem 1.6rem;
  background-color: #fff;
  border-radius: 0.8rem;
}
.mv__qrCode .appDownloadBox {
  gap: 2rem;
}
.appDownloadBox__qr {
  flex-shrink: 0;
  width: auto;
  height: auto;
}
.appDownloadBox__badges {
  display: flex;
  flex-direction: row;
  gap: 1.3rem;
  align-items: center;
}
.appDownloadBox__link {
  display: block;
  line-height: 0;
  transition: opacity 0.3s ease;
}
.appDownloadBox__link:hover {
  opacity: 0.8;
}
.appDownloadBox__badge {
  width: auto;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .appDownloadBox__badge {
    height: 6rem;
  }
}
.is-mobile.is-android .appDownloadBox__linkApple {
  display: none !important;
}
.is-mobile.is-ios .appDownloadBox__linkGoogle {
  display: none !important;
}

.carouselSlider {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  overflow: visible;
  overflow: hidden;
  background-color: #f8f6f6;
}
.carouselSlider__swiper {
  position: relative;
  width: 100%;
  max-width: 119rem;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .carouselSlider__swiper {
    max-width: 96rem;
  }
}
.carouselSlider__inner {
  width: 100%;
  overflow: hidden;
}
.carouselSlider__controls {
  display: flex;
  gap: 4.8rem;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}
.carouselSlider__arrow {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0.2rem solid #840018;
  border-radius: 50%;
  transition: background 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}
.carouselSlider__arrow::before {
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  border-top: 0.2rem solid #840018;
  border-right: 0.2rem solid #840018;
  transition: border-color 0.3s ease;
}
@media (width >= 1024px) {
  .carouselSlider__arrow:hover {
    background: radial-gradient(circle at 50% 50%, rgb(183, 14, 45) 0%, rgb(132, 0, 24) 100%);
    border-color: transparent;
  }
  .carouselSlider__arrow:hover::before {
    border-color: #fff;
  }
}
.carouselSlider__arrow.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}
@media (width >= 1024px) {
  .carouselSlider__controls .carouselSlider__arrow {
    display: none;
  }
}
.carouselSlider__arrowLeft::before {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.carouselSlider__arrowRight::before {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.carouselSlider__arrowPc {
  display: none;
}
@media (width >= 1024px) {
  .carouselSlider__arrowPc {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    transform: translateY(-50%);
  }
}
@media (width >= 1024px) {
  .carouselSlider__arrowPc.carouselSlider__arrowLeft {
    left: calc((100% - 119rem) / 2 - 2rem - 3.6rem);
  }
}
@media (width >= 1024px) {
  .carouselSlider__arrowPc.carouselSlider__arrowRight {
    right: calc((100% - 119rem) / 2 - 2rem - 3.6rem);
  }
}
.carouselSlider__track {
  display: flex;
  width: auto;
  height: auto;
  overflow: visible;
  cursor: grab;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}
.carouselSlider__track:active {
  cursor: grabbing;
}
.carouselSlider__item {
  flex-shrink: 0;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .carouselSlider__item {
    width: 80%;
    padding: 0 0.5rem;
  }
}
@media (width >= 1024px) {
  .carouselSlider__item {
    width: 33.3333333333%;
    padding: 0 1rem;
  }
}
.carouselSlider__item img {
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  object-fit: cover;
  border-radius: 0.8rem;
}
.carouselSlider__link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.carouselSlider__link:hover {
  opacity: 0.8;
}
.carouselSlider__indicators {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .carouselSlider__indicators {
    gap: 1.2rem;
  }
}
.carouselSlider__indicator {
  width: 1rem;
  height: 1rem;
  padding: 0;
  cursor: pointer;
  background-color: #d9d9d9;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.3s ease;
}
.carouselSlider__indicator:hover {
  opacity: 0.8;
}
.carouselSlider__indicatorActive {
  background-color: #840018;
}
.carouselSlider.is-single-slide .carouselSlider__controls {
  display: none;
}
.carouselSlider.is-single-slide .carouselSlider__arrowPc {
  display: none;
}
.carouselSlider.is-single-slide .carouselSlider__track {
  justify-content: center;
  cursor: default;
}
.carouselSlider.is-single-slide .carouselSlider__item {
  width: auto;
}
@media screen and (max-width: 1024px) {
  .carouselSlider.is-single-slide .carouselSlider__item {
    width: 80%;
    padding: 0;
  }
}

.feeBenefit {
  padding: 6.4rem 0;
}
@media screen and (max-width: 1024px) {
  .feeBenefit {
    padding: 6.4rem 2.4rem 0;
  }
}
.feeBenefit__inner {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  max-width: 144rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__inner {
    gap: 4rem;
  }
}
.feeBenefit__title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3em;
  color: #313131;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__title {
    font-size: 2.8rem;
  }
}
.feeBenefit__content {
  display: flex;
  flex-direction: row;
  gap: 4.8rem;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__content {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.feeBenefit__cards {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 49.2rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__cards {
    width: auto;
    padding-left: 0;
  }
}
.feeBenefit__list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}
.feeBenefit__item {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__item {
    flex-direction: row-reverse;
    gap: 1.6rem;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.feeBenefit__item:first-child {
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__item:first-child {
    padding-top: 0;
  }
}
.feeBenefit__item:last-child {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__item:last-child {
    padding-bottom: 2rem;
  }
}
.feeBenefit__icon {
  flex-shrink: 0;
  width: 11rem;
  height: 11rem;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__icon {
    width: 11rem;
    height: 11rem;
  }
}
.feeBenefit__text {
  flex: 1;
  margin: 0;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.5em;
  color: #313131;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__text {
    font-weight: 500;
  }
}
.feeBenefit__textNormal {
  display: inline-block;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  color: #313131;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__textNormal {
    font-size: 1.8rem;
  }
}
.feeBenefit__textEmphasisSmall {
  font-size: 2rem;
  font-weight: 700;
  color: #840018;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__textEmphasisSmall {
    font-size: 2.2rem;
  }
}
.feeBenefit__textEmphasisMedium {
  font-size: 2.2rem;
  font-weight: 700;
  color: #840018;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__textEmphasisMedium {
    font-size: 2.2rem;
  }
}
.feeBenefit__textEmphasisLarge {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 150%;
  color: #840018;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__textEmphasisLarge {
    font-size: 3.6rem;
  }
}
.feeBenefit__textEmphasisXLarge {
  font-size: 4.4rem;
  font-weight: 700;
  color: #840018;
}
.feeBenefit__imageWrapper {
  flex-shrink: 1;
  width: 72rem;
  min-width: 0;
  max-width: 72rem;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__imageWrapper {
    width: auto;
    margin-inline: auto;
  }
}
.feeBenefit__image {
  width: 100%;
  height: auto;
  border-radius: 1.2rem 0 0 1.2rem;
}
@media screen and (max-width: 1024px) {
  .feeBenefit__image {
    border-radius: 1.2rem;
  }
}
.feeBenefit__notes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.feeBenefit__note {
  padding-left: 0.5em;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5em;
  color: #313131;
  text-indent: -0.5em;
}
.feeBenefit__noteMark {
  display: inline-block;
}

.basicFeatures {
  max-width: 144rem;
  padding: 6.4rem 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .basicFeatures {
    padding: 6.4rem 2.4rem;
  }
}
.basicFeatures__inner {
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .basicFeatures__inner {
    gap: 4rem;
  }
}
.basicFeatures__titleWrapper {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .basicFeatures__titleWrapper {
    gap: 2.4rem;
  }
}
.basicFeatures__title {
  margin: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3em;
  color: #313131;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .basicFeatures__title {
    font-size: 2.8rem;
  }
}
.basicFeatures__titleUnderline {
  width: 6.1rem;
  height: 0.4rem;
}
.basicFeatures__cards {
  display: flex;
  flex-direction: row;
  gap: 4.8rem;
  max-width: 108rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .basicFeatures__cards {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.basicFeatures__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .basicFeatures__card {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .basicFeatures__card:not(:last-of-type) {
    padding-bottom: 3.2rem;
    border-bottom: 1px solid #e5e7eb;
  }
}
.basicFeatures__cardImageWrapper {
  flex-shrink: 0;
}
.basicFeatures__cardImage {
  width: 100%;
  height: auto;
}
.basicFeatures__cardContent {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .basicFeatures__cardContent {
    gap: 1.2rem;
  }
}
.basicFeatures__cardTitle {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: #313131;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .basicFeatures__cardTitle {
    width: 100%;
    font-size: 2.4rem;
    font-weight: 500;
  }
}
.basicFeatures__cardText {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 170%;
  color: #313131;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .basicFeatures__cardText {
    width: 100%;
    font-size: 1.8rem;
  }
}
.basicFeatures__cardText strong {
  font-weight: 700;
}

.downloadCta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 6.4rem 26.2rem;
  overflow: hidden;
  background: radial-gradient(243.2% 62.82% at 88.78% 80.78%, #c2002c 0%, #7a001c 100%);
}
@media screen and (max-width: 1024px) {
  .downloadCta {
    padding: 6.4rem 2.4rem;
  }
}
.downloadCta::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 137.1rem;
  height: 131rem;
  content: "";
  background-image: url("/lp/bank_app/assets/images/bg-downloadCta-pc.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  mix-blend-mode: overlay;
  transform: translateX(-50%) translateY(-55%) scale(2) rotate(45deg);
  transition: transform 1.5s 1s ease;
}
@media screen and (max-width: 1024px) {
  .downloadCta::after {
    width: 59rem;
    height: 56.2rem;
    background-image: url("/lp/bank_app/assets/images/bg-downloadCta-sp.webp");
    transform: translateX(-50%) translateY(-50%) scale(1) rotate(10deg);
    transition: transform 1s 1s ease;
  }
}
.downloadCta.is-visible::after {
  transform: translateX(-50%) translateY(-55%) scale(1) rotate(0deg);
}
@media screen and (max-width: 1024px) {
  .downloadCta.is-visible::after {
    transform: translateX(-50%) translateY(-50%) scale(0.7) rotate(0deg);
  }
}
.downloadCta__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .downloadCta__content {
    gap: 3.36rem;
  }
}
.downloadCta__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .downloadCta__header {
    gap: 2.4rem;
  }
}
.downloadCta__title {
  margin: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .downloadCta__title {
    font-size: 2.8rem;
    line-height: 1.3;
  }
}
.downloadCta__titleBr {
  display: none;
}
@media screen and (max-width: 1024px) {
  .downloadCta__titleBr {
    display: block;
  }
}
.downloadCta__description {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .downloadCta__description {
    font-size: 1.8rem;
    line-height: 1.7;
  }
}
.downloadCta__buttonsSp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .downloadCta__buttonsSp {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    justify-content: center;
  }
}
.downloadCta__buttonsPc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .downloadCta__buttonsPc {
    display: none;
  }
}
.downloadCta__buttonSpApple {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.downloadCta__buttonSpApple:hover {
  opacity: 0.8;
}
.downloadCta__buttonSpApple img {
  display: block;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .downloadCta__buttonSpApple img {
    width: auto;
    height: 6rem;
  }
}
.is-mobile.is-android .downloadCta__buttonSpApple {
  display: none !important;
}
.downloadCta__buttonSpGoogle {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.downloadCta__buttonSpGoogle:hover {
  opacity: 0.8;
}
.downloadCta__buttonSpGoogle img {
  display: block;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .downloadCta__buttonSpGoogle img {
    width: auto;
    height: 6rem;
  }
}
.is-mobile.is-ios .downloadCta__buttonSpGoogle {
  display: none !important;
}

.convenientFeatures {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  width: 100%;
  padding: 6.4rem;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures {
    padding: 6.4rem 2.4rem;
  }
}
.convenientFeatures__title {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
  margin: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3em;
  color: #313131;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__title {
    font-size: 2.8rem;
  }
}
.convenientFeatures__titleDecoration {
  display: block;
  width: 6.1rem;
  height: 0.4rem;
  background: linear-gradient(228deg, rgb(183, 14, 45) 12%, rgb(132, 0, 24) 88%);
  border-radius: 0.2rem;
}
.convenientFeatures__titleBr {
  display: none;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__titleBr {
    display: block;
  }
}
.convenientFeatures__container {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  width: 100%;
  max-width: 76rem;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__container {
    max-width: none;
  }
}
.convenientFeatures__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  justify-items: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__row {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-items: center;
  }
}
.convenientFeatures__rowBoxed {
  display: flex;
  gap: 3.2rem;
  padding: 3.2rem 3rem;
  border: 0.1rem solid #e5e7eb;
  border-radius: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__rowBoxed {
    flex-direction: column;
    padding: 0;
    border: none;
  }
}
.convenientFeatures__item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 3.2rem 2.8rem;
  border: 0.1rem solid #e5e7eb;
  border-radius: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__item {
    gap: 1.6rem;
    max-width: 32.7rem;
    padding: 3.2rem 2.4rem;
  }
}
.convenientFeatures__itemInBoxed {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0;
  border: none;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__itemInBoxed {
    gap: 1.6rem;
    padding: 3.2rem 2.4rem;
    border: 0.1rem solid #e5e7eb;
    border-radius: 1.2rem;
  }
}
.convenientFeatures__itemWithExtra {
  display: flex;
  flex-direction: row;
  gap: 3.2rem;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0;
  border: none;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__itemWithExtra {
    flex-direction: column;
    gap: 2.4rem;
    max-width: 32.7rem;
    padding: 3.2rem 2.4rem;
    border: 0.1rem solid #e5e7eb;
    border-radius: 1.2rem;
  }
}
.convenientFeatures__itemMain {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__itemMain {
    flex: auto;
  }
}
.convenientFeatures__itemVisual {
  flex-shrink: 0;
  width: 11rem;
  height: 11rem;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__itemVisual {
    width: 7rem;
    height: 7rem;
  }
}
.convenientFeatures__itemContent {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__itemContent {
    gap: 0.8rem;
  }
}
.convenientFeatures__itemTitle {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: #313131;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__itemTitle {
    font-size: 2.4rem;
  }
}
.convenientFeatures__itemDescription {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: #313131;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .convenientFeatures__itemDescription {
    font-size: 1.8rem;
    color: #666;
    text-align: left;
  }
}
.convenientFeatures__extraImageWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  width: 100%;
  max-width: 32.7rem;
}
.convenientFeatures__extraImage {
  width: 100%;
  max-width: 32.7rem;
}
.convenientFeatures__copyright {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  text-align: right;
}
.convenientFeatures__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}

.regionalCoupon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 6.4rem 2.4rem;
  overflow: hidden;
  background-image: url("/lp/bank_app/assets/images/bg-regionalCoupon_sp.webp"), linear-gradient(0deg, rgb(250, 241, 242) 0%, rgb(250, 235, 237) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (width >= 1024px) {
  .regionalCoupon {
    padding: 4rem 0;
    background-image: url("/lp/bank_app/assets/images/bg-regionalCoupon_pc.webp"), linear-gradient(0deg, rgb(250, 241, 242) 0%, rgb(250, 235, 237) 100%);
  }
}
.regionalCoupon__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  padding: 2.4rem 1.6rem;
  background-color: #fff;
  border-radius: 2rem;
}
@media (width >= 1024px) {
  .regionalCoupon__content {
    flex-direction: row-reverse;
    gap: 3.2rem;
    max-width: 85.6rem;
    padding: 2.4rem 4rem;
  }
}
.regionalCoupon__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media (width >= 1024px) {
  .regionalCoupon__text {
    flex: 1;
    gap: 1.6rem;
    padding-top: 2.4rem;
  }
}
.regionalCoupon__title {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}
@media (width >= 1024px) {
  .regionalCoupon__title {
    align-items: flex-start;
  }
}
.regionalCoupon__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.95rem 1.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, rgb(0, 116, 211) 0%, rgb(49, 0, 194) 100%);
  border-radius: 0.2rem;
}
@media (width >= 1024px) {
  .regionalCoupon__label {
    padding: 1rem 2rem 1.2rem;
    font-size: 1.8rem;
  }
}
.regionalCoupon__heading {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.3em;
  color: #313131;
  text-align: center;
}
@media (width >= 1024px) {
  .regionalCoupon__heading {
    font-size: 4rem;
    text-align: left;
  }
}
.regionalCoupon__description {
  padding: 0 1.6rem;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
  color: #313131;
}
@media (width >= 1024px) {
  .regionalCoupon__description {
    padding: 0;
    font-size: 1.8rem;
  }
}
.regionalCoupon__note {
  padding: 0 1.6rem;
  margin: 0;
  margin-left: 1em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #313131;
  text-indent: -1em;
}
@media (width >= 1024px) {
  .regionalCoupon__note {
    padding: 0;
  }
}
.regionalCoupon__image {
  flex-shrink: 0;
  height: auto;
  margin-inline: auto;
}
@media (width >= 1024px) {
  .regionalCoupon__image {
    width: 38rem;
  }
}
@media screen and (max-width: 1024px) {
  .regionalCoupon__image {
    width: 100%;
  }
}
.regionalCoupon__image img {
  display: block;
  width: 100%;
  height: auto;
}

.fullFeatures {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  width: 100%;
  padding: 6.4rem;
  background-color: #f8f6f6;
}
@media screen and (max-width: 1024px) {
  .fullFeatures {
    gap: 4rem;
    padding: 6.4rem 2.4rem;
  }
}
.fullFeatures__title {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  margin: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3em;
  color: #313131;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .fullFeatures__title {
    gap: 4rem;
    font-size: 2.8rem;
  }
}
.fullFeatures__titleDecoration {
  display: block;
  width: 6.1rem;
  height: 0.4rem;
  background: linear-gradient(228deg, rgb(183, 14, 45) 12%, rgb(132, 0, 24) 88%);
  border-radius: 0.2rem;
}
.fullFeatures__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.37rem;
  width: 100%;
  max-width: 108rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .fullFeatures__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 32.7rem;
  }
}
.fullFeatures__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 1.9rem 0 rgba(91, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .fullFeatures__item {
    width: calc((100% - 2.4rem) / 3);
    box-shadow: 0 0 1.1rem 0 rgba(91, 0, 0, 0.15);
  }
}
@media screen and (max-width: 1024px) {
  .fullFeatures__item--wide {
    width: calc((100% - 1.2rem) / 2);
  }
}
.fullFeatures__itemButton {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 1.6rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .fullFeatures__itemButton {
    gap: 0.6rem;
    padding: 0.8rem;
  }
}
.fullFeatures__itemButton:hover {
  opacity: 0.8;
}
.fullFeatures__icon {
  flex-shrink: 0;
  width: 6.4rem;
  height: 6.4rem;
}
@media screen and (max-width: 1024px) {
  .fullFeatures__icon {
    width: 5.4rem;
    height: 5.4rem;
  }
}
.fullFeatures__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fullFeatures__text {
  height: 6rem;
  margin: 0;
  font-size: clamp(1.4rem, 1.3888888889vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  color: #313131;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .fullFeatures__text {
    width: auto;
    height: auto;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.fullFeatures__modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fullFeatures__modalOverlay.is-active {
  visibility: visible;
  opacity: 1;
}
.fullFeatures__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2001;
  display: flex;
  visibility: hidden;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  width: 58rem;
  height: 58.5rem;
  padding: 4rem 2.4rem 3.2rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0.4rem 12rem rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .fullFeatures__modal {
    gap: 0.4rem;
    width: calc(100% - 2rem);
    height: auto;
    min-height: 593px;
    max-height: 90vh;
    padding: 4.8rem 1.4rem 2.4rem;
  }
}
.fullFeatures__modal.is-active {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.fullFeatures__modalContent {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  align-self: flex-start;
  max-height: calc(90vh - 10rem);
  overflow: hidden auto;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media screen and (max-width: 1024px) {
  .fullFeatures__modalContent {
    gap: 2rem;
    max-height: calc(90vh - 8rem);
    touch-action: pan-y pinch-zoom;
    will-change: transform;
  }
}
.fullFeatures__modalContent.is-changing {
  opacity: 0;
}
.fullFeatures__modalTitle {
  width: 44.5rem;
  margin: 0;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3;
  color: #313131;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .fullFeatures__modalTitle {
    width: 100%;
    max-width: 32rem;
    font-size: 2.2rem;
  }
}
.fullFeatures__modalImageWrapper {
  display: block;
  flex-shrink: 0;
}
.fullFeatures__modalImage {
  display: block;
  width: 28rem;
  height: 32rem;
  object-fit: cover;
  border: 0.1rem solid #e5e7eb;
  border-radius: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .fullFeatures__modalImage {
    width: 24rem;
    height: 27.4rem;
  }
}
.fullFeatures__modalDescription {
  width: 100%;
  max-width: 44.5rem;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: #313131;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .fullFeatures__modalDescription {
    max-width: 32rem;
    font-size: 1.6rem;
  }
}
.fullFeatures__modalNote {
  display: block;
  width: 100%;
  max-width: 44.5rem;
  padding-left: 1em;
  margin: 1.2rem 0 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #313131;
  text-align: left;
  text-indent: -1em;
}
@media screen and (max-width: 1024px) {
  .fullFeatures__modalNote {
    max-width: 32rem;
    font-size: 1.4rem;
  }
}
.fullFeatures__modalNote:empty {
  display: none;
}
.fullFeatures__modalArrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 2.4rem;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  transition: opacity 0.3s ease;
}
.fullFeatures__modalArrow:hover {
  opacity: 0.7;
}
.fullFeatures__modalArrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
.fullFeatures__modalArrowPrev {
  order: -1;
}
.fullFeatures__modalArrowNext {
  order: 1;
}
.fullFeatures__modalArrow.is-disabled {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
.fullFeatures__modalClose {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}
.fullFeatures__modalClose:hover {
  opacity: 0.7;
}
.fullFeatures__modalClose svg {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
}

.goriyou {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 6.4rem 2.4rem;
  border-bottom: 0.1rem solid #e5e7eb;
}
@media (width >= 1024px) {
  .goriyou {
    gap: 4.8rem;
    padding: 6.4rem 26.2rem;
  }
}
.goriyou__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
@media (width >= 1024px) {
  .goriyou__container {
    width: 85.6rem;
  }
}
.goriyou__visuallyHidden {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  padding: 0;
  margin: -0.1rem;
  overflow: hidden;
  white-space: nowrap;
  border-width: 0;
  clip-path: inset(50%);
}
.goriyou__accordionWrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 0.8rem;
}
.goriyou__accordionWrapper.is-open {
  border-radius: 0.8rem;
}
.goriyou__accordionTrigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 8rem;
  padding: 1rem 2.4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: #840018;
  border: none;
  border-radius: 0.8rem 0.8rem 0 0;
}
@media (width >= 1024px) {
  .goriyou__accordionTrigger {
    padding: 3rem 2.4rem;
  }
  .goriyou__accordionTrigger:hover {
    background: linear-gradient(270deg, #b70e2d 0%, #840018 98.14%);
  }
}
.goriyou__accordionContent {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  background-color: #fff;
  border: 0.1rem solid #840018;
  border-radius: 0 0 0.8rem 0.8rem;
  transition: grid-template-rows 0.3s ease;
}
.goriyou__accordionContent.is-open {
  grid-template-rows: 1fr;
}
.goriyou__accordionInner {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.goriyou__section {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2rem;
}
.goriyou__sectionTitle {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #313131;
}
.goriyou__sectionText {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.goriyou__sectionTextItem {
  padding-left: 1em;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #313131;
  text-indent: -1em;
}
.goriyou__sectionTextItem::before {
  content: "・";
}
.goriyou__sectionTextItem:not(:first-of-type) {
  margin-top: 0.5em;
}
.goriyou__sectionNote {
  padding-left: 1em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #313131;
}
.goriyou__sectionNote::before {
  content: none;
}
.goriyou__sectionNote--space {
  margin-top: 1.4rem;
}
.goriyou__icon {
  font-size: 2.4rem;
}
.goriyou__registrationSection {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
.goriyou__registrationLink {
  display: flex;
  flex-direction: row;
  gap: 1.8rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 8rem;
  padding: 1.8rem 2.4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #840018;
  text-decoration: none;
  background-color: #fff;
  border: 0.1rem solid #840018;
  border-radius: 0.8rem;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (width >= 1024px) {
  .goriyou__registrationLink:hover {
    color: #fff;
    background: linear-gradient(270deg, #b70e2d 0%, #840018 98.14%);
  }
}
@media screen and (max-width: 1024px) {
  .goriyou__registrationLink {
    font-size: min(4.2666666667vw, 2rem);
  }
}
.goriyou__arrow {
  font-size: 2.4rem;
}
.goriyou__note {
  margin: 0;
  margin-left: 1em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #313131;
  text-indent: -1em;
}

.useCasesSection {
  display: flex;
  flex-direction: column;
  gap: 5.8rem;
  align-items: center;
  width: 100%;
  max-width: 144rem;
  padding: 6.4rem 3em;
  margin-inline: auto;
  background-color: #fff;
  border-bottom: 0.1rem solid #e5e7eb;
}
@media screen and (max-width: 1024px) {
  .useCasesSection {
    gap: 4rem;
    padding: 6.4rem 0;
  }
}
.useCasesSection__title {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
  margin: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3em;
  color: #313131;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .useCasesSection__title {
    gap: 4rem;
    font-size: 2.8rem;
  }
}
.useCasesSection__titleDecoration {
  display: block;
  width: 6.1rem;
  height: 0.4rem;
  background: linear-gradient(228deg, rgb(183, 14, 45) 12%, rgb(132, 0, 24) 88%);
  border-radius: 0.2rem;
}
.useCasesSection__slider {
  width: 100%;
  max-width: none;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .useCasesSection__slider {
    width: 100%;
    max-width: none;
    padding: 0 0 0 2.4rem;
    overflow: auto hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .useCasesSection__slider::-webkit-scrollbar {
    display: none;
  }
}
.useCasesSection__list {
  display: flex;
  gap: 3.3rem;
  justify-content: center;
  max-width: 108rem;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .useCasesSection__list {
    gap: 3.2rem;
    justify-content: flex-start;
  }
}
.useCasesSection__item {
  flex: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .useCasesSection__item {
    flex: none;
    width: 70vw;
    max-width: 29.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .useCasesSection__item:last-of-type {
    box-sizing: content-box;
    padding-right: 3.4rem;
  }
}
.useCasesSection__itemArticle {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (max-width: 1024px) {
  .useCasesSection__itemArticle {
    gap: 0;
  }
}
.useCasesSection__itemFigure {
  margin: 0 0 2rem;
}
@media screen and (max-width: 1024px) {
  .useCasesSection__itemFigure {
    margin: 0 0 3rem;
  }
}
.useCasesSection__itemTitle {
  margin: 0 0 1.2rem;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: #313131;
}
@media screen and (max-width: 1024px) {
  .useCasesSection__itemTitle {
    margin: 0 0 1.2rem;
    font-size: 2.4rem;
  }
}
.useCasesSection__itemDescription {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: #666;
}
@media screen and (max-width: 1024px) {
  .useCasesSection__itemDescription {
    font-size: 1.8rem;
  }
}
.useCasesSection__image {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: 1rem 1.1rem 0 0 #840018, 1rem 1.1rem 0 0 #840018;
}
@media screen and (max-width: 1024px) {
  .useCasesSection__image {
    box-shadow: 0.8rem 0.9rem 0 0 #840018, 0.8rem 0.9rem 0 0 #840018;
  }
}
.useCasesSection__image--pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .useCasesSection__image--pc {
    display: none;
  }
}
.useCasesSection__image--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .useCasesSection__image--sp {
    display: block;
  }
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  width: 100%;
  padding: 6.4rem 2.4rem;
}
@media (width >= 1024px) {
  .contact {
    gap: 4.8rem;
    padding: 6.4rem 0;
  }
}
.contact__heading {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.3em;
  color: #313131;
  text-align: center;
}
@media (width >= 1024px) {
  .contact__heading {
    font-size: 4rem;
  }
}
.contact__cards {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 144rem;
  margin-inline: auto;
}
@media (width >= 1024px) {
  .contact__cards {
    flex-direction: row;
    align-items: stretch;
  }
}
.contact__card {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
  padding: 0 0 3.2rem;
  border-bottom: 0.1rem solid #e5e7eb;
}
@media (width >= 1024px) {
  .contact__card {
    flex: 1;
    gap: 2rem;
    padding: 0 2.4rem;
    border-right: 0.1rem solid #e5e7eb;
    border-bottom: none;
  }
  .contact__card:last-child {
    border-right: none;
  }
}
.contact__card--helpdesk {
  padding: 3.2rem 0;
}
@media (width >= 1024px) {
  .contact__card--helpdesk {
    gap: 1.1rem;
    justify-content: space-between;
    padding: 0 2.4rem;
  }
}
.contact__card:last-child {
  padding-top: 3.2rem;
  padding-bottom: 0;
  border-bottom: none;
}
@media (width >= 1024px) {
  .contact__card:last-child {
    padding-top: 0;
  }
}
.contact__cardHeading {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7em;
  color: #313131;
  text-align: center;
}
.contact__cardContent {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  width: 100%;
}
.contact__icon {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
}
.contact__icon--phone {
  width: 3.6rem;
  height: 3.6rem;
}
.contact__button {
  display: flex;
  flex-direction: row;
  gap: 1.8rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.8rem 2.4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #840018;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 0.1rem solid #840018;
  border-radius: 0.8rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact__button:hover {
  color: #fff;
  background-color: #840018;
}
@media (width >= 1024px) {
  .contact__button {
    width: auto;
    padding: 1.8rem 2.4rem;
  }
}
.contact__arrow {
  font-size: 2.4rem;
}
.contact__phoneGroup {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.contact__phoneNumber {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1;
  color: #840018;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.contact__phoneNumber:hover {
  opacity: 0.8;
}
@media (width >= 1024px) {
  .contact__phoneNumber {
    font-size: 3.6rem;
  }
}
.contact__note {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #313131;
  text-align: center;
}

.footer {
  width: 100%;
}
.footer__top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 2.4rem 6.4rem;
  background-color: #f7f4f5;
}
@media screen and (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    padding: 3.2rem 2.4rem;
  }
}
.footer__linksText {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5em;
  width: 71.4rem;
  padding: 0;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.9;
  color: #313131;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .footer__linksText {
    flex-direction: column;
    gap: 0;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.footer__linksText li {
  display: inline;
}
@media screen and (max-width: 1024px) {
  .footer__linksText li {
    display: block;
  }
}
.footer__linksText li:not(:last-child)::after {
  margin-left: 0.5em;
  content: "｜";
}
@media screen and (max-width: 1024px) {
  .footer__linksText li:not(:last-child)::after {
    content: none;
  }
}
.footer__linksText a {
  line-height: 190%;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .footer__linksText a {
    line-height: 2.2;
  }
}
.footer__linksText a:hover {
  text-decoration: underline;
}
.footer__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.footer__nav::before {
  display: block;
  flex-shrink: 0;
  width: 0.1rem;
  height: 100%;
  margin: 0 4rem 0 0;
  content: "";
  background-color: #e5e7eb;
}
@media screen and (max-width: 1024px) {
  .footer__nav::before {
    width: 100%;
    height: 0.1rem;
    margin: 2.4rem 0;
  }
}
.footer__navLink {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #313131;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .footer__navLink {
    text-align: left;
  }
}
.footer__navLink:hover {
  text-decoration: underline;
}
.footer__bottom {
  display: flex;
  flex-direction: row;
  gap: 3.2rem;
  align-items: center;
  padding: 4rem 6.4rem;
  background-color: #3f000b;
}
@media screen and (max-width: 1024px) {
  .footer__bottom {
    gap: 2.24rem;
    padding: 2.8rem 2.4rem;
  }
}
.footer__bottomInner {
  width: 100%;
  max-width: 144rem;
  margin-inline: auto;
}
.footer__copyright {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}