/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

:root {
  --vw: 1vw;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 0.9090909091vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0;
  color: #0F0A14;
  line-break: strict;
  isolation: isolate;
  background: #fff;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}

.js-preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-orientation: none;
  width: 100%;
  height: auto;
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 1040.1px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* main
--------------------------------------------------*/
.f-wrap {
  max-width: 100rem;
  margin: 0 auto;
  /*
  @include deviceTABmin{
  	padding: 0 2rem;
  }
  */
}
@media screen and (max-width: 767px) {
  .f-wrap {
    width: auto;
    padding: 0 3rem;
  }
}

.simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
}

/* link
--------------------------------------------------*/
a {
  color: #0F0A14;
  transition: 0.5s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    opacity: 0.5;
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #0F0A14;
  transition: 0.5s;
  will-change: transform;
}
button:focus {
  text-decoration: none;
}

.l-header {
  padding: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 1rem 0;
  }
}
.l-header__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__wrap {
    padding: 0 1rem;
  }
}
.l-header__logo {
  width: 16.3rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 12.2rem;
  }
}
.l-header__btn {
  width: 26rem;
  height: 4rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-header__btn {
    width: 19.6rem;
    height: 3.4rem;
    font-size: 1.2rem;
  }
}
.l-header__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  background: #9333B5;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}

.p-float {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 25rem;
  padding: 1rem;
  background: #9333B5;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-float {
    width: 100%;
    height: 7rem;
    padding: 0 3rem 0.3rem 1.7rem;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-float__img {
    display: none;
  }
}
.p-float__btn {
  margin: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-float__btn {
    margin: 0;
  }
}

.l-footer {
  background: linear-gradient(90deg, #9333B5 0%, #5B2DBC 100%);
  padding: 2.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 5rem 0 7rem;
  }
}
.l-footer__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 5.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__wrap {
    display: block;
    padding: 0 3rem 5rem;
  }
}
.l-footer__img {
  width: 23.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__img {
    display: none;
  }
}
.l-footer-content {
  width: 38.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer-content {
    width: auto;
  }
}
.l-footer-content__pre {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer-content__pre {
    font-size: 2.2rem;
  }
}
.l-footer-content__en {
  font-size: 2.3rem;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer-content__en {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-content__logo {
    max-width: 30rem;
  }
}
.l-footer-content__sub {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  margin:1rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer-content__sub {
    font-size: 1.2rem;
  }
}


.l-footer .c-btns {
  margin: 1.5rem 0 0;
}

@media screen and (max-width: 767px) {
  .l-footer .c-btns {
    justify-content: flex-start;
    gap: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .c-btns__item {
    height: 4.4rem;
  }
}
.l-footer__copy {
  color: #fff;
  text-align: center;
  background: #000;
  line-height: 1;
  font-size: 1.2rem;
  padding: 1.3rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 1.2rem;
    padding: 0.8rem 0;
  }
}

.c-heading {
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 3rem;
    line-height: 1.3;
  }
}
.c-heading span {
  font-size: 4rem;
  color: #9333B5;
}
.c-heading span.--txtN {
  font-size: 3.4rem;
  color: #9333B5;
}
@media screen and (max-width: 767px) {
  .c-heading span {
    font-size: 3.6rem;
  }
  .c-heading span.--txtN {
    font-size: 3.0rem;
  }
}

