@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


/*
html--------------------------------------------------------*/
html,
body {
  scroll-behavior: smooth;
}

* {
  margin: 0px;
  padding: 0px;
}

body {
  color: #363636;
  margin: 0;
  padding: 0;
  font-family: "Century Gothic", "Zen Kaku Gothic New", sans-serif !important;
  text-align: center;
  line-height: 1.6;
  position: relative;
  transition: all ease 0.4s;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-open {
  position: fixed;
  width: 100%;
  top: var(--scroll-lock-top);
  left: 0;
  right: 0;
}

a {
  color: #73C9DE;
  text-decoration: underline;
}

a:visited {
  color: #73C9DE;
  text-decoration: underline;
}

a:hover {
  color: #73C9DE;
  text-decoration: none;
}

a:active {
  color: #73C9DE;
  text-decoration: underline;
}

ul {
  list-style: none;
}

img {
  margin: 0;
  padding: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

@media screen and (max-width: 767px) {
  a:hover img {
    opacity: 1 !important;
  }
}
.sp {
  display: none;
}

.pc {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/* header
===============================================================*/
header {
  z-index: 999;
  width: 100%;
  position: fixed;
  box-sizing: border-box;
  padding: 0 1.5vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
header .logo {
  margin-bottom: 2em;
  width: 12.5vw;
}
@media screen and (max-width: 767px) {
  header .logo {
    margin-left: 2vw;
    margin-bottom: 2em;
    width: 31vw;
  }
}
header .logo img {
  width: 100%;
}

.navToggle {
  display: none;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .navToggle {
    display: block;
    margin-top: 2vw;
  }
  .navToggle .nabToggle-in {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 15vw;
    background: url(../images/millipro/sp_menu-back.svg) no-repeat center center/cover;
    aspect-ratio: 1/1;
    color: #fff;
    border-radius: 100px;
    font-size: 3.4vw;
    margin-right: 2vw;
    border: 1px solid #8989F8;
    position: relative;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) {
  .navToggle .nabToggle-in {
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 767px) {
  .navToggle .nabToggle-in:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #9bc9e8;
    border: 1px solid #8989F8;
    transform-origin: left center;
    transform: translateY(1vw) scaleX(1.05);
    z-index: -1;
  }
  .navToggle em {
    font-style: normal;
  }
}

.gnav {
  text-align: left;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .gnav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: -100;
    height: 100dvh;
    margin: 0;
  }
}
.gnav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background: url(../images/millipro/menu-back.svg) no-repeat center center/cover;
  padding: 0.8vw 1.5vw 0.8vw 1.5vw;
  border-radius: 50px;
  border: 1px solid #8989F8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .gnav ul {
    margin: 0;
    background: url(../images/millipro/sp-menu-back.png) no-repeat right top/cover;
    border: none;
    z-index: -100;
    width: 0;
  }
}
.gnav ul:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #73C9DE;
  border: 1px solid #8989F8;
  transform-origin: left center;
  transform: translateY(0.35vw) scaleX(1.003);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .gnav ul:after {
    display: none;
  }
}
.gnav ul li {
  margin: 0 0.506vw;
  font-size: 4.3vw;
  z-index: 999;
}
@media (min-width: 768px) {
  .gnav ul li {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .gnav ul li {
    padding-left: 6vw;
    z-index: -100;
  }
}
.gnav ul li a {
  color: #fff;
  text-decoration: none;
  transition: all ease 0.4s;
  font-weight: 700;
}
.gnav ul li a:hover {
  transform: scale(1.1);
  transition: all ease 0.4s;
}
.gnav .object-01,
.gnav .object-02,
.gnav .object-03,
.gnav .object-04 {
  display: none;
}

@media screen and (max-width: 767px) {
  .gnav {
    opacity: 0;
    visibility: visible;
    z-index: -100;
    border-radius: 0;
    right: 0;
    width: 0;
    margin-top: 0;
    transition: all ease 0.4s;
  }
  .gnav ul {
    opacity: 0;
    z-index: -100;
  }
}
.nav-open .gnav {
  opacity: 1;
  visibility: visible;
  transition: all ease 0.4s;
  width: 64vw;
  background: #F2E1EA url(../images/millipro/menu-back.svg) repeat right top/100%;
}
@media screen and (max-width: 767px) {
  .nav-open .gnav {
    background: url(../images/millipro/sp-menu-back.png) no-repeat right top/cover;
  }
  .nav-open .gnav ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 56vw 2vw 1.2vw 8vw;
    border-radius: 0;
    border: none;
    position: relative;
    height: 100dvh;
    right: 0;
    box-sizing: border-box;
    width: 100%;
    box-shadow: -1px 0 6px 0 rgba(0, 0, 0, 0.16);
    right: 0;
    opacity: 1;
    transition: all ease 0.4s;
  }
  .nav-open .gnav ul:after {
    display: none;
  }
  .nav-open .gnav ul li {
    margin: 0 0 7.9vw;
  }
  .nav-open .gnav ul li a {
    color: #7E7EFC;
    text-decoration: none;
    transition: all ease 0.4s;
    font-weight: 700;
  }
  .nav-open .gnav ul li a:hover {
    transform: scale(1.1);
    transition: all ease 0.4s;
  }
  .nav-open .gnav .object-01,
  .nav-open .gnav .object-02,
  .nav-open .gnav .object-03,
  .nav-open .gnav .object-04,
  .nav-open .gnav .object-05,
  .nav-open .gnav .object-06,
  .nav-open .gnav .object-07,
  .nav-open .gnav .object-08 {
    position: absolute;
    display: block;
    opacity: 0;
  }
  .nav-open .gnav .object-01,
  .nav-open .gnav .object-02,
  .nav-open .gnav .object-03,
  .nav-open .gnav .object-04 {
    position: absolute;
    display: block;
    z-index: 100;
  }
  .nav-open .gnav .object-01 {
    left: auto;
    right: 5vw;
    top: 30vw;
    width: 10vw;
    opacity: 1;
  }
  .nav-open .gnav .object-01 img {
    width: 100%;
  }
  .nav-open .gnav .object-02 {
    left: auto;
    top: auto;
    right: 50vw;
    bottom: 8vw;
    width: 10vw;
    opacity: 1;
  }
  .nav-open .gnav .object-02 img {
    width: 100%;
  }
  .nav-open .gnav .object-03 {
    right: 4vw;
    bottom: 42vw;
  }
  .nav-open .gnav .object-03 img {
    width: 28vw;
  }
  .nav-open .gnav .object-04 {
    right: 34vw;
    bottom: 33vw;
  }
  .nav-open .gnav .object-04 img {
    width: 24vw;
  }
}

.fxobj {
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.fxobj--from-left {
  --enter-x: -60px;
}

.fxobj--from-right {
  --enter-x: 60px;
}

/* 入場は1回だけ（JSで is-enter を付ける） */
.fxobj.is-enter {
  animation: fx-enter 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes fx-enter {
  0% {
    opacity: 0;
    transform: translate3d(var(--enter-x), 0, 0) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
/* 回転だけ無限（spin-* は出現時に1回付けて固定） */
.fxobj.spin-1 {
  animation: fx-rot 2s linear infinite;
}

.fxobj.spin-2 {
  animation: fx-rot 4s linear infinite;
}

.fxobj.spin-3 {
  animation: fx-rot-rev 2.9s linear infinite;
}

.fxobj.spin-4 {
  animation: fx-rot-rev 5s linear infinite;
}

.fxobj.spin-1,
.fxobj.spin-2,
.fxobj.spin-3,
.fxobj.spin-4 {
  opacity: 1;
}

@keyframes fx-rot {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(0, 0, 0) rotate(360deg);
  }
}
@keyframes fx-rot-rev {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(0, 0, 0) rotate(-360deg);
  }
}
/* 止める（回転も止まる） */
.fxobj.is-paused {
  animation-play-state: paused !important;
  filter: brightness(1.05);
}

/* ヘッダー内アニメの初期状態 */
header .logo,
header .gnav,
header .navToggle {
  opacity: 1;
}

/* ロゴ：左 → 右にフェードイン */
header .logo {
  transform: translateX(-15vw);
  transition: opacity 0.6s ease-in, transform 0.6s ease-in;
}

/* メニュー：上 → 下にフェードイン */
header .gnav {
  transform: translateY(-5vw);
  transition: opacity 0.7s ease-out 0.3s, transform 0.7s ease-out 0.3s;
}

/* PC でも navToggle を使っているならここに共通初期値 */
/* SPだけ動かすならアニメ部分はメディアクエリ側に書いてもOK */
header .navToggle {
  transform: translateX(24px);
}

/* 画面に入ったら “通常状態” に遷移（= フェードイン） */
header.is-header-entered .logo,
header.is-header-entered .gnav {
  opacity: 1;
  transform: translate(0, 0);
}

/* navToggle は SP のときだけアニメさせる */
@media (max-width: 767px) {
  header .navToggle {
    opacity: 0;
    transform: translateX(24px) rotate(0deg);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  /* 右から左 + 回転しながらイン */
  header.is-navtoggle-entered .navToggle {
    opacity: 1;
    transform: translateX(0) rotate(360deg);
  }
}
/* footer
===============================================================*/
footer {
  background: #7E7EFC;
}
footer .footer-inner {
  width: 86vw;
  margin: 0 auto;
  padding: 8vw 3vw;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  footer .footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8vw 1vw;
  }
}
footer .footer-inner .f-logo {
  width: 31vw;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-logo {
    width: 38vw;
    margin: 9vw auto;
  }
}
footer .footer-inner .f-navi-wrap {
  width: 70vw;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-navi-wrap {
    width: 90vw;
  }
}
footer .footer-inner .f-navi-wrap dl.f-navi {
  width: 30%;
  margin-bottom: 2.7vw;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-navi-wrap dl.f-navi {
    width: 47%;
    margin-bottom: 5vw;
  }
}
footer .footer-inner .f-navi-wrap dl.f-navi dt {
  color: #fff;
  font-weight: 900;
  font-size: 4.5vw;
  margin-bottom: 0.8em;
}
@media (min-width: 768px) {
  footer .footer-inner .f-navi-wrap dl.f-navi dt {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-navi-wrap dl.f-navi dt {
    margin-bottom: 1em;
  }
}
footer .footer-inner .f-navi-wrap dl.f-navi dd {
  margin-bottom: 1.1vw;
  font-weight: 900;
  color: #fff;
  font-size: 3vw;
}
@media (min-width: 768px) {
  footer .footer-inner .f-navi-wrap dl.f-navi dd {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-navi-wrap dl.f-navi dd {
    margin-bottom: 6vw;
  }
}
footer .footer-inner .f-navi-wrap dl.f-navi dd a {
  color: #fff;
  font-weight: normal;
  font-size: 3vw;
  text-decoration: none;
  font-weight: 900;
}
@media (min-width: 768px) {
  footer .footer-inner .f-navi-wrap dl.f-navi dd a {
    font-size: 1vw;
  }
}
footer .footer-inner .f-navi-wrap dl.f-navi dd a.ico-x {
  background: url(../images/millipro/x.svg) no-repeat left 50%/contain;
  padding: 0 0 0 2em;
}
footer .footer-inner .f-navi-wrap dl.f-navi dd a.ico-fb {
  background: url(../images/millipro/fb.svg) no-repeat left 50%/contain;
  padding: 0 0 0 2em;
}
footer .footer-inner .f-app {
  width: 49%;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-app {
    width: 100%;
  }
}
footer .footer-inner .f-app .f-app-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-app .f-app-list {
    margin-bottom: 8vw;
  }
}
footer .footer-inner .f-app .f-app-list dt {
  width: 100%;
  color: #fff;
  font-size: 4vw;
  margin-bottom: 1.5em;
  font-weight: 900;
}
@media (min-width: 768px) {
  footer .footer-inner .f-app .f-app-list dt {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-app .f-app-list dt {
    margin-bottom: 0.5em;
  }
}
footer .footer-inner .f-app .f-app-list dd {
  height: 3.4vw;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-app .f-app-list dd {
    height: 13vw;
  }
}
footer .footer-inner .f-app .f-app-list dd img {
  height: 100%;
  width: auto;
  margin-right: 1vw;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-app .f-app-list dd img {
    margin-right: 2vw;
  }
}
footer .footer-inner .f-contact {
  width: 50%;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-contact {
    width: 100%;
  }
}
footer .footer-inner .f-contact .f-contact-list {
  color: #fff;
}
footer .footer-inner .f-contact .f-contact-list dt {
  font-size: 4vw;
  margin-bottom: 1.3em;
  font-weight: 900;
}
@media (min-width: 768px) {
  footer .footer-inner .f-contact .f-contact-list dt {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-contact .f-contact-list dt {
    margin-bottom: 1.4em;
  }
}
footer .footer-inner .f-contact .f-contact-list dd {
  display: inline-block;
  position: relative;
  z-index: 10;
}
footer .footer-inner .f-contact .f-contact-list dd a {
  display: inline-block;
  padding: 1vw 1.5vw;
  z-index: 0;
  font-size: 3vw;
  border-radius: 50px;
  text-decoration: none;
  color: #7E7EFC;
  font-weight: 700;
  border-radius: 50px;
  border: 1px solid #8989F8;
  background: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  footer .footer-inner .f-contact .f-contact-list dd a {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-contact .f-contact-list dd a {
    padding: 3vw 2vw;
    width: 56vw;
  }
}
footer .footer-inner .f-contact .f-contact-list dd a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #9bc9e8;
  border: 1px solid #8989F8;
  transform-origin: left center;
  transform: translateY(0.3vw) scaleX(1.01);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .f-contact .f-contact-list dd a::after {
    transform: translateY(1.4vw) scaleX(1.015);
  }
}
footer .copyright {
  text-align: center;
  padding: 1.5vw 3vw 0 0;
  text-align: right;
  color: #fff;
  font-size: 4vw;
}
@media (min-width: 768px) {
  footer .copyright {
    font-size: 1vw;
  }
}
footer .gototop {
  position: fixed;
  right: 1.5vw;
  bottom: 2vw;
  z-index: 10000;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
footer .sp-footer {
  position: fixed;
  bottom: -100px;
  width: 100%;
  transition: all ease 0.4s;
}

.qr-code {
  position: fixed;
  bottom: 1.5vw;
  right: 1.5vw;
  z-index: 200;
  width: 12.5vw;
}
.qr-code img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .qr-code {
    right: 3vw;
    bottom: calc(3vw + env(safe-area-inset-bottom, 0px));
    width: 24vw;
  }
}
.qr-code:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 200px;
  background: #EBCADB;
  border: 1px solid #8989F8;
  transform-origin: left bottom;
  transform: translateY(0.4vw) scaleX(1.04);
  z-index: -1;
}

.qr-code_in {
  position: relative;
  animation: spin 50s linear infinite;
}
.qr-code_in:after {
  background: url(../images/millipro/pc_qr.png) no-repeat center center/100%;
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  animation: spin2 50s linear infinite;
}
@media screen and (max-width: 767px) {
  .qr-code_in:after {
    background: url(../images/millipro/sp_dl.svg) no-repeat center center/100%;
  }
}

.qr-code {
  opacity: 0;
  transform: translateX(40px) rotate(0deg);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

/* 画面内に入ってくる状態 */
.qr-code.is-qr-show {
  opacity: 1;
  transform: translateX(0) rotate(720deg);
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin2 {
  100% {
    transform: rotate(-360deg);
  }
}
.code {
  position: fixed;
  right: 3.6vw;
  bottom: 3.9vw;
  width: 5vw;
}
@media screen and (max-width: 767px) {
  .code {
    width: 10vw;
    right: 11vw;
    bottom: calc(12.5vw + env(safe-area-inset-bottom, 0px));
  }
}
.code img {
  width: 100%;
  height: auto;
}

/* body
===============================================================*/
main {
  transition: all ease 0.4s;
  background: #FFF9EF;
  overflow: hidden;
}

.mv {
  margin: 0;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-bottom: 0;
  }
}
.mv figure img {
  width: 100%;
}
.mv .campaign-link {
  bottom: 6.8vw;
  left: 1.5vw;
  position: absolute;
  background: #7E7EFC;
  border-radius: 8px;
  padding: 0.3vw 0.6vw 0.7vw;
  width: 16vw;
}
@media screen and (max-width: 767px) {
  .mv .campaign-link {
    bottom: 10vw;
    width: 94vw;
    left: 4vw;
    box-sizing: border-box;
    padding: 2vw 6vw 2vw 2vw;
  }
}
.mv .campaign-link h3 {
  text-align: left;
  color: #fff;
  margin-bottom: 0.3vw;
  font-size: 4.1vw;
}
@media (min-width: 768px) {
  .mv .campaign-link h3 {
    font-size: 1.15vw;
  }
}
@media screen and (max-width: 767px) {
  .mv .campaign-link h3 {
    margin-bottom: 2vw;
    margin-left: 1.5vw;
  }
}
.mv .campaign-link ul {
  background: #fff;
  border-radius: 7px;
  padding: 0.5vw 0.8vw;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .mv .campaign-link ul {
    padding: 2vw 2.5vw;
  }
}
.mv .campaign-link ul li {
  font-size: 3.7vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  .mv .campaign-link ul li {
    font-size: 0.9vw;
  }
}
.mv .campaign-link ul li a {
  color: #7E7EFC;
  text-decoration: none;
}
.mv .campaign-link ul li:before {
  content: "• ";
  color: #7E7EFC;
}
.mv .object-01,
.mv .object-02,
.mv .object-03 {
  position: absolute;
  z-index: 100;
}
.mv .object-01 {
  right: 1.2vw;
  left: auto;
  top: 12vw;
  width: 3.3vw;
}
@media screen and (max-width: 767px) {
  .mv .object-01 {
    left: auto;
    right: -3vw;
    top: 50vw;
    width: 10vw;
  }
}
.mv .object-02 {
  left: 0.6vw;
  top: 37.5vw;
  width: 3vw;
}
@media screen and (max-width: 767px) {
  .mv .object-02 {
    left: -3vw;
    top: 24vw;
    width: 10vw;
  }
}
.mv .object-03 {
  right: 18.6vw;
  left: auto;
  top: 46.5vw;
  width: 3vw;
}
@media screen and (max-width: 767px) {
  .mv .object-03 {
    left: auto;
    right: -3vw;
    top: 114vw;
    width: 10vw;
  }
}

.news-area {
  background: #F2EAFF;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  border: 1px solid #7E7EFC;
  box-sizing: border-box;
  border-width: 1px 0 0 1px;
  padding-right: 7vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding-right: 0;
    box-sizing: border-box;
    border: none;
  }
}
.news-area .news-tit {
  font-weight: bold;
  line-height: 1;
  background-color: #FFFFFF;
  width: 13.9vw;
  display: block;
  box-sizing: border-box;
  border-right: 1px solid #7E7EFC;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .news-area .news-tit {
    width: 100vw;
    border: none;
    padding: 8vw 0;
    background: #F2EAFF;
    border-bottom: 1px solid #7E7EFC;
  }
}
.news-area .news-tit span {
  transform: rotate(90deg);
  display: block;
  color: #7E7EFC;
  font-size: 10vw;
}
@media (min-width: 768px) {
  .news-area .news-tit span {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 767px) {
  .news-area .news-tit span {
    transform: rotate(0);
    width: 100%;
  }
}
.news-area .news-list {
  width: 90vw;
  box-sizing: border-box;
  border-right: 1px solid #7E7EFC;
}
@media screen and (max-width: 767px) {
  .news-area .news-list {
    width: 100vw;
    border: none;
  }
}
.news-area .news-list ul {
  padding: 2.3vw 3vw 0.7vw 2.8vw;
}
@media screen and (max-width: 767px) {
  .news-area .news-list ul {
    padding: 6vw 3vw 5.8vw 2.8vw;
  }
}
.news-area .news-list ul li {
  text-align: left;
  position: relative;
  padding: 0;
  margin-bottom: 1.4vw;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 4vw;
  color: #8989F8;
}
@media (min-width: 768px) {
  .news-area .news-list ul li {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .news-area .news-list ul li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 3.3vw;
  }
}
.news-area .news-list ul li .date {
  width: 6vw;
  font-weight: 700;
  flex-shrink: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .news-area .news-list ul li .date {
    margin-bottom: 1.8vw;
  }
}
.news-area .news-list ul li .txt {
  font-weight: 700;
  line-height: 1.4;
  font-size: 4vw;
}
@media (min-width: 768px) {
  .news-area .news-list ul li .txt {
    font-size: 1.05vw;
  }
}

.point-area {
  background: #F2EAFF;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  border: 1px solid #7E7EFC;
  box-sizing: border-box;
  border-width: 1px 0 0 1px;
  padding-right: 7vw;
  position: relative;
  border-bottom: 1px solid #7E7EFC;
}
@media screen and (max-width: 767px) {
  .point-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding-right: 0;
    box-sizing: border-box;
    border: none;
  }
}
.point-area .point-tit {
  font-weight: bold;
  line-height: 1;
  font-size: 12vw;
  background-color: #FFFFFF;
  width: 12.4vw;
  display: block;
  box-sizing: border-box;
  border-right: 1px solid #7E7EFC;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .point-area .point-tit {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .point-area .point-tit {
    width: 100vw;
    padding: 7vw 0;
    border-right: none;
    border: solid #7E7EFC;
    border-width: 1px 0;
  }
}
.point-area .point-tit span {
  transform: rotate(90deg);
  display: block;
  color: #7E7EFC;
}
@media screen and (max-width: 767px) {
  .point-area .point-tit span {
    transform: rotate(0);
    width: 100%;
  }
}
.point-area .point-list {
  width: 80.6vw;
  box-sizing: border-box;
  border-right: 1px solid #7E7EFC;
}
@media screen and (max-width: 767px) {
  .point-area .point-list {
    width: 100vw;
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .point-area .point-list ul {
    border-bottom: 1px solid #7E7EFC;
  }
}
.point-area .point-list ul li {
  text-align: right;
  padding: 2.7vw 3vw;
  border-bottom: 1px solid #7E7EFC;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.point-area .point-list ul li .point-01 {
  width: 40vw;
}
@media screen and (max-width: 767px) {
  .point-area .point-list ul li .point-01 {
    width: 67vw;
    padding: 3.2vw 0;
  }
}
.point-area .point-list ul li .point-01 img {
  width: 100%;
}
.point-area .point-list ul li .point-02 {
  width: 53.7vw;
}
@media screen and (max-width: 767px) {
  .point-area .point-list ul li .point-02 {
    width: 59vw;
    padding: 0 0 0.5vw;
  }
}
.point-area .point-list ul li .point-02 img {
  width: 100%;
}
.point-area .point-list ul li .point-03 {
  width: 58.5vw;
}
@media screen and (max-width: 767px) {
  .point-area .point-list ul li .point-03 {
    width: 98vw;
    padding: 3.1vw 0;
  }
}
.point-area .point-list ul li .point-03 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .point-area .point-list ul li.point-02 span {
    transform: rotate(-15deg) translateY(-8vw) translateX(1vw);
  }
  .point-area .point-list ul li.point-03 span {
    position: absolute;
    left: 2vw;
    transform: rotate(-15deg) translateY(-8vw) translateX(1vw);
  }
  .point-area .point-list ul li.point-02 {
    padding: 2.6vw 3vw 0;
  }
}
.point-area .point-list ul li:last-child {
  margin-bottom: 0;
  border: none;
}
.point-area .point-list ul li span {
  color: #7E7EFC;
  display: inline-block;
  position: relative;
  transform: rotate(-15deg) translateY(-4.2vw) translateX(0.4vw);
  font-size: 6vw;
  font-weight: 900;
}
@media (min-width: 768px) {
  .point-area .point-list ul li span {
    font-size: 2.4vw;
  }
}
.point-area .object-01,
.point-area .object-02,
.point-area .object-03,
.point-area .object-04,
.point-area .object-05,
.point-area .object-06,
.point-area .object-07 {
  position: absolute;
  z-index: 100;
}
.point-area .object-01 {
  right: auto;
  left: 24.4vw;
  top: 1.8vw;
  width: 4vw;
}
@media screen and (max-width: 767px) {
  .point-area .object-01 {
    left: auto;
    right: 9vw;
    top: 3vw;
    width: 11vw;
  }
}
.point-area .object-01 img {
  width: 100%;
}
.point-area .object-02 {
  right: auto;
  left: 21.3vw;
  top: 4vw;
  width: 2.8vw;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .point-area .object-02 {
    left: 8vw;
    top: 32vw;
    width: 4vw;
  }
}
.point-area .object-02 img {
  width: 100%;
}
.point-area .object-03 {
  left: 11vw;
  top: 26vw;
  width: 5vw;
}
@media screen and (max-width: 767px) {
  .point-area .object-03 {
    left: 1vw;
    top: 40vw;
    width: 11vw;
  }
}
.point-area .object-04 {
  left: 9.7vw;
  bottom: -2.5vw;
  width: 1.7vw;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .point-area .object-04 {
    left: 15vw;
    top: 12vw;
    width: 4vw;
  }
}
.point-area .object-05 {
  right: 3.4vw;
  top: 3vw;
  width: 2.8vw;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .point-area .object-05 {
    right: auto;
    left: 8vw;
    top: 55vw;
    width: 4vw;
  }
}
.point-area .object-06 {
  left: auto;
  right: 0.5vw;
  top: 11vw;
}
@media screen and (max-width: 767px) {
  .point-area .object-06 {
    right: 10vw;
    left: auto;
    top: 78vw;
    width: 9vw;
  }
}
.point-area .object-07 {
  left: auto;
  right: -45.5vw;
  bottom: 2.5vw;
  opacity: 1;
  width: 100vw;
}
@media screen and (max-width: 767px) {
  .point-area .object-07 {
    display: none;
  }
}

.scroll-01,
.scroll-02,
.scroll-03 {
  overflow: hidden;
  background: #fff;
  padding: 2.5vw 0;
}
@media (max-width: 767px) {
  .scroll-01,
  .scroll-02,
  .scroll-03 {
    border: solid #fff;
    border-width: 2px 0;
  }
}
.scroll-01 img,
.scroll-02 img,
.scroll-03 img {
  display: block;
  height: 7.5vw;
}
@media (max-width: 767px) {
  .scroll-01 img,
  .scroll-02 img,
  .scroll-03 img {
    height: 20vw;
    padding: 5vw 0;
  }
}

.scroll-02 {
  background: url(../images/millipro/scroll_back_01.svg) no-repeat center center/cover;
  padding: 2.2vw 0;
  border: #fff solid;
  border-width: 2px 0;
}
.scroll-02 .marquee__track {
  animation: marquee2 45s linear infinite;
}

.scroll-03 {
  background: url(../images/millipro/scroll_back_02.svg) no-repeat center center/cover;
  border: #fff solid;
  border-width: 2px 0;
}
.scroll-03 .marquee__track {
  animation: marquee 45s linear infinite;
}

.marquee__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee__set {
  margin: 0 2vw;
}

.marquee__set img {
  display: block;
}

/* アニメーション（右 → 左） */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide {
  background: url(../images/millipro/card-back.svg) repeat top left/100%;
  padding: 8vw 0 1.1vw;
  position: relative;
}
@media (max-width: 767px) {
  .slide {
    background: url(../images/millipro/sp-card-back.jpg) no-repeat top left/100%;
    padding: 11.8vw 0 1vw;
  }
}
.slide .slide-wrap {
  background: url(../images/millipro/card_back.svg) no-repeat top center/90vw;
  position: relative;
}
@media (max-width: 767px) {
  .slide .slide-wrap {
    margin: 38vw 0 3vw;
    background: url(../images/millipro/card_back_sp.svg) no-repeat top center/100vw;
  }
}
.slide .slide-wrap .comment {
  padding-left: 51vw;
  text-align: left;
}
@media (max-width: 767px) {
  .slide .slide-wrap .comment {
    padding-left: 20.5vw;
    transform: translateY(-34vw);
  }
}
.slide .slide-wrap .comment span {
  background: #363636;
  color: #fff;
  display: inline;
  margin: 0.1vw 0;
  font-weight: 700;
  padding: 0.3vw 0.5vw;
  line-height: 2;
  font-size: 4.18vw;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (min-width: 768px) {
  .slide .slide-wrap .comment span {
    font-size: 1.2vw;
  }
}
@media (max-width: 767px) {
  .slide .slide-wrap .comment span {
    -webkit-box-decoration-break: slice;
    box-decoration-break: slice;
  }
}
.slide .slide-wrap .swiper-button-next .swiper-navigation-icon,
.slide .slide-wrap .swiper-button-prev .swiper-navigation-icon {
  display: none;
}
.slide .slide-wrap .swiper-button-next,
.slide .slide-wrap .swiper-button-prev {
  background: url(../images/millipro/arrow-l.svg) no-repeat left center/contain;
  height: 4vw;
  aspect-ratio: 1/1;
  padding: 1.9vw;
  box-sizing: border-box;
  display: inline-block;
  z-index: 100 !important;
}
@media (max-width: 767px) {
  .slide .slide-wrap .swiper-button-next,
  .slide .slide-wrap .swiper-button-prev {
    padding: 4vw;
  }
}
.slide .slide-wrap .swiper-button-next {
  background: url(../images/millipro/arrow-r.svg) no-repeat left center/contain;
  z-index: 100 !important;
}
.slide .slide-wrap .swiper-button-next {
  right: 16vw;
}
.slide .slide-wrap .swiper-button-prev {
  left: 16vw;
}
@media (max-width: 767px) {
  .slide .slide-wrap .swiper {
    transform: translateY(-10vw);
  }
  .slide .slide-wrap .swiper-button-next {
    right: 8vw;
    top: 40%;
  }
  .slide .slide-wrap .swiper-button-prev {
    left: 8vw;
    top: 40%;
  }
}
.slide .slide-wrap .slider-1 {
  padding: 5vw 0 0;
}
@media (max-width: 767px) {
  .slide .slide-wrap .slider-1 {
    padding: 0;
  }
}
.slide .slide-wrap .slider-1 .swiper-wrapper {
  margin: 5vw 0 2vw;
}
@media (max-width: 767px) {
  .slide .slide-wrap .slider-1 .swiper-wrapper {
    margin: 2vw 0 2vw;
  }
}
.slide .slide-wrap .slider-1 .swiper-wrapper .swiper-slide.swiper-slide-prev img, .slide .slide-wrap .slider-1 .swiper-wrapper .swiper-slide.swiper-slide-next img {
  transform: rotate(-4deg);
  transition: all ease 0.4s;
}
.slide .slide-wrap .slider-1 .swiper-wrapper .swiper-slide.swiper-slide-active img {
  transform: rotate(4deg);
  transition: all ease 0.4s;
}
.slide .slide-wrap .slider-1 .swiper-wrapper .swiper-slide figure img {
  transition: all ease 0.4s;
}
.slide .slide-wrap .slider-1 .swiper-wrapper .swiper-slide figure figcaption {
  margin-top: 2.5vw;
  background: #7E7EFC;
  display: inline-block;
  border-radius: 11px;
  border: 1px solid #8989F8;
  color: #fff;
  padding: 0.53vw 2vw;
  font-weight: 700;
  font-size: 5vw;
  visibility: hidden;
  transition: all ease 0.4s;
  transform: scale(0.2);
  opacity: 0;
  width: 14.2vw;
}
@media (min-width: 768px) {
  .slide .slide-wrap .slider-1 .swiper-wrapper .swiper-slide figure figcaption {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 767px) {
  .slide .slide-wrap .slider-1 .swiper-wrapper .swiper-slide figure figcaption {
    width: 46vw;
    padding: 1vw 2vw;
    margin-top: 10vw;
  }
}
.slide .slide-wrap .slider-1 .swiper-wrapper .swiper-slide.swiper-slide-active figure figcaption {
  opacity: 1;
  visibility: visible;
  transition: all ease 0.4s;
  transform: scale(1);
}
.slide .slide-wrap .slider-1 .swiper-wrapper .swiper-slide.wide figcaption {
  width: 19.6vw;
}
@media screen and (max-width: 767px) {
  .slide .slide-wrap .slider-1 .swiper-wrapper .swiper-slide.wide figcaption {
    width: 60vw;
  }
}
.slide .object-01,
.slide .object-02,
.slide .object-03,
.slide .object-04,
.slide .object-05 {
  position: absolute;
}
.slide .object-01 {
  left: 7vw;
  top: 5.5vw;
}
@media screen and (max-width: 767px) {
  .slide .object-01 {
    left: auto;
    right: 8vw;
    top: 67vw;
    width: 8vw;
  }
  .slide .object-01 img {
    width: 100%;
  }
}
.slide .object-02 {
  left: 11.6vw;
  top: 8.5vw;
  width: 2.7vw;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .slide .object-02 {
    left: auto;
    right: 4vw;
    top: 72vw;
    width: 4vw;
  }
}
.slide .object-03 {
  right: 6vw;
  left: auto;
  top: 55.5vw;
  opacity: 1;
  width: 15.3vw;
}
@media screen and (max-width: 767px) {
  .slide .object-03 {
    left: auto;
    right: -8vw;
    top: auto;
    bottom: 24vw;
    width: 26vw;
  }
}
.slide .object-03 img {
  width: 100%;
}
.slide .object-04 {
  right: 7vw;
  bottom: 5.5vw;
  width: 5vw;
}
@media screen and (max-width: 767px) {
  .slide .object-04 {
    left: 4vw;
    right: auto;
    top: auto;
    bottom: 33.5vw;
    width: 8vw;
  }
}
.slide .object-05 {
  display: none;
}
@media screen and (max-width: 767px) {
  .slide .object-05 {
    display: block;
    left: 11.2vw;
    right: auto;
    top: auto;
    bottom: 29.5vw;
    width: 4vw;
    opacity: 1;
  }
  .slide .object-05 img {
    width: 100%;
  }
}

.swiper-thumb {
  width: 40vw;
  margin: 0 auto;
  text-align: center;
  padding: 1vw 0 5vw !important;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .swiper-thumb {
    width: 96vw;
    padding: 10vw 0 0 !important;
    margin-bottom: 0;
  }
}
.swiper-thumb .swiper-wrapper {
  margin: 0 0.3vw !important;
  padding: 0;
  background: url(../images/millipro/thumb-back.svg) no-repeat center center/100%;
  align-items: center;
}
.swiper-thumb .swiper-slide {
  width: 4vw;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .swiper-thumb .swiper-slide {
    width: 9.0909090909%;
  }
}
.swiper-thumb .swiper-slide.swiper-slide-thumb-active .thumb-media img {
  width: 11vw;
  transition: all ease 0.4s;
}
@media screen and (max-width: 767px) {
  .swiper-thumb .swiper-slide.swiper-slide-thumb-active .thumb-media img {
    width: 14vw;
  }
}
.swiper-thumb .swiper-slide .thumb-media img {
  width: 3vw;
  transition: all ease 0.4s;
}
@media screen and (max-width: 767px) {
  .swiper-thumb .swiper-slide .thumb-media img {
    width: 6vw;
  }
}

.card-introduction {
  padding: 0 0;
}
@media screen and (max-width: 767px) {
  .card-introduction {
    padding: 0 0 0;
    background-size: 200%;
  }
}
.card-introduction .card-intro-wrap {
  background: url(../images/millipro/card-back.svg) repeat bottom center/100%;
  padding-top: 7.03vw;
  padding-bottom: 0.5vw;
}
@media screen and (max-width: 767px) {
  .card-introduction .card-intro-wrap {
    background: url(../images/millipro/sp-card-back.jpg) repeat bottom center/100%;
    padding-top: 13vw;
  }
}

.card-intro {
  width: 88vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 8vw;
  margin: 0 auto 2.8vw;
  padding: 5.35vw 3.3vw 3vw 3.4vw;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 768px) {
  .card-intro {
    border-radius: 6.25vw;
  }
}
@media screen and (max-width: 767px) {
  .card-intro {
    padding: 15vw 2.2vw 15vw;
    margin: 0 auto 10vw;
    width: 96vw;
  }
}
.card-intro.int02 {
  background: #fff;
  margin-bottom: 8vw;
}
@media screen and (max-width: 767px) {
  .card-intro.int02 {
    margin-bottom: 20vw;
    padding: 15vw 7vw 14vw;
  }
}
.card-intro.int02 .intro-left {
  padding-top: 2vw;
}
@media screen and (max-width: 767px) {
  .card-intro.int02 .intro-left {
    padding-top: 12vw;
    padding: 13.2vw 0 0 0;
  }
}
.card-intro.int02 .app-join {
  padding-top: 2.5vw;
}
.card-intro .intro-left {
  flex: 1;
  text-align: left;
  color: #7E7EFC;
  padding-top: 4.5vw;
}
@media screen and (max-width: 767px) {
  .card-intro .intro-left {
    padding: 5vw 0 0 3vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
}
.card-intro .intro-left p {
  font-size: 7vw;
  line-height: 1;
  font-weight: 900;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .card-intro .intro-left p {
    font-size: 2.4vw;
  }
}
.card-intro .intro-left p.lvl2 {
  display: inline-block;
}
.card-intro .intro-left p strong {
  font-size: 9vw;
}
@media (min-width: 768px) {
  .card-intro .intro-left p strong {
    font-size: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .card-intro .intro-left p strong {
    margin-left: 0.6em;
  }
}
.card-intro .intro-left p strong.lvl2 {
  font-size: 8vw;
}
@media (min-width: 768px) {
  .card-intro .intro-left p strong.lvl2 {
    font-size: 3vw;
  }
}
.card-intro .intro-left p span {
  font-size: 3.6vw;
  display: inline-block;
  margin: 0 0 0.6vw 0.3vw;
}
@media (min-width: 768px) {
  .card-intro .intro-left p span {
    font-size: 1.3vw;
  }
}
.card-intro .intro-left p span.min {
  font-weight: normal;
  font-size: 3vw;
  justify-self: flex-end;
  padding-left: 9.5vw;
  padding-top: 0.4vw;
}
@media (min-width: 768px) {
  .card-intro .intro-left p span.min {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .card-intro .intro-left p span.min {
    padding-left: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .card-intro .intro-left p.sp-noflex {
    width: 100%;
  }
  .card-intro .intro-left p figure {
    width: 90vw;
  }
}
.card-intro .intro-right {
  width: 60vw;
}
@media screen and (max-width: 767px) {
  .card-intro .intro-right {
    display: none;
  }
}
.card-intro .app-join {
  width: 100%;
  position: relative;
  padding: 5vw 0 1vw;
}
.card-intro .app-join .app-join-link {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .card-intro .app-join .app-join-link {
    margin-top: 11vw;
  }
}
.card-intro .app-join a {
  background: #7E7EFC;
  color: #fff;
  text-decoration: none;
  padding: 1.2vw 3vw;
  border-radius: 50px;
  position: relative;
  display: inline-block;
  border: 1px solid #8989F8;
  font-weight: 700;
  font-size: 4vw;
  transition: all ease 0.4s;
}
@media (min-width: 768px) {
  .card-intro .app-join a {
    font-size: 1.07vw;
  }
}
@media screen and (max-width: 767px) {
  .card-intro .app-join a {
    padding: 4vw 0;
    width: 76vw;
  }
}
.card-intro .app-join a:hover {
  color: #7E7EFC;
  background: #fff;
  transition: all ease 0.4s;
}
.card-intro .app-join a:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 200px;
  background: #9bc9e8;
  border: 1px solid #8989F8;
  transform-origin: left bottom;
  transform: translateY(0.4vw) scaleX(1.01);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .card-intro .app-join a:after {
    transform: translateY(1.4vw) scaleX(1.02);
  }
}
.card-intro .app-join-comment {
  position: absolute;
  left: 0;
  top: 2vw;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .card-intro .app-join-comment {
    position: relative;
    margin-left: 3vw;
  }
}
.card-intro .app-join-comment p {
  margin-bottom: 0.3vw;
}
@media screen and (max-width: 767px) {
  .card-intro .app-join-comment p {
    margin-bottom: 1vw;
  }
}
.card-intro .app-join-comment p span {
  display: inline-block;
  background: #363636;
  color: #fff;
  font-weight: 700;
  padding: 0 0.5vw;
  font-size: 4.2vw;
}
@media (min-width: 768px) {
  .card-intro .app-join-comment p span {
    font-size: 1.2vw;
  }
}
.card-intro .app-join-comment p.lvl2 span {
  font-weight: 400;
  font-size: 2.8vw;
}
@media (min-width: 768px) {
  .card-intro .app-join-comment p.lvl2 span {
    font-size: 0.9vw;
  }
}
.card-intro .object-01,
.card-intro .object-02,
.card-intro .object-02-2,
.card-intro .object-03,
.card-intro .object-04 {
  position: absolute;
}
.card-intro .object-01 {
  right: 6.8vw;
  top: -2vw;
  left: auto;
  width: 5vw;
}
@media screen and (max-width: 767px) {
  .card-intro .object-01 {
    right: 11.8vw;
    top: -5vw;
    left: auto;
    width: 10vw;
  }
}
.card-intro .object-01 img {
  width: 100%;
}
.card-intro .object-02 {
  left: -1vw;
  top: 35.5vw;
  width: 5vw;
}
@media screen and (max-width: 767px) {
  .card-intro .object-02 {
    right: auto;
    left: 6vw;
    top: 122vw;
    width: 10vw;
  }
}
.card-intro .object-02-2 {
  display: none;
}
@media screen and (max-width: 767px) {
  .card-intro .object-02-2 {
    display: block;
    right: 8.8vw;
    top: 3vw;
    left: auto;
    width: 5.5vw;
  }
}
.card-intro .object-03 {
  left: auto;
  right: 6vw;
  top: 36vw;
  width: 5vw;
}
@media screen and (max-width: 767px) {
  .card-intro .object-03 {
    right: 12.8vw;
    top: auto;
    bottom: -2vw;
    left: auto;
    width: 10vw;
  }
}
.card-intro .object-03 img {
  width: 100%;
}
.card-intro .object-04 {
  right: 3.5vw;
  top: 40vw;
  width: 2.4vw;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .card-intro .object-04 {
    right: 9.8vw;
    top: auto;
    bottom: -6vw;
    left: auto;
    width: 5vw;
  }
}
.card-intro .object-05 {
  left: 16vw;
  top: 0.3vw;
}
@media screen and (max-width: 767px) {
  .card-intro .object-05 {
    left: auto;
    right: 3vw;
    top: 58vw;
  }
}
.card-intro .object-05 img {
  width: 6.7vw;
}
@media screen and (max-width: 767px) {
  .card-intro .object-05 img {
    width: 24vw;
  }
}
.card-intro .object-06 {
  left: -1vw;
  bottom: 6vw;
}
@media screen and (max-width: 767px) {
  .card-intro .object-06 {
    left: -10vw;
    bottom: -10vw;
  }
}
.card-intro .object-06 img {
  width: 8vw;
}
@media screen and (max-width: 767px) {
  .card-intro .object-06 img {
    width: 28vw;
  }
}

.membership {
  background: url(../images/millipro/membership-benefits.svg) repeat top left/100%;
  padding: 6.7vw 0 8vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .membership {
    padding: 14vw 0 18vw;
    background-size: 200%;
    background: url(../images/millipro/sp-member-back.jpg) repeat top left/cover;
  }
}
.membership .swiper-pagination {
  bottom: 6vw !important;
}
@media screen and (max-width: 767px) {
  .membership .swiper-pagination {
    bottom: 6vw !important;
  }
}
.membership .swiper-pagination .swiper-pagination-bullet {
  background: #EBE9F7 !important;
  opacity: 1;
  margin: 0 0.6vw !important;
}
@media screen and (max-width: 767px) {
  .membership .swiper-pagination .swiper-pagination-bullet {
    margin: 0 1.5vw !important;
  }
}
.membership .swiper-pagination .swiper-pagination-bullet-active {
  background: #7E7EFC !important;
}
.membership .swiper-button-next .swiper-navigation-icon,
.membership .swiper-button-prev .swiper-navigation-icon {
  display: none;
}
.membership .swiper-button-next,
.membership .swiper-button-prev {
  background: url(../images/millipro/arrow-l.svg) no-repeat left center/contain;
  height: 3vw;
  aspect-ratio: 1/1;
  padding: 2vw;
  box-sizing: border-box;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .membership .swiper-button-next,
  .membership .swiper-button-prev {
    height: 10vw;
    padding: 4vw;
  }
}
.membership .swiper-button-next {
  background: url(../images/millipro/arrow-r.svg) no-repeat left center/contain;
}
.membership .swiper-button-next {
  right: 5vw;
}
.membership .swiper-button-prev {
  left: 5vw;
}
@media screen and (max-width: 767px) {
  .membership .swiper-button-next {
    right: 4vw;
  }
  .membership .swiper-button-prev {
    left: 4vw;
  }
}
.membership h2 {
  width: 96vw;
  margin: 0 auto 2.53vw;
  text-align: left;
  font-size: 15.6vw;
  color: #fff;
  line-height: 0.9;
  letter-spacing: 0.01em;
  position: relative;
  font-weight: 900;
}
@media (min-width: 768px) {
  .membership h2 {
    font-size: 12.3vw;
  }
}
@media screen and (max-width: 767px) {
  .membership h2 {
    line-height: 1;
  }
}
.membership h2 span {
  display: inline-block;
  margin-left: 4vw;
  color: #7E7EFC;
}
.membership .object-01,
.membership .object-02,
.membership .object-03,
.membership .object-04,
.membership .object-05,
.membership .object-06 {
  position: absolute;
}
.membership .object-01 {
  right: 14.5vw;
  left: auto;
  top: 29vw;
  width: 4.5vw;
}
@media screen and (max-width: 767px) {
  .membership .object-01 {
    right: 11.5vw;
    left: auto;
    top: 81vw;
    width: 10vw;
  }
}
.membership .object-01 img {
  width: 100%;
}
.membership .object-02 {
  left: 9.5vw;
  top: 80vw;
  width: 5vw;
}
@media screen and (max-width: 767px) {
  .membership .object-02 {
    left: 8.5vw;
    top: auto;
    bottom: 12vw;
    width: 12vw;
  }
}
.membership .object-03 {
  left: auto;
  right: 11.5vw;
  top: 80vw;
  width: 4.5vw;
}
@media screen and (max-width: 767px) {
  .membership .object-03 {
    right: 9.5vw;
    left: auto;
    top: auto;
    bottom: 17vw;
    width: 10vw;
  }
}
.membership .object-04 {
  right: 13vw;
  top: 32.5vw;
  z-index: 100;
  width: 2.8vw;
}
@media screen and (max-width: 767px) {
  .membership .object-04 {
    right: 8.9vw;
    left: auto;
    top: 89vw;
    width: 5.5vw;
  }
}
.membership .object-05 {
  left: 13.5vw;
  bottom: 12vw;
  width: 2.8vw;
}
@media screen and (max-width: 767px) {
  .membership .object-05 {
    right: auto;
    left: 16vw;
    top: auto;
    bottom: 22vw;
    width: 5vw;
  }
}
.membership .member-title {
  position: relative;
}
.membership .member-title .member-title-sub {
  position: absolute;
  left: 60vw;
  top: 11.5vw;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .membership .member-title .member-title-sub {
    position: relative;
    left: 2.5vw;
    top: 0;
    margin-bottom: 7vw;
    margin-right: 6vw;
  }
}
.membership .member-title .member-title-sub dt {
  color: #7E7EFC;
  font-size: 8vw;
  font-weight: 900;
}
@media (min-width: 768px) {
  .membership .member-title .member-title-sub dt {
    font-size: 2.5vw;
  }
}
.membership .member-title .member-title-sub dd {
  background: #363636;
  color: #fff;
  padding: 0.2vw 0.7vw;
  font-weight: bold;
  display: inline-block;
  font-size: 4.2vw;
  margin-right: 2vw;
}
@media (min-width: 768px) {
  .membership .member-title .member-title-sub dd {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .membership .member-title .member-title-sub dd {
    display: inline-block;
    margin-right: 0;
  }
}
.membership .member-title .member-title-sub dd.lvl2 {
  font-size: 3vw;
  margin-top: 3px;
  font-weight: normal;
}
@media (min-width: 768px) {
  .membership .member-title .member-title-sub dd.lvl2 {
    font-size: 1vw;
  }
}
.membership .member-wrap {
  position: relative;
  background: url(../images/millipro/member-back.svg) no-repeat top center/88%;
  padding: 5.2vw 0 11vw;
}
@media screen and (max-width: 767px) {
  .membership .member-wrap {
    background: url(../images/millipro/member-back_sp.svg) no-repeat top center/95%;
    padding: 14vw 0 15vw;
  }
}
.membership .member-wrap .swiper-slide {
  aspect-ratio: 366/486;
}
.membership .member-wrap .swiper-slide img {
  width: 100%;
  height: auto;
}
.membership .member-wrap .swiper-slide.p-01 {
  background: url(../images/millipro/member-back-01.svg) no-repeat top center/100%;
  margin-top: 3vw;
}
@media screen and (max-width: 767px) {
  .membership .member-wrap .swiper-slide.p-01 {
    margin-top: 0;
  }
}
.membership .member-wrap .swiper-slide.p-02 {
  background: url(../images/millipro/member-back-02.svg) no-repeat top center/100%;
}
.membership .member-wrap .swiper-slide.benefit-01 {
  background: url(../images/millipro/tokuten_01.png) no-repeat top center/100%;
}
.membership .member-wrap .swiper-slide.benefit-02 {
  background: url(../images/millipro/tokuten_02.png) no-repeat top center/100%;
}
.membership .member-wrap .swiper-slide.benefit-03 {
  background: url(../images/millipro/tokuten_03.png) no-repeat top center/100%;
}
.membership .member-wrap .swiper-slide.benefit-04 {
  background: url(../images/millipro/tokuten_04.png) no-repeat top center/100%;
}
.membership .member-wrap .swiper-slide.benefit-05 {
  background: url(../images/millipro/tokuten_05.png) no-repeat top center/100%;
}
.membership .member-wrap .swiper-slide figure {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 3vw;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
.membership .member-wrap .swiper-slide figure img {
  width: 100%;
  height: auto;
}
.membership .member-wrap .swiper-slide figure figcaption {
  color: #7E7EFC;
  font-weight: 700;
  font-size: 3.8vw;
}
@media (min-width: 768px) {
  .membership .member-wrap .swiper-slide figure figcaption {
    font-size: 1.3vw;
  }
}

.about-nudge {
  background: url(../images/millipro/about-nudge_back.svg) no-repeat center center/cover;
  padding: 5.9vw 0 10vw;
}
@media screen and (max-width: 767px) {
  .about-nudge {
    padding: 19vw 0 22vw;
    background: url(../images/millipro/sp-about-nudge_back.svg) no-repeat center center/cover;
  }
}

h2 {
  color: #fff;
  margin-bottom: 6.3vw;
  font-size: 12vw;
  letter-spacing: -0.07em;
}
@media (min-width: 768px) {
  h2 {
    font-size: 5.7vw;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 10vw;
  }
}
h2 span {
  font-size: 8vw;
}
@media (min-width: 768px) {
  h2 span {
    font-size: 3.8vw;
  }
}
h2.lvl2 {
  font-size: 8vw;
  margin-bottom: 3.3vw;
}
@media (min-width: 768px) {
  h2.lvl2 {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 767px) {
  h2.lvl2 {
    margin-bottom: 4.4vw;
  }
}

.about-list {
  margin-bottom: 3vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about-list {
    padding-top: 4vw;
  }
}
.about-list ul {
  width: 82vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about-list ul li {
  width: calc(33.3333333333% - 1.3vw);
  aspect-ratio: 366/380;
  margin-bottom: 5vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .about-list ul li {
    width: 100%;
    margin-bottom: 14vw;
  }
  .about-list ul li.about-01 {
    background: url(../images/millipro/about-back-01_sp.png) no-repeat top center/100% !important;
    aspect-ratio: 311/247;
  }
  .about-list ul li.about-02 {
    background: url(../images/millipro/about-back-02_sp.png) no-repeat top center/100% !important;
    aspect-ratio: 311/247;
  }
  .about-list ul li.about-03 {
    background: url(../images/millipro/about-back-03_sp.png) no-repeat top center/100% !important;
    aspect-ratio: 311/334;
  }
  .about-list ul li.about-04 {
    background: url(../images/millipro/about-back-04_sp.png) no-repeat top center/100% !important;
    aspect-ratio: 311/334;
  }
  .about-list ul li.about-05 {
    background: url(../images/millipro/about-back-05_sp.png) no-repeat top center/100% !important;
    aspect-ratio: 311/274;
  }
  .about-list ul li.about-06 {
    background: url(../images/millipro/about-back-06_sp.png) no-repeat top center/100% !important;
    aspect-ratio: 311/274;
  }
}
.about-list ul li.about-01 .card-heading, .about-list ul li.about-03 .card-heading, .about-list ul li.about-05 .card-heading {
  width: 20vw;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .about-list ul li.about-01 .card-heading, .about-list ul li.about-03 .card-heading, .about-list ul li.about-05 .card-heading {
    width: 62vw;
  }
}
.about-list ul li.about-02 .card-heading, .about-list ul li.about-04 .card-heading, .about-list ul li.about-06 .card-heading {
  width: 20vw;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .about-list ul li.about-02 .card-heading, .about-list ul li.about-04 .card-heading, .about-list ul li.about-06 .card-heading {
    width: 62vw;
  }
}
.about-list ul li.about-02 .card-heading h3:after, .about-list ul li.about-04 .card-heading h3:after, .about-list ul li.about-06 .card-heading h3:after {
  background: #8989F8;
}
.about-list ul li.about-06 .card-heading {
  width: 24vw;
  margin-right: 1.5vw;
}
@media screen and (max-width: 767px) {
  .about-list ul li.about-06 .card-heading {
    width: 70vw;
    margin: auto;
  }
}
.about-list ul li.list-a {
  background: url(../images/millipro/about-back-01.svg) no-repeat top center/100%;
}
@media screen and (max-width: 767px) {
  .about-list ul li.list-a {
    background: none;
  }
}
.about-list ul li.list-b {
  background: url(../images/millipro/about-back-02.svg) no-repeat top center/100%;
}
@media screen and (max-width: 767px) {
  .about-list ul li.list-b {
    background: none;
  }
}
.about-list ul .card-heading {
  position: absolute;
  margin: auto;
  z-index: 10;
  text-align: center;
  transform: translateY(-2vw);
}
@media screen and (max-width: 767px) {
  .about-list ul .card-heading {
    transform: translateY(-7vw);
  }
}
.about-list ul .card-heading h3 {
  text-align: center;
  font-size: 5vw;
  padding: 0.5vw 0.2vw;
  background: #fff;
  color: #7E7EFC;
  border-radius: 10px;
  border: 1px solid #8989F8;
}
@media (min-width: 768px) {
  .about-list ul .card-heading h3 {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 767px) {
  .about-list ul .card-heading h3 {
    padding: 2.5vw 0.2vw;
  }
}
.about-list ul .card-heading h3:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #73C9DE;
  border: 1px solid #8989F8;
  transform-origin: left center;
  transform: translateY(0.4vw) scaleX(1.015);
  z-index: -1;
}
.about-list ul figure {
  padding: 0 2vw 1vw 1.6vw;
}
.about-list ul figure.about-01 {
  padding: 6vw 3vw 1vw 2.4vw;
}
.about-list ul figure.about-01 img {
  margin-bottom: 1vw;
  width: 23.5vw;
}
@media screen and (max-width: 767px) {
  .about-list ul figure.about-01 img {
    width: 54vw;
    margin-top: 5vw;
  }
}
.about-list ul figure.about-02 {
  padding: 2.5vw 4.8vw 1vw 4.4vw;
}
.about-list ul figure.about-02 img {
  margin-bottom: 1vw;
  width: 23.5vw;
}
@media screen and (max-width: 767px) {
  .about-list ul figure.about-02 img {
    width: 34vw;
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
}
.about-list ul figure.about-03 {
  padding: 2.6vw 1.9vw 1vw 1.3vw;
}
.about-list ul figure.about-03 img {
  margin-bottom: 0.9vw;
  width: 19vw;
}
@media screen and (max-width: 767px) {
  .about-list ul figure.about-03 img {
    width: 52vw;
    margin-top: 5vw;
  }
}
.about-list ul figure.about-04 {
  padding: 5vw 2.4vw 1vw 2vw;
}
.about-list ul figure.about-04 img {
  margin-bottom: 1.4vw;
  width: 18vw;
}
@media screen and (max-width: 767px) {
  .about-list ul figure.about-04 img {
    width: 50vw;
    margin-top: 5vw;
    margin-bottom: 6vw;
  }
}
.about-list ul figure.about-05 {
  padding: 5.3vw 4.4vw 1vw 3vw;
}
.about-list ul figure.about-05 img {
  margin-bottom: 3.1vw;
  width: 11.5vw;
}
@media screen and (max-width: 767px) {
  .about-list ul figure.about-05 img {
    width: 36vw;
    margin-top: 5vw;
  }
}
.about-list ul figure.about-06 {
  padding: 4vw 1.5vw 1.5vw 1vw;
}
.about-list ul figure.about-06 img {
  margin-bottom: 2.8vw;
  width: 13.5vw;
}
@media screen and (max-width: 767px) {
  .about-list ul figure.about-06 img {
    width: 36.5vw;
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
}
.about-list ul figure figcaption {
  font-size: 4.2vw;
  color: #7E7EFC;
  font-weight: bold;
  list-style: 1.35;
}
@media (min-width: 768px) {
  .about-list ul figure figcaption {
    font-size: 1.15vw;
  }
}
@media screen and (max-width: 767px) {
  .about-list ul figure figcaption {
    line-height: 1.4;
    padding-top: 1vw;
  }
}
.about-list ul figure figcaption a {
  color: #7E7EFC;
}
.about-list ul figure figcaption span {
  font-size: 3.8vw;
}
@media (min-width: 768px) {
  .about-list ul figure figcaption span {
    font-size: 0.9vw;
  }
}

.object-01,
.object-02,
.object-03,
.object-04,
.object-05,
.object-06 {
  position: absolute;
}

.object-01 {
  left: 5.5vw;
  top: -12vw;
}
@media screen and (max-width: 767px) {
  .object-01 {
    left: 0vw;
    top: -12vw;
  }
}
.object-01 img {
  width: 4vw;
}
@media screen and (max-width: 767px) {
  .object-01 img {
    width: 12vw;
  }
}

.object-02 {
  right: 6vw;
  top: -15vw;
}
@media screen and (max-width: 767px) {
  .object-02 {
    right: 1vw;
    top: -36vw;
  }
}
.object-02 img {
  width: 10vw;
}
@media screen and (max-width: 767px) {
  .object-02 img {
    width: 20vw;
  }
}

.object-03 {
  left: 3vw;
  top: 21vw;
}
@media screen and (max-width: 767px) {
  .object-03 {
    left: -3vw;
    top: 120vw;
  }
}
.object-03 img {
  width: 8vw;
}
@media screen and (max-width: 767px) {
  .object-03 img {
    width: 22vw;
  }
}

.object-04 {
  right: 6vw;
  bottom: 15vw;
}
@media screen and (max-width: 767px) {
  .object-04 {
    right: -16vw;
    bottom: 155vw;
  }
}
.object-04 img {
  width: 8vw;
}
@media screen and (max-width: 767px) {
  .object-04 img {
    width: 32vw;
  }
}

.campaign {
  background: #fff;
  padding: 0vw 0 5.2vw;
  position: relative;
  background: url(../images/millipro/campaign_back.svg) repeat top left/cover;
}
@media screen and (max-width: 767px) {
  .campaign {
    padding: 13.8vw 0 6vw;
    background-size: 200%;
    background: url(../images/millipro/sp-campaign_back.svg) repeat top left/cover;
  }
}
.campaign h2 {
  width: 96vw;
  margin: 0 auto;
  text-align: left;
  font-size: 15.4vw;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.54;
  padding: 2vw 3vw 0;
}
@media (min-width: 768px) {
  .campaign h2 {
    font-size: 11.1vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign h2 {
    line-height: 1;
    margin-bottom: 7vw;
    letter-spacing: 0;
  }
}
.campaign h2 span {
  display: inline-block;
  margin-left: 3.4vw;
  color: #7E7EFC;
  font-size: 8vw;
}
@media (min-width: 768px) {
  .campaign h2 span {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign h2 span {
    line-height: 1;
    margin-left: 0;
    font-weight: 900;
    transform: translateY(-5vw);
  }
}
.campaign .object-01,
.campaign .object-02,
.campaign .object-03,
.campaign .object-04,
.campaign .object-05 {
  position: absolute;
}
.campaign .object-01 {
  left: auto;
  right: 8vw;
  top: -3vw;
  width: 5vw;
}
@media screen and (max-width: 767px) {
  .campaign .object-01 {
    left: auto;
    right: 8vw;
    top: -7vw;
    width: 10vw;
  }
}
.campaign .object-01 img {
  width: 100%;
}
.campaign .object-02 {
  left: auto;
  right: 6vw;
  top: 0.6vw;
  width: 2.4vw;
}
@media screen and (max-width: 767px) {
  .campaign .object-02 {
    left: auto;
    right: 6vw;
    top: 0.6vw;
    width: 5vw;
  }
}
.campaign .object-03 {
  left: 3vw;
  top: 14vw;
  width: 5vw;
}
@media screen and (max-width: 767px) {
  .campaign .object-03 {
    left: 5vw;
    top: 103vw;
    width: 10vw;
  }
}
.campaign .object-03 img {
  width: 9vw;
}
@media screen and (max-width: 767px) {
  .campaign .object-03 img {
    width: 21vw;
  }
}
.campaign .object-04 {
  left: 7vw;
  top: 18.5vw;
  width: 2.8vw;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .campaign .object-04 {
    left: auto;
    right: 25vw;
    top: auto;
    bottom: -130vw;
    width: 5vw;
    z-index: 100;
  }
}
.campaign .object-05 {
  left: auto;
  right: 6vw;
  bottom: -1.3vw;
  width: 4vw;
}
@media screen and (max-width: 767px) {
  .campaign .object-05 {
    left: auto;
    right: 14vw;
    top: auto;
    bottom: -1.3vw;
    width: 10vw;
  }
}
.campaign .object-06 {
  right: -5vw;
  top: 3.4vw;
}
@media screen and (max-width: 767px) {
  .campaign .object-06 {
    right: -3.4vw;
    top: 35vw;
  }
}
.campaign .object-06 img {
  width: 10vw;
}
@media screen and (max-width: 767px) {
  .campaign .object-06 img {
    width: 23vw;
  }
}

.campaign-list {
  width: 86vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .campaign-list {
    width: 94vw;
  }
}
.campaign-list li {
  background: #fff;
  border-radius: 8vw;
  position: relative;
  padding: 2.4vw 3vw;
  margin-bottom: 2.5vw;
}
@media (min-width: 768px) {
  .campaign-list li {
    border-radius: 3.90625vw;
  }
}
.campaign-list li.campaign02 {
  padding: 2.4vw 2%;
}
@media screen and (max-width: 767px) {
  .campaign-list li.campaign02 dl {
    padding: 0 2.3vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign-list li {
    padding: 13vw 3vw;
    margin-bottom: 10vw;
  }
  .campaign-list li.campaign02 {
    padding: 13vw 0;
  }
}
.campaign-list li h3 {
  font-size: 7vw;
  color: #7E7EFC;
  margin-bottom: 0.4em;
}
@media (min-width: 768px) {
  .campaign-list li h3 {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign-list li h3 {
    line-height: 1.5;
    margin-bottom: 6vw;
  }
}
.campaign-list li p {
  margin: 0 auto 0.7em;
  display: inline-block;
  font-size: 6vw;
  letter-spacing: 0.03em;
  padding: 0 1vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  .campaign-list li p {
    font-size: 2vw;
  }
}
@media (max-width: 767px) {
  .campaign-list li p {
    padding: 0.3vw 2.3vw;
    margin-bottom: 8vw;
  }
}
.campaign-list li p span {
  background: #7E7EFC;
  color: #fff;
  padding: 0 0.5vw;
  -webkit-box-decoration-break: slice;
  box-decoration-break: slice;
}
@media (max-width: 767px) {
  .campaign-list li p span {
    -webkit-box-decoration-break: slice;
    box-decoration-break: slice;
    padding: 0.5vw 0;
    box-shadow: 0.3em 0 0 #7E7EFC, -0.3em 0 0 #7E7EFC;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}
.campaign-list li dl {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 4vw;
  color: #7E7EFC;
  font-weight: 700;
}
@media (min-width: 768px) {
  .campaign-list li dl {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign-list li dl {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 0 0 0.8em;
  }
}
.campaign-list li dl dt {
  margin-right: 1.2em;
  font-weight: 600;
}
.campaign-list li dl dd {
  font-weight: 500;
  text-align: left;
}
.campaign-list li .caution {
  position: absolute;
  font-size: 3.6vw;
  bottom: 14px;
  right: 3vw;
  color: #7E7EFC;
  font-weight: 500;
}
@media (min-width: 768px) {
  .campaign-list li .caution {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 767px) {
  .campaign-list li .caution {
    position: relative;
    display: block;
    left: 2vw;
    padding-top: 0.5vw;
    text-align: left;
    bottom: auto;
    line-height: 1.2;
  }
}
.campaign-list li figure {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .campaign-list li figure {
    position: relative;
    left: auto;
    right: auto;
  }
}
.campaign-list li figure.campaign-img-01 {
  width: 19vw;
  top: 1vw;
  right: 3vw;
}
@media screen and (max-width: 767px) {
  .campaign-list li figure.campaign-img-01 {
    width: 53vw;
    left: 6vw;
    right: 0;
    top: -1vw;
    margin: auto auto 5vw;
  }
}
.campaign-list li figure.campaign-img-02 {
  width: 13vw;
  top: 4vw;
  right: 6vw;
}
@media screen and (max-width: 767px) {
  .campaign-list li figure.campaign-img-02 {
    width: 38vw;
    left: 0;
    right: 0;
    top: -1vw;
    margin: auto auto 0;
  }
}

.app-join-wrap {
  width: 86vw;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8vw;
  background: #FFF9EF;
  padding: 5vw 6vw 5vw;
  box-sizing: border-box;
  position: relative;
  border-radius: 8vw;
}
@media (min-width: 768px) {
  .app-join-wrap {
    border-radius: 6.25vw;
  }
}
@media screen and (max-width: 767px) {
  .app-join-wrap {
    width: 94vw;
    margin-bottom: 14vw;
    padding: 12vw 0vw 20vw 5vw;
  }
}
.app-join-wrap .swiper-pagination {
  bottom: 1vw !important;
}
@media screen and (max-width: 767px) {
  .app-join-wrap .swiper-pagination {
    top: 73vw !important;
  }
}
.app-join-wrap .swiper-pagination .swiper-pagination-bullet {
  background: #EBE9F8 !important;
  margin: 0 0.6vw;
  opacity: 1 !important;
}
@media screen and (max-width: 767px) {
  .app-join-wrap .swiper-pagination .swiper-pagination-bullet {
    margin: 0 2vw;
  }
}
.app-join-wrap .swiper-pagination .swiper-pagination-bullet-active {
  background: #7E7EFC !important;
}
.app-join-wrap .slider-2 {
  position: relative;
}
.app-join-wrap .slider-2 .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .app-join-wrap .slider-2 .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.app-join-wrap .slider-2 .swiper-slide figure {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .app-join-wrap .slider-2 .swiper-slide figure {
    width: 100%;
  }
}
.app-join-wrap .slider-2 .swiper-slide figure img {
  width: 20vw;
}
@media screen and (max-width: 767px) {
  .app-join-wrap .slider-2 .swiper-slide figure img {
    width: 33vw;
  }
}
.app-join-wrap .slider-2 .swiper-slide .app-in-method {
  width: 48%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .app-join-wrap .slider-2 .swiper-slide .app-in-method {
    width: 100%;
    padding-bottom: 20vw;
    box-sizing: border-box;
    padding: 4px;
    margin-bottom: 20vw;
  }
}
.app-join-wrap .slider-2 .swiper-slide .app-in-method h3 {
  line-height: 1.5;
  font-weight: 800;
  color: #7E7EFC;
  margin-top: -0.8vw;
  font-size: 7vw;
  letter-spacing: -0.07em;
  margin-bottom: 2.1vw;
}
@media (min-width: 768px) {
  .app-join-wrap .slider-2 .swiper-slide .app-in-method h3 {
    font-size: 3vw;
  }
}
@media (max-width: 767px) {
  .app-join-wrap .slider-2 .swiper-slide .app-in-method h3 {
    padding-top: 11vw;
    padding-bottom: 3vw;
  }
}
.app-join-wrap .slider-2 .swiper-slide .app-in-method h3 span {
  letter-spacing: 0;
  font-size: 5vw;
}
@media (min-width: 768px) {
  .app-join-wrap .slider-2 .swiper-slide .app-in-method h3 span {
    font-size: 1.5vw;
  }
}
.app-join-wrap .slider-2 .swiper-slide .app-in-method h3 strong {
  letter-spacing: 0;
  display: inline-block;
  margin-left: 0.5vw;
  font-size: 8vw;
}
@media (min-width: 768px) {
  .app-join-wrap .slider-2 .swiper-slide .app-in-method h3 strong {
    font-size: 3.4vw;
  }
}
.app-join-wrap .slider-2 .swiper-slide .app-in-method .app-txt span {
  background: #363636;
  color: #fff;
  display: inline;
  font-weight: 500;
  margin: 0 0 0.7vw;
  padding: 0.2vw 0.35vw;
  font-size: 3.3vw;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 2.4;
}
@media (min-width: 768px) {
  .app-join-wrap .slider-2 .swiper-slide .app-in-method .app-txt span {
    font-size: 1.2vw;
  }
}
@media (max-width: 767px) {
  .app-join-wrap .slider-2 .swiper-slide .app-in-method .app-txt span {
    -webkit-box-decoration-break: slice;
    box-decoration-break: slice;
    line-height: 1.8;
    padding: 0.5vw 0.8vw;
  }
}
.app-join-wrap .slider-2 .swiper-slide .app-in-method .app-txt span.lvl2 {
  list-style: 1;
  font-size: 2.8vw;
}
@media (min-width: 768px) {
  .app-join-wrap .slider-2 .swiper-slide .app-in-method .app-txt span.lvl2 {
    font-size: 0.96vw;
  }
}
.app-join-wrap .slider-2 .swiper-slide .app-in-method .app-txt span a {
  color: #fff;
}
.app-join-wrap .app-btn {
  position: absolute;
  bottom: 7vw;
  left: 44vw;
  z-index: 10;
}
@media (max-width: 767px) {
  .app-join-wrap .app-btn {
    left: 6vw;
    bottom: 14vw;
    z-index: 100;
  }
}
.app-join-wrap .app-btn a {
  display: inline-block;
  padding: 1.3vw 1vw;
  z-index: 0;
  font-size: 4vw;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  border: 1px solid #8989F8;
  background: #7E7EFC;
  width: 20.5vw;
  transition: all ease 0.4s;
}
@media (min-width: 768px) {
  .app-join-wrap .app-btn a {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 767px) {
  .app-join-wrap .app-btn a {
    padding: 4vw 2vw;
    width: 74vw;
  }
}
.app-join-wrap .app-btn a:hover {
  color: #7E7EFC;
  background: #fff;
  transition: all ease 0.4s;
}
.app-join-wrap .app-btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #9bc9e8;
  border: 1px solid #8989F8;
  transform-origin: left center;
  transform: translateY(0.3vw) scaleX(1.01);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .app-join-wrap .app-btn a::after {
    transform: translateY(1.4vw) scaleX(1.015);
  }
}
.app-join-wrap .object-01,
.app-join-wrap .object-02,
.app-join-wrap .object-03 {
  position: absolute;
  z-index: 10;
}
.app-join-wrap .object-01 {
  left: auto;
  right: 0;
  top: -6vw;
  width: 11.5vw;
}
@media screen and (max-width: 767px) {
  .app-join-wrap .object-01 {
    left: auto;
    right: 0;
    top: -10vw;
    width: 23.5vw;
  }
}
.app-join-wrap .object-01 img {
  width: 100%;
}
.app-join-wrap .object-02 {
  left: -2vw;
  top: 7vw;
  width: 5.4vw;
}
@media screen and (max-width: 767px) {
  .app-join-wrap .object-02 {
    display: none;
  }
}
.app-join-wrap .object-03 {
  left: 3vw;
  top: 10.6vw;
  width: 2.6vw;
}
@media screen and (max-width: 767px) {
  .app-join-wrap .object-03 {
    display: none;
  }
}

.hensai-wrap {
  width: 86vw;
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .hensai-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 94vw;
    margin-top: 9vw;
  }
}
.hensai-wrap .hensai {
  background: #fff;
  width: 48.5%;
  aspect-ratio: 1/1.07;
  padding: 3.8vw 4vw 1.2vw;
  box-sizing: border-box;
  border-radius: 8vw;
}
@media (min-width: 768px) {
  .hensai-wrap .hensai {
    border-radius: 6.25vw;
  }
}
@media screen and (max-width: 767px) {
  .hensai-wrap .hensai {
    width: 100%;
    padding: 10vw 4vw 11.5vw;
    margin-bottom: 6vw;
  }
}
.hensai-wrap .hensai h3 {
  color: #7E7EFC;
  font-size: 7vw;
  font-weight: 800;
  margin-bottom: 0.5vw;
}
@media (min-width: 768px) {
  .hensai-wrap .hensai h3 {
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 767px) {
  .hensai-wrap .hensai h3 {
    margin-bottom: 4vw;
  }
}
.hensai-wrap .hensai h3 span {
  display: block;
  list-style: 1.2;
  font-size: 4vw;
  margin-bottom: 0.5vw;
}
@media (min-width: 768px) {
  .hensai-wrap .hensai h3 span {
    font-size: 1.3vw;
  }
}
.hensai-wrap .hensai h3 strong {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-size: 8vw;
  line-height: 1;
}
@media (min-width: 768px) {
  .hensai-wrap .hensai h3 strong {
    font-size: 3.5vw;
  }
}
.hensai-wrap .hensai .hensai-in-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 1vw;
}
.hensai-wrap .hensai figure {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .hensai-wrap .hensai figure {
    width: 100%;
  }
}
.hensai-wrap .hensai figure.hensai-img-1 .img, .hensai-wrap .hensai figure.hensai-img-2 .img, .hensai-wrap .hensai figure.hensai-img-3 .img {
  height: 16vw;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.9vw;
}
@media screen and (max-width: 767px) {
  .hensai-wrap .hensai figure.hensai-img-1 .img, .hensai-wrap .hensai figure.hensai-img-2 .img, .hensai-wrap .hensai figure.hensai-img-3 .img {
    height: 45vw;
  }
}
.hensai-wrap .hensai figure.hensai-img-1 img, .hensai-wrap .hensai figure.hensai-img-2 img, .hensai-wrap .hensai figure.hensai-img-3 img {
  width: 15vw;
}
@media screen and (max-width: 767px) {
  .hensai-wrap .hensai figure.hensai-img-1 img, .hensai-wrap .hensai figure.hensai-img-2 img, .hensai-wrap .hensai figure.hensai-img-3 img {
    width: 45vw;
    padding-top: 7vw;
    padding-bottom: 5.5vw;
  }
}
.hensai-wrap .hensai figure.hensai-img-1 figcaption, .hensai-wrap .hensai figure.hensai-img-2 figcaption, .hensai-wrap .hensai figure.hensai-img-3 figcaption {
  color: #7E7EFC;
  font-size: 5vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hensai-wrap .hensai figure.hensai-img-1 figcaption, .hensai-wrap .hensai figure.hensai-img-2 figcaption, .hensai-wrap .hensai figure.hensai-img-3 figcaption {
    font-size: 1.38vw;
  }
}
.hensai-wrap .hensai figure.hensai-img-1 figcaption span, .hensai-wrap .hensai figure.hensai-img-2 figcaption span, .hensai-wrap .hensai figure.hensai-img-3 figcaption span {
  margin-top: 0.5vw;
  font-size: 4vw;
  display: block;
  list-style: 1.4;
}
@media (min-width: 768px) {
  .hensai-wrap .hensai figure.hensai-img-1 figcaption span, .hensai-wrap .hensai figure.hensai-img-2 figcaption span, .hensai-wrap .hensai figure.hensai-img-3 figcaption span {
    font-size: 1.06vw;
  }
}
.hensai-wrap .hensai figure.hensai-img-2 img {
  width: 13.5vw;
}
@media screen and (max-width: 767px) {
  .hensai-wrap .hensai figure.hensai-img-2 img {
    width: 35vw;
  }
}
.hensai-wrap .hensai figure.hensai-img-3 img {
  height: 100%;
  width: auto;
}
.hensai-wrap .hensai .hensai-bottom {
  height: 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .hensai-wrap .hensai .hensai-bottom {
    height: auto;
    margin-top: 3.5vw;
    margin-bottom: 2vw;
  }
}
.hensai-wrap .hensai .hensai-bottom p {
  background: #363636;
  color: #fff;
  margin: 0.4vw 0;
  padding: 0 0.4vw;
  font-weight: 700;
  font-size: 4vw;
}
@media (min-width: 768px) {
  .hensai-wrap .hensai .hensai-bottom p {
    font-size: 1.2vw;
  }
}
.hensai-wrap .object-01,
.hensai-wrap .object-02 {
  position: absolute;
}
.hensai-wrap .object-01 {
  right: 2vw;
  top: -2vw;
}
@media screen and (max-width: 767px) {
  .hensai-wrap .object-01 {
    top: -6vw;
  }
}
.hensai-wrap .object-01 img {
  width: 4vw;
}
@media screen and (max-width: 767px) {
  .hensai-wrap .object-01 img {
    width: 11vw;
  }
}
.hensai-wrap .object-02 {
  left: 1.3vw;
  bottom: -3.2vw;
}
@media screen and (max-width: 767px) {
  .hensai-wrap .object-02 {
    bottom: 0;
    top: -48vw;
    left: -5vw;
  }
}
.hensai-wrap .object-02 img {
  width: 10.5vw;
}
@media screen and (max-width: 767px) {
  .hensai-wrap .object-02 img {
    width: 22vw;
  }
}

.nudge-support {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .nudge-support {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}
.nudge-support .support-left,
.nudge-support .support-right {
  width: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .nudge-support .support-left,
  .nudge-support .support-right {
    width: 100%;
  }
}
.nudge-support .support-left {
  background: url(../images/millipro/support-left.svg) no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10vw 0 10vw 10vw;
}
@media screen and (max-width: 767px) {
  .nudge-support .support-left {
    aspect-ratio: 375/480;
    padding: 0vw 0 0vw 2.5vw;
    background: url(../images/millipro/support-left_sp.svg) no-repeat center center/cover;
  }
}
.nudge-support .support-left h3 {
  text-align: left;
  font-size: 8.5vw;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 3vw;
  color: #fff;
}
@media (min-width: 768px) {
  .nudge-support .support-left h3 {
    font-size: 3.45vw;
  }
}
@media screen and (max-width: 767px) {
  .nudge-support .support-left h3 {
    margin-bottom: 4vw;
    line-height: 1.7;
  }
}
.nudge-support .support-left .support-txt {
  text-align: left;
  margin-bottom: 3.5vw;
}
@media screen and (max-width: 767px) {
  .nudge-support .support-left .support-txt {
    margin-bottom: 0.5vw;
  }
}
.nudge-support .support-left .support-txt p {
  margin-top: 1.4vw;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .nudge-support .support-left .support-txt p {
    margin-top: 4vw;
    margin-left: 1vw;
  }
}
.nudge-support .support-left .support-txt p span {
  font-size: 4.2vw;
  background: #363636;
  font-weight: 700;
  padding: 0.1vw 0.5vw;
  -webkit-box-decoration-break: slice;
  box-decoration-break: slice;
}
@media (min-width: 768px) {
  .nudge-support .support-left .support-txt p span {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .nudge-support .support-left .support-txt p span {
    padding: 0.1vw 1vw;
    line-height: 2.2;
    box-shadow: 0.1em 0 0 #363636, -0.1em 0 0 #363636;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}
.nudge-support .support-right {
  background: url(../images/millipro/support-right.svg) no-repeat center center/cover;
  padding: 5.3vw 5vw;
}
@media screen and (max-width: 767px) {
  .nudge-support .support-right {
    aspect-ratio: 375/414;
    padding: 11vw 14vw 3vw 3vw;
    background: url(../images/millipro/support-right_sp.svg) no-repeat center center/cover;
  }
}/*# sourceMappingURL=styles.css.map */