@charset "UTF-8";
/******************************************************************
Theme Name: audition
Theme URI: davinciinc.co.jp
Author: DAVINCI inc.
Author URI: https://davinciinc.co.jp/
Version: 2.0
******************************************************************/
/*----------------------------------------------------------
font
------------------------------------------------------------*/
body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W5", "Meiryo", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
}

:root {
  --font-en: "Bebas Neue", sans-serif;
}

/* root setting
--------------------------------------------------- */
:root {
  --color-bk: #000;
  --color-wh: #fff;
  --bg-bk: #000;
  --bg-bk02: #262626;
  --bg-bk03: #191919;
  --bg-wh: #fff;
  --bg-gy: #7f7f7f;
  --bg-gy02: #dddddd;
  --bg-green: #cefe00;
}

/*----------------------------------------------------------
loader
------------------------------------------------------------*/
.loader {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--bg-bk);
}

.loader .image {
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  max-width: 220px;
  overflow: hidden;
  background: linear-gradient(45deg, #ff6a00, #ee0979, #00c6ff, #ff4b1f, #f9d423);
  background-size: 400% 400%;
  transform: translate(-50%, -50%);
  animation: gradientAnimation 15s ease infinite;
  aspect-ratio: 1/1;
}

.loader::before {
  z-index: 1001;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(40% + 2px);
  max-width: 221px;
  border: 2px solid var(--bg-bk);
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
}

.loader .image svg {
  width: 101%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 50% 100%;
  }
  75% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* reset
--------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  font-family: system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  overflow: visible;
  border: none;
  color: inherit;
  border-block-start: 1px solid;
  block-size: 0;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
/* layout
--------------------------------------------------- */
html {
  height: 100%;
  font-size: 100%;
  background-color: var(--color-bk);
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 95%;
  }
}
body {
  height: 100%;
  overflow-y: scroll;
  color: var(--color-wh);
}