.c-btns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 1rem;
  margin: 3.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-btns {
    justify-content: center;
    gap: 0 2rem;
    margin: 2rem 0 0;
  }
}
.c-btns__item {
  width: auto;
  height: 4.4rem;
}
@media screen and (max-width: 767px) {
  .c-btns__item {
    height: 5rem;
  }
}
.c-btns__item img {
  width: auto;
  height: 100%;
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
.u-sp {
  display: none;
}

@media screen and (min-width: 1040.1px) {
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
  .u-pc {
    display: none;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

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

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

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-mt10 {
  margin-top: 1rem;
}
.u-mt15 {
  margin-top: 1.5rem;
}
.u-mt20 {
  margin-top: 2rem;
}
.u-mt30 {
  margin-top: 3rem;
}
.u-mt40 {
  margin-top: 4rem;
}
.u-mt50 {
  margin-top: 5rem;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

/* --------------------------------------------------
other
-------------------------------------------------- */
.u-bold { /*font-weight: 700;*/ }

.p-mv {
  background: url(../images/bg_mv.jpg?20250711) center center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-mv {
    background: url(../images/bg_mv_sp.jpg?20250711) center center/cover no-repeat;
    padding: 2rem 0 0;
  }
}
.p-mv__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-mv__wrap {
    flex-flow: column;
  }
}
.p-mv-ttl {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-mv-ttl {
    font-size: 2.6rem;
    text-align: center;
  }
}
span.p-mv-ttl__one{
  color:#9333B5;
  font-size:3.6rem;
}
@media screen and (max-width: 767px) {
  span.p-mv-ttl__one{
    font-size:3.0rem;
  }
}
.p-mv-ttl__two {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 1.6rem 0 0;
}
.p-mv-ttl__two img {
  width: 30rem;
  margin-right: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-mv-ttl__two {
    justify-content: center;
  }
  .p-mv-ttl__two img {
    width: 29rem;
    /*margin-top: 8px;*/
  }
}
.p-mv-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 34rem;
  margin: 3.3rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-mv-list {
    gap: 0 1.8rem;
    justify-content: center;
    margin: 1.8rem 0 0;
  }
}
.p-mv-list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  background: linear-gradient(90deg, #9333B5 0%, #5B2DBC 100%);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 0.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-mv-list__item {
    width: 9rem;
    height: 9rem;
    font-size: 1.4rem;
  }
}
.p-mv__img {
  width: 33.6rem;
}
@media screen and (max-width: 767px) {
  .p-mv__img {
    width: 24rem;
    margin: 2.4rem 0 0;
  }
}

.p-intro {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-intro {
    margin-top: 3rem;
  }
}
.p-intro__txt span {
  color: #9333B5;
  font-weight: 700;
}
.p-intro__txtL{
  font-size:2.0rem;
  margin-top:2rem;
  font-weight: 700;
}
.p-intro__txtL span{
  color: #9333B5;
}

.p-feature {
  margin: 11rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-feature {
    margin: 6rem 0 0;
  }
}
.p-feature__pre {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  width: 12rem;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #9333B5 0%, #5B2DBC 100%);
  color: #fff;
  border-radius: 3rem;
  padding: 0.8rem 0;
  gap: 0 0.5rem;
  margin: 0 0 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-feature__pre {
    width: 10rem;
    font-size: 1.8rem;
    padding: 0.6rem 0 0.8rem;
  }
}
.p-feature__pre span {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-feature__pre span {
    font-size: 2.2rem;
  }
}
.p-feature__ttl {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 700;
  border-bottom: 2px solid #E4BFF2;
  padding: 0 0 1rem;
  margin: 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-feature__ttl {
    font-size: 2.2rem;
    padding: 0 0 1.4rem;
  }
}
.p-feature__ttl span {
  color: #9333B5;
}
.p-feature__block {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: end;
  align-items: center;
  width: 100rem;
  gap: 0 5.6rem;
  margin: 4.8rem auto 0;
  padding: 0 0 3.2rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-feature__block {
    display: block;
    width: auto;
    margin: 2rem auto 0;
    padding: 0;
  }
}
.p-feature__movie {
  position: absolute;
  bottom: 3.4rem;
  right: 0;
  width: 30rem;
  overflow: hidden;
  border-radius: 4.8rem;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-feature__movie {
    position: relative;
    bottom: auto;
    right: auto;
    width: 20rem;
    margin: 0 auto;
    border-radius: 3rem;
  }
}
.p-feature__movie video {
  width: 100%;
}
.p-feature__movie02 {
  position: relative;
  width: 19rem;
}
@media screen and (max-width: 767px) {
  .p-feature__movie02 {
    margin: 3rem 0 0;
  }
}
.p-feature__movie02 video {
  width: 100%;
  border-radius: 2.8rem;
}
.p-feature__movie02 .ai {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 4rem;
  height: 4rem;
}


.p-feature-top {
  position: relative;
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-feature-top {
    margin: 5rem 0 4rem;
  }
}
.p-feature-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32.6rem;
  background: #F7F2F9;
}
@media screen and (max-width: 767px) {
  .p-feature-top::after {
    content: none;
  }
}
.p-feature-top__inner {
  width: 66rem;
}
@media screen and (max-width: 767px) {
  .p-feature-top__inner {
    width: auto;
  }
}
.p-feature-step {
  width: 28rem;
}
@media screen and (max-width: 767px) {
  .p-feature-step {
    width: auto;
    padding: 3rem;
    background: #F7F2F9;
    margin: 2rem 0 0;
  }
}
.p-feature-step__ttl {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-feature-step__ttl {
    font-size: 1.8rem;
  }
}
.p-feature-step-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  counter-reset: item;
  flex-flow: column;
  width: 28rem;
  gap: 2rem 0;
  margin: 1.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-feature-step-list {
    width: 100%;
    gap: 2.3rem 0;
    margin: 1.2rem 0 0;
  }
}
.p-feature-step-list__item {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #9333B5 0%, #5B2DBC 100%);
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  font-size: 1.4rem;
  border-radius: 2rem;
  padding: 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-feature-step-list__item {
    font-size: 1.6rem;
    padding: 1.2rem 0;
  }
}
.p-feature-step-list__item:last-child::after {
  content: none;
}
.p-feature-step-list__item::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  top: 50%;
  left: 1.6rem;
  color: #fff;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-feature-step-list__item::before {
    font-size: 1.8rem;
  }
}
.p-feature-step-list__item::after {
  content: "";
  position: absolute;
  bottom: -1.6rem;
  left: 50%;
  width: 1.2rem;
  height: 1.1rem;
  background: #9333B5;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-feature-step-list__item::after {
    bottom: -1.9rem;
    width: 1.5rem;
    height: 1.4rem;
  }
}
.p-feature-step-list__item.is-light img {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 1.4rem;
  height: auto;
  transform: translateY(-50%);
}
.p-feature-point {
  width: 27.4rem;
}
@media screen and (max-width: 767px) {
  .p-feature-point {
    width: auto;
    padding: 0 4rem 3rem;
    background: #F7F2F9;
  }
}
.p-feature-point__ttl {
  position: relative;
  color: #9333B5;
  font-weight: 700;
  padding: 0 0 0 1.7rem;
  margin-bottom:0.5rem;
}
.p-feature-point__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.4rem;
  height: 2rem;
  background: url(../images/icn_light.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.p-feature-point__ttl span {
  color: #0F0A14;
}
.p-feature-point__txt {
  line-height: 1.5;
  font-size: 1.3rem;
  margin: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-feature-point__ttl {
    font-size: 1.8rem;
  }
  .p-feature-point__txt {
    font-size: 1.5rem;
  }
}
.p-feature-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-flow: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-feature-content {
    flex-flow: column;
  }
  .p-feature-content + .p-feature-content {
    margin-top: 5rem;
  }
}
.p-feature-content.is-reverse {
  flex-flow: row;
}
@media screen and (max-width: 767px) {
  .p-feature-content.is-reverse {
    flex-flow: column;
  }
}
.p-feature-content.is-last {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-feature-content.is-last {
    margin-top: 5rem;
  }
}
.p-feature-content__detail {
  width: 75rem;
}
@media screen and (max-width: 767px) {
  .p-feature-content__detail {
    width: auto;
  }
}
.is-last .p-feature-content__detail {
  /*width: 62rem;*/
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .is-last .p-feature-content__detail {
    width: auto;
  }
}
.p-feature-content__img {
  position: relative;
  width: 19rem;
}
@media screen and (max-width: 767px) {
  .p-feature-content__img {
    margin: 3rem 0 0;
  }
}
.is-last .p-feature-content__img {
  width: 37rem;
}
@media screen and (max-width: 767px) {
  .is-last .p-feature-content__img {
    width: 30rem;
  }
}
.p-feature-content__img .ai {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 4rem;
  height: 4rem;
}

