@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Raleway:100,400,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");
/*
smooth_font(最小サイズpx、最大サイズpx、最小画面サイズpx、最大画面サイズpx）
smooth_size(最小サイズpx、最大サイズpx、最小画面サイズpx、最大画面サイズpx）

指定した「最小画面サイズ」から「最大画面サイズ」へむけて、変化します。

「smooth_font」と「smooth_size」の違いは、
「smooth_font」は「rem」
「smooth_size」は「px」
になるだけです。

※注
・デフォルトでは第3引数と第4引数がなくても横幅375pxから横幅1600pxの割合で変化します。
・「最大画面サイズ」より画面サイズが大きかったり、「最小画面サイズ」より画面サイズが小さい場合は
比率を維持したまま、大きくなったり小さくなったりします。
必要があれば、media queryなどで上限や下限を指定してください。

例）-----------------------------

body {
  font-size: 1.8rem;
  @media only screen and (max-width: 1599px) {
    font-size: smooth_font(14px, 18px);
  }
  @media only screen and (max-width: 374px) {
    font-size: 1.4rem;
  }
}

.c-container {
  margin: 0 auto;
  max-width: 1110px;
  width: smooth_size(335px, 1110px);

  @media only screen and (max-width: 374px) {
    // 横幅320pxの時など
    width: 280px;
  }
}

--------------------------------
*/
.c-stripe, .l-footer__obj .line.-stripe {
  display: block;
  background-image: repeating-linear-gradient(90deg, #fff, #fff 12px, transparent 0, transparent 26px);
  transform: skewX(-40deg);
}
@media only screen and (max-width: 1599px) {
  .c-stripe, .l-footer__obj .line.-stripe {
    background-image: repeating-linear-gradient(90deg, #fff, #fff calc(0.3265306122vw + 6.7755102041px ), transparent 0, transparent calc(0.7346938776vw + 14.2448979592px ));
  }
}

/*! destyle.css v2.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;
  line-height: 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;
  /* 2 */
  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;
}

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

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * 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;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

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

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 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. Change font properties to `inherit` in Safari.
 */
::-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] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

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

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

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  font-size: 62.5%;
}
html.is-fixed {
  overflow: hidden;
}

body {
  background: #ededed;
  color: #221717;
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  text-indent: calc(0vw + 0rem );
  line-height: 180%;
}
@media only screen and (max-width: 1599px) {
  body {
    font-size: calc(0.1632653061vw + 1.3387755102rem );
  }
}
body.is-fixed {
  overflow: hidden;
}

#page {
  position: relative;
  overflow: hidden;
  font-weight: 500;
}

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

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ccc;
  vertical-align: top;
}

/*----------------------------------------------------
	form要素
--------------------------------------------------- */
input,
textarea {
  padding: 5px 7px;
  border-radius: 2px;
  margin: 0;
  border: none;
  background-color: #fff;
  border: 1px solid #a7a6aa;
}

input[type=text],
textarea {
  outline: none;
  border: 1px solid #aaa;
  transition: all 0.3s ease;
}

input[type=text]:focus,
textarea:focus {
  box-shadow: 0 0 7px #fa4b54;
  border: 1px solid #fa4b54;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  background-color: #fff;
}
.l-header__inner {
  display: flex;
  align-items: baseline;
  padding: 25px 35px;
}
@media only screen and (max-width: 1599px) {
  .l-header__inner {
    padding: calc(0.8163265306vw + 11.9387755102px ) calc(2.4489795918vw + -4.1836734694px );
  }
}
.l-header__logo a {
  display: flex;
  align-items: center;
}
.l-header__logo a .mark {
  display: block;
  width: 64px;
  margin-right: 10px;
}
@media only screen and (max-width: 1599px) {
  .l-header__logo a .mark {
    width: calc(2.612244898vw + 22.2040816327px );
    margin-right: calc(0.4081632653vw + 3.4693877551px );
  }
}
.l-header__logo a .main {
  display: block;
  width: 310px;
}
@media only screen and (max-width: 1599px) {
  .l-header__logo a .main {
    width: calc(9.387755102vw + 159.7959183673px );
  }
}
.l-header__title {
  background-color: #d6000f;
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 2px 7px;
  line-height: 1.4;
  margin-left: 25px;
}
@media only screen and (max-width: 1599px) {
  .l-header__title {
    margin-left: calc(1.0612244898vw + 8.0204081633px );
    font-size: calc(0.2448979592vw + 0.9081632653rem );
    padding: 2px calc(0.3265306122vw + 2.7755102041px );
  }
}
@media only screen and (max-width: 767px) {
  .l-header__title {
    display: none;
  }
}
.l-header__button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
}
.l-header__button .button {
  display: flex;
}
.l-header__button .button a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d6000f;
  color: #fff;
  width: 150px;
  height: 100%;
  font-weight: bold;
  font-size: 1.6rem;
  transition: all 0.4s ease;
  text-align: center;
  line-height: 1.3;
}
@media only screen and (max-width: 1599px) {
  .l-header__button .button a {
    width: calc(7.1836734694vw + 35.0612244898px );
    font-size: calc(0.3265306122vw + 1.0775510204rem );
  }
}
.is-mouse .l-header__button .button a:hover {
  background-color: #111;
}
.l-header__button .button.-opencampus a {
  background-color: #72afff;
}