.noscroll {
  height: 100%;
  overflow: hidden;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

a {
  display: block;
  text-decoration: none;
  color: var(--color-wh);
  cursor: pointer;
  outline: none;
}

p a {
  display: inline;
}

img,
svg {
  width: 100%;
  height: auto;
}

.wrap {
  position: relative;
  width: 100%;
  min-width: 320px;
  height: auto !important;
  height: 100%;
  min-height: 100%;
  margin: auto;
  overflow-x: hidden;
  background-color: var(--bg-bk02);
  transition: 1s;
  opacity: 1;
}

body.noscroll .wrap {
  height: 100vh;
  overflow: hidden;
  opacity: 0;
}

.inline-b {
  display: inline-block;
}

/*----------------------------------------------------------
共通padding
------------------------------------------------------------*/
.pd-wrap {
  padding: 0 25px;
}
@media screen and (min-width: 576px) {
  .pd-wrap {
    padding: 0 35px;
  }
}
@media screen and (min-width: 768px) {
  .pd-wrap {
    padding: 0 50px;
  }
}
@media screen and (min-width: 1024px) {
  .pd-wrap {
    padding: 0 50px;
  }
}
@media screen and (min-width: 1280px) {
  .pd-wrap {
    padding: 0 100px;
  }
}

/*----------------------------------------------------------
共通inner
------------------------------------------------------------*/
.common-inner {
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
}

/*----------------------------------------------------------
 共通ボックス
------------------------------------------------------------*/
.common-box {
  padding: 30px 20px;
  background-color: var(--bg-bk03);
}
@media screen and (min-width: 576px) {
  .common-box {
    padding: 40px 50px;
  }
}
@media screen and (min-width: 768px) {
  .common-box {
    padding: 50px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .common-box {
    padding: 60px 80px;
  }
}
@media screen and (min-width: 1280px) {
  .common-box {
    padding: 60px 100px;
  }
}

.mt-30 {
  margin-top: 30px;
}
@media screen and (min-width: 576px) {
  .mt-30 {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .mt-30 {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .mt-30 {
    margin-top: 60px;
  }
}

/*----------------------------------------------------------
共通タイトル
------------------------------------------------------------*/
.common-en-ttl {
  font-family: var(--font-en);
  font-size: 3.625rem;
  line-height: 1;
  color: var(--color-wh);
}
@media screen and (min-width: 768px) {
  .common-en-ttl {
    font-size: 4.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .common-en-ttl {
    font-size: 5rem;
  }
}
@media screen and (min-width: 1280px) {
  .common-en-ttl {
    font-size: 5.625rem;
  }
}

.common-ttl {
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  max-width: 320px;
  margin-bottom: 30px;
  padding: 1px 20px;
  text-align: center;
  background-color: var(--bg-wh);
  transform: skew(-26.57deg);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .common-ttl {
    max-width: 400px;
    padding: 3px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .common-ttl {
    max-width: 500px;
    margin-bottom: 40px;
    padding: 5px 20px;
  }
}
@media screen and (min-width: 1280px) {
  .common-ttl {
    max-width: 600px;
    margin-bottom: 50px;
  }
}
.common-ttl span {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-bk);
  transform: skew(18.43deg);
}
@media screen and (min-width: 768px) {
  .common-ttl span {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .common-ttl span {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .common-ttl span {
    font-size: 1.625rem;
  }
}

.common-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .common-list {
    gap: 40px;
    max-width: 500px;
  }
}
@media screen and (min-width: 1280px) {
  .common-list {
    gap: 50px;
    max-width: 600px;
  }
}
.common-list__item {
  width: 100%;
}
.common-list__ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .common-list__ttl {
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .common-list__ttl {
    gap: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .common-list__ttl {
    gap: 14px;
  }
}
.common-list__ttl span {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-wh);
}
@media screen and (min-width: 768px) {
  .common-list__ttl span {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 1024px) {
  .common-list__ttl span {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1280px) {
  .common-list__ttl span {
    font-size: 1.3125rem;
  }
}
.common-list__ttl::before {
  content: "";
  width: 14px;
  height: 3.5px;
  background-color: var(--bg-green);
}
@media screen and (min-width: 768px) {
  .common-list__ttl::before {
    width: 16px;
    height: 4px;
  }
}
@media screen and (min-width: 1024px) {
  .common-list__ttl::before {
    width: 18px;
    height: 5px;
  }
}
@media screen and (min-width: 1280px) {
  .common-list__ttl::before {
    width: 20px;
    height: 6px;
  }
}
.common-list .txt {
  margin-top: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-wh);
}
@media screen and (min-width: 768px) {
  .common-list .txt {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 1024px) {
  .common-list .txt {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1280px) {
  .common-list .txt {
    font-size: 1.3125rem;
  }
}

.common-txt-list {
  margin-top: 15px;
  padding-left: 15px;
}
.common-txt-list li {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.6923;
  color: var(--color-wh);
  list-style: disc;
}
@media screen and (min-width: 768px) {
  .common-txt-list li {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .common-txt-list li {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1280px) {
  .common-txt-list li {
    font-size: 1.125rem;
  }
}

/*----------------------------------------------------------
 header
------------------------------------------------------------*/
/* --------------------------------------------------
 header
--------------------------------------------------- */
.header {
  z-index: 94;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
}

@media screen and (min-width: 1024px) {
  .header__inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 15px;
  }
}
/* menu-btn
--------------------------------------------------- */
.menu-btn {
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 33px;
  right: 31px;
  width: 37px;
  height: 37px;
  border: 1px solid var(--color-wh);
  border-radius: 50%;
  background-color: var(--bg-gy);
  cursor: pointer;
}
.menu-btn span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1px;
  background-color: var(--color-wh);
  transform: translateX(-50%);
  transition: 0.3s ease;
}
.menu-btn span:nth-of-type(1) {
  top: calc(50% - 6px);
}
.menu-btn span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.menu-btn span:nth-of-type(3) {
  top: calc(50% + 5px);
}
.menu-btn.active span {
  background-color: var(--color-wh);
}
.menu-btn.active span:nth-of-type(1) {
  top: 50%;
  width: 18px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  width: 18px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .menu-btn {
    width: 45px;
    height: 45px;
  }
  .menu-btn span {
    width: 26px;
  }
  .menu-btn span:nth-of-type(1) {
    top: calc(50% - 7px);
  }
  .menu-btn span:nth-of-type(3) {
    top: calc(50% + 7px);
  }
  .menu-btn.active span:nth-of-type(1),
  .menu-btn.active span:nth-of-type(3) {
    top: 50%;
    width: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .menu-btn {
    width: 56px;
    height: 56px;
  }
  .menu-btn span {
    width: 30px;
  }
  .menu-btn span:nth-of-type(1) {
    top: calc(50% - 8px);
  }
  .menu-btn span:nth-of-type(3) {
    top: calc(50% + 8px);
  }
  .menu-btn.active span:nth-of-type(1),
  .menu-btn.active span:nth-of-type(3) {
    top: 50%;
    width: 26px;
  }
}
@media screen and (min-width: 1280px) {
  .menu-btn {
    width: 64px;
    height: 64px;
  }
  .menu-btn span {
    width: 34px;
  }
  .menu-btn span:nth-of-type(1) {
    top: calc(50% - 9px);
  }
  .menu-btn span:nth-of-type(3) {
    top: calc(50% + 9px);
  }
  .menu-btn.active span:nth-of-type(1),
  .menu-btn.active span:nth-of-type(3) {
    top: 50%;
    width: 28px;
  }
}

/* g-nav
--------------------------------------------------- */
.g-nav {
  z-index: 9998;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: var(--bg-bk02);
  transition: 0.3s;
}

.g-nav.open {
  right: 0;
}

.g-nav__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1190px;
  height: 100%;
  padding-bottom: 100px;
  margin-inline: auto;
}

.g-nav__logo {
  width: 190px;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .g-nav__logo {
    width: 240px;
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1135px) {
  .g-nav {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .g-nav__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding-right: 20px;
    padding-bottom: 0;
    padding-left: 20px;
  }
  .g-nav__logo {
    width: 160px;
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1280px) {
  .g-nav__inner {
    gap: 60px;
  }
  .g-nav__logo {
    width: 220px;
  }
}
@media screen and (min-width: 1601px) {
  .g-nav__logo {
    width: 240px;
  }
}
.g-nav__list .en-text {
  font-family: var(--font-en);
}

.g-nav__list > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 20px;
}

.g-nav__list > ul > li {
  position: relative;
  width: 100%;
}

.g-nav__list > ul > li > a,
.g-nav__list > ul > li > .parent > a {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  position: relative;
  padding: 5px;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--color-wh);
  transition: all 0.3s ease;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .g-nav__list > ul > li > a:hover,
  .g-nav__list > ul > li > .parent > a:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}

.g-nav__list > ul > li > a::before,
.g-nav__list > ul > li > .parent > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-wh);
  opacity: 0.3;
}

.g-nav__list > ul > li > a span.jp-text,
.g-nav__list > ul > li > .parent > a span.jp-text {
  padding-bottom: 3px;
  font-size: 0.9rem;
  color: var(--color-wh);
  flex-shrink: 0;
}

.g-nav__list > ul > li > .sub {
  padding-top: 20px;
}

.g-nav__list > ul > li > .sub .sub__item ul {
  padding: 0 0 30px;
}

.g-nav__list > ul > li > .sub .sub__item ul li a {
  position: relative;
  padding: 8px 40px 8px 10px;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--color-bk);
}

.g-nav__list > ul > li > .sub .sub__item ul li a::before,
.g-nav__list > ul > li > .sub .sub__item ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
}

.g-nav__list > ul > li > .sub .sub__item ul li a::before {
  width: 5px;
  height: 5px;
  transform: translate(0, -50%) rotate(45deg);
  border-top: 1px solid var(--color-bk);
}

.g-nav__list > ul > li > .sub .sub__item ul li a::after {
  width: 28px;
  height: 1px;
  background: var(--color-bk);
  transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .g-nav__list > ul {
    padding: 0 60px;
  }
  .g-nav__list > ul > li > a,
  .g-nav__list > ul > li > .parent > a {
    gap: 12px;
    padding: 8px;
    font-size: 1.8rem;
  }
  .g-nav__list > ul > li > a span.jp-text,
  .g-nav__list > ul > li > .parent > a span.jp-text {
    padding-bottom: 4px;
    font-size: 1.05rem;
  }
  .g-nav__list > ul > li > .sub .sub__item ul li a {
    padding: 8px 40px 8px 10px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1135px) {
  .g-nav__menu {
    width: calc(100% - 240px);
  }
  .g-nav__list > ul {
    display: grid;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .g-nav__list > ul > li {
    width: 100%;
  }
  .g-nav__list > ul > li > a,
  .g-nav__list > ul > li > .parent > a {
    gap: 7px;
    padding: 8px 8px;
    font-size: 1.3rem;
  }
  .g-nav__list > ul > li > a span.jp-text,
  .g-nav__list > ul > li > .parent > a span.jp-text {
    padding-bottom: 4px;
    font-size: 0.9rem;
  }
  .g-nav__list > ul > li > .sub .sub__item ul li a {
    padding: 8px 40px 8px 10px;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1280px) {
  .g-nav__menu {
    width: calc(100% - 320px);
  }
  .g-nav__list > ul > li > a,
  .g-nav__list > ul > li > .parent > a {
    gap: 12px;
    padding: 8px 8px;
    font-size: 1.4rem;
  }
  .g-nav__list > ul > li > a span.jp-text,
  .g-nav__list > ul > li > .parent > a span.jp-text {
    padding-bottom: 4px;
    font-size: 1rem;
  }
  .g-nav__list > ul > li > .sub .sub__item ul li a {
    padding: 8px 40px 8px 10px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1601px) {
  .g-nav__menu {
    width: calc(100% - 320px);
  }
  .g-nav__list > ul {
    gap: 14px 60px;
  }
  .g-nav__list > ul > li > a,
  .g-nav__list > ul > li > .parent > a {
    gap: 18px;
    padding: 10px;
  }
  .g-nav__list > ul > li > a span.jp-text,
  .g-nav__list > ul > li > .parent > a span.jp-text {
    padding-bottom: 4px;
  }
  .g-nav__list > ul > li > .sub .sub__item ul li a {
    padding: 8px 40px 8px 10px;
  }
}
/*----------------------------------------------------------
under-nav
------------------------------------------------------------*/
.under-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .under-nav {
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .under-nav {
    gap: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .under-nav {
    gap: 14px;
  }
}
.under-nav a {
  display: block;
  width: 100%;
  max-width: 420px;
  padding: 18.5px 15px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  color: var(--color-wh);
  background-color: var(--bg-bk03);
  transition: all 0.3s ease;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .under-nav a {
    padding: 20px 15px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 769px) {
  .under-nav a:hover {
    color: var(--bg-bk03);
    background-color: var(--bg-wh);
    opacity: 1;
    cursor: pointer;
  }
}
@media screen and (min-width: 1024px) {
  .under-nav a {
    max-width: 450px;
    padding: 22px 15px;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1280px) {
  .under-nav a {
    max-width: 500px;
    padding: 24px 15px;
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------
 footer
--------------------------------------------------- */
.footer {
  z-index: 1;
  position: relative;
  width: 100%;
  padding-top: 23px;
  padding-bottom: 16px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding-top: 35px;
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 1280px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
.footer__copy p {
  font-family: var(--font-en);
  font-size: 0.625rem;
  font-weight: 400;
  text-align: center;
  color: var(--color-wh);
}
@media screen and (min-width: 576px) {
  .footer__copy p {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__copy p {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer__copy p {
    padding: 20px;
    font-size: 1.0625rem;
  }
}

/* --------------------------------------------------
 front page
--------------------------------------------------- */
/*----------------------------------------------------------
sec-wrap
------------------------------------------------------------*/
.sec-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: -400px;
}

/*----------------------------------------------------------
mv
------------------------------------------------------------*/
.mv {
  z-index: 0;
  position: relative;
  width: 100%;
  height: 750px;
  background: url(assets/images/mv_bg.jpg) center center/cover no-repeat;
}

/*----------------------------------------------------------
top-date
------------------------------------------------------------*/
.top-date {
  z-index: 1;
  position: relative;
  padding: 10px;
  background-color: var(--bg-bk03);
}
@media screen and (min-width: 768px) {
  .top-date {
    padding: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .top-date {
    padding: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .top-date {
    padding: 25px;
  }
}
.top-date__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .top-date__flex {
    gap: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .top-date__flex {
    gap: 20px;
  }
}
.top-date__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.11;
  color: var(--color-bk);
  background-color: var(--bg-green);
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .top-date__ttl {
    width: 70px;
    height: 70px;
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-date__ttl {
    width: 76px;
    height: 76px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .top-date__ttl {
    width: 82px;
    height: 82px;
    font-size: 1.75rem;
  }
}
.top-date__txt {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--bg-green);
}
@media screen and (min-width: 768px) {
  .top-date__txt {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-date__txt {
    font-size: 1.6875rem;
  }
}
@media screen and (min-width: 1280px) {
  .top-date__txt {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 640px) {
  .top-date__txt br {
    display: none;
  }
}
.top-date__txt .num {
  font-family: var(--font-en);
  font-size: 2.375rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .top-date__txt .num {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-date__txt .num {
    font-size: 2.875rem;
  }
}
@media screen and (min-width: 1280px) {
  .top-date__txt .num {
    font-size: 3.125rem;
  }
}

/*----------------------------------------------------------
top-message 
------------------------------------------------------------*/
.top-message__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .top-message__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px 30px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .top-message__list {
    gap: 40px 20px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-message__list {
    gap: 60px 30px;
    margin-top: 50px;
  }
}
.top-message__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-message__item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .top-message__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (min-width: 1280px) {
  .top-message__item {
    width: calc((100% - 60px) / 3);
  }
}
.top-message__item .img {
  position: relative;
  aspect-ratio: 325/210;
}
.top-message__item .img img {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.top-message__item .names {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: absolute;
  bottom: 20px;
  left: 0;
  color: var(--color-bk);
}
.top-message__item .position {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-bk);
  background-color: var(--bg-wh);
}
@media screen and (min-width: 1024px) {
  .top-message__item .position {
    font-size: 0.9375rem;
  }
}
.top-message__item .name {
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 20px;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: var(--bg-wh);
}
@media screen and (min-width: 1024px) {
  .top-message__item .name {
    font-size: 1.25rem;
  }
}
.top-message__item .txt {
  margin-top: 15px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4286;
  color: var(--color-wh);
}
@media screen and (min-width: 1024px) {
  .top-message__item .txt {
    margin-top: 20px;
    font-size: 1rem;
  }
}

/*----------------------------------------------------------
.top-period 
------------------------------------------------------------*/
.top-period__txt {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-wh);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-period__txt {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-period__txt {
    font-size: 1.6875rem;
  }
}
@media screen and (min-width: 1280px) {
  .top-period__txt {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 690px) {
  .top-period__txt br {
    display: none;
  }
}
.top-period__txt .num {
  font-family: var(--font-en);
  font-size: 2.375rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .top-period__txt .num {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-period__txt .num {
    font-size: 2.875rem;
  }
}
@media screen and (min-width: 1280px) {
  .top-period__txt .num {
    font-size: 3.125rem;
  }
}
.top-period__txt02 {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--bg-green);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-period__txt02 {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-period__txt02 {
    font-size: 1.4375rem;
  }
}
@media screen and (min-width: 1280px) {
  .top-period__txt02 {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 690px) {
  .top-period__txt02 br {
    display: none;
  }
}
.top-period__txt02 .num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .top-period__txt02 .num {
    font-size: 2.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-period__txt02 .num {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 1280px) {
  .top-period__txt02 .num {
    font-size: 2.875rem;
  }
}
.top-period .txt {
  padding-top: 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-wh);
  border-top: 1px solid var(--color-wh);
}
@media screen and (min-width: 768px) {
  .top-period .txt {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-period .txt {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1280px) {
  .top-period .txt {
    font-size: 1.3125rem;
  }
}
.top-period .common-txt-list {
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .top-period .common-txt-list {
    max-width: 600px;
  }
}

/*----------------------------------------------------------
top-entry
------------------------------------------------------------*/
.top-entry .common-en-ttl {
  text-align: center;
}
.top-entry__txt {
  margin-top: 35px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-wh);
}
@media screen and (min-width: 768px) {
  .top-entry__txt {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-entry__txt {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1280px) {
  .top-entry__txt {
    font-size: 1.375rem;
  }
}
.top-entry__txt span {
  display: inline-block;
}
.top-entry__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 320px;
  height: 67px;
  margin-top: 30px;
  padding-right: 34px;
  padding-left: 34px;
  border: 1px solid var(--bg-wh);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-bk02);
  background-color: var(--bg-wh);
  transition: all 0.3s ease;
  margin-inline: auto;
}
@media screen and (min-width: 400px) {
  .top-entry__btn {
    padding-right: 44px;
    padding-left: 44px;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-entry__btn {
    max-width: 360px;
    margin-top: 50px;
    padding-right: 54px;
    padding-left: 54px;
    font-size: 1.5rem;
  }
}
.top-entry__btn span {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--bg-bk02);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.top-entry__btn span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 46%;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  border-top: 2px solid var(--bg-wh);
  border-right: 2px solid var(--bg-wh);
  transform-origin: center;
  translate: -50% -50%;
}
@media screen and (min-width: 769px) {
  .top-entry__btn:hover {
    color: var(--bg-wh);
    background-color: var(--bg-bk02);
  }
  .top-entry__btn:hover span {
    background-color: var(--bg-wh);
  }
  .top-entry__btn:hover span::before {
    border-top: 2px solid var(--bg-bk02);
    border-right: 2px solid var(--bg-bk02);
  }
}

/*----------------------------------------------------------
entry
------------------------------------------------------------*/
.usp-form-20 {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}

.entry {
  padding-top: 150px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .entry {
    padding-top: 200px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .entry {
    padding-top: 250px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .entry {
    padding-top: 300px;
    padding-bottom: 70px;
  }
}
.entry .common-en-ttl {
  text-align: center;
}
.entry form.usp-form {
  width: 100%;
  max-width: 1000px;
  padding: 0;
  color: var(--color-wh);
  margin-inline: auto;
  /* ーーーーーーーーーーーー'エラーメッセージ'ーーーーーーーーーーーーーー*/
  /* ーーーーーーーーーーーー'共通入力フォーム'ーーーーーーーーーーーーーー*/
  /* ーーーーーーーーーーーー'プライバシーポリシーに同意の上、送信します。'ーーーーーーーーーーーーーー*/
  /* チェック状態のカスタム表示 */
  /* ーーーーーーーーーーーー'ファイル添付'ーーーーーーーーーーーーーー*/
  /* ーーーーーーーーーーーー'送信ボタン'ーーーーーーーーーーーーーー*/
}
.entry form.usp-form .usp-fieldset,
.entry form.usp-form .usp-custom-photo1-files {
  margin-top: 30px !important;
  margin-bottom: 0 !important;
  border: none !important;
}
@media screen and (min-width: 768px) {
  .entry form.usp-form .usp-fieldset,
  .entry form.usp-form .usp-custom-photo1-files {
    margin-top: 40px !important;
  }
}
@media screen and (min-width: 1024px) {
  .entry form.usp-form .usp-fieldset,
  .entry form.usp-form .usp-custom-photo1-files {
    margin-top: 50px !important;
  }
}
@media screen and (min-width: 1280px) {
  .entry form.usp-form .usp-fieldset,
  .entry form.usp-form .usp-custom-photo1-files {
    margin-top: 60px !important;
  }
}
.entry form.usp-form .usp-error-field {
  background-color: none !important;
}
.entry form.usp-form .parsley-required,
.entry form.usp-form .parsley-type,
.entry form.usp-form .custom-photo1-error,
.entry form.usp-form .custom-video1-error {
  margin-top: 15px !important;
  padding: 0;
  font-size: 0.875rem;
  color: #ff5b5b;
  background-color: transparent;
}
@media screen and (min-width: 1024px) {
  .entry form.usp-form .parsley-required,
  .entry form.usp-form .parsley-type,
  .entry form.usp-form .custom-photo1-error,
  .entry form.usp-form .custom-video1-error {
    font-size: 1rem;
  }
}
.entry form.usp-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-wh);
}
@media screen and (min-width: 768px) {
  .entry form.usp-form label {
    margin-bottom: 8px;
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 1024px) {
  .entry form.usp-form label {
    margin-bottom: 10px;
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1280px) {
  .entry form.usp-form label {
    font-size: 1.3125rem;
  }
}
.entry form.usp-form input[type=text],
.entry form.usp-form input[type=email],
.entry form.usp-form input[type=number],
.entry form.usp-form textarea {
  width: 100%;
  padding: 0.6rem 25px;
  border: none;
  border-radius: 3.2px;
  font-size: 0.9375rem;
  color: #000;
  background-color: var(--bg-wh);
}
@media screen and (min-width: 768px) {
  .entry form.usp-form input[type=text],
  .entry form.usp-form input[type=email],
  .entry form.usp-form input[type=number],
  .entry form.usp-form textarea {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 1024px) {
  .entry form.usp-form input[type=text],
  .entry form.usp-form input[type=email],
  .entry form.usp-form input[type=number],
  .entry form.usp-form textarea {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1280px) {
  .entry form.usp-form input[type=text],
  .entry form.usp-form input[type=email],
  .entry form.usp-form input[type=number],
  .entry form.usp-form textarea {
    font-size: 1.3125rem;
  }
}
.entry form.usp-form input[type=text]::-moz-placeholder, .entry form.usp-form input[type=email]::-moz-placeholder, .entry form.usp-form input[type=number]::-moz-placeholder, .entry form.usp-form textarea::-moz-placeholder {
  color: #aaa;
}
.entry form.usp-form input[type=text]::placeholder,
.entry form.usp-form input[type=email]::placeholder,
.entry form.usp-form input[type=number]::placeholder,
.entry form.usp-form textarea::placeholder {
  color: #aaa;
}
.entry form.usp-form textarea {
  height: 136px;
}
@media screen and (min-width: 768px) {
  .entry form.usp-form textarea {
    height: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .entry form.usp-form textarea {
    height: 160px;
  }
}
@media screen and (min-width: 1280px) {
  .entry form.usp-form textarea {
    height: 170px;
  }
}
.entry form.usp-form .usp-agree {
  position: relative;
}
.entry form.usp-form .usp-agree,
.entry form.usp-form .usp-label-agree {
  margin: 0 !important;
  font-size: 0.75rem;
}
@media screen and (min-width: 420px) {
  .entry form.usp-form .usp-agree,
  .entry form.usp-form .usp-label-agree {
    font-size: 0.9375rem;
  }
}
.entry form.usp-form .usp-agree-toggle {
  display: none !important;
}
.entry form.usp-form .usp-agree {
  display: flex;
  align-items: center;
  margin-bottom: 0 !important;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .entry form.usp-form .usp-agree {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .entry form.usp-form .usp-agree {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .entry form.usp-form .usp-agree {
    padding-top: 70px;
  }
}
.entry form.usp-form .usp-agree {
  position: relative;
}
.entry form.usp-form .usp-agree input[type=checkbox] {
  z-index: 2;
  position: absolute;
  top: 40px; /* .usp-agree の padding-top に合わせる */
  left: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .entry form.usp-form .usp-agree input[type=checkbox] {
    top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .entry form.usp-form .usp-agree input[type=checkbox] {
    top: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .entry form.usp-form .usp-agree input[type=checkbox] {
    top: 70px;
  }
}
.entry form.usp-form .usp-agree .custom-checkbox {
  z-index: 1;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 18px;
  border: 2px solid var(--color-wh);
  background-color: var(--color-bk02);
  flex-shrink: 0;
}
.entry form.usp-form .usp-agree input[type=checkbox]:checked + .custom-checkbox {
  border-color: var(--bg-green);
  background-color: var(--bg-green);
}
.entry form.usp-form .usp-agree input[type=checkbox]:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid var(--color-bk);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.entry form.usp-form .usp-files {
  margin: 0 !important;
}
.entry form.usp-form input[type=file] {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 0.75rem;
}
@media screen and (min-width: 400px) {
  .entry form.usp-form input[type=file] {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .entry form.usp-form input[type=file] {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1024px) {
  .entry form.usp-form input[type=file] {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 1280px) {
  .entry form.usp-form input[type=file] {
    font-size: 1.125rem;
  }
}
.entry form.usp-form input[type=file]::file-selector-button {
  width: 160px;
  margin: 0;
  margin-right: 10px;
  padding-top: 6.5px;
  padding-bottom: 6.5px;
  border-radius: 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media screen and (min-width: 400px) {
  .entry form.usp-form input[type=file]::file-selector-button {
    width: 208px;
  }
}
@media screen and (min-width: 768px) {
  .entry form.usp-form input[type=file]::file-selector-button {
    width: 256px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 24px;
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 769px) {
  .entry form.usp-form input[type=file]::file-selector-button:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}
@media screen and (min-width: 1024px) {
  .entry form.usp-form input[type=file]::file-selector-button {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 28px;
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1280px) {
  .entry form.usp-form input[type=file]::file-selector-button {
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 32px;
    font-size: 1.3125rem;
  }
}
.entry form.usp-form input[type=checkbox] {
  margin-right: 0.5rem;
}
.entry form.usp-form .usp-submit {
  display: block;
  width: 100%;
  max-width: 365px;
  height: 60px;
  margin-top: 55px;
  border: 1px solid var(--bg-green);
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-bk);
  background-color: var(--bg-green);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .entry form.usp-form .usp-submit {
    max-width: 400px;
    height: 70px;
    margin-top: 65px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 769px) {
  .entry form.usp-form .usp-submit:hover {
    border: 1px solid var(--bg-green);
    color: var(--bg-green);
    background-color: var(--bg-bk02);
    opacity: 1;
    cursor: pointer;
  }
}
@media screen and (min-width: 1024px) {
  .entry form.usp-form .usp-submit {
    max-width: 450px;
    height: 80px;
    margin-top: 75px;
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 1280px) {
  .entry form.usp-form .usp-submit {
    max-width: 500px;
    height: 90px;
    margin-top: 85px;
    font-size: 1.75rem;
  }
}

/* ーーーーーーーーーーーー'Add another fileを削除'ーーーーーーーーーーーーーー*/
.usp-add-another {
  display: none !important;
}

/*----------------------------------------------------------
サンクスページ
------------------------------------------------------------*/
.entry-thanks {
  padding-top: 150px;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .entry-thanks {
    padding-top: 200px;
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .entry-thanks {
    padding-top: 250px;
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .entry-thanks {
    padding-top: 300px;
    padding-bottom: 240px;
  }
}
.entry-thanks__ttl {
  font-size: 1.1875rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .entry-thanks__ttl {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .entry-thanks__ttl {
    font-size: 1.5625rem;
  }
}
.entry-thanks__txt {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 50px;
  font-size: 0.875rem;
  text-align: justify;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .entry-thanks__txt {
    font-size: 1rem;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .entry-thanks__txt {
    font-size: 1.125rem;
  }
}

/*----------------------------------------------------------
applicant 応募者一覧
------------------------------------------------------------*/
.applicant {
  padding-top: 100px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .applicant {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .applicant {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .applicant {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}
.applicant__flex {
  display: grid;
  gap: 45px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  color: #fff;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .applicant__flex {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .applicant__flex {
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .applicant__flex {
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.applicant .applicant-card {
  border-radius: 12px;
}
.applicant .media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.applicant .image-box,
.applicant .video-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 173/122;
}
.applicant .image-box img,
.applicant .image-box video,
.applicant .video-box img,
.applicant .video-box video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.applicant .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-wh);
}
.applicant .name {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .applicant .name {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .applicant .name {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 1280px) {
  .applicant .name {
    font-size: 1.125rem;
  }
}
.applicant .button {
  padding: 5px 26px;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: var(--color-wh);
  background: var(--bg-gy);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .applicant .button:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}

/*----------------------------------------------------------
applicant 応募者詳細
------------------------------------------------------------*/
.applicant-single {
  padding-top: 100px;
  padding-bottom: 40px;
  /* ーーーーーーーーーーーー'一覧に戻るボタン'ーーーーーーーーーーーーーー*/
}
@media screen and (min-width: 768px) {
  .applicant-single {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .applicant-single {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .applicant-single {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}
.applicant-single__inner {
  max-width: 1024px;
  margin-inline: auto;
}
.applicant-single .media-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .applicant-single .media-grid {
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .applicant-single .media-grid {
    gap: 32px;
  }
}
.applicant-single .image-box {
  transition: all 0.3s ease;
}
@media screen and (min-width: 769px) {
  .applicant-single .image-box:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}
.applicant-single .image-box,
.applicant-single .video-box {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  aspect-ratio: 173/122;
}
.applicant-single .image-box img,
.applicant-single .image-box video,
.applicant-single .video-box img,
.applicant-single .video-box video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.applicant-single .info {
  margin-top: 25px;
}
.applicant-single .info .name {
  font-size: 0.9375rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .applicant-single .info .name {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .applicant-single .info .name {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 1280px) {
  .applicant-single .info .name {
    font-size: 1.125rem;
  }
}
.applicant-single .motivation-box {
  max-width: 660px;
  margin-top: 40px;
  padding-bottom: 50px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .applicant-single .motivation-box {
    width: 100%;
  }
}
.applicant-single .motivation-box h2 {
  margin-bottom: 50px;
  font-size: 1.25rem;
  text-align: center;
  color: var(--color-wh);
}
@media screen and (min-width: 768px) {
  .applicant-single .motivation-box h2 {
    margin-bottom: 60px;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .applicant-single .motivation-box h2 {
    margin-bottom: 60px;
    font-size: 1.5rem;
  }
}
.applicant-single .motivation-box .field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .applicant-single .motivation-box .field-label {
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .applicant-single .motivation-box .field-label {
    gap: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .applicant-single .motivation-box .field-label {
    gap: 14px;
  }
}
.applicant-single .motivation-box .field-label span {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-wh);
}
@media screen and (min-width: 768px) {
  .applicant-single .motivation-box .field-label span {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .applicant-single .motivation-box .field-label span {
    font-size: 1.125rem;
  }
}
.applicant-single .motivation-box .field-label::before {
  content: "";
  width: 14px;
  height: 3.5px;
  background-color: var(--bg-green);
}
@media screen and (min-width: 768px) {
  .applicant-single .motivation-box .field-label::before {
    width: 16px;
    height: 4px;
  }
}
@media screen and (min-width: 1024px) {
  .applicant-single .motivation-box .field-label::before {
    width: 18px;
    height: 5px;
  }
}
@media screen and (min-width: 1280px) {
  .applicant-single .motivation-box .field-label::before {
    width: 20px;
    height: 6px;
  }
}
.applicant-single .motivation-box .field-value {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 0.75rem;
  color: var(--color-wh);
  white-space: pre-wrap;
}
@media screen and (min-width: 768px) {
  .applicant-single .motivation-box .field-value {
    margin-top: 12px;
    margin-bottom: 30px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .applicant-single .motivation-box .field-value {
    margin-top: 14px;
    font-size: 1rem;
  }
}
.applicant-single .back-button {
  text-align: center;
}
.applicant-single .back-button .button {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 210px;
  padding: 2px 20px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  background: var(--bg-gy02);
  transition: all 0.3s ease;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .applicant-single .back-button .button {
    padding: 3px 20px;
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 1024px) {
  .applicant-single .back-button .button {
    max-width: 250px;
    padding: 4px 20px;
    font-size: 0.9375rem;
  }
}
.applicant-single .back-button .button span {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .applicant-single .back-button .button span {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .applicant-single .back-button .button span {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 769px) {
  .applicant-single .back-button .button:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}

/* ーーーーーーーーーーーー'モーダル'ーーーーーーーーーーーーーー*/
.image-modal {
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.image-modal img {
  width: auto;
  max-width: 90vw;
  height: auto;
  max-height: 80vh;
  -o-object-fit: contain;
  object-fit: contain;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.image-modal-close {
  position: absolute;
  top: -60px;
  right: 0px;
  font-size: 32px;
  color: var(--color-wh);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .image-modal-close {
    top: -50px;
    right: -50px;
  }
}
@media screen and (min-width: 1024px) {
  .image-modal-close {
    font-size: 40px;
  }
}

/*----------------------------------------------------------
ページネーション
------------------------------------------------------------*/
.applicant-pagination {
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .applicant-pagination {
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .applicant-pagination {
    margin-bottom: 140px;
  }
}
@media screen and (min-width: 1280px) {
  .applicant-pagination {
    margin-bottom: 160px;
  }
}

.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
  margin-inline: auto;
}

.wp-pagenavi {
  /* 選択中のページ*/
  /* 選択中以外のページ */
  /* 前へボタン
  */
  /* 次へボタン */
  /* 現在のページ/全ページの数 部分*/
  /* 最後部分*/
  /* 最初部分*/
  /* 現在のページ/全ページの数 部分*/
}
.wp-pagenavi .current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  padding-bottom: 1px;
  border: none;
  font-size: 0.625rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-bk);
  background-color: var(--bg-green);
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .current {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .wp-pagenavi .current {
    width: 34px;
    height: 34px;
    font-size: 0.875rem;
  }
}
.wp-pagenavi .larger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  padding-bottom: 1px;
  border: none;
  font-size: 0.625rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-bk);
  background-color: var(--bg-wh);
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .larger {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 769px) {
  .wp-pagenavi .larger:hover {
    background-color: var(--bg-green);
  }
}
@media screen and (min-width: 1024px) {
  .wp-pagenavi .larger {
    width: 34px;
    height: 34px;
    font-size: 0.875rem;
  }
}
.wp-pagenavi .smaller {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  padding-bottom: 1px;
  border: none;
  font-size: 0.625rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-bk);
  background-color: var(--bg-wh);
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .smaller {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 769px) {
  .wp-pagenavi .smaller:hover {
    background-color: var(--bg-green);
  }
}
@media screen and (min-width: 1024px) {
  .wp-pagenavi .smaller {
    width: 34px;
    height: 34px;
    font-size: 0.875rem;
  }
}
.wp-pagenavi .previouspostslink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-wh);
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .previouspostslink {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 769px) {
  .wp-pagenavi .previouspostslink:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}
@media screen and (min-width: 1024px) {
  .wp-pagenavi .previouspostslink {
    font-size: 1rem;
  }
}
.wp-pagenavi .nextpostslink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-wh);
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .nextpostslink {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 769px) {
  .wp-pagenavi .nextpostslink:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}
@media screen and (min-width: 1024px) {
  .wp-pagenavi .nextpostslink {
    font-size: 1rem;
  }
}
.wp-pagenavi .pages {
  display: none !important;
}
.wp-pagenavi .last {
  display: none !important;
}
.wp-pagenavi .first {
  display: none !important;
}
.wp-pagenavi .extend {
  display: none !important;
}/*# sourceMappingURL=style.css.map */