.p-feature-content__img-f5 {
  position: relative;
  width: 30rem;
  margin:20px auto 0;
}


.p-start {
  background: #F7F2F9;
  padding: 5rem 0 6rem;
  margin: 13rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-start {
    margin-top: 7rem;
    padding: 2rem 0;
  }
}
.p-start__movie {
  width: 60rem;
  /*height: 33.5rem;*/
  height: 33.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-start__movie {
    width: 100%;
    height: auto;
    /*aspect-ratio: 6/4;*/
    aspect-ratio: 16/9;
    margin: 0;
  }
}
.p-start__movie iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.p-start__movie video {
  width: 100%;
  height: 100%;
  border: 0;
}

.p-method {
  padding: 8rem 0 9rem;
}
.p-method.is-02 {
  padding: 0 0 6rem;
}

@media screen and (max-width: 767px) {
  .p-method {
    padding: 5rem 0 0;
  }
  .p-method.is-02 {
    padding: 0 0 2rem;
  }
}
.p-method__img {
  display: block;
  width: 89.9rem;
  margin: 4.5rem auto 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-method__img {
    width: calc(100% + 6rem);
    margin: 3rem -3rem 6rem;
  }
}
.p-method__img.is-02 {
  width: 57rem;
  margin: 3rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-method__img.is-02 {
    width: calc(100% + 6rem);
    margin: 3rem -3rem 0;
  }
}
.p-method__inner {
  margin: 7.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-method__inner {
    margin: 4rem 0 0;
  }
}

