@charset "UTF-8";
/* ---------------------------------------------
アニメーション
-----------------------------------------------*/
.fadeRightTrigger,
.fadeLeftTrigger,
.fadeUpTrigger, .fadeInTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

.blur {
  animation-name: blurAnime;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: source-han-sans-japanese, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.6;
  color: #fff;
  min-width: 1080px;
  background: #000;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  /*image-rendering: -webkit-optimize-contrast;*/
}
.safari img {
  image-rendering: inherit;
}

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

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

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

i {
  font-style: normal;
}

/* input
--------------------------------------------------*/
button {
  color: #fff;
  transition: 0.3s;
  will-change: transform;
  letter-spacing: 0.05em;
}
button:focus {
  text-decoration: none;
}

.wrapper {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 90%;
  }
}

.pc {
  display: block;
}

.sp, .ssp, .tb {
  display: none;
}

.pc-tb {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc, .ssp {
    display: none;
  }
  .sp, .pc-tb, .tb {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .sp, .ssp {
    display: block;
  }
  .pc-tb, .pc, .tb {
    display: none;
  }
}
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

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

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

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

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

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

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

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

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

select:disabled {
  opacity: inherit;
}

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

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

legend {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

caption {
  text-align: left;
}

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

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

.btn {
  font: 500 1.6rem/1.3 "Noto Sans JP", serif;
  position: relative;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 450px) {
  .btn {
    font-size: 1.4rem;
  }
}
.btn::after {
  content: "";
  width: 2.3rem;
  height: 1.3rem;
  background: url(../images/arrow.svg) 0/contain no-repeat;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.btn:hover {
  transform: scale(0.97);
}
.btn:hover::after {
  right: 4rem;
}
@media screen and (max-width: 1100px) {
  .btn .sp {
    display: block;
  }
}

/*------------- トップのタイトル --------------*/
.top_ttl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .top_ttl {
    gap: 4rem;
  }
}
.top_ttl .ttl {
  width: fit-content;
  position: relative;
}
.top_ttl .en {
  font-family: config-variable, sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 300;
  line-height: 1.1;
  white-space: nowrap;
  color: #646464;
}
@media screen and (max-width: 767px) {
  .top_ttl .en {
    font-size: 3rem;
  }
}
.top_ttl .jp {
  font: 500 1.2rem/1.2 "Noto Sans JP", serif;
  margin-top: 0;
  position: absolute;
  bottom: -1.6rem;
  white-space: nowrap;
}
.top_ttl .border {
  width: 100%;
  height: 1px;
  background: #646464;
  position: relative;
}
.top_ttl .border::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #646464;
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*------------- 共通css --------------*/
.soon {
  font-family: config-variable, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  line-height: 1.1;
  margin: 8rem auto 0;
  text-align: center;
  color: #646464;
  padding-bottom: 4rem;
}
@media screen and (max-width: 450px) {
  .soon {
    margin-top: 4.8rem;
  }
}
.soon.andmore {
  color: #fff;
  font-style: italic;
  padding-bottom: 2rem;
  margin-top: 4rem;
}

/*------------- 画像あてはめ --------------*/
.thumb {
  position: relative;
  width: 100%;
}
.thumb .img {
  display: block;
  position: relative;
  background-color: #625454;
  padding-top: 69.1358%;
  cursor: pointer;
}
@media screen and (max-width: 450px) {
  .thumb .img {
    margin-bottom: 1rem;
  }
}
.thumb .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  user-select: none;
  z-index: 1;
  vertical-align: middle;
}
.thumb .img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

/*------------- 各ページのタイトル --------------*/
.page_ttl .en {
  font-family: config-variable, sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 400;
  line-height: 1.1;
  color: #b2b2b2;
  line-height: 20px;
  padding: 7px 0 0 1.4rem;
  border-left: 2px solid #00b6c7;
}
@media screen and (max-width: 450px) {
  .page_ttl .en {
    font-size: 3rem;
  }
}
.page_ttl .jp {
  font-size: 1.4rem;
  margin-top: 0.8rem;
  text-align: left;
}
@media screen and (max-width: 450px) {
  .page_ttl .jp {
    font-size: 1.2rem;
  }
}

.page_anime .page_ttl .en {
  border-left: 2px solid #6d43e3;
}

/*------------- ボーダー --------------*/
.under_border {
  display: flex;
}
.under_border .under_solid {
  border-bottom: 1px solid #fff;
  white-space: nowrap;
  padding-bottom: 0.7rem;
}
.under_border .border_dashed {
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed #fff;
  width: 100%;
}
.under_border.beige .under_solid {
  border-bottom: 1px solid #b2b2b2;
}
.under_border.beige .border_dashed {
  border-bottom: 1px dashed #b2b2b2;
}

.gradeBtoD {
  background: linear-gradient(90deg, #1A1A1A 0%, #000 100%);
  padding: 4rem 0 4rem 4.5rem;
}

.dashed {
  padding-bottom: 3.2rem;
  border-bottom: 1px dashed #646464;
}

.footer {
  border-top: 1px solid #5d5d5d;
  padding: 2.5rem 6rem;
}
@media screen and (max-width: 450px) {
  .footer {
    padding: 1.8rem 2rem;
  }
}
.footer .footer_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .aboutus {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
.footer .aboutus .footer_ttl {
  font-size: 1.4rem;
  border-right: 1px dashed #fff;
  padding-right: 1.5rem;
  width: fit-content;
}
@media screen and (max-width: 450px) {
  .footer .aboutus .footer_ttl {
    font-size: 1rem;
  }
}
.footer .aboutus .official {
  line-height: 1;
}
.footer .aboutus .official img {
  object-fit: contain;
  width: 80px;
  height: 16px;
}
@media screen and (max-width: 450px) {
  .footer .aboutus .official img {
    width: 60px;
  }
}
.footer .aboutus .official svg {
  width: 14px;
  margin-left: 1rem;
}
@media screen and (max-width: 450px) {
  .footer .aboutus .official svg {
    width: 11px;
    margin-left: 0.1rem;
  }
}
.footer .aboutus .official:hover {
  opacity: 0.6;
}
.footer .right a {
  font-size: 1.2rem;
  padding: 5px;
}
.footer .right a svg {
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
  margin-left: 1rem;
}
.footer .right a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 450px) {
  .entry.footer {
    padding-bottom: 8rem;
  }
}

.cp {
  margin-top: 5px;
  font-size: 1rem;
}

.l-nav {
  display: none;
}
@media screen and (max-width: 450px) {
  .is-fixed .l-nav {
    opacity: 1;
    pointer-events: all;
  }
  .l-nav-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: spvw(100);
  }
  .l-nav__button {
    width: calc(100% - 3.5em);
    height: spvw(100);
    margin: 0 auto;
  }
  .l-nav__button a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #a79280;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.header {
  position: fixed;
  height: 70px;
  padding: 1rem 2rem;
  top: -100px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.5s ease;
}
.header .logo {
  width: 130px;
}
.header .logo img {
  height: 50px;
  object-fit: contain;
}
.header.active {
  height: 60px;
  top: 0;
}
.header.active .logo img {
  filter: drop-shadow(0, 0, 0, 1);
  filter: drop-shadow(3px 3px 3px rgb(0, 0, 0));
}
@media screen and (max-width: 450px) {
  .header {
    height: 7rem;
  }
}

.pages.entry_btn {
  position: fixed;
  width: 160px;
  z-index: 900;
  right: 8rem;
  top: 10px;
}
@media screen and (max-width: 767px) {
  .pages.entry_btn {
    width: 150px;
  }
}
@media screen and (max-width: 450px) {
  .pages.entry_btn {
    width: 100%;
    bottom: 0;
    left: 0;
    top: auto;
  }
}
.pages.entry_btn .btn {
  background: linear-gradient(180deg, #16AD9C 0%, #4F6398 100%);
  height: 4rem;
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 450px) {
  .pages.entry_btn .btn {
    height: 5rem;
  }
}
.pages.entry_btn .btn::before {
  background: #00b6c7;
  position: absolute;
  left: -100%;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.3s;
}
.pages.entry_btn .btn::after {
  width: 2rem;
  right: 2rem;
}
.pages.entry_btn .btn:hover {
  transform: none;
}
.pages.entry_btn .btn:hover::before {
  left: 0;
}
.pages.entry_btn.entry_btn.animebtn .btn {
  background: linear-gradient(180deg, #6D43E3 0%, #C3A7A8 100%);
}
.pages.entry_btn.entry_btn.animebtn .btn::before {
  background: #6d43e3;
}
@media screen and (max-width: 450px) {
  .pages.entry_btn.active {
    width: 100%;
    height: 6rem;
  }
  .pages.entry_btn.active .btn {
    height: 6rem;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 30%;
  min-width: 400px;
  height: 100vh; /*ナビの高さ*/
  background: #1a1a1a;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  /*動き*/
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #g-nav {
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  #g-nav {
    min-width: auto;
    width: 100%;
  }
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 30%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  #g-nav.panelactive #g-nav-list {
    width: 70%;
  }
}
@media screen and (max-width: 450px) {
  #g-nav.panelactive #g-nav-list {
    width: 100%;
  }
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  width: 100%;
  z-index: 999;
  height: 100%;
  left: 3rem;
  top: 0;
  padding-top: 25%;
}
@media screen and (max-width: 450px) {
  #g-nav ul {
    padding-top: 13%;
  }
}

