@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Maru+Gothic:wght@500;700&display=swap");
/* ========================================
 *  Font Family
 * ======================================== */
/* ==============================
*   Color
*==============================*/
/* ==============================
*   Font Size
*==============================*/
/*==============================
//  Media Query
//==============================*/
body {
  min-width: 1240px;
}

@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に記述
//==============================*/
/*==============================
//  px→vwの計算
//==============================*/
/*! 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: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333333;
  line-height: 200%;
  position: relative;
  min-width: 1240px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 0.8888888889rem;
    min-width: inherit;
  }
}

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

button {
  outline: none;
}

td,
th {
  vertical-align: middle;
}

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

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

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

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: #333333;
  }
}
main {
  padding: 0;
}

.l-section {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 210px 0 170px;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 21.3333333333vw 5.3333333333vw 16vw;
  }
}
.l-section.bg_pink {
  background: url(../../src/img/bg_pink.png) top center repeat-y;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .l-section.bg_pink {
    background-size: 200% auto;
  }
}
.l-section.bg_yellow {
  background: url(../../src/img/bg_yellow.png) top center repeat-y;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .l-section.bg_yellow {
    background: url(../../src/img/bg_yellow.png) top 180px center repeat-y;
    background-size: 200% auto;
  }
}
.l-section.bg_pink2 {
  background-color: #D9507E;
}

.l-inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0;
    background: #ffffff;
  }
}
.l-inner.right {
  border-radius: 30px 0 0 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-inner.right {
    border-radius: 15px;
  }
}
.l-inner.right::before {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.2) 8.89%, rgba(255, 255, 255, 0.85) 100%);
  width: calc((100vw - 1215px) / 2);
  height: 100%;
  left: 100%;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .l-inner.right::before {
    display: none;
  }
}
.l-inner.left {
  border-radius: 0 30px 30px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-inner.left {
    border-radius: 15px;
  }
}
.l-inner.left::before {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.85) 8.89%, rgba(255, 255, 255, 0.2) 100%);
  width: calc((100vw - 1215px) / 2);
  height: 100%;
  right: 100%;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .l-inner.left::before {
    display: none;
  }
}

/* ---------------------------------------------------------------------------
 * アニメーション
--------------------------------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 50px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-btn_movie {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn_movie {
    width: 100%;
  }
}
.c-btn_movie a {
  width: 100%;
  height: 70px;
  padding: 0 30px 0 0;
  border-radius: 100px;
  background-image: url(../../src/img/bg.png), linear-gradient(105deg, #EB6099 18.96%, #D73F7D 74.29%);
  background-position: 0% 0%;
  background-repeat: repeat, no-repeat;
  background-size: 100px 100px, cover;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 150%;
  font-size: 24px;
  transition: 0.3s all;
  margin: 0;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-btn_movie a {
    height: 15.2vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    padding: 0;
    line-height: 15.2vw;
    padding: 0 2.6666666667vw 0 0;
  }
}
.c-btn_movie a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 70px;
  width: 37px;
  height: 23px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/movie_icon.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-btn_movie a::after {
    right: 12vw;
    width: 8.8vw;
    height: 5.6vw;
  }
}
.c-btn_movie a:hover {
  opacity: 0.8;
}
.c-btn_download {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn_download {
    width: 100%;
  }
}
.c-btn_download a {
  width: 100%;
  height: 70px;
  padding: 0 30px 0 0;
  border-radius: 10px;
  background: #ffffff url(../../src/img/bg.png) top left repeat;
  background-size: 100px 100px;
  color: #D53E7C;
  text-align: center;
  position: relative;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 150%;
  font-size: 24px;
  transition: 0.3s all;
  margin: 0;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-btn_download a {
    height: 15.2vw;
    font-size: 18px;
    font-size: 1rem;
    padding: 0;
    line-height: 15.2vw;
    padding: 0 4.8vw 0 0;
  }
}
.c-btn_download a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/download_icon.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-btn_download a::after {
    right: 4vw;
    width: 6.4vw;
    height: 6.4vw;
  }
}
.c-btn_download a:hover {
  opacity: 0.8;
}
.c-btn_cv {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn_cv {
    width: 100%;
  }
}
.c-btn_cv a {
  width: 100%;
  height: 70px;
  padding: 0 30px 0 0;
  border-radius: 100px;
  background-color: #ffffff;
  color: #D53E7C;
  text-align: center;
  position: relative;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 150%;
  font-size: 24px;
  transition: 0.3s all;
  margin: 0;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-btn_cv a {
    height: 15.2vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    padding: 0;
  }
}
.c-btn_cv a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 60px;
  width: 28px;
  height: 30px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/arrow_p.png) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_cv a::after {
    right: 13.3333333333vw;
    width: 5.6vw;
    height: 5.8666666667vw;
  }
}
.c-btn_cv a:hover::after {
  right: 55px;
}
.c-btn_right {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn_right {
    width: 100%;
  }
}
.c-btn_right a {
  width: 100%;
  height: 70px;
  padding: 0 30px 0 0;
  border-radius: 100px;
  background-image: url(../../src/img/bg.png), linear-gradient(105deg, #EB6099 18.96%, #D73F7D 74.29%);
  background-position: 0% 0%;
  background-repeat: repeat, no-repeat;
  background-size: 100px 100px, cover;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 150%;
  font-size: 24px;
  transition: 0.3s all;
  margin: 0;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-btn_right a {
    height: 15.2vw;
    font-size: 18px;
    font-size: 1rem;
    line-height: 15.2vw;
    padding: 0 2.6666666667vw 0 0;
  }
}
.c-btn_right a span {
  position: relative;
}
.c-btn_right a span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -43px;
  width: 28px;
  height: 30px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/arrow_w.png) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_right a span::after {
    right: -8vw;
    width: 5.3333333333vw;
    height: 5.8666666667vw;
  }
}
.c-btn_right a:hover {
  opacity: 0.8;
}
.c-btn_right a:hover span::after {
  right: -48px;
}
.c-btn_right.txts a {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .c-btn_right.txts a {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.c-btn_left {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn_left {
    width: 100%;
  }
}
.c-btn_left a {
  width: 100%;
  height: 70px;
  padding: 0 0 0 30px;
  border-radius: 100px;
  background-image: url(../../src/img/bg.png), linear-gradient(105deg, #EB6099 18.96%, #D73F7D 74.29%);
  background-position: 0% 0%;
  background-repeat: repeat, no-repeat;
  background-size: 100px 100px, cover;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 150%;
  font-size: 24px;
  transition: 0.3s all;
  margin: 0;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-btn_left a {
    height: 15.2vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    padding: 0;
    line-height: 15.2vw;
    padding: 0 0 0 2.6666666667vw;
  }
}
.c-btn_left a span {
  position: relative;
}
.c-btn_left a span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -43px;
  width: 28px;
  height: 30px;
  transform: translateY(-50%) scaleX(-1);
  background: url(../../src/img/icon/arrow_w.png) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_left a span::after {
    left: -8vw;
    width: 5.3333333333vw;
    height: 5.8666666667vw;
  }
}
.c-btn_left a:hover {
  opacity: 0.8;
}
.c-btn_left a:hover span::after {
  left: -48px;
}

.c-list_check li {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .c-list_check li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 2.6666666667vw;
    padding-left: 7.7333333333vw;
  }
}
.c-list_check li:last-of-type {
  margin-bottom: 0px;
}
.c-list_check li::before {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  background: url(../../src/img/icon/list_icon.svg) center center no-repeat;
  background-size: cover;
  top: 3px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-list_check li::before {
    width: 5.0666666667vw;
    height: 5.0666666667vw;
    top: 0.8vw;
  }
}
.c-list_check2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .c-list_check2 {
    grid-template-columns: 1fr;
    gap: 3.2vw;
  }
}
.c-list_check2 li {
  background-color: #FFF6F9;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding: 30px 30px 30px 70px;
}
@media screen and (max-width: 767px) {
  .c-list_check2 li {
    border-radius: 6px;
    font-size: 18px;
    font-size: 1rem;
    padding: 4vw 4vw 4vw 11.4666666667vw;
  }
}
.c-list_check2 li::before {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  background: url(../../src/img/icon/list_icon.svg) center center no-repeat;
  background-size: cover;
  top: 33px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .c-list_check2 li::before {
    width: 5.0666666667vw;
    height: 5.0666666667vw;
    top: 4.8vw;
    left: 4vw;
  }
}
.c-list_check3 li {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .c-list_check3 li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 3.2vw;
    padding-left: 6.9333333333vw;
  }
}
.c-list_check3 li:last-of-type {
  margin-bottom: 0px;
}
.c-list_check3 li::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../../src/img/icon/list_icon.svg) center center no-repeat;
  background-size: cover;
  top: 3px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-list_check3 li::before {
    width: 5.0666666667vw;
    height: 5.0666666667vw;
    top: 0.2666666667vw;
  }
}
.c-list_dot li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .c-list_dot li {
    padding-left: 3.2vw;
    margin-bottom: 1.3333333333vw;
    font-size: 15px;
    font-size: 0.8333333333rem;
  }
}
.c-list_dot li:last-of-type {
  margin-bottom: 0px;
}
.c-list_dot li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #333333;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 3px;
}
@media screen and (max-width: 767px) {
  .c-list_dot li::before {
    width: 0.8vw;
    height: 0.8vw;
    top: 2.1333333333vw;
    left: 0.5333333333vw;
  }
}

.c-nav_pc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.c-nav_pc_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.c-nav_pc_menu li a {
  margin: 15px 40px 0 0;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #333333;
  line-height: 170%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.c-nav_pc_menu li a img {
  width: 36px;
  height: 36px;
  margin-bottom: 3px;
}
.c-nav_pc_menu li a:hover {
  opacity: 0.8;
  color: #D53E7C;
}
.c-nav_pc_menu li.join a {
  width: 260px;
  height: 80px;
  border-radius: 0 0 0 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: url(../../src/img/bg.png), linear-gradient(105deg, #EB6099 18.96%, #D73F7D 74.29%);
  background-position: 0% 0%;
  background-repeat: repeat, no-repeat;
  background-size: 100px 100px, cover;
  text-decoration: none;
  padding: 8px 0 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-nav_pc_menu li.join a {
    width: 100%;
    height: 17.0666666667vw;
    border-radius: 100px;
    text-align: center;
    padding: 1.8666666667vw 0 0 0;
  }
}
.c-nav_pc_menu li.join a img {
  width: 90%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-nav_pc_menu li.join a img {
    width: 60%;
    height: auto;
  }
}
.c-nav_pc_menu li.join a:hover {
  opacity: 0.8;
}

.p-header.lower .c-nav_pc .c-nav_pc_menu li a {
  margin: 0 40px 0 0;
}
.p-header.lower .c-nav_pc .c-nav_pc_menu li.join a {
  width: 260px;
  height: 100px;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: url(../../src/img/bg.png), linear-gradient(105deg, #EB6099 18.96%, #D73F7D 74.29%);
  background-position: 0% 0%;
  background-repeat: repeat, no-repeat;
  background-size: 100px 100px, cover;
  text-decoration: none;
  padding: 8px 0 0 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-header.lower .c-nav_pc .c-nav_pc_menu li.join a {
    width: 100%;
    height: 17.0666666667vw;
    border-radius: 100px;
    text-align: center;
    padding: 1.8666666667vw 0 0 0;
  }
}
.p-header.lower .c-nav_pc .c-nav_pc_menu li.join a img {
  width: 90%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-header.lower .c-nav_pc .c-nav_pc_menu li.join a img {
    width: 60%;
    height: auto;
  }
}

.c-title-toph2 {
  position: absolute;
  content: "";
  display: block;
  width: 485px;
  height: 83px;
  top: -41px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../../src/img/ttl_bg.svg) center center no-repeat;
  background-size: cover;
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 83px;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-title-toph2 {
    width: 84.2666666667vw;
    height: 14.4vw;
    top: -7.2vw;
    line-height: 14.4vw;
    font-size: 24px;
    font-size: 1.3333333333rem;
  }
}
.c-title-cvh2 {
  font-size: 40px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  line-height: 170%;
  color: #ffffff;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-title-cvh2 {
    font-size: 24px;
    font-size: 1.3333333333rem;
    margin-bottom: 4.5333333333vw;
  }
}
.c-title-cvh2 .en {
  width: 230px;
  height: 48px;
  display: block;
  margin: 0 auto 18px;
}
@media screen and (max-width: 767px) {
  .c-title-cvh2 .en {
    width: 24.5333333333vw;
    height: 5.0666666667vw;
    margin-bottom: 4.5333333333vw;
  }
}
.c-title_h2 {
  width: 100%;
  height: 270px;
  background-color: #D53E7C;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  line-height: 150%;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-title_h2 {
    height: 37.3333333333vw;
    font-size: 18px;
    font-size: 1rem;
    line-height: 170%;
  }
}
.c-title_h2 span {
  display: block;
  width: 261px;
  height: 43px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 767px) {
  .c-title_h2 span {
    width: 31.2vw;
    height: 5.0666666667vw;
    margin: 0 auto 2.6666666667vw;
  }
}
.c-title_h2 em {
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .c-title_h2 em {
    font-size: 24px;
    font-size: 1.3333333333rem;
  }
}
.c-title_h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title_h3 {
    margin-bottom: 4vw;
  }
}
.c-title_h3::before, .c-title_h3::after {
  content: "";
  flex: 1;
  height: 3px;
  background-color: #D53E7C;
  border-radius: 3px;
}
.c-title_h3 span {
  font-size: 26px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .c-title_h3 span {
    font-size: 22px;
    font-size: 1.2222222222rem;
    line-height: 150%;
  }
}
.c-title_h3.yellow::before, .c-title_h3.yellow::after {
  background-color: #FFF000;
}

.p-header {
  width: 100%;
  min-width: 1240px;
  height: 80px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 50px;
    min-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 50px;
  }
}
.p-header.lower {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  z-index: 50;
}
@media screen and (max-width: 1240px) {
  .p-header.lower {
    position: sticky;
  }
}
@media screen and (max-width: 767px) {
  .p-header.lower {
    height: 50px;
  }
}
.p-header.lower .hBox {
  justify-content: space-between;
}
.p-header.lower .hBox .logo {
  width: 189px;
  height: 56px;
  margin: 8px 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header.lower .hBox .logo {
    width: 31.2vw;
    height: 9.0666666667vw;
    margin: 1.6vw 0 0 3.7333333333vw;
  }
}
.p-header.lower .hBox .logo:hover {
  opacity: 0.8;
}
.p-header.lower .hBox .logo img {
  width: 100%;
}
.p-header .hBox {
  width: 100%;
  height: 80px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header .hBox {
    height: 50px;
  }
}
.p-header .hBox .logo {
  display: none;
}
.p-header .hBox .joinbtn a {
  width: 150px;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: url(../../src/img/bg.png), linear-gradient(105deg, #EB6099 18.96%, #D73F7D 74.29%);
  background-position: 0% 0%;
  background-repeat: repeat, no-repeat;
  background-size: 100px 100px, cover;
  text-decoration: none;
  padding: 3px 0 0 0;
  margin: 0 50px 0 0;
}
.p-header .hBox .joinbtn a img {
  width: 85%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-header .hBox .joinbtn {
    display: none;
  }
}
.p-header_spbtn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 60px;
}
@media screen and (min-width: 768px) {
  .p-header_spbtn {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  /*ハンバーガー*/
  #globalMenuSp {
    z-index: 99998;
    color: #333333;
    background: #ffffff;
    text-align: left;
    width: 100vw;
    max-width: 500px;
    height: 100vh;
    transition: top 0.5s ease;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    padding: 60px 20px 20px 20px;
  }
  #globalMenuSp.active {
    display: block;
  }
  .navToggle {
    display: block;
    position: fixed;
    z-index: 99999;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-align: center;
    background-color: #ffffff;
    border: 2px solid #D53E7C;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    right: 11px;
    background: #D53E7C;
    transition: 0.3s ease-in-out;
  }
  .navToggle span:nth-child(1) {
    top: 14px;
  }
  .navToggle span:nth-child(2) {
    top: 22px;
  }
  .navToggle span:nth-child(3) {
    top: 30px;
  }
  .navToggle.active {
    width: 50px;
    height: 50px;
    mix-blend-mode: inherit;
    transition: 0.3s ease-in-out;
  }
  .navToggle.active span:nth-child(1) {
    top: 21px;
    background: #D53E7C;
    transform: rotate(-40deg);
  }
  .navToggle.active span:nth-child(2),
  .navToggle.active span:nth-child(3) {
    top: 21px;
    background: #D53E7C;
    transform: rotate(40deg);
  }
  .naviUl {
    display: block;
    width: 100vw;
    height: auto;
    padding: 50px;
    text-align: center;
  }
  .naviUl li {
    padding: 13px 0;
    text-align: left;
    border-bottom: 1px solid #EF749D;
  }
  .naviUl li a {
    text-decoration: none;
    font-size: 18px;
    font-size: 1rem;
    color: #333333;
    margin: 0;
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    flex-direction: inherit;
    padding-left: 15px;
  }
  .naviUl li a span {
    margin-left: 15px;
  }
  .naviUl li:hover {
    color: #D53E7C;
  }
  .naviUl li:last-of-type {
    border-bottom: none;
    margin-top: 20px;
  }
}
.p-footer {
  width: 100%;
  z-index: 1;
  position: relative;
  background-color: #D53E7C;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 0 5.3333333333vw;
  }
}
.p-footer_cv {
  padding: 90px 0 0;
}
@media screen and (max-width: 767px) {
  .p-footer_cv {
    padding: 13.3333333333vw 0 0;
  }
}
.p-footer_cv .txt {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .p-footer_cv .txt {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 5.0666666667vw;
    line-height: 170%;
  }
}
.p-footer_top {
  padding: 100px 0 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer_top {
    padding: 13.3333333333vw 0 5.3333333333vw;
  }
}
.p-footer_top::before {
  display: block;
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 572px;
  margin-left: -870px;
  height: 505px;
  background: url(../../src/img/foot_bg.png) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-footer_top::before {
    top: -8vw;
    left: -49.0666666667vw;
    width: 90.6666666667vw;
    margin-left: 0;
    height: 80vw;
  }
}
.p-footer_top::after {
  display: block;
  content: "";
  position: absolute;
  top: -200px;
  right: 50%;
  width: 572px;
  margin-right: -880px;
  height: 505px;
  background: url(../../src/img/foot_bg.png) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-footer_top::after {
    top: -61.3333333333vw;
    right: -59.7333333333vw;
    width: 90.6666666667vw;
    margin-right: 0;
    height: 80vw;
  }
}
.p-footer_top .inner {
  width: 1200px;
  border-radius: 30px;
  background-color: #ffffff;
  padding: 55px 150px 35px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-footer_top .inner {
    width: 100%;
    border-radius: 15px;
    padding: 13.3333333333vw 5.3333333333vw 8vw;
  }
}
.p-footer_top .inner .logo {
  width: 168px;
  height: 103px;
  margin: 0 auto 37px;
}
@media screen and (max-width: 767px) {
  .p-footer_top .inner .logo {
    width: 39.4666666667vw;
    height: 24.2666666667vw;
    margin: 0 auto 6.9333333333vw;
  }
}
.p-footer_top .inner .ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .p-footer_top .inner .ttl {
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin-bottom: 4.8vw;
  }
}
.p-footer_top .inner .tel {
  font-size: 16px;
  font-weight: bold;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-footer_top .inner .tel {
    font-size: 14px;
    font-size: 0.7777777778rem;
    text-align: left;
  }
}
.p-footer_top .inner .sponsor {
  width: 100%;
  border-top: 2px solid #FBEDF3;
  margin-top: 40px;
  padding-top: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer_top .inner .sponsor {
    margin-top: 5.8666666667vw;
    padding-top: 5.3333333333vw;
  }
}
.p-footer_top .inner .sponsor p {
  font-size: 16px;
  font-weight: bold;
  line-height: 170%;
  margin-right: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-footer_top .inner .sponsor p {
    font-size: 14px;
    font-size: 0.7777777778rem;
    margin-right: 0;
    margin-bottom: 2.1333333333vw;
  }
}
.p-footer_bottom {
  max-width: 1200px;
  width: 100%;
  padding: 0 0 60px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom {
    justify-content: center;
    flex-direction: column;
    padding: 0 0 8vw;
  }
}
.p-footer_bottom_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom_nav {
    justify-content: center;
    margin-bottom: 2.6666666667vw;
  }
}
.p-footer_bottom_nav li {
  position: relative;
  margin: 0 60px 0 0;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom_nav li {
    margin: 0 13.3333333333vw 0 0;
    font-size: 13px;
    font-size: 0.7222222222rem;
  }
  .p-footer_bottom_nav li:last-child {
    margin: 0 8vw 0 0;
  }
}
.p-footer_bottom_nav li a {
  color: #ffffff;
  text-decoration: none;
}
.p-footer_bottom_nav li a:hover {
  opacity: 0.8;
}
.p-footer_bottom_nav li::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_blank_w.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
.p-footer_bottom_copy {
  text-align: right;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom_copy {
    text-align: center;
    font-size: 13px;
    font-size: 0.7222222222rem;
    line-height: 170%;
  }
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 50px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transform: translateY(100px);
  z-index: 9;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 15px;
    padding-bottom: 0;
  }
}
.pagetop.on {
  transform: translateY(0);
}
.pagetop a {
  display: inline-block;
  width: 60px;
  height: 64px;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 13.0666666667vw;
    height: 13.8666666667vw;
  }
}
.pagetop a:hover {
  opacity: 0.8;
}