.p-cycle {
  background: #F7F2F9;
  text-align: center;
  padding: 3rem 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-cycle {
    text-align: left;
    padding: 3rem 3rem 2rem;
  }
}
.p-cycle__ttl {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.p-cycle__ttl .wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 2.2rem;
  border-bottom: 1px solid #9333B5;
  padding: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-cycle__ttl .wrap {
    display: block;
    padding: 0 0 1.4rem;
  }
}
.p-cycle__ttl .small {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-cycle__ttl .small {
    display: block;
    line-height: 1.8;
    margin: 2rem 0 0;
  }
}
.p-cycle__scroll {
  margin: 3.6rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-cycle__scroll {
    overflow-x: scroll;
    margin: 3rem -3rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-cycle__inner {
    width: 104.2rem;
    padding: 0;
  }
}
.p-cycle-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-cycle-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 3rem 1rem;
  }
}
.p-cycle-list__img {
  width: 15.1rem;
  height: 14.4rem;
}
.p-cycle-list__img img {
  width: auto;
  height: 100%;
}
.p-cycle-list__txt {
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin: 2.6rem 0 0;
}
.p-cycle-list__item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cycle-list__item {
    height: 19rem;
  }
}
.p-cycle-list__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1.6rem;
  width: 1.6rem;
  height: 1.6rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #9333B5;
}
@media screen and (max-width: 767px) {
  .p-cycle-list__item::before {
    bottom: 0.3rem;
  }
}
.p-cycle-list__item:first-child::before {
  content: none;
}

