/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* 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;
}

/* ------------------------
 *   Foundation/Google Fonts
 * -------------------------------- */
/* ------------------------
 *   Foundation/Font Face
 * -------------------------------- */
/* ------------------------
 *   Foundation/Base
 * -------------------------------- */
body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header,
main,
footer {
  width: 100vw;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
em,
strong,
small,
del,
ins,
abbr,
kbd,
th,
td,
caption,
label,
legend,
code,
figcaption,
pre,
samp,
address,
blockquote,
details,
summary {
  letter-spacing: 0;
  line-height: 1.5;
  white-space: pre-line;
  position: relative;
  margin: 0;
  padding: 0;
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
}

section,
article,
aside,
div,
span,
dl,
dt,
dd,
ul,
ol,
li,
table,
tr,
thead,
tbody,
tfoot,
colgroup,
fieldset,
form,
progress,
figure {
  position: relative;
  margin: 0;
  padding: 0;
}

dl {
  display: flex;
}

img,
svg,
canvas,
iframe,
embed,
audio,
video,
object,
source {
  border: none;
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  position: relative;
  margin: 0;
  padding: 0;
}
/*---------------------------
 * メールフォーム版
 *----------------------------------*/
.form_container{
    max-width: 88%;
    margin: 0 auto;
}
.p-index-summary__frame.c-frame .form_container{
    max-width: 100%;
}
@media (min-width:768px){
.p-index-cta__main .form_container{
    max-width: 65%;
    margin: 0 auto;
}   
}
.inputSyle{
    border: solid 3px #999;
    border-radius: 8px;
    
    font-size: clamp(1.125rem, 0.958rem + 0.83vw, 1.375rem);
    margin-bottom: 12px;
}
input[type="email"]{
    width: 100%;
    border-radius: 8px;
    vertical-align: inherit;
    padding: 8px 8px;
    background-color:"fff;
}
input[type="email"]:focus{
outline:none;
border:none;
}
.submitBtn{
    background-color: #00b900;
    text-align: center;
    color: #fff;
    font-weight: bold;border-radius: 12px;
    font-size: clamp(1.625rem, 1.375rem + 1.25vw, 2rem);
    padding: 12px 4px;
    position: relative;
    -webkit-animation: glow-reverse 2s ease-in-out infinite alternate;
          animation: glow-reverse 2s ease-in-out infinite alternate;
}
.submitBtn::before{
    content: "";
    position: absolute;
    top:0;
    left: 0;
    width:100%;
    height: 100%;
    border-radius: 12px;
    z-index: -1;
     background: inherit;
  -webkit-box-shadow: 0 0 0.3em #00b900, 0 0 0.2em rgba(255, 255, 255, 0.3) inset;
          box-shadow: 0 0 0.3em #00b900, 0 0 0.2em rgba(255, 255, 255, 0.3) inset;
  -webkit-animation: glow 2s ease-in-out infinite alternate;
          animation: glow 2s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes glow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes glow-reverse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes glow-reverse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
input[type="submit"]{
   background:none;
     appearance: none;
  -webkit-appearance: none;
    vertical-align: inherit;
}
/* ------------------------
 *   Layout/Header
 * -------------------------------- */
.l-header {
  position: relative;
  margin: 0;
  padding: 0;
}

.l-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.l-header__head01 {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 5rem;
}

.l-header__text01 {
  width: 48.8125rem;
}

.l-header__head02 {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: 35.75rem;
}

.l-header__head02 h1 {
  white-space: normal;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.l-header__illust {
  position: absolute;
  top: 5.25rem;
  left: 40.125rem;
  width: 27rem;
  height: auto;
}

.l-header__text02 {
  position: absolute;
  top: 2.25rem;
  left: 15.5rem;
  width: 41.3125rem;
  height: auto;
}

.l-header__text03 {
  position: absolute;
  top: 5.5rem;
  left: 10.7rem;
  width: 13.4375rem;
  height: 2.625rem;
}

.l-header__back03 {
  position: absolute;
  top: 4.875rem;
  left: 9.375rem;
  width: 16rem;
  height: 3.75rem;
}

.l-header__text04 {
  position: absolute;
  top: 5.5rem;
  left: 27.5rem;
  width: 35.125rem;
  height: 2.6875rem;
}

.l-header__back04 {
  position: absolute;
  top: 4.875rem;
  left: 26.5625rem;
  width: 37.3125rem;
  height: 3.75rem;
}

.l-header__text05 {
  position: absolute;
  top: 10rem;
  left: 10.25rem;
  width: 14.3125rem;
  height: 2.6875rem;
}

.l-header__back05 {
  position: absolute;
  top: 9.375rem;
  left: 9.375rem;
  width: 16rem;
  height: 3.75rem;
}

.l-header__text06 {
  position: absolute;
  top: 10rem;
  left: 27.1875rem;
  width: 24.7rem;
  height: 2.6rem;
}

.l-header__back06 {
  position: absolute;
  top: 9.375rem;
  left: 26.5625rem;
  width: 26rem;
  height: 3.75rem;
}

.l-header__text07 {
  position: absolute;
  top: 14.375rem;
  left: 8.9375rem;
  width: 39.0625rem;
  height: 20.1875rem;
}

.l-header__text08 {
  width: 42.25rem;
  height: 5.5625rem;
}

.l-header__head03 {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 7.5rem;
}

.l-header .l-header__inner01 {
  background-color: #ca165d;
}

.l-header .l-header__inner02 {
  background-image: url(../../common/img/index/header_back.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.l-header .l-header__inner03 {
  background-color: #ca165d;
}

@media (max-width: 768px) {
  .l-header__inner02 .c-inner__content {
    padding: 0;
  }

  .l-header .l-header__inner02 .c-inner__content {
    padding: 0;
  }

  .l-header .l-header__inner03 {
    background-color: #be0d53;
    background-image: repeating-linear-gradient(-45deg, #af0c4c, #af0c4c 0.28125rem, transparent 0, transparent 0.375rem);
  }

  .l-header__head01 {
    height: 2.4166666667rem;
  }

  .l-header__text01 {
    width: 24.9583333333rem;
    height: auto;
    margin-right: 0.4166666667rem;
  }

  .l-header__head02 {
    height: 22.5rem;
  }

  .l-header__illust {
    top: 4rem;
    left: 17.4166666667rem;
    width: 15.625rem;
    height: auto;
    z-index: 1;
  }

  .l-header__text02 {
    top: 1rem;
    left: 7rem;
    width: 18.041667rem;
    height: auto;
  }

  .l-header__text03 {
    top: 5.3rem;
    left: 3.8rem;
    width: 6.625rem;
    height: auto;
  }

  .l-header__back03 {
    top: 4.5rem;
    left: 1.3333333333rem;
    width: 11.0416666667rem;
    height: 2.5833333333rem;
  }

  .l-header__text04 {
    top: 5.3rem;
    left: 13.5rem;
    width: 16.6833333333rem;
    height: auto;
  }

  .l-header__back04 {
    top: 4.5rem;
    left: 12.8333333333rem;
    width: 18rem;
    height: 2.5833333333rem;
  }

  .l-header__text05 {
    top: 8.3416666667rem;
    left: 1.93rem;
    width: 9.9416666667rem;
    height: auto;
  }

  .l-header__back05 {
    top: 7.5833333333rem;
    left: 1.3333333333rem;
    width: 11.0416666667rem;
    height: 2.5833333333rem;
  }

  .l-header__text06 {
    top: 8.3rem;
    left: 14.3rem;
    width: 15.3333333333rem;
    height: auto;
  }

  .l-header__back06 {
    top: 7.5833333333rem;
    left: 12.8333333333rem;
    width: 18rem;
    height: 2.5833333333rem;
  }

  .l-header__text07 {
    top: 8.375rem;
    left: 1rem;
    width: 23.7916666667rem;
    height: auto;
    z-index: 10;
  }

  .l-header__text08 {
    width: 25.6666666667rem;
    height: auto;
  }

  .l-header__head03 {
    height: 10.0833333333rem;
  }
}

/* ------------------------
 *   Layout/Main
 * -------------------------------- */
.l-main {
  position: relative;
  margin: 0;
  padding: 0;
}

/* ------------------------
 *   Layout/Footer
 * -------------------------------- */
.l-footer {
  background-color: #000000;
  position: relative;
  margin: 0;
  padding: 0;
}

.footer_inner__content{

}

.l-footer__main {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 0 1rem;
}

.l-footer .l-footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 0.625rem;
}

.l-footer__item {
  color: #ffffff;
  font-family: "ShinGoPr5-Regular", "Noto Sans JP", sans-serif;
  font-size: 1.11875rem;
  font-weight: normal;
}

/* .l-footer__item::before {
  border-right: 0.09375rem solid #ffffff;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0.5625rem;
  width: 100%;
  height: 100%;
} */

/* .l-footer__item:nth-last-child(1)::before {
  border: none;
} */

.l-footer__copyright {
  color: #ffffff;
  font-family: "ShinGoPr5-Regular", "Noto Sans JP", sans-serif;
  font-size: 1.11875rem;
  font-weight: normal;
}

@media (max-width: 768px) {
  .l-footer {
    background-color: #313131;
  }

  .l-footer .footer__inner__content {
    padding: 0 0.5rem;
  }

  .l-footer .l-footer__list {
    flex-wrap: wrap;
    width: 100%;
    padding: 1.3333333333rem 0 0.4166666667rem;
  }

  .l-footer__item {
    font-size: 1rem;
  }

  .l-footer__copyright {
    font-size: 1.0416666667rem;
  }
}

/* ------------------------
 *   Object/Project/
 * -------------------------------- */
.p-index-cta {
  position: relative;
}

.p-index-cta__main {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding-bottom: 3.5625rem;
}
.p-index-cta__main_mail {

  width: 100%;
  max-width: 100%;
  padding-bottom: 3.5625rem;
}

.p-index-cta__button {
  color: #ffffff;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 4.11375rem;
  font-weight: bold;
  white-space: normal;
  width: 36.25rem;
  height: 8.75rem;
}

.p-index-cta__button:hover span {
  color: #ffffff;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 4.11375rem;
  font-weight: bold;
  white-space: normal;
  width: 36.25rem;
  height: 8.75rem;
}

.p-index-cta__icon {
  width: 7.75rem;
  height: 7.75rem;
}

.p-index-cta__text01 {
  width: 27.5rem;
  /*height: 2.5625rem;*/
}

.p-index-cta__text02 {
  width: 20.9375rem;
  margin-left: 15px;
}

.p-index-cta__text03 {
  width: 36.125rem;
  height: 17.25rem;
  margin-left: 1.5625rem;
}

.p-index-cta__text04 {
  width: 24.875rem;
}

.p-index-cta__line-effect01 {
  justify-content: center;
  margin: 3.375rem 0 2rem;
}

.p-index-cta__line-effect02 {
  justify-content: center;
  margin: 3.75rem 0 1.25rem;
}

.p-index-cta__line-effect02 .c-line-effect__left {
  transform: scale(1.5) translate(-7.5rem, 6.25rem);
}

.p-index-cta__line-effect02 .c-line-effect__left::before {
  left: 9.625rem;
}

.p-index-cta__line-effect02 .c-line-effect__right {
  transform: scale(1.5) translate(7.5rem, 6.25rem);
}

.p-index-cta__line-effect02 .c-line-effect__right::before {
  left: -9.875rem;
}

.p-index-cta__line-effect03 {
  justify-content: center;
  margin: 3.375rem 0 2rem;
}

.p-index-cta__line-effect03 .c-line-effect__left {
  transform: translate(-5rem, 0);
}

.p-index-cta__line-effect03 .c-line-effect__right {
  transform: translate(5rem, 0);
}

.p-index-cta__button--get {
  height: 11.75rem;
}

.p-index-cta__button--get:hover span {
  height: 11.75rem;
}

.p-index-campaign {
  position: relative;
}

.p-index-campaign h2 {
  background-image: url(../../common/img/index/campaign_back1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  white-space: normal;
  width: 45.6875rem;
  height: 6.9375rem;
  padding-top: 1.25rem;
  padding-left: 3.5rem;
  transform: translateY(1.25rem);
  z-index: 2;
}

.p-index-campaign__main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 0 3rem 3rem;
}

.p-index-campaign__top {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  padding-top: 0.1875rem;
}

.p-index-campaign__top::after {
  background-color: #ffffff;
  content: "";
  position: absolute;
  top: 0;
  left: -3rem;
  width: calc(100% + 6rem);
  height: 0.1875rem;
}

.p-index-campaign__text01 {
  width: 29.6875rem;
  height: 2.375rem;
}

.p-index-campaign__icon {
  position: absolute;
  top: 0rem;
  right: 3.75rem;
  width: 7.8125rem;
  height: 8.3125rem;
  z-index: 2;
}

.p-index-campaign__left {
  display: flex;
  flex: 0 0 50%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 100%;
}

.p-index-campaign__image {
  width: 21.25rem;
  height: 15.125rem;
}

.p-index-campaign__num {
  position: absolute;
  top: -1.125rem;
  left: -0.75rem;
  width: 4.9375rem;
  height: 4.9375rem;
}

.p-index-campaign__text02 {
  width: 17.0625rem;
  height: 2.4375rem;
}

.p-index-campaign__right {
  display: flex;
  flex: 0 0 50%;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  max-width: 100%;
}

.p-index-campaign__text03 {
  width: 13.6875rem;
  height: 4.8125rem;
}

.p-index-campaign__bottom {
  position: relative;
  background-image: url(../../common/img/index/campaign_back2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  height: 12.5rem;
}

.p-index-campaign__string03 {
  color: #ff7fa9;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 2.470625rem;
  font-weight: bold;
}

.p-index-campaign__string03 .aux01 {
  color: #ff7fa9;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 2.470625rem;
  font-weight: bold;
  font-style: italic;
}

.p-index-campaign__campaign-illust {
  position: absolute;
  top: 1.75rem;
  left: 32.8125rem;
  width: 10.9375rem;
  height: 10.8125rem;
}

.p-index-campaign__text04 {
  position: absolute;
  top: 4.3125rem;
  left: 6.125rem;
  width: 26.8125rem;
  height: 6.875rem;
}

.p-index-campaign__line {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  z-index: 1;
}

.p-index-campaign__line-shadow {
  position: absolute;
  top: 3.5625rem;
  left: 13.375rem;
}

.p-index-campaign__line-shadow::after {
  background-color: #ffffff;
  border-radius: 0.8125rem;
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.1875rem;
  width: 3.75rem;
  height: 3.75rem;
  opacity: 0.78;
}

.p-index-recommend {
  position: relative;
}

.p-index-recommend__top {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 10.9375rem;
}

.p-index-recommend h2 {
  white-space: normal;
}

.p-index-recommend__title {
  width: 43.0625rem;
  height: 7.8125rem;
  transform: translate(1.5rem, 0);
}

.p-index-recommend__bottom {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 3.625rem 0;
}

.p-index-recommend__item {
  color: #4e4e4e;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.5125rem;
  font-weight: bold;
  text-shadow: 0.0625rem 0.0625rem 0.125rem #fff, -0.0625rem 0.0625rem 0.125rem #fff, 0.0625rem -0.0625rem 0.125rem #fff, -0.0625rem -0.0625rem 0.125rem #fff, 0.0625rem 0.0625rem 0.125rem #fff, -0.0625rem 0.0625rem 0.125rem #fff, 0.0625rem -0.0625rem 0.125rem #fff, -0.0625rem -0.0625rem 0.125rem #fff;
  margin-bottom: 0.9375rem;
}

.p-index-recommend__item .aux01 {
  color: #bf3464;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.5125rem;
  font-weight: bold;
}

.p-index-recommend__text {
  width: 14.75rem;
  height: 6rem;
  position: absolute;
  top: 16.625rem;
  left: 44.75rem;
}

.p-index-recommend__head {
  background-color: #be0d53;
  background-image: repeating-linear-gradient(-45deg, #af0c4c, #af0c4c 0.28125rem, transparent 0, transparent 0.375rem);
}

.p-index-recommend__list {
  background-image: url(../../common/img/index/recommend_back.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 53.0625rem;
  height: 25.8125rem;
  padding: 1.875rem 4.6875rem;
}

.p-index-recommend__item::before {
  background-image: url(../../common/img/index/checkbox.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  top: 0;
  left: -3.3125rem;
  width: 2.4375rem;
  height: 2.4375rem;
}

.p-index-recommend__yellow-tape01 {
  position: absolute;
  top: -1.65625rem;
  left: -3.21875rem;
  width: 9.25rem;
  height: 6.9375rem;
}

.p-index-recommend__yellow-tape02 {
  position: absolute;
  top: 22.65625rem;
  left: 48.09375rem;
  width: 9.25rem;
  height: 6.9375rem;
}

.p-index-voice {
  background-image: url(../../common/img/index/voice_back.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
  position: relative;
}

.p-index-voice__top {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 10.9375rem;
}

.p-index-voice h2 {
  white-space: normal;
}

.p-index-voice__head {
  background-color: #be0d53;
  background-image: repeating-linear-gradient(-45deg, #af0c4c, #af0c4c 0.28125rem, transparent 0, transparent 0.375rem);
}

.p-index-voice__title {
  width: 42.6875rem;
  height: 7.8125rem;
  transform: translate(1.3125rem, 0);
}

.p-index-voice__bottom {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 2.5rem 0 5rem;
}

.p-index-voice__card-sub-title {
  color: #202020;
  font-family: "ShinGoPr5-Light", "Noto Sans JP", sans-serif;
  font-size: 1.1875rem;
  font-weight: normal;
}

.p-index-voice__card-title {
  color: #202020;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.508125rem;
  font-weight: bold;
  margin: 1.25rem 0 0.25rem;
}

.p-index-voice__card-text {
  color: #202020;
  font-family: "ShinGoPr5-Light", "Noto Sans JP", sans-serif;
  font-size: 1.1875rem;
  font-weight: normal;
  letter-spacing: -0.03125rem;
  line-height: 1.8;
  text-align: left;
  margin-top: 1rem;
}

.p-index-voice__card-text .aux01 {
  color: #bf3464;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
}

.p-index-voice__string01 {
  color: #202020;
  font-family: "ShinGoPr5-Light", "Noto Sans JP", sans-serif;
  font-size: 1.1875rem;
  font-weight: normal;
}

.p-index-voice__note {
  color: #202020;
  font-family: "ShinGoPr5-Light", "Noto Sans JP", sans-serif;
  font-size: 1.1875rem;
  font-weight: normal;
}

.p-index-voice__character {
  width: 10.25rem;
  height: 10.25rem;
}

.p-index-voice__generation {
  position: absolute;
  top: -0.875rem;
  left: 14.375rem;
  width: 4.4375rem;
  height: 4.4375rem;
}

.p-index-voice__voice-character {
  width: 10.25rem;
  height: 10.25rem;
}

.p-index-voice__frame {
  width: 47.0625rem;
  margin: 1.375rem 0 2.375rem;
  padding: 1.875rem !important;
}

.p-index-voice__blue-tape01 {
  position: absolute;
  top: -3.625rem;
  left: -2.96875rem;
  width: 8rem;
  height: 6rem;
  transform: scale(-1, 1);
}

.p-index-voice__blue-tape02 {
  position: absolute;
  top: -3rem;
  left: 39.71875rem;
  width: 8rem;
  height: 6rem;
}

.p-index-voice__red-tape01 {
  position: absolute;
  top: -3.34375rem;
  left: -2.71875rem;
  width: 7.625rem;
  height: 5.625rem;
  transform: scale(-1, 1);
}

.p-index-voice__red-tape02 {
  position: absolute;
  top: -2.875rem;
  left: 39.90625rem;
  width: 7.625rem;
  height: 5.625rem;
}

.p-index-contents {
  position: relative;
}

.p-index-contents__top {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 11.75rem;
}

.p-index-contents__title {
  width: 41.1875rem;
  height: 6.9375rem;
}

.p-index-contents__icon {
  width: 10.375rem;
  height: 11rem;
}

.p-index-contents__bottom {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.p-index-contents__item {
  color: #4e4e4e;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.723125rem;
  font-weight: bold;
  white-space: pre-line;
  margin-bottom: 1.5625rem;
}

.p-index-contents__item .aux01 {
  color: #be0d53;
  text-decoration: underline;
}

.p-index-contents__item::before {
  background-image: url(../../common/img/index/check.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  top: calc(50% - 1.25rem);
  left: -3.5rem;
  width: 2.9375rem;
  height: 2.5625rem;
}

.p-index-contents__pc {
  position: absolute;
  top: -0.125rem;
  left: 37.6875rem;
  width: 12.5rem;
  height: 9.375rem;
}

.p-index-contents__sub-title {
  width: 27.1875rem;
  height: 8.5rem;
}

.p-index-contents__point {
  width: 32.625rem;
  height: 13.9375rem;
}

.p-index-contents__part01 {
  position: relative;
  z-index: 2;
  width: 36.1875rem;
  height: 11.5625rem;
}

.p-index-contents__part1-image {
  width: 42.625rem;
  height: 29.4375rem;
  margin: 4.375rem 0 1.875rem;
}

.p-index-contents__deco01 {
  width: 44.9375rem;
  height: 11.25rem;
  position: absolute;
  top: -0.75rem;
  left: 0.375rem;
  z-index: 1;
}

.p-index-contents__part02 {
  width: 26.3125rem;
  height: 2.875rem;
  margin: 13px 0;
}

.p-index-contents__deco02 {
  width: 39.75rem;
  height: 6.75rem;
  position: absolute;
  top: -0.625rem;
  left: 3.125rem;
  z-index: 1;
}

.p-index-contents__part03 {
  width: 20.8125rem;
  height: 2.9375rem;
  margin: 12px 0;
}

.p-index-contents__deco03 {
  width: 36.3125rem;
  height: 6.5rem;
  position: absolute;
  top: -0.9375rem;
  left: 4.5rem;
  z-index: 1;
}

.p-index-contents__special-image01 {
  width: 9.3125rem;
  height: 8.25rem;
}

.p-index-contents__special-title01 {
  width: 25.875rem;
  height: 4.3125rem;
}

.p-index-contents__special-image02 {
  width: 9.3125rem;
  height: 8.25rem;
}

.p-index-contents__special-title02 {
  width: 23.75rem;
  height: 4.375rem;
}

.p-index-contents__special-image03 {
  width: 9.3125rem;
  height: 8.25rem;
}

.p-index-contents__special-title03 {
  width: 26.5625rem;
  height: 4.1875rem;
}

.p-index-contents__head {
  background-color: #be0d53;
  background-image: repeating-linear-gradient(-45deg, #af0c4c, #af0c4c 0.28125rem, transparent 0, transparent 0.375rem);
}

.p-index-contents__shadow {
  width: 8.1875rem;
  height: 7rem;
  margin-right: 0.3125rem;
}

.p-index-contents__icon {
  position: absolute;
  top: 4.25rem;
  right: -1.125rem;
  z-index: 1;
}

.p-index-contents__line-effect01 {
  margin: 3.375rem 0 2rem;
}

.p-index-contents__line-effect01 .c-line-effect__left {
  transform: scale(1.75) translate(0.625rem, 3.125rem);
}

.p-index-contents__line-effect01 .c-line-effect__right {
  transform: scale(1.75) translate(-0.625rem, 3.125rem);
}

.p-index-contents__line-effect02 {
  margin: 0.375rem 0 2.25rem;
}

.p-index-contents__line-effect02 .c-line-effect__left {
  transform: scale(1.75) translate(-1.3125rem, 9.625rem);
  z-index: -1;
}

.p-index-contents__line-effect02 .c-line-effect__left::before {
  border-color: #f87ba3 transparent transparent transparent;
}

.p-index-contents__line-effect02 .c-line-effect__left::after {
  border-color: #f87ba3 transparent transparent transparent;
}

.p-index-contents__line-effect02 .c-line-effect__right::before {
  border-color: #f87ba3 transparent transparent transparent;
}

.p-index-contents__line-effect02 .c-line-effect__right::after {
  border-color: #f87ba3 transparent transparent transparent;
}

.p-index-contents__line-effect02 .c-line-effect__right {
  transform: scale(1.75) translate(1rem, 9.625rem);
  z-index: -1;
}

.p-index-contents__special-number {
  width: 5.75rem;
  height: 5.75rem;
  margin: 0 1rem;
}

.p-index-teacher {
  background-image: repeating-linear-gradient(90deg, #f2ebb4, #f2ebb4 0.0625rem, transparent 0.0625rem, transparent 1.25rem), repeating-linear-gradient(0deg, #f2ebb4, #f2ebb4 0.0625rem, #ffffff 0.0625rem, #ffffff 1.25rem);
  margin-top: 0.625rem;
  position: relative;
}

.p-index-teacher__top {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 8.4375rem;
}

.p-index-teacher .p-index-teacher__head {
  background-color: #be0d53;
  background-image: repeating-linear-gradient(-45deg, #af0c4c, #af0c4c 0.28125rem, transparent 0, transparent 0.375rem);
}

.p-index-teacher__illust {
  width: 9.4375rem;
  height: 10.5625rem;
  transform: translate(1.75rem, -2.1875rem);
}

.p-index-teacher__title {
  width: 12.5625rem;
  height: 2.9375rem;
}

.p-index-teacher__bottom {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 2.625rem 0 1.25rem;
}

.p-index-teacher__name {
  color: #4e4e4e;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.723125rem;
  font-weight: bold;
}

.p-index-teacher__text1 {
  color: #222222;
  font-family: "ShinGoPr5-Light", "Noto Sans JP", sans-serif;
  font-size: 1.035rem;
  font-weight: normal;
  line-height: 1.75;
  margin: 1.5625rem 0 0.4375rem;
}

.p-index-teacher__text2 {
  color: #222222;
  font-family: "ShinGoPr5-Light", "Noto Sans JP", sans-serif;
  font-size: 1.035rem;
  font-weight: normal;
}

.p-index-teacher__text2 .aux01 {
  color: #345fbf;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
}

.p-index-teacher__text2 .aux02 {
  color: #345fbf;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.035rem;
  font-weight: bold;
}

.p-index-teacher__text2 .aux03 {
  color: #345fbf;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.035rem;
  font-weight: bold;
}

.p-index-teacher__text2 .aux04 {
  color: #bf3464;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
}

.p-index-teacher__text2 .aux05 {
  color: #bf3464;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.035rem;
  font-weight: bold;
}

.p-index-teacher__text2 .aux06 {
  color: #bf3464;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.035rem;
  font-weight: bold;
}

.p-index-teacher__sub-title {
  width: 31.375rem;
  height: 4.25rem;
}

.p-index-teacher__picture {
  width: 14.3125rem;
  height: 14.3125rem;
  margin: 1.875rem 0 1.25rem;
}

.p-index-teacher__photo01 {
  width: 22.9375rem;
  height: 13.125rem;
}

.p-index-teacher__photo05 {
  width: 22.9375rem;
  height: 13.0625rem;
}

.p-index-teacher__photo04 {
  width: 23rem;
  height: 13.125rem;
}

.p-index-teacher__photo03 {
  width: 22.9375rem;
  height: 13.0625rem;
}

.p-index-teacher__photo02 {
  width: 23rem;
  height: 13.125rem;
}

.p-index-teacher__deco {
  position: absolute;
  top: 77.25rem;
  left: 6.25rem;
  width: 36.8125rem;
  height: 50.0625rem;
}

.p-index-teacher__text {
  position: absolute;
  top: 80.625rem;
  left: 24.71875rem;
  width: 17.6875rem;
  height: 6.5625rem;
}

.p-index-teacher__frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45.625rem;
  margin-bottom: 3.25rem;
  padding: 2.1875rem !important;
}

.p-index-teacher__text2 {
  line-height: 1.76;
  position: relative;
  width: 100%;
  padding: 2.375rem 2.5rem 1.875rem;
  padding-right: 0;
}

.p-index-teacher__tilt01 {
  position: absolute;
  right: 4.6875rem;
  bottom: 26.875rem;
  transform: rotate(8.5deg);
}

.p-index-teacher__tilt02 {
  position: absolute;
  left: 5rem;
  bottom: 37.5rem;
  transform: rotate(-7.5deg);
}

.p-index-teacher__tilt05 {
  position: absolute;
  right: 4.6875rem;
  bottom: 3.75rem;
  transform: rotate(8.5deg);
}

.p-index-teacher__tilt06 {
  position: absolute;
  left: 5rem;
  bottom: 14.0625rem;
  transform: rotate(-7.5deg);
}

.p-index-teacher__frame--continue {
  padding: 0.3125rem 2.25rem 53.75rem !important;
}

.p-index-teacher__blue-tape01 {
  position: absolute;
  top: -1.5rem;
  left: -2.3125rem;
  width: 7.875rem;
  height: 6.25rem;
  transform: scale(-1, 1);
}

.p-index-teacher__blue-tape02 {
  position: absolute;
  top: 35.25rem;
  left: 39.5rem;
  width: 7.875rem;
  height: 6.25rem;
}

.p-index-summary {
  background-image: repeating-linear-gradient(90deg, #f2ebb4, #f2ebb4 0.0625rem, transparent 0.0625rem, transparent 1.25rem), repeating-linear-gradient(0deg, #f2ebb4, #f2ebb4 0.0625rem, #ffffff 0.0625rem, #ffffff 1.25rem);
  position: relative;
}

.p-index-summary__top {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 8.4375rem;
}

/* .p-index-summary__title {
  width: 20.625rem;
} */

.p-index-summary__bottom {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 3.125rem 0 0;
}

.p-index-summary__bottom h3 {
  white-space: normal;
}

.p-index-summary__text2 {
  color: #222222;
  font-family: "ShinGoPr5-Light", "Noto Sans JP", sans-serif;
  font-size: 1.035rem;
  font-weight: normal;
  line-height: 1.8;
  padding: 0.875rem 2.625rem;
  width: 100%;
}

.p-index-summary__text2 .aux01 {
  color: #bf3464;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.035rem;
  font-weight: bold;
}

.p-index-summary__text2 .aux02 {
  color: #bf3464;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.035rem;
  font-weight: bold;
}

.p-index-summary__photo02 {
  width: 20.3125rem;
  height: 13.125rem;
}

.p-index-summary__photho01 {
  width: 14.3125rem;
  height: 23rem;
}

.p-index-summary__summary-deco {
  width: 38.625rem;
  height: 26.5rem;
}

.p-index-summary__text {
  width: 17.25rem;
  height: 6.6875rem;
}

.p-index-summary__sub-title {
  width: 39.4375rem;
  height: 6.875rem;
}

.p-index-summary__head {
  background-color: #be0d53;
  background-image: repeating-linear-gradient(-45deg, #af0c4c, #af0c4c 0.28125rem, transparent 0, transparent 0.375rem);
}

.p-index-summary__frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 45.625rem;
  margin: 0 auto;
  padding: 2rem 2.1875rem 2rem !important;
}

.p-index-summary__list {
  border: 0.125rem solid #d7dc83;
  background-color: #feffed;
  width: calc(100% - 3.125rem);
  padding: 0.875rem;
  padding-left: 2.5rem;
}

.p-index-summary__item {
  color: #222222;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
}

.p-index-summary__item::before {
  background-image: url(../../common/img/index/check.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: -1.5rem;
  width: 1.1875rem;
  height: 1.0625rem;
}

.p-index-summary__tilt03 {
  position: absolute;
  top: 11.25rem;
  right: 4.375rem;
  transform: rotate(3.5deg);
}

.p-index-summary__tilt04 {
  position: absolute;
  top: 3.375rem;
  left: 6.875rem;
  transform: rotate(-5.5deg);
}

.p-index-summary__summary-deco {
  position: absolute;
  top: 2.03125rem;
  left: 4.3125rem;
}

.p-index-summary__text {
  position: absolute;
  top: 4.8125rem;
  left: 23.875rem;
}

.p-index-summary__sub-title {
  margin: 1rem 0 3.125rem;
}

.p-index-summary__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 0 0.5rem;
}

.p-index-summary__tops {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin-bottom: -1.5625rem;
  padding-top: 0.1875rem;
}

.p-index-summary__tops h2 {
  background-image: url(../../common/img/index/campaign_back1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  white-space: normal;
  width: 45.6875rem;
  height: 6.25rem;
  padding-top: 1.25rem;
  padding-left: 3.5rem;
  transform: translateY(0);
  z-index: 2;
}

.p-index-summary__text01 {
  width: 26.9375rem;
  height: 2.1875rem;
  transform: translate(-0.3125rem, -0.3125rem);
}

.p-index-summary__icon {
  position: absolute;
  top: -1rem;
  right: 3.125rem;
  width: 7.0625rem;
  height: 7.4375rem;
  z-index: 2;
}

.p-index-summary__left {
  display: flex;
  flex: 0 0 47%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  max-width: 100%;
}

.p-index-summary__image {
  width: 100%;
  height: auto;
}

.p-index-summary__num {
  position: absolute;
  top: -0.9375rem;
  left: -0.625rem;
  width: 4.5rem;
  height: 4.5rem;
}

.p-index-summary__text02 {
  width: 15.5rem;
  height: 2.125rem;
}

.p-index-summary__right {
  display: flex;
  flex: 0 0 47%;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  width: 47%;
  max-width: 100%;
}

.p-index-summary__text03 {
  width: 12.4375rem;
  height: 4.375rem;
}

.p-index-summary__bottoms {
  position: relative;
  background-image: url(../../common/img/index/campaign_back2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  height: 11.25rem;
}

.p-index-summary__string03 {
  color: #ff7fa9;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 2.470625rem;
  font-weight: bold;
}

.p-index-summary__string03 .aux01 {
  color: #ff7fa9;
  font-family: "ShinGoPr5-Medium", "Noto Sans JP", sans-serif;
  font-size: 2.470625rem;
  font-weight: bold;
  font-style: italic;
}

.p-index-summary__campaign-illust {
  position: absolute;
  top: 1rem;
  left: 29.5rem;
  width: 10.9375rem;
  height: 10.8125rem;
  transform: scale(0.9);
}

.p-index-summary__text04 {
  position: absolute;
  top: 3.75rem;
  left: 4.375rem;
  width: 26.8125rem;
  height: 6.875rem;
  transform: scale(0.9);
}

.p-index-summary__line {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  z-index: 1;
}

.p-index-summary__line-shadow {
  position: absolute;
  top: 3.25rem;
  left: 12rem;
  transform: scale(0.9);
}

.p-index-summary__line-shadow::after {
  background-color: #ffffff;
  border-radius: 0.8125rem;
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.1875rem;
  width: 3.75rem;
  height: 3.75rem;
  opacity: 0.78;
}

.p-index-summary__text05 {
  width: 35.9375rem;
  height: 12.3125rem;
}

@media (max-width: 768px) {
  .p-index-cta__main {
    align-items: flex-start;
    padding-bottom: 1.875rem;
  }

  .p-index-cta__button {
    width: 27.9166666667rem;
    height: 6.7916666667rem;
    margin: 0 auto;
  }

  .p-index-cta__button:hover span {
    width: inherit;
    height: inherit;
  }

  .p-index-cta__icon {
    width: 6.25rem;
    height: auto;
  }

  .p-index-cta__text01 {
    width: 21.4166666667rem;
    height: auto;
  }

  .p-index-cta__text02 {
    width: 16.25rem;
    height: auto;
    margin-left: 0;
  }

  .p-index-cta__text03 {
    width: 22.5rem;
    height: auto;
    margin-left: 0.5833333333rem;
  }

  .p-index-cta__text04 {
    width: 17.25rem;
    height: auto;
    margin-left: -0.1666666667rem;
    transform: translateX(0.625rem);
  }

  .p-index-cta__line-effect01 {
    margin: 2.5rem 0 1.25rem;
  }

  .p-index-cta__line-effect02 {
    margin: 3.5416666667rem 0 1.5rem;
  }

  .p-index-cta__line-effect02 .c-line-effect__left {
    display: none;
    transform: scale(1.5) translate(-2.4166666667rem, 4.25rem);
  }

  .p-index-cta__line-effect02 .c-line-effect__right {
    display: none;
    transform: scale(1.5) translate(2.3333333333rem, 4.0833333333rem);
  }

  .p-index-cta__line-effect03 {
    margin: 1.75rem 0 1.25rem;
  }

  .p-index-cta__line-effect03 .c-line-effect__left {
    transform: translate(-1.7083333333rem, 0);
  }

  .p-index-cta__line-effect03 .c-line-effect__right {
    transform: translate(1.7083333333rem, 0);
  }

  .p-index-cta__button--get {
    height: 8.3333333333rem;
    width: 26.4583333333rem;
  }

  .p-index-cta__button--get:hover span {
    height: inherit;
  }

  .p-index-campaign h2 {
    background-image: url(../../common/img/index/campaign_back1_sp.webp);
    width: 29.4166666667rem;
    height: 8.5416666667rem;
    padding-top: 0.9583333333rem;
    transform: translateY(1.4583333333rem);
    white-space: normal;
  }

  .p-index-campaign__main {
    padding: 0 0 4.1666666667rem;
  }

  .p-index-campaign__text01 {
    width: 18.125rem;
    height: auto;
  }

  .p-index-campaign__icon {
    top: 2rem;
    right: 1rem;
    width: 5.75rem;
    height: auto;
  }

  .p-index-campaign__left {
    flex: 0 0 100%;
    justify-content: center;
    width: 100%;
  }

  .p-index-campaign__image {
    width: 24.5833333333rem;
    height: auto;
  }

  .p-index-campaign__num {
    top: -1.1666666667rem;
    left: -0.625rem;
    width: 5.625rem;
    height: auto;
  }

  .p-index-campaign__text02 {
    width: 15.8333333333rem;
    height: auto;
  }

  .p-index-campaign__right {
    flex: 0 0 100%;
    justify-content: center;
    width: 100%;
  }

  .p-index-campaign__text03 {
    width: 25.9166666667rem;
    height: auto;
  }

  .p-index-campaign__bottom {
    background-image: url(../../common/img/index/campaign_back2_sp.webp);
    height: 12.125rem;
    margin-top: 1.3333333333rem;
  }

  .p-index-campaign__campaign-illust {
    top: 0.9166666667rem;
    left: 20.3333333333rem;
    width: 9.2083333333rem;
    height: auto;
  }

  .p-index-campaign__text04 {
    top: 4.8333333333rem;
    left: 3.4166666667rem;
    width: 21.4166666667rem;
    height: auto;
    z-index: 1;
  }

  .p-index-campaign__line {
    width: 2.7083333333rem;
    height: auto;
  }

  .p-index-campaign__line-shadow {
    top: 4.1666666667rem;
    left: 8.75rem;
  }

  .p-index-campaign__line-shadow::after {
    width: 2.7083333333rem;
    height: 2.7083333333rem;
  }

  .p-index-recommend__top {
    height: 7.4166666667rem;
  }

  .p-index-recommend__top h2 {
    white-space: normal;
  }

  .p-index-recommend__title {
    width: 27.0833333333rem;
    height: auto;
    transform: translate(0, 0);
  }

  .p-index-recommend__bottom {
    padding: 1.6666666667rem 0 2.2083333333rem;
  }

  .p-index-recommend__item {
    font-size: 1.5833333333rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
  }

  .p-index-recommend__item .aux01 {
    font-size: 1.5833333333rem;
    letter-spacing: 0.125rem;
  }

  .p-index-recommend__text {
    width: 14.6666666667rem;
    height: auto;
    top: auto;
    left: 1.5833333333rem;
    bottom: 2.0833333333rem;
  }

  .p-index-recommend__list {
    background-image: url(../../common/img/index/recommend_back_sp.webp);
    background-position: bottom;
    background-size: contain;
    width: 100%;
    height: auto;
    padding: 2.7083333333rem 4.5rem 21.6666666667rem;
    padding-right: 2.9166666667rem;
  }

  .p-index-recommend__item::before {
    top: calc(50% - 1.3333333333rem);
    left: -3.25rem;
  }

  .p-index-recommend__yellow-tape01 {
    top: -1.0416666667rem;
    left: -1.0416666667rem;
    width: 6.6666666667rem;
    height: auto;
  }

  .p-index-recommend__yellow-tape02 {
    top: -1.0416666667rem;
    left: 23.9583333333rem;
    width: 6.6666666667rem;
    height: auto;
    transform: scale(-1, 1);
  }

  .p-index-voice {
    background-size: 200%;
  }

  .p-index-voice__top {
    height: 7.5rem;
  }

  .p-index-voice__top h2 {
    white-space: normal;
  }

  .p-index-voice__title {
    width: 30rem;
    height: auto;
    transform: translate(0, 0);
  }

  .p-index-voice__bottom {
    padding: 2.5rem 0 3.5416666667rem;
  }

  .p-index-voice__card-sub-title {
    font-size: 1.25rem;
  }

  .p-index-voice__card-title {
    font-size: 1.6666666667rem;
  }

  .p-index-voice__card-text {
    font-size: 1.25rem;
    line-height: 1.65;
    margin-top: 1.3333333333rem;
  }

  .p-index-voice__note {
    font-size: 1.25rem;
    width: 25.5833333333rem;
  }

  .p-index-voice__character {
    width: 10.8333333333rem;
    height: auto;
  }

  .p-index-voice__generation {
    top: -1.5833333333rem;
    left: 4.9166666667rem;
    width: 4.6666666667rem;
    height: 4.6666666667rem;
  }

  .p-index-voice__voice-character {
    width: 10.6666666667rem;
    height: auto;
  }

  .p-index-voice__frame {
    width: 29.5rem;
    margin: 0.3333333333rem 0 2.9166666667rem;
    padding: 2.5rem 1.4583333333rem 2.7083333333rem !important;
  }

  .p-index-voice__blue-tape01 {
    top: -3.5416666667rem;
    left: -3rem;
    width: 5.75rem;
    height: auto;
  }

  .p-index-voice__blue-tape02 {
    top: -3.5833333333rem;
    left: 23.4166666667rem;
    width: 5.3333333333rem;
    height: auto;
  }

  .p-index-voice__red-tape01 {
    top: -3.625rem;
    left: -3.125rem;
    width: 5.75rem;
    height: auto;
  }

  .p-index-voice__red-tape02 {
    top: -3.8333333333rem;
    left: 23.4166666667rem;
    width: 5.3333333333rem;
    height: auto;
  }

  .p-index-contents__top {
    justify-content: flex-start;
    height: 8.9583333333rem;
  }

  .p-index-contents__title {
    width: 28.8333333333rem;
    height: auto;
    margin-left: 0.4166666667rem;
  }

  .p-index-contents__icon {
    width: 6.4583333333rem;
    height: auto;
    top: 2.6666666667rem;
    right: -0.7083333333rem;
  }

  .p-index-contents__item {
    font-size: 1.2083333333rem;
    line-height: 1.46;
    margin-bottom: 1.25rem;
  }

  .p-index-contents__item::before {
    background-size: contain;
    top: 0.5416666667rem;
    left: -2.4166666667rem;
    width: 1.9583333333rem;
    height: 1.7083333333rem;
  }

  .p-index-contents__pc {
    top: 0.125rem;
    left: 16.1666666667rem;
    width: 8.3333333333rem;
    height: auto;
  }

  .p-index-contents__sub-title {
    width: 18.3333333333rem;
    height: auto;
  }

  .p-index-contents__point {
    width: 24.5833333333rem;
    height: auto;
  }

  .p-index-contents__part01 {
    width: 22.5rem;
    height: auto;
    margin-bottom: 0.5rem;
  }

  .p-index-contents__part1-image {
    width: 26.8333333333rem;
    height: auto;
    margin: 2.9166666667rem 0 1.25rem;
  }

  .p-index-contents__deco01 {
    height: auto;
    top: -0.2916666667rem;
    left: 0.0833333333rem;
  }

  .p-index-contents__part02 {
    width: 17rem;
    height: auto;
    margin: 0.8333333333rem 0;
    margin-left: 0.5rem;
  }

  .p-index-contents__deco02 {
    width: 25.625rem;
    height: auto;
    top: 0;
    left: 1.9166666667rem;
  }

  .p-index-contents__part03 {
    width: 14.1666666667rem;
    height: auto;
    margin: 0.8333333333rem 0;
  }

  .p-index-contents__deco03 {
    width: 24.8333333333rem;
    height: auto;
    top: -0.3333333333rem;
    left: 1.9166666667rem;
  }

  .p-index-contents__special-image01 {
    width: 5.8333333333rem;
    height: auto;
  }

  .p-index-contents__special-title01 {
    width: 15.8333333333rem;
    height: auto;
  }

  .p-index-contents__special-image02 {
    width: 5.8333333333rem;
    height: auto;
  }

  .p-index-contents__special-title02 {
    width: 14.5rem;
    height: auto;
  }

  .p-index-contents__special-image03 {
    width: 5.8333333333rem;
    height: auto;
  }

  .p-index-contents__special-title03 {
    width: 16.3333333333rem;
    height: auto;
  }

  .p-index-contents__shadow {
    width: 8.9583333333rem;
    height: auto;
    position: absolute;
    top: 0.6666666667rem;
    left: -1.25rem;
    opacity: 0.2;
  }

  .p-index-contents__line-effect01 {
    margin: 2.5rem 0 1.75rem;
  }

  .p-index-contents__line-effect01 .c-line-effect__left {
    transform: scale(1.5) translate(-0.9166666667rem, 2rem);
  }

  .p-index-contents__line-effect01 .c-line-effect__right {
    transform: scale(1.5) translate(0.6666666667rem, 2rem);
  }

  .p-index-contents__line-effect02 {
    margin: 0.25rem 0 1.4166666667rem;
  }

  .p-index-contents__line-effect02 .c-line-effect__left {
    transform: scale(2) translate(-1.5rem, 5.0833333333rem);
  }

  .p-index-contents__line-effect02 .c-line-effect__right {
    transform: scale(2) translate(1.3333333333rem, 5.0833333333rem);
  }

  .p-index-contents__special-number {
    width: 3.5416666667rem;
    height: auto;
    margin: 0 0.75rem;
  }

  .p-index-teacher {
    background-image: repeating-linear-gradient(90deg, #f2ebb4, #f2ebb4 1px, transparent 1px, transparent 20px), repeating-linear-gradient(0deg, #f2ebb4, #f2ebb4 1px, #ffffff 1px, #ffffff 20px);
    margin-top: 0;
    margin-bottom: -2.6666666667rem;
  }

  .p-index-teacher__top {
    height: 6.125rem;
  }

  .p-index-teacher__illust {
    width: 6.6666666667rem;
    height: auto;
    transform: translate(2.4166666667rem, -1.4166666667rem);
  }

  .p-index-teacher__title {
    width: 8.6666666667rem;
    height: auto;
    transform: translate(0, 0);
  }

  .p-index-teacher__text1 {
    font-size: 1.2916666667rem;
    line-height: 1.65;
    margin: 1.75rem 0 0.2916666667rem;
    white-space: normal;
  }

  .p-index-teacher__text2 {
    font-size: 1.2916666667rem;
    line-height: 1.62;
    padding: 2rem 0 4.3333333333rem;
    white-space: normal;
  }

  .p-index-teacher__text2 .aux01 {
    font-size: 1.2916666667rem;
  }

  .p-index-teacher__text2 .aux02 {
    font-size: 1.2916666667rem;
  }

  .p-index-teacher__text2 .aux03 {
    font-size: 1.2916666667rem;
  }

  .p-index-teacher__text2 .aux04 {
    font-size: 1.2916666667rem;
  }

  .p-index-teacher__text2 .aux05 {
    font-size: 1.2916666667rem;
  }

  .p-index-teacher__text2 .aux06 {
    font-size: 1.2916666667rem;
  }

  .p-index-teacher__sub-title {
    width: 19.5833333333rem;
    height: auto;
  }

  .p-index-teacher__picture {
    width: 16.5rem;
    height: auto;
    margin: 2rem 0 1.0833333333rem;
  }

  .p-index-teacher__photo01 {
    width: 20.5rem;
    height: auto;
  }

  .p-index-teacher__photo05 {
    width: 15.8333333333rem;
    height: auto;
  }

  .p-index-teacher__photo04 {
    width: 15.8333333333rem;
    height: auto;
  }

  .p-index-teacher__photo03 {
    width: 15.8333333333rem;
    height: auto;
  }

  .p-index-teacher__photo02 {
    width: 15.8333333333rem;
    height: auto;
  }

  .p-index-teacher__deco {
    top: auto;
    left: 2.9166666667rem;
    width: 25rem;
    height: auto;
    bottom: 4.5833333333rem;
  }

  .p-index-teacher__text {
    top: auto;
    left: 15.5rem;
    width: 12rem;
    height: auto;
    bottom: 31.875rem;
  }

  .p-index-teacher__frame {
    width: 29.5rem;
    padding: 2.9166666667rem 1.4583333333rem 1.875rem !important;
  }

  .p-index-teacher__tilt01 {
    right: 2.7916666667rem;
    bottom: 21.4166666667rem;
  }

  .p-index-teacher__tilt02 {
    left: 1.9583333333rem;
    bottom: 28.75rem;
  }

  .p-index-teacher__tilt05 {
    right: 2.7916666667rem;
    bottom: 4.375rem;
  }

  .p-index-teacher__tilt06 {
    left: 1.9583333333rem;
    bottom: 11.5416666667rem;
  }

  .p-index-teacher__frame--continue {
    padding: 0.2083333333rem 1.4583333333rem 35.8333333333rem !important;
  }

  .p-index-teacher__blue-tape01 {
    top: -0.8333333333rem;
    left: -1.5833333333rem;
    width: 5.75rem;
    height: auto;
  }

  .p-index-teacher__blue-tape02 {
    top: auto;
    left: 25rem;
    width: 5.3333333333rem;
    height: auto;
    bottom: -0.625rem;
  }

  .p-index-summary__top {
    height: 6.125rem;
  }

  .p-index-summary__title {
    width: 26.25rem;
    height: auto;
  }

  .p-index-summary__bottom {
    padding: 2.0833333333rem 0 2.5rem;
  }

  .p-index-summary__bottom h3 {
    white-space: normal;
  }

  .p-index-cta__line-effect02 h3 {
    width: 28.3333333333rem;
    height: 12rem;
  }

  .p-index-cta__line-effect02 picture {
    position: absolute;
    top: -0.625rem;
    left: -0.625rem;
    width: 28.3333333333rem;
  }

  .p-index-cta__line-effect02 img {
    width: 28.3333333333rem;
  }

  .p-index-summary__text2 {
    font-size: 1.2916666667rem;
    line-height: 1.65;
    padding: 0.9583333333rem 0;
    white-space: normal;
  }

  .p-index-summary__text2 .aux01 {
    font-size: 1.2916666667rem;
  }

  .p-index-summary__text2 .aux02 {
    font-size: 1.2916666667rem;
  }

  .p-index-summary__photo02 {
    width: 13.6666666667rem;
    height: auto;
  }

  .p-index-summary__photho01 {
    width: 9.7916666667rem;
    height: auto;
  }

  .p-index-summary__summary-deco {
    width: 26.25rem;
    height: auto;
    top: 2.4583333333rem;
    left: 1.5833333333rem;
  }

  .p-index-summary__text {
    width: 11.9166666667rem;
    height: auto;
    top: 4.4166666667rem;
    left: 14.6666666667rem;
  }

  .p-index-summary__sub-title {
    width: 26rem;
    height: auto;
    margin: 0.9583333333rem 0 1.1666666667rem;
  }

  .p-index-summary__frame {
    width: 29.5rem;
    padding: 2rem 1rem !important;
  }

  .p-index-summary__list {
    width: calc(100% + 2.0833333333rem);
    padding: 0.8333333333rem;
    padding-left: 2.9166666667rem;
    padding-right: 0.625rem;
  }

  .p-index-summary__item {
    font-size: 1.375rem;
  }

  .p-index-summary__item::before {
    top: 0.4166666667rem;
    left: -1.9166666667rem;
    width: 1.4166666667rem;
    height: 1.2083333333rem;
  }

  .p-index-summary__tilt03 {
    top: 8.6666666667rem;
    right: 2.6666666667rem;
  }

  .p-index-summary__tilt04 {
    top: 3.2916666667rem;
    left: 3.3333333333rem;
  }

  .p-index-summary__main {
    padding: 0 0 4.1666666667rem;
  }

  .p-index-summary__tops {
    height: 6.4166666667rem;
  }

  .p-index-summary__tops h2 {
    background-image: url(../../common/img/index/campaign_back1_sp.webp);
    width: calc(100% + 2.9166666667rem);
    height: 8.6666666667rem;
    padding-top: 0;
    padding-left: 0;
    transform: translateY(-1.0416666667rem);
    white-space: normal;
    position: absolute;
    top: 0;
    left: -1.4583333333rem;
    margin-top: 1.5833333333rem;
  }

  .p-index-summary__tops::after {
    background-color: #feffed;
    border-top: 0.0833333333rem solid #d7dc83;
    border-bottom: 0.0833333333rem solid #d7dc83;
    content: "";
    position: absolute;
    top: -1rem;
    left: -1.4583333333rem;
    width: calc(100% + 2.9166666667rem);
    height: 72.0833333333rem;
  }

  .p-index-summary__text01 {
    width: 18.125rem;
    height: auto;
    transform: translate(3.6666666667rem, 1.0416666667rem);
  }

  .p-index-summary__icon {
    top: 1rem;
    right: -0.6666666667rem;
    width: 5.75rem;
    height: auto;
  }

  .p-index-summary__left {
    flex: 0 0 100%;
    justify-content: center;
    width: 100%;
    padding-top: 2.8333333333rem;
  }

  .p-index-summary__image {
    width: 24.5833333333rem;
  }

  .p-index-summary__num {
    top: -1rem;
    left: -0.6666666667rem;
    width: 5.625rem;
    height: auto;
  }

  .p-index-summary__text02 {
    width: 15.8333333333rem;
    height: auto;
  }

  .p-index-summary__right {
    flex: 0 0 100%;
    justify-content: center;
    width: 100%;
    padding-bottom: 8.3333333333rem;
  }

  .p-index-summary__text03 {
    width: 25.9166666667rem;
    height: auto;
  }

  .p-index-summary__bottoms {
    position: absolute;
    background-image: url(../../common/img/index/campaign_back2_sp.webp);
    width: 29.5rem;
    height: 12.2916666667rem;
    /* margin-top: 0.625rem */
    left: -1.4583333333rem;
    bottom: -1.25rem;
  }

  .p-index-summary__campaign-illust {
    top: 0.1666666667rem;
    left: 19.6666666667rem;
    width: 10.5rem;
    height: auto;
  }

  .p-index-summary__text04 {
    top: 4.5rem;
    left: 2.4583333333rem;
    width: 23.3333333333rem;
    height: auto;
    z-index: 1;
  }

  .p-index-summary__line {
    width: 2.7083333333rem;
    height: auto;
  }

  .p-index-summary__line-shadow {
    top: 4.1666666667rem;
    left: 8.75rem;
  }

  .p-index-summary__line-shadow::after {
    width: 2.7083333333rem;
    height: 2.7083333333rem;
  }

  .p-index-summary__text05 {
    width: 24.4166666667rem;
    height: auto;
  }

  .p-index-voice__frame:nth-child(4) {
    margin-bottom: 5.9166666667rem;
  }

  .p-index-voice__frame:nth-child(5) {
    margin-bottom: 1.4583333333rem;
  }

  .p-index-summary__button {
    transform: translateX(-0.625rem);
  }
}

/* ------------------------
 *   Object/Component/Fade
 * -------------------------------- */
@-moz-keyframes animate72 {
  0% {
    -moz-transform: rotate(0deg);
  }

  40% {
    -moz-transform: rotate(0deg);
  }

  50% {
    -moz-transform: rotate(2deg);
  }

  60% {
    -moz-transform: rotate(-1deg);
  }

  70% {
    -moz-transform: rotate(20deg);
  }

  80% {
    -moz-transform: rotate(-2deg);
  }

  90% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(0deg);
  }
}

@-o-keyframes animate72 {
  0% {
    -o-transform: rotate(0deg);
  }

  40% {
    -o-transform: rotate(0deg);
  }

  50% {
    -o-transform: rotate(2deg);
  }

  60% {
    -o-transform: rotate(-1deg);
  }

  70% {
    -o-transform: rotate(20deg);
  }

  80% {
    -o-transform: rotate(-2deg);
  }

  90% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(0deg);
  }
}

@-webkit-keyframes animate72 {
  0% {
    -webkit-transform: rotate(0deg);
  }

  40% {
    -webkit-transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(2deg);
  }

  60% {
    -webkit-transform: rotate(-1deg);
  }

  70% {
    -webkit-transform: rotate(20deg);
  }

  80% {
    -webkit-transform: rotate(-2deg);
  }

  90% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes animate72 {
  0% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(-1deg);
  }

  70% {
    transform: rotate(20deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.c-animate72 {
  -webkit-animation-name: animate72;
  -moz-animation-name: animate72;
  -o-animation-name: animate72;
  animation-name: animate72;
  animation-duration: 1s !important;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -moz-animation-duration: 1s !important;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* ------------------------
 *   Object/Component/Fade
 * -------------------------------- */
.is-fade-hide {
  opacity: 0;
  transition: opacity 0.5s;
}

.c-fade-direction {
  transition: opacity 0.5s, transform 0.5s;
}

.c-fade-direction--left {
  transform: translate(3.125rem, 0) scale(1) rotate(0);
}

.c-fade-direction--right {
  transform: translate(-3.125rem, 0);
}

.c-fade-direction--down {
  transform: translate(0, -3.125rem);
}

.c-fade-direction--up {
  transform: translate(0, 3.125rem);
}

.c-fade-zoom {
  transform-origin: center;
  transition: opacity 0.5s, transform 0.5s;
}

.c-fade-zoom--in {
  transform: scale(0);
}

.c-fade-zoom--out {
  transform: scale(2);
}

.c-fade-rotate {
  transform-origin: center;
  transition: opacity 0.5s, transform 0.5s;
}

.c-fade-rotate--left {
  transform: rotateZ(360deg);
}

.c-fade-rotate--right {
  transform: rotateZ(-360deg);
}

.c-fade-rotate--in {
  transform: scale(0) rotateZ(360deg);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.c-fade-rotate--out {
  transform: scale(2) rotateZ(-360deg);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.c-fade-rotate--x {
  transform: rotateX(180deg);
}

.c-fade-rotate--y {
  transform: rotateY(180deg);
}

.c-fade-delay1 {
  transition-delay: 0.25s;
}

.c-fade-delay2 {
  transition-delay: 0.5s;
}

.c-fade-delay3 {
  transition-delay: 0.75s;
}

.c-fade-delay4 {
  transition-delay: 1s;
}

.is-fade-show {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0);
}

@media (max-width: 768px) {
  .c-fade-delay1 {
    transition-delay: 0s;
  }

  .c-fade-delay2 {
    transition-delay: 0s;
  }

  .c-fade-delay3 {
    transition-delay: 0s;
  }

  .c-fade-delay4 {
    transition-delay: 0s;
  }
}

/* ------------------------
 *   Object/Component/Inner
 * -------------------------------- */
.c-inner {
  position: relative;
  max-width: 100rem;
  margin: 0 auto;
  padding: 0;
}

.c-inner__content {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  min-width: 75rem;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.875rem;
}

.c-inner__content--expand {
  min-width: 100%;
  max-width: 100%;
}

.c-inner__content--main {
  border-left: 0.5rem solid #ffffff;
  border-right: 0.5rem solid #ffffff;
  min-width: 52.5rem;
  max-width: 52.5rem;
  padding: 0;
}

.c-inner__content--campaign {
  background-color: #feffed;
  border-left: 0.5rem solid #ffffff;
  border-right: 0.5rem solid #ffffff;
  min-width: 52.5rem;
  max-width: 52.5rem;
  padding: 0;
}

.c-inner--wide {
  max-width: 100vw;
}

@media (max-width: 768px) {
  .c-inner {
    max-width: 100vw;
  }

  .c-inner__content {
    min-width: 100%;
    max-width: 100%;
  }

  .c-inner__content--campaign {
    border-top: 0.125rem solid #d7dc83;
  }
}

/* ------------------------
 *   Object/Component/Inner
 * -------------------------------- */
.c-skew-border {
  background-color: #fff45c;
  border-radius: 0.625rem;
}

.c-cta-button {
  background-color: #00b900;
  border-radius: 0.9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 1.875rem;
  padding-right: 3.75rem;
}

.c-line-effect {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.c-line-effect h2 {
  text-align: center;
  width: 100%;
}

.c-line-effect__left::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 10rem;
  border-style: solid;
  border-width: 5rem 0.25rem 0 0.25rem;
  border-color: #b71151 transparent transparent transparent;
  width: 0;
  height: 0;
  transform: rotate(-25deg);
}

.c-line-effect__left::after {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 9rem;
  border-style: solid;
  border-width: 3.125rem 0.25rem 0 0.25rem;
  border-color: #b71151 transparent transparent transparent;
  width: 0;
  height: 0;
  transform: rotate(-38deg);
}

.c-line-effect__right::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: -10.25rem;
  border-style: solid;
  border-width: 5rem 0.25rem 0 0.25rem;
  border-color: #b71151 transparent transparent transparent;
  width: 0;
  height: 0;
  transform: rotate(25deg);
}

.c-line-effect__right::after {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: -9.375rem;
  border-style: solid;
  border-width: 3.125rem 0.25rem 0 0.25rem;
  border-color: #b71151 transparent transparent transparent;
  width: 0;
  height: 0;
  transform: rotate(38deg);
}

.c-line-effect__left--purple::before {
  border-color: #a689e6 transparent transparent transparent;
}

.c-line-effect__left--purple::after {
  border-color: #a689e6 transparent transparent transparent;
}

.c-line-effect__right--purple::before {
  border-color: #a689e6 transparent transparent transparent;
}

.c-line-effect__right--purple::after {
  border-color: #a689e6 transparent transparent transparent;
}

.c-card {
  width: 21.25rem;
  margin: 2.1875rem 0 0.375rem;
}

.c-card__title {
  background-color: #be0d53;
  background-image: repeating-linear-gradient(-45deg, #c21b5d, #c21b5d 0.40625rem, transparent 0, transparent 0.65625rem);
  border-radius: 0 0 0.625rem 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6.25rem;
}

.c-card__title--summary {
  height: 5.625rem;
}

.c-frame {
  background-color: #ffffff;
  box-shadow: 0 0 1rem rgba(68, 66, 73, 0.3);
  padding: 0.9375rem;
}

.c-photo-frame {
  background-color: #ffffff;
  box-shadow: 0 0 1rem rgba(68, 66, 73, 0.3);
  padding: 0.5rem;
}

.c-voice-card {
  text-align: center;
}

.c-container {
  background-color: #dd4b79;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 47.0625rem;
  margin: 3.5rem 0;
  padding: 0.75rem;
}

.c-container__head {
  text-align: center;
  width: 100%;
  margin: 0.8125rem 0;
}

.c-container__body {
  background-color: #feffed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.c-container__body ul {
  width: 100%;
  padding: 3.125rem 3.125rem 1.875rem;
  padding-left: 5.625rem;
}

.c-container__body dl {
  background-color: #82b4ed;
  background-image: repeating-linear-gradient(-45deg, #65a3e9, #65a3e9 0.28125rem, transparent 0, transparent 0.375rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5625rem;
}

.c-container__body dt {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-container__body--first::after {
  border-style: solid;
  border-width: 2.5rem 22.8125rem 0 22.8125rem;
  border-color: #dd4b79 transparent transparent transparent;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.c-container__body--last {
  padding: 3.5rem 0.625rem 1.875rem;
}

@media (max-width: 768px) {
  .c-inner__content {
    padding: 0 1.25rem;
  }

  .c-inner__content--main {
    border-left: none;
    border-right: none;
  }

  .c-inner__content--campaign {
    border-left: none;
    border-right: none;
  }

  .c-cta-button {
    padding-left: 1.25rem;
    padding-right: 2.9166666667rem;
  }

  .c-line-effect__left::before {
    top: -1.0416666667rem;
    left: 2.75rem;
    border-width: 4.1666666667rem 0.2083333333rem 0 0.2083333333rem;
  }

  .c-line-effect__left::after {
    top: 0.2916666667rem;
    left: 2.1666666667rem;
    border-width: 2.5rem 0.125rem 0 0.125rem;
  }

  .c-line-effect__right::before {
    top: -1.0416666667rem;
    left: -2.9583333333rem;
    border-width: 4.1666666667rem 0.2083333333rem 0 0.2083333333rem;
  }

  .c-line-effect__right::after {
    top: 0.2916666667rem;
    left: -2.25rem;
    border-width: 2.5rem 0.125rem 0 0.125rem;
  }

  .c-card {
    width: 25.8333333333rem;
  }

  .c-card__title {
    background-color: transparent;
    background-image: none;
    height: 3.4583333333rem;
    padding-top: 0.4166666667rem;
  }

  .c-frame {
    padding: 0;
  }

  .c-photo-frame {
    padding: 0.3333333333rem;
  }

  .c-container {
    width: 29.5rem;
    margin: 3.0833333333rem 0 2.3333333333rem;
    padding: 0.8333333333rem 0.4166666667rem 0.4166666667rem;
  }

  .c-container__head {
    margin: 0;
  }

  .c-container__body ul {
    padding: 1.6666666667rem 1.4583333333rem 0.2083333333rem;
    padding-left: 3.5833333333rem;
  }

  .c-container__body dl {
    background-image: repeating-linear-gradient(-45deg, #65a3e9, #65a3e9 1.75px, transparent 0, transparent 3px);
    margin-bottom: 1rem;
  }

  .c-container__body--first::after {
    border-width: 1.6666666667rem 14.25rem 0 14.25rem;
  }

  .c-container__body--last {
    padding: 2.0833333333rem 0.5rem 1rem;
  }

  .c-skew-border {
    border-radius: 0.625rem;
  }
}

/* ------------------------
 *   Object/Utility/Browser
 * -------------------------------- */
.u-browser-ie {
  position: relative;
}

.u-browser-edge {
  position: relative;
}

.u-browser-chrome {
  position: relative;
}

.u-browser-firefox {
  position: relative;
}

.u-browser-firefox .p-index-teacher__text {
  top: 77.25rem;
}

.u-browser-firefox .p-index-teacher__deco {
  top: 73.125rem;
}

.u-browser-safari {
  position: relative;
}

/* ------------------------
 *   Object/Utility/Only
 * -------------------------------- */
.u-only-pc {
  display: block;
}

.u-only-pc--flex {
  display: flex;
}

.u-only-pc--inline {
  display: inline;
}

.u-only-pc--inline-block {
  display: inline-block;
}

.u-only-pc--inline-flex {
  display: inline-flex;
}

.u-only-sp,
.u-only-sp--flex,
.u-only-sp--inline,
.u-only-sp--inline-block,
.u-only-sp--inline-flex {
  display: none;
}

@media (max-width: 768px) {
  .u-nobr {
    white-space: normal;
    /* Disable line breaks. And wrap the content. */
  }

  .u-only-sp {
    display: block;
  }

  .u-only-sp--flex {
    display: flex;
  }

  .u-only-sp--inline {
    display: inline;
  }

  .u-only-sp--inline-block {
    display: inline-block;
  }

  .u-only-sp--inline-flex {
    display: inline-flex;
  }

  .u-only-pc,
  .u-only-pc--flex,
  .u-only-pc--inline,
  .u-only-pc--inline-block,
  .u-only-pc--inline-flex {
    display: none;
  }
}

/* ------------------------
 *   Object/Utility/Platform
 * -------------------------------- */
.u-platform-windows {
  position: relative;
}

.u-platform-android {
  position: relative;
}

.u-platform-ios {
  position: relative;
}

.u-platform-macintosh {
  position: relative;
}









/* 無料セミナーテーブル部分 */
.present_photo2 {
  width: 100%;
  margin-top: 24px;
}

.present_photo2 p {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 4px;
}

.flex {
  display: flex;
  column-gap: 2%;
  align-items: flex-end;
  width: 100%;
  margin: 0 auto;
}

.flex>div {
  width: 50%;
}

table tr td {
  line-height: 1.3;
  font-weight: bold;
  vertical-align: middle;
}

table tr td span {
  line-height: 1;
  font-size: 12px;
  font-weight: bold;
  display: block;
  margin-top: 3px;
}

.table-red {
  border: solid 10px #bf3464;
  text-align: center;
}

.table-blue {
  border: solid 10px #69BEAD;
  text-align: center;
}

.table-red>p,
.table-blue>p {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  padding-bottom: 10px;
  line-height: 1.2;
}

.table-red>p span.t-yellow,
.table-blue>p span.t-yellow {
  color: #FFFB26;
}

.table-red>p {
  background: #bf3464;
}

.table-blue>p {
  background: #69BEAD;
}

.table-red table,
.table-blue table {
  padding: 10px;
  width: 96%;
  margin: 10px auto;
}

.table-red table tr:nth-of-type(odd) {
  background: #bf3464;
  color: #fff;
  font-size: 18px;
}

.table-blue table tr:nth-of-type(odd) {
  background: #69BEAD;
  color: #fff;
  font-size: 18px;
}

.table-red table tr:nth-of-type(even),
.table-blue table tr:nth-of-type(even),
.table-blue table tr {
  font-size: 18px;
}

table tr td {
  width: 100%;
}

.table-red table tr:nth-of-type(even),
.table-blue table tr:nth-of-type(even) {
  height: 65px;
}

.table-red table tr:nth-of-type(2),
.table-blue table tr:nth-of-type(2) {
  height: 65px;
}

.table-red table tr:last-of-type,
.table-blue table tr:last-of-type {
  height: 40px;
}

@media (max-width: 600px) {

  .table-red table tr:nth-of-type(even),
  .table-blue table tr:nth-of-type(even) {
    height: 55px;
  }

  .table-red table tr:nth-of-type(2),
  .table-blue table tr:nth-of-type(2) {
    height: 60px;
  }

  .table-red table tr:last-of-type,
  .table-blue table tr:last-of-type {
    height: 30px;
  }

}

@media screen and (max-width:570px) {

  .table-red {
    border: solid 6px #bf3464;
  }

  .table-blue {
    border: solid 6px #69BEAD;
  }

  .table-red>p,
  .table-blue>p {
    font-size: 17px;
    padding: 10px 0 4px;
  }

  .table-red table,
  .table-blue table {
    padding: 6px;
    margin: 3px auto;
  }

  .table-red table tr:nth-of-type(odd),
  .table-blue table tr:nth-of-type(odd) {
    font-size: 12px;
  }

  .table-red table tr:nth-of-type(even),
  .table-blue table tr:nth-of-type(even) {
    font-size: 12px;
  }

  table tr td span {
    font-size: 9px;
  }

}

.present_photo2-frame {
  width: 45.625rem;
  margin: 0 auto;
  padding: 1.5rem 2.1875rem 3.125rem !important;
}

@media (max-width: 768px) {
  .present_photo2-frame {
    width: 29rem;
    padding: 1.5rem 0!important;
  }
}

.line_howto {
  width: 100%;
  max-width: 50rem;
  text-align: center;
  margin: 0 auto 40px;
}

.line_howto-mt {
  margin: 40px auto 0;
}

.line_howto img {
  width: 95%;
}

@media screen and (max-width:768px) {
  .line_howto {
    margin: 0 auto 20px;
  }

  .line_howto-mt {
    margin: 20px auto 0;
  }

  .line_howto-mt img {
    width: 100%;
  }
}











.seminar-index-summary {
  padding-bottom: 3rem;
}

.p-index-summary__title-seminar {
  width: 33.625rem;
}

.p-index-seminar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3%;
  row-gap: 20px;
}

.p-index-seminar__box-img {
  width: 100%;
  aspect-ratio: 450/330;
  object-fit: cover;
}

.off-index-summary {
  padding-bottom: 3rem;
}

.p-index-summary__title-off {
  width: 9.625rem;
}

.p-index-off {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 3%;
}

.p-index-off__box-img {
  width: 100%;
  aspect-ratio: 310/255;
  object-fit: cover;
}

.classroom-index-summary {
  padding-bottom: 0;
}

.p-index-summary__title-classroom {
  width: 29.625rem;
}

.class-index-summary__frame {
  margin-bottom: 3rem;
}

.p-index-classroom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  width: 96%;
  margin: 0 auto;
}

.p-index-classroom__box-img {
  width: 30%;
  object-fit: cover;
  margin-right: 3%;
  margin-bottom: 8px;
  aspect-ratio: 300/235;
}

.p-index-classroom__box-img:nth-of-type(7),
.p-index-classroom__box-img:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width:768px) {

  .seminar-index-summary {
    padding-bottom: 0;
  }

  .p-index-summary__title-seminar {
    width: 23.625rem;
  }

  .p-index-seminar {
    row-gap: 10px;
  }


  .off-index-summary {
    padding-bottom: 0;
  }

  .p-index-summary__title-off {
    width: 6.625rem;
  }


  .class-index-summary__frame {
    margin-bottom: 0;
  }

  .p-index-summary__title-classroom {
    width: 21.625rem;
  }
}


.yureru-s {
  animation: yureru-s 2s infinite;
}

@keyframes yureru-s {
  0% {
      transform: translate(2px, 0px);
  }

  5% {
      transform: translate(-2px, 0px);
  }

  10% {
      transform: translate(2px, 0px);
  }

  15% {
      transform: translate(-2px, 0px);
  }

  20% {
      transform: translate(2px, 0px);
  }

  25% {
      transform: translate(-2px, 0px);
  }

  30% {
      transform: translate(0px, 0px);
  }
}

.content-present-box{
  text-align: center;
}

.content-present-box img{
  width: 90%;
}
/*=======================
popup
=======================*/
.popup_container{
    margin: 0 auto;
    max-width: 500px;
    position: relative;
 /*   top: 50%;
    transform: translateY(-50%);*/
}

.popup_container span{
    width: 20%;
    max-width: 100px;
    position: absolute;
    top: -15px;
    left: -25px;
}
@media (min-width:500px){
 .popup_container span{
    top: -30px;
    left: -30px;
}   
}
@media (min-width:768px){
 .popup_container span{
    top: -35px;
    left: -40px;
}   
}
.popup_container .popup_btn{
    width: 75%;
    max-width: 380px;
    margin: 0 auto;
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
      animation: poyopoyo 3s ease-out infinite;
  opacity: 1;
}
@media (min-width:768px){
 .popup_container .popup_btn{
    bottom: 18px;
 }   
}
@keyframes poyopoyo {
    0%, 100% { 
      -webkit-transform: scale(1,1);
      transform: scale(1,1); 
    } 
    5% { 
      -webkit-transform: scale(.8,1.2);
      transform: scale(.8,1.2);
    }
    15% { 
      -webkit-transform: scale(1.1,.8);
      transform: scale(1.1,.8);
    }
    25% { 
      -webkit-transform: scale(.9,1.1);
      transform: scale(.9,1.1);
    }
    30% { 
      -webkit-transform: scale(.98,1.02);
      transform: scale(.98,1.02);
    }
    37% { 
      -webkit-transform: scale(.9,1.1);
      transform: scale(.9,1.1);
    }
    45% { 
      -webkit-transform: scale(.98,1.02);
      transform: scale(.98,1.02);
    }
    55% { 
      -webkit-transform: scale(.8,1.2);
      transform: scale(.8,1.2);
    }
    65% { 
      -webkit-transform: scale(1.1,.8);
      transform: scale(1.1,.8);
    }
    75% { 
      -webkit-transform: scale(.9,1.1);
      transform: scale(.9,1.1);
    }
    80% { 
      -webkit-transform: scale(.98,1.02);
      transform: scale(.98,1.02);
    }
    87% { 
      -webkit-transform: scale(.9,1.1);
      transform: scale(.9,1.1);
    }
    95% { 
      -webkit-transform: scale(.98,1.02);
      transform: scale(.98,1.02);
    }
}
.close-btn{
    margin: 0 auto;
    width: 100px;
    text-align: center;
    border-radius: 4px;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
}

 .popup-area {
    display:none;
    width:100vw;
    position: fixed;
    z-index: 9999;   
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
}

@media (min-width:768px){
 .popup-area {
    width:80vw;
}
}
.popup-area button {
    margin:30px auto 0;
}
/* 背景色 */
.cover-eml {
    background:rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;   
    top:0;
    right:0;
    bottom:0;
    left:0;
}

.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    width: 100%;
}
.modal__content{
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
	width:80%;
}

.obi{padding:6px 20px;
    max-width: 680px;
    margin: 0 auto;
width:85%;
}
.obi img{
display:block;
}
@media (min-width:768px){
.obi{
padding:0.8rem 20px;
}
