@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
/* ========================================
 *  Font Family
 * ======================================== */
/* ==============================
*   Color
*==============================*/
/* ==============================
*   Font Size
*==============================*/
/*==============================
//  Media Query
//==============================*/
body {
  min-width: 1120px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/*==============================
//  Font Size Rem
//
//  【概要】        font-sizeの単位をremに変換する
//  【第一引数】    希望のfont-size（数字のみ）
//  【備考】        IE対応のためpxでも出力する
//==============================*/
/*==============================
//  Font Size Rem Line Height Half Leading
//
//  【概要】
//      ・font-sizeの単位をremに変換
//      ・行間のサイズをもとに自動でline-heightを指定
//      ・ハーフリーディングを自動調整
//  【第一引数】
//      ・希望のfont-size（数字のみ）
//  【第二引数】
//      ・希望の行間サイズ（数字のみ）
//==============================*/
/*==============================
//
//  【概要】
//      ・pxをvwに変換
//  【第一引数】
//      ・pxサイズ（数字のみ）
//  【第二引数】
//      ・デザイン幅（数字のみ）初期値はf-variableに記述
//==============================*/
/*! 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; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

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 */
  -webkit-text-decoration: underline dotted;
          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 {
  top: -0.5em;
}

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;
  -moz-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;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-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;
  -moz-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: 0;
  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: normal;
}

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

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

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #000000;
  line-height: 1.6;
  position: relative;
  min-width: 1120px;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 1rem;
    min-width: initial;
  }
}

a {
  text-decoration: underline;
  color: #1102BE;
  transition: 0.3s all;
}
a:hover {
  text-decoration: none;
}

button {
  outline: none;
}

td,
th {
  vertical-align: middle;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
}

img {
  max-width: 100%;
  backface-visibility: hidden;
}

[v-cloak] {
  display: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[v-cloak] {
  display: none;
}

main {
  position: relative;
}

.l-inner {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    padding: 0;
  }
}

.c-btn_top {
  position: fixed;
  top: 28px;
  right: 28px;
  width: 540px;
  height: 55px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .c-btn_top {
    top: inherit;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 12vw;
  }
}
.c-btn_top_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-btn_top_wrap li {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-btn_top_wrap li {
    width: 50%;
  }
}
.c-btn_top_wrap li img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.c-btn_top_wrap li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-btn_top_wrap li:hover img {
  filter: brightness(1.2);
}
.c-btn_top_wrap li:hover::before {
  opacity: 1;
}

.c-title_h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-title_h2 {
    font-size: 24px;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 6.6666666667vw;
  }
}

.p-header .logo {
  width: 200px;
  height: 58px;
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-header .logo {
    width: 45.3333333333vw;
    height: 13.0666666667vw;
    top: 6.6666666667vw;
    left: 4vw;
  }
}
.p-header .logo img {
  width: 100%;
}