.p-other__block {
  padding: 6rem 0;
}
.p-other__block.is-02 {
  background: #FAFAFA;
}
.p-other__block .f-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-other__block .f-wrap {
    flex-flow: column;
  }
}
.p-other-content {
  width: 53rem;
}
@media screen and (max-width: 767px) {
  .p-other-content {
    width: 100%;
  }
}
.p-other-content__ttl {
  margin: 0 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-other-content__ttl {
    margin: 0 0 2rem;
  }
}
.p-other-content__ttl img {
  width: auto;
  height: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-other-content__ttl img {
    height: 3rem;
  }
}
.is-02 .p-other-content__ttl img {
  height: 3.8rem;
}
@media screen and (max-width: 767px) {
  .is-02 .p-other-content__ttl img {
    height: 3.4rem;
  }
}
.p-other-content__sub {
  color: #0087D2;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  margin: 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-other-content__sub {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0.04em;
    margin: 0 0 1rem;
  }
}
.p-other-content__txt {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-other-content__txt {
    line-height: 1.8;
  }
}
.p-other__img {
  width: 42rem;
}
@media screen and (max-width: 767px) {
  .p-other__img {
    width: calc(100% + 6rem);
    margin: 4rem -3rem 0;
  }
}
.p-other__img img {
  width: 100%;
  height: auto;
}
.p-other-list {
  margin: 3.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-other-list {
    margin: 2rem 0 0;
  }
}
.is-01 .p-other-list {
  width: 38rem;
}
@media screen and (max-width: 767px) {
  .is-01 .p-other-list {
    width: auto;
  }
}
.p-other-list__item {
  position: relative;
  background: #E7F3FA;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1.8rem;
  padding: 1.6rem 0 1.6rem 5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-other-list__item {
    font-size: 1.7rem;
    padding: 1.2rem 1.5rem 1.2rem 4.5rem;
  }
}
.p-other-list__item:first-child {
  margin-top: 0;
}
.p-other-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.8rem;
  width: 2rem;
  height: 1.7rem;
  background: url(../images/icn_other.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.p-other__btn {
  width: 38rem;
  height: 5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 3.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-other__btn {
    width: 100%;
    margin: 3rem 0 0;
  }
}
.p-other__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid #0087D2;
  color: #0087D2;
  border-radius: 5rem;
}
@media (hover: hover) and (pointer: fine) {
  .p-other__btn a:hover {
    background: #0087D2;
    color: #fff;
    opacity: 1;
  }
}

.p-release {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .p-release {
    padding: 6rem 4.5rem;
  }
}
.p-release__ttl {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 700;
  color: #9333B5;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-release__ttl {
    font-size: 3rem;
  }
}


.p-release-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 7rem;
  margin: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-release-list {
    justify-content: space-between;
    gap: 5rem 0;
    margin: 6rem 0 0;
  }
}
.p-release-list__item {
  position: relative;
  width: 16rem;
  height: 16rem;
  color: #9333B5;
  text-align: center;
  border: 1px solid #9333B5;
  border-radius: 100%;
  padding: 5.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-release-list__item {
    width: 13.5rem;
    height: 13.5rem;
    padding: 4.2rem 0 0;
  }
}
.p-release-list__item::after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: rgba(147, 51, 181, 0.08);
}
.p-release-list__item img {
  position: absolute;
  top: -2.4rem;
  left: 50%;
  width: 7.6rem;
  height: auto;
  transform: translateX(-50%);
  z-index:10;
}
@media screen and (max-width: 767px) {
  .p-release-list__item img {
    width: 6.4rem;
  }
}
.p-release-list__item.--icon03 img {
  top: -2.2rem;
  left: 59%;
  width: 8.6rem;
}
.p-release-list__txt {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 7.2rem;
  font-size: 1.8rem;
  line-height: 1.35;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-release-list__txt {
    font-size: 1.5rem;
    min-height: 6.2rem;
  }
}

.p-cta {
  /*background: #FAFAFA;*/
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 3rem;
  }
}
.p-cta__txt {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-cta__txt {
    line-height: 1.6;
  }
}
.p-cta__btn {
  width: 36rem;
  height: 5.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin: 4.6rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    width: 100%;
    font-size: 1.6rem;
    margin: 2rem 0 0;
  }
}
.p-cta__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #9333B5;
  border: 2px solid #9333B5;
  border-radius: 5rem;
}
@media (hover: hover) and (pointer: fine) {
  .p-cta__btn a:hover {
    opacity: 1;
    background: #fff;
    color: #9333B5;
  }
}