/*リストのレイアウト設定*/
#g-nav li a {
  font-family: config-variable, sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  line-height: 1.1;
  color: #fff;
  text-decoration: none;
  padding: 10px 0 10px 0rem;
  display: block;
}
@media screen and (max-width: 450px) {
  #g-nav li a {
    font-size: 1.8rem;
  }
}
#g-nav li a.nav_top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 5px;
  width: 80%;
  margin-bottom: 1.6rem;
}
#g-nav li a.jp_2 {
  font: 500 1.6rem/1.6 "Noto Sans JP", serif;
}
#g-nav li a:hover {
  color: #c3a7a8;
}
#g-nav li a.nav_btn {
  width: 300px;
  text-align: center;
  font: 500 1.3rem/1.6 "Noto Sans JP", serif;
  border: 1px solid #fff;
  padding: 1.4rem 1rem;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 450px) {
  #g-nav li a.nav_btn {
    margin-top: 1.6rem;
    padding: 1rem;
    width: 320px;
    position: static;
  }
}
#g-nav li a.nav_btn::after {
  right: 1rem;
  width: 2rem;
  height: 1rem;
}
#g-nav li a.nav_btn:hover {
  color: #fff;
}
#g-nav li a.prev-btn {
  margin-top: 3.2rem;
}
@media screen and (max-width: 450px) {
  #g-nav li a.prev-btn {
    margin-top: 4rem;
  }
}
#g-nav li a.second-btn {
  margin-top: 2rem;
}
@media screen and (max-width: 450px) {
  #g-nav li a.second-btn {
    margin-top: 1.6rem;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 0;
  cursor: pointer;
  width: 80px;
  height: 45px;
}
@media screen and (max-width: 450px) {
  .openbtn1 {
    width: 60px;
    right: 8px;
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  height: 1px;
  border-radius: 2px;
  background-color: #fff;
  width: 50%;
  right: 20px;
  left: auto;
}
@media screen and (max-width: 450px) {
  .openbtn1 span {
    width: 70%;
    right: 5px;
  }
}

.openbtn1 span:nth-of-type(1) {
  top: 18px;
}

.openbtn1 span:nth-of-type(2) {
  top: 25px;
  width: 40%;
}

.openbtn1.open span:nth-of-type(1) {
  top: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn1.open span:nth-of-type(2) {
  top: 25px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

@media screen and (max-width: 450px) {
  .grecaptcha-badge {
    bottom: 5rem !important;
  }
}
.kv {
  height: 100vh;
  width: 100vw;
  position: relative;
}
.kv .kv_img {
  width: 100vw; /* ビューポート幅いっぱい */
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  position: relative;
  display: flex;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.kv .kv_img img {
  height: 100%;
  object-fit: cover;
}
.kv .kv_img video {
  object-position: center;
}
@media screen and (max-width: 450px) {
  .kv .kv_img {
    overflow: hidden;
    width: 100%; /* 100vwから100%に変更 */
  }
}
.kv .kv_info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  height: 90%;
}
@media screen and (max-width: 767px) {
  .kv .kv_info {
    width: 90%;
  }
}
@media screen and (max-width: 450px) {
  .kv .kv_info {
    top: 18%;
    height: 82%;
  }
}
.kv .kv_info .kv_logo {
  max-width: 900px;
  width: 62.5vw;
}
.kv .kv_info .kv_logo img {
  max-height: 50vh;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .kv .kv_info .kv_logo img {
    max-height: auto;
  }
}
@media screen and (max-width: 1100px) {
  .kv .kv_info .kv_logo {
    width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .kv .kv_info .kv_logo {
    width: 100%;
  }
}
.kv .kv_entry {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12vh;
  max-width: 1050px;
  width: 76.3888888889vw;
}
@media screen and (max-width: 1100px) {
  .kv .kv_entry {
    width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .kv .kv_entry {
    bottom: 5vw;
    width: 90%;
  }
}
.kv .kv_entry .datetime {
  text-align: center;
  font-family: config-variable, sans-serif;
  font-size: 3.7rem;
  font-weight: 500;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  line-height: 1.1;
  line-height: 1;
}
@media screen and (max-width: 450px) {
  .kv .kv_entry .datetime {
    font-size: 3.2rem;
  }
}
.kv .kv_entry .datetime span {
  font-size: 1.5rem;
  vertical-align: text-top;
  margin-right: 1.5rem;
}
.kv .kv_entry .place {
  font: 600 1.5rem/1.2 "Noto Sans JP", serif;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 450px) {
  .kv .kv_entry .place {
    font-size: 1.6rem;
  }
}
.kv .kv_entry .entry_ttl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.8rem;
  margin-top: 2.8rem;
}
@media screen and (max-width: 450px) {
  .kv .kv_entry .entry_ttl {
    margin-top: 1.8rem;
    justify-content: center;
  }
}
.kv .kv_entry .entry_ttl .ttl {
  font: 600 1.8rem/1.2 "Noto Sans JP", serif;
  width: fit-content;
  flex-basis: 81%;
  white-space: nowrap;
}
.kv .kv_entry .entry_ttl .ttl strong {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 450px) {
  .kv .kv_entry .entry_ttl .ttl {
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
  }
  .kv .kv_entry .entry_ttl .ttl strong {
    font-size: 1.5rem;
  }
}
.kv .kv_entry .entry_ttl span {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 450px) {
  .kv .kv_entry .entry_ttl span {
    display: none;
  }
}
.kv .kv_entry .entry_btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.3rem;
}
@media screen and (max-width: 767px) {
  .kv .kv_entry .entry_btn {
    flex-direction: column;
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 450px) {
  .kv .kv_entry .entry_btn {
    margin-top: 1.4rem;
    gap: 1rem;
  }
}
.kv .kv_entry .entry_btn .btn {
  flex: 1;
  background: linear-gradient(180deg, #16AD9C 0%, #4F6398 100%);
  height: 6.4rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .kv .kv_entry .entry_btn .btn {
    width: 100%;
    padding: 0.7rem 2rem;
  }
}
.kv .kv_entry .entry_btn .anime {
  background: linear-gradient(180deg, #6D43E3 0%, #C3A7A8 100%);
}
.kv .kv_entry .entry_btn .hero {
  background: linear-gradient(180deg, #FF9CA8 0%, #FF3751 100%);
}

/*------------- concept --------------*/
.concept {
  margin: 10rem auto 14rem;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .concept {
    margin: 6rem auto;
  }
}
.concept .concept_txt {
  margin: 10rem auto 0;
  width: fit-content;
  font: 400 1.5rem/1.8 "Noto Sans JP", serif;
}
.concept .concept_txt p {
  margin: 1.4rem 0;
}
@media screen and (max-width: 767px) {
  .concept .concept_txt {
    margin: 6rem auto;
  }
}

/*------------- purpose --------------*/
.purpose {
  margin-top: -10rem;
  padding-top: 10rem;
}
.purpose .purpose_contents {
  margin: 6.4rem 0 0 auto;
  width: 77%;
}
@media screen and (max-width: 450px) {
  .purpose .purpose_contents {
    width: 100%;
  }
}
.purpose .purpose_box {
  margin-top: 4rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3%;
  padding-bottom: 4rem;
}
.purpose .purpose_box .num {
  font-family: config-variable, sans-serif;
  font-size: 3.7rem;
  font-weight: 400;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 400;
  line-height: 1.1;
  color: #646464;
  line-height: 1;
}
@media screen and (max-width: 450px) {
  .purpose .purpose_box .num {
    font-size: 3rem;
  }
}
.purpose .purpose_box .purpuse_head {
  color: #b2b2b2;
  font-size: 2rem;
}
@media screen and (max-width: 450px) {
  .purpose .purpose_box .purpuse_head {
    font-size: 1.8rem;
  }
}
.purpose .purpose_box .purpose_txt p {
  margin-top: 2.4rem;
  font: 500 1.4rem/1.6 "Noto Sans JP", serif;
}
.purpose .purpose_box .purpose_txt p:not(:first-child) {
  margin-top: 1rem;
}

/*------------- section --------------*/
.section_head {
  margin-top: 12rem;
}
@media screen and (max-width: 450px) {
  .section_head {
    margin-top: 8rem;
  }
}

.section_btn_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 6.4rem;
}
.section_btn_container .section_btn {
  padding: 1.8rem 2rem;
  border: 1px solid #646464;
}
@media screen and (max-width: 450px) {
  .section_btn_container {
    margin-top: 4rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .section_btn_container .section_btn {
    padding: 1.3rem 1rem;
  }
  .section_btn_container .section_btn::after {
    width: 1.8rem;
    height: 1rem;
    right: 1rem;
  }
}

.section {
  background: #1A1A1A;
  padding-bottom: 2rem;
}
.section .top_ttl02 {
  justify-content: center;
}
.section .top_ttl02 .jp {
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}
.section .section_contents {
  margin: 5rem 0 0;
  padding-top: 7rem;
}
@media screen and (max-width: 767px) {
  .section .section_contents {
    margin: -2rem 0 0;
    padding-top: 10rem;
  }
}
.section .judge {
  margin: 8rem auto 0;
  padding: 0;
}
.section .judge .session_contents {
  padding: 4rem;
}
@media screen and (max-width: 450px) {
  .section .judge .session_contents {
    padding: 3.2rem 2rem;
  }
}
.section .judge .session_ttl02 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 4rem;
}
@media screen and (max-width: 450px) {
  .section .judge .session_ttl02 {
    margin-bottom: 3rem;
  }
}
.section .judge .session_ttl02 span {
  width: 12px;
  height: 12px;
  background: #ff3750;
}
.section .judge .session_ttl02 span img {
  height: 9px;
  width: 9px;
  vertical-align: top;
  object-fit: cover;
}
.section .judge .session_ttl02 span.drama {
  background: #00b6c7;
  background: linear-gradient(136deg, #00B6C8 50.56%, #6D43E3 50.56%);
}
.section .judge .session_ttl02 span.anime {
  background: #6d43e3;
}
.section .judge .second_ttl {
  margin-top: 6.4rem;
}
@media screen and (max-width: 450px) {
  .section .judge .second_ttl {
    margin-top: 4.2rem;
  }
}
.section .artist .artist_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 450px) {
  .section .artist .artist_container {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.section .artist .artist_container .artist_box {
  flex-basis: 35%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-direction: column;
}
.section .artist .artist_container .artist_box .img {
  height: 200px;
  width: 100%;
}
@media screen and (max-width: 450px) {
  .section .artist .artist_container .artist_box .img {
    width: 80%;
    margin: 0 auto;
    height: 160px;
  }
  .section .artist .artist_container .artist_box .img img {
    height: 160px;
    object-fit: cover;
  }
}
.section .artist .artist_container .artist_box .name {
  margin-top: 2rem;
}
@media screen and (max-width: 450px) {
  .section .artist .artist_container .artist_box .name {
    margin: 1.6rem auto 0;
  }
}
.section .artist .artist_container .artist_box .txt {
  font-size: 1.4rem;
  margin: 1.4rem 0 0;
}
.section .section_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 4rem;
}
@media screen and (max-width: 450px) {
  .section .section_container {
    flex-direction: column;
    gap: 2rem;
  }
}
.section .section_container .img {
  flex-basis: 27%;
  background: #625454;
}
.section .section_container .section_itemttl {
  font-size: 2rem;
  color: #b2b2b2;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 450px) {
  .section .section_container .section_itemttl {
    font-size: 1.8rem;
  }
  .section .section_container .section_itemttl.ssp {
    margin-bottom: 0;
  }
}
.section .section_container .section_txtbox {
  flex-basis: 67%;
}
.section .section_container .section_txtbox .section_box {
  margin-bottom: 3.2rem;
}
.section .section_container .section_txtbox .section_box:last-child {
  margin-bottom: 0;
}
.section .section_container .section_txtbox .section_box p {
  margin-top: 2rem;
  font-size: 1.4rem;
}
.section .section_container .section_txtbox .section_box.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6rem;
}
@media screen and (max-width: 450px) {
  .section .section_container .section_txtbox .section_box.flex {
    flex-direction: column;
    gap: 0;
  }
}
.section .section_container .section_txtbox .section_box .mc {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}
.section .section_container .section_txtbox .section_box .mc .img {
  flex-basis: 30%;
  max-width: 276px;
  height: 180px;
}
.section .section_container .section_txtbox .section_box .mc .img img {
  object-fit: contain;
}
.section .section_container .section_txtbox .section_box .mc .mc_name {
  margin-top: 8px;
}
.section .section_container .section_txtbox .section_box .soon {
  text-align: left;
  padding-left: 4rem;
  padding-bottom: 0;
}
.section .section_container .section_txtbox .session_contents {
  margin-top: 2.4rem;
  padding: 3.2rem 2.4rem;
}
@media screen and (max-width: 450px) {
  .section .section_container .section_txtbox .session_contents {
    padding: 2.4rem 1.6rem;
  }
}
.section .section_container .section_txtbox .session_contents .section_itemttl {
  margin-bottom: 2rem;
}
@media screen and (max-width: 450px) {
  .section .section_container .section_txtbox .session_contents .section_itemttl {
    margin-bottom: 1.8rem;
  }
}
.section .section_container .section_txtbox .session_contents li {
  line-height: 1.8;
  text-indent: -1rem;
  padding-left: 1.7rem;
  font-size: 1.4rem;
}
.section .section_container .section_txtbox .session_contents li::before {
  content: "・";
}
@media screen and (max-width: 767px) {
  .section .section_container .section_txtbox .session_contents li {
    font-size: 1.4rem;
  }
}

.session_headtext {
  margin-top: 8rem;
  font: 500 1.4rem/1.6 "Noto Sans JP", serif;
}
.session_headtext p {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .session_headtext {
    margin-top: 6.4rem;
  }
}
@media screen and (max-width: 450px) {
  .session_headtext {
    margin-top: 5rem;
  }
}

.session_contents {
  background: #000;
  padding: 3.2rem 2rem;
  margin: 6.4rem auto 0;
}
@media screen and (max-width: 767px) {
  .session_contents {
    margin-top: 4.8rem;
    padding: 2.4rem 1.6rem;
  }
}
.session_contents .session_ttl02 {
  text-align: center;
  color: #b2b2b2;
  font-size: 2rem;
}
@media screen and (max-width: 450px) {
  .session_contents .session_ttl02 {
    font-size: 1.8rem;
  }
}
.session_contents .soon {
  margin-top: 2rem;
  padding: 0;
}
.session_contents .andmore {
  margin-top: 4rem;
}
.session_contents.bg_trans {
  background: transparent;
}
.session_contents.bg_trans .soon {
  margin-top: 5rem;
}

/*------------- competition --------------*/
.compe {
  margin-top: -10rem;
  padding-top: 24rem;
}
@media screen and (max-width: 450px) {
  .compe .top_ttl .border {
    position: static;
  }
}
.compe .top_ttl .border::after {
  content: none;
}
.compe .top_ttl .border .prize {
  position: absolute;
  width: 173px;
  height: 173px;
  background: url(../images/prize_circle.png) 0/contain no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 2rem;
}
@media screen and (max-width: 450px) {
  .compe .top_ttl .border .prize {
    transform: none;
    left: 0;
    right: auto;
    background: #1a1a1a;
    height: auto;
    margin-top: 5.8rem;
    border: 1px dashed #a5a5a5;
    width: 100%;
    padding: 2rem 1rem 1.6rem;
  }
}
.compe .top_ttl .border .prize h3 {
  font: 500 1.5rem/1.2 "Noto Sans JP", serif;
  text-align: center;
}
.compe .top_ttl .border .prize h3 strong {
  font: 600 1.4rem/1.2 "Noto Sans JP", serif;
  color: #C4B28B;
  margin-left: 1rem;
}
.compe .top_ttl .border .prize .prize_contents {
  font-size: 1.4rem;
  margin-left: 5px;
  text-align: center;
  margin-top: 1rem;
}
.compe .top_ttl .border .prize .prize_contents strong {
  font: 400 3rem/1.1 "abril-fatface", serif;
}
@media screen and (max-width: 450px) {
  .compe .top_ttl .border .prize .prize_contents {
    margin: 1.4rem auto 0;
  }
}
.compe .compe_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10rem;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .compe .compe_container {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 450px) {
  .compe .compe_container {
    margin-top: 17rem;
  }
}
.compe .compe_container .compe_txt {
  flex-basis: 50%;
  background: #000;
  padding: 4.8rem 4rem;
}
@media screen and (max-width: 450px) {
  .compe .compe_container .compe_txt {
    padding: 4rem 2rem;
  }
}
.compe .compe_container .compe_txt .compe_ttl {
  font-size: 1.8rem;
  color: rgba(225, 225, 225, 0.7);
}
.compe .compe_container .compe_txt .compe_inner_txt {
  margin: 2.4rem auto 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .compe .compe_container .compe_txt .compe_inner_txt {
    font-size: 1.4rem;
  }
}

.compe_linkbtn .compe_inner_head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  gap: 2rem;
}
.compe_linkbtn .compe_inner_head span {
  width: 9px;
  height: 8.7px;
  background: #00b6c7;
  display: block;
}
.compe_linkbtn .compe_inner_head.anime_head {
  margin-top: 3rem;
}
@media screen and (max-width: 450px) {
  .compe_linkbtn .compe_inner_head.anime_head {
    margin-top: 2rem;
  }
}
.compe_linkbtn .compe_inner_head.anime_head span {
  background: #6d43e3;
}
.compe_linkbtn .compe_inner_head.hero_head {
  margin-top: 3rem;
}
@media screen and (max-width: 450px) {
  .compe_linkbtn .compe_inner_head.hero_head {
    margin-top: 2rem;
  }
}
.compe_linkbtn .compe_inner_head.hero_head span {
  background: #ff3750;
}
.compe_linkbtn .btn, .compe_linkbtn .anime {
  width: 440px;
  margin-top: 1.8rem;
  height: 7.6rem;
  border: 2px solid;
  border-image: linear-gradient(to bottom, #00b6c7, #4F6398) 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .compe_linkbtn .btn, .compe_linkbtn .anime {
    width: 80%;
    margin: 1.8rem auto 0;
  }
}
@media screen and (max-width: 450px) {
  .compe_linkbtn .btn, .compe_linkbtn .anime {
    margin-top: 1.6rem;
    width: 100%;
    padding: 1.7rem;
    height: auto;
  }
}
.compe_linkbtn .btn::before, .compe_linkbtn .anime::before {
  background: linear-gradient(180deg, #16AD9C 0%, #4F6398 100%);
  position: absolute;
  left: -100%;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.3s;
}
.compe_linkbtn .anime {
  border-image: linear-gradient(to top, #c3a7a8, #6d43e3) 1;
}
.compe_linkbtn .anime::before {
  background: linear-gradient(0deg, #c3a7a8 0%, #6d43e3 100%);
}
.compe_linkbtn .btn:hover::before, .compe_linkbtn .anime:hover::before {
  left: 0;
}
.compe_linkbtn .hero {
  border-image: linear-gradient(to top, #FF9CA8, #ff3750) 1;
}
.compe_linkbtn .hero::before {
  background: linear-gradient(0deg, #FF9CA8 0%, #ff3750 100%);
}
.compe_linkbtn .btn:hover::before, .compe_linkbtn .anime:hover::before {
  left: 0;
}
.compe_linkbtn .period {
  font-family: config-variable, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  line-height: 1.1;
  text-align: center;
  margin-top: 1rem;
}
.compe_linkbtn .period span {
  color: #a5a5a5;
  font-size: 1.4rem;
  margin-right: 2rem;
}
.compe_linkbtn .period i {
  font-size: 1.6rem;
  font-style: normal;
}

/*------------- X Border Fight ボーダーファイト --------------*/
.box-fight p {
  line-height: 1.8;
}
.box-fight .session_contents li {
  margin-top: 5px;
}

/*------------- talksession トークセッション --------------*/
.talk {
  margin: 6rem auto 0;
}
@media screen and (max-width: 767px) {
  .talk {
    margin: 2rem auto;
  }
}
.talk .session_contents {
  padding: 4rem;
  padding-bottom: 2.8rem;
}
@media screen and (max-width: 450px) {
  .talk .session_contents {
    padding: 3.2rem 2rem;
  }
}
.talk .talk_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  margin-top: 4rem;
}
.talk .talk_container.first {
  margin-top: 2rem;
}
@media screen and (max-width: 450px) {
  .talk .talk_container {
    flex-direction: column;
  }
}
.talk .talk_container .judge_container {
  flex-direction: column;
  align-items: center;
  flex-basis: 46%;
  padding-bottom: 0;
}
@media screen and (max-width: 450px) {
  .talk .talk_container .judge_container {
    margin-top: 0;
  }
}
.talk .talk_container .judge_container .img {
  max-width: 287px;
  height: 185px;
}
.talk .talk_container .judge_container .img img {
  height: 185px;
  object-fit: contain;
}
.talk .talk_container .judge_container .judge_txt {
  margin-top: 1.6rem;
}
.talk .talk_container .judge_container .judge_txt .inner_txt {
  margin-top: 2rem;
}
@media screen and (max-width: 450px) {
  .talk .talk_container .judge_container:first-child {
    margin-top: 4rem;
  }
}
.talk .talk_container .icon {
  margin-top: 24%;
}
@media screen and (max-width: 450px) {
  .talk .talk_container .icon {
    margin-top: 0;
  }
  .talk .talk_container .icon img {
    height: 32px;
  }
}
.talk .second {
  margin-top: 3.2rem;
  text-align: left;
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  .talk .facilitator {
    margin-top: 2rem;
  }
}

/*------------- Pay Per View ペイパービュー --------------*/
.payperview {
  margin: 6rem auto;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .payperview {
    margin: 2rem auto;
  }
}
.payperview .session_contents {
  background: #1a1a1a;
}
.payperview .session_contents .ticket_container {
  margin-top: 3.2rem;
  margin-bottom: 2rem;
  display: block;
}
@media screen and (max-width: 450px) {
  .payperview .session_contents .ticket_container {
    margin-top: 2.4rem;
    flex-direction: column;
    align-items: center;
  }
}
.payperview .session_contents .ticket_container .section_btn {
  width: 320px;
  font-size: 1.4rem;
  margin: 2rem auto;
}
.payperview .session_contents .ticket_container .section_btn::after {
  width: 18px;
  height: 12px;
  right: 16px;
}
.payperview .session_contents table {
  width: 32rem;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin: 0 auto;
}
@media screen and (max-width: 450px) {
  .payperview .session_contents table {
    width: 100%;
  }
}
.payperview .session_contents table th,
.payperview .session_contents table td {
  font-size: 1.4rem;
}
.payperview .session_contents table th {
  width: 25%;
  font-weight: 400;
}

/*------------- Artists アーティスト --------------*/
.artists {
  margin: 6rem auto;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .artists {
    margin: 0rem auto 4rem;
  }
}
.artists .access_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10rem;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .artists .access_container {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .artists .access_container .map {
    width: 100%;
  }
}
.artists .access_container .map iframe {
  width: 484px;
  height: 261px;
}
@media screen and (max-width: 767px) {
  .artists .access_container .map iframe {
    width: 100%;
    height: 240px;
  }
}
.artists .access_container .access_txt {
  position: relative;
  padding-right: 7rem;
}
@media screen and (max-width: 767px) {
  .artists .access_container .access_txt {
    width: 100%;
    padding: 6rem 0;
    text-align: center;
  }
}
.artists .access_container .access_txt::before {
  position: absolute;
  width: 575px;
  height: 292px;
  background: #1a1a1a;
  border: 1px dashed #a5a5a5;
  content: "";
  right: -7rem;
  right: 0;
  z-index: -1;
  top: 0;
}
@media screen and (max-width: 767px) {
  .artists .access_container .access_txt::before {
    width: 100%;
    border: none;
    height: 100%;
  }
}
.artists .access_container .access_txt .placename {
  font: 500 1.8rem/1.2 "Noto Sans JP", serif;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .artists .access_container .access_txt .placename {
    margin-top: 0;
  }
}
.artists .access_container .access_txt .address {
  font-size: 1.4rem;
  margin-top: 1.2rem;
}
.artists .access_container .access_txt .map_btn {
  border: 1px solid #fff;
  width: fit-content;
  padding: 7px 1rem;
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .artists .access_container .access_txt .map_btn {
    margin: 2.4rem auto 0;
  }
}
.artists .access_container .access_txt .map_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: -100%;
  top: 0;
  transition: 0.2s;
  z-index: -1;
}
.artists .access_container .access_txt .map_btn svg {
  fill: #fff;
  vertical-align: sub;
}
.artists .access_container .access_txt .map_btn:hover {
  color: #000;
}
.artists .access_container .access_txt .map_btn:hover svg {
  fill: #000;
}
.artists .access_container .access_txt .map_btn:hover::after {
  left: 0;
}

/*------------- timetableタイムテーブル --------------*/
.timetable {
  margin: 6rem auto;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .timetable {
    margin: 0 auto;
  }
}

/*------------- areamap エリアマップ --------------*/
.areamap {
  margin: 6rem auto 10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .areamap {
    margin: 0 auto;
  }
}

/*------------- endborder--------------*/
.end_border {
  width: 86%;
  max-width: 866px;
  height: 1px;
  background: #646464;
  position: relative;
  margin: 16rem auto 22rem;
}
@media screen and (max-width: 767px) {
  .end_border {
    margin: 10rem auto 14rem;
  }
}
.end_border::after, .end_border::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #646464;
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.end_border::before {
  left: 0;
  right: auto;
}

/*------------- info 開催概要 --------------*/
.info {
  padding: 16rem 0;
  margin-top: -6rem;
  background: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .info {
    padding: 8rem 0;
  }
}
.info .info_contents {
  width: 71%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .info .info_contents {
    width: 100%;
    margin-top: 4rem;
  }
}
.info .info_contents .info_line {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 450px) {
  .info .info_contents .info_line {
    gap: 2rem;
  }
}
.info .info_contents .info_line .info_head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2.4rem 0 2.2rem;
  flex-basis: 30%;
  font-weight: 500;
}
@media screen and (max-width: 450px) {
  .info .info_contents .info_line .info_head {
    flex-basis: 25%;
    font-size: 1.5rem;
  }
}
.info .info_contents .info_line .info_detail {
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2.4rem 0 2.2rem;
  flex-basis: 70%;
}
@media screen and (max-width: 450px) {
  .info .info_contents .info_line .info_detail {
    flex-basis: 75%;
  }
}

/*------------- sponser&partner 協賛企業、スポンサーパートナー --------------*/
.sponser {
  width: 95%;
  margin: 10rem auto;
  background: #fff;
  padding: 10rem 6rem;
}
@media screen and (max-width: 767px) {
  .sponser {
    padding: 8rem 2rem;
    margin: 10rem auto 6rem;
  }
}
.sponser .companies .top_ttl {
  justify-content: center;
}
@media screen and (max-width: 450px) {
  .sponser .companies .top_ttl .ttl .en {
    text-align: center;
  }
}
.sponser .companies .top_ttl .ttl .jp {
  font-size: 1.2rem;
  color: #1a1a1a;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .sponser .companies .top_ttl .ttl .jp {
    font-size: 1rem;
  }
}
.sponser .companies .company_logo {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3.2rem 4rem;
}
.sponser .companies .company_logo .img img {
  height: 70px;
  object-fit: contain;
}
@media screen and (max-width: 450px) {
  .sponser .companies .company_logo .img img {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .sponser .companies .company_logo {
    margin-top: 4rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .sponser .companies .company_logo {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 3.4rem;
  }
}
.sponser .companies .company_logo.sponsoring {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.sponser .companies .company_logo.sponsoring .img {
  flex-basis: 10%;
}
@media screen and (max-width: 767px) {
  .sponser .companies .company_logo.sponsoring .img {
    flex-basis: 30%;
  }
}
.sponser .partner {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .sponser .partner {
    margin-top: 6.4rem;
  }
}

.index_en #g-nav {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .index_en #g-nav {
    width: 50%;
  }
}
@media screen and (max-width: 450px) {
  .index_en #g-nav {
    width: 100%;
  }
}
.index_en #g-nav li a.nav_btn {
  width: 88%;
  font-size: 1.3rem;
}
.index_en .ttl .en {
  color: #fff;
}
.index_en .ttl .jp {
  color: #aaa;
}
.index_en .sponser .ttl .en {
  color: #aaa;
}
.index_en .sponser .ttl .jp {
  color: #aaa;
}
.index_en .compe .top_ttl .border .prize {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .index_en .compe .top_ttl .border .prize {
    padding-top: 2rem;
  }
}
.index_en .compe .top_ttl .border .prize .prize_contents {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .index_en .compe {
    padding-top: 15rem;
  }
}
@media screen and (max-width: 450px) {
  .index_en .kv .kv_entry {
    width: 95%;
  }
  .index_en .compe .top_ttl .border .prize .prize_contents {
    margin: 1.4rem auto;
  }
  .index_en .compe .compe_container {
    margin-top: 22rem;
  }
}

.entry_page .kv_img {
  display: block;
}
.entry_page .kv_img .kv_inner_img {
  opacity: 0.6;
}
@media screen and (max-width: 450px) {
  .entry_page .kv_img {
    height: 100%;
  }
}
.entry_page .kv_info {
  width: fit-content;
  height: auto;
  z-index: 10;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  transform: translateY(-50%);
  transform: translate(-50%, -50%);
}
.entry_page .kv_info .entry_ttl {
  white-space: nowrap;
  color: #000;
  font: 600 5rem/1 "Noto Sans JP", serif;
  position: relative;
  line-height: 50px;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .entry_page .kv_info .entry_ttl {
    font-size: 3rem;
  }
}
.entry_page .kv_info .entry_ttl strong {
  font-size: 5.7rem;
  font-weight: 600;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .entry_page .kv_info .entry_ttl strong {
    font-size: 3.3rem;
  }
}
.entry_page .kv_info .entry_ttl::before {
  content: "";
  width: 100%;
  height: 50px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 2px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .entry_page .kv_info .entry_ttl::before {
    height: 40px;
    top: 5px;
  }
}
@media screen and (max-width: 450px) {
  .entry_page .kv_info .entry_ttl::before {
    content: none;
  }
}
@media screen and (max-width: 450px) {
  .entry_page .kv_info .ssp {
    text-align: center;
  }
  .entry_page .kv_info .ssp .entry_ttl {
    background: #fff;
    padding: 0 1rem;
    width: fit-content;
    margin-top: 5px;
    line-height: 1.8;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
  .entry_page .kv_info .ssp .entry_ttl strong {
    font-size: 3.8rem;
  }
}
.entry_page .kv_info .entry_lead {
  margin-top: 5rem;
}
@media screen and (max-width: 450px) {
  .entry_page .kv_info .entry_lead {
    margin-top: 4rem;
  }
}
.entry_page .kv_info .entry_lead p {
  text-align: center;
  line-height: 1.8;
  font-weight: 600;
}
.entry_page .kv_info .entry_lead p strong {
  text-decoration: underline;
}
@media screen and (max-width: 450px) {
  .entry_page .kv_info.anime_kv .entry_ttl {
    font-size: 2.4rem;
  }
  .entry_page .kv_info.anime_kv .entry_ttl strong {
    font-size: 2.8rem;
  }
}
.entry_page .kv_entry_info {
  position: static;
}
.entry_page .kv_entry_info .entry_period {
  width: 20.2083333333vw;
  margin: 7rem auto 0;
}
@media screen and (max-width: 767px) {
  .entry_page .kv_entry_info .entry_period {
    width: 60%;
  }
}
@media screen and (max-width: 450px) {
  .entry_page .kv_entry_info .entry_period {
    width: 80%;
  }
}
.entry_page .kv_entry_info .entry_btn {
  position: static;
  margin: 6rem auto 0;
  width: fit-content;
}
.entry_page .kv_entry_info .entry_btn .btn {
  width: 342px;
  padding: 1.6rem 1rem;
  border: 1px solid #fff;
}
@media screen and (max-width: 450px) {
  .entry_page .kv_entry_info .entry_btn {
    width: 100%;
  }
  .entry_page .kv_entry_info .entry_btn .btn {
    width: 100%;
  }
}

#plan, #entry {
  padding-top: 18rem;
  margin-top: -8rem;
}
@media screen and (max-width: 450px) {
  #plan, #entry {
    padding-top: 14rem;
  }
}

/*------------- prize賞金 --------------*/
.page-prize {
  margin: 8.8rem auto 10rem;
  padding-top: 10rem;
  width: 1100px;
}
@media screen and (max-width: 767px) {
  .page-prize {
    width: 90%;
    margin: 1rem auto 8rem;
  }
}
@media screen and (max-width: 450px) {
  .page-prize {
    padding-top: 8rem;
    margin: 0 auto 4rem;
  }
}
.page-prize .page_ttl {
  text-align: center;
}
.page-prize .page_ttl .en {
  width: fit-content;
  margin: 0 auto;
}
.page-prize .page_ttl .jp {
  text-align: center;
}
.page-prize .prize_container {
  padding: 5.4rem 5rem;
  background: linear-gradient(180deg, #1A1A1A 27%, rgba(0, 0, 0, 0) 100%);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4%;
  margin-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  .page-prize .prize_container {
    flex-direction: column;
    gap: 6rem;
  }
}
@media screen and (max-width: 450px) {
  .page-prize .prize_container {
    margin-top: 4rem;
    padding: 4rem 3rem;
  }
}
.page-prize .prize_container .prize_box {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .page-prize .prize_container .prize_box {
    width: 100%;
  }
}
.page-prize .prize_container .prize_box .prize_ttl {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .page-prize .prize_container .prize_box .prize_ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .page-prize .prize_container .prize_box .prize_ttl {
    font-size: 1.6rem;
  }
}
.page-prize .prize_container .prize_item {
  border-bottom: 1px dashed #fff;
  padding: 3.2rem 0 2rem 4rem;
}
@media screen and (max-width: 450px) {
  .page-prize .prize_container .prize_item {
    padding: 2rem 0 1.2rem 2rem;
  }
}
.page-prize .prize_container .prize_item .dep_ttl {
  font: 600 2.4rem/1 "Noto Sans JP", serif;
  color: #C4B28B;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-prize .prize_container .prize_item .dep_ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .page-prize .prize_container .prize_item .dep_ttl {
    font-size: 1.6rem;
  }
}
.page-prize .prize_container .prize_item .dep_ttl span {
  width: 12px;
  height: 12px;
  background: #C4B28B;
  display: block;
  border-radius: 50%;
  margin-right: 2rem;
}
@media screen and (max-width: 450px) {
  .page-prize .prize_container .prize_item .dep_ttl span {
    width: 10px;
    margin-right: 1.6rem;
    height: 10px;
  }
}
.page-prize .prize_container .prize_item .prize_amount {
  margin-top: 2rem;
  font-size: 3.7rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .page-prize .prize_container .prize_item .prize_amount {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 450px) {
  .page-prize .prize_container .prize_item .prize_amount {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}
.page-prize .prize_container .prize_item .prize_amount strong {
  font: 400 8rem/1 "abril-fatface", serif;
  background: linear-gradient(180deg, #FFF 40%, #8c8373 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 2rem;
}
@media screen and (max-width: 450px) {
  .page-prize .prize_container .prize_item .prize_amount strong {
    font-size: 6rem;
  }
}
.page-prize .prize_container .prize_item_02 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #fff;
  padding-bottom: 2rem;
}
@media screen and (max-width: 450px) {
  .page-prize .prize_container .prize_item_02 {
    padding-bottom: 1.2rem;
  }
}
.page-prize .prize_container .prize_item_02 .prize_inner_item {
  flex: 1;
}
.page-prize .prize_container .prize_item_02 .prize_inner_item .dep_ttl {
  margin-top: 3rem;
  padding-left: 4rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font: 500 1.8rem/1 "Noto Sans JP", serif;
}
@media screen and (max-width: 450px) {
  .page-prize .prize_container .prize_item_02 .prize_inner_item .dep_ttl {
    padding-left: 2rem;
    font-size: 1.6rem;
    margin-top: 2rem;
  }
}
.page-prize .prize_container .prize_item_02 .prize_inner_item .dep_ttl span {
  width: 12px;
  height: 12px;
  background: #C4B28B;
  display: block;
  border-radius: 50%;
  margin-right: 3rem;
}
@media screen and (max-width: 450px) {
  .page-prize .prize_container .prize_item_02 .prize_inner_item .dep_ttl span {
    width: 10px;
    height: 10px;
    margin-right: 1.6rem;
  }
}
.page-prize .prize_container .prize_item_02 .prize_inner_item .prize_amount {
  padding-left: 4rem;
  margin-top: 1.5rem;
  font: 600 2rem/1 "Noto Sans JP", serif;
}
.page-prize .prize_container .prize_item_02 .prize_inner_item .prize_amount strong {
  margin-right: 2rem;
  font: 400 5rem/1 "abril-fatface", serif;
  background: linear-gradient(180deg, #FFF 62%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 450px) {
  .page-prize .prize_container .prize_item_02 .prize_inner_item .prize_amount {
    padding-left: 2rem;
    font-size: 1.6rem;
  }
  .page-prize .prize_container .prize_item_02 .prize_inner_item .prize_amount strong {
    font-size: 4.2rem;
  }
}
.page-prize .prize_container .prize_item_02 .prize_inner_item .silver {
  color: #C0C8D1;
}
.page-prize .prize_container .prize_item_02 .prize_inner_item .silver span {
  background: #C0C8D1;
}
.page-prize .prize_container .prize_item_02 .prize_inner_item .bronze {
  color: #B98A8A;
}
.page-prize .prize_container .prize_item_02 .prize_inner_item .bronze span {
  background: #B98A8A;
}
.page-prize .prize_container .prize_item_02 .dashed_tate {
  border-left: 1px dashed #fff;
  margin-top: 3rem;
}

/*------------- page_concept --------------*/
.page_concept {
  background: url(../images/page_bgline.svg) repeat-y;
  background-size: 100%;
  background-position: center;
  padding: 12rem 0;
  position: relative;
}
@media screen and (max-width: 450px) {
  .page_concept {
    padding: 10rem 0 22rem;
  }
}
.page_concept::after {
  content: "";
  width: 590px;
  height: 611px;
  background: url(../images/concept_logo_mark.png) 0/contain no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .page_concept::after {
    width: 361px;
    height: 375px;
  }
}
@media screen and (max-width: 767px) {
  .page_concept::after {
    width: 259px;
    height: 266px;
  }
}
.page_concept .page_concept_ttl {
  text-align: center;
}
.page_concept .page_concept_ttl .en {
  font-family: config-variable, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 400;
  line-height: 1.1;
  color: #b2b2b2;
}
.page_concept .page_concept_ttl .jp {
  font: 400 3rem/1.2 "Noto Sans JP", serif;
  margin-top: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_concept .page_concept_ttl .jp {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 450px) {
  .page_concept .page_concept_ttl .jp {
    font-size: 2.2rem;
  }
}
.page_concept .page_concept_ttl .jp::after {
  content: "";
  width: 3.5rem;
  height: 2px;
  background: #00b6c7;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2rem;
}
@media screen and (max-width: 450px) {
  .page_concept .page_concept_ttl .jp::after {
    width: 24px;
  }
}
.page_concept .page_concept_ttl .page_concept_lead {
  margin-top: 5.3rem;
  text-align: center;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 450px) {
  .page_concept .page_concept_ttl .page_concept_lead {
    padding: 0 2rem;
    font-size: 1.4rem;
  }
}
.page_concept .page_concept_contents {
  width: 95%;
  max-width: 1050px;
  margin: 10rem auto 0;
}
@media screen and (max-width: 450px) {
  .page_concept .page_concept_contents {
    margin: 6.4rem auto 0;
    width: 90%;
  }
}
.page_concept .page_concept_contents .page_concept_box {
  background: linear-gradient(90deg, #1A1A1A 20%, #000 100%);
  padding: 4rem;
  width: 55%;
  margin: 2.4rem auto 0 0;
}
@media screen and (max-width: 767px) {
  .page_concept .page_concept_contents .page_concept_box {
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .page_concept .page_concept_contents .page_concept_box {
    width: 90%;
    padding: 3.2rem 0 3.2rem 2rem;
  }
}
.page_concept .page_concept_contents .page_concept_box .concept_inner_ttl {
  font: 500 2rem/1.5 "Noto Sans JP", serif;
  position: relative;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .page_concept .page_concept_contents .page_concept_box .concept_inner_ttl {
    font-size: 1.8rem;
  }
}
.page_concept .page_concept_contents .page_concept_box .concept_inner_ttl::after {
  content: "";
  width: 23px;
  height: 1px;
  background: #00b6c7;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page_concept .page_concept_contents .page_concept_box .concept_inner_txt {
  padding-left: 3rem;
  margin-top: 3rem;
  font: 400 1.5rem/1.8 "Noto Sans JP", serif;
}
.page_concept .page_concept_contents .page_concept_box .concept_inner_txt i {
  font-size: 1rem;
  vertical-align: text-top;
}
@media screen and (max-width: 767px) {
  .page_concept .page_concept_contents .page_concept_box .concept_inner_txt {
    font-size: 1.4rem;
  }
  .page_concept .page_concept_contents .page_concept_box .concept_inner_txt i {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 450px) {
  .page_concept .page_concept_contents .page_concept_box .concept_inner_txt {
    padding-left: 1.8rem;
  }
}
.page_concept .page_concept_contents .page_concept_box .concept_inner_ex {
  padding-left: 4.6rem;
  text-indent: -1.4rem;
  font-size: 1.2rem;
  white-space: nowrap;
  margin-top: 2rem;
}
.page_concept .page_concept_contents .page_concept_box .concept_inner_ex:last-child {
  margin-top: 0.6rem;
}
.page_concept .page_concept_contents .page_concept_box .concept_inner_ex::before {
  content: "※";
  margin-right: 5px;
}
@media screen and (max-width: 450px) {
  .page_concept .page_concept_contents .page_concept_box .concept_inner_ex {
    padding-left: 3rem;
    white-space: wrap;
  }
}
.page_concept .page_concept_contents .page_concept_box.left {
  margin: 2.4rem 0 0 auto;
}
@media screen and (max-width: 450px) {
  .page_concept .page_concept_contents .page_concept_box.left {
    background: linear-gradient(270deg, #1A1A1A 20%, #000 100%);
    padding: 3.2rem 2rem 3.2rem 0;
  }
}

/*------------- banner --------------*/
.banner {
  background: #1A1A1A;
  padding: 11rem 0;
}
@media screen and (max-width: 767px) {
  .banner {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 450px) {
  .banner {
    padding: 3.2rem 0;
  }
}
.banner .banner_contents {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #000;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .banner .banner_contents {
    justify-content: space-between;
  }
}
@media screen and (max-width: 450px) {
  .banner .banner_contents {
    display: block;
    padding: 6.4rem 2rem 4rem;
    background: url(../images/banner_anime_sp.jpg) 0/cover no-repeat;
  }
}
.banner .banner_contents .banner_txt {
  flex-basis: 52%;
  padding: 6rem 0 4rem 3rem;
}
@media screen and (max-width: 450px) {
  .banner .banner_contents .banner_txt {
    padding: 0;
  }
}
.banner .banner_contents .banner_txt .banner_ttl {
  font: 600 2rem/1.6 "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .banner .banner_contents .banner_txt .banner_ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 450px) {
  .banner .banner_contents .banner_txt .banner_ttl {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.banner .banner_contents .banner_txt .btn {
  height: 6rem;
  margin-top: 4rem;
  width: 400px;
}
@media screen and (max-width: 767px) {
  .banner .banner_contents .banner_txt .btn {
    width: 80%;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 450px) {
  .banner .banner_contents .banner_txt .btn {
    width: 90%;
    margin-top: 2.4rem;
  }
}
.banner .banner_contents .banner_img {
  flex-basis: 48%;
}
@media screen and (max-width: 767px) {
  .banner .banner_contents .banner_img {
    flex-basis: 40%;
  }
}
.banner .banner_contents .banner_img img {
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .banner .banner_contents .banner_img img {
    object-position: left;
  }
}
@media screen and (max-width: 450px) {
  .banner .banner_contents .banner_img {
    display: none;
  }
}

/*------------- 応募企画 --------------*/
.target {
  background: url(../images/page_bgline.svg) repeat-y;
  background-size: 100%;
  background-position: center;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .target {
    padding: 10rem 0;
  }
}
@media screen and (max-width: 450px) {
  .target {
    padding: 8rem 0;
  }
}
.target .target_container {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .target .target_container {
    flex-direction: column;
  }
}
.target .target_box {
  margin: 2rem 0 0 auto;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .target .target_box {
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .target .target_box {
    width: 100%;
    padding: 2.4rem 1rem 3.2rem 2rem;
  }
}
.target .target_box p {
  font: 500 1.5rem/2 "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .target .target_box p {
    font-size: 1.4rem;
  }
}
.target .target_box .plan_list {
  margin-top: 2rem;
}
.target .target_box .plan_list li {
  font-size: 1.4rem;
  text-indent: -1.5rem;
  line-height: 1.6;
  padding-left: 1.5rem;
}
.target .target_box .plan_list li::before {
  content: "※";
}
.target .target_box .plan_info {
  margin-top: 3.2rem;
}
.target .target_box .plan_info dt {
  font: 500 1.6rem/1.4 "Noto Sans JP", serif;
  padding-left: 2.2rem;
  position: relative;
}
.target .target_box .plan_info dt::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .target .target_box .plan_info dt::before {
    top: 7.2px;
    transform: none;
  }
}
.target .target_box .plan_info dt i {
  font: 400 1.2rem/1.4 "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .target .target_box .plan_info dt i {
    margin: 0.8rem 0 0;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .target .target_box .plan_info dt {
    font-size: 1.4rem;
  }
  .target .target_box .plan_info dt i {
    font-size: 1rem;
  }
}
.target .target_box .plan_info dt span {
  font-size: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 8px 1px;
  vertical-align: middle;
  margin-left: 1rem;
}
.target .target_box .plan_info dd {
  font: 400 1.5rem/1.6 "Noto Sans JP", serif;
  margin-top: 2rem;
  padding-left: 2rem;
}
.target .target_box .plan_info dd i {
  display: block;
  font: 400 1.4rem/1.4 "Noto Sans JP", serif;
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .target .target_box .plan_info dd {
    font-size: 1.4rem;
    margin-top: 1.6rem;
  }
  .target .target_box .plan_info dd i {
    margin-top: 1.4rem;
  }
}
.target .target_box.dep_box {
  margin-top: 2.4rem;
}
.target .target_box.dep_box p {
  margin-top: 4rem;
}
.target .target_box.dep_box p:not(:first-child) {
  margin-top: 2.4rem;
}
.target .target_box.dep_box p a {
  text-decoration: underline;
  display: inline-block;
  margin-right: 4px;
}
.target .target_box .dep_ttl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3rem;
}
.target .target_box .dep_ttl .dep_inner_ttl {
  font: 600 2rem/1.2 "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .target .target_box .dep_ttl .dep_inner_ttl {
    font-size: 1.8rem;
  }
}
.target .target_box .dep_ttl .dep_inner_ttl span {
  width: 1rem;
  height: 1rem;
  background: #00b6c7;
  display: inline-block;
  margin-right: 1.5rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .target .target_box .dep_ttl .dep_inner_ttl span {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.target .target_box .dep_ttl .amount {
  margin-top: 0;
  font-size: 1.3rem;
  display: inline-block;
  line-height: 1;
}
.target .target_box .dep_ttl .amount strong {
  font-size: 1.5rem;
  margin-left: 5px;
}
.target .target_box.left {
  margin: 3rem 0;
  padding: 2rem 4rem;
}
.target .target_box.center {
  margin: 3rem auto 0;
  background: none;
  padding: 0;
}
.target .target_box.center .plan_list {
  text-align: center;
  line-height: 1.4;
}
.target .target_box.center .plan_list li::before {
  content: none;
}
.target .for_plan {
  margin-top: 8rem;
}
.target .final_call {
  margin: 12rem auto 0;
}
@media screen and (max-width: 767px) {
  .target .final_call {
    margin: 10rem auto 0;
  }
}
.target .final_call .plan_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2rem;
}
.target .final_call .plan_container p {
  background: #000;
  border-radius: 50%;
  width: 185.5px;
  border: 1px dashed rgba(225, 225, 225, 0.5);
  text-align: center;
  padding: 1rem;
}
.target .final_call .final_call_txt {
  text-align: center;
  font: 600 1.4rem/2 "Noto Sans JP", serif;
}
@media screen and (max-width: 450px) {
  .target .final_call .final_call_txt {
    margin-top: 2rem;
  }
}
.target .final_call .final_call_txt .inner_call {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  flex-direction: row;
}
@media screen and (max-width: 450px) {
  .target .final_call .final_call_txt .inner_call {
    gap: 2px;
    line-height: 1.2;
    flex-direction: column;
  }
}
.target .final_call .final_call_txt .okinawa {
  padding: 1px 1.7rem;
  margin-right: 1rem;
  border: 1px solid #fff;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 450px) {
  .target .final_call .final_call_txt .okinawa {
    margin-top: 2rem;
    padding: 0 1.7rem;
    line-height: 1.6;
  }
}
.target .final_call .final_call_txt .bold {
  font: 500 2.4rem/2 "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .target .final_call .final_call_txt .bold {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 450px) {
  .target .final_call .final_call_txt .bold {
    font-size: 2rem;
    line-height: 1.8;
  }
}
.target .btn {
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .target .btn {
    width: 70%;
  }
}
@media screen and (max-width: 450px) {
  .target .btn {
    width: 100%;
  }
}
.target .call_add {
  font: 400 1.4rem/1.8 "Noto Sans JP", serif;
  text-align: center;
  margin-top: 4rem;
}

/*------------- 応募からの流れ --------------*/
.flow {
  margin: 16rem auto;
  width: 90%;
  min-width: 1050px;
  background: #1A1A1A;
  border: 1px dashed rgba(225, 225, 225, 0.5);
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .flow {
    margin: 12rem auto;
    min-width: auto;
  }
}
@media screen and (max-width: 450px) {
  .flow {
    padding: 6rem 0;
    margin: 8rem auto;
  }
}
.flow .flow_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .flow .flow_container {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 450px) {
  .flow .flow_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 3.2rem;
  }
}
.flow .flow_box {
  flex-basis: 17.5%;
}
@media screen and (max-width: 767px) {
  .flow .flow_box {
    flex-basis: 40%;
  }
}
@media screen and (max-width: 450px) {
  .flow .flow_box {
    width: 80%;
  }
}
.flow .flow_box .num .under_solid {
  font: 600 1.8rem/1.2 "Noto Sans JP", serif;
}
.flow .flow_box .num .border_dashed {
  font-weight: 600;
  white-space: nowrap;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .flow .flow_box .num .border_dashed {
    text-align: center;
    padding-left: 0;
    margin-left: -2rem;
  }
}
.flow .flow_box .icon {
  width: 28%;
  margin: 2rem auto 0;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .flow .flow_box .icon {
    opacity: 0.8;
  }
}
@media screen and (max-width: 450px) {
  .flow .flow_box .icon {
    margin-top: 2rem;
    width: 20%;
  }
}
.flow .flow_box .icon img {
  height: 47px;
  object-fit: contain;
}
@media screen and (max-width: 450px) {
  .flow .flow_box .icon img {
    height: 38px;
  }
}
.flow .flow_box .flow_txt {
  flex-grow: 1;
  font-size: 1.3rem;
  margin-top: 2rem;
}
@media screen and (max-width: 450px) {
  .flow .flow_box .flow_txt {
    margin-top: 2rem;
    text-align: center;
  }
}
.flow .flow_box.flow_double {
  width: 280px;
  flex-basis: 28%;
}
@media screen and (max-width: 767px) {
  .flow .flow_box.flow_double {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 450px) {
  .flow .flow_box.flow_double {
    flex-basis: 45%;
  }
}
.flow .flow_box.flow_double .icon {
  width: 18%;
}
.flow .arrow {
  margin-top: 3rem;
}
.flow .arrow img {
  height: 120px;
}
@media screen and (max-width: 767px) {
  .flow .arrow {
    margin-top: 4rem;
    width: 2%;
  }
  .flow .arrow img {
    width: 15px;
  }
}
@media screen and (max-width: 450px) {
  .flow .arrow {
    margin: 0;
    width: 50%;
    margin: 2rem auto 2.4rem;
  }
  .flow .arrow img {
    width: 100%;
    height: 20px;
  }
}

/*------------- よくあるご質問 --------------*/
.faq {
  background: #C0C0C0;
  padding: 12rem 0;
  color: #000;
}
@media screen and (max-width: 450px) {
  .faq {
    padding: 10rem 0;
  }
}
.faq .faq_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 450px) {
  .faq .faq_container {
    flex-direction: column;
  }
}
.faq .faq_container .page_ttl {
  flex-basis: 30%;
}
.faq .faq_container .page_ttl .en {
  color: #555555;
}
.faq .faq_container .faq_contents {
  flex-basis: 70%;
}
@media screen and (max-width: 450px) {
  .faq .faq_container .faq_contents {
    margin-top: 4rem;
  }
}
.faq .faq_container .faq_contents .faq_item:not(:first-child) {
  margin-top: 4rem;
}
@media screen and (max-width: 450px) {
  .faq .faq_container .faq_contents .faq_item:not(:first-child) {
    margin-top: 2rem;
  }
}
.faq .faq_container .faq_contents .faq_item .question {
  padding: 0.6rem 0;
  font-weight: 600;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.faq .faq_container .faq_contents .faq_item .question span {
  padding: 0.6rem 0;
  color: #00b6c7;
  padding-right: 1.8rem;
  font-family: config-variable, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  line-height: 1.1;
  margin-right: 1.8rem;
  position: relative;
}
.faq .faq_container .faq_contents .faq_item .question span::after {
  content: "";
  width: 1px;
  height: 110%;
  background: #1a1a1a;
  position: absolute;
  top: 0;
  right: -1px;
}
.faq .faq_container .faq_contents .faq_item .answer {
  font-weight: 500;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 450px) {
  .faq .faq_container .faq_contents .faq_item .answer {
    align-items: stretch;
  }
  .faq .faq_container .faq_contents .faq_item .answer.short {
    align-items: baseline;
  }
}
.faq .faq_container .faq_contents .faq_item .answer span {
  padding: 1rem 0;
  color: #555555;
  padding-right: 1.8rem;
  font-family: config-variable, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  line-height: 1.1;
  margin-right: 1.8rem;
  border-right: 1px dashed rgba(25, 25, 25, 0.5);
}

/*------------- 審査員 --------------*/
.judge {
  margin-top: 12rem;
  background: #1a1a1a;
  padding: 9rem 5rem;
}
@media screen and (max-width: 450px) {
  .judge {
    margin-top: 8rem;
    padding: 8rem 2rem;
  }
}

.judge_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 2.4rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 450px) {
  .judge_container {
    margin-top: 4rem;
    flex-direction: column;
  }
}
.judge_container .img {
  flex-basis: 30%;
  height: 180px;
}
@media screen and (max-width: 450px) {
  .judge_container .img {
    height: 150px;
  }
}
.judge_container .judge_txt {
  flex-basis: 65%;
}
.judge_container .judge_txt .name {
  font: 700 1.6rem/1.2 "Noto Serif JP", serif;
}
@media screen and (max-width: 450px) {
  .judge_container .judge_txt .name {
    margin: 1.4rem 0;
  }
}
@media screen and (max-width: 450px) {
  .judge_container .judge_txt .name .under_solid {
    padding-bottom: 1rem;
  }
}
.judge_container .judge_txt .name .under_solid span {
  margin-left: 1rem;
  color: #c3a7a8;
  font-size: 1.4rem;
}
@media screen and (max-width: 450px) {
  .judge_container .judge_txt .name .under_solid span {
    font-size: 1.2rem;
    display: block;
    margin: 0.8rem 0 0 0;
  }
}
.judge_container .judge_txt .inner_txt {
  margin-top: 2.8rem;
  font-size: 1.4rem;
}
.judge_container .judge_txt .inner_txt p {
  margin-top: 6px;
}

/*------------- 審査員インタビュー --------------*/
.interview {
  margin: 16rem auto 0;
}
@media screen and (max-width: 450px) {
  .interview {
    margin: 10rem auto 0;
  }
}
.interview .page_ttl {
  width: fit-content;
  margin: 0 auto;
}
.interview .page_ttl .jp {
  text-align: center;
}

/*------------- 応募フォーム --------------*/
.entry_form {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .entry_form {
    margin-top: 8rem;
  }
}
.entry_form .page_ttl .en {
  font-family: config-variable, sans-serif;
  font-size: 8rem;
  font-weight: 300;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 300;
  line-height: 1.1;
  text-align: center;
  border-left: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .entry_form .page_ttl .en {
    font-size: 5rem;
  }
}
.entry_form .page_ttl .en::after {
  content: "";
  width: 2rem;
  height: 2px;
  background: #00b6c7;
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.entry_form .page_ttl .jp {
  text-align: center;
  margin-top: 2rem;
}

.form-container {
  width: 80%;
  max-width: 950px;
  margin: 7.2rem auto 12rem;
  background-color: #1a1a1a;
  padding: 9rem 2rem;
}
@media screen and (max-width: 767px) {
  .form-container {
    margin-top: 4rem;
    width: 100%;
    padding: 6.4rem 2rem;
  }
}
@media screen and (max-width: 450px) {
  .form-container {
    margin-bottom: 8rem;
  }
}
.form-container .daihyou {
  font-weight: 600;
  margin-bottom: 2rem;
  margin-left: 7%;
}
@media screen and (max-width: 450px) {
  .form-container .daihyou {
    margin-left: 0;
    margin-bottom: 1.8rem;
  }
}
.form-container .form-group {
  margin-bottom: 2.5rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 450px) {
  .form-container .form-group {
    flex-direction: column !important;
  }
}
.form-container label {
  display: block;
  margin-bottom: 5px;
  flex-basis: 26%;
}
@media screen and (max-width: 767px) {
  .form-container label {
    font-size: 1.4rem;
  }
}
.form-container label span {
  font-size: 1.2rem;
}
.form-container .input-group {
  flex-basis: 60%;
}
.form-container .input-group textarea {
  width: 100%;
  padding: 1rem;
  height: 100px;
  background: #fff;
  color: #333;
  font-size: 1.4rem;
}
.form-container input[type=text],
.form-container input[type=email],
.form-container input[type=tel],
.form-container input[type=url],
.form-container input[type=file],
.form-container .radio-group input {
  width: 100%;
  padding: 8px 1.4rem;
  border: 1px solid #444;
  background-color: #f5f5f5;
  color: #000;
  font-size: 14px;
}
.form-container .note {
  font-size: 12px;
  margin-top: 5px;
}
.form-container .radio-group {
  display: flex;
  gap: 10px;
}
.form-container .radio-group .radio-btn {
  flex-basis: 30%;
}
.form-container .radio-group .radio-btn.wide {
  flex-basis: 50%;
}
.form-container .radio-group .radio-btn input[type=radio] {
  appearance: none; /* デフォルトのラジオボタンスタイルをリセット */
  -webkit-appearance: none; /* Safari対応 */
  width: 20px; /* ラジオボタンのサイズ */
  height: 20px;
  padding: 0;
  border: 3px solid #ccc; /* ボーダーの色 */
  border-radius: 50%; /* 丸型にする */
  cursor: pointer;
  background-color: #fff; /* 未選択時の背景色 */
  transition: all 0.3s ease;
}
@media screen and (max-width: 450px) {
  .form-container .radio-group .radio-btn input[type=radio] {
    width: 18px; /* ラジオボタンのサイズ */
    height: 18px;
  }
}
.form-container .radio-group .radio-btn input[type=radio]:checked {
  background-color: #00b6c7; /* チェック時の背景色 */
  border: 3px solid #fff;
}
.form-container .radio-group .radio-btn .radio_text {
  margin-left: 8px; /* テキストとラジオボタンの間のスペース */
  font-size: 14px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form-container .radio-group {
    flex-direction: column;
    padding-left: 2rem;
    margin-top: 1rem;
  }
}
.form-container .member-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.form-container .submit-button {
  display: block;
  width: 70%;
  margin-top: 20px;
  height: 6.4rem;
  margin: 4rem auto 0;
  background: #00b6c7;
  color: #000;
}
.form-container .submit-button::after {
  background-image: url(../images/arrow_b.svg);
}
@media screen and (max-width: 767px) {
  .form-container .submit-button {
    padding: 2.2rem;
  }
}
.form-container .add-row, .form-container .add-file {
  margin-top: 10px;
  margin: 1rem auto 0 0;
  display: block;
  border-radius: 2px;
  padding: 4px 1.4rem;
  background: #D9D9D9;
  background: linear-gradient(180deg, #D9D9D9 61.42%, #999 100%);
  color: #000;
  font-size: 1.2rem;
}
.form-container .note02 {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
}

/* サンクスページ */
.kv_info.thanks {
  width: 90%;
}
.kv_info.thanks .kv_logo {
  width: 40%;
  margin: 0 auto;
}
.kv_info.thanks .thanks_ttl {
  font: 600 2.8rem/1.2 "Noto Sans JP", serif;
  text-align: center;
  margin-top: 3rem;
}
.kv_info.thanks .entry_lead {
  margin: 4rem auto 0;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .kv_info.thanks .entry_lead {
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .kv_info.thanks .entry_lead {
    width: 90%;
  }
}
.kv_info.thanks .entry_lead p {
  width: fit-content;
  text-align: left;
  margin-top: 1rem;
}

.page_anime .page_concept .page_concept_ttl .jp::after {
  background: #6d43e3;
}
.page_anime .page_concept .page_concept_contents .page_concept_box .concept_inner_ttl::after {
  background: #6d43e3;
}
.page_anime .banner .banner_contents .banner_txt .banner_ttl {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .page_anime .banner .banner_contents .banner_txt .banner_ttl {
    font-size: 1.6rem;
  }
}
.page_anime .banner .banner_contents .banner_txt .btn {
  border-image: linear-gradient(to bottom, #00b6c7, #4F6398) 1;
}
.page_anime .banner .banner_contents .banner_txt .btn::before {
  background: linear-gradient(to bottom, #00b6c7, #4F6398) 1;
}
.page_anime .target .dep_ttl .dep_inner_ttl span {
  background: #6d43e3;
}
.page_anime .target .btn {
  border-image: linear-gradient(to top, #c3a7a8, #6d43e3) 1;
}
.page_anime .target .btn::before {
  background: linear-gradient(0deg, #c3a7a8 0%, #6d43e3 100%);
}
.page_anime .faq_container .faq_contents .faq_item .question span {
  color: #6d43e3;
}
.page_anime .entry_form .page_ttl .en::after {
  background: #6d43e3;
}
.page_anime .form-container .radio-group .radio-btn input[type=radio]:checked {
  background-color: #6d43e3;
}
.page_anime .form-container .submit-button {
  background: #6d43e3;
}

/* ローディングオーバーレイ */
#loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  pointer-events: none;
}

#loading-overlay .loading-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 4px solid #fff;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lang {
  right: 26rem;
  position: fixed;
  top: 22px;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .lang {
    right: 8rem;
  }
}
.lang ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.lang a {
  color: #fff;
  font-size: 1.4rem;
}
.lang .japan {
  position: relative;
}
.lang .japan::before {
  content: "/";
  padding-right: 1rem;
  color: #ccc;
}
.lang.toppage {
  right: 10rem;
}
@media screen and (max-width: 767px) {
  .lang.toppage {
    right: 9rem;
  }
}

.page_en #g-nav li a.nav_btn {
  width: 400px;
}
.page_en .page_ttl .en {
  color: #fff;
}
.page_en .entry_page .kv_info .entry_ttl {
  text-align: center;
}
.page_en .entry_page .kv_entry_info .entry_btn .btn {
  width: 415px;
}
.page_en .page-prize .prize_container .prize_item .prize_amount strong {
  font-size: 6.5rem;
  margin: 1rem 0.7rem;
}
.page_en .page-prize .prize_container .prize_item_02 .prize_inner_item .dep_ttl {
  font-size: 1.4rem;
  padding-left: 2rem;
}
.page_en .page-prize .prize_container .prize_item_02 .prize_inner_item .prize_amount {
  font-size: 2.4rem;
  padding-left: 1rem;
}
.page_en .page-prize .prize_container .prize_item_02 .prize_inner_item .prize_amount strong {
  margin: 0 0.7rem;
}
.page_en .target .final_call .final_call_txt .inner_call {
  flex-direction: column;
  margin-top: 4rem;
}
.page_en .target .final_call .plan_container p {
  width: 252px;
}
.page_en .form-container .radio-group .radio-btn {
  flex-basis: 45%;
}
.page_en .page_concept .page_concept_contents .page_concept_box .concept_inner_txt .mt10 {
  margin-top: 1rem;
}
.page_en #plan {
  padding-top: 15rem;
}
.page_en .target .target_box .dep_ttl {
  flex-direction: column;
  align-items: flex-start;
}
.page_en .target .target_box .dep_ttl .amount {
  padding-left: 2rem;
}
@media screen and (max-width: 450px) {
  .page_en #g-nav li a.nav_btn {
    width: 360px;
  }
  .page_en .entry_page .kv_info {
    width: 95%;
  }
  .page_en .entry_page .kv_entry_info .entry_btn .btn {
    width: 100%;
  }
  .page_en .page-prize .prize_container {
    margin-top: 4rem;
    padding: 4rem 1.8rem;
  }
  .page_en .page-prize .prize_container .prize_item .prize_amount strong {
    font-size: 4.5rem;
  }
  .page_en .page-prize .prize_container .prize_item_02 .prize_inner_item .prize_amount strong {
    font-size: 2.6rem;
  }
  .page_en .page-prize .prize_container .prize_item_02 .prize_inner_item .prize_amount {
    font-size: 2rem;
    padding-left: 1.5rem;
  }
  .page_en .page-prize .prize_container .prize_item_02 .prize_inner_item .dep_ttl {
    font-size: 1.2rem;
    /* padding-left: 2rem; */
  }
  .page_en .page-prize .prize_container .prize_item_02 .prize_inner_item .dep_ttl span {
    margin-right: 1rem;
  }
  .page_en .target .target_box .dep_ttl {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .page_en .target .final_call .plan_container {
    gap: 0.5rem;
  }
  .page_en .target .final_call .plan_container p {
    font-size: 1.2rem;
  }
  .page_en .target .final_call .final_call_txt .inner_call {
    line-height: 1.5;
  }
  .page_en .form-container .radio-group {
    flex-direction: column;
    margin-top: 1rem;
  }
}

.validation-message {
  color: #ff3b30;
  font-size: 10px;
  margin-top: 5px;
  font-weight: bold;
}

.form-group label span {
  color: #fff;
  font-size: 14px;
}
.form-group .input-group {
  position: relative;
}
.form-group .input-group input.error, .form-group .input-group textarea.error {
  border-color: #ff3b30;
}

.note_form {
  margin-left: 7%;
  padding-bottom: 1.4rem;
  display: block;
  font-size: 1.2rem;
}
.note_form.last {
  margin-bottom: 2.4rem;
}

.piriod h3 {
  margin: 3rem auto 0;
  font: 700 2rem/1.2 "Noto Sans JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px #fff dashed;
  width: fit-content;
  padding-bottom: 4px;
}
.piriod h3 span {
  font-size: 2rem;
}
.piriod h3 strong {
  font: 700 4rem/1 "abril-fatface", serif;
}

/*------------- verse heroヒーロー部門 --------------*/
.pages.entry_btn.herobtn .btn {
  background: linear-gradient(180deg, #FF9CA8 0%, #FF3751 100%);
}

.pages.entry_btn.herobtn .btn::before {
  background: #ff3750;
}

.page_hero .prize_container {
  justify-content: center;
  width: 55%;
  max-width: 505px;
  margin: 5.4rem auto 0;
}
.page_hero .prize_container .prize_ex {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .page_hero .prize_container {
    width: 100%;
  }
}
.page_hero .page_concept .page_concept_ttl .jp::after {
  background: #ff3750;
}
.page_hero .page_concept .page_concept_contents .page_concept_box .concept_inner_ttl::after {
  background: #ff3750;
}
.page_hero .page_ttl .en {
  border-left: 2px solid #ff3750;
}
.page_hero .target .dep_ttl .dep_inner_ttl span {
  background: #ff3750;
}
.page_hero .target .btn {
  border-image: linear-gradient(to top, #c3a7a8, #ff3750) 1;
}
.page_hero .target .btn::before {
  background: linear-gradient(0deg, #c3a7a8 0%, #ff3750 100%);
}
.page_hero .target .target_box {
  margin: 2.4rem 0;
  width: 60%;
}
.page_hero .target .target_box h4 {
  font-size: 1.8rem;
  margin: 1.8rem 0 1rem;
  font-weight: 600;
}
.page_hero .target .target_box .plan_info dt strong {
  border: 1px solid #fff;
  padding: 0 5px;
}
.page_hero .faq_container .faq_contents .faq_item .question span {
  color: #ff3750;
}
.page_hero .entry_form .page_ttl .en::after {
  background: #ff3750;
}
.page_hero .form-container .radio-group .radio-btn input[type=radio]:checked {
  background-color: #ff3750;
}
.page_hero .form-container .submit-button {
  background: #ff3750;
}
@media screen and (max-width: 767px) {
  .page_hero .page_concept .page_concept_contents .page_concept_box {
    width: 100%;
  }
  .page_hero .target .target_box {
    margin: 2.4rem 0;
    width: 100%;
    padding-left: 2rem;
  }
  .page_hero .target .target_box.left {
    padding-left: 2rem;
  }
  .page_hero .target {
    padding-bottom: 6.4rem;
  }
  .page_hero .judge {
    margin-top: 6.4rem;
    padding: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .entry_page .kv_info.hero_kv {
    width: 90%;
  }
  .entry_page .kv_info.hero_kv .entry_lead {
    font-size: 1.4rem;
  }
}