.p-top_main {
  width: 100%;
  height: 56.927%;
  background: url(../../src/img/top/mainbg_pc.png) center center no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_main {
    height: 173.33%;
    background: url(../../src/img/top/mainbg_sp.png) center center no-repeat;
    background-size: cover;
  }
}
.p-top_main_logo {
  position: absolute;
  width: 13.958%;
  height: auto;
  top: 5.489%;
  left: 2.34%;
}
@media screen and (max-width: 1500px) {
  .p-top_main_logo {
    width: 200px;
    top: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_main_logo {
    width: 31.4666666667vw;
    top: 4.5333333333vw;
    left: 4vw;
  }
}
.p-top_main_ttl {
  position: absolute;
  top: 5.489%;
  left: 18.5%;
  font-size: min(1.15vw, 22px);
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .p-top_main_ttl {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-top_main_ttl {
    display: block;
    top: inherit;
    bottom: 5.3333333333vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-size: 1rem;
    white-space: nowrap;
  }
}
.p-top_main_date {
  position: absolute;
  top: 10%;
  left: 18.5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1500px) {
  .p-top_main_date {
    top: 170px;
    left: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_main_date {
    top: inherit;
    bottom: -8vw;
    left: 5.3333333333vw;
    z-index: 8;
    white-space: nowrap;
  }
}
.p-top_main_date dt {
  background-color: #D53E7C;
  border: 2px solid #D53E7C;
  border-radius: 6px 0 0 6px;
  color: #ffffff;
  font-size: min(1.2vw, 22px);
  padding: 2px 13px 0 15px;
  font-weight: bold;
  height: 55px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1500px) {
  .p-top_main_date dt {
    height: 50px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_main_date dt {
    font-size: 20px;
    font-size: 1.1111111111rem;
    width: 26.6666666667vw;
    height: 11.7333333333vw;
    padding: 0 6.1333333333vw;
    background-color: #EF749D;
    border: 2px solid #EF749D;
  }
}
.p-top_main_date dd {
  background-color: #ffffff;
  border: 2px solid #D53E7C;
  border-radius: 0 6px 6px 0;
  color: #333333;
  font-size: min(1.2vw, 22px);
  padding: 2px 19px 0;
  font-weight: bold;
  letter-spacing: 0.05em;
  height: 55px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1500px) {
  .p-top_main_date dd {
    height: 50px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_main_date dd {
    font-size: 18px;
    font-size: 1rem;
    width: 62.6666666667vw;
    height: 11.7333333333vw;
    padding: 0 6.1333333333vw;
    border: 2px solid #EF749D;
  }
}
.p-top_main_date dd em {
  font-size: min(1.6vw, 30px);
  font-style: normal;
}
@media screen and (max-width: 1500px) {
  .p-top_main_date dd em {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_main_date dd em {
    font-size: 22px;
    font-size: 1.2222222222rem;
  }
}
.p-top_main_btn {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 1.5%;
  transition: 0.3s all;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  .p-top_main_btn {
    width: 160px;
    height: 160px;
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_main_btn {
    display: none;
  }
}
.p-top_main_btn .imgwrap {
  position: relative;
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 1500px) {
  .p-top_main_btn .imgwrap {
    width: 160px;
    height: 160px;
  }
}
.p-top_main_btn .imgwrap .btn {
  position: absolute;
  width: 184px;
  height: 184px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1500px) {
  .p-top_main_btn .imgwrap .btn {
    width: 147px;
    height: 147px;
  }
}
.p-top_main_btn .imgwrap .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 1500px) {
  .p-top_main_btn .imgwrap .bg {
    width: 160px;
    height: 160px;
  }
}
.p-top_main_btn .imgwrap .bg img {
  /*animation: rotateClockwise 20s linear infinite;*/
}
.p-top_main_btn .imgwrap .bg img:hover {
  animation-play-state: paused;
}
.p-top_main_btn:hover {
  opacity: 0.8;
  bottom: 19%;
}
.p-top_main_wrap {
  width: 100%;
}
.p-top_main_wrap img {
  width: 100%;
}
@media screen and (max-width: 1500px) {
  .p-top_main_wrap img {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_main_wrap img {
    margin-top: 0;
  }
}
.p-top_info {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-top_info {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
.p-top_info_wrap {
  width: 1100px;
  height: 320px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 5.3333333333vw;
  }
}
.p-top_info_wrap_news {
  width: 100%;
  height: 320px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 24px 20px 24px 30px;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_news {
    border-radius: 6px;
    height: 84vw;
    padding: 5.3333333333vw 4vw 5.3333333333vw 5.3333333333vw;
  }
}
.p-top_info_wrap_news-h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 180%;
  margin-bottom: 7px;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_news-h2 {
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin-bottom: 3.2vw;
    padding: 0 0 0 6.6666666667vw;
  }
}
.p-top_info_wrap_news-h2 span {
  position: relative;
}
.p-top_info_wrap_news-h2 span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -45px;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  background: url(../../src/img/menu01.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_news-h2 span::before {
    left: -10.1333333333vw;
    width: 8vw;
    height: 8vw;
  }
}
.p-top_info_wrap_news .news-wrapper {
  width: 100%;
  min-height: 225px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_news .news-wrapper {
    min-height: 61.3333333333vw;
  }
}
.p-top_info_wrap_news .news-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 1px;
}
.p-top_info_wrap_news .news-wrapper ul li {
  width: 100%;
  font-size: 16px;
  padding: 20px 0;
  color: #333333;
  line-height: 170%;
  display: flex;
  flex-direction: column;
  text-align: left;
  border-bottom: 1px solid #D6D6D6;
  margin: 0 15px 1px 0;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_news .news-wrapper ul li {
    font-size: 15px;
    font-size: 0.8333333333rem;
    padding: 4vw 0;
    flex-wrap: wrap;
    margin: 0 1.3333333333vw 1px 0;
  }
}
.p-top_info_wrap_news .news-wrapper ul li .date {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #D53E7C;
  font-family: "Roboto", sans-serif;
  margin-bottom: 4px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_news .news-wrapper ul li .date {
    font-size: 15px;
    font-size: 0.8333333333rem;
    margin-bottom: 0.8vw;
  }
}
.p-top_info_wrap_news .news-wrapper ul li .main {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_news .news-wrapper ul li .main {
    width: 100%;
  }
}
.p-top_info_wrap_news .news-wrapper ul li .main a {
  color: #D53E7C;
  transition: 0.3s all;
  text-decoration: underline;
}
.p-top_info_wrap_news .news-wrapper ul li .main a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.p-top_info_wrap_news .news-wrapper ul li:first-child {
  border-top: 1px solid #D6D6D6;
}
.p-top_info_wrap_news .news-wrapper ul.scrollable-div {
  overflow-y: auto;
  max-height: 225px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_news .news-wrapper ul.scrollable-div {
    max-height: 61.3333333333vw;
  }
}
.p-top_info_wrap_right {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_right {
    gap: 5.3333333333vw;
  }
}
.p-top_info_wrap_bana {
  overflow: hidden;
  width: 100%;
  height: 230px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_bana {
    border-radius: 6px;
    height: 38.6666666667vw;
  }
}
.p-top_info_wrap_bana img {
  border-radius: 10px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_bana img {
    border-radius: 6px;
    width: 100%;
  }
}
.p-top_info_wrap_bana:hover img {
  opacity: 0.8;
}
.p-top_about {
  text-align: center;
}
.p-top_about .c-title-toph2 .en {
  position: absolute;
  left: -376px;
  top: 90px;
}
@media screen and (max-width: 767px) {
  .p-top_about .c-title-toph2 .en {
    left: 5.0666666667vw;
    top: -7.2vw;
  }
}
.p-top_about .l-inner {
  padding: 110px 150px 100px;
}
@media screen and (max-width: 767px) {
  .p-top_about .l-inner {
    padding: 40vw 5.3333333333vw 16vw;
    border: 1px solid #FBEDF3;
  }
}
.p-top_about_txtwrap {
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-top_about_txtwrap {
    margin-bottom: 16vw;
  }
}
.p-top_about_txtwrap .img {
  position: absolute;
  width: 317px;
  height: 164px;
  right: -140px;
  top: -75px;
}
@media screen and (max-width: 767px) {
  .p-top_about_txtwrap .img {
    width: 64vw;
    height: 26.6666666667vw;
    right: 5.3333333333vw;
    top: -27.7333333333vw;
  }
}
.p-top_about_txtwrap .ttl {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 37px;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top_about_txtwrap .ttl {
    font-size: 24px;
    font-size: 1.3333333333rem;
    line-height: 170%;
    margin-bottom: 3.7333333333vw;
  }
}
.p-top_about_txtwrap .ttl span {
  background: linear-gradient(transparent 60%, #FFF000 60%);
}
.p-top_about_txtwrap .txt {
  text-align: left;
  font-size: 20px;
  line-height: 220%;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-top_about_txtwrap .txt {
    font-size: 15px;
    font-size: 0.8333333333rem;
    line-height: 200%;
  }
}
.p-top_about_wrap {
  width: 100%;
  position: relative;
  border-radius: 30px;
  background-color: #FFFCFD;
  border: 3px solid #F7D8E5;
  padding: 58px 70px;
  text-align: left;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap {
    border-radius: 15px;
    padding: 10.6666666667vw 5.3333333333vw 46.6666666667vw;
    margin-bottom: 9.3333333333vw;
  }
}
.p-top_about_wrap .p-top_about_h3 {
  font-size: 30px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #D53E7C;
  line-height: 170%;
  padding: 10px 20px;
  background: linear-gradient(1deg, #FFFCFD 46.04%, #FFF 46.04%);
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap .p-top_about_h3 {
    font-size: 20px;
    font-size: 1.1111111111rem;
    line-height: 140%;
    border-radius: 15px;
    padding: 1.3333333333vw 2.6666666667vw;
    top: -7.7333333333vw;
    text-align: center;
    background: linear-gradient(1deg, #FFFCFD 46.04%, #ffffff 46.04%);
  }
}
.p-top_about_wrap .img {
  position: absolute;
  width: 469px;
  height: 332px;
  top: 40px;
  right: -42px;
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap .img {
    width: 68.8vw;
    height: 48.5333333333vw;
    top: inherit;
    bottom: -5.3333333333vw;
    right: 4vw;
  }
}
.p-top_about_txt {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top_about_txt {
    font-size: 17px;
    font-size: 0.9444444444rem;
    line-height: 170%;
    margin-bottom: 5.3333333333vw;
  }
}
.p-top_about_txt span {
  position: relative;
}
.p-top_about_txt span::before {
  content: "";
  position: absolute;
  display: block;
  width: 2.5px;
  height: 35px;
  background-color: #333333;
  border-radius: 2.5px;
  left: -20px;
  top: 0;
  transform: rotate(-25deg);
}
@media screen and (max-width: 767px) {
  .p-top_about_txt span::before {
    width: 2px;
    height: 14.6666666667vw;
    left: -2.6666666667vw;
  }
}
.p-top_about_txt span::after {
  content: "";
  position: absolute;
  display: block;
  width: 2.5px;
  height: 35px;
  background-color: #333333;
  border-radius: 2.5px;
  right: -15px;
  top: 0;
  transform: rotate(25deg);
}
@media screen and (max-width: 767px) {
  .p-top_about_txt span::after {
    width: 2px;
    height: 14.6666666667vw;
    right: -14.9333333333vw;
  }
}
.p-top_speakers {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .p-top_speakers {
    margin-bottom: 21.3333333333vw;
  }
  .p-top_speakers .l-inner {
    border: 1px solid #FCEDC6;
  }
}
.p-top_speakers .c-title-toph2 .en {
  position: absolute;
  right: -378px;
  top: 90px;
}
@media screen and (max-width: 767px) {
  .p-top_speakers .c-title-toph2 .en {
    right: inherit;
    left: 5.0666666667vw;
    top: -6.6666666667vw;
  }
}
.p-top_speakers .l-inner {
  padding: 110px 125px 100px;
}
@media screen and (max-width: 767px) {
  .p-top_speakers .l-inner {
    padding: 14.6666666667vw 5.3333333333vw 13.3333333333vw;
  }
}
.p-top_speakers_wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-top_speakers_wrap {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
    margin-bottom: 9.3333333333vw;
  }
}
.p-top_speakers_wrap .img {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top_speakers_wrap .img {
    width: 64vw;
    margin: 0 auto;
  }
}
.p-top_speakers_wrap .img img {
  border-radius: 15px;
}
.p-top_speakers_wrap .txtwrap {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top_speakers_wrap .txtwrap {
    text-align: center;
  }
}
.p-top_speakers_wrap .txtwrap .ttl {
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: bold;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-top_speakers_wrap .txtwrap .ttl {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 0;
  }
}
.p-top_speakers_wrap .txtwrap .name {
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: bold;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-top_speakers_wrap .txtwrap .name {
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin-bottom: 1.3333333333vw;
  }
}
.p-top_speakers_wrap .txtwrap .txt {
  font-size: 19px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .p-top_speakers_wrap .txtwrap .txt {
    font-size: 15px;
    font-size: 0.8333333333rem;
    text-align: left;
  }
}
.p-top_speakers_box .txt {
  text-align: center;
  font-size: 20px;
  line-height: 220%;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top_speakers_box .txt {
    font-size: 18px;
    font-size: 1rem;
    margin-top: 5.3333333333vw;
    text-align: left;
  }
}
.p-top_join {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top_join .l-inner {
    border: 1px solid #FCEDC6;
  }
}
.p-top_join .c-title-toph2 .en {
  position: absolute;
  left: -400px;
  top: 90px;
}
@media screen and (max-width: 767px) {
  .p-top_join .c-title-toph2 .en {
    left: 5.0666666667vw;
    top: -6.6666666667vw;
  }
}
.p-top_join .l-inner {
  padding: 100px 125px 80px;
}
@media screen and (max-width: 767px) {
  .p-top_join .l-inner {
    padding: 14.6666666667vw 5.3333333333vw 13.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top_join .c-title_h3.yellow::before, .p-top_join .c-title_h3.yellow::after {
    background-color: inherit;
  }
}
.p-top_join_wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_join_wrap {
    grid-template-columns: 1fr 1fr;
    gap: 2.9333333333vw;
    margin-bottom: 9.3333333333vw;
  }
}
.p-top_join_wrap li {
  background-color: #FFF6F9;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  padding: 20px;
  line-height: 150%;
  color: #D53E7C;
}
@media screen and (max-width: 767px) {
  .p-top_join_wrap li {
    border-radius: 6px;
    font-size: 18px;
    font-size: 1rem;
    padding: 2.6666666667vw;
  }
}
.p-top_join_wrap li.etc {
  position: absolute;
  right: 0;
  bottom: -40px;
  background-color: inherit;
  font-size: 18px;
  padding: 0;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-top_join_wrap li.etc {
    bottom: -6.6666666667vw;
    font-size: 15px;
    font-size: 0.8333333333rem;
  }
}
.p-top_join_txt {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top_join_txt {
    font-size: 20px;
    font-size: 1.1111111111rem;
  }
}
.p-top_join_txt span {
  position: relative;
}
.p-top_join_txt span::before {
  content: "";
  position: absolute;
  display: block;
  width: 2.5px;
  height: 35px;
  background-color: #333333;
  border-radius: 2.5px;
  left: -20px;
  top: 0;
  transform: rotate(-25deg);
}
@media screen and (max-width: 767px) {
  .p-top_join_txt span::before {
    width: 2px;
    height: 8vw;
    left: -4vw;
    top: -0.5333333333vw;
  }
}
.p-top_join_txt span::after {
  content: "";
  position: absolute;
  display: block;
  width: 2.5px;
  height: 35px;
  background-color: #333333;
  border-radius: 2.5px;
  right: -15px;
  top: 0;
  transform: rotate(25deg);
}
@media screen and (max-width: 767px) {
  .p-top_join_txt span::after {
    width: 2px;
    height: 8vw;
    right: -3.2vw;
    top: -0.5333333333vw;
  }
}
.p-top_overview .c-title-toph2 .en {
  position: absolute;
  right: -378px;
  top: 90px;
}
@media screen and (max-width: 767px) {
  .p-top_overview .c-title-toph2 .en {
    right: inherit;
    left: 5.0666666667vw;
    top: -7.2vw;
  }
}
.p-top_overview .l-inner {
  padding: 100px 150px 90px;
}
@media screen and (max-width: 767px) {
  .p-top_overview .l-inner {
    padding: 13.3333333333vw 5.3333333333vw 16vw;
    border: 1px solid #FBEDF3;
  }
}
.p-top_overview_wrap {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap {
    margin-bottom: 13.3333333333vw;
  }
}
.p-top_overview_wrap:last-of-type {
  margin-bottom: 0;
}
.p-top_overview_wrap .txt01 {
  margin: -10px 0 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .txt01 {
    text-align: left;
    line-height: 170%;
    margin: -1.3333333333vw 0 4vw;
  }
}
.p-top_overview_wrap .box01 {
  width: 100%;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px 20px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box01 {
    grid-template-columns: 1fr;
    gap: 0.8vw;
    font-size: 18px;
    font-size: 1rem;
  }
}
.p-top_overview_wrap .box01 dt {
  color: #D53E7C;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box01 dt {
    margin: 0 0 0 -1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box01 dd {
    margin: 0 0 2.6666666667vw 0;
  }
}
.p-top_overview_wrap .box01 dd span {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box01 dd span {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-top_overview_wrap .box02 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box02 {
    margin-bottom: 21.3333333333vw;
  }
}
.p-top_overview_wrap .box02 dl {
  background-color: #FFF6F9;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 25px 30px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box02 dl {
    border-radius: 6px;
    margin-bottom: 3.2vw;
    padding: 2.6666666667vw 4vw;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-top_overview_wrap .box02 dl dt span {
  position: relative;
  padding-left: 42px;
  font-size: 20px;
  font-weight: bold;
  line-height: 220%;
  color: #D53E7C;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box02 dl dt span {
    padding-left: 30px;
    font-size: 18px;
    font-size: 1rem;
  }
}
.p-top_overview_wrap .box02 dl dt span::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../../src/img/icon/time_icon.svg) center center no-repeat;
  background-size: cover;
  top: -3px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box02 dl dt span::before {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    top: 0;
  }
}
.p-top_overview_wrap .box02 dl dd .ttl {
  font-size: 20px;
  font-weight: bold;
  color: #D53E7C;
  line-height: 220%;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box02 dl dd .ttl {
    margin-bottom: 0.8vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    line-height: 200%;
  }
}
.p-top_overview_wrap .box02 dl dd .txt {
  font-size: 16px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box02 dl dd .txt {
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 170%;
  }
}
.p-top_overview_wrap .box03 {
  width: 100%;
  position: relative;
  border-radius: 30px;
  background-color: #FFFCFD;
  border: 3px solid #F7D8E5;
  padding: 35px 50px 30px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03 {
    border-radius: 15px;
    padding: 13.3333333333vw 4vw 5.3333333333vw;
    grid-template-columns: 1fr;
    gap: 4vw;
  }
}
.p-top_overview_wrap .box03 .img_txt {
  position: absolute;
  width: 220px;
  height: 111px;
  top: -38px;
  left: 20px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03 .img_txt {
    width: 90%;
    height: auto;
    top: 4.8vw;
    left: 5%;
  }
}
.p-top_overview_wrap .box03 .ttl2 {
  font-size: 30px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #D53E7C;
  line-height: 170%;
  padding: 10px 20px;
  background: linear-gradient(1deg, #fffcfd 46.04%, #FFFCFD 46.04%);
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03 .ttl2 {
    font-size: 22px;
    font-size: 1.2222222222rem;
    line-height: 140%;
    background: linear-gradient(1deg, #fffcfd 46.04%, #FFFCFD 46.04%);
    padding: 1.3333333333vw 2.6666666667vw;
    top: -5.3333333333vw;
    text-align: center;
  }
}
.p-top_overview_wrap .box03 .ttl3 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #D53E7C;
  line-height: 170%;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03 .ttl3 {
    font-size: 16px;
    font-size: 0.8888888889rem;
    top: -10.6666666667vw;
    text-align: center;
  }
}
.p-top_overview_wrap .box03 .ttl3 span {
  position: relative;
}
.p-top_overview_wrap .box03 .ttl3 span::before {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 30px;
  background-color: #D53E7C;
  border-radius: 2.5px;
  left: -15px;
  top: 0;
  transform: rotate(-25deg);
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03 .ttl3 span::before {
    width: 2px;
    height: 5.3333333333vw;
    left: -4vw;
  }
}
.p-top_overview_wrap .box03 .ttl3 span::after {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 30px;
  background-color: #D53E7C;
  border-radius: 2.5px;
  right: -15px;
  top: 0;
  transform: rotate(25deg);
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03 .ttl3 span::after {
    width: 2px;
    height: 5.3333333333vw;
    right: -4vw;
  }
}
.p-top_overview_wrap .box03_wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-top_overview_wrap .box03_wrap .txtwrap .time {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .txtwrap .time {
    margin-top: 0;
  }
}
.p-top_overview_wrap .box03_wrap .txtwrap .time span {
  position: relative;
  padding-left: 42px;
  font-size: 20px;
  font-weight: bold;
  line-height: 220%;
  color: #D53E7C;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .txtwrap .time span {
    padding-left: 30px;
    font-size: 18px;
    font-size: 1rem;
  }
}
.p-top_overview_wrap .box03_wrap .txtwrap .time span::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../../src/img/icon/time_icon.svg) center center no-repeat;
  background-size: cover;
  top: -3px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .txtwrap .time span::before {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    top: 0;
  }
}
.p-top_overview_wrap .box03_wrap .txtwrap .ttl4 {
  font-size: 20px;
  font-weight: bold;
  color: #D53E7C;
  line-height: 180%;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .txtwrap .ttl4 {
    margin-bottom: 0.8vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
  }
}
.p-top_overview_wrap .box03_wrap .txtwrap .txt {
  font-size: 18px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .txtwrap .txt {
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 170%;
  }
}
.p-top_overview_wrap .box03_wrap .txtwrap dl {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #F7D8E5;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .txtwrap dl {
    margin-top: 4vw;
    padding-top: 4vw;
    grid-template-columns: 13.3333333333vw 1fr;
    gap: 2.6666666667vw;
  }
}
.p-top_overview_wrap .box03_wrap .txtwrap dl dt {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .txtwrap dl dt {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-top_overview_wrap .box03_wrap .txtwrap dl dd {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .txtwrap dl dd {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-top_overview_wrap .box03_wrap .imgwrap {
  position: relative;
}
.p-top_overview_wrap .box03_wrap .imgwrap .img {
  width: 220px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .imgwrap .img {
    width: 70%;
    margin: 0 auto 2.6666666667vw;
  }
}
.p-top_overview_wrap .box03_wrap .imgwrap .img img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .imgwrap .img img {
    border-radius: 6px;
  }
}
.p-top_overview_wrap .box03_wrap .imgwrap .name {
  font-size: 14px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .imgwrap .name {
    font-size: 15px;
    font-size: 0.8333333333rem;
    text-align: center;
  }
}
.p-top_overview_wrap .box03_wrap .imgwrap .name span {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap .box03_wrap .imgwrap .name span {
    font-size: 15px;
    font-size: 0.8333333333rem;
  }
}
.p-top_overview_wrap_map {
  width: 100%;
  height: 465px;
  margin: 25px 0 30px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap_map {
    height: 66.6666666667vw;
    margin: 2.6666666667vw 0 4vw;
  }
}
.p-top_overview_wrap_map iframe {
  width: 100%;
  height: 465px;
}
@media screen and (max-width: 767px) {
  .p-top_overview_wrap_map iframe {
    height: 66.6666666667vw;
  }
}
.p-top_modal {
  position: relative;
}
.p-top_modal_ttl {
  position: absolute;
  content: "";
  display: block;
  width: 398px;
  height: 68px;
  top: -105px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../../src/img/ttl_bg.svg) center center no-repeat;
  background-size: cover;
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 68px;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top_modal_ttl {
    width: 69.3333333333vw;
    height: 11.7333333333vw;
    top: -16.8vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    line-height: 11.7333333333vw;
  }
}
.p-top_modal_movie {
  width: 100%;
  max-width: 980px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_modal_movie {
    margin-bottom: 2.6666666667vw;
  }
}
.p-top_modal_movie_ditail {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.p-top_modal_movie_ditail iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top_modal_txt {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-top_modal_txt {
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 150%;
  }
}
.p-top_modal_wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_modal_wrap {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-top_modal_wrap .p-top_modal_txt {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top_modal_wrap .p-top_modal_txt {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}

.scrollable-div::-webkit-scrollbar {
  width: 10px;
}

.scrollable-div::-webkit-scrollbar-track {
  background-color: #FBEDF3;
  border-radius: 10px;
}

.scrollable-div::-webkit-scrollbar-thumb {
  background-color: #D53E7C;
  border: 1px solid #FBEDF3;
  background-clip: content-box;
  border-radius: 10px;
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.p-lower {
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .p-lower {
    padding: 0;
  }
}
.p-lower_report {
  padding: 120px 0 130px;
}
@media screen and (max-width: 767px) {
  .p-lower_report {
    padding: 13.3333333333vw 5.3333333333vw 16vw;
  }
}
.p-lower_report .l-inner {
  border-radius: 30px;
  padding: 60px 100px 100px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-lower_report .l-inner {
    border-radius: 15px;
    padding: 6.6666666667vw 5.3333333333vw 13.3333333333vw;
    margin-bottom: 9.3333333333vw;
    border: 1px solid #FBEDF3;
  }
}
.p-lower_report_txt01 {
  font-size: 36px;
  font-weight: bold;
  color: #D53E7C;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 170%;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .p-lower_report_txt01 {
    font-size: 20px;
    font-size: 1.1111111111rem;
    line-height: 170%;
    margin-bottom: 8vw;
  }
}
.p-lower_report_wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-lower_report_wrap {
    margin-bottom: 16vw;
  }
}
.p-lower_report_wrap .img_long {
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-lower_report_wrap .img_long {
    margin-top: 4vw;
  }
}
.p-lower_report_wrap .img_long img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-lower_report_wrap .img_long img {
    border-radius: 6px;
  }
}
.p-lower_report_box {
  width: 100%;
  background-color: #FBEDF3;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 170%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-lower_report_box {
    border-radius: 6px;
    padding: 3.4666666667vw 2.6666666667vw;
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 4vw;
  }
}
.p-lower_report_col2 {
  width: 100%;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-lower_report_col2 {
    grid-template-columns: 1fr;
    gap: 4vw;
  }
}
.p-lower_report_col2 .img img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-lower_report_col2 .img img {
    border-radius: 6px;
  }
}
.p-lower_report_coment .ttl {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 170%;
  margin-bottom: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-lower_report_coment .ttl {
    font-size: 18px;
    font-size: 1rem;
    margin-bottom: 4vw;
  }
}
.p-lower_report_coment_wrap {
  width: 100%;
  border-radius: 30px;
  background-color: #FFFCFD;
  border: 3px solid #F7D8E5;
  padding: 40px 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-lower_report_coment_wrap {
    border-radius: 15px;
    padding: 5.3333333333vw;
    margin-bottom: 4vw;
  }
}
.p-lower_report_coment_wrap .txt01 {
  text-align: center;
  font-size: 20px;
  line-height: 170%;
  color: #D53E7C;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: 35px;
  padding-top: 35px;
  border-top: 2px solid #F7D8E5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-lower_report_coment_wrap .txt01 {
    text-align: left;
    font-size: 18px;
    font-size: 1rem;
    margin-top: 5.3333333333vw;
    padding-top: 5.3333333333vw;
  }
}
.p-lower_report_coment .txt02 {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-lower_report_coment .txt02 {
    font-size: 14px;
    font-size: 0.7777777778rem;
  }
}

.u-mb--0 {
  margin-bottom: 0px !important;
}
.u-mb--xxs {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xxs {
    margin-bottom: 1.3333333333vw !important;
  }
}
.u-mb--xs {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xs {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--s {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--s {
    margin-bottom: 5.3333333333vw !important;
  }
}
.u-mb--m {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--m {
    margin-bottom: 6.6666666667vw !important;
  }
}
.u-mb--l {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--l {
    margin-bottom: 9.3333333333vw !important;
  }
}
.u-mb--100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--100 {
    margin-bottom: 13.3333333333vw !important;
  }
}

.u-mt--0 {
  margin-top: 0px !important;
}
.u-mt--xxs {
  margin-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xxs {
    margin-top: 1.3333333333vw !important;
  }
}
.u-mt--xs {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xs {
    margin-top: 2.6666666667vw !important;
  }
}
.u-mt--s {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--s {
    margin-top: 4vw !important;
  }
}
.u-mt--m {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--m {
    margin-top: 5.3333333333vw !important;
  }
}
.u-mt--l {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--l {
    margin-top: 6.6666666667vw !important;
  }
}

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

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

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