.l-footer {
  width: 100%;
  padding: 115px 70px 88px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .l-footer {
    padding: calc(6.9387755102vw + 3.9795918367px ) calc(2.8571428571vw + 24.2857142857px ) calc(5.5510204082vw + -0.8163265306px );
  }
}
.l-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 10px;
  width: 100%;
  background-image: linear-gradient(to right, #ff8989 0%, #ff8989 20%, #72afff 20%, #72afff 40%, #cadee3 40%, #cadee3 60%, #64e2c3 60%, #64e2c3 80%, #bd9ee5 80%, #bd9ee5 100%);
}
.l-footer__inner {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .l-footer__inner {
    margin-bottom: calc(0.4081632653vw + 3.4693877551px );
  }
}
@media only screen and (max-width: 1023px) {
  .l-footer__inner {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__inner {
    align-items: center;
  }
}
.l-footer__info {
  margin-right: 40px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__info {
    margin-right: calc(1.6326530612vw + 13.8775510204px );
  }
}
@media only screen and (max-width: 1023px) {
  .l-footer__info {
    margin-right: 0;
    margin-bottom: calc(1.2244897959vw + 10.4081632653px );
  }
}
.l-footer__info__logo {
  margin-bottom: 22px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__info__logo {
    margin-bottom: calc(0.9795918367vw + 6.3265306122px );
  }
}
.l-footer__info__contact {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .l-footer__info__contact {
    flex-direction: column;
    align-items: center;
  }
}
.l-footer__info__contact .item {
  margin-right: 20px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__info__contact .item {
    margin-right: calc(0.8163265306vw + 6.9387755102px );
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__info__contact .item {
    margin-right: 0;
    margin-bottom: calc(0.4081632653vw + 3.4693877551px );
  }
}
.l-footer__info__contact .item i {
  color: #d6000f;
  font-size: 2rem;
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__info__contact .item i {
    font-size: calc(0.4081632653vw + 1.3469387755rem );
    margin-right: calc(0.4081632653vw + 3.4693877551px );
  }
}
.l-footer__info__contact .item span,
.l-footer__info__contact .item a {
  font-family: "Futura", sans-serif;
  font-weight: bold;
  letter-spacing: 0.08em;
  font-size: 2rem;
}
@media only screen and (max-width: 1599px) {
  .l-footer__info__contact .item span,
.l-footer__info__contact .item a {
    font-size: calc(0.3265306122vw + 1.4775510204rem );
  }
}
.l-footer__info__contact .item.-tel span,
.l-footer__info__contact .item.-tel a {
  font-size: 2.5rem;
}
@media only screen and (max-width: 1599px) {
  .l-footer__info__contact .item.-tel span,
.l-footer__info__contact .item.-tel a {
    font-size: calc(0.5714285714vw + 1.5857142857rem );
  }
}
.l-footer__link a {
  display: block;
  background-color: #d6000f;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  border-radius: 99px;
  padding: 15px 35px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .l-footer__link a {
    font-size: calc(0.1632653061vw + 1.1387755102rem );
    padding: calc(0.5714285714vw + 5.8571428571px ) calc(1.6326530612vw + 8.8775510204px );
  }
}
.is-mouse .l-footer__link a:hover {
  opacity: 0.8;
}
.l-footer__sns {
  margin-left: auto;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .l-footer__sns {
    margin-left: 0;
  }
}
.l-footer__sns .item {
  font-size: 2rem;
  padding: 15px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__sns .item {
    padding: calc(0.5714285714vw + 5.8571428571px );
    font-size: calc(0.3265306122vw + 1.4775510204rem );
  }
}
.l-footer__sns .item a {
  transition: all 0.4s ease;
}
.l-footer__sns .item a:hover {
  color: #fa4b54;
}
.l-footer__copyright {
  text-align: right;
  font-family: "Raleway", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}
@media only screen and (max-width: 1599px) {
  .l-footer__copyright {
    font-size: calc(0.2448979592vw + 0.9081632653rem );
  }
}
.l-footer__en {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .l-footer__en {
    width: calc(22.4489795918vw + 19.0816326531rem );
  }
}
.l-footer__obj .line {
  display: block;
}
.l-footer__obj .line.-solid {
  background-color: #fff;
  width: 110px;
  height: 14px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__obj .line.-solid {
    width: calc(4.4897959184vw + 38.1632653061px );
    height: calc(0.5714285714vw + 4.8571428571px );
  }
}
.l-footer__obj .line.-stripe {
  width: 145px;
  height: 22px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__obj .line.-stripe {
    width: calc(5.8775510204vw + 50.9591836735px );
    height: calc(0.8979591837vw + 7.6326530612px );
  }
}
.l-footer__obj .line.-thin {
  background-color: #fff;
  width: 110px;
  height: 2px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__obj .line.-thin {
    width: calc(4.4897959184vw + 38.1632653061px );
    height: calc(0.0816326531vw + 0.693877551px );
  }
}
.l-footer__obj.-top {
  width: 354px;
  height: 65px;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 1599px) {
  .l-footer__obj.-top {
    width: calc(6.0408163265vw + 257.3469387755px );
    height: calc(1.0612244898vw + 48.0204081633px );
  }
}
.l-footer__obj.-top .line {
  position: absolute;
}
.l-footer__obj.-top .line.-solid {
  top: 0;
  left: 0;
}
.l-footer__obj.-top .line.-stripe {
  bottom: 0;
  right: 0;
}
.l-footer__obj.-top .line.-thin {
  bottom: 12px;
  right: 158px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__obj.-top .line.-thin {
    right: calc(6.3673469388vw + 56.1224489796px );
    bottom: calc(0.4897959184vw + 4.1632653061px );
  }
}
.l-footer__obj.-bottom {
  width: 350px;
  height: 216px;
  position: absolute;
  bottom: 20px;
  right: 75px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__obj.-bottom {
    width: calc(5.7142857143vw + 258.5714285714px );
    height: calc(3.5102040816vw + 159.8367346939px );
    bottom: calc(0.8163265306vw + 6.9387755102px );
    right: calc(6.1224489796vw + -22.9591836735px );
  }
}
.l-footer__obj.-bottom .line {
  position: absolute;
}
.l-footer__obj.-bottom .line.-solid {
  bottom: 98px;
  left: 0;
}
@media only screen and (max-width: 1599px) {
  .l-footer__obj.-bottom .line.-solid {
    bottom: calc(3.9183673469vw + 35.306122449px );
  }
}
.l-footer__obj.-bottom .line.-stripe {
  bottom: 0;
  right: 0;
}
.l-footer__obj.-bottom .line.-thin {
  top: 0;
  right: 120px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__obj.-bottom .line.-thin {
    right: calc(4.8979591837vw + 41.6326530612px );
  }
}

@keyframes flash {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}
@keyframes flash02 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.3;
  }
}
@keyframes wave_small01 {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.9);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes wave_small02 {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.8);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes wave_small03 {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.75);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes wave_large01 {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes wave_large02 {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.2);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes wave_large03 {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.3);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes loop_en {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -3987px;
    @media only screen and (max-width: 1599px) {
      background-position-x: calc(-162.693877551vw + -1383.8979591837px );
    }
  }
}
@keyframes kv_code_anim_y {
  0% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes kv_code_anim_z {
  0% {
    transform: rotateZ(1deg) scale(1);
  }
  50% {
    transform: rotateZ(-1deg) scale(1.06);
  }
  100% {
    transform: rotateZ(1deg) scale(1);
  }
}
@keyframes kv_code_anim_x {
  0% {
    transform: translateX(8px);
  }
  50% {
    transform: translateX(-8px);
  }
  100% {
    transform: translateX(8px);
  }
}
.c-main_catch {
  position: fixed;
  bottom: 0;
  left: 320px;
  z-index: 5;
  pointer-events: none;
}
@media only screen and (max-width: 1599px) {
  .c-main_catch {
    left: calc(24.4897959184vw + -71.8367346939px );
  }
}
@media only screen and (max-width: 1023px) {
  .c-main_catch {
    left: calc(1.6326530612vw + 13.8775510204px );
  }
}
@media only screen and (max-width: 374px) {
  .c-main_catch {
    left: 20px;
  }
}
.c-main_catch.is-static {
  position: relative;
  top: 0;
  bottom: auto;
  left: 0;
}
.is-vertical .c-main_catch {
  position: relative !important;
  top: 0;
  bottom: auto;
  left: 0;
}
.c-main_catch__sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1599px) {
  .c-main_catch__sub {
    margin-bottom: calc(0.6530612245vw + 7.5510204082px );
  }
}
.c-main_catch__sub > span {
  background-color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
}
@media only screen and (max-width: 1599px) {
  .c-main_catch__sub > span {
    font-size: calc(0.9795918367vw + 1.0326530612rem );
  }
}
.c-main_catch__sub > span em {
  font-style: normal;
  color: #fa4b54;
}
.c-main_catch__sub > span + span {
  margin-top: 6px;
}
@media only screen and (max-width: 1599px) {
  .c-main_catch__sub > span + span {
    margin-top: calc(0.2448979592vw + 2.0816326531px );
  }
}
.is-static .c-main_catch__sub {
  opacity: 0;
  margin-bottom: 0;
}
.is-vertical .c-main_catch__sub {
  opacity: 1 !important;
  margin-bottom: calc(0.6530612245vw + 7.5510204082px ) !important;
}
.c-main_catch__text {
  color: #fff;
  line-height: 1;
}
.c-main_catch__text img,
.c-main_catch__text svg {
  width: 432px;
  overflow: hidden;
}
@media only screen and (max-width: 1599px) {
  .c-main_catch__text img,
.c-main_catch__text svg {
    width: calc(17.6326530612vw + 149.8775510204px );
  }
}
.c-main_catch__en {
  font-family: "Futura", sans-serif;
  font-weight: bold;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  transition: all 0.4s ease;
  opacity: 0;
  margin-top: 20px;
}
@media only screen and (max-width: 1599px) {
  .c-main_catch__en {
    font-size: calc(0.3265306122vw + 0.8775510204rem );
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
.is-static .c-main_catch__en {
  opacity: 1;
}
.is-vertical .c-main_catch__en {
  opacity: 1 !important;
  margin-top: calc(4.4897959184vw + 38.1632653061px );
}

.c-ico {
  width: 1em;
  height: 1em;
  overflow: hidden;
  fill: currentColor;
}

.c-wave {
  color: #fff;
  opacity: 0.8;
}
.c-wave svg rect {
  transform-origin: center center;
}
.c-wave svg rect:nth-child(3n) {
  animation: wave_small01 0.5s ease infinite alternate;
}
.c-wave svg rect:nth-child(2n) {
  animation: wave_large01 0.3s ease infinite alternate 0.2s;
}
.c-wave svg rect:nth-child(3n-1) {
  animation: wave_small02 0.2s ease infinite alternate 0.3s;
}
.c-wave svg rect:nth-child(3n+1) {
  animation: wave_small03 0.5s ease infinite alternate;
}

.c-bg_obj {
  position: absolute;
  color: #fff;
}
.c-bg_obj.-no01 {
  width: 412px;
  height: 565px;
}
@media only screen and (max-width: 1599px) {
  .c-bg_obj.-no01 {
    width: calc(16.8163265306vw + 142.9387755102px );
    height: calc(23.1020408163vw + 195.3673469388px );
  }
}
.c-bg_obj.-no02 {
  width: 614px;
  height: 406px;
}
@media only screen and (max-width: 1599px) {
  .c-bg_obj.-no02 {
    width: calc(25.0612244898vw + 213.0204081633px );
    height: calc(16.5714285714vw + 140.8571428571px );
  }
}

.c-alert_ie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
}
.c-alert_ie__alert {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 50%;
  max-width: 650px;
  padding: calc(2.4489795918vw + 20.8163265306px );
}
.c-alert_ie__alert .c-btn_edge {
  text-align: center;
  margin-top: 20px;
  display: block;
  color: #fff;
  background: #fa4b54;
  border: 1px solid #fa4b54;
  padding: 10px calc(0.8163265306vw + 6.9387755102px );
  border-radius: 30px;
  transition: all 0.3s ease;
}
.c-alert_ie__alert .c-btn_edge:hover {
  background: #fff;
  color: #fa4b54;
}

.c-title01 {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .c-title01 {
    margin-bottom: calc(1.2244897959vw + 20.4081632653px );
  }
}
.c-title01__bg {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .c-title01__bg {
    top: calc(-1.2244897959vw + -10.4081632653px );
  }
}
.c-title01__bg img {
  width: 350px;
  height: 350px;
}
@media only screen and (max-width: 1599px) {
  .c-title01__bg img {
    width: calc(14.2857142857vw + 121.4285714286px );
    height: calc(14.2857142857vw + 121.4285714286px );
  }
}
.js-anim_elm .c-title01__bg img {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center center;
  transition: all 0.6s ease;
}
.is-act .c-title01__bg img {
  opacity: 1;
  transform: scale(1);
}
.c-title01__en {
  font-family: "Futura", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1599px) {
  .c-title01__en {
    font-size: calc(0.4897959184vw + 0.8163265306rem );
    margin-bottom: calc(0.5714285714vw + 5.8571428571px );
  }
}
.js-anim_elm .c-title01__en {
  opacity: 0;
  letter-spacing: 0em;
  transition: all 0.6s ease;
}
.is-act .c-title01__en {
  opacity: 1;
  letter-spacing: 0.3em;
}
.c-title01__catch {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-title01__catch::before, .c-title01__catch::after {
  content: "";
  display: block;
  width: 38px;
  height: 5px;
  background-image: radial-gradient(circle farthest-side, #fa4b54, #fa4b54 50%, transparent 50%, transparent);
  background-repeat: repeat-x;
  background-size: 10px 10px;
  background-position: 10px center;
}
@media only screen and (max-width: 1599px) {
  .c-title01__catch::before, .c-title01__catch::after {
    width: calc(1.5510204082vw + 13.1836734694px );
    height: calc(0.1632653061vw + 2.387755102px );
    background-size: calc(0.4081632653vw + 3.4693877551px ) calc(0.4081632653vw + 3.4693877551px );
    background-position: calc(0.4081632653vw + 3.4693877551px ) center;
  }
}
.c-title01__catch .bg {
  background-color: #111;
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1;
  margin: 0 15px;
  padding: 5px;
}
@media only screen and (max-width: 1599px) {
  .c-title01__catch .bg {
    font-size: calc(1.2244897959vw + 1.0408163265rem );
    margin: 0 calc(0.5714285714vw + 5.8571428571px );
  }
}
.js-anim_elm .c-title01__catch {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.4s;
}
.is-act .c-title01__catch {
  opacity: 1;
  transform: translateY(0px);
}
.c-title01__main {
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .c-title01__main {
    font-size: calc(2.4489795918vw + 20.8163265306px );
  }
}
.c-title01__main em {
  font-size: 7rem;
  letter-spacing: -0.05em;
  font-style: normal;
}
@media only screen and (max-width: 1599px) {
  .c-title01__main em {
    font-size: calc(2.8571428571vw + 24.2857142857px );
  }
}
@media only screen and (max-width: 767px) {
  .c-title01__main em {
    letter-spacing: -0.04em;
  }
}
.c-title01__main .num {
  -webkit-text-stroke: 2px #111;
  color: #fff;
  font-family: "Futura", sans-serif;
  font-size: 8.5rem;
}
@media only screen and (max-width: 1599px) {
  .c-title01__main .num {
    font-size: calc(3.4285714286vw + 30.1428571429px );
  }
}
.js-anim_elm .c-title01__main {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.6s;
}
.is-act .c-title01__main {
  opacity: 1;
  transform: translateY(0px);
}
.c-title01__text {
  font-size: 2rem;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 1599px) {
  .c-title01__text {
    font-size: calc(0.8163265306vw + 0.693877551rem );
  }
}
.js-anim_elm .c-title01__text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.6s;
}
.is-act .c-title01__text {
  opacity: 1;
  transform: translateY(0px);
}
.c-title01__arrow {
  position: relative;
  margin-top: 10px;
}
@media only screen and (max-width: 1599px) {
  .c-title01__arrow {
    margin-top: calc(0.4081632653vw + 3.4693877551px );
  }
}
.c-title01__arrow::before, .c-title01__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.c-title01__arrow::before {
  border-width: 29px 49px 0 49px;
  border-color: #fff transparent transparent transparent;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .c-title01__arrow::before {
    border-width: calc(1.1428571429vw + 10.7142857143px ) calc(1.9591836735vw + 17.6530612245px ) 0 calc(1.9591836735vw + 17.6530612245px );
  }
}
.js-anim_elm .c-title01__arrow::before {
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: all 0.6s ease 0.9s;
}
.is-act .c-title01__arrow::before {
  opacity: 1;
  transform: translate(-50%, 0px);
}
.c-title01__arrow::after {
  border-width: 58px 97.5px 0 97.5px;
  border-color: #fa4b54 transparent transparent transparent;
  z-index: 1;
  top: -20px;
}
@media only screen and (max-width: 1599px) {
  .c-title01__arrow::after {
    border-width: calc(2.3673469388vw + 20.1224489796px ) calc(3.9591836735vw + 34.1530612245px ) 0 calc(3.9591836735vw + 34.1530612245px );
    top: calc(-0.8163265306vw + -6.9387755102px );
  }
}
.js-anim_elm .c-title01__arrow::after {
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: all 0.6s ease 1.1s;
}
.is-act .c-title01__arrow::after {
  opacity: 1;
  transform: translate(-50%, 0px);
}
.c-title01__arrow.-black::after {
  border-color: #111 transparent transparent transparent;
}
.c-title02 {
  text-align: center;
  color: #fff;
}
.c-title02__en {
  font-family: "Futura", sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media only screen and (max-width: 1599px) {
  .c-title02__en {
    font-size: calc(0.0816326531vw + 11.693877551px );
  }
}
.c-title02__en::before {
  content: "▼";
  display: inline-block;
  margin-right: 0.5em;
  font-size: 1.1rem;
}
.c-title02__main {
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 1599px) {
  .c-title02__main {
    font-size: calc(0.1632653061vw + 1.7387755102rem );
  }
}
.c-title03 {
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1599px) {
  .c-title03 {
    margin-bottom: calc(1.2244897959vw + 10.4081632653px );
  }
}
.c-title03__sub {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1599px) {
  .c-title03__sub {
    font-size: calc(0.4897959184vw + 1.2163265306rem );
    margin-bottom: calc(0.6530612245vw + 4.5510204082px );
  }
}
.c-title03__sub::before, .c-title03__sub::after {
  content: "";
  display: block;
  height: 35px;
  width: 1px;
  border-right: 5px dotted #fa4b54;
  margin: 0 20px;
}
@media only screen and (max-width: 1599px) {
  .c-title03__sub::before, .c-title03__sub::after {
    margin: 0 calc(0.8163265306vw + 6.9387755102px );
    height: calc(1.2244897959vw + 15.4081632653px );
  }
}
@media only screen and (max-width: 767px) {
  .c-title03__sub::before, .c-title03__sub::after {
    border-right: 2px dotted #fa4b54;
  }
}
.c-title03__sub::before {
  transform: rotate(-30deg);
}
.c-title03__sub::after {
  transform: rotate(30deg);
}
.c-title03__main {
  display: inline-block;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width: 1599px) {
  .c-title03__main {
    font-size: calc(1.2244897959vw + 1.5408163265rem );
    padding-bottom: calc(0.4081632653vw + 3.4693877551px );
  }
}
.c-title04 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #111;
  line-height: 1.66;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1599px) {
  .c-title04 {
    font-size: calc(0.8163265306vw + 1.493877551rem );
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
.c-title04::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  border-bottom: 5px dotted #111;
  margin-top: 15px;
}
@media only screen and (max-width: 1599px) {
  .c-title04::after {
    margin-top: calc(0.6530612245vw + 4.5510204082px );
    width: calc(0.8163265306vw + 14.9387755102px );
  }
}
@media only screen and (max-width: 1023px) {
  .c-title04::after {
    border-bottom: 3px dotted #111;
  }
}

.c-dot {
  background-image: radial-gradient(#fff 13%, transparent 13%);
  background-size: 19px 19px;
  display: block;
}
@media only screen and (max-width: 1599px) {
  .c-dot {
    background-size: calc(0.5714285714vw + 9.8571428571px ) calc(0.5714285714vw + 9.8571428571px );
  }
}
.c-dot.-black {
  background-image: radial-gradient(#111 13%, transparent 13%);
}

.c-text01 {
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .c-text01 {
    line-height: 1.6;
  }
}
.c-text02 {
  font-size: 2rem;
}
@media only screen and (max-width: 1599px) {
  .c-text02 {
    font-size: calc(0.3265306122vw + 1.4775510204rem );
  }
}
.c-text03 {
  font-size: 1.4rem;
  line-height: 1.85;
}
@media only screen and (max-width: 1599px) {
  .c-text03 {
    font-size: calc(0.1632653061vw + 1.1387755102rem );
  }
}

.c-cta {
  padding: 180px 0 160px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .c-cta {
    padding: calc(10.612244898vw + 10.2040816327px ) 0 calc(6.5306122449vw + 55.5102040816px );
  }
}
.c-cta .c-bg_obj {
  z-index: -1;
}
.c-cta .c-bg_obj.-no01 {
  top: -70px;
  left: -34px;
}
@media only screen and (max-width: 1599px) {
  .c-cta .c-bg_obj.-no01 {
    top: calc(-8.9795918367vw + 73.6734693878px );
  }
}
.c-cta .c-bg_obj.-no02 {
  top: 185px;
  right: -100px;
}
@media only screen and (max-width: 767px) {
  .c-cta .c-bg_obj.-no02 {
    display: none;
  }
}
.c-cta__illust {
  position: absolute;
  display: flex;
  align-items: flex-start;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  .c-cta__illust {
    display: none;
  }
}
.c-cta__illust .fukidashi {
  font-size: 1.5rem;
  line-height: 1;
  padding: 15px 10px;
  border-radius: 99px;
  color: #fff;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .c-cta__illust .fukidashi {
    font-size: calc(0.2448979592vw + 1.1081632653rem );
    padding: calc(0.5714285714vw + 5.8571428571px ) calc(0.4081632653vw + 3.4693877551px );
  }
}
.c-cta__illust .fukidashi::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}
.js-anim_elm .c-cta__illust .fukidashi {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 1s;
}
.is-act .c-cta__illust .fukidashi {
  opacity: 1;
}
.js-anim_elm .c-cta__illust {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}
.is-act .c-cta__illust {
  opacity: 1;
  transform: scale(1);
}
.c-cta__illust.-no01 {
  top: 65px;
  left: 90px;
}
@media only screen and (max-width: 1599px) {
  .c-cta__illust.-no01 {
    top: calc(2.8571428571vw + 19.2857142857px );
    left: calc(9.387755102vw + -60.2040816327px );
  }
}
.c-cta__illust.-no01 figure {
  width: 192px;
}
@media only screen and (max-width: 1599px) {
  .c-cta__illust.-no01 figure {
    width: calc(7.8367346939vw + 66.612244898px );
  }
}
.c-cta__illust.-no01 .fukidashi {
  background-color: #ff7c7c;
  top: 52px;
}
.c-cta__illust.-no01 .fukidashi::before {
  left: -10px;
  border-width: 4.5px 11px 4.5px 0;
  border-color: transparent #ff7c7c transparent transparent;
}
.c-cta__illust.-no02 {
  flex-direction: row-reverse;
  top: 55px;
  right: 110px;
}
@media only screen and (max-width: 1599px) {
  .c-cta__illust.-no02 {
    top: calc(2.4489795918vw + 15.8163265306px );
    right: calc(11.0204081633vw + -66.3265306122px );
  }
}
.c-cta__illust.-no02 figure {
  width: 162px;
}
@media only screen and (max-width: 1599px) {
  .c-cta__illust.-no02 figure {
    width: calc(6.612244898vw + 56.2040816327px );
  }
}
.c-cta__illust.-no02 .fukidashi {
  background-color: #59d5b7;
  top: 55px;
}
.c-cta__illust.-no02 .fukidashi::before {
  right: -10px;
  border-width: 4.5px 0 4.5px 11px;
  border-color: transparent transparent transparent #59d5b7;
}
@media only screen and (max-width: 1023px) {
  .c-cta .c-container {
    width: 100%;
  }
}
.c-cta__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .c-cta__row {
    margin-left: calc(-1.6326530612vw + 6.1224489796px );
    margin-right: calc(-1.6326530612vw + 6.1224489796px );
  }
}
.c-cta__item {
  width: 50%;
  padding: 0 20px;
  display: flex;
}
@media only screen and (max-width: 1599px) {
  .c-cta__item {
    padding: 0 calc(1.6326530612vw + -6.1224489796px );
  }
}
@media only screen and (max-width: 767px) {
  .c-cta__item {
    width: 100%;
  }
}
.js-anim_elm .c-cta__item {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.is-act .c-cta__item {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c-cta__item a {
  width: 100%;
  display: flex;
  position: relative;
  border-radius: 0 20px 0 20px;
  color: #fff;
  background-color: #fa4b54;
  padding: 45px 30px 30px;
}
@media only screen and (max-width: 1599px) {
  .c-cta__item a {
    border-radius: 0 calc(0.8163265306vw + 6.9387755102px ) 0 calc(0.8163265306vw + 6.9387755102px );
    padding: calc(1.2244897959vw + 25.4081632653px ) calc(1.2244897959vw + 10.4081632653px ) calc(1.2244897959vw + 10.4081632653px );
  }
}
@media only screen and (max-width: 767px) {
  .c-cta__item a {
    padding: calc(2.4489795918vw + 20.8163265306px ) calc(1.5510204082vw + 13.1836734694px ) calc(2.0408163265vw + 17.3469387755px );
    align-items: center;
    min-height: 130px;
  }
}
.is-mouse .c-cta__item a {
  transition: all 0.5s ease;
}
.is-mouse .c-cta__item a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .c-cta__item.-line {
    margin-bottom: calc(2.0408163265vw + 17.3469387755px );
  }
}
.c-cta__item.-line a {
  background-color: #06c755;
}
.c-cta__item.-request {
  transition-delay: 0.3s;
}
.c-cta__item.-request a {
  background-color: #fa4b54;
}
.c-cta__item__en {
  font-family: "Futura", sans-serif;
  font-weight: bold;
  color: #fff;
  background-color: #2b2b2b;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.3rem;
  padding: 7px 15px;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (max-width: 1599px) {
  .c-cta__item__en {
    font-size: calc(0.2448979592vw + 0.9081632653rem );
    padding: calc(0.1632653061vw + 4.387755102px ) calc(0.5714285714vw + 5.8571428571px );
  }
}
.c-cta__item__textarea .title {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1599px) {
  .c-cta__item__textarea .title {
    font-size: calc(1.306122449vw + 1.1102040816rem );
    margin-bottom: calc(0.2448979592vw + 6.0816326531px );
  }
}
@media only screen and (max-width: 767px) {
  .c-cta__item__textarea .title {
    font-size: calc(0.5714285714vw + 2.2857142857rem );
  }
}
.c-cta__item__textarea p {
  line-height: 1.56;
}
.c-cta__item__img {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.-request .c-cta__item__img {
  position: absolute;
  top: -15px;
  right: 45px;
  width: 200px;
}
@media only screen and (max-width: 1599px) {
  .-request .c-cta__item__img {
    width: calc(9.7959183673vw + 43.2653061224px );
    right: calc(7.8125vw + -79.921875px );
    top: calc(-0.4081632653vw + -8.4693877551px );
  }
}
@media only screen and (max-width: 767px) {
  .-request .c-cta__item__img {
    width: calc(6.8571428571vw + 90.2857142857px );
    right: calc(2.0408163265vw + 12.3469387755px );
  }
}
@media only screen and (max-width: 1025px) {
  .-line .c-cta__item__img .qr {
    display: none;
  }
}
.c-cta__item__img i {
  font-size: 8.3rem;
  color: #fff;
}
@media only screen and (max-width: 1599px) {
  .c-cta__item__img i {
    font-size: calc(1.2244897959vw + 6.3408163265rem );
  }
}

.c-post_opencampus__box {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  position: relative;
  border: 1px solid #eee;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__box {
    margin-bottom: 15px;
  }
}
.c-post_opencampus__box a {
  display: block;
  position: relative;
  text-decoration: none;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__box a {
    width: 100%;
    display: flex;
  }
}
.c-post_opencampus__box a.is-hover .thumb::after {
  opacity: 0.8;
}
.c-post_opencampus__box a.is-hover .date {
  animation: bound 0.5s linear infinite normal none running;
}
.c-post_opencampus__thumb {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__thumb {
    width: 52%;
  }
}
.c-post_opencampus__thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 1;
  background-image: linear-gradient(-45deg, #000 25%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.9) 50%, #000 50%, #000 75%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9));
  background-size: 5px 5px;
}
.c-post_opencampus__thumb::after {
  white-space: pre;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 5;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 170%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.6rem;
  text-shadow: 5px 5px 0 #111;
}
.c-post_opencampus__thumb.-cancel::before {
  content: "";
}
.c-post_opencampus__thumb.-cancel::after {
  content: "こちらのイベントは\a中止となりました。";
}
.c-post_opencampus__thumb.-delay::before {
  content: "";
}
.c-post_opencampus__thumb.-delay::after {
  content: "こちらのイベントは\a延期となりました。";
}
.c-post_opencampus__thumb img {
  width: 100%;
}
.c-post_opencampus__cat {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__cat {
    width: 13vw;
    right: 5px;
    top: 8px;
    top: 0;
    right: 48%;
  }
}
.c-post_opencampus__cat.-briefing {
  color: #fff;
  transform: rotate(45deg);
  font-size: 1.8rem;
  font-weight: bold;
  padding: 30px 42px 5px;
  overflow: hidden;
  top: 10px;
  right: -40px;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__cat.-briefing {
    width: auto;
    font-size: 1rem;
    letter-spacing: 0;
    padding: 10px 55px 0;
    top: 3px;
    right: -50px;
  }
}
.c-post_opencampus__cat.-briefing .bg {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: 100px;
  transform: rotate(-45deg);
  z-index: -1;
  background: linear-gradient(-45deg, #97e7fc, #32d1fc);
}
.c-post_opencampus__date {
  display: none;
  position: absolute;
  z-index: 5;
  background: #d6000f;
  color: #fff;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  border-radius: 50%;
  padding-top: 25px;
  font-family: "Raleway", sans-serif;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__date {
    width: 16.5vw;
    height: 16.5vw;
    letter-spacing: 0.08rem;
    padding-top: 3vw;
    font-size: 4.6vw;
    top: -5px;
    left: -5px;
  }
}
.c-post_opencampus__date.-anytime {
  font-size: 2.4rem;
  line-height: 130%;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__date.-anytime {
    font-size: 3.6vw;
    padding-top: 4vw;
  }
}
.c-post_opencampus__date .week {
  display: block;
  font-weight: 400;
  font-size: 1.6rem;
  margin-top: 5px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__date .week {
    font-size: 2.5vw;
    margin-top: -5px;
  }
}
.c-post_opencampus__date .more {
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__date .more {
    font-size: 2.5vw;
  }
}
.c-post_opencampus__text {
  color: #222;
  padding: 20px 15px;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__text {
    width: 48%;
    padding: 10px;
  }
}
.c-post_opencampus__text .label {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background-color: #d6000f;
  padding: 5px 15px;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__text .label {
    font-size: 4vw;
    margin-bottom: 10px;
  }
}
.c-post_opencampus__text .title {
  font-size: 1.4rem;
  line-height: 150%;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__text .title {
    margin-bottom: 0;
    letter-spacing: 0.1rem;
  }
}
.c-post_opencampus__text .dates {
  border-top: 1px solid #fff;
  padding-top: 10px;
  letter-spacing: 0.08rem;
  color: #e25a72;
  font-weight: normal;
  font-size: 1.3rem;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__text .dates {
    letter-spacing: 0.05rem;
    line-height: 160%;
    margin-top: 5px;
    padding-top: 5px;
  }
}
.c-post_opencampus__text .dates span::after {
  content: ",";
}
.c-post_opencampus__text .dates span:last-child::after {
  content: none;
}
.c-post_opencampus__text .excerpt {
  font-size: 1.4rem;
  line-height: 180%;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__text .excerpt {
    display: none;
  }
}
.c-post_opencampus__btn {
  padding: 15px 10px;
  background-color: #fff;
  display: flex;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 767px) {
  .c-post_opencampus__btn {
    display: none;
  }
}
.c-post_opencampus__btn a {
  display: block;
  flex-grow: 1;
  border: 1px solid #d6000f;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  color: #d6000f;
  text-align: center;
  padding: 9px 0;
  margin: 0 5px;
  transition: all 0.1s ease;
}
.c-post_opencampus__btn a i {
  display: inline-block;
  color: #fff;
  background: #d6000f;
  border-radius: 50%;
  font-weight: normal;
  width: 20px;
  line-height: 20px;
  height: 20px;
  font-size: 1.3rem;
  margin-right: 10px;
  padding: 1px 0 0 2px;
  box-sizing: border-box;
  transition: all 0.1s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-post_opencampus__btn a:last-child {
  color: #fff;
  border: none;
  background: #d6000f;
}
.c-post_opencampus__btn a:last-child i {
  color: #d6000f;
  background: #fff;
}
.c-post_opencampus__btn a:hover {
  color: #fff;
  background: #222;
  border-color: #222;
}
.c-post_opencampus__btn a:hover::before {
  color: #222;
  background: #fff;
}

.js-anim_elm.-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.js-anim_elm.is-act.-fade {
  opacity: 1;
  transform: translateY(0);
}

.c-slider_arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fa4b54;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30%;
  z-index: 10;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .c-slider_arrow {
    width: 40px;
    height: 40px;
  }
}
.c-slider_arrow i {
  line-height: 1;
}
.c-slider_arrow.-next {
  right: 10px;
}
.c-slider_arrow.-prev {
  left: 0px;
}
.c-slider_arrow.-prev i {
  display: inline-block;
  transform: scaleX(-1);
}
.c-slider_arrow.swiper-button-disabled {
  opacity: 0;
}
.c-slider_arrow.-blue {
  background-color: #72afff;
}
.c-slider_arrow.-pink {
  background-color: #ff8989;
}
.c-slider_arrow.-green {
  background-color: #64e2c3;
}

.c-sns_list {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.c-sns_list.-left {
  justify-content: flex-start;
}
.c-sns_list dt {
  font-family: "Futura", sans-serif;
  font-weight: 500;
  color: #ccc;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-right: 30px;
}
@media only screen and (max-width: 1599px) {
  .c-sns_list dt {
    margin-right: calc(0.8163265306vw + 16.9387755102px );
  }
}
.c-sns_list .ico {
  font-size: 2rem;
}
.c-sns_list .ico + .ico {
  margin-left: 20px;
}
@media only screen and (max-width: 1599px) {
  .c-sns_list .ico + .ico {
    margin-left: calc(0.8163265306vw + 6.9387755102px );
  }
}
.c-sns_list .ico.-twitter {
  color: #1e9bef;
}
.c-sns_list .ico.-youtube {
  color: #ff0000;
}
.c-sns_list .ico a {
  transition: all 0.3s ease;
}
.is-mouse .c-sns_list .ico a:hover {
  opacity: 0.7;
}

.c-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.24);
  z-index: 1110;
  width: 100%;
  height: 100%;
  display: none;
}

.c-modal {
  display: none;
  position: fixed;
  top: 70px;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%) !important;
  z-index: 1111;
  width: 76%;
  overflow: scroll;
  background-color: #fff;
}
.c-modal.-darkbg {
  background-color: rgba(17, 35, 56, 0.9);
  padding-left: min(5.7142857143vw + -1.4285714286px, 90px);
  padding-right: min(5.7142857143vw + -1.4285714286px, 90px);
  padding-top: min(1.6326530612vw + 43.8775510204px, 70px);
  padding-bottom: min(1.6326530612vw + 43.8775510204px, 70px);
  border-radius: min(0.4081632653vw + 3.4693877551px, 10px);
}
@media only screen and (max-width: 767px) {
  .c-modal {
    width: 95%;
    bottom: calc(4.4897959184vw + 38.1632653061px );
  }
}
.c-modal__inner {
  background-color: #fff;
  padding: 60px 90px 105px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .c-modal__inner {
    padding: calc(2.4489795918vw + 20.8163265306px ) calc(5.7142857143vw + -1.4285714286px ) calc(3.6734693878vw + 46.2244897959px );
  }
}
.c-modal__inner::after {
  content: "";
  display: block;
  width: 84%;
  height: 252px;
  background-color: #ededed;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .c-modal__inner::after {
    height: calc(9.1428571429vw + 105.7142857143px );
  }
}
.c-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__head {
    margin-bottom: calc(2.0408163265vw + 17.3469387755px );
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.c-modal__head__textarea .en {
  font-size: 1.5rem;
  font-family: "Futura", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1599px) {
  .c-modal__head__textarea .en {
    font-size: calc(0.1632653061vw + 1.2387755102rem );
  }
}
.c-modal__head__textarea .en::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: currentColor;
  display: block;
  margin-top: 10px;
}
.c-modal__head__textarea .num {
  font-family: "Futura", sans-serif;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-weight: bold;
  color: #64e2c3;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .c-modal__head__textarea .num {
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
.c-modal__head__textarea .num small {
  font-size: 2rem;
  display: inline-block;
  margin-right: 5px;
}
.c-modal__head__textarea .num .stroke {
  color: #64e2c3;
  font-size: 8.1rem;
  display: flex;
  align-items: center;
  line-height: 1;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .c-modal__head__textarea .num .stroke {
    font-size: calc(1.6326530612vw + 3.387755102rem );
  }
}
.c-modal__head__textarea .num .stroke::before {
  content: "#";
  display: block;
  font-size: 5.4rem;
  -webkit-text-stroke: 1px #64e2c3;
  color: transparent;
  display: inline-block;
  margin-right: 5px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__head__textarea .num .stroke::before {
    font-size: calc(2.4489795918vw + 1.4816326531rem );
  }
}
.c-modal__head__textarea .catch {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.59;
}
@media only screen and (max-width: 1599px) {
  .c-modal__head__textarea .catch {
    font-size: calc(1.4693877551vw + 1.6489795918rem );
  }
}
@media only screen and (max-width: 1023px) {
  .c-modal__head__textarea .catch {
    margin-bottom: calc(0.8163265306vw + 16.9387755102px );
  }
}
.c-modal__head__kv {
  min-width: 585px;
  max-width: 585px;
  margin-left: auto;
}
@media only screen and (max-width: 1599px) {
  .c-modal__head__kv {
    min-width: calc(48.0769230769vw + -183.75px );
    max-width: calc(48.0769230769vw + -183.75px );
  }
}
@media only screen and (max-width: 1023px) {
  .c-modal__head__kv {
    min-width: calc(9.2449922958vw + 185.4237288136px );
    max-width: calc(9.2449922958vw + 185.4237288136px );
  }
}
.c-modal__contributor {
  border: 1px dotted #222;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__contributor {
    padding: calc(1.2244897959vw + 10.4081632653px );
    margin-bottom: calc(2.4489795918vw + 10.8163265306px );
  }
}
@media only screen and (max-width: 1023px) {
  .c-modal__contributor {
    flex-direction: column;
    align-items: center;
  }
}
.c-modal__contributor .en {
  font-family: "Futura", sans-serif;
  color: #29c19c;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  font-weight: bold;
  margin-right: 30px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__contributor .en {
    margin-right: calc(2.4489795918vw + -9.1836734694px );
  }
}
@media only screen and (max-width: 1023px) {
  .c-modal__contributor .en {
    writing-mode: horizontal-tb;
    margin-right: 0;
  }
}
.c-modal__contributor .pic {
  min-width: 150px;
  max-width: 150px;
  margin-right: 40px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__contributor .pic {
    min-width: calc(4.0816326531vw + 84.693877551px );
    max-width: calc(4.0816326531vw + 84.693877551px );
    margin-right: calc(3.2653061224vw + -12.2448979592px );
  }
}
@media only screen and (max-width: 1023px) {
  .c-modal__contributor .pic {
    min-width: 150px;
    max-width: 150px;
    margin: 0 auto 20px;
  }
}
.c-modal__contributor .textarea .head {
  margin-bottom: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 1599px) {
  .c-modal__contributor .textarea .head {
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
.c-modal__contributor .textarea .head .catch {
  font-size: 1.3rem;
  margin-bottom: 10px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .c-modal__contributor .textarea .head .catch {
    line-height: 1.4;
  }
}
.c-modal__contributor .textarea .head .name {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1599px) {
  .c-modal__contributor .textarea .head .name {
    font-size: calc(0.3265306122vw + 1.8775510204rem );
  }
}
.c-modal__contributor .textarea .head .name small {
  font-size: 1.6rem;
}
@media only screen and (max-width: 1599px) {
  .c-modal__contributor .textarea .head .name small {
    font-size: calc(0.2448979592vw + 1.2081632653rem );
  }
}
.c-modal__contributor .textarea .works {
  background-color: #ededed;
  padding: 30px 40px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__contributor .textarea .works {
    padding: calc(1.2244897959vw + 10.4081632653px ) calc(2.0408163265vw + 7.3469387755px );
  }
}
.c-modal__contributor .textarea .works .title {
  color: #29c19c;
  font-weight: bold;
  font-size: 2.4rem;
}
@media only screen and (max-width: 1599px) {
  .c-modal__contributor .textarea .works .title {
    font-size: calc(0.3265306122vw + 1.8775510204rem );
  }
}
@media only screen and (max-width: 1023px) {
  .c-modal__contributor .textarea .works .title {
    text-align: center;
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
.c-modal__contributor .textarea .works .book {
  min-width: 154px;
  max-width: 154px;
  margin-right: 25px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__contributor .textarea .works .book {
    min-width: calc(4.4081632653vw + 83.4693877551px );
    max-width: calc(4.4081632653vw + 83.4693877551px );
    margin-right: calc(2.0408163265vw + -7.6530612245px );
  }
}
@media only screen and (max-width: 1023px) {
  .c-modal__contributor .textarea .works .book {
    margin-right: 0;
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
.c-modal__section {
  display: flex;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .c-modal__section {
    flex-direction: column;
  }
}
.c-modal__section p + p {
  margin-top: 1em;
}
.c-modal__section.-float {
  display: block;
  overflow: hidden;
}
.c-modal__section.-float .c-modal__section__img {
  float: right;
}
@media only screen and (max-width: 1023px) {
  .c-modal__section.-float .c-modal__section__img {
    float: none;
  }
}
.c-modal__section + .c-modal__section {
  margin-top: 50px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__section + .c-modal__section {
    margin-top: calc(2.4489795918vw + 10.8163265306px );
  }
}
.c-modal__section__img {
  min-width: 520px;
  min-width: 520px;
  padding-left: 50px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__section__img {
    min-width: calc(26.1224489796vw + 102.0408163265px );
    max-width: calc(26.1224489796vw + 102.0408163265px );
    padding-left: calc(4.0816326531vw + -15.306122449px );
  }
}
@media only screen and (max-width: 1023px) {
  .c-modal__section__img {
    padding-right: 0;
    padding-left: 0;
    margin: calc(1.6326530612vw + 13.8775510204px ) auto;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__section__img {
    min-width: 100%;
    max-width: 100%;
  }
}
.c-modal__section__img.-vertical {
  min-width: 390px;
  max-width: 390px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__section__img.-vertical {
    min-width: calc(15.5102040816vw + 141.8367346939px );
    max-width: calc(15.5102040816vw + 141.8367346939px );
  }
}
.c-modal__section__img.-left {
  padding-left: 0;
  padding-right: 50px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__section__img.-left {
    padding-right: calc(4.0816326531vw + -15.306122449px );
  }
}
@media only screen and (max-width: 1023px) {
  .c-modal__section__img.-left {
    padding-right: 0;
    padding-left: 0;
  }
}
.c-modal__section.-reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1023px) {
  .c-modal__section.-reverse {
    flex-direction: column;
  }
}
.c-modal__section.-reverse .c-modal__section__img {
  margin-left: 0;
  margin-right: 50px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__section.-reverse .c-modal__section__img {
    margin-right: calc(4.0816326531vw + -15.306122449px );
  }
}
@media only screen and (max-width: 1023px) {
  .c-modal__section.-reverse .c-modal__section__img {
    margin-right: auto;
    margin-left: auto;
  }
}
.c-modal__section.-reverse.-float {
  display: block;
}
.c-modal__section.-reverse.-float .c-modal__section__img {
  float: left;
}
@media only screen and (max-width: 1023px) {
  .c-modal__section.-reverse.-float .c-modal__section__img {
    float: none;
  }
}
.c-modal__close {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #ffe836;
  position: fixed;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Futura", sans-serif;
  text-transform: uppercase;
  z-index: 1112;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.2em;
  padding-top: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .c-modal__close {
    width: calc(2.4489795918vw + 70.8163265306px );
    height: calc(2.4489795918vw + 70.8163265306px );
    bottom: calc(3.2653061224vw + 2.7551020408px );
    padding-top: calc(0.8163265306vw + 0.193877551rem );
    font-size: calc(0.1632653061vw + 1.2387755102rem );
  }
}
.is-mouse .c-modal__close:hover {
  background-color: #29c19c;
}
.c-modal__close i {
  margin-top: 10px;
}
@media only screen and (max-width: 1599px) {
  .c-modal__close i {
    margin-top: calc(0.4081632653vw + 3.4693877551px );
  }
}
.c-modal__close i img,
.c-modal__close i svg {
  transform: rotate(45deg);
}

.c-flex {
  display: flex;
}
.c-flex.-a_center {
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .c-flex.-col-tab {
    flex-direction: column;
  }
}

.c-button01 {
  position: relative;
}
.c-button01 a {
  display: block;
  text-align: center;
  width: 520px;
  margin: 0 auto;
  border: 2px solid #111;
  padding: 1.4em;
  position: relative;
  font-weight: bold;
  font-size: 1.8rem;
  z-index: 1;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .c-button01 a {
    font-size: calc(0.3265306122vw + 1.2775510204rem );
  }
}
@media only screen and (max-width: 767px) {
  .c-button01 a {
    width: 100%;
  }
}
.c-button01 a::after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #64e2c3;
  position: absolute;
  z-index: -1;
  transition: all 0.4s ease;
}
.c-button01 a i {
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media only screen and (max-width: 1599px) {
  .c-button01 a i {
    right: calc(0.8163265306vw + 6.9387755102px );
  }
}
.is-mouse .c-button01 a:hover {
  letter-spacing: 0.08em;
}
.is-mouse .c-button01 a:hover::after {
  width: 100%;
}
.-production .c-button01 a::after {
  background-color: #72afff;
}

.c-other-creator_card01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.c-other-creator_card01__title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 1599px) {
  .c-other-creator_card01__title {
    font-size: calc(0.4081632653vw + 1.3469387755rem );
  }
}
.c-other-creator_card01__sns {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin-top: 0.3em;
}
@media only screen and (max-width: 1599px) {
  .c-other-creator_card01__sns {
    font-size: calc(0.4081632653vw + 1.3469387755rem );
  }
}
.c-other-creator_card01__sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.is-mouse .c-other-creator_card01__sns li a:hover {
  opacity: 0.7;
}
.c-other-creator_card01__sns li a svg,
.c-other-creator_card01__sns li a img {
  height: 1em;
}
.c-other-creator_card01__sns li a.-twitter {
  color: #1e9bef;
}
.c-other-creator_card01__sns li a.-youtube {
  color: #ff0000;
}

.c-other-creator_card01_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1599px) {
  .c-other-creator_card01_list {
    gap: calc(1.6326530612vw + 13.8775510204px ) calc(1.2244897959vw + 10.4081632653px );
    margin-bottom: calc(1.6326530612vw + 13.8775510204px );
  }
}
@media only screen and (max-width: 1023px) {
  .c-other-creator_card01_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.js-aco-expand_elm {
  overflow: hidden;
  visibility: hidden;
  height: 0;
}

.js-aco-expand_trg {
  cursor: pointer;
}
.js-aco-expand_trg:before {
  content: attr(data-text);
  display: block;
}
.is-open .js-aco-expand_trg:before {
  content: "閉じる";
  display: block;
}

.c-aco01 {
  border: 1px solid #ccc;
  border-radius: 10px;
}
.c-aco01 + .c-aco01 {
  margin-top: 30px;
}
@media only screen and (max-width: 1599px) {
  .c-aco01 + .c-aco01 {
    margin-top: calc(0.8163265306vw + 16.9387755102px );
  }
}
.c-aco01__head {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  padding-right: 60px;
  font-weight: 400;
}
.c-aco01__head__img {
  width: 200px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1599px) {
  .c-aco01__head__img {
    width: calc(8.1632653061vw + 69.387755102px );
  }
}
@media only screen and (max-width: 767px) {
  .c-aco01__head__img {
    display: none;
  }
}
.c-aco01__head__img img {
  width: 100%;
  max-width: none;
}
.c-aco01__body {
  background-color: #f5f5f5;
  padding: 40px 60px;
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 1599px) {
  .c-aco01__body {
    padding: calc(1.6326530612vw + 13.8775510204px ) calc(2.4489795918vw + 20.8163265306px );
    gap: calc(1.6326530612vw + 13.8775510204px );
  }
}
@media only screen and (max-width: 767px) {
  .c-aco01__body {
    flex-direction: column;
  }
}
.c-aco01__body__img {
  width: 200px;
  flex-shrink: 0;
  display: none;
}
@media only screen and (max-width: 1599px) {
  .c-aco01__body__img {
    width: calc(8.1632653061vw + 69.387755102px );
  }
}
@media only screen and (max-width: 767px) {
  .c-aco01__body__img {
    display: block;
    width: 100%;
  }
}
.c-aco01__body__img img {
  width: 100%;
  max-width: none;
}
.c-aco01__body__textarea .head {
  display: none;
}
@media only screen and (max-width: 767px) {
  .c-aco01__body__textarea .head {
    display: block;
    margin-bottom: calc(1.2244897959vw + 10.4081632653px );
  }
}
.c-aco01__title {
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 0.3em;
}
.c-aco01__toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  background-color: #29c19c;
  border-radius: 50%;
  font-size: 6rem;
  width: 1em;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 1599px) {
  .c-aco01__toggle {
    font-size: calc(2.4489795918vw + 2.0816326531rem );
  }
}
.c-aco01__toggle::before, .c-aco01__toggle::after {
  content: "";
  width: 0.2em;
  aspect-ratio: 12/2;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.c-aco01__toggle:after {
  rotate: 90deg;
}

.js-aco_elm {
  overflow: hidden;
  visibility: none;
  height: 0;
}

.c-world_table {
  color: #112338;
  font-size: res_rem_max(12px, 15px);
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .c-world_table {
    overflow-x: auto;
    min-width: 1200px;
  }
}
.c-world_table table {
  table-layout: fixed;
  width: 100%;
  margin: 0;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .c-world_table table {
    width: auto;
  }
}
.c-world_table th,
.c-world_table td {
  text-align: center;
  width: calc(100% / 7);
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 0.625em 0.5em;
  vertical-align: middle;
}
.c-world_table th:last-child,
.c-world_table td:last-child {
  border-right: none;
}
.c-world_table th:first-child,
.c-world_table td:first-child {
  border-left: none;
  position: sticky;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .c-world_table th:first-child,
.c-world_table td:first-child {
    min-width: res_px_max(80px, 160px);
  }
  .c-world_table th:not(:first-child),
.c-world_table td:not(:first-child) {
    min-width: res_px_max(120px, 240px);
  }
}
.c-world_table.-w9 th,
.c-world_table.-w9 td {
  width: calc(100% / 9);
}
.c-world_table.-w10 th,
.c-world_table.-w10 td {
  width: calc(100% / 10);
}
.c-world_table thead th,
.c-world_table thead td {
  color: #222;
  text-align: center;
  border-top: none;
}
.c-world_table thead th:not(:first-child),
.c-world_table thead td:not(:first-child) {
  background-color: #fede71;
}
.c-world_table tbody th,
.c-world_table tbody td {
  border-bottom: none;
}
.c-world_table tbody th:first-child,
.c-world_table tbody td:first-child {
  background-color: #f7f7f2;
  color: #8697aa;
  font-size: res_rem_max(11px, 14px);
  font-weight: 500;
}
.c-world_table tbody th .number,
.c-world_table tbody td .number {
  font-family: "Futura", sans-serif;
  color: #112338;
  font-size: 1.6rem;
  margin-right: 0.125em;
  font-variant-numeric: tabular-nums;
}
.c-world_table__notice {
  line-height: 1.5;
  font-weight: 500;
  color: #8697aa;
  margin-top: 1.25em;
  font-size: res_rem_max(12px, 14px);
}

.c-container {
  width: 1180px;
  margin: 0 auto;
  padding: 0 calc(1.6326530612vw + 13.8775510204px );
}
@media only screen and (max-width: 1599px) {
  .c-container {
    width: calc(65.7142857143vw + 128.5714285714px );
  }
}
@media only screen and (max-width: 567px) {
  .c-container {
    width: 100%;
  }
}
@media only screen and (max-width: 374px) {
  .c-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-container.-wide {
  width: 1480px;
}
@media only screen and (max-width: 1599px) {
  .c-container.-wide {
    width: calc(90.2040816327vw + 36.7346938776px );
  }
}
@media only screen and (max-width: 567px) {
  .c-container.-wide {
    width: 100%;
  }
}

.c-fluid {
  padding: 0 smooth_size(20px, 40px);
}
@media only screen and (max-width: 374px) {
  .c-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-world_modal {
  position: fixed;
  z-index: 9000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  line-height: 1.8;
  opacity: 0;
  padding-left: res_px_max(20px, 40px);
  padding-right: res_px_max(20px, 40px);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media only screen and (max-width: 567px) {
  .p-world_modal {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-world_modal__container {
  margin: auto;
  max-width: 1400px;
  position: relative;
  color: #fff;
  width: 100%;
  cursor: default;
}
.-narrow .p-world_modal__container {
  max-width: 1280px;
}
@media only screen and (max-width: 567px) {
  .-narrow .p-world_modal__container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 567px) {
  .p-world_modal__container {
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-world_modal__inner {
  overscroll-behavior: contain;
  border-radius: res_px_max(5px, 10px);
  max-height: 90dvh;
  background-color: transparent;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: res_px_max(30px, 45px);
}
@media only screen and (max-width: 567px) {
  .p-world_modal__inner {
    overflow-y: auto;
    overflow-x: scroll;
    border-radius: 0;
    max-width: 100%;
    background-color: transparent;
    max-height: calc(100dvh - res_px_max(65px, 110px));
  }
}
.p-world_modal__inner .p-world_course__card__title {
  font-size: res_rem_max(20px, 30px);
}
.p-world_modal__close {
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: res_px_max(15px, 25px);
  right: res_px_max(15px, 25px);
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.p-world_modal__close .circle {
  transition: 0.25s background-color cubic-bezier(0.39, 0.575, 0.565, 1);
}
.p-world_modal__close:hover .circle {
  background-color: rgba(255, 255, 255, 0.375);
}
@media only screen and (max-width: 567px) {
  .p-world_modal__close {
    position: relative;
    top: 0;
    right: 0;
    height: res_px_max(65px, 110px);
    width: 100%;
  }
}
.p-world_modal__close .circle {
  display: block;
  width: res_px_max(45px, 60px);
  height: res_px_max(45px, 60px);
  border-radius: 9999px;
  border: 1px solid;
  position: relative;
}
.p-world_modal__close .circle::before, .p-world_modal__close .circle::after {
  content: "";
  position: absolute;
  width: 30%;
  top: 50%;
  left: 35%;
  margin-top: -1px;
  border-bottom: 2px solid;
}
.p-world_modal__close .circle::before {
  transform: rotate(45deg);
}
.p-world_modal__close .circle::after {
  transform: rotate(-45deg);
}

.u-block_center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.u-left {
  text-align: left;
}

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

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

.u-none {
  display: none;
}

.u-ib {
  display: inline-block;
}

.u-note {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.5;
}

.u-bold {
  font-weight: bold;
}

.u-link {
  transition: all 0.4s ease;
}
.is-mouse .u-link.-pink:hover {
  color: #ff8989;
}

.u-mt0 {
  margin-top: calc(0vw + 0px ) !important;
}

.u-mb0 {
  margin-bottom: calc(0vw + 0px ) !important;
}

.u-ml0 {
  margin-left: calc(0vw + 0px ) !important;
}

.u-mr0 {
  margin-right: calc(0vw + 0px ) !important;
}

.u-pt0 {
  padding-top: calc(0vw + 0px ) !important;
}

.u-pb0 {
  padding-bottom: calc(0vw + 0px ) !important;
}

.u-pl0 {
  padding-left: calc(0vw + 0px ) !important;
}

.u-pr0 {
  padding-right: calc(0vw + 0px ) !important;
}

.u-mt5 {
  margin-top: calc(0.4081632653vw + 3.4693877551px ) !important;
}

.u-mb5 {
  margin-bottom: calc(0.4081632653vw + 3.4693877551px ) !important;
}

.u-ml5 {
  margin-left: calc(0.4081632653vw + 3.4693877551px ) !important;
}

.u-mr5 {
  margin-right: calc(0.4081632653vw + 3.4693877551px ) !important;
}

.u-pt5 {
  padding-top: calc(0.4081632653vw + 3.4693877551px ) !important;
}

.u-pb5 {
  padding-bottom: calc(0.4081632653vw + 3.4693877551px ) !important;
}

.u-pl5 {
  padding-left: calc(0.4081632653vw + 3.4693877551px ) !important;
}

.u-pr5 {
  padding-right: calc(0.4081632653vw + 3.4693877551px ) !important;
}

.u-mt10 {
  margin-top: calc(0.8163265306vw + 6.9387755102px ) !important;
}

.u-mb10 {
  margin-bottom: calc(0.8163265306vw + 6.9387755102px ) !important;
}

.u-ml10 {
  margin-left: calc(0.8163265306vw + 6.9387755102px ) !important;
}

.u-mr10 {
  margin-right: calc(0.8163265306vw + 6.9387755102px ) !important;
}

.u-pt10 {
  padding-top: calc(0.8163265306vw + 6.9387755102px ) !important;
}

.u-pb10 {
  padding-bottom: calc(0.8163265306vw + 6.9387755102px ) !important;
}

.u-pl10 {
  padding-left: calc(0.8163265306vw + 6.9387755102px ) !important;
}

.u-pr10 {
  padding-right: calc(0.8163265306vw + 6.9387755102px ) !important;
}

.u-mt15 {
  margin-top: calc(1.2244897959vw + 10.4081632653px ) !important;
}

.u-mb15 {
  margin-bottom: calc(1.2244897959vw + 10.4081632653px ) !important;
}

.u-ml15 {
  margin-left: calc(1.2244897959vw + 10.4081632653px ) !important;
}

.u-mr15 {
  margin-right: calc(1.2244897959vw + 10.4081632653px ) !important;
}

.u-pt15 {
  padding-top: calc(1.2244897959vw + 10.4081632653px ) !important;
}

.u-pb15 {
  padding-bottom: calc(1.2244897959vw + 10.4081632653px ) !important;
}

.u-pl15 {
  padding-left: calc(1.2244897959vw + 10.4081632653px ) !important;
}

.u-pr15 {
  padding-right: calc(1.2244897959vw + 10.4081632653px ) !important;
}

.u-mt20 {
  margin-top: calc(1.6326530612vw + 13.8775510204px ) !important;
}

.u-mb20 {
  margin-bottom: calc(1.6326530612vw + 13.8775510204px ) !important;
}

.u-ml20 {
  margin-left: calc(1.6326530612vw + 13.8775510204px ) !important;
}

.u-mr20 {
  margin-right: calc(1.6326530612vw + 13.8775510204px ) !important;
}

.u-pt20 {
  padding-top: calc(1.6326530612vw + 13.8775510204px ) !important;
}

.u-pb20 {
  padding-bottom: calc(1.6326530612vw + 13.8775510204px ) !important;
}

.u-pl20 {
  padding-left: calc(1.6326530612vw + 13.8775510204px ) !important;
}

.u-pr20 {
  padding-right: calc(1.6326530612vw + 13.8775510204px ) !important;
}

.u-mt25 {
  margin-top: calc(2.0408163265vw + 17.3469387755px ) !important;
}

.u-mb25 {
  margin-bottom: calc(2.0408163265vw + 17.3469387755px ) !important;
}

.u-ml25 {
  margin-left: calc(2.0408163265vw + 17.3469387755px ) !important;
}

.u-mr25 {
  margin-right: calc(2.0408163265vw + 17.3469387755px ) !important;
}

.u-pt25 {
  padding-top: calc(2.0408163265vw + 17.3469387755px ) !important;
}

.u-pb25 {
  padding-bottom: calc(2.0408163265vw + 17.3469387755px ) !important;
}

.u-pl25 {
  padding-left: calc(2.0408163265vw + 17.3469387755px ) !important;
}

.u-pr25 {
  padding-right: calc(2.0408163265vw + 17.3469387755px ) !important;
}

.u-mt30 {
  margin-top: calc(2.4489795918vw + 20.8163265306px ) !important;
}

.u-mb30 {
  margin-bottom: calc(2.4489795918vw + 20.8163265306px ) !important;
}

.u-ml30 {
  margin-left: calc(2.4489795918vw + 20.8163265306px ) !important;
}

.u-mr30 {
  margin-right: calc(2.4489795918vw + 20.8163265306px ) !important;
}

.u-pt30 {
  padding-top: calc(2.4489795918vw + 20.8163265306px ) !important;
}

.u-pb30 {
  padding-bottom: calc(2.4489795918vw + 20.8163265306px ) !important;
}

.u-pl30 {
  padding-left: calc(2.4489795918vw + 20.8163265306px ) !important;
}

.u-pr30 {
  padding-right: calc(2.4489795918vw + 20.8163265306px ) !important;
}

.u-mt35 {
  margin-top: calc(2.8571428571vw + 24.2857142857px ) !important;
}

.u-mb35 {
  margin-bottom: calc(2.8571428571vw + 24.2857142857px ) !important;
}

.u-ml35 {
  margin-left: calc(2.8571428571vw + 24.2857142857px ) !important;
}

.u-mr35 {
  margin-right: calc(2.8571428571vw + 24.2857142857px ) !important;
}

.u-pt35 {
  padding-top: calc(2.8571428571vw + 24.2857142857px ) !important;
}

.u-pb35 {
  padding-bottom: calc(2.8571428571vw + 24.2857142857px ) !important;
}

.u-pl35 {
  padding-left: calc(2.8571428571vw + 24.2857142857px ) !important;
}

.u-pr35 {
  padding-right: calc(2.8571428571vw + 24.2857142857px ) !important;
}

.u-mt40 {
  margin-top: calc(3.2653061224vw + 27.7551020408px ) !important;
}

.u-mb40 {
  margin-bottom: calc(3.2653061224vw + 27.7551020408px ) !important;
}

.u-ml40 {
  margin-left: calc(3.2653061224vw + 27.7551020408px ) !important;
}

.u-mr40 {
  margin-right: calc(3.2653061224vw + 27.7551020408px ) !important;
}

.u-pt40 {
  padding-top: calc(3.2653061224vw + 27.7551020408px ) !important;
}

.u-pb40 {
  padding-bottom: calc(3.2653061224vw + 27.7551020408px ) !important;
}

.u-pl40 {
  padding-left: calc(3.2653061224vw + 27.7551020408px ) !important;
}

.u-pr40 {
  padding-right: calc(3.2653061224vw + 27.7551020408px ) !important;
}

.u-mt45 {
  margin-top: calc(3.6734693878vw + 31.2244897959px ) !important;
}

.u-mb45 {
  margin-bottom: calc(3.6734693878vw + 31.2244897959px ) !important;
}

.u-ml45 {
  margin-left: calc(3.6734693878vw + 31.2244897959px ) !important;
}

.u-mr45 {
  margin-right: calc(3.6734693878vw + 31.2244897959px ) !important;
}

.u-pt45 {
  padding-top: calc(3.6734693878vw + 31.2244897959px ) !important;
}

.u-pb45 {
  padding-bottom: calc(3.6734693878vw + 31.2244897959px ) !important;
}

.u-pl45 {
  padding-left: calc(3.6734693878vw + 31.2244897959px ) !important;
}

.u-pr45 {
  padding-right: calc(3.6734693878vw + 31.2244897959px ) !important;
}

.u-mt50 {
  margin-top: calc(4.0816326531vw + 34.693877551px ) !important;
}

.u-mb50 {
  margin-bottom: calc(4.0816326531vw + 34.693877551px ) !important;
}

.u-ml50 {
  margin-left: calc(4.0816326531vw + 34.693877551px ) !important;
}

.u-mr50 {
  margin-right: calc(4.0816326531vw + 34.693877551px ) !important;
}

.u-pt50 {
  padding-top: calc(4.0816326531vw + 34.693877551px ) !important;
}

.u-pb50 {
  padding-bottom: calc(4.0816326531vw + 34.693877551px ) !important;
}

.u-pl50 {
  padding-left: calc(4.0816326531vw + 34.693877551px ) !important;
}

.u-pr50 {
  padding-right: calc(4.0816326531vw + 34.693877551px ) !important;
}

.u-mt55 {
  margin-top: calc(4.4897959184vw + 38.1632653061px ) !important;
}

.u-mb55 {
  margin-bottom: calc(4.4897959184vw + 38.1632653061px ) !important;
}

.u-ml55 {
  margin-left: calc(4.4897959184vw + 38.1632653061px ) !important;
}

.u-mr55 {
  margin-right: calc(4.4897959184vw + 38.1632653061px ) !important;
}

.u-pt55 {
  padding-top: calc(4.4897959184vw + 38.1632653061px ) !important;
}

.u-pb55 {
  padding-bottom: calc(4.4897959184vw + 38.1632653061px ) !important;
}

.u-pl55 {
  padding-left: calc(4.4897959184vw + 38.1632653061px ) !important;
}

.u-pr55 {
  padding-right: calc(4.4897959184vw + 38.1632653061px ) !important;
}

.u-mt60 {
  margin-top: calc(4.8979591837vw + 41.6326530612px ) !important;
}

.u-mb60 {
  margin-bottom: calc(4.8979591837vw + 41.6326530612px ) !important;
}

.u-ml60 {
  margin-left: calc(4.8979591837vw + 41.6326530612px ) !important;
}

.u-mr60 {
  margin-right: calc(4.8979591837vw + 41.6326530612px ) !important;
}

.u-pt60 {
  padding-top: calc(4.8979591837vw + 41.6326530612px ) !important;
}

.u-pb60 {
  padding-bottom: calc(4.8979591837vw + 41.6326530612px ) !important;
}

.u-pl60 {
  padding-left: calc(4.8979591837vw + 41.6326530612px ) !important;
}

.u-pr60 {
  padding-right: calc(4.8979591837vw + 41.6326530612px ) !important;
}

.u-mt65 {
  margin-top: calc(5.306122449vw + 45.1020408163px ) !important;
}

.u-mb65 {
  margin-bottom: calc(5.306122449vw + 45.1020408163px ) !important;
}

.u-ml65 {
  margin-left: calc(5.306122449vw + 45.1020408163px ) !important;
}

.u-mr65 {
  margin-right: calc(5.306122449vw + 45.1020408163px ) !important;
}

.u-pt65 {
  padding-top: calc(5.306122449vw + 45.1020408163px ) !important;
}

.u-pb65 {
  padding-bottom: calc(5.306122449vw + 45.1020408163px ) !important;
}

.u-pl65 {
  padding-left: calc(5.306122449vw + 45.1020408163px ) !important;
}

.u-pr65 {
  padding-right: calc(5.306122449vw + 45.1020408163px ) !important;
}

.u-mt70 {
  margin-top: calc(5.7142857143vw + 48.5714285714px ) !important;
}

.u-mb70 {
  margin-bottom: calc(5.7142857143vw + 48.5714285714px ) !important;
}

.u-ml70 {
  margin-left: calc(5.7142857143vw + 48.5714285714px ) !important;
}

.u-mr70 {
  margin-right: calc(5.7142857143vw + 48.5714285714px ) !important;
}

.u-pt70 {
  padding-top: calc(5.7142857143vw + 48.5714285714px ) !important;
}

.u-pb70 {
  padding-bottom: calc(5.7142857143vw + 48.5714285714px ) !important;
}

.u-pl70 {
  padding-left: calc(5.7142857143vw + 48.5714285714px ) !important;
}

.u-pr70 {
  padding-right: calc(5.7142857143vw + 48.5714285714px ) !important;
}

.u-mt75 {
  margin-top: calc(6.1224489796vw + 52.0408163265px ) !important;
}

.u-mb75 {
  margin-bottom: calc(6.1224489796vw + 52.0408163265px ) !important;
}

.u-ml75 {
  margin-left: calc(6.1224489796vw + 52.0408163265px ) !important;
}

.u-mr75 {
  margin-right: calc(6.1224489796vw + 52.0408163265px ) !important;
}

.u-pt75 {
  padding-top: calc(6.1224489796vw + 52.0408163265px ) !important;
}

.u-pb75 {
  padding-bottom: calc(6.1224489796vw + 52.0408163265px ) !important;
}

.u-pl75 {
  padding-left: calc(6.1224489796vw + 52.0408163265px ) !important;
}

.u-pr75 {
  padding-right: calc(6.1224489796vw + 52.0408163265px ) !important;
}

.u-mt80 {
  margin-top: calc(6.5306122449vw + 55.5102040816px ) !important;
}

.u-mb80 {
  margin-bottom: calc(6.5306122449vw + 55.5102040816px ) !important;
}

.u-ml80 {
  margin-left: calc(6.5306122449vw + 55.5102040816px ) !important;
}

.u-mr80 {
  margin-right: calc(6.5306122449vw + 55.5102040816px ) !important;
}

.u-pt80 {
  padding-top: calc(6.5306122449vw + 55.5102040816px ) !important;
}

.u-pb80 {
  padding-bottom: calc(6.5306122449vw + 55.5102040816px ) !important;
}

.u-pl80 {
  padding-left: calc(6.5306122449vw + 55.5102040816px ) !important;
}

.u-pr80 {
  padding-right: calc(6.5306122449vw + 55.5102040816px ) !important;
}

.u-mt85 {
  margin-top: calc(6.9387755102vw + 58.9795918367px ) !important;
}

.u-mb85 {
  margin-bottom: calc(6.9387755102vw + 58.9795918367px ) !important;
}

.u-ml85 {
  margin-left: calc(6.9387755102vw + 58.9795918367px ) !important;
}

.u-mr85 {
  margin-right: calc(6.9387755102vw + 58.9795918367px ) !important;
}

.u-pt85 {
  padding-top: calc(6.9387755102vw + 58.9795918367px ) !important;
}

.u-pb85 {
  padding-bottom: calc(6.9387755102vw + 58.9795918367px ) !important;
}

.u-pl85 {
  padding-left: calc(6.9387755102vw + 58.9795918367px ) !important;
}

.u-pr85 {
  padding-right: calc(6.9387755102vw + 58.9795918367px ) !important;
}

.u-mt90 {
  margin-top: calc(7.3469387755vw + 62.4489795918px ) !important;
}

.u-mb90 {
  margin-bottom: calc(7.3469387755vw + 62.4489795918px ) !important;
}

.u-ml90 {
  margin-left: calc(7.3469387755vw + 62.4489795918px ) !important;
}

.u-mr90 {
  margin-right: calc(7.3469387755vw + 62.4489795918px ) !important;
}

.u-pt90 {
  padding-top: calc(7.3469387755vw + 62.4489795918px ) !important;
}

.u-pb90 {
  padding-bottom: calc(7.3469387755vw + 62.4489795918px ) !important;
}

.u-pl90 {
  padding-left: calc(7.3469387755vw + 62.4489795918px ) !important;
}

.u-pr90 {
  padding-right: calc(7.3469387755vw + 62.4489795918px ) !important;
}

.u-mt95 {
  margin-top: calc(7.7551020408vw + 65.9183673469px ) !important;
}

.u-mb95 {
  margin-bottom: calc(7.7551020408vw + 65.9183673469px ) !important;
}

.u-ml95 {
  margin-left: calc(7.7551020408vw + 65.9183673469px ) !important;
}

.u-mr95 {
  margin-right: calc(7.7551020408vw + 65.9183673469px ) !important;
}

.u-pt95 {
  padding-top: calc(7.7551020408vw + 65.9183673469px ) !important;
}

.u-pb95 {
  padding-bottom: calc(7.7551020408vw + 65.9183673469px ) !important;
}

.u-pl95 {
  padding-left: calc(7.7551020408vw + 65.9183673469px ) !important;
}

.u-pr95 {
  padding-right: calc(7.7551020408vw + 65.9183673469px ) !important;
}

.u-mt100 {
  margin-top: calc(8.1632653061vw + 69.387755102px ) !important;
}

.u-mb100 {
  margin-bottom: calc(8.1632653061vw + 69.387755102px ) !important;
}

.u-ml100 {
  margin-left: calc(8.1632653061vw + 69.387755102px ) !important;
}

.u-mr100 {
  margin-right: calc(8.1632653061vw + 69.387755102px ) !important;
}

.u-pt100 {
  padding-top: calc(8.1632653061vw + 69.387755102px ) !important;
}

.u-pb100 {
  padding-bottom: calc(8.1632653061vw + 69.387755102px ) !important;
}

.u-pl100 {
  padding-left: calc(8.1632653061vw + 69.387755102px ) !important;
}

.u-pr100 {
  padding-right: calc(8.1632653061vw + 69.387755102px ) !important;
}

.u-visible {
  display: block;
}
@media only screen and (max-width: 1599px) {
  .u-visible-max {
    display: none !important;
  }
}
@media only screen and (max-width: 1299px) {
  .u-visible-md {
    display: none !important;
  }
}
@media only screen and (max-width: 1023px) {
  .u-visible-tab {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-visible-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 567px) {
  .u-visible-spmin {
    display: none !important;
  }
}
@media only screen and (max-width: 374px) {
  .u-visible-min {
    display: none !important;
  }
}

.u-hidden {
  display: none;
}
.u-hidden-max {
  display: none !important;
}
@media only screen and (max-width: 1599px) {
  .u-hidden-max {
    display: block !important;
  }
  .u-hidden-max.-f {
    display: flex !important;
  }
  .u-hidden-max.-i {
    display: inline !important;
  }
  .u-hidden-max.-ib {
    display: inline-block !important;
  }
}
.u-hidden-md {
  display: none !important;
}
@media only screen and (max-width: 1299px) {
  .u-hidden-md {
    display: block !important;
  }
  .u-hidden-md.-f {
    display: flex !important;
  }
  .u-hidden-md.-i {
    display: inline !important;
  }
  .u-hidden-md.-ib {
    display: inline-block !important;
  }
}
.u-hidden-tab {
  display: none !important;
}
@media only screen and (max-width: 1023px) {
  .u-hidden-tab {
    display: block !important;
  }
  .u-hidden-tab.-f {
    display: flex !important;
  }
  .u-hidden-tab.-i {
    display: inline !important;
  }
  .u-hidden-tab.-ib {
    display: inline-block !important;
  }
}
.u-hidden-sp {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .u-hidden-sp {
    display: block !important;
  }
  .u-hidden-sp.-f {
    display: flex !important;
  }
  .u-hidden-sp.-i {
    display: inline !important;
  }
  .u-hidden-sp.-ib {
    display: inline-block !important;
  }
}
.u-hidden-spmin {
  display: none !important;
}
@media only screen and (max-width: 567px) {
  .u-hidden-spmin {
    display: block !important;
  }
  .u-hidden-spmin.-f {
    display: flex !important;
  }
  .u-hidden-spmin.-i {
    display: inline !important;
  }
  .u-hidden-spmin.-ib {
    display: inline-block !important;
  }
}
.u-hidden-min {
  display: none !important;
}
@media only screen and (max-width: 374px) {
  .u-hidden-min {
    display: block !important;
  }
  .u-hidden-min.-f {
    display: flex !important;
  }
  .u-hidden-min.-i {
    display: inline !important;
  }
  .u-hidden-min.-ib {
    display: inline-block !important;
  }
}

/* トップページ */
.p-index_kv {
  max-height: 100vh;
  background-image: url(../../img/main/kv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding-top: 89px;
}
@media only screen and (max-width: 3840px) and (min-width: 320px) and (min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5) {
  .p-index_kv {
    background-image: url(../../img/main/kv_bg@2x.jpg);
  }
}
@media only screen and (max-width: 1599px) {
  .p-index_kv {
    padding-top: calc(3.5918367347vw + 31.5306122449px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_kv {
    background-image: url(../../img/main/kv_bg_sp.jpg);
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 3840px) and (min-width: 320px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5) {
  .p-index_kv {
    background-image: url(../../img/main/kv_bg_sp@2x.jpg);
  }
}
.p-index_kv.is-act::after {
  width: 100%;
}
.p-index_kv__en {
  background-image: url(../../img/main/kv_en.png);
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: auto 100%;
  width: 100vw;
  height: 73px;
  position: absolute;
  top: 120px;
  left: 0;
  z-index: 2;
}
@media only screen and (max-width: 3840px) and (min-width: 320px) and (min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5) {
  .p-index_kv__en {
    background-image: url(../../img/main/kv_en@2x.png);
  }
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__en {
    top: calc(4.8979591837vw + 41.6326530612px );
    height: calc(3.0204081633vw + 24.6734693878px );
  }
}
.is-top .p-index_kv__en {
  animation: loop_en 40s linear infinite;
}
.p-index_kv__request {
  position: absolute;
  right: 85px;
  bottom: 56px;
  z-index: 11;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request {
    right: calc(0.8163265306vw + 71.9387755102px );
    bottom: calc(1.306122449vw + 35.1020408163px );
  }
}
.p-index_kv__request a {
  display: block;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.is-mouse .p-index_kv__request a:hover {
  transform: translateY(-5px);
}
.is-mouse .p-index_kv__request a:hover .main .get {
  background-color: #fff;
  color: #fa4b54;
}
.p-index_kv__request a .illust {
  position: absolute;
  right: -60px;
  top: -29px;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request a .illust {
    right: calc(0.8163265306vw + -73.0612244898px );
    top: calc(1.7142857143vw + -56.4285714286px );
  }
}
.p-index_kv__request a .illust img {
  height: 267px;
  width: auto;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request a .illust img {
    height: calc(0.9795918367vw + 251.3265306122px );
  }
}
.p-index_kv__request a .main {
  position: relative;
}
.p-index_kv__request a .main .fukidashi {
  position: absolute;
  top: -20px;
  left: 25px;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request a .main .fukidashi {
    width: calc(2.3673469388vw + 71.1224489796px );
    left: calc(0.8163265306vw + 11.9387755102px );
  }
}
.p-index_kv__request a .main .btn {
  width: 150px;
  height: 150px;
  background-color: #fa4b54;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
  border-radius: 50%;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request a .main .btn {
    width: calc(3.2653061224vw + 97.7551020408px );
    height: calc(3.2653061224vw + 97.7551020408px );
    border-width: calc(0.1632653061vw + 2.387755102px );
  }
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request a .main .btn img {
    width: calc(1.306122449vw + 43.1020408163px );
  }
}
.p-index_kv__request a .main .btn::before {
  content: "";
  display: block;
  width: 175px;
  height: 175px;
  border: 3px dotted #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request a .main .btn::before {
    width: calc(4.4897959184vw + 103.1632653061px );
    height: calc(4.4897959184vw + 103.1632653061px );
    border-width: calc(0.0816326531vw + 1.693877551px );
  }
}
.p-index_kv__request a .main .get {
  background-color: #333;
  color: #fff;
  font-family: "Futura", sans-serif;
  font-weight: bold;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin: -25px auto 0;
  position: relative;
  z-index: 2;
  padding-top: 5px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request a .main .get {
    width: calc(1.306122449vw + 35.1020408163px );
    height: calc(1.306122449vw + 35.1020408163px );
    margin-top: calc(-0.8163265306vw + -11.9387755102px );
  }
}
.p-index_kv__request a .main .get i {
  margin-top: 5px;
  display: block;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request a .main .get i {
    margin-top: calc(0.2448979592vw + 1.0816326531px );
  }
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request.-artist a .illust {
    right: calc(-0.4081632653vw + -53.4693877551px );
  }
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request.-vocalop a .illust {
    right: calc(1.6326530612vw + -86.1224489796px );
  }
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__request.-vtuber a .illust {
    right: calc(1.6326530612vw + -86.1224489796px );
  }
}
.p-index_kv__request.-utaite a .illust {
  transform: rotate(-5deg);
}
.p-index_kv__main {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-index_kv__main {
    flex-wrap: wrap;
    margin-left: calc(-6.1224489796vw + -22.0408163265px );
    margin-right: calc(-6.1224489796vw + -22.0408163265px );
  }
}
.p-index_kv__main__item {
  margin-left: -120px;
  margin-right: -120px;
  height: 698px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}
.p-index_kv__main__item:nth-child(1) {
  transition-delay: 80ms;
}
.p-index_kv__main__item:nth-child(2) {
  transition-delay: 160ms;
}
.p-index_kv__main__item:nth-child(3) {
  transition-delay: 240ms;
}
.p-index_kv__main__item:nth-child(4) {
  transition-delay: 320ms;
}
.p-index_kv__main__item:nth-child(5) {
  transition-delay: 400ms;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__main__item {
    margin-left: calc(-6.1224489796vw + -22.0408163265px );
    margin-right: calc(-6.1224489796vw + -22.0408163265px );
    height: calc(35.5918367347vw + 128.5306122449px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_kv__main__item:last-child {
    margin-right: 0;
  }
}
.p-index_kv__main__item img {
  height: 100%;
  width: auto;
}
.p-index_kv__main.is-act .p-index_kv__main__item {
  opacity: 1;
  transform: translateX(0px);
}
.p-index_kv__illust {
  height: 53.1vw;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-index_kv__illust {
    height: 148vw;
  }
}
.p-index_kv__illust::before {
  content: "";
  display: block;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fede71;
  mix-blend-mode: multiply;
  z-index: 90;
}
.p-index_kv__illust .js-kv_parallax {
  transition: transform 1s linear 0s;
}
.p-index_kv__illust .js-kv_parallax.-delay01 {
  transition-delay: 0.03s;
}
.p-index_kv__illust .js-kv_parallax.-delay02 {
  transition-delay: 0.01s;
}
.p-index_kv__illust .js-kv_parallax img {
  width: 100%;
}
.p-index_kv__illust .item {
  position: absolute;
  z-index: 10;
}
.p-index_kv__illust .item img {
  width: 100%;
}
.p-index_kv__illust .item.code_back {
  left: calc(-3 / 1600 * 100vw);
  top: calc(0 / 1600 * 100vw);
  width: 78.3vw;
}
@media only screen and (max-width: 767px) {
  .p-index_kv__illust .item.code_back {
    width: 167vw;
    left: calc(-183 / 750 * 100vw);
    top: calc(220 / 750 * 100vw);
  }
}
.p-index_kv__illust .item.code_back .in {
  animation: kv_code_anim_z 8s ease-in-out infinite alternate;
}
.p-index_kv__illust .item.code_back .in > span {
  display: block;
  animation: kv_code_anim_x 6s ease-in-out infinite alternate;
}
.p-index_kv__illust .item.code_back .in > span > img {
  display: block;
  animation: kv_code_anim_y 10s ease-in-out infinite alternate;
}
.p-index_kv__illust .item.star_back {
  left: calc(324 / 1600 * 100vw);
  top: calc(-1 / 1600 * 100vw);
  width: 34.7vw;
}
@media only screen and (max-width: 767px) {
  .p-index_kv__illust .item.star_back {
    width: 74.1vw;
    left: calc(144 / 750 * 100vw);
    top: calc(249 / 750 * 100vw);
  }
}
.p-index_kv__illust .item.boy_desk {
  left: calc(547 / 1600 * 100vw);
  top: calc(-37 / 1600 * 100vw);
  width: 59.3vw;
}
@media only screen and (max-width: 767px) {
  .p-index_kv__illust .item.boy_desk {
    width: 126vw;
    left: calc(327 / 750 * 100vw);
    top: calc(235 / 750 * 100vw);
  }
}
.p-index_kv__illust .item.boy {
  left: calc(518 / 1600 * 100vw);
  top: calc(23 / 1600 * 100vw);
  width: 53vw;
}
@media only screen and (max-width: 767px) {
  .p-index_kv__illust .item.boy {
    width: 113vw;
    left: calc(298 / 750 * 100vw);
    top: calc(295 / 750 * 100vw);
  }
}
.p-index_kv__illust .item.girl {
  left: calc(123 / 1600 * 100vw);
  top: calc(172 / 1600 * 100vw);
  width: 44.2vw;
}
@media only screen and (max-width: 767px) {
  .p-index_kv__illust .item.girl {
    left: calc(-77 / 750 * 100vw);
    top: calc(484 / 750 * 100vw);
    width: 94.4vw;
  }
}
.p-index_kv__illust .item.girl_desk {
  left: calc(-20 / 1600 * 100vw);
  top: calc(519 / 1600 * 100vw);
  width: 35vw;
}
@media only screen and (max-width: 767px) {
  .p-index_kv__illust .item.girl_desk {
    width: 60.6vw;
    left: calc(-201 / 750 * 100vw);
    top: calc(851 / 750 * 100vw);
  }
}
.p-index_kv__illust .item.star_front {
  left: calc(412 / 1600 * 100vw);
  top: calc(3 / 1600 * 100vw);
  width: 71.7vw;
}
@media only screen and (max-width: 767px) {
  .p-index_kv__illust .item.star_front {
    width: 59.2vw;
    left: calc(73 / 750 * 100vw);
    top: calc(125 / 750 * 100vw);
    z-index: 11;
  }
}
.p-index_kv__illust .item.code_front {
  left: calc(369 / 1600 * 100vw);
  top: calc(499 / 1600 * 100vw);
  width: 76.9vw;
}
@media only screen and (max-width: 767px) {
  .p-index_kv__illust .item.code_front {
    width: 164vw;
    left: calc(189 / 750 * 100vw);
    top: calc(749 / 750 * 100vw);
  }
}
.p-index_kv__illust .item.code_front .in {
  animation: kv_code_anim_z 9s ease-in-out infinite alternate;
}
.p-index_kv__illust .item.code_front .in > span {
  display: block;
  animation: kv_code_anim_x 5.5s ease-in-out infinite alternate;
}
.p-index_kv__illust .item.code_front .in > span > img {
  display: block;
  animation: kv_code_anim_y 9s ease-in-out infinite alternate;
}
.p-index_kv__illust .item.mic {
  left: calc(1192 / 1600 * 100vw);
  top: calc(221 / 1600 * 100vw);
  width: 28.3vw;
}
@media only screen and (max-width: 767px) {
  .p-index_kv__illust .item.mic {
    width: 60.4vw;
    left: calc(1012 / 750 * 100vw);
    top: calc(471 / 750 * 100vw);
  }
}
.p-index_kv__copy {
  position: absolute;
  top: 33.1vw;
  right: 17.9vw;
  z-index: 10;
  width: 35.3vw;
}
@media only screen and (max-width: 1023px) {
  .p-index_kv__copy {
    top: 41vw;
    right: 23vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_kv__copy {
    width: 76vw;
    top: 10vw;
    right: auto;
    left: auto;
  }
}

.p-index_about {
  padding-top: 185px;
  padding-bottom: 142px;
  position: relative;
  z-index: 1;
  pointer-events: none;
  background-color: #ededed;
}
@media only screen and (max-width: 1599px) {
  .p-index_about {
    padding-top: calc(8.1632653061vw + 54.387755102px );
    padding-bottom: calc(7.5102040816vw + 21.8367346939px );
  }
}
.p-index_about__en {
  font-size: 20rem;
  letter-spacing: 0.1em;
  position: absolute;
  right: -25px;
  top: 40px;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  line-height: 1;
  font-family: "Futura", sans-serif;
  font-weight: bold;
}
@media only screen and (max-width: 1599px) {
  .p-index_about__en {
    font-size: calc(8.1632653061vw + 6.9387755102rem );
    top: calc(1.6326530612vw + 13.8775510204px );
    right: calc(-2.0408163265vw + 7.6530612245px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_about__en {
    display: none;
  }
}
.js-anim_elm .p-index_about__en {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.8s ease;
}
.is-act .p-index_about__en {
  opacity: 1;
  transform: translateX(0px);
}
.p-index_about__row {
  position: relative;
  display: flex;
  gap: 70px;
}
@media only screen and (max-width: 1023px) {
  .p-index_about__row {
    flex-direction: column;
  }
}
.p-index_about__catch {
  font-size: 6rem;
}
@media only screen and (max-width: 1599px) {
  .p-index_about__catch {
    font-size: calc(2.4489795918vw + 2.0816326531rem );
  }
}
.p-index_about__catch img,
.p-index_about__catch svg {
  width: auto;
  height: 3.666em;
}
.p-index_about__catch.js-anim_elm {
  opacity: 0;
  filter: blur(10px);
  transition: all 0.4s ease;
}
.p-index_about__catch.js-anim_elm.is-act {
  opacity: 1;
  filter: blur(0);
}
@media only screen and (max-width: 767px) {
  .p-index_about__text {
    position: relative;
    z-index: 2;
  }
}
.p-index_about__text p {
  font-size: 2rem;
  line-height: 2.5;
  font-weight: bold;
}
@media only screen and (max-width: 1599px) {
  .p-index_about__text p {
    font-size: calc(0.4897959184vw + 1.2163265306rem );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_about__text p {
    line-height: 2;
  }
}
.p-index_about .c-dot {
  width: 152px;
  height: 131px;
  position: absolute;
  left: 115px;
  bottom: 267px;
}
@media only screen and (max-width: 1599px) {
  .p-index_about .c-dot {
    width: calc(6.2040816327vw + 52.7346938776px );
    height: calc(5.306122449vw + 46.1020408163px );
    left: calc(4.6530612245vw + 40.5510204082px );
    bottom: calc(10.9387755102vw + 91.9795918367px );
  }
}
.p-index_about .c-wave {
  width: 620px;
  position: absolute;
  top: -100px;
  left: -50px;
  z-index: -1;
  opacity: 0.38;
}
@media only screen and (max-width: 1599px) {
  .p-index_about .c-wave {
    width: calc(25.306122449vw + 215.1020408163px );
    top: calc(-1.6326530612vw + -73.8775510204px );
  }
}

.p-index_new-course {
  background-color: #fff;
  position: relative;
  z-index: 5;
}
.p-index_new-course__inner {
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-index_new-course__inner {
    padding-top: calc(2.4489795918vw + 20.8163265306px );
    padding-bottom: calc(4.0816326531vw + 34.693877551px );
  }
}
.p-index_new-course__fukidashi {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 1599px) {
  .p-index_new-course__fukidashi {
    font-size: calc(1.2244897959vw + 1.0408163265rem );
  }
}
.p-index_new-course__fukidashi span {
  background-color: #dcf84c;
  border-radius: 9999px;
  width: 5.6em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.p-index_new-course__fukidashi span:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.433333em 0.533333em 0.433333em;
  border-color: transparent transparent #dcf84c transparent;
  rotate: 180deg;
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  translate: -50% 0;
}
.p-index_new-course__copy {
  font-size: 4.6rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 1599px) {
  .p-index_new-course__copy {
    font-size: calc(1.8775510204vw + 1.5959183673rem );
  }
}
.p-index_new-course__heading {
  font-size: 7rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0.8em;
  -webkit-text-stroke: 1px #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1em;
  color: transparent;
  text-align: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1599px) {
  .p-index_new-course__heading {
    font-size: calc(3.7551020408vw + 0.9918367347rem );
  }
}
.p-index_new-course__heading strong {
  font-size: 0.885714em;
  display: inline-block;
  font-weight: 700;
  -webkit-text-stroke: initial;
  color: #fff;
  background-color: #111;
  padding: 0 0.2em 0.1em;
  margin-bottom: -0.1em;
}
.p-index_new-course .c-text01 {
  font-weight: 700;
  max-width: 865px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.p-index_new-course .obj {
  position: absolute;
}
.p-index_new-course .obj.-star01 {
  top: -80px;
  right: -70px;
  width: 128px;
  z-index: 10;
}
@media only screen and (max-width: 1599px) {
  .p-index_new-course .obj.-star01 {
    top: calc(-3.2653061224vw + -27.7551020408px );
    right: calc(-2.8571428571vw + -24.2857142857px );
    width: calc(5.2244897959vw + 44.4081632653px );
  }
}
.p-index_new-course .obj.-star02 {
  bottom: -50px;
  left: -90px;
  width: 106px;
  z-index: 10;
}
@media only screen and (max-width: 1599px) {
  .p-index_new-course .obj.-star02 {
    bottom: calc(-2.0408163265vw + -17.3469387755px );
    left: calc(-3.6734693878vw + -31.2244897959px );
    width: calc(4.3265306122vw + 36.7755102041px );
  }
}
.p-index_new-course .obj.-line01 {
  top: 30px;
  right: -250px;
  width: 414px;
}
@media only screen and (max-width: 1599px) {
  .p-index_new-course .obj.-line01 {
    top: calc(1.2244897959vw + 10.4081632653px );
    right: calc(-10.2040816327vw + -86.7346938776px );
    width: calc(16.8979591837vw + 143.6326530612px );
  }
}
.p-index_new-course .obj.-line02 {
  bottom: 50px;
  left: -250px;
  width: 414px;
}
@media only screen and (max-width: 1599px) {
  .p-index_new-course .obj.-line02 {
    bottom: calc(2.0408163265vw + 17.3469387755px );
    left: calc(-10.2040816327vw + -86.7346938776px );
    width: calc(16.8979591837vw + 143.6326530612px );
  }
}

.p-index_artist {
  padding: 70px 0;
  background-color: #fff;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist {
    padding: calc(2.4489795918vw + 30.8163265306px ) 0;
  }
}
.p-index_artist__anchor {
  display: flex;
  justify-content: center;
  max-width: 1350px;
  margin: 0 auto 54px;
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__anchor {
    flex-wrap: wrap;
    margin-bottom: calc(1.4693877551vw + 30.4897959184px );
  }
}
.p-index_artist__anchor__item {
  margin: 0 10px;
  width: 251px;
  display: flex;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__anchor__item {
    width: calc(10.2040816327vw + 76.7346938776px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__anchor__item {
    width: calc((100% - (calc(0.4081632653vw + 3.4693877551px ) * 6)) / 3);
    margin: 0 calc(0.4081632653vw + 3.4693877551px );
  }
}
.p-index_artist__anchor__item.-vocalop {
  width: 274px;
  margin-right: 0;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__anchor__item.-vocalop {
    width: calc(12.4081632653vw + 75.4693877551px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__anchor__item.-vocalop {
    width: calc((100% - (calc(0.4081632653vw + 3.4693877551px )* 6)) / 3);
    margin: 0 calc(0.4081632653vw + 3.4693877551px );
  }
}
.p-index_artist__anchor__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-index_artist__anchor__item a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 8px 0 8px;
  border-color: #111 transparent transparent transparent;
  margin-top: 15px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__anchor__item a::after {
    border-width: calc(0.4081632653vw + 4.4693877551px ) calc(0.3265306122vw + 2.7755102041px ) 0 calc(0.3265306122vw + 2.7755102041px );
    margin-top: calc(0.5714285714vw + 5.8571428571px );
  }
}
.is-mouse .p-index_artist__anchor__item a:hover .illust::before {
  opacity: 0.4;
}
.p-index_artist__anchor__item .num {
  font-family: "Futura", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  display: block;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__anchor__item .num {
    font-size: calc(0.1632653061vw + 0.9387755102rem );
  }
}
.p-index_artist__anchor__item .fukidashi {
  position: relative;
  margin-bottom: 5px;
}
.p-index_artist__anchor__item .fukidashi::after {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  transform: rotate(-45deg);
  transform-origin: right top;
  position: absolute;
  bottom: 0;
  right: 38px;
  background-color: #111;
}
.p-index_artist__anchor__item .fukidashi .in {
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 99px;
  border: 2px solid #111;
  text-align: center;
  font-size: 2rem;
  max-width: 240px;
  min-width: 140px;
  white-space: nowrap;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__anchor__item .fukidashi .in {
    font-size: calc(0.8163265306vw + 0.693877551rem );
    min-width: calc(5.7142857143vw + 48.5714285714px );
    padding: calc(0.4081632653vw + 3.4693877551px ) calc(0.8163265306vw + 6.9387755102px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_artist__anchor__item .fukidashi .in {
    line-height: 1.2;
  }
}
.p-index_artist__anchor__item .fukidashi .in::before, .p-index_artist__anchor__item .fukidashi .in::after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  position: absolute;
  background-color: #fff;
}
.p-index_artist__anchor__item .fukidashi .in::before {
  top: -2px;
  left: 36px;
}
.p-index_artist__anchor__item .fukidashi .in::after {
  bottom: -2px;
  right: 36px;
}
.p-index_artist__anchor__item .illust {
  margin-top: auto;
  position: relative;
  width: 100%;
}
.p-index_artist__anchor__item .illust::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #ff8989;
  mix-blend-mode: screen;
  opacity: 0;
  transition: all 0.7s ease;
}
.p-index_artist__anchor__item.-artist .illust::before {
  background-color: #ff8989;
}
.p-index_artist__anchor__item.-artist a .fukidashi .in {
  transition: all 0.3s ease;
}
.p-index_artist__anchor__item.-artist a .fukidashi .in::after, .p-index_artist__anchor__item.-artist a .fukidashi .in::before {
  transition: all 0.3s ease;
}
.is-mouse .p-index_artist__anchor__item.-artist a:hover::after {
  border-color: #ff8989 transparent transparent transparent;
  transform: translateY(10px);
}
.is-mouse .p-index_artist__anchor__item.-artist a:hover .fukidashi .in {
  background-color: #ff8989;
}
.is-mouse .p-index_artist__anchor__item.-artist a:hover .fukidashi .in::after, .is-mouse .p-index_artist__anchor__item.-artist a:hover .fukidashi .in::before {
  background-color: #ff8989;
}
.p-index_artist__anchor__item.-vocalop .illust::before {
  background-color: #72afff;
}
.p-index_artist__anchor__item.-vocalop a .fukidashi .in {
  transition: all 0.3s ease;
}
.p-index_artist__anchor__item.-vocalop a .fukidashi .in::after, .p-index_artist__anchor__item.-vocalop a .fukidashi .in::before {
  transition: all 0.3s ease;
}
.is-mouse .p-index_artist__anchor__item.-vocalop a:hover::after {
  border-color: #72afff transparent transparent transparent;
  transform: translateY(10px);
}
.is-mouse .p-index_artist__anchor__item.-vocalop a:hover .fukidashi .in {
  background-color: #72afff;
}
.is-mouse .p-index_artist__anchor__item.-vocalop a:hover .fukidashi .in::after, .is-mouse .p-index_artist__anchor__item.-vocalop a:hover .fukidashi .in::before {
  background-color: #72afff;
}
.p-index_artist__anchor__item.-vtuber .illust::before {
  background-color: #cadee3;
}
.p-index_artist__anchor__item.-vtuber a .fukidashi .in {
  transition: all 0.3s ease;
}
.p-index_artist__anchor__item.-vtuber a .fukidashi .in::after, .p-index_artist__anchor__item.-vtuber a .fukidashi .in::before {
  transition: all 0.3s ease;
}
.is-mouse .p-index_artist__anchor__item.-vtuber a:hover::after {
  border-color: #cadee3 transparent transparent transparent;
  transform: translateY(10px);
}
.is-mouse .p-index_artist__anchor__item.-vtuber a:hover .fukidashi .in {
  background-color: #cadee3;
}
.is-mouse .p-index_artist__anchor__item.-vtuber a:hover .fukidashi .in::after, .is-mouse .p-index_artist__anchor__item.-vtuber a:hover .fukidashi .in::before {
  background-color: #cadee3;
}
.p-index_artist__anchor__item.-utaite .illust::before {
  background-color: #64e2c3;
}
.p-index_artist__anchor__item.-utaite a .fukidashi .in {
  transition: all 0.3s ease;
}
.p-index_artist__anchor__item.-utaite a .fukidashi .in::after, .p-index_artist__anchor__item.-utaite a .fukidashi .in::before {
  transition: all 0.3s ease;
}
.is-mouse .p-index_artist__anchor__item.-utaite a:hover::after {
  border-color: #64e2c3 transparent transparent transparent;
  transform: translateY(10px);
}
.is-mouse .p-index_artist__anchor__item.-utaite a:hover .fukidashi .in {
  background-color: #64e2c3;
}
.is-mouse .p-index_artist__anchor__item.-utaite a:hover .fukidashi .in::after, .is-mouse .p-index_artist__anchor__item.-utaite a:hover .fukidashi .in::before {
  background-color: #64e2c3;
}
.p-index_artist__anchor__item.-video .illust::before {
  background-color: #bd9ee5;
}
.p-index_artist__anchor__item.-video a .fukidashi .in {
  transition: all 0.3s ease;
}
.p-index_artist__anchor__item.-video a .fukidashi .in::after, .p-index_artist__anchor__item.-video a .fukidashi .in::before {
  transition: all 0.3s ease;
}
.is-mouse .p-index_artist__anchor__item.-video a:hover::after {
  border-color: #bd9ee5 transparent transparent transparent;
  transform: translateY(10px);
}
.is-mouse .p-index_artist__anchor__item.-video a:hover .fukidashi .in {
  background-color: #bd9ee5;
}
.is-mouse .p-index_artist__anchor__item.-video a:hover .fukidashi .in::after, .is-mouse .p-index_artist__anchor__item.-video a:hover .fukidashi .in::before {
  background-color: #bd9ee5;
}
.p-index_artist__block {
  background-color: #ededed;
  position: relative;
  z-index: 1;
  width: 1400px;
  height: 780px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block {
    width: calc(83.6734693878vw + 61.2244897959px );
    height: calc(2.0408163265vw + 747.3469387755px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__block {
    padding: calc(3.1020408163vw + 60.3673469388px ) calc(5.1428571429vw + 17.7142857143px ) calc(44.5292620865vw + -121.5394402036px );
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_artist__block {
    padding: calc(3.1020408163vw + 60.3673469388px ) calc(5.1428571429vw + 17.7142857143px ) calc(11.8367346939vw + 0.612244898px );
  }
}
.p-index_artist__block::before {
  content: "";
  display: block;
  background-color: #fa4b54;
  top: 30px;
  bottom: 70px;
  right: 30px;
  left: 30px;
  border-radius: 200px 0 200px 0;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block::before {
    top: calc(0.8163265306vw + 16.9387755102px );
    bottom: calc(4.0816326531vw + 4.693877551px );
    right: calc(1.2244897959vw + 10.4081632653px );
    left: calc(1.2244897959vw + 10.4081632653px );
    border-radius: calc(8.1632653061vw + 69.387755102px ) 0 calc(8.1632653061vw + 69.387755102px ) 0;
  }
}
.p-index_artist__block.-artist::before {
  background-color: #ff8989;
}
.p-index_artist__block.-vocalop::before {
  background-color: #72afff;
}
.p-index_artist__block.-vtuber::before {
  background-color: #cadee3;
}
.p-index_artist__block.-utaite::before {
  background-color: #64e2c3;
}
.p-index_artist__block.-video::before {
  background-color: #bd9ee5;
}
.p-index_artist__block__row {
  display: flex;
  justify-content: space-between;
}
.p-index_artist__block__num {
  font-family: "Futura", sans-serif;
  font-weight: bold;
  font-size: 20rem;
  letter-spacing: 0.05em;
  writing-mode: vertical-lr;
  color: #fff;
  -webkit-text-stroke: 1px #fa4b54;
  position: absolute;
  right: -100px;
  top: 13px;
  line-height: 0.8;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__num {
    font-size: calc(14.2857142857vw + -2.8571428571rem );
    right: calc(-8.5714285714vw + 37.1428571429px );
    top: calc(1.0612244898vw + -3.9795918367px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_artist__block__num {
    writing-mode: horizontal-tb;
  }
}
.-artist .p-index_artist__block__num {
  -webkit-text-stroke: 1px #ff8989;
}
.-vocalop .p-index_artist__block__num {
  -webkit-text-stroke: 1px #72afff;
}
.-vtuber .p-index_artist__block__num {
  -webkit-text-stroke: 1px #cadee3;
}
.-utaite .p-index_artist__block__num {
  -webkit-text-stroke: 1px #64e2c3;
}
.-video .p-index_artist__block__num {
  -webkit-text-stroke: 1px #bd9ee5;
}
.-vtuber .p-index_artist__block__num {
  -webkit-text-stroke: 1px #bec3c4;
}
.p-index_artist__block__textarea {
  position: absolute;
  top: 75px;
  left: 100px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__textarea {
    top: calc(0.2448979592vw + 71.0816326531px );
    left: calc(5.1428571429vw + 17.7142857143px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__block__textarea {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: calc(1.6326530612vw + 13.8775510204px );
  }
}
.p-index_artist__block__catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}
.p-index_artist__block__catch > span {
  background-color: #fff;
  color: #222;
  font-size: 2.8rem;
  font-weight: bold;
  padding: 5px;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__catch > span {
    font-size: calc(1.0612244898vw + 1.1020408163rem );
  }
}
.p-index_artist__block__catch > span + span {
  margin-top: 5px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__catch > span + span {
    margin-top: calc(0.2448979592vw + 1.0816326531px );
  }
}
.js-anim_elm .p-index_artist__block__catch > span {
  transform-origin: left center;
  transform: scaleX(0);
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
  position: relative;
}
.js-anim_elm .p-index_artist__block__catch > span::before {
  content: "";
  display: block;
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: -2px;
  left: 0;
  transition: all 0.4s ease 0.7s;
}
.is-act .p-index_artist__block__catch > span {
  transform: scaleX(1);
}
.is-act .p-index_artist__block__catch > span::before {
  width: 0;
  left: auto;
  right: 0;
}
.p-index_artist__block__catch > span em {
  font-style: normal;
}
.-artist .p-index_artist__block__catch > span em {
  color: #ff8989;
}
.-vocalop .p-index_artist__block__catch > span em {
  color: #72afff;
}
.-vtuber .p-index_artist__block__catch > span em {
  color: #cadee3;
}
.-utaite .p-index_artist__block__catch > span em {
  color: #64e2c3;
}
.-video .p-index_artist__block__catch > span em {
  color: #bd9ee5;
}
.p-index_artist__block__title {
  font-size: 6rem;
  font-weight: bold;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 40px;
  z-index: 5;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__title {
    font-size: calc(2.1224489796vw + 2.6040816327rem );
    margin-bottom: calc(1.7959183673vw + 11.2653061224px );
  }
}
.p-index_artist__block__title::before, .p-index_artist__block__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__title::before, .p-index_artist__block__title::after {
    width: calc(0.3265306122vw + 4.7755102041px );
    height: calc(0.3265306122vw + 4.7755102041px );
  }
}
.js-anim_elm .p-index_artist__block__title::before, .js-anim_elm .p-index_artist__block__title::after {
  opacity: 0;
  transition: all 0.4s ease 1s;
}
.is-act .p-index_artist__block__title::before, .is-act .p-index_artist__block__title::after {
  opacity: 1;
}
.p-index_artist__block__title::before {
  top: -10px;
  left: -10px;
  border-top: 1px solid #111;
  border-left: 1px solid #111;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__title::before {
    top: calc(-0.4081632653vw + -3.4693877551px );
    left: calc(-0.4081632653vw + -3.4693877551px );
  }
}
.js-anim_elm .p-index_artist__block__title::before {
  transform: translate(10px, 10px);
}
.is-act .p-index_artist__block__title::before {
  transform: translate(0px, 0px);
}
.p-index_artist__block__title::after {
  bottom: -10px;
  right: -10px;
  border-bottom: 1px solid #111;
  border-right: 1px solid #111;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__title::after {
    bottom: calc(-0.4081632653vw + -0.3469387755rem );
    right: calc(-0.4081632653vw + -0.3469387755rem );
  }
}
.js-anim_elm .p-index_artist__block__title::after {
  transform: translate(-10px, -10px);
}
.is-act .p-index_artist__block__title::after {
  transform: translate(0px, 0px);
}
.p-index_artist__block__title span {
  background-color: #111;
  line-height: 1;
  padding: 2px 8px 5px;
  position: relative;
  white-space: nowrap;
}
.p-index_artist__block__title img,
.p-index_artist__block__title svg {
  height: 80px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__title img,
.p-index_artist__block__title svg {
    height: calc(2.0408163265vw + 47.3469387755px );
  }
}
.-artist .p-index_artist__block__title img,
.-artist .p-index_artist__block__title svg {
  height: 160px;
}
@media only screen and (max-width: 1599px) {
  .-artist .p-index_artist__block__title img,
.-artist .p-index_artist__block__title svg {
    height: calc(4.0816326531vw + 94.693877551px );
  }
}
.p-index_artist__block__title img .st0,
.p-index_artist__block__title svg .st0 {
  fill: #111111;
}
.p-index_artist__block__title img .st1,
.p-index_artist__block__title svg .st1 {
  enable-background: new;
}
.p-index_artist__block__title img .st2,
.p-index_artist__block__title svg .st2 {
  fill: #ffffff;
}
.js-anim_elm .p-index_artist__block__title {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.6s;
}
.is-act .p-index_artist__block__title {
  opacity: 1;
  transform: translateY(0);
}
.p-index_artist__block__illust {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 434px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__illust {
    width: calc(17.7142857143vw + 150.5714285714px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__block__illust {
    left: auto;
    transform: translateX(0);
    right: calc(15.4083204931vw + -77.6271186441px );
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .-artist .p-index_artist__block__illust {
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .-utaite .p-index_artist__block__illust {
    right: calc(13.8674884438vw + -61.8644067797px );
  }
}
@media only screen and (max-width: 767px) {
  .-utaite .p-index_artist__block__illust figure {
    transform: rotate(-10deg);
  }
}
.p-index_artist__block__illust::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 434px 497px 0;
  border-color: transparent #fff transparent transparent;
  opacity: 0.25;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__illust::after {
    border-width: 0 calc(17.7142857143vw + 150.5714285714px ) calc(20.3265306122vw + 171.7755102041px ) 0;
  }
}
.-vtuber .p-index_artist__block__illust::after {
  opacity: 1;
}
.js-anim_elm .p-index_artist__block__illust::after {
  transition: all 0.8s ease;
  opacity: 0;
}
.is-act .p-index_artist__block__illust::after {
  opacity: 0.25;
}
.p-index_artist__block__illust .bg .bg_en {
  font-family: "Futura", sans-serif;
  font-size: 10rem;
  font-weight: bold;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  line-height: 1;
  position: absolute;
  top: 205px;
  left: -26px;
  z-index: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__illust .bg .bg_en {
    font-size: calc(4.0816326531vw + 3.4693877551rem );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_artist__block__illust .bg .bg_en {
    display: none;
  }
}
.js-anim_elm .p-index_artist__block__illust .bg .bg_en .js-split span {
  opacity: 0;
  transition: all 0.2s;
}
.js-anim_elm .p-index_artist__block__illust .bg .bg_en .js-split .n1 {
  transition-delay: 60ms;
}
.js-anim_elm .p-index_artist__block__illust .bg .bg_en .js-split .n2 {
  transition-delay: 120ms;
}
.js-anim_elm .p-index_artist__block__illust .bg .bg_en .js-split .n3 {
  transition-delay: 180ms;
}
.js-anim_elm .p-index_artist__block__illust .bg .bg_en .js-split .n4 {
  transition-delay: 240ms;
}
.js-anim_elm .p-index_artist__block__illust .bg .bg_en .js-split .n5 {
  transition-delay: 300ms;
}
.js-anim_elm .p-index_artist__block__illust .bg .bg_en .js-split .n6 {
  transition-delay: 360ms;
}
.js-anim_elm .p-index_artist__block__illust .bg .bg_en .js-split .n7 {
  transition-delay: 420ms;
}
.js-anim_elm .p-index_artist__block__illust .bg .bg_en .js-split .n8 {
  transition-delay: 480ms;
}
.js-anim_elm .p-index_artist__block__illust .bg .bg_en .js-split .n9 {
  transition-delay: 540ms;
}
.is-act .p-index_artist__block__illust .bg .bg_en .js-split span {
  opacity: 1;
}
.p-index_artist__block__illust .bg .line {
  position: absolute;
  bottom: 285px;
  left: 50px;
  width: 180px;
  height: 28px;
  opacity: 0.5;
  background-image: repeating-linear-gradient(90deg, #fff, #fff 12px, transparent 0, transparent 26px);
  transform: skewX(-40deg);
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__illust .bg .line {
    width: calc(7.3469387755vw + 62.4489795918px );
    height: calc(1.1428571429vw + 9.7142857143px );
  }
}
.js-anim_elm .p-index_artist__block__illust .bg .line {
  opacity: 0;
  transform: translateX(-10px) skewX(-40deg);
}
.is-act .p-index_artist__block__illust .bg .line {
  animation: flash 0.3s linear 3 forwards;
  transform: translateX(0px) skewX(-40deg);
}
.p-index_artist__block__illust .bg .dot {
  width: 152px;
  height: 131px;
  position: absolute;
  right: 25px;
  bottom: 150px;
  background-image: radial-gradient(#fff 13%, transparent 13%);
  background-size: 19px 19px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__illust .bg .dot {
    width: calc(3.5918367347vw + 94.5306122449px );
    height: calc(3.0204081633vw + 82.6734693878px );
    right: calc(0.8163265306vw + 11.9387755102px );
    bottom: calc(4.6530612245vw + 75.5510204082px );
    background-size: calc(0.3265306122vw + 13.7755102041px ) calc(0.3265306122vw + 13.7755102041px );
  }
}
.js-anim_elm .p-index_artist__block__illust .bg .dot {
  opacity: 0;
}
.is-act .p-index_artist__block__illust .bg .dot {
  animation: flash 0.3s linear 4 forwards;
}
.p-index_artist__block__illust figure {
  position: relative;
  z-index: 5;
  text-align: right;
  display: block;
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__block__illust figure {
    height: calc(42.7755102041vw + 363.5918367347px );
    position: relative;
    z-index: 7;
  }
}
.p-index_artist__block__illust figure img {
  width: auto;
  height: 100%;
}
.js-anim_elm .p-index_artist__block__illust figure {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease 0.5s, all 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s;
  filter: grayscale(80%);
}
.is-act .p-index_artist__block__illust figure {
  transform: translateX(0px);
  opacity: 1;
  filter: grayscale(0%);
}
.p-index_artist__block__illust .en {
  text-align: right;
  font-family: "Futura", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  font-weight: bold;
  line-height: 1;
  display: block;
  writing-mode: vertical-rl;
  position: absolute;
  right: 12px;
  bottom: 110px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__illust .en {
    font-size: calc(0.2448979592vw + 0.9081632653rem );
    right: calc(0.4897959184vw + 4.1632653061px );
    bottom: calc(4.4897959184vw + 38.1632653061px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__block__illust .en {
    display: none;
  }
}
.p-index_artist__block__desc {
  width: 300px;
  color: #fff;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__desc {
    width: calc(13.7142857143vw + 80.5714285714px );
    font-size: calc(0.2448979592vw + 1.2081632653rem );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_artist__block__desc {
    line-height: 1.7;
  }
}
.-vtuber .p-index_artist__block__desc, .-utaite .p-index_artist__block__desc, .-video .p-index_artist__block__desc {
  color: #221717;
}
.js-anim_elm .p-index_artist__block__desc {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 1.3s;
}
.is-act .p-index_artist__block__desc {
  opacity: 1;
  transform: translateY(0);
}
.p-index_artist__block__skill {
  position: absolute;
  top: 85px;
  right: 130px;
  width: 255px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__skill {
    width: calc(7.3469387755vw + 137.4489795918px );
    right: calc(6.612244898vw + 24.2040816327px );
    top: calc(2.8571428571vw + 39.2857142857px );
    border-radius: calc(0.8163265306vw + 6.9387755102px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__block__skill {
    background-color: transparent;
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: calc(2.4489795918vw + 20.8163265306px );
    margin-top: calc(1.6326530612vw + 13.8775510204px );
    width: calc(14.5306122449vw + 125.5102040816px );
  }
}
.js-anim_elm .p-index_artist__block__skill {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease 1.4s;
}
.is-act .p-index_artist__block__skill {
  opacity: 1;
  transform: translateY(0);
}
.is-act .p-index_artist__block__skill {
  opacity: 1;
}
.p-index_artist__block__skill .c-title02 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__block__skill .c-title02 {
    display: none;
  }
}
.-vtuber .p-index_artist__block__skill .c-title02, .-utaite .p-index_artist__block__skill .c-title02, .-video .p-index_artist__block__skill .c-title02 {
  color: #221717;
}
.p-index_artist__block__skill .graph {
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__block__skill .graph {
    width: 100%;
  }
}
.p-index_artist__block__skill .graph .graph_figure {
  position: absolute;
  left: 40px;
  top: 40px;
  transform-origin: 50% 50%;
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__skill .graph .graph_figure {
    left: calc(1.2244897959vw + 20.4081632653px );
    top: calc(2.0408163265vw + 7.3469387755px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_artist__block__skill .graph .graph_figure {
    left: calc(1.4693877551vw + 12.4897959184px );
    left: 16%;
    top: calc(1.306122449vw + 10.1020408163px );
    top: 16%;
    width: calc(7.4285714286vw + 63.1428571429px );
    width: 71.6%;
  }
}
.js-anim_elm .p-index_artist__block__skill .graph .graph_figure {
  transform: scale(0);
}
.is-act .p-index_artist__block__skill .graph .graph_figure {
  transform: scale(1);
}
.p-index_artist__block__course {
  position: absolute;
  left: 120px;
  bottom: 115px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__course {
    left: calc(9.7959183673vw + -36.7346938776px );
    bottom: calc(4.7346938776vw + 39.2448979592px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_artist__block__course {
    display: block;
    position: static;
    margin-bottom: calc(1.6326530612vw + 13.8775510204px );
  }
}
.p-index_artist__block__course .c-title02 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__course .c-title02 {
    margin-bottom: calc(0.4081632653vw + 3.4693877551px );
  }
}
.-vtuber .p-index_artist__block__course .c-title02, .-utaite .p-index_artist__block__course .c-title02, .-video .p-index_artist__block__course .c-title02 {
  color: #221717;
}
.p-index_artist__block__course .link + .link {
  margin-top: 5px;
}
.p-index_artist__block__course .link a {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 18px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__course .link a {
    font-size: calc(0.4081632653vw + 1.1469387755rem );
    padding: calc(0.5714285714vw + 4.8571428571px ) calc(0.8979591837vw + 3.6326530612px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_artist__block__course .link a {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.p-index_artist__block__course .link a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -20px;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: skewX(-10deg);
  transform-origin: center center;
}
.is-mouse .p-index_artist__block__course .link a:hover {
  color: #111;
}
.is-mouse .p-index_artist__block__course .link a:hover::before {
  width: 120%;
}
.-vtuber .p-index_artist__block__course .link a, .-utaite .p-index_artist__block__course .link a, .-video .p-index_artist__block__course .link a {
  color: #221717;
  border-color: #221717;
}
.p-index_artist__block__course .link a i {
  margin-left: 15px;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__course .link a i {
    margin-left: calc(0.6530612245vw + 4.5510204082px );
  }
}
.p-index_artist__block__course .link a i img,
.p-index_artist__block__course .link a i svg {
  vertical-align: middle;
}
.js-anim_elm .p-index_artist__block__course {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.2s;
}
.is-act .p-index_artist__block__course {
  opacity: 1;
  transform: translateY(0);
}
.p-index_artist__block__event {
  position: absolute;
  bottom: 100px;
  right: 65px;
  width: 360px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__event {
    bottom: calc(3.5102040816vw + 43.8367346939px );
    right: calc(3.6734693878vw + 6.2244897959px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_artist__block__event {
    right: calc(2.5445292621vw + 0.4834605598px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_artist__block__event {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    right: auto;
    width: 100%;
  }
}
.p-index_artist__block__event .c-title02 {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__event .c-title02 {
    margin-bottom: calc(0.6530612245vw + 4.5510204082px );
  }
}
.-vtuber .p-index_artist__block__event .c-title02, .-utaite .p-index_artist__block__event .c-title02, .-video .p-index_artist__block__event .c-title02 {
  color: #221717;
}
.p-index_artist__block__event .c-title02__main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-index_artist__block__event .c-title02__main::before, .p-index_artist__block__event .c-title02__main::after {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background-color: #fede71;
}
.p-index_artist__block__event .c-title02__main::before {
  transform: rotate(60deg);
}
.p-index_artist__block__event .c-title02__main::after {
  transform: rotate(120deg);
}
.p-index_artist__block__event .link a {
  display: flex;
  align-items: center;
  color: #222;
  background-color: #fff;
  border-radius: 10px;
  padding: 17px;
  padding-right: 45px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__event .link a {
    padding: calc(0.1632653061vw + 14.387755102px );
    padding-right: calc(2.0408163265vw + 12.3469387755px );
    border-radius: calc(0.4081632653vw + 3.4693877551px );
  }
}
.p-index_artist__block__event .link a .thumb {
  min-width: 150px;
  max-width: 150px;
  margin-right: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__event .link a .thumb {
    margin-right: calc(0.4081632653vw + 13.4693877551px );
    max-width: calc(0.1632653061vw + 147.387755102px );
    min-width: calc(0.1632653061vw + 147.387755102px );
  }
}
.p-index_artist__block__event .link a .title {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.3;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__event .link a .title {
    font-size: calc(0.0816326531vw + 1.2693877551rem );
  }
}
.p-index_artist__block__event .link a .check {
  position: absolute;
  right: -34px;
  bottom: -11px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffe836;
  color: #221717;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__event .link a .check {
    width: calc(0.9795918367vw + 74.3265306122px );
    height: calc(0.9795918367vw + 74.3265306122px );
    padding-bottom: calc(0.4081632653vw + 13.4693877551px );
    right: calc(-0.7346938776vw + -22.2448979592px );
    bottom: calc(1.1428571429vw + -29.2857142857px );
  }
}
.p-index_artist__block__event .link a .check .text {
  font-family: "Futura", sans-serif;
  font-size: 1.3rem;
  display: inline-block;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__event .link a .check .text {
    font-size: calc(0.2448979592vw + 0.9081632653rem );
    margin-bottom: calc(0.2448979592vw + 4.0816326531px );
  }
}
.p-index_artist__block__event .link a .check .arrow {
  line-height: 1;
  font-size: 1.5rem;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__event .link a .check .arrow {
    font-size: calc(0.1632653061vw + 1.2387755102rem );
  }
}
.is-mouse .p-index_artist__block__event .link a:hover .check {
  transform: scale(1.05);
}
.is-mouse .p-index_artist__block__event .link a:hover .check .text {
  letter-spacing: 0.15em;
}
.-artist .is-mouse .p-index_artist__block__event .link a:hover {
  color: #ff8989;
}
.-vocalop .is-mouse .p-index_artist__block__event .link a:hover {
  color: #72afff;
}
.-vtuber .is-mouse .p-index_artist__block__event .link a:hover {
  color: #cadee3;
}
.-utaite .is-mouse .p-index_artist__block__event .link a:hover {
  color: #64e2c3;
}
.-video .is-mouse .p-index_artist__block__event .link a:hover {
  color: #bd9ee5;
}
.-artist .p-index_artist__block__event .link a {
  transition: all 0.5s ease;
}
.is-mouse .-artist .p-index_artist__block__event .link a:hover {
  color: #ff8989;
}
.-vocalop .p-index_artist__block__event .link a {
  transition: all 0.5s ease;
}
.is-mouse .-vocalop .p-index_artist__block__event .link a:hover {
  color: #72afff;
}
.-vtuber .p-index_artist__block__event .link a {
  transition: all 0.5s ease;
}
.is-mouse .-vtuber .p-index_artist__block__event .link a:hover {
  color: #cadee3;
}
.-utaite .p-index_artist__block__event .link a {
  transition: all 0.5s ease;
}
.is-mouse .-utaite .p-index_artist__block__event .link a:hover {
  color: #64e2c3;
}
.-video .p-index_artist__block__event .link a {
  transition: all 0.5s ease;
}
.is-mouse .-video .p-index_artist__block__event .link a:hover {
  color: #bd9ee5;
}
.js-anim_elm .p-index_artist__block__event {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.2s;
}
@media only screen and (max-width: 767px) {
  .js-anim_elm .p-index_artist__block__event {
    transform: translate(-50%, 20px);
  }
}
.is-act .p-index_artist__block__event {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  .is-act .p-index_artist__block__event {
    transform: translate(-50%, 0px);
  }
}
.p-index_artist__block__twitter {
  position: absolute;
  bottom: 10px;
  right: 25px;
}
.p-index_artist__block__twitter a {
  display: flex;
  align-items: center;
}
.p-index_artist__block__twitter a .title {
  font-family: "Futura", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  margin-right: 20px;
}
.p-index_artist__block__twitter a .account {
  display: flex;
  align-items: center;
}
.p-index_artist__block__twitter a .account .pic {
  border-radius: 50%;
  overflow: hidden;
}
.p-index_artist__block__twitter a .account .name {
  font-size: 1.4rem;
  margin: 0 10px;
}
.p-index_artist__block__twitter a .account i {
  color: #1e9bef;
  font-size: 1.5rem;
  line-height: 1;
}
.p-index_artist__block__twitter a .account i img,
.p-index_artist__block__twitter a .account i svg {
  vertical-align: middle;
}
.p-index_artist__block__obj01 {
  position: absolute;
  top: 62px;
  left: 313px;
  opacity: 0.7;
}
.p-index_artist__block__obj01 > span {
  height: 22px;
  width: 145px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__obj01 > span {
    height: calc(0.8979591837vw + 7.6326530612px );
    width: calc(5.9591836735vw + 49.6530612245px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_artist__block__obj01 {
    display: none;
  }
}
.js-anim_elm .p-index_artist__block__obj01 {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}
.is-act .p-index_artist__block__obj01 {
  opacity: 0.7;
  transform: translateX(0px);
}
.p-index_artist__block__obj02 {
  position: absolute;
  right: 28px;
  bottom: 255px;
  opacity: 0.3;
}
.p-index_artist__block__obj02 > span {
  width: 153px;
  height: 22px;
}
.js-anim_elm .p-index_artist__block__obj02 {
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.4s ease 0.2s;
}
.is-act .p-index_artist__block__obj02 {
  animation: flash02 0.3s linear 6 forwards;
  transform: translateX(0px);
}
.p-index_artist__block__obj03 {
  position: absolute;
  left: 45px;
  bottom: 182px;
  opacity: 0.5;
}
.p-index_artist__block__obj03 > span {
  width: 90px;
  height: 90px;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__obj03 > span {
    width: calc(3.6734693878vw + 31.2244897959px );
    height: calc(3.6734693878vw + 31.2244897959px );
  }
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__obj03 {
    left: calc(1.8775510204vw + 14.9591836735px );
    bottom: calc(-3.5102040816vw + 238.1632653061px );
  }
}
.-vtuber .p-index_artist__block__obj03 {
  opacity: 1;
}
.p-index_artist__block__bnr {
  width: 1000px;
  margin: 60px auto;
}
.p-index_artist__block__bnr .c-title03__sub {
  color: #72afff;
}
.p-index_artist__block__bnr .c-title03__sub::before, .p-index_artist__block__bnr .c-title03__sub::after {
  border-color: #72afff;
}
.p-index_artist__block__bnr a {
  width: 100%;
}
.p-index_artist__block__bnr img {
  width: 100%;
}
@media only screen and (max-width: 1599px) {
  .p-index_artist__block__bnr {
    width: calc(51.0204081633vw + 183.6734693878px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_artist__block__bnr {
    padding-inline: calc(1.6326530612vw + 13.8775510204px );
  }
}

.p-index_aiming {
  background-color: #fede71;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.p-index_aiming::before {
  content: "";
  display: block;
  width: 100%;
  height: 112px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming::before {
    height: calc(4.5714285714vw + 38.8571428571px );
  }
}
.p-index_aiming::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 331px 650px 0 650px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming::after {
    border-width: calc(13.4693877551vw + 114.4897959184px ) calc(26.5306122449vw + 225.5102040816px ) 0 calc(26.5306122449vw + 225.5102040816px );
  }
}
.p-index_aiming__star {
  position: absolute;
  z-index: 3;
}
.p-index_aiming__star.js-anim_elm {
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.p-index_aiming__star.js-anim_elm.is-act {
  opacity: 1;
  transform: scale(1);
}
.p-index_aiming__star.-no01 {
  top: 80px;
  left: 265px;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming__star.-no01 {
    left: calc(23.2653061224vw + -107.2448979592px );
    top: calc(4.0816326531vw + 14.693877551px );
    width: calc(4.7346938776vw + 52.2448979592px );
  }
}
.p-index_aiming__star.-no02 {
  top: 265px;
  right: 206px;
  transition-delay: 0.2s;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming__star.-no02 {
    right: calc(16.8163265306vw + -63.0612244898px );
    top: calc(6.9387755102vw + 153.9795918367px );
    width: calc(4.7346938776vw + 52.2448979592px );
  }
}
.p-index_aiming__star.-no03 {
  bottom: -78px;
  left: 145px;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming__star.-no03 {
    left: calc(13.4693877551vw + -70.5102040816px );
    width: calc(6.9387755102vw + 71.9795918367px );
    bottom: calc(-3.5102040816vw + -21.8367346939px );
  }
}
.p-index_aiming__fukidashi {
  text-align: center;
  margin-bottom: 30px;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming__fukidashi {
    margin-bottom: calc(1.6326530612vw + 3.8775510204px );
  }
}
.p-index_aiming__fukidashi .in {
  display: inline-block;
  background-color: #dcf84c;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1;
  padding: 8px 24px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming__fukidashi .in {
    font-size: calc(0.8163265306vw + 1.693877551rem );
    padding: calc(0.3265306122vw + 2.7755102041px ) calc(0.9795918367vw + 8.3265306122px );
  }
}
.p-index_aiming__fukidashi .in::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 13px 0 13px;
  border-color: #dcf84c transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming__fukidashi .in::after {
    border-width: calc(0.4897959184vw + 8.1632653061px ) calc(0.4081632653vw + 6.4693877551px ) 0 calc(0.4081632653vw + 6.4693877551px );
    bottom: calc(-0.4081632653vw + -8.4693877551px );
  }
}
.p-index_aiming__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  margin-bottom: 50px;
}
.p-index_aiming__title .black {
  font-size: 4.6rem;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming__title .black {
    font-size: calc(1.7959183673vw + 1.7265306122rem );
  }
}
.p-index_aiming__title .bg {
  display: inline-block;
  background-color: #111;
  color: #fff;
  line-height: 1;
  padding: 10px;
  font-size: 6.2rem;
  margin: 20px 0;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming__title .bg {
    font-size: calc(2.612244898vw + 2.0204081633rem );
    margin: calc(0.8163265306vw + 6.9387755102px ) 0;
    padding: calc(0.4081632653vw + 3.4693877551px );
  }
}
.js-anim_elm .p-index_aiming__title .bg {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.3s;
}
.is-act .p-index_aiming__title .bg {
  opacity: 1;
  transform: translateY(0px);
}
.p-index_aiming__title .stroke {
  -webkit-text-stroke: 1px #111;
  color: #fff;
  font-size: 7rem;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming__title .stroke {
    font-size: calc(2.8571428571vw + 2.4285714286rem );
  }
}
.js-anim_elm .p-index_aiming__title .stroke {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.6s;
}
.is-act .p-index_aiming__title .stroke {
  opacity: 1;
  transform: translateY(0px);
}
.p-index_aiming__title.js-anim_elm .black {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.p-index_aiming__title.js-anim_elm .bg {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.3s;
}
.p-index_aiming__title.js-anim_elm .stroke {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.6s;
}
.p-index_aiming__title.is-act .black,
.p-index_aiming__title.is-act .bg,
.p-index_aiming__title.is-act .stroke {
  opacity: 1;
  transform: translateY(0px);
}
.p-index_aiming__slider {
  overflow: visible !important;
}
@media only screen and (max-width: 767px) {
  .p-index_aiming__slider {
    z-index: 4 !important;
  }
}
.p-index_aiming__slider__item .pic {
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming__slider__item .pic {
    border-radius: calc(0.4081632653vw + 3.4693877551px );
  }
}
.p-index_aiming__slider__item .pic img {
  width: 100%;
}
.p-index_aiming__slider .c-slider_arrow {
  background-color: #dcf84c;
  color: #111;
  top: 50%;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .p-index_aiming__slider .c-slider_arrow {
    top: 35%;
  }
}
.p-index_aiming__slider .c-slider_arrow.-next {
  right: 55px;
}
@media only screen and (max-width: 1599px) {
  .p-index_aiming__slider .c-slider_arrow.-next {
    right: calc(4.4897959184vw + -16.8367346939px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_aiming__slider .c-slider_arrow.-next {
    right: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_aiming__slider .c-slider_arrow.-prev {
    left: 10px;
  }
}

.p-index_course {
  background-color: #ededed;
  padding: 160px 20px 120px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_course {
    padding-top: calc(6.5306122449vw + 55.5102040816px );
    padding-bottom: calc(4.0816326531vw + 54.693877551px );
  }
}
.p-index_course .c-title01 .en {
  font-family: "Futura", sans-serif;
  text-transform: uppercase;
  margin-bottom: 1em;
  letter-spacing: 0.3em;
}
.p-index_course .c-title01__bg {
  opacity: 0.7;
}
.p-index_course .c-title01__main img {
  width: calc(7.7551020408vw + 70.9183673469px );
}
.p-index_course__text {
  max-width: 865px;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto 50px;
  font-weight: bold;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1599px) {
  .p-index_course__text {
    font-size: calc(0.2448979592vw + 1.4081632653rem );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_course__text {
    text-align: left;
  }
}
.p-index_course__row {
  margin: 0 auto;
}
.p-index_course__row.-bottom {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 767px) {
  .p-index_course__row.-bottom {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_course__row {
    flex-direction: column;
  }
}
.p-index_course__item {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 40px;
}
.p-index_course__item.-main {
  display: grid;
  gap: 40px;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 767px) {
  .p-index_course__item.-main {
    display: block;
  }
}
@media only screen and (max-width: 1599px) {
  .p-index_course__item {
    padding: 0 calc(1.2244897959vw + -4.5918367347px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_course__item {
    width: 100%;
    margin-bottom: calc(1.6326530612vw + 13.8775510204px );
  }
}
.p-index_course__item .pic {
  margin-bottom: 1em;
}
.p-index_course__item .pic img {
  border-radius: 10px;
}
.p-index_course__item .title {
  margin-bottom: 1em;
}
.p-index_course__item .title span {
  line-height: 1.4;
  margin-bottom: 0.2em;
  padding-bottom: 0.2em;
  border-bottom: 2px solid #fede71;
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
}
@media only screen and (max-width: 1599px) {
  .p-index_course__item .title span {
    font-size: calc(0.8163265306vw + 1.693877551rem );
  }
}
.-main .p-index_course__item .title span {
  font-size: 4.2rem;
}
@media only screen and (max-width: 1599px) {
  .-main .p-index_course__item .title span {
    font-size: calc(1.1428571429vw + 2.3714285714rem );
  }
}
.p-index_course__item .title .label {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.5em;
  line-height: 1;
  background-color: #fede71;
  display: inline-block;
  border-radius: 5px;
}
.p-index_course__item .pic {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.p-index_course__item .pic img {
  width: 100%;
}

.p-index_new {
  background-color: #fede71;
  padding: 160px 20px 120px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_new {
    padding-top: calc(6.5306122449vw + 55.5102040816px );
    padding-bottom: calc(4.0816326531vw + 54.693877551px );
  }
}
.p-index_new .c-title01__bg {
  opacity: 0.7;
}
.p-index_new__text {
  max-width: 865px;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto 50px;
  font-weight: bold;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1599px) {
  .p-index_new__text {
    font-size: calc(0.2448979592vw + 1.4081632653rem );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_new__text {
    text-align: left;
  }
}
.p-index_new__row {
  display: flex;
  margin: 0 -15px;
}
@media only screen and (max-width: 1599px) {
  .p-index_new__row {
    margin: 0 calc(-1.2244897959vw + 4.5918367347px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_new__row {
    flex-direction: column;
  }
}
.p-index_new__item {
  width: calc(100% / 3);
  padding: 0 15px;
  text-align: center;
}
@media only screen and (max-width: 1599px) {
  .p-index_new__item {
    padding: 0 calc(1.2244897959vw + -4.5918367347px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_new__item {
    width: 100%;
    margin-bottom: calc(1.6326530612vw + 13.8775510204px );
  }
}
.p-index_new__item .fukidashi {
  position: relative;
  margin-bottom: 30px;
  color: #222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 999px;
  padding: 7px 30px;
  font-weight: bold;
  font-size: 2.4rem;
}
@media only screen and (max-width: 1599px) {
  .p-index_new__item .fukidashi {
    font-size: calc(0.3265306122vw + 1.8775510204rem );
    padding: 7px calc(1.2244897959vw + 10.4081632653px );
    margin-bottom: calc(0.8163265306vw + 16.9387755102px );
  }
}
.p-index_new__item .fukidashi::before {
  content: "#";
  -webkit-text-stroke: 1px #222223;
  color: #fff;
  display: inline-block;
  margin-right: 5px;
}
.p-index_new__item .fukidashi::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 11px 0 11px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-20px);
}
.p-index_new__item .pic {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.p-index_new__item .pic img {
  width: 100%;
}
.p-index_new__item .desc {
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  padding: 20px 35px;
  text-align: center;
  line-height: 1.6;
  min-height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media only screen and (max-width: 1599px) {
  .p-index_new__item .desc {
    font-size: calc(0.2448979592vw + 1.4081632653rem );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_new__item .desc {
    font-size: 1.8rem;
  }
}

.p-index_skill {
  padding-top: 90px;
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
  background-color: #fede71;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill {
    padding-top: calc(3.6734693878vw + 31.2244897959px );
    padding-bottom: calc(3.6734693878vw + 11.2244897959px );
  }
}
.p-index_skill__container {
  max-width: 1460px;
  padding: 0 80px;
  margin: 0 auto;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__container {
    max-width: calc(66.1224489796vw + 402.0408163265px );
    padding: 0 calc(5.7142857143vw + -11.4285714286px );
  }
}
.p-index_skill .c-title01 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill .c-title01 {
    margin-bottom: calc(2.4489795918vw + 20.8163265306px );
  }
}
.p-index_skill .c-title01__bg {
  opacity: 0.7;
}
.p-index_skill__star {
  position: absolute;
  z-index: 3;
}
.p-index_skill__star.js-anim_elm {
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.p-index_skill__star.js-anim_elm.is-act {
  opacity: 1;
  transform: scale(1);
}
.p-index_skill__star.-no01 {
  top: 90px;
  right: 300px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__star.-no01 {
    width: calc(6.5306122449vw + 55.5102040816px );
    right: calc(23.2653061224vw + -72.2448979592px );
    top: calc(3.6734693878vw + 31.2244897959px );
  }
}
.p-index_skill__star.-no02 {
  top: 290px;
  left: 400px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__star.-no02 {
    width: calc(3.6734693878vw + 46.2244897959px );
    left: calc(32.2448979592vw + -115.9183673469px );
    top: calc(4.4897959184vw + 218.1632653061px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_skill__star.-no02 {
    top: calc(26.1224489796vw + 222.0408163265px );
  }
}
.p-index_skill__star.-no03 {
  top: 867px;
  left: 730px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__star.-no03 {
    width: calc(3.1020408163vw + 88.3673469388px );
    left: calc(43.2653061224vw + 37.7551020408px );
    top: calc(35.6734693878vw + 296.2244897959px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_skill__star.-no03 {
    top: auto;
    left: auto;
    bottom: calc(13.8775510204vw + 117.9591836735px );
    right: calc(2.4489795918vw + 20.8163265306px );
  }
}
.p-index_skill__figure {
  position: relative;
  width: 100%;
  height: 970px;
  margin-bottom: 80px;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure {
    height: calc(39.5918367347vw + 336.5306122449px );
    margin-bottom: calc(3.2653061224vw + 27.7551020408px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure {
    height: calc(57.1428571429vw + 485.7142857143px );
  }
}
.p-index_skill__figure__item {
  font-size: 33rem;
  width: 1em;
  aspect-ratio: 1/1;
  position: absolute;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__item {
    font-size: calc(13.4693877551vw + 11.4489795918rem );
  }
}
.p-index_skill__figure__item .main {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fa4b54;
  border: 5px solid #fff;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__item .main {
    border-width: calc(0.2448979592vw + 1.0816326531px );
  }
}
.p-index_skill__figure__item .main .num {
  font-family: "Futura", sans-serif;
  font-weight: bold;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  font-size: 0.1515em;
  display: block;
  line-height: 1;
  margin-top: -0.3em;
  margin-bottom: 0.3em;
}
.p-index_skill__figure__item .main .title {
  font-size: 0.09em;
  font-weight: bold;
  margin-top: 0.2em;
  line-height: 1.5;
}
.p-index_skill__figure__item .main i {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-index_skill__figure__item .main .en {
  display: block;
  font-size: 0.039em;
  letter-spacing: 0.2em;
  font-weight: bold;
  font-family: "Futura", sans-serif;
  text-transform: uppercase;
  margin-top: 0.5em;
  line-height: 1;
}
.js-anim_elm .p-index_skill__figure__item .main {
  opacity: 0;
  transform: scale(0);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.is-act .p-index_skill__figure__item .main {
  opacity: 1;
  transform: scale(1);
}
.p-index_skill__figure__item .sub {
  font-size: 0.06em;
  width: 6em;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-weight: bold;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
}
.p-index_skill__figure__item .sub.-small {
  width: 5em;
}
.js-anim_elm .p-index_skill__figure__item .sub {
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.is-act .p-index_skill__figure__item .sub {
  opacity: 1;
  transform: scale(1);
}
.p-index_skill__figure__item.-performance {
  top: 160px;
  left: 0;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__item.-performance {
    top: calc(6.5306122449vw + 55.5102040816px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-performance {
    top: 0;
    left: calc(1.6326530612vw + 13.8775510204px );
  }
}
.p-index_skill__figure__item.-performance i img,
.p-index_skill__figure__item.-performance i svg {
  width: 53px;
  height: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__item.-performance i img,
.p-index_skill__figure__item.-performance i svg {
    width: calc(2.1224489796vw + 19.0408163265px );
    height: calc(2.0408163265vw + 17.3469387755px );
  }
}
.p-index_skill__figure__item.-performance .sub.-no01 {
  top: 1em;
  left: -1.5em;
}
.p-index_skill__figure__item.-performance .sub.-no02 {
  top: -2.2em;
  right: 4em;
}
.p-index_skill__figure__item.-performance .sub.-no03 {
  top: 3.5em;
  right: -2.5em;
}
.p-index_skill__figure__item.-performance .sub.-no04 {
  bottom: -1.5em;
  right: 1em;
}
.p-index_skill__figure__item.-performance .sub.-no05 {
  bottom: -0.5em;
  left: 0em;
}
.p-index_skill__figure__item.-performance .sub:nth-child(1) {
  transition-delay: 460ms;
}
.p-index_skill__figure__item.-performance .sub:nth-child(2) {
  transition-delay: 520ms;
}
.p-index_skill__figure__item.-performance .sub:nth-child(3) {
  transition-delay: 580ms;
}
.p-index_skill__figure__item.-performance .sub:nth-child(4) {
  transition-delay: 640ms;
}
.p-index_skill__figure__item.-performance .sub:nth-child(5) {
  transition-delay: 700ms;
}
.p-index_skill__figure__item.-performance .sub:nth-child(6) {
  transition-delay: 760ms;
}
.p-index_skill__figure__item.-production {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-production {
    top: calc(11.4285714286vw + 97.1428571429px );
    left: auto;
    right: calc(0.4081632653vw + 3.4693877551px );
    transform: none;
  }
}
.p-index_skill__figure__item.-production i img,
.p-index_skill__figure__item.-production i svg {
  width: 53px;
  height: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__item.-production i img,
.p-index_skill__figure__item.-production i svg {
    width: calc(2.1224489796vw + 19.0408163265px );
    height: calc(2.0408163265vw + 17.3469387755px );
  }
}
.p-index_skill__figure__item.-production .main {
  transition-delay: 300ms;
}
.p-index_skill__figure__item.-production .sub.-no01 {
  top: -0.4em;
  left: -1.2em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-production .sub.-no01 {
    top: 2em;
    left: -2em;
  }
}
.p-index_skill__figure__item.-production .sub.-no02 {
  top: 0;
  right: -2.6em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-production .sub.-no02 {
    top: -4em;
    right: 4em;
  }
}
.p-index_skill__figure__item.-production .sub.-no03 {
  bottom: -0.5em;
  right: -2em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-production .sub.-no03 {
    bottom: 5em;
  }
}
.p-index_skill__figure__item.-production .sub.-no04 {
  bottom: 0.5em;
  left: -0.3em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-production .sub.-no04 {
    bottom: -2em;
    left: 6em;
  }
}
.p-index_skill__figure__item.-production .sub:nth-child(1) {
  transition-delay: 460ms;
}
.p-index_skill__figure__item.-production .sub:nth-child(2) {
  transition-delay: 520ms;
}
.p-index_skill__figure__item.-production .sub:nth-child(3) {
  transition-delay: 580ms;
}
.p-index_skill__figure__item.-production .sub:nth-child(4) {
  transition-delay: 640ms;
}
.p-index_skill__figure__item.-production .sub:nth-child(5) {
  transition-delay: 700ms;
}
.p-index_skill__figure__item.-production .sub:nth-child(6) {
  transition-delay: 760ms;
}
.p-index_skill__figure__item.-promotion {
  top: 160px;
  right: 0;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__item.-promotion {
    top: calc(6.5306122449vw + 55.5102040816px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-promotion {
    right: auto;
    top: calc(20.4081632653vw + 173.4693877551px );
    left: 0;
  }
}
.p-index_skill__figure__item.-promotion i img,
.p-index_skill__figure__item.-promotion i svg {
  width: 58px;
  height: 45px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__item.-promotion i img,
.p-index_skill__figure__item.-promotion i svg {
    width: calc(2.3673469388vw + 20.1224489796px );
    height: calc(1.8775510204vw + 14.9591836735px );
  }
}
.p-index_skill__figure__item.-promotion .main {
  transition-delay: 600ms;
}
.p-index_skill__figure__item.-promotion .sub.-no01 {
  top: -2.6em;
  left: 0.8em;
}
.p-index_skill__figure__item.-promotion .sub.-no02 {
  top: -1.6em;
  right: -0.2em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-promotion .sub.-no02 {
    top: -2.6em;
    right: 2.8em;
  }
}
.p-index_skill__figure__item.-promotion .sub.-no03 {
  bottom: 1em;
  right: -4em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-promotion .sub.-no03 {
    right: auto;
    bottom: -2em;
    left: -1em;
  }
}
.p-index_skill__figure__item.-promotion .sub.-no04 {
  bottom: -4em;
  left: 50%;
  translate: -50% 0;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-promotion .sub.-no04 {
    bottom: -3em;
    left: 8em;
    translate: none;
  }
}
.p-index_skill__figure__item.-promotion .sub.-no05 {
  bottom: 1.3em;
  left: -3em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-promotion .sub.-no05 {
    bottom: 7.3em;
    left: -1em;
  }
}
.p-index_skill__figure__item.-promotion .sub:nth-child(1) {
  transition-delay: 1060ms;
}
.p-index_skill__figure__item.-promotion .sub:nth-child(2) {
  transition-delay: 1120ms;
}
.p-index_skill__figure__item.-promotion .sub:nth-child(3) {
  transition-delay: 1180ms;
}
.p-index_skill__figure__item.-promotion .sub:nth-child(4) {
  transition-delay: 1240ms;
}
.p-index_skill__figure__item.-promotion .sub:nth-child(5) {
  transition-delay: 1300ms;
}
.p-index_skill__figure__item.-promotion .sub:nth-child(6) {
  transition-delay: 1360ms;
}
.p-index_skill__figure__item.-monetize {
  bottom: 0;
  left: 120px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__item.-monetize {
    left: calc(4.8979591837vw + 41.6326530612px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-monetize {
    bottom: auto;
    left: auto;
    top: calc(39.1836734694vw + 233.0612244898px );
    right: 0;
  }
}
.p-index_skill__figure__item.-monetize i img,
.p-index_skill__figure__item.-monetize i svg {
  width: 56px;
  height: 62px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__item.-monetize i img,
.p-index_skill__figure__item.-monetize i svg {
    width: calc(2.2857142857vw + 19.4285714286px );
    height: calc(2.5306122449vw + 21.5102040816px );
  }
}
.p-index_skill__figure__item.-monetize .main {
  transition-delay: 900ms;
}
.p-index_skill__figure__item.-monetize .sub.-no01 {
  top: -2.6em;
  left: 0.4em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-monetize .sub.-no01 {
    top: -0.6em;
    left: -0.6em;
  }
}
.p-index_skill__figure__item.-monetize .sub.-no02 {
  top: 1.6em;
  right: -2.5em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-monetize .sub.-no02 {
    right: -1em;
  }
}
.p-index_skill__figure__item.-monetize .sub.-no03 {
  bottom: -1.5em;
  right: 1em;
}
.p-index_skill__figure__item.-monetize .sub.-no04 {
  bottom: 1.3em;
  left: -3em;
}
.p-index_skill__figure__item.-monetize .sub:nth-child(1) {
  transition-delay: 1360ms;
}
.p-index_skill__figure__item.-monetize .sub:nth-child(2) {
  transition-delay: 1420ms;
}
.p-index_skill__figure__item.-monetize .sub:nth-child(3) {
  transition-delay: 1480ms;
}
.p-index_skill__figure__item.-monetize .sub:nth-child(4) {
  transition-delay: 1540ms;
}
.p-index_skill__figure__item.-monetize .sub:nth-child(5) {
  transition-delay: 1600ms;
}
.p-index_skill__figure__item.-monetize .sub:nth-child(6) {
  transition-delay: 1660ms;
}
.p-index_skill__figure__item.-technology {
  bottom: 0;
  right: 120px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__item.-technology {
    right: calc(4.8979591837vw + 41.6326530612px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-technology {
    bottom: auto;
    right: auto;
    top: calc(40.8163265306vw + 346.9387755102px );
    left: 0;
  }
}
.p-index_skill__figure__item.-technology i img,
.p-index_skill__figure__item.-technology i svg {
  width: 56px;
  height: 62px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__item.-technology i img,
.p-index_skill__figure__item.-technology i svg {
    width: calc(2.2857142857vw + 19.4285714286px );
    height: calc(2.5306122449vw + 21.5102040816px );
  }
}
.p-index_skill__figure__item.-technology .main {
  transition-delay: 1200ms;
  color: #221717;
}
.p-index_skill__figure__item.-technology .main .num {
  -webkit-text-stroke-color: #221717;
}
.p-index_skill__figure__item.-technology .sub.-no01 {
  top: 1.5em;
  left: -2em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-technology .sub.-no01 {
    top: -3em;
    left: 3em;
  }
}
.p-index_skill__figure__item.-technology .sub.-no02 {
  top: -3em;
  left: 5em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-technology .sub.-no02 {
    top: -2em;
    left: 11em;
  }
}
.p-index_skill__figure__item.-technology .sub.-no03 {
  top: -0.2em;
  right: -1.6em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-technology .sub.-no03 {
    top: 4em;
    right: -3em;
  }
}
.p-index_skill__figure__item.-technology .sub.-no04 {
  bottom: 5em;
  right: -4em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-technology .sub.-no04 {
    bottom: -1em;
    right: -2em;
  }
}
.p-index_skill__figure__item.-technology .sub.-no05 {
  bottom: -2em;
  right: 1em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-technology .sub.-no05 {
    bottom: -3em;
    left: 4.5em;
  }
}
.p-index_skill__figure__item.-technology .sub.-no06 {
  bottom: -3em;
  left: 3.5em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-technology .sub.-no06 {
    bottom: 1em;
    left: -1em;
  }
}
.p-index_skill__figure__item.-technology .sub.-no07 {
  bottom: 2em;
  left: -2.2em;
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__item.-technology .sub.-no07 {
    bottom: auto;
    top: 3em;
    left: -1em;
  }
}
.p-index_skill__figure__item.-technology .sub:nth-child(1) {
  transition-delay: 1660ms;
}
.p-index_skill__figure__item.-technology .sub:nth-child(2) {
  transition-delay: 1720ms;
}
.p-index_skill__figure__item.-technology .sub:nth-child(3) {
  transition-delay: 1780ms;
}
.p-index_skill__figure__item.-technology .sub:nth-child(4) {
  transition-delay: 1840ms;
}
.p-index_skill__figure__item.-technology .sub:nth-child(5) {
  transition-delay: 1900ms;
}
.p-index_skill__figure__item.-technology .sub:nth-child(6) {
  transition-delay: 1960ms;
}
.p-index_skill__figure__item.-technology .sub:nth-child(7) {
  transition-delay: 2020ms;
}
.p-index_skill__figure__item.-technology .sub:nth-child(8) {
  transition-delay: 2080ms;
}
.p-index_skill__figure__item.-performance .main {
  background-color: #bd9ee5;
}
.p-index_skill__figure__item.-production .main {
  background-color: #72afff;
}
.p-index_skill__figure__item.-promotion .main {
  background-color: #ff8989;
}
.p-index_skill__figure__item.-monetize .main {
  background-color: #64e2c3;
}
.p-index_skill__figure__item.-technology .main {
  background-color: #e9f1f3;
}
.p-index_skill__figure__main {
  position: absolute;
  top: 280px;
  left: 50%;
  translate: -50% 0;
  width: 220px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__figure__main {
    top: calc(11.4285714286vw + 97.1428571429px );
    width: calc(8.9795918367vw + 76.3265306122px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_skill__figure__main {
    top: 50%;
    translate: -50% -50%;
  }
}
.js-anim_elm .p-index_skill__figure__main {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 1.8s;
}
.is-act .p-index_skill__figure__main {
  opacity: 1;
  transform: translateY(0px);
}
.p-index_skill__catch .in {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-index_skill__catch .in > span {
  background-color: #111;
  color: #fff;
  font-weight: bold;
  font-size: 4.6rem;
  display: block;
  line-height: 1;
  padding: 5px 10px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__catch .in > span {
    font-size: calc(1.7959183673vw + 1.7265306122rem );
    padding: 5px;
  }
}
.p-index_skill__catch .in > span + span {
  margin-top: 10px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__catch .in > span + span {
    margin-top: calc(0.4081632653vw + 3.4693877551px );
  }
}
.p-index_skill__catch.js-anim_elm span {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.p-index_skill__catch.js-anim_elm span:nth-child(1) {
  transition-delay: 30ms;
}
.p-index_skill__catch.js-anim_elm span:nth-child(2) {
  transition-delay: 60ms;
}
.p-index_skill__catch.js-anim_elm span:nth-child(3) {
  transition-delay: 90ms;
}
.p-index_skill__catch.is-act span {
  opacity: 1;
  transform: translateY(0px);
}
.p-index_skill__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__arrow {
    margin-bottom: calc(1.2244897959vw + 10.4081632653px );
  }
}
.p-index_skill__arrow::before, .p-index_skill__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 49px 0 49px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__arrow::before, .p-index_skill__arrow::after {
    border-width: calc(1.2244897959vw + 10.4081632653px ) calc(1.9591836735vw + 17.6530612245px ) 0 calc(1.9591836735vw + 17.6530612245px );
  }
}
.p-index_skill__arrow::before {
  border-color: #111 transparent transparent transparent;
  z-index: 3;
}
.p-index_skill__arrow::after {
  border-color: #fa4b54 transparent transparent transparent;
  margin-top: -9px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__arrow::after {
    margin-top: calc(-0.4081632653vw + -2.4693877551px );
  }
}
.p-index_skill__arrow span {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 49px 0 49px;
  border-color: #fff transparent transparent transparent;
  margin-top: -9px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__arrow span {
    border-width: calc(1.2244897959vw + 10.4081632653px ) calc(1.9591836735vw + 17.6530612245px ) 0 calc(1.9591836735vw + 17.6530612245px );
    margin-top: calc(-0.4081632653vw + -2.4693877551px );
  }
}
.p-index_skill__arrow.js-anim_elm::before, .p-index_skill__arrow.js-anim_elm::after,
.p-index_skill__arrow.js-anim_elm span {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}
.p-index_skill__arrow.js-anim_elm span {
  transition-delay: 0.1s;
}
.p-index_skill__arrow.js-anim_elm::after {
  transition-delay: 0.2s;
}
.p-index_skill__arrow.is-act::before, .p-index_skill__arrow.is-act::after,
.p-index_skill__arrow.is-act span {
  transform: translateY(0);
  opacity: 1;
}
.p-index_skill__bg {
  position: absolute;
  z-index: -1;
}
.p-index_skill__bg .line {
  position: absolute;
}
.p-index_skill__bg .line.-solid {
  width: 110px;
  height: 14px;
  background-color: #fff;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__bg .line.-solid {
    width: calc(4.4897959184vw + 38.1632653061px );
    height: calc(0.5714285714vw + 4.8571428571px );
  }
}
.p-index_skill__bg .line.-stripe {
  width: 145px;
  height: 22px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__bg .line.-stripe {
    width: calc(5.9591836735vw + 49.6530612245px );
    height: calc(-0.7346938776vw + 13.7551020408px );
  }
}
.p-index_skill__bg .line.-thin {
  width: 110px;
  height: 2px;
  background-color: #fff;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__bg .line.-thin {
    width: calc(4.4897959184vw + 38.1632653061px );
  }
}
.p-index_skill__bg .text_bg {
  opacity: 0;
}
.p-index_skill__bg .text_bg img,
.p-index_skill__bg .text_bg svg {
  height: 240px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__bg .text_bg img,
.p-index_skill__bg .text_bg svg {
    height: calc(9.7959183673vw + 83.2653061224px );
  }
}
.p-index_skill__bg.-production {
  right: -380px;
  top: 170px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__bg.-production {
    top: calc(6.9387755102vw + 58.9795918367px );
  }
}
.p-index_skill__bg.-production .line.-solid {
  top: 125px;
  left: -190px;
}
.p-index_skill__bg.-production .line.-stripe {
  left: 13px;
  top: 170px;
}
.p-index_skill__bg.-production .line.-thin {
  top: 177px;
  left: -110px;
}
.p-index_skill__bg.-promotion {
  top: 685px;
  left: -450px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__bg.-promotion {
    top: calc(28vw + 237px );
  }
}
.p-index_skill__bg.-promotion .line.-solid {
  top: -13px;
  right: -120px;
}
.p-index_skill__bg.-promotion .line.-stripe {
  top: 53px;
  right: -360px;
}
.p-index_skill__bg.-promotion .line.-thin {
  top: 85px;
  right: -425px;
}
.p-index_skill__bg.-monetize {
  top: 953px;
  right: -245px;
}
@media only screen and (max-width: 1599px) {
  .p-index_skill__bg.-monetize {
    top: calc(38.9387755102vw + 329.9795918367px );
  }
}
.p-index_skill__bg.-monetize .line.-solid {
  top: 340px;
  left: -423px;
}
.p-index_skill__bg.-monetize .line.-stripe {
  top: 395px;
  left: -550px;
}

.p-index_point {
  margin-bottom: 165px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point {
    margin-bottom: calc(6.1224489796vw + 67.0408163265px );
  }
}
.p-index_point__head {
  position: relative;
  padding-top: 130px;
  z-index: 1;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__head {
    padding-top: calc(5.306122449vw + 45.1020408163px );
  }
}
.p-index_point__head__pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__head__pic {
    height: calc(14.2857142857vw + 121.4285714286px );
  }
}
.p-index_point__head__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index_point.-performance .p-index_point__head__pic::after {
  background-color: #bd9ee5;
}
.p-index_point.-production .p-index_point__head__pic::after {
  background-color: #72afff;
}
.p-index_point.-promotion .p-index_point__head__pic::after {
  background-color: #ff8989;
}
.p-index_point.-monetize .p-index_point__head__pic::after {
  background-color: #64e2c3;
}
.p-index_point.-technology .p-index_point__head__pic::after {
  background-color: #e9f1f3;
}
.js-anim_elm .p-index_point__head__pic {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.js-anim_elm .p-index_point__head__pic::before, .js-anim_elm .p-index_point__head__pic::after {
  content: "";
  display: block;
  height: 100%;
  left: -20%;
  right: -20%;
  position: absolute;
  top: 0;
  transform: skewX(-20deg);
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-origin: left top;
  background-color: #fa4b54;
}
@media only screen and (max-width: 767px) {
  .js-anim_elm .p-index_point__head__pic::before, .js-anim_elm .p-index_point__head__pic::after {
    left: -25%;
    right: -25%;
  }
}
.js-anim_elm .p-index_point__head__pic::before {
  background-color: #fff;
  z-index: 2;
  transition-delay: 0.7s;
}
.js-anim_elm .p-index_point__head__pic::after {
  background-color: #fa4b54;
  z-index: 3;
  transition-delay: 0.5s;
}
.is-act .p-index_point__head__pic {
  opacity: 1;
  transform: translateY(0);
}
.is-act .p-index_point__head__pic::before, .is-act .p-index_point__head__pic::after {
  transform: skewX(-20deg) scaleX(0);
}
.p-index_point__head__title {
  color: #fff;
  text-align: center;
}
.js-anim_elm .p-index_point__head__title {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.8s;
}
.is-act .p-index_point__head__title {
  opacity: 1;
  transform: translateY(0px);
}
.p-index_point__head__title i {
  display: block;
}
.p-index_point__head__title i img,
.p-index_point__head__title i svg {
  width: 53px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__head__title i img,
.p-index_point__head__title i svg {
    width: calc(2.2040816327vw + 17.7346938776px );
  }
}
.p-index_point__head__title .en {
  display: block;
  font-size: 2rem;
  font-family: "Futura", sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__head__title .en {
    font-size: calc(0.8163265306vw + 0.693877551rem );
  }
}
.p-index_point__head__title .num {
  font-size: 10rem;
  -webkit-text-stroke: 1px #fff;
  font-weight: bold;
  font-family: "Futura", sans-serif;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  display: none;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__head__title .num {
    font-size: calc(4.0816326531vw + 3.4693877551rem );
    margin-bottom: calc(0.4081632653vw + 3.4693877551px );
  }
}
.p-index_point__catch {
  text-align: center;
  margin-bottom: 53px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__catch {
    margin-bottom: calc(2.1224489796vw + 19.0408163265px );
  }
}
.p-index_point__catch.js-anim_elm {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.8s;
}
.p-index_point__catch.is-act {
  opacity: 1;
  transform: translateY(0px);
}
.p-index_point__catch .fukidashi {
  display: inline-block;
  background-color: #fff;
  font-family: "Futura", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  padding: 10px 20px;
  margin-bottom: 15px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__catch .fukidashi {
    font-size: calc(0.7346938776vw + 6.2448979592px );
    padding: calc(0.4081632653vw + 3.4693877551px ) calc(0.8163265306vw + 6.9387755102px );
  }
}
.p-index_point__catch .fukidashi::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
}
.p-index_point__catch .catch {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-index_point__catch .catch span {
  display: inline-block;
  background-color: #fa4b54;
  font-weight: bold;
  color: #fff;
  font-size: 5.6rem;
  line-height: 1;
  padding: 10px 10px 15px;
  white-space: nowrap;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__catch .catch span {
    font-size: calc(2.7755102041vw + 1.1591836735rem );
    padding: calc(0.4081632653vw + 3.4693877551px ) calc(0.4081632653vw + 3.4693877551px ) calc(0.5714285714vw + 5.8571428571px );
  }
}
.p-index_point.-performance .p-index_point__catch .catch span {
  background-color: #bd9ee5;
}
.p-index_point.-production .p-index_point__catch .catch span {
  background-color: #72afff;
}
.p-index_point.-promotion .p-index_point__catch .catch span {
  background-color: #ff8989;
}
.p-index_point.-monetize .p-index_point__catch .catch span {
  background-color: #64e2c3;
}
.p-index_point.-technology .p-index_point__catch .catch span {
  background-color: #e9f1f3;
}
.p-index_point__body {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__body {
    max-width: calc(83.6734693878vw + 61.2244897959px );
    padding-bottom: calc(2.4489795918vw + 20.8163265306px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_point__body {
    max-width: calc(100% - calc(1.6326530612vw + 13.8775510204px ) * 2);
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__body {
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 374px) {
  .p-index_point__body {
    max-width: calc(100% - 20px * 2);
  }
}
.p-index_point__body::after {
  content: "";
  display: block;
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__body::after {
    top: calc(1.9591836735vw + 10.6530612245px );
  }
}
.p-index_point.-performance .p-index_point__body .c-title03__sub {
  color: #bd9ee5;
}
.p-index_point.-performance .p-index_point__body .c-title03__sub::before, .p-index_point.-performance .p-index_point__body .c-title03__sub::after {
  border-color: #bd9ee5;
}
.p-index_point.-production .p-index_point__body .c-title03__sub {
  color: #72afff;
}
.p-index_point.-production .p-index_point__body .c-title03__sub::before, .p-index_point.-production .p-index_point__body .c-title03__sub::after {
  border-color: #72afff;
}
.p-index_point.-promotion .p-index_point__body .c-title03__sub {
  color: #ff8989;
}
.p-index_point.-promotion .p-index_point__body .c-title03__sub::before, .p-index_point.-promotion .p-index_point__body .c-title03__sub::after {
  border-color: #ff8989;
}
.p-index_point.-monetize .p-index_point__body .c-title03__sub {
  color: #64e2c3;
}
.p-index_point.-monetize .p-index_point__body .c-title03__sub::before, .p-index_point.-monetize .p-index_point__body .c-title03__sub::after {
  border-color: #64e2c3;
}
.p-index_point.-technology .p-index_point__body .c-title03__sub {
  color: #e9f1f3;
}
.p-index_point.-technology .p-index_point__body .c-title03__sub::before, .p-index_point.-technology .p-index_point__body .c-title03__sub::after {
  border-color: #e9f1f3;
}
@media only screen and (max-width: 767px) {
  .p-index_point__body .c-container {
    padding: 0 calc(1.2244897959vw + 10.4081632653px );
  }
}
.p-index_point__curriculum {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__curriculum {
    margin-bottom: calc(2.4489795918vw + 20.8163265306px );
  }
}
.p-index_point__curriculum__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__curriculum__row {
    gap: calc(1.6326530612vw + 13.8775510204px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__curriculum__row {
    overflow: visible !important;
  }
}
.p-index_point__curriculum__row .c-slider_arrow {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-index_point__curriculum__row .c-slider_arrow {
    display: flex;
  }
}
.p-index_point__curriculum__row .swiper-wrapper {
  display: contents;
}
@media only screen and (max-width: 767px) {
  .p-index_point__curriculum__row .swiper-wrapper {
    display: flex;
  }
}
.p-index_point__curriculum__item .thumb {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__curriculum__item .thumb {
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
.p-index_point__curriculum__item .thumb img {
  width: 100%;
}
.p-index_point__curriculum__item .title {
  color: #fa4b54;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__curriculum__item .title {
    font-size: calc(0.3265306122vw + 1.4775510204rem );
    margin-bottom: calc(0.8163265306vw + 1.9387755102px );
  }
}
.p-index_point.-performance .p-index_point__curriculum__item .title {
  color: #bd9ee5;
}
.p-index_point.-production .p-index_point__curriculum__item .title {
  color: #72afff;
}
.p-index_point.-promotion .p-index_point__curriculum__item .title {
  color: #ff8989;
}
.p-index_point.-monetize .p-index_point__curriculum__item .title {
  color: #64e2c3;
}
.p-index_point.-technology .p-index_point__curriculum__item .title {
  color: #e9f1f3;
}
.p-index_point__curriculum__item .title i {
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__curriculum__item .title i {
    font-size: calc(0.3265306122vw + 1.4775510204rem );
    margin-right: calc(0.4081632653vw + 3.4693877551px );
  }
}
.p-index_point__voice {
  background-color: #ededed;
  border: 1px dotted #222;
  border-radius: 10px;
  padding: 28px 65px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__voice {
    padding: calc(0.2448979592vw + 24.0816326531px ) calc(4.0816326531vw + -0.306122449px );
    margin-bottom: calc(1.6326530612vw + 13.8775510204px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__voice {
    flex-direction: column;
  }
}
.p-index_point__voice__title {
  position: absolute;
  top: -12px;
  left: 25px;
  font-family: "Futura", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #fa4b54;
  border-radius: 99px;
  padding: 5px 15px;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__voice__title {
    top: calc(-0.4897959184vw + -4.1632653061px );
    left: calc(1.0612244898vw + 8.0204081633px );
    padding: 5px calc(0.4081632653vw + 8.4693877551px );
    font-size: calc(0.3265306122vw + 10.7755102041px );
  }
}
.p-index_point.-performance .p-index_point__voice__title {
  background-color: #bd9ee5;
}
.p-index_point.-production .p-index_point__voice__title {
  background-color: #72afff;
}
.p-index_point.-promotion .p-index_point__voice__title {
  background-color: #ff8989;
}
.p-index_point.-monetize .p-index_point__voice__title {
  background-color: #64e2c3;
}
.p-index_point.-technology .p-index_point__voice__title {
  background-color: #e9f1f3;
}
.p-index_point__voice__pic {
  margin-right: 25px;
  min-width: 150px;
  max-width: 150px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__voice__pic {
    margin-right: calc(1.0612244898vw + 8.0204081633px );
    min-width: calc(6.1224489796vw + 52.0408163265px );
    max-width: calc(6.1224489796vw + 52.0408163265px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__voice__pic {
    margin-right: 0;
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
.p-index_point__voice__textarea .catch {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fa4b54;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__voice__textarea .catch {
    font-size: calc(0.6530612245vw + 1.3551020408rem );
    margin-bottom: calc(0.5714285714vw + 5.8571428571px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__voice__textarea .catch {
    text-align: center;
  }
}
.p-index_point.-performance .p-index_point__voice__textarea .catch {
  color: #bd9ee5;
}
.p-index_point.-production .p-index_point__voice__textarea .catch {
  color: #72afff;
}
.p-index_point.-promotion .p-index_point__voice__textarea .catch {
  color: #ff8989;
}
.p-index_point.-monetize .p-index_point__voice__textarea .catch {
  color: #64e2c3;
}
.p-index_point.-technology .p-index_point__voice__textarea .catch {
  color: #e9f1f3;
}
.p-index_point__facility__row {
  display: flex;
  justify-content: center;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__facility__row {
    margin-left: calc(-1.6326530612vw + 6.1224489796px );
    margin-right: calc(-1.6326530612vw + 6.1224489796px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__facility__row {
    flex-direction: column;
  }
}
.p-index_point__facility__item {
  width: calc(100% / 3);
  padding: 0 20px;
  text-align: center;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__facility__item {
    padding: 0 calc(1.6326530612vw + -6.1224489796px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__facility__item {
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: calc(1.2244897959vw + 10.4081632653px );
  }
}
.p-index_point__facility__item .thumb {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__facility__item .thumb {
    margin-bottom: calc(1.6326530612vw + -6.1224489796px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__facility__item .thumb {
    min-width: calc(12.2448979592vw + 54.0816326531px );
    max-width: calc(12.2448979592vw + 54.0816326531px );
    margin-right: calc(1.6326530612vw + 13.8775510204px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__facility__item .textarea {
    text-align: left;
  }
}
.p-index_point__facility__item .title {
  font-size: 2rem;
  font-weight: bold;
  color: #fa4b54;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__facility__item .title {
    font-size: calc(0.4081632653vw + 1.3469387755rem );
    margin-bottom: calc(0.8163265306vw + 1.9387755102px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__facility__item .title {
    line-height: 1.6;
  }
}
.p-index_point.-performance .p-index_point__facility__item .title {
  color: #bd9ee5;
}
.p-index_point.-production .p-index_point__facility__item .title {
  color: #72afff;
}
.p-index_point.-promotion .p-index_point__facility__item .title {
  color: #ff8989;
}
.p-index_point.-monetize .p-index_point__facility__item .title {
  color: #64e2c3;
}
.p-index_point.-technology .p-index_point__facility__item .title {
  color: #e9f1f3;
}
.p-index_point__facility__item .c-text01 {
  text-align: left;
}
.p-index_point__teacher {
  border: 1px solid #fa4b54;
  padding: 30px 40px 40px 20px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__teacher {
    padding: calc(0.8163265306vw + 16.9387755102px ) calc(1.6326530612vw + 13.8775510204px ) calc(1.6326530612vw + 13.8775510204px ) calc(0.8163265306vw + 6.9387755102px );
    margin-bottom: calc(1.6326530612vw + 13.8775510204px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_point__teacher {
    flex-wrap: wrap;
    padding: calc(0.8163265306vw + 16.9387755102px ) calc(1.6326530612vw + 13.8775510204px ) calc(1.6326530612vw + 13.8775510204px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__teacher {
    flex-direction: column;
  }
}
.p-index_point.-performance .p-index_point__teacher {
  border-color: #bd9ee5;
}
.p-index_point.-production .p-index_point__teacher {
  border-color: #72afff;
}
.p-index_point.-promotion .p-index_point__teacher {
  border-color: #ff8989;
}
.p-index_point.-monetize .p-index_point__teacher {
  border-color: #64e2c3;
}
.p-index_point.-technology .p-index_point__teacher {
  border-color: #e9f1f3;
}
.p-index_point__teacher.-promotion {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.p-index_point__teacher__inner {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1023px) {
  .p-index_point__teacher__inner {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__teacher__inner {
    flex-direction: column;
  }
}
.p-index_point__teacher__title {
  writing-mode: vertical-lr;
  font-family: "Futura", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  margin-right: 25px;
  text-transform: uppercase;
  color: #fa4b54;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__teacher__title {
    margin-right: calc(1.0612244898vw + 8.0204081633px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_point__teacher__title {
    width: 100%;
    writing-mode: horizontal-tb;
    margin-right: 0;
    margin-bottom: calc(0.4081632653vw + 13.4693877551px );
  }
}
.p-index_point.-performance .p-index_point__teacher__title {
  color: #bd9ee5;
}
.p-index_point.-production .p-index_point__teacher__title {
  color: #72afff;
}
.p-index_point.-promotion .p-index_point__teacher__title {
  color: #ff8989;
}
.p-index_point.-monetize .p-index_point__teacher__title {
  color: #64e2c3;
}
.p-index_point.-technology .p-index_point__teacher__title {
  color: #e9f1f3;
}
.p-index_point__teacher__pic {
  min-width: 270px;
  max-width: 270px;
  margin-right: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__teacher__pic {
    min-width: calc(12.6530612245vw + 67.5510204082px );
    max-width: calc(12.6530612245vw + 67.5510204082px );
    margin-right: calc(2.8571428571vw + 4.2857142857px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__teacher__pic {
    min-width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_point__teacher__textarea {
    width: calc(100% - (calc(12.6530612245vw + 67.5510204082px ) + calc(2.8571428571vw + 4.2857142857px )));
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__teacher__textarea {
    width: 100%;
  }
}
.p-index_point__teacher__textarea .catch {
  border-left: 5px dotted #fa4b54;
  color: #fa4b54;
  font-size: 2.8rem;
  line-height: 1.42;
  padding-left: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__teacher__textarea .catch {
    font-size: calc(0.9795918367vw + 12.3265306122px );
    padding-left: calc(0.6530612245vw + 4.5510204082px );
    margin-bottom: calc(0.4081632653vw + 3.4693877551px );
    border-left: 5px dotted #fa4b54;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__teacher__textarea .catch {
    border-left: 3px dotted #fa4b54;
  }
}
.p-index_point.-performance .p-index_point__teacher__textarea .catch {
  border-color: #bd9ee5;
  color: #bd9ee5;
}
.p-index_point.-production .p-index_point__teacher__textarea .catch {
  border-color: #72afff;
  color: #72afff;
}
.p-index_point.-promotion .p-index_point__teacher__textarea .catch {
  border-color: #ff8989;
  color: #ff8989;
}
.p-index_point.-monetize .p-index_point__teacher__textarea .catch {
  border-color: #64e2c3;
  color: #64e2c3;
}
.p-index_point.-technology .p-index_point__teacher__textarea .catch {
  border-color: #e9f1f3;
  color: #e9f1f3;
}
.p-index_point__teacher__textarea .name {
  font-size: 1.3rem;
  font-weight: bold;
  display: block;
  margin-bottom: 25px;
  margin-left: 25px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__teacher__textarea .name {
    margin-bottom: calc(1.0612244898vw + 8.0204081633px );
    margin-left: calc(1.0612244898vw + 8.0204081633px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__teacher__textarea .text > p {
    overflow: hidden;
    height: 3.5em;
    position: relative;
    transition: all 0.4s ease;
  }
}
.p-index_point__teacher__textarea .text .more {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-index_point__teacher__textarea .text .more {
    display: block;
    border-top: 1px solid #fa4b54;
    text-align: center;
    padding: calc(0.8163265306vw + 6.9387755102px );
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1;
    position: relative;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__teacher__textarea .text .more i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    vertical-align: middle;
    transition: all 0.4s ease;
  }
}
.-performance .p-index_point__teacher__textarea .text .more {
  border-color: #bd9ee5;
}
.-production .p-index_point__teacher__textarea .text .more {
  border-color: #72afff;
}
.-promotion .p-index_point__teacher__textarea .text .more {
  border-color: #ff8989;
}
.-monetize .p-index_point__teacher__textarea .text .more {
  border-color: #64e2c3;
}
.-technology .p-index_point__teacher__textarea .text .more {
  border-color: #e9f1f3;
}
.p-index_point__teacher__textarea .text .more.is-act i {
  transform: rotate(180deg) translateY(50%);
}
.p-index_point__teacher__textarea .profile {
  background-color: #ededed;
  padding: 20px 40px 30px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__teacher__textarea .profile {
    padding-left: calc(1.6326530612vw + 13.8775510204px );
    padding-right: calc(1.6326530612vw + 13.8775510204px );
  }
}
.p-index_point__teacher__company {
  margin-top: 40px;
  margin-left: -20px;
  margin-right: -40px;
  background-color: #ededed;
  display: flex;
  align-items: flex-start;
  padding: 40px 60px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__teacher__company {
    margin-top: calc(1.6326530612vw + 13.8775510204px );
    margin-left: calc(-0.8163265306vw + -6.9387755102px );
    margin-right: calc(-1.6326530612vw + -13.8775510204px );
    padding: calc(0.8163265306vw + 26.9387755102px ) calc(3.2653061224vw + 7.7551020408px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_point__teacher__company {
    margin-left: calc(-1.6326530612vw + -13.8775510204px );
    margin-right: calc(-1.6326530612vw + -13.8775510204px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__teacher__company {
    flex-direction: column;
    align-items: center;
  }
}
.p-index_point__teacher__company .pic {
  min-width: 204px;
  max-width: 204px;
  margin-right: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__teacher__company .pic {
    margin-right: calc(3.2653061224vw + -12.2448979592px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__teacher__company .pic {
    margin-right: 0;
    margin-bottom: calc(0.8163265306vw + 16.9387755102px );
  }
}
.p-index_point__creator {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__creator {
    margin-bottom: calc(1.6326530612vw + 23.8775510204px );
  }
}
.p-index_point__creator__slider {
  overflow: visible !important;
}
.p-index_point__creator__slider .c-slider_arrow {
  top: 50%;
}
@media only screen and (max-width: 767px) {
  .p-index_point__creator__slider .c-slider_arrow {
    top: 30%;
  }
}
.p-index_point__creator__slider .c-slider_arrow.-next {
  right: -20px;
}
@media only screen and (max-width: 767px) {
  .p-index_point__creator__slider .c-slider_arrow.-next {
    right: -10px;
  }
}
.p-index_point__creator__slider .c-slider_arrow.-prev {
  left: -20px;
}
@media only screen and (max-width: 767px) {
  .p-index_point__creator__slider .c-slider_arrow.-prev {
    left: -10px;
  }
}
.p-index_point__creator__item {
  border: 1px dotted #222;
  padding: 45px 60px 55px 50px;
  position: relative;
  z-index: 1;
  background-color: #fff;
  height: auto !important;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__creator__item {
    padding: calc(2.0408163265vw + 12.3469387755px ) calc(4.0816326531vw + -5.306122449px ) calc(2.4489795918vw + 15.8163265306px ) calc(3.2653061224vw + -2.2448979592px );
  }
}
.p-index_point__creator__item::before {
  content: "";
  display: block;
  width: 210px;
  height: 230px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ededed;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__creator__item::before {
    width: calc(8.5714285714vw + 72.8571428571px );
    height: calc(9.387755102vw + 79.7959183673px );
  }
}
.p-index_point__creator__item .en {
  font-family: "Futura", sans-serif;
  font-weight: bold;
  -webkit-text-stroke: 1px #fa4b54;
  color: transparent;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  position: absolute;
  top: 20px;
  left: 12px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__creator__item .en {
    font-size: calc(0.9795918367vw + 1.2326530612rem );
    top: calc(0.8163265306vw + 6.9387755102px );
    left: calc(0.4897959184vw + 4.1632653061px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_point__creator__item .en {
    display: none;
  }
}
.p-index_point.-performance .p-index_point__creator__item .en {
  -webkit-text-stroke: 1px #bd9ee5;
}
.p-index_point.-production .p-index_point__creator__item .en {
  -webkit-text-stroke: 1px #72afff;
}
.p-index_point.-promotion .p-index_point__creator__item .en {
  -webkit-text-stroke: 1px #ff8989;
}
.p-index_point.-monetize .p-index_point__creator__item .en {
  -webkit-text-stroke: 1px #64e2c3;
}
.p-index_point.-technology .p-index_point__creator__item .en {
  -webkit-text-stroke: 1px #e9f1f3;
}
.p-index_point__creator__item .thumb {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__creator__item .thumb {
    margin-bottom: calc(0.5714285714vw + 5.8571428571px );
  }
}
.p-index_point__creator__item .title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fa4b54;
  line-height: 1.66;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__creator__item .title {
    font-size: calc(0.6530612245vw + 1.3551020408rem );
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_point__creator__item .title {
    line-height: 1.4;
  }
}
.p-index_point.-performance .p-index_point__creator__item .title {
  color: #bd9ee5;
}
.p-index_point.-production .p-index_point__creator__item .title {
  color: #72afff;
}
.p-index_point.-promotion .p-index_point__creator__item .title {
  color: #ff8989;
}
.p-index_point.-monetize .p-index_point__creator__item .title {
  color: #64e2c3;
}
.p-index_point.-technology .p-index_point__creator__item .title {
  color: #e9f1f3;
}
.p-index_point__creator__item .title::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  border-bottom: 5px dotted #fa4b54;
  margin-top: 15px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__creator__item .title::after {
    width: calc(1.1428571429vw + 9.7142857143px );
    margin-top: calc(0.5714285714vw + 5.8571428571px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_point__creator__item .title::after {
    border-bottom: 3px dotted #fa4b54;
  }
}
.p-index_point.-performance .p-index_point__creator__item .title::after {
  border-color: #bd9ee5;
}
.p-index_point.-production .p-index_point__creator__item .title::after {
  border-color: #72afff;
}
.p-index_point.-promotion .p-index_point__creator__item .title::after {
  border-color: #ff8989;
}
.p-index_point.-monetize .p-index_point__creator__item .title::after {
  border-color: #64e2c3;
}
.p-index_point.-technology .p-index_point__creator__item .title::after {
  border-color: #e9f1f3;
}
.p-index_point__creator__item .c-sns_list {
  margin-top: 10px;
}
.p-index_point__industry__slider {
  position: relative;
}
.p-index_point__industry__slider .c-slider_arrow.-prev {
  left: -25px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__industry__slider .c-slider_arrow.-prev {
    left: calc(-0.8163265306vw + -11.9387755102px );
  }
}
.p-index_point__industry__slider .c-slider_arrow.-next {
  right: -25px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__industry__slider .c-slider_arrow.-next {
    right: calc(-0.8163265306vw + -11.9387755102px );
  }
}
.p-index_point__industry__item {
  display: flex;
  position: relative;
  border: 1px dotted;
  padding: 30px;
  background-color: #fff;
  transition: all 0.4s ease;
  cursor: pointer;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__industry__item {
    padding: calc(1.8028846154vw + 1.171875px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__industry__item {
    padding: calc(0.8163265306vw + 16.9387755102px );
    flex-direction: column;
  }
}
.p-index_point__industry__item .textarea {
  margin-right: 30px;
  color: #221717;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__industry__item .textarea {
    margin-right: calc(3.6057692308vw + -27.65625px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__industry__item .textarea {
    margin-right: 0;
  }
}
.p-index_point__industry__item .textarea .en {
  font-size: 1.3rem;
  font-family: "Futura", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.p-index_point__industry__item .textarea .en::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: currentColor;
  display: block;
  margin-top: 10px;
}
.p-index_point__industry__item .textarea .num {
  font-family: "Futura", sans-serif;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-weight: bold;
  color: #64e2c3;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__industry__item .textarea .num {
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
.p-index_point__industry__item .textarea .num small {
  font-size: 1.5rem;
  display: inline-block;
  margin-right: 5px;
}
.p-index_point__industry__item .textarea .num .stroke {
  -webkit-text-stroke: 1px #64e2c3;
  color: transparent;
  font-size: 6rem;
  display: flex;
  align-items: center;
  line-height: 1;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__industry__item .textarea .num .stroke {
    font-size: calc(1.6326530612vw + 3.387755102rem );
  }
}
.p-index_point__industry__item .textarea .num .stroke::before {
  content: "#";
  display: block;
  font-size: 4rem;
}
.p-index_point__industry__item .textarea .catch {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.59;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__industry__item .textarea .catch {
    font-size: calc(0.6944444444vw + 1.0895833333rem );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__industry__item .textarea .catch {
    font-size: calc(0.3265306122vw + 1.6775510204rem );
  }
}
.p-index_point__industry__item .pic {
  min-width: 220px;
  max-width: 220px;
  margin-left: auto;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__industry__item .pic {
    min-width: calc(14.4230769231vw + -10.625px );
    max-width: calc(14.4230769231vw + -10.625px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_point__industry__item .pic {
    min-width: calc(78.125vw + -499.21875px );
    max-width: calc(78.125vw + -499.21875px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_point__industry__item .pic {
    margin-top: calc(1.6326530612vw + 13.8775510204px );
    min-width: 100%;
    max-width: 100%;
  }
}
.p-index_point__industry__item .check {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #fede71;
  text-align: center;
  position: absolute;
  right: 20px;
  bottom: -20px;
  background-color: #ffe836;
  font-weight: bold;
  font-family: "Futura", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__industry__item .check {
    font-size: calc(0.1632653061vw + 1.2387755102rem );
    width: calc(1.6326530612vw + 83.8775510204px );
    height: calc(1.6326530612vw + 83.8775510204px );
    right: calc(0.8163265306vw + 6.9387755102px );
  }
}
.p-index_point__industry__item .check i {
  font-size: 1.8rem;
  display: block;
  margin-top: 5px;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_point__industry__item .check i {
    font-size: calc(0.2448979592vw + 1.4081632653rem );
  }
}
.is-mouse .p-index_point__industry__item:hover {
  background-color: #64e2c3;
}
.is-mouse .p-index_point__industry__item:hover .textarea {
  color: #fff;
}
.is-mouse .p-index_point__industry__item:hover .textarea .num {
  color: #fff;
}
.is-mouse .p-index_point__industry__item:hover .textarea .num .stroke {
  -webkit-text-stroke: 1px #fff;
}
.p-index_point__other-creator .c-button01 a i {
  font-size: 1em;
}

.p-index_cta {
  position: relative;
  margin-bottom: 158px;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .p-index_cta {
    margin-bottom: calc(6.3673469388vw + 56.1224489796px );
  }
}
.p-index_cta .c-main_catch {
  position: relative !important;
  top: auto;
  left: auto;
  margin-bottom: 105px;
  z-index: 3;
}
@media only screen and (max-width: 1599px) {
  .p-index_cta .c-main_catch {
    margin-bottom: calc(7.1020408163vw + -8.6326530612px );
  }
}
.p-index_cta.js-anim_elm .c-main_catch {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease;
}
.p-index_cta.is-act .c-main_catch {
  opacity: 1;
  transform: translateX(0px);
}
.p-index_cta__catch {
  margin-left: -120px;
  padding-top: 171px;
  z-index: 3;
  position: relative;
  margin-bottom: 50px;
  width: 450px;
}
@media only screen and (max-width: 1599px) {
  .p-index_cta__catch {
    margin-left: calc(-9.7959183673vw + 36.7346938776px );
    padding-top: calc(-1.5510204082vw + 195.8163265306px );
    margin-bottom: calc(3.0204081633vw + 1.6734693878px );
    width: calc(17.9591836735vw + 162.6530612245px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_cta__catch {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_cta__catch {
    margin-left: auto;
  }
}
.js-anim_elm .p-index_cta__catch {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}
.is-act .p-index_cta__catch {
  opacity: 1;
  transform: translateX(0);
}
.p-index_cta__illust {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 75.4vw;
}
@media only screen and (max-width: 767px) {
  .p-index_cta__illust {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: calc(22.4489795918vw + 208.8163265306px );
  }
}
.p-index_cta__illust img {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .p-index_cta__illust img {
    height: 100%;
    object-fit: cover;
  }
}
.js-anim_elm .p-index_cta__illust {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease 0.4s;
}
@media only screen and (max-width: 767px) {
  .js-anim_elm .p-index_cta__illust {
    transform: translate(-50%, -20px);
  }
}
.is-act .p-index_cta__illust {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  .is-act .p-index_cta__illust {
    transform: translate(-50%, 0px);
  }
}
.p-index_cta__en {
  position: absolute;
  width: 100%;
  height: 70px;
  bottom: 30px;
  left: 0;
  z-index: 2;
  background-image: url(../../img/index/cta_en.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
  animation: loop_en 40s linear infinite reverse;
}
@media only screen and (max-width: 3840px) and (min-width: 320px) and (min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5) {
  .p-index_cta__en {
    background-image: url(../../img/index/cta_en@2x.png);
  }
}
@media only screen and (max-width: 1599px) {
  .p-index_cta__en {
    height: calc(2.8571428571vw + 24.2857142857px );
  }
}
.js-anim_elm .p-index_cta__en {
  opacity: 0;
  transition: all 0.8s ease 0.4s;
}
.is-act .p-index_cta__en {
  opacity: 1;
}
@media only screen and (max-width: 1023px) {
  .p-index_cta .c-container {
    width: 100%;
  }
}
.p-index_cta .c-wave {
  width: 620px;
  position: absolute;
  top: 30px;
  left: 80px;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-index_cta .c-wave {
    width: calc(25.306122449vw + 215.1020408163px );
    top: calc(-8.9795918367vw + 173.6734693878px );
    left: calc(6.5306122449vw + -24.4897959184px );
  }
}
.p-index_cta .c-cta__row {
  position: relative;
  z-index: 5;
}

.p-index_event {
  margin-bottom: 100px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-index_event {
    margin-bottom: calc(4.0816326531vw + 34.693877551px );
  }
}
.p-index_event .c-bg_obj {
  z-index: -1;
}
.p-index_event .c-bg_obj.-no01 {
  top: -70px;
  left: -34px;
}
@media only screen and (max-width: 1599px) {
  .p-index_event .c-bg_obj.-no01 {
    top: calc(-8.9795918367vw + 73.6734693878px );
  }
}
.p-index_event .c-bg_obj.-no02 {
  top: 185px;
  right: -100px;
}
@media only screen and (max-width: 767px) {
  .p-index_event .c-bg_obj.-no02 {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_event .c-container {
    width: 100%;
  }
}
.p-index_event__row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (max-width: 1599px) {
  .p-index_event__row {
    margin-left: calc(-1.6326530612vw + 6.1224489796px );
    margin-right: calc(-1.6326530612vw + 6.1224489796px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_event__row {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.p-index_event__item {
  padding: 0 20px;
  width: calc(100% / 3);
}
@media only screen and (max-width: 1599px) {
  .p-index_event__item {
    padding: 0 calc(1.6326530612vw + -6.1224489796px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_event__item {
    width: 100%;
    padding: 0;
  }
}

.p-index_illustrator {
  position: relative;
  z-index: 2;
  margin-bottom: 65px;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator {
    margin-bottom: calc(2.4489795918vw + 25.8163265306px );
  }
}
.p-index_illustrator::before {
  content: "";
  display: block;
  position: absolute;
  top: 38.5px;
  left: 0;
  width: 100%;
  height: 315px;
  background-color: #fede71;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 11%, transparent 11%);
  background-size: 25px 25px;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator::before {
    top: calc(1.4693877551vw + 14.4897959184px );
    height: calc(12.8163265306vw + 109.9387755102px );
    background-size: calc(1.0612244898vw + 8.0204081633px ) calc(1.0612244898vw + 8.0204081633px );
  }
}
.p-index_illustrator__title {
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator__title {
    margin-bottom: calc(1.2244897959vw + 10.4081632653px );
  }
}
.p-index_illustrator__title .main {
  font-size: 10rem;
  font-family: "Futura", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator__title .main {
    font-size: calc(4.7346938776vw + 2.4244897959rem );
  }
}
.p-index_illustrator__title .script {
  width: 340px;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator__title .script {
    width: calc(13.8775510204vw + 117.9591836735px );
    top: calc(1.6326530612vw + 13.8775510204px );
  }
}
.p-index_illustrator__block {
  padding: 40px 60px;
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  border: 1px dotted #222;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator__block {
    padding: calc(1.6326530612vw + 13.8775510204px ) calc(2.4489795918vw + 20.8163265306px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_illustrator__block {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_illustrator__block {
    flex-direction: column;
  }
}
.p-index_illustrator__block + .p-index_illustrator__block {
  margin-top: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator__block + .p-index_illustrator__block {
    margin-top: calc(0.8163265306vw + 6.9387755102px );
  }
}
.p-index_illustrator__block__en {
  writing-mode: vertical-lr;
  font-family: "Futura", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-right: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator__block__en {
    margin-right: calc(2.4489795918vw + -9.1836734694px );
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_illustrator__block__en {
    width: 100%;
    writing-mode: horizontal-tb;
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
.p-index_illustrator__block__thumb {
  min-width: 200px;
  max-width: 200px;
  height: 200px;
  margin-right: 40px;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator__block__thumb {
    min-width: calc(3.2653061224vw + 147.7551020408px );
    max-width: calc(3.2653061224vw + 147.7551020408px );
    height: calc(3.2653061224vw + 147.7551020408px );
    margin-right: calc(2.0408163265vw + 7.3469387755px );
  }
}
@media only screen and (max-width: 767px) {
  .p-index_illustrator__block__thumb {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
    text-align: center;
  }
}
.p-index_illustrator__block__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1023px) {
  .p-index_illustrator__block__textarea {
    width: calc(100% - (calc(3.2653061224vw + 147.7551020408px ) + calc(2.0408163265vw + 7.3469387755px )));
  }
}
@media only screen and (max-width: 767px) {
  .p-index_illustrator__block__textarea {
    width: 100%;
  }
}
.p-index_illustrator__block__textarea .title {
  display: flex;
  align-items: flex-start;
}
.p-index_illustrator__block__textarea .title .twitter {
  font-size: 2rem;
  color: #1e9bef;
  margin-top: 13px;
  margin-left: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator__block__textarea .title .twitter {
    font-size: calc(0.3265306122vw + 1.4775510204rem );
    margin-top: calc(0.4897959184vw + 5.1632653061px );
    margin-left: calc(1.2244897959vw + 10.4081632653px );
  }
}
.p-index_illustrator__block__textarea .works dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator__block__textarea .works dt {
    font-size: calc(0.3265306122vw + 1.4775510204rem );
    margin-bottom: calc(0.8163265306vw + 6.9387755102px );
  }
}
.p-index_illustrator__block__textarea .works dd {
  display: flex;
}
.p-index_illustrator__block__textarea .works dd + dd {
  margin-top: 13px;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator__block__textarea .works dd + dd {
    margin-top: calc(0.4897959184vw + 5.1632653061px );
  }
}
.p-index_illustrator__block__textarea .works dd i {
  color: #ff0000;
  font-size: 2rem;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-index_illustrator__block__textarea .works dd i {
    font-size: calc(0.4081632653vw + 1.3469387755rem );
  }
}
.p-index_illustrator__block__textarea .works dd i img,
.p-index_illustrator__block__textarea .works dd i svg {
  vertical-align: middle;
}
.p-index_illustrator__block__textarea .works dd a {
  color: #4888e0;
  display: inline-block;
  text-decoration: underline;
}
.p-index_illustrator__block__textarea .works dd a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .p-index_illustrator__block__textarea .works dd a {
    line-height: 1.4;
  }
}

.p-world_course__button {
  display: flex;
  font-size: res_rem_max(13px, 14px);
  line-height: 1.5;
  font-weight: 700;
  justify-content: center;
}
.p-world_course__button.-border a {
  border: 1px solid #afbdcb;
}
.p-world_course__button a {
  cursor: pointer;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  background-color: #fff;
  color: #112338;
  display: flex;
  position: relative;
  justify-content: center;
  column-gap: 1.5em;
  min-width: 260px;
  text-decoration: none;
  align-items: center;
  transition: 0.25s color cubic-bezier(0.39, 0.575, 0.565, 1);
}
.p-world_course__button a:hover {
  color: var(--world-font-color);
}
.p-world_course__button a[href^="#"] {
  border-radius: 0.375em;
}
.p-world_course__button a[href^="#"] .icon {
  transition: 0.25s background-color cubic-bezier(0.39, 0.575, 0.565, 1);
}
.p-world_course__button a[href^="#"]:hover .icon {
  background-color: #fede71;
}
.p-world_course__button a[href^="#"] .icon {
  max-width: 1.75em;
  min-width: 1.75em;
  height: 1.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #8697aa;
  color: #fff;
}
.p-world_course__button a[href^="#"] .icon i {
  font-size: 0.75em;
}
.p-world_course__button a:not([href^="#"])::before, .p-world_course__button a:not([href^="#"])::after {
  content: "";
  position: absolute;
  top: -3px;
  bottom: -3px;
  color: #fff;
  width: 0.5em;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.p-world_course__button a:not([href^="#"])::before {
  left: -3px;
  border-left: 1px solid;
}
.p-world_course__button a:not([href^="#"])::after {
  right: -3px;
  border-right: 1px solid;
}
.p-world_course__button a:not([href^="#"]) .c-arrow02 {
  max-width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
}
.p-world_course__button a:not([href^="#"])::before, .p-world_course__button a:not([href^="#"])::after {
  transition: 0.5s top cubic-bezier(0.215, 0.61, 0.355, 1), 0.5s left cubic-bezier(0.215, 0.61, 0.355, 1), 0.5s right cubic-bezier(0.215, 0.61, 0.355, 1), 0.5s bottom cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-world_course__button a:not([href^="#"]) .c-arrow02 {
  transition: 0.25s background-color cubic-bezier(0.39, 0.575, 0.565, 1);
}
.p-world_course__button a:not([href^="#"]):hover::before, .p-world_course__button a:not([href^="#"]):hover::after {
  top: -6px;
  bottom: -6px;
}
.p-world_course__button a:not([href^="#"]):hover::before {
  left: -6px;
}
.p-world_course__button a:not([href^="#"]):hover::after {
  right: -6px;
}
.p-world_course__button a:not([href^="#"]):hover .c-arrow02 {
  background-color: var(--world-font-color);
}
.p-world_course__card {
  display: grid;
  grid-auto-rows: min-content;
}
.p-world_course__card a {
  text-decoration: none;
}
.p-world_course__card .c-amount {
  border-radius: res_px_max(5px, 10px);
}
.p-world_course__card__title {
  font-weight: 700;
  line-height: 1.75;
  column-gap: 0.5em;
  row-gap: 0.25em;
  margin-bottom: 1em;
}
.p-world_course__card__title > * {
  display: inline;
}
.p-world_course__card__title .mark {
  text-decoration: underline;
  text-underline-offset: 0.375em;
  text-decoration-color: #fede71;
  text-decoration-skip-ink: none;
  text-decoration-thickness: res_px_max(2px, 4px);
  font-size: 2.4rem;
}
.p-world_course__card__title .year {
  --grad-direction: 90deg;
  color: #222;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  margin-left: 0.5em;
  background: #fede71;
  padding: 0.5em 0.625em;
  border-radius: 0.25em;
  font-size: res_rem_max(10px, 13px);
}
.p-world_course__card .main__data {
  border: 1px solid;
  font-size: res_rem_max(14px, 20px);
  line-height: 1.5;
  padding: 0.25em 0.5em;
  font-weight: 700;
  margin-top: res_px_max(20px, 30px);
}
p.p-world_course__card .main__data {
  display: inline-block;
}

dl.p-world_course__card .main__data {
  display: grid;
  grid-template-columns: max-content 1fr;
}

.p-world_course__card .main__bottom {
  display: flex;
  flex-direction: column;
}
.p-world_course__card .main__bottom__recommend {
  border: 1px solid;
  border-radius: res_px_max(5px, 10px);
  padding: res_px_max(20px, 30px) res_px_max(20px, 40px);
}
.p-world_course__card .main__bottom__recommend .title {
  line-height: 1.5;
  font-weight: 700;
  font-size: res_rem_max(16px, 22px);
  margin-bottom: 0.5em;
}
.p-world_course__card .main__bottom__recommend .list {
  line-height: 1.5;
}
.p-world_course__card .main__bottom__recommend .list li {
  display: flex;
  column-gap: 0.25em;
  align-items: flex-start;
}
.p-world_course__card .main__bottom__recommend .list li:not(:last-child) {
  margin-bottom: 0.25em;
}
.p-world_course__card .main__bottom__recommend .list li::before {
  content: "・";
  font-weight: 700;
  transform: scale(1.5);
}
.p-world_course__card p.main__data {
  display: inline-block;
}
.p-world_course__card dl.main__data {
  display: inline-grid;
  column-gap: 0.25em;
  grid-template-columns: max-content 1fr;
}