.p-footer {
  padding: 100px 0 45px;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 17.3333333333vw 4vw 22.6666666667vw;
  }
}
.p-footer_head {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer_head {
    border-bottom: 1px solid #9CBDD4;
    margin-bottom: 9.8666666667vw;
  }
}
.p-footer_head .logo {
  width: 360px;
  height: 104px;
  margin: 0 auto 35px;
}
@media screen and (max-width: 767px) {
  .p-footer_head .logo {
    width: 61.3333333333vw;
    height: 17.8666666667vw;
    margin: 0 auto 5.3333333333vw;
  }
}
.p-footer_head .logo img {
  width: 100%;
}
.p-footer_head_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .p-footer_head_nav {
    justify-content: flex-start;
    margin-bottom: 6.4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_head_nav li {
    text-align: left;
  }
}
.p-footer_head_nav li a {
  font-size: 14px;
  font-weight: 500;
  margin: 0 25px;
  text-decoration: none;
  transform: 0.3s all;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-footer_head_nav li a {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 4vw;
  }
}
.p-footer_head_nav li a:hover {
  color: #1102BE;
}
@media screen and (max-width: 767px) {
  .p-footer_head_nav li:nth-child(1) {
    order: 1;
    width: 38.6666666667vw;
  }
  .p-footer_head_nav li:nth-child(2) {
    order: 3;
    width: 38.6666666667vw;
  }
  .p-footer_head_nav li:nth-child(3) {
    order: 2;
    width: 53.3333333333vw;
  }
  .p-footer_head_nav li:nth-child(4) {
    order: 4;
    width: 53.3333333333vw;
  }
}
.p-footer_bottom {
  text-align: center;
}
.p-footer_bottom .logo {
  width: 292px;
  height: 38px;
  margin: 0 auto 15px;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom .logo {
    width: 77.8666666667vw;
    height: 10.1333333333vw;
    margin: 0 auto 2.6666666667vw;
  }
}
.p-footer_bottom .logo img {
  width: 100%;
}
.p-footer_bottom .copy {
  font-size: 12px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom .copy {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 24px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transform: translateY(100px);
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 16vw;
    right: 4vw;
  }
}
.pagetop.on {
  transform: translateY(0);
}
.pagetop a {
  display: inline-block;
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 14.4vw;
    height: 14.4vw;
  }
}
.pagetop a:hover {
  opacity: 0.8;
}

.p-top {
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
  position: relative;
  background: url(../../src/img/bg_main.png) center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .p-top {
    background: none;
  }
  .p-top::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(../../src/img/bg_main.png) center top no-repeat;
    background-size: cover;
  }
}
.p-top_mv {
  width: 100%;
  height: auto;
  z-index: 1;
}
.p-top_about {
  width: 100%;
  height: auto;
  background: linear-gradient(267deg, #100B64 26.75%, #0005B8 77.37%);
  /*@include mq() {
      width: 100%;
      height: pw(547);
      margin: 0 auto;
      background: linear-gradient(179deg, #100B64 27.6%, #0005B8 49.77%);
  }

  &_wrap {
      position: absolute;
      width: 1255px;
      top: 73px;
      left: 50%;
      margin-left: -730px;

      @include mq(pc-inner) {
          width: 95%;
          left: 3%;
          margin-left: 0;
      }

      @include mq() {
          width: calc(100% - pw(30));
          top: inherit;
          bottom: pw(-62);
          left: pw(15);
          margin-left: 0;
      }

      img {
          width: 100%;
      }
  }*/
}
.p-top_about_wrap {
  max-width: 1080px;
  padding: 85px 0 130px 400px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap {
    max-width: calc(100% - 8vw);
    padding: 16vw 0 58.6666666667vw;
  }
}
.p-top_about_wrap_ditail {
  width: 100%;
  text-align: left;
}
.p-top_about_wrap_ditail .ttl {
  font-size: 30px;
  color: #EA67A2;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap_ditail .ttl {
    font-size: 24px;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 5.3333333333vw;
  }
}
.p-top_about_wrap_ditail .txt {
  font-size: 20px;
  color: #ffffff;
  line-height: 215%;
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap_ditail .txt {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 180%;
    letter-spacing: 0.05em;
  }
}
.p-top_about_wrap_bnr {
  position: absolute;
  width: calc(100% - 400px);
  right: 0;
  bottom: -85px;
}
.p-top_about_wrap_bnr img {
  filter: drop-shadow(4px 14px 25px rgba(16, 11, 100, 0.15));
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap_bnr {
    position: relative;
    width: 100%;
    right: inherit;
    bottom: inherit;
    margin-top: 5.3333333333vw;
  }
}
.p-top_about_wrap_bnr a {
  position: relative;
  display: inline-block;
}
.p-top_about_wrap_bnr a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-top_about_wrap_bnr a:hover img {
  filter: brightness(1.2) drop-shadow(4px 14px 25px rgba(16, 11, 100, 0.15));
}
.p-top_about_wrap_bnr a:hover::before {
  opacity: 1;
}
.p-top_about_wrap_img {
  position: absolute;
  width: 434px;
  left: -90px;
  bottom: -40px;
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap_img {
    width: 70.9333333333vw;
    left: 10.6666666667vw;
    bottom: -14.9333333333vw;
  }
}
.p-top_nayami {
  width: 100%;
  padding: 200px 0 110px;
  background: url(../../src/img/bg_nayami.png) center top 135px no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top_nayami {
    padding: 28vw 0 21.3333333333vw;
    background: none;
  }
}
.p-top_nayami_wrap {
  width: 1084px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top_nayami_wrap {
    width: 100%;
  }
}
.p-top_seminar {
  width: 100%;
  background: linear-gradient(97deg, #E5EDFB 2.56%, #FFF 26.91%, #E5EDFB 96.19%);
  padding: 88px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_seminar {
    padding: 24vw 0;
  }
}
.p-top_seminar::before {
  position: absolute;
  content: "";
  background: url(../../src/img/line.png) top left repeat-x;
  width: 100%;
  height: 13px;
  left: 0;
  top: 7px;
}
.p-top_seminar::after {
  position: absolute;
  content: "";
  background: url(../../src/img/line.png) top left repeat-x;
  width: 100%;
  height: 13px;
  left: 0;
  bottom: 13px;
}
.p-top_seminar_wrap {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top_seminar_wrap {
    width: calc(100% - 8vw);
    margin: 0 4vw;
  }
}
.p-top_seminar_wrap .seminar-item {
  padding: 20px 0;
  width: 100%;
  border-top: 1px solid #B6CCDB;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top_seminar_wrap .seminar-item {
    padding: 5.3333333333vw 0;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-top_seminar_wrap .seminar-item .seminar-day {
  display: flex;
  align-items: center;
}
.p-top_seminar_wrap .seminar-item .seminar-day .blue {
  color: #1102BE;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .p-top_seminar_wrap .seminar-item .seminar-day .blue {
    margin-right: 1.3333333333vw;
  }
}
.p-top_seminar_wrap .seminar-item .seminar-day .day {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_seminar_wrap .seminar-item .seminar-day .day {
    margin-left: 4vw;
  }
}
.p-top_seminar_wrap .seminar-item .seminar-day .new-tag {
  margin-left: 11px;
  width: 41px;
  height: 17px;
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EA67A2;
}
@media screen and (max-width: 767px) {
  .p-top_seminar_wrap .seminar-item .seminar-day .new-tag {
    margin-left: 2.1333333333vw x;
    width: 10.6666666667vw;
    height: 4.5333333333vw;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-top_seminar_wrap .seminar-item .seminar-ttl {
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_seminar_wrap .seminar-item .seminar-ttl {
    margin-top: 2.6666666667vw;
    text-align: justify;
    word-break: break-all;
  }
}
.p-top_seminar_wrap .seminar-item .seminar-txt {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-top_seminar_wrap .seminar-item .seminar-txt {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 2.6666666667vw;
    line-height: 1.8;
    text-align: justify;
    word-break: break-all;
  }
}
.p-top_cv {
  width: 100%;
  background: url(../../src/img/cv_bg.png) no-repeat;
  background-size: cover;
  padding: 95px 0;
}
@media screen and (max-width: 767px) {
  .p-top_cv {
    background: url(../../src/img/cv_bg_sp.png) no-repeat;
    background-size: cover;
    padding: 16vw 0;
  }
}
.p-top_cv_wrap {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top_cv_wrap {
    width: calc(100% - 8vw);
    margin: 0 4vw;
    flex-flow: column;
  }
}
.p-top_cv_wrap li {
  margin: 0 30px;
  position: relative;
  display: inline-block;
  /*overflow: hidden;*/
}
@media screen and (max-width: 767px) {
  .p-top_cv_wrap li {
    margin: 0;
  }
}
.p-top_cv_wrap li img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}
.p-top_cv_wrap li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-top_cv_wrap li:hover img {
  filter: brightness(1.2);
}
.p-top_cv_wrap li:hover::before {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-top_cv_wrap li:first-of-type {
    margin-bottom: 5.3333333333vw;
  }
}
.p-top_cv_wrap li:first-of-type img {
  box-shadow: 0px 0px 54px 0px rgba(234, 103, 162, 0.6);
}
.p-top_cv_wrap li:last-of-type img {
  box-shadow: 0px 0px 40px 0px rgba(91, 124, 255, 0.5);
}
.p-top_features {
  width: 100%;
  height: 504px;
  position: relative;
  background: url(../../src/img/features01.png) center top no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top_features {
    height: 93.3333333333vw;
    background: url(../../src/img/features01_sp.png) no-repeat;
    background-size: cover;
  }
}
.p-top_features_wrap {
  position: absolute;
  width: 1168px;
  top: 341px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top_features_wrap {
    width: 100%;
    top: 77.3333333333vw;
    left: 0;
    transform: translateX(0);
  }
}
.p-top_director {
  width: 100%;
  padding: 328px 0 95px;
}
@media screen and (max-width: 767px) {
  .p-top_director {
    width: calc(100% - 8vw);
    padding: 301.3333333333vw 0 16vw;
    margin: 0 4vw;
  }
}
.p-top_fm {
  width: 100%;
  height: 368px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_fm {
    height: auto;
  }
}
.p-top_fm_wrap {
  position: absolute;
  width: 1435px;
  top: 0;
  left: 50%;
  margin-left: -870px;
}
@media screen and (max-width: 767px) {
  .p-top_fm_wrap {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
  }
}
.p-top_plan {
  width: 100%;
  padding: 106px 0 88px;
}
@media screen and (max-width: 767px) {
  .p-top_plan {
    padding: 21.3333333333vw 0;
  }
}
.p-top_plan_wrap {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top_plan_wrap {
    width: calc(100% - 8vw);
    margin: 0 4vw;
  }
}
.p-top_salon {
  width: 100%;
  padding: 65px 0 60px;
  background: linear-gradient(97deg, #E5EDFB 2.56%, #FFF 26.91%, #E5EDFB 96.19%);
}
@media screen and (max-width: 767px) {
  .p-top_salon {
    padding: 0 0 21.3333333333vw;
    background: none;
  }
}
.p-top_salon_wrap {
  width: 1083px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top_salon_wrap {
    width: calc(100% - 8vw);
    margin: 0 4vw;
  }
}
.p-top_interview {
  width: 100%;
  height: 740px;
  padding: 0 0 224px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_interview {
    height: auto;
    padding: 0;
  }
}
.p-top_interview_bg {
  width: 923px;
  height: 515px;
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 59px;
}
@media screen and (max-width: 1120px) {
  .p-top_interview_bg {
    right: 35%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top_interview_bg {
    display: none;
  }
}
.p-top_interview_wrap {
  position: absolute;
  width: 716px;
  height: 434px;
  top: 200px;
  left: 50%;
  margin-left: -182px;
}
@media screen and (max-width: 1120px) {
  .p-top_interview_wrap {
    left: 58%;
  }
}
@media screen and (max-width: 767px) {
  .p-top_interview_wrap {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    margin-left: 0;
  }
}
.p-top_interview_wrap_btn {
  width: 420px;
  height: 90px;
  position: absolute;
  bottom: 72px;
  left: 50%;
  margin-left: -240px;
}
@media screen and (max-width: 1120px) {
  .p-top_interview_wrap_btn {
    left: 16%;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top_interview_wrap_btn {
    width: 92vw;
    height: auto;
    bottom: 16vw;
    left: 4vw;
    margin-left: 0;
  }
}
.p-top_interview_wrap_btn a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.p-top_interview_wrap_btn a img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.p-top_interview_wrap_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-top_interview_wrap_btn a:hover img {
  filter: brightness(1.2);
}
.p-top_interview_wrap_btn a:hover::before {
  opacity: 1;
}

.u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}