@charset "UTF-8";
:root {
  --color-w: #ffffff;
  --color-main: #004ea2;
  --color-main2: #98aed8;
  --color-main3: #e7eaf2;
  --color-bg: #eaf2f7;
  --color-moji: #111111;
  --color-red: #821033;
  --color-0: #000000;
  --color-1: #111111;
  --color-2: #202020;
  --color-3: #474747;
  --color-4: #7c7c7c;
  --color-5: #a0a0a0;
  --color-6: #c4c4c4;
  --color-7: #d8d8d8;
  --color-8: #e5e5e5;
  --color-9: #f4f4f4;
  --color-10: #ffffff;
  --color-info: #eceff3;
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --font-main: "europa", "Noto Sans JP", sans-serif;
  --font-bold: "europa", "Noto Sans JP", sans-serif;
  --font-go: "Noto Sans JP" sans-serif;
}

::-moz-selection {
  background: #8b989e;
}

::selection {
  background: #8b989e;
}

/* ==========================================================================

	common style

========================================================================== */
html {
  font-size: 62.5%;
  font-family: var(--font-main);
  color: var(--color-moji);
}

body {
  font-size: 1.2rem;
  position: relative;
  margin: 0;
}

body.overflow {
  overflow: hidden;
}

main {
  position: relative;
}

input:-internal-autofill-selected {
  background-color: #fbfbfd !important;
}

a {
  color: var(--color-moji);
  text-decoration: none;
}

a:hover {
  transition: all 1s;
}

video {
  max-width: 100%;
  height: auto;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

input, button, textarea, select {
  font: inherit;
}

div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  position: relative;
  line-height: 1.5;
  font-weight: 400;
}

a {
  color: var(--color-moji);
  text-decoration: none;
}

a:hover {
  transition: all 1s;
}

.pa {
  position: absolute;
}

video {
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: bottom;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, textarea {
  display: block;
}

nav ul {
  list-style: none;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input[type=submit] {
  cursor: pointer;
  border: none;
}

textarea {
  resize: vertical;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

li {
  list-style: none;
}

address {
  font-style: normal;
}

select, input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a {
  text-decoration: none;
  outline: none;
}

a:hover {
  outline: none;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.block_link {
  position: relative;
}
.block_link a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

a.block_link {
  display: block;
  text-decoration: none;
}

.linkanime,
.linkanime::after {
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  color: var(--color-text);
}

.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::after {
  content: "";
}

.link--metis::after {
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

@media only screen and (min-width: 769px) {
  .link--metis:hover::after {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
.link--metis_active::after {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

@media only screen and (min-width: 769px) {
  .link--metis_active:hover::after {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
  }
}
/* ========================================
 * flex box 
  ========================================*/
.flex-center {
  display: flex;
  align-items: center;
}

.flex-start {
  display: flex;
}

.flex-end {
  display: flex;
  align-items: flex-end;
}

.flex-center-pc {
  display: flex;
  align-items: center;
}

.flex-start-pc {
  display: flex;
}

.flex-end-pc {
  display: flex;
  align-items: flex-end;
}

.flex-center-sp {
  display: block;
}

.flex-start-sp {
  display: block;
}

.flex-end-sp {
  display: block;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-row-reverse-pc {
  flex-direction: row-reverse;
}

.flex-space {
  justify-content: space-between;
}

.flex-space-end {
  justify-content: flex-end;
}

.flex-space-start {
  justify-content: flex-start;
}

.flex-space-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  .flex-center-pc {
    display: block;
  }
  .flex-start-pc {
    display: block;
  }
  .flex-end-pc {
    display: block;
  }
  .flex-center-sp {
    display: flex;
    align-items: center;
  }
  .flex-start-sp {
    display: flex;
    align-items: flex-start;
  }
  .flex-end-sp {
    display: flex;
    align-items: flex-end;
  }
  .flex-row-reverse-pc {
    flex-direction: row;
  }
}
.center_layout {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top_center {
  top: 50%;
  transform: translate(0%, -50%);
}

.left_center {
  left: 50%;
  transform: translate(-50%, 0%);
}

/* ==========================================================================

    animation

========================================================================== */
.fadein {
  opacity: 0;
  transform: translate(0, 12px);
  transition: 0.5s linear;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_fade {
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.3);
}

.fadein_fade.scrollin {
  transform: translate(0, 0);
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0) brightness(1);
  -webkit-filter: blur(0) brightness(1);
  transition: transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.3s, opacity 1.4s ease 0.1s, filter 1.4s ease 0.1s;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

.delay-600 {
  transition-delay: 600ms;
}

.delay-700 {
  transition-delay: 700ms;
}

.delay-800 {
  transition-delay: 800ms;
}

.delay-1000 {
  transition-delay: 1000ms;
}

.delay-1100 {
  transition-delay: 1100ms;
}

.delay-1200 {
  transition-delay: 1200ms;
}

.img_hover {
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .img_hover:hover {
    transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.7;
  }
}

.load_anime {
  opacity: 0;
  transform: translate(0, 0px);
  transition: 1.8s cubic-bezier(0.21, 0.75, 0.38, 0.95) 1s;
  filter: blur(5px) brightness(1.5);
}

/* ==========================================================================

	animation

========================================================================== */
.hover-photo {
  vertical-align: top;
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  overflow: hidden;
}
.hover-photo img {
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  vertical-align: bottom;
}
@media only screen and (min-width: 769px) {
  .hover-photo:hover img {
    transform: scale(1.08);
    transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  }
}

.fadein {
  opacity: 0;
  transform: translate(0, 15px);
  transition: 0.8s linear;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_fade {
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(10px) brightness(1.5);
}

.fadein_fade.scrollin {
  transform: translate(0, 0);
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1.5s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.01s, opacity 1.5s ease 0.01s, filter 1.5s ease 0.01s;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-1000 {
  transition-delay: 1000ms;
}

.display-none {
  display: none;
}

.opacity-0 {
  opacity: 0;
}

.linkanime,
.linkanime::after {
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slidein {
  opacity: 0;
}

.slidein.is-active {
  opacity: 1;
  animation: slideIn 1.6s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
/* ==========================================================================

	header

========================================================================== */
.header {
  display: flex;
  position: fixed;
  width: 100%;
  height: 90px;
  top: 20px;
  z-index: 10;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  z-index: 199999;
  padding: 0 4.8vw;
  opacity: 0;
  transform: translate(0, -30px);
}
@media only screen and (max-width: 768px) {
  .header {
    padding: 10px 0px;
    margin: 0;
    width: 100%;
    display: block;
    height: 60px;
    top: 7px;
  }
}
.header__logo {
  padding: 0;
  width: 110px;
}
@media only screen and (max-width: 1000px) {
  .header__logo {
    width: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .header__logo {
    margin: 0 auto;
    width: 101px;
    position: absolute;
    top: 12px;
    left: 20px;
    z-index: 1000;
  }
}
.header__nav {
  list-style: none;
  margin: 3px 0 0 40px;
  width: calc(100% - 340px);
}
@media only screen and (max-width: 1000px) {
  .header__nav {
    width: calc(100% - 240px);
    margin: 3px 0 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .header__nav {
    display: none !important;
  }
}
.header__nav ul {
  margin: 0px;
  z-index: 1000;
}
@media only screen and (max-width: 768px) {
  .header__nav ul {
    display: none;
  }
}
.header__nav ul li {
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.1px;
  color: var(--color-0);
}
.header__nav ul li * {
  color: var(--color-moji);
}
@media only screen and (max-width: 1000px) {
  .header__nav ul li {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .header__nav ul li {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 769px) {
  .header__nav ul li:hover * {
    color: var(--color-main);
  }
  .header__nav ul li:hover .link--metis.active::after {
    transform: scale3d(1, 1, 1);
    background-color: var(--color-main);
  }
}
.header__nav ul li:not(:last-child) {
  margin: 0 20px 0 0;
  text-transform: none;
}
@media only screen and (max-width: 1000px) {
  .header__nav ul li:not(:last-child) {
    margin: 0 12px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .header__nav ul li:not(:last-child) {
    margin: 0 0 20px 0;
  }
}
.header__nav ul li.active a {
  color: var(--color-main);
}
.header__nav ul .link--metis.active::after {
  transform: scale3d(1, 1, 1);
  background-color: var(--color-main);
}
.header .hover-effect a {
  overflow: hidden;
}
.header .hover-effect a span {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}
.header .hover-effect a span::before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  font-weight: 600;
  transform: translate3d(0, 0, 0);
}
@media only screen and (min-width: 769px) {
  .header .hover-effect a:hover span,
  .header .hover-effect a:focus span {
    transform: translateY(-100%);
  }
}
.header .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.header__burger {
  background-size: 100%;
  width: 3.1rem;
  height: 2.2rem;
  background-repeat: no-repeat;
}
.header__burger svg {
  width: 1rem;
  height: auto;
  margin: 0.8rem 0 0 0.8rem;
}

.gnav {
  position: absolute;
  width: 100%;
  height: 100dvh;
  padding: 70px 20px 70px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  top: -20px;
  left: 0;
  margin: 0;
  background: var(--color-1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 9999;
}
.gnav::before {
  content: "";
  width: 100%;
  background-image: url("../img/common/hover_bg_pickup.png");
  background-color: var(--color-w);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background-size: cover;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.55;
  filter: brightness(1.1);
}
@media only screen and (max-width: 768px) {
  .gnav {
    top: -7px;
  }
  .gnav::before {
    content: "";
    width: 100%;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    background-size: cover;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0.85;
  }
}
.gnav .gnav_header {
  border-bottom: 0.5px solid var(--color-w);
  height: 120px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 20px;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .gnav .gnav_header {
    height: 60px;
  }
}
.gnav .gnav_header .txt {
  font-size: 0.9rem;
  color: var(--color-w);
  position: absolute;
  top: 55px;
  letter-spacing: 2px;
}
@media only screen and (max-width: 768px) {
  .gnav .gnav_header .txt {
    top: 26px;
  }
}
.gnav .logo {
  width: 40%;
  margin: 0 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .gnav .logo {
    width: 100%;
    margin: 0 0 40px;
  }
}
.gnav .logo .logo_img {
  width: 100px;
}
@media only screen and (min-width: 769px) {
  .gnav .logo .logo_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 768px) {
  .gnav .logo .logo_img {
    width: 80px;
    margin: 0;
    position: relative;
  }
}
.gnav .gnav_contents {
  width: 92%;
  position: absolute;
  top: 47%;
  transform: translate(0%, -50%);
  z-index: 10;
  display: none;
}
.gnav .gnav_contents .nav {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
}
@media only screen and (max-width: 768px) {
  .gnav .gnav_contents .nav {
    width: 100%;
  }
}
.gnav .gnav_contents .main {
  margin: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  .gnav .gnav_contents .main {
    margin: 0 0 20px;
  }
}
.gnav .gnav_contents .main li {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .gnav .gnav_contents .main li {
    font-size: 1.2rem;
  }
}
.gnav .gnav_contents ul {
  margin: 0px;
  z-index: 1000;
}
.gnav .gnav_contents ul li {
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: 2px;
  color: var(--color-w);
  width: auto;
}
.gnav .gnav_contents ul li a {
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0.1px;
  color: var(--color-moji);
  width: auto;
}
.gnav .gnav_contents ul li.active a {
  color: var(--color-main) !important;
}
.gnav .gnav_contents ul li.active .link--metis::after {
  transform: scale3d(1, 1, 1);
  background-color: var(--color-main);
}
.gnav .gnav_contents ul li:not(:last-child) {
  margin: 0 0 20px 0;
  text-transform: none;
}
@media only screen and (max-width: 1000px) {
  .gnav .gnav_contents ul li:not(:last-child) {
    margin: 0 20px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .gnav .gnav_contents ul li:not(:last-child) {
    margin: 0 0 12px 0;
  }
}
.gnav .gnav_footer {
  height: 70px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  padding: 0 20px;
  border-top: 0.5px solid var(--color-moji);
}
.gnav .gnav_footer .list {
  margin: 0 40px 0 0;
}
@media only screen and (max-width: 768px) {
  .gnav .gnav_footer .list {
    margin: 7px 20px 0 0;
  }
}
.gnav .gnav_footer .list li {
  font-size: 1.1rem;
  text-transform: none;
  color: var(--color-moji);
  width: auto;
  line-height: 1;
  /*&:first-child{
      margin: 0 15px 0 0;
      position: relative;
      &:before{
          content: "";
          position: absolute;
          right: -8px;
          top: 1px;
          height: 88%;
          width: 1px;
          background-color: var(--color-2);
      }
  }*/
}
@media only screen and (max-width: 768px) {
  .gnav .gnav_footer .list li {
    font-size: 1rem;
  }
}
.gnav .gnav_footer .copy {
  margin: 0 0px 0px auto;
  color: var(--color-moji);
  font-size: 10px;
  opacity: 0.7;
  text-transform: none;
}
@media only screen and (max-width: 768px) {
  .gnav .gnav_footer .copy {
    text-align: right;
    width: 100%;
    opacity: 0.7;
    margin: -10px 0 6px 0px;
  }
}

.overflow .header .gnav {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1 !important;
  visibility: visible;
}
.overflow .header .gnav .gnav_contents {
  display: block;
}

.is-load .header {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 1.6s ease 0.1s;
  transition-delay: 100ms;
}

.sub_page.is-load .header {
  transform: translate(0, 0);
  transition: opacity 1.6s ease 0.1s;
  transition-delay: 100ms;
}

.menu-trigger {
  position: absolute;
  cursor: pointer;
  width: 36px;
  height: 36px;
  right: 4.8vw;
  top: 30px;
  opacity: 1;
  z-index: 10000;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}
@media only screen and (max-width: 768px) {
  .menu-trigger {
    right: 16px;
    top: 4px;
    display: block;
  }
}

.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 1px;
  background: var(--color-main);
  width: 55%;
  z-index: 1000;
  cursor: pointer;
}

.menu-trigger span:nth-of-type(1) {
  top: 15px;
  width: 100%;
  left: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 23px;
  width: 100%;
  left: 0;
}

.menu-trigger span:nth-of-type(3) {
  top: 31px;
  width: 100%;
  left: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  top: 18px;
  left: 0;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  top: 30px;
  left: 0;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .head-animation {
    transform: translateY(-100%);
  }
}
@media only screen and (min-width: 769px) {
  header.is-animation .site_inner {
    height: 33px;
  }
}
/* ==========================================================================

	footer

========================================================================== */
footer {
  width: 100%;
  position: relative;
  background: var(--color-main);
  padding: 40px 0 50px;
}
footer * {
  color: var(--color-w);
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 8svh 0 30px;
  }
}
footer .inner {
  margin: 0 auto;
  width: calc(100% - 17vw);
  max-width: 1300px;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  footer .inner {
    padding: 0px;
    width: calc(100% - 40px);
    max-width: 600px;
  }
}
@media only screen and (max-width: 768px) {
  footer .inner_bottom {
    justify-content: left;
  }
}
footer .logo {
  width: 74px;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 768px) {
  footer .logo {
    width: 70px;
    margin: 0 0 20px;
  }
}
footer .logo img {
  vertical-align: top;
}
footer .left {
  width: 200px;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  footer .left {
    width: 69px;
    padding: 0 20px 0 0;
    position: relative;
  }
  footer .left:before {
    content: "";
    position: absolute;
    right: 9px;
    top: 1px;
    height: 88%;
    width: 1px;
    background-color: var(--color-w);
  }
}
footer .left .left_link li {
  line-height: 1;
  /*&:first-child{
      padding: 0 20px 0 0;
      position: relative;
      &:after{
          content: '';
          position: absolute;
          right: 9px;
          top: 1px;
          height: 88%;                    
          width: 1px;
          background-color: var(--color-w);
      }
  }*/
}
footer .left .left_link li a {
  font-weight: 400;
  letter-spacing: 0.1px;
}
footer .right {
  width: 120px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  footer .right {
    text-align: left;
    margin: 0px 0 0;
  }
}
footer .copy {
  z-index: 1;
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 10px;
  letter-spacing: 1px;
  margin: 10px 0 0;
  color: var(--color-w);
}
@media only screen and (max-width: 768px) {
  footer .copy {
    margin: 40px 0 0;
    font-size: 0.9rem;
    text-align: right;
    position: relative;
  }
  footer .copy:before {
    content: "";
    width: 100%;
    height: 0.6px;
    left: 0;
    background: var(--color-w);
    position: absolute;
    top: -20px;
  }
}

/* ==========================================================================

	btn-list

========================================================================== */
.link_box {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  align-items: center;
  padding: 20px 10px;
  color: var(--color-w);
  font-size: 12px;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
  z-index: 10;
  transition: all 0.5s ease;
  cursor: pointer;
  display: block;
}
@media only screen and (max-width: 768px) {
  .link_box {
    width: 100%;
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 769px) {
  .link_box:hover {
    background-color: var(--color-w);
    border: 1px solid var(--color-main);
    color: var(--color-main) !important;
  }
}

.read_more a {
  color: var(--color-main);
  font-size: 12px;
  padding: 0 20px 0 0;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: 100;
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 769px) {
  .read_more a:hover::after {
    transform-origin: 0% 50%;
    transform: scale3d(0, 1, 1);
    cursor: pointer;
  }
}
.read_more a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color-main);
  top: calc(100% + 3px);
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(1, 1, 1);
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.read_more a:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: url(../img/common/mark_link.svg) no-repeat;
  background-size: contain;
  right: 0px;
  top: 4px;
}

.link_u {
  color: var(--color-main);
  font-size: 12px;
  padding: 0 0px 0 0;
  font-weight: 600;
  margin: 0 12px 0 0;
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: 100;
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 769px) {
  .link_u:hover::after {
    transform-origin: 0% 50%;
    transform: scale3d(0, 1, 1);
    cursor: pointer;
  }
}
.link_u::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color-main);
  top: calc(100% + 3px);
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(1, 1, 1);
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn_area {
  width: 100%;
  position: relative;
}
.btn_area .item_btn, .btn_area .submit {
  background: var(--color-footer);
  border: 1px solid var(--color-footer);
  color: #fff;
  align-items: center;
  padding: 22px 10px 20px;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  font-family: var(--font-bold);
  letter-spacing: 1px;
  z-index: 10;
  cursor: pointer;
  line-height: 1;
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 769px) {
  .btn_area .item_btn:hover, .btn_area .submit:hover {
    background-color: var(--color-0);
    border: 1px solid var(--color-0);
    color: #fff;
  }
}
.btn_area .item_btn span, .btn_area .submit span {
  position: relative;
}
.btn_area .grey {
  background: var(--color-5);
  border: 1px solid var(--color-5);
}
@media only screen and (min-width: 769px) {
  .btn_area .grey:hover {
    background-color: var(--color-w);
    color: var(--color-5);
  }
}
.btn_area .submit_grey {
  background: var(--color-5);
  border: 1px solid var(--color-5);
  pointer-events: none;
}
@media only screen and (min-width: 769px) {
  .btn_area .submit_grey:hover {
    background-color: var(--color-w);
    color: var(--color-5);
  }
}
.btn_area .blue {
  background: var(--color-main);
  border: 1px solid var(--color-main);
}
@media only screen and (min-width: 769px) {
  .btn_area .blue:hover {
    background-color: var(--color-w);
    color: var(--color-main);
  }
}

/* ==========================================================================

	index.html

========================================================================== */
section .inner {
  max-width: 1200px;
  width: calc(100% - 17vw);
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 1000px) {
  section .inner {
    width: calc(100% - 13vw);
  }
}
@media only screen and (max-width: 768px) {
  section .inner {
    width: calc(100% - 40px);
    max-width: 600px !important;
  }
}
section .txtbox .title {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1000px) {
  section .txtbox .title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  section .txtbox .title {
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: 1px;
  }
}
section .txtbox .subtitle {
  font-size: 1.9rem;
  letter-spacing: 1px;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  section .txtbox .subtitle {
    font-size: 1.6rem;
    margin: 0 0 20px;
  }
}
section .txtbox .txt {
  margin: 0px 0 0;
  opacity: 0.9;
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 400;
}
section .txtbox .txt p {
  margin-bottom: 18px;
}
@media only screen and (max-width: 768px) {
  section .txtbox .txt {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0px 0 0;
  }
}
section .txtbox .attention {
  margin: 2px 0 0;
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
}
section .txtbox .attention p {
  margin-bottom: 18px;
}
@media only screen and (max-width: 768px) {
  section .txtbox .attention {
    font-size: 1rem;
    line-height: 1.7;
    margin: 2px 0 0;
  }
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list {
  display: block;
}

.splide__track--fade > .splide__list > .splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* slider */
.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.splide {
  z-index: 0;
  height: 100%;
}

/* 前へ / 次へボタン */
.splide__arrow--prev,
.splide__arrow--next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: var(--transition);
  background-color: var(--color-theme-darken);
  border-radius: 50%;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.splide__arrow:disabled {
  pointer-events: none;
  opacity: 0;
}

.splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide__pagination {
  font-size: 0;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide-wrapper {
  position: relative;
}

.splide__arrow > svg {
  display: none;
}

.hero_top {
  position: relative;
  height: 100svh;
}
.hero_top .splide-fade .splide__slide {
  pointer-events: none;
}
.hero_top .splide__track--fade .splide__slide.is-active {
  pointer-events: auto;
}
.hero_top .splide__pagination {
  position: absolute;
  z-index: 10;
  bottom: 30px;
  left: 30px;
  display: flex;
  display: none;
}
.hero_top .splide__pagination__page {
  display: block;
  width: 7px !important;
  height: 7px !important;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  background-color: transparent;
  border: 1px solid var(--color-main);
  margin: 0 5px 0 0;
}
.hero_top .splide__pagination__page.is-active {
  background-color: var(--color-main);
  margin: 0 5px 0 0;
}
.hero_top .slide-media {
  height: 100svh;
}
.hero_top .slide-media img {
  transform: scale(1) !important;
  transition: transform 7s ease-out;
}
.hero_top .splide__slide.is-active .slide-media img {
  transform: scale(1.05) !important;
}
.hero_top .scroll_area {
  position: absolute;
  background-color: transparent;
  z-index: 100;
  left: 4vw;
  bottom: 30px;
  opacity: 0;
  transform: translate(0, 0px);
  transition: opacity 2s ease 0.1s;
}
@media only screen and (max-width: 768px) {
  .hero_top .scroll_area {
    right: 14px;
  }
}
.hero_top .scroll_txt {
  font-size: 10px;
  letter-spacing: 2px;
  position: relative;
  margin: 0 0 6px 6px;
  color: var(--color-main);
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 768px) {
  .hero_top .scroll_txt {
    color: var(--color-w);
    margin: 0px 0 6px 4px;
    font-size: 0.8rem;
  }
}
.hero_top .scroll_txt::before {
  content: "";
  background-image: url(../img/common/mark_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: -13px;
  left: 2px;
}
@media only screen and (max-width: 768px) {
  .hero_top .scroll_txt::before {
    background-image: url(../img/common/mark_white.svg);
    width: 10px;
    height: 10px;
    position: absolute;
    top: -11px;
    left: 1px;
  }
}
.hero_top .scroll_icon {
  width: 100%;
  height: 120px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .hero_top .scroll_icon {
    height: 80px;
  }
}
.hero_top .scroll_icon .line {
  position: absolute;
  top: -120px;
  left: 50%;
  margin-left: 0.5px;
  display: block;
  width: 0.5px;
  height: 120px;
  border-radius: 5px;
  background: var(--color-main);
  animation: scrollLine 2s infinite;
}
@media only screen and (max-width: 768px) {
  .hero_top .scroll_icon .line {
    animation: scrollLine_sp 2s infinite;
    top: -80px;
    height: 80px;
    left: 8px;
    background: var(--color-w);
  }
}
@keyframes scrollLine {
  0% {
    top: -120px;
  }
  30% {
    top: 0;
  }
  70% {
    top: 0;
  }
  100% {
    top: 120px;
  }
}
@keyframes scrollLine_sp {
  0% {
    top: -80px;
  }
  30% {
    top: 0;
  }
  70% {
    top: 0;
  }
  100% {
    top: 80px;
  }
}
.hero_top .hero_topics {
  position: absolute;
  bottom: 30px;
  right: 0px;
  padding: 18px;
  width: 280px;
  background-color: var(--color-main);
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 2s ease 0.1s, transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, filter 2s ease 0.1s;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .hero_top .hero_topics {
    max-width: 100%;
    bottom: 20px;
  }
}
.hero_top .hero_topics * {
  color: var(--color-w);
}
.hero_top .hero_topics .news_left {
  width: calc(100% - 70px);
}
.hero_top .hero_topics .news_right {
  width: 60px;
  margin: 0 0 0 10px;
}
.hero_top .hero_topics .date {
  width: 82px;
  letter-spacing: 1px;
  font-size: 10px;
  margin: 0 5px 0 0;
  padding: 0 5px 0 17px;
  line-height: 1;
  border-right: 0.5px solid var(--color-w);
  position: relative;
  font-weight: 500;
}
.hero_top .hero_topics .date:before {
  content: "";
  background-image: url(../img/common/mark_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 10px;
  top: 1px;
  left: 2px;
  position: absolute;
}
.hero_top .hero_topics .txt {
  width: 100%;
  font-size: 11px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.talent_page .splide__pagination {
  display: flex !important;
}

.is-load .hero_top {
  width: 100%;
}
.is-load .hero_top .hero_topics {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 1.6s ease 0.1s;
}
.is-load .hero_top .scroll_area {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 1.6s ease 0.1s;
  transition-delay: 1000ms;
}

.section_title {
  height: 33px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .section_title {
    height: 30px;
  }
}
.section_title img {
  height: 33px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
@media only screen and (max-width: 768px) {
  .section_title img {
    height: 30px;
  }
}

.topics_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
}
@media only screen and (max-width: 768px) {
  .topics_list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
.topics_list .date {
  background-color: var(--color-main2);
  display: inline-block;
  padding: 2px 6px;
  color: var(--color-10);
  font-weight: 500;
  margin: 0 0 4px;
  font-size: 11px;
}
@media only screen and (max-width: 768px) {
  .topics_list .date {
    font-size: 10px;
    padding: 1px 5px;
  }
}
.topics_list .topics_img {
  overflow: hidden;
  border: 3px solid var(--color-main);
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .topics_list .topics_img {
    border: 2px solid var(--color-main);
  }
}
.topics_list .topics_img:before {
  content: "";
  background-image: url(../img/common/hover_bg.png);
  background-size: cover;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.topics_list .talents_name {
  background-color: var(--color-main2);
  display: inline-block;
  padding: 2px 6px;
  color: var(--color-10);
  font-weight: 500;
  margin: 6px 0 0;
  font-size: 11px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .topics_list .talents_name {
    font-size: 10px;
    padding: 1px 5px;
  }
}
.topics_list .topics_title {
  font-weight: 500;
  margin: 2px 0 0;
  font-size: 13px;
}
@media only screen and (max-width: 768px) {
  .topics_list .topics_title {
    font-size: 10.5px;
  }
}
@media only screen and (min-width: 769px) {
  .topics_list li:hover .topics_img {
    transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .topics_list li:hover .topics_img:before {
    opacity: 0.5;
    z-index: 10;
    transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
  }
}

.talents_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
}
@media only screen and (max-width: 768px) {
  .talents_list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 20px;
  }
}
.talents_list .talents_img {
  overflow: hidden;
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
  position: relative;
}
.talents_list .talents_img:before {
  content: "";
  background-image: url(../img/common/hover_bg.png);
  background-size: cover;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.talents_list .talens_info {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: 11;
}
@media only screen and (min-width: 769px) {
  .talents_list .talens_info {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 768px) {
  .talents_list .talens_info {
    opacity: 1;
    position: relative !important;
  }
  .talents_list .talens_info * {
    color: var(--color-main) !important;
  }
}
.talents_list .talents_name {
  text-align: center;
  color: var(--color-10);
  font-weight: 600;
  margin: 0px 0 0;
  font-size: 18px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .talents_list .talents_name {
    font-size: 14px;
    font-weight: 600;
    margin: 7px 0 0;
  }
}
.talents_list .talents_name_en {
  text-align: center;
  color: var(--color-10);
  font-weight: 500;
  margin: 2px 0 0;
  font-size: 12px;
  position: relative;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .talents_list .talents_name_en {
    margin: 0;
    font-size: 10px;
    font-weight: 600;
  }
}
@media only screen and (min-width: 769px) {
  .talents_list li:hover .talens_info {
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .talents_list li:hover .talents_img {
    transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .talents_list li:hover .talents_img:before {
    opacity: 0.6;
    z-index: 10;
    filter: brightness(1.1);
    transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
  }
}

.topics_top {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .topics_top {
    padding: 80px 0 60px;
  }
}
.topics_top .read_more_wrap {
  text-align: right;
}

.talents_top {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .talents_top {
    padding: 0px 0 80px;
  }
}
.talents_top .section_title {
  height: 26px;
}
.talents_top .section_title img {
  height: 26px;
}
.talents_top .read_more_wrap {
  text-align: right;
}

.top_page .talents_top {
  padding: 80px 0 120px;
}
@media only screen and (max-width: 768px) {
  .top_page .talents_top {
    padding: 0px 0 80px;
  }
}

@media only screen and (max-width: 768px) {
  .talent_list_page .section_title {
    height: 26px;
  }
  .talent_list_page .section_title img {
    height: 26px;
  }
}

.topics_page .section_title {
  height: 38px;
}
.topics_page .section_title img {
  height: 38px;
}
@media only screen and (max-width: 768px) {
  .topics_page .section_title {
    height: 33px;
  }
  .topics_page .section_title img {
    height: 33px;
  }
}

/* ==========================================================================

	sub_page

========================================================================== */
.sub_page main {
  width: calc(100% - 11.3vw);
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .sub_page main {
    width: 100%;
    margin: 0 auto;
  }
}
.sub_page .sub_inner {
  width: calc(100% - 340px);
  padding: 0 40px 0 0;
}
@media only screen and (min-width: 1500px) {
  .sub_page .sub_inner {
    width: calc(100% - 440px);
  }
}
@media only screen and (max-width: 1100px) {
  .sub_page .sub_inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .sub_page .sub_inner {
    width: calc(100% - 40px);
  }
}
.sub_page .sub_side {
  width: 340px;
  padding: 0 40px 0 40px;
  margin: 0 0 50px;
}
@media only screen and (min-width: 1500px) {
  .sub_page .sub_side {
    width: 440px;
  }
}
@media only screen and (max-width: 1100px) {
  .sub_page .sub_side {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
.sub_page .navigation {
  margin: 80px auto 0;
}
@media only screen and (max-width: 768px) {
  .sub_page .navigation {
    margin: 40px auto 0;
  }
}
.sub_page .navigation .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .sub_page .navigation .nav-links {
    gap: 10px;
  }
}
.sub_page .navigation .next, .sub_page .navigation .prev {
  position: relative;
  width: 24px;
  height: 32px;
  color: #000000;
  font-size: 0;
  display: block;
}
.sub_page .navigation .next:after, .sub_page .navigation .prev:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-main);
  border-left: 1px solid var(--color-main);
}
.sub_page .navigation .next:after {
  transform: translate(-75%, -50%) rotate(135deg);
}
.sub_page .navigation .prev:after {
  transform: translate(-25%, -50%) rotate(-45deg);
}
.sub_page .navigation .page-numbers:not(.next):not(.prev).current {
  background-color: var(--color-main);
  color: #FFFFFF;
}
.sub_page .navigation .dots {
  pointer-events: none;
}
.sub_page .navigation .page-numbers:not(.next):not(.prev) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  font-family: brandon-grotesque;
  border: 1px solid var(--color-main);
  white-space: nowrap;
  background-color: #ffffff;
  color: var(--color-main);
  transition: all 1s;
}
@media only screen and (max-width: 768px) {
  .sub_page .navigation .page-numbers:not(.next):not(.prev) {
    font-size: 11px;
  }
}
@media only screen and (min-width: 769px) {
  .sub_page .navigation .page-numbers:not(.next):not(.prev):hover {
    color: #FFFFFF;
    background-color: var(--color-main);
    transition: all 1s;
  }
}

.sub_page .section_title {
  margin: 150px 0 0;
}
@media only screen and (max-width: 768px) {
  .sub_page .section_title {
    width: calc(100% - 40px);
    padding: 0;
    margin: 100px auto 0;
  }
}

.topics_page .sub_inner {
  padding: 0 0px 0 0;
}

.contact_page main {
  width: 100%;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .contact_page main {
    width: 100%;
    margin: 0 auto;
  }
}
.contact_page main .section_title {
  height: 30px;
}
.contact_page main .section_title img {
  height: 30px;
}
@media only screen and (max-width: 768px) {
  .contact_page main .section_title {
    width: 100%;
    margin: 100px auto 0;
    height: 23px;
  }
  .contact_page main .section_title img {
    height: 23px;
  }
}

.talent_page .topics_talent .section_title {
  margin: 50px 0 20px;
}
@media only screen and (max-width: 768px) {
  .talent_page .topics_talent .section_title {
    width: 100%;
    padding: 0;
    margin: 0px auto 10px;
  }
}

.talent_page main, .topics_page main {
  width: calc(100% - 11.3vw);
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .talent_page main, .topics_page main {
    width: 100%;
    margin: 0 auto;
  }
}

.talent_list_page .talents_inner {
  display: flex;
  margin: 50px auto 0;
  border-top: 1px solid var(--color-1);
  padding: 0 0 100px;
}
@media only screen and (max-width: 768px) {
  .talent_list_page .talents_inner {
    margin: 20px auto 0;
    padding: 0;
  }
}
.talent_list_page .sub_inner {
  width: 100%;
  padding: 0 40px 0 0;
}
@media only screen and (max-width: 768px) {
  .talent_list_page .sub_inner {
    padding: 0 20px;
  }
}
.talent_list_page .sub_side {
  width: 0;
  display: none;
}
.talent_list_page .talents_list {
  margin: 80px 0 100px 0;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 768px) {
  .talent_list_page .talents_list {
    margin: 20px 0 0px 0;
    padding: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .talent_list_page .talents_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1700px) {
  .talent_list_page .talents_list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .talent_list_page .talents_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.talent_list_page .navigation {
  margin: 80px auto 0;
}
@media only screen and (max-width: 768px) {
  .talent_list_page .navigation {
    margin: 50px auto 80px;
  }
}

/* ==========================================================================

	talent

========================================================================== */
.talent_page .hero_top {
  height: 70svh;
  overflow: hidden;
}
.talent_page .talent_info .talent_inner {
  display: flex;
}
@media only screen and (max-width: 1100px) {
  .talent_page .talent_info .talent_inner {
    display: block;
  }
}
.talent_page .talent_info .talent_header {
  padding: 50px 40px 50px 0;
  border-bottom: 1px solid var(--color-1);
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_info .talent_header {
    padding: 0;
  }
}
.talent_page .talent_info .talent_header .name {
  font-size: 11px;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_info .talent_header .name {
    width: 50%;
    text-align: center;
  }
}
.talent_page .talent_info .talent_header .talent_contact {
  width: 260px;
}
@media only screen and (min-width: 1500px) {
  .talent_page .talent_info .talent_header .talent_contact {
    width: 360px;
  }
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_info .talent_header .talent_contact {
    width: 50%;
  }
}
.talent_page .talent_info .talent_header .talent_contact p {
  position: relative;
  padding: 0 0 0 20px;
}
.talent_page .talent_info .talent_header .talent_contact p:before {
  content: "";
  background-image: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  left: 9px;
  position: absolute;
  top: 5px;
  filter: invert(100);
}
@media only screen and (min-width: 769px) {
  .talent_page .talent_info .talent_header .talent_contact a:hover p:before {
    filter: invert(18%) sepia(93%) saturate(2068%) hue-rotate(198deg) brightness(98%) contrast(101%);
  }
}
.talent_page .talent_inner .sub_inner {
  margin: 50px auto 0;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (max-width: 1100px) {
  .talent_page .talent_inner .sub_inner {
    padding: 0 20px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .sub_inner {
    padding: 0;
  }
}
.talent_page .talent_inner .talent_img {
  width: 300px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .talent_img {
    width: 63%;
  }
}
.talent_page .talent_inner .talent_img img {
  width: 100%;
  height: auto;
  min-height: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.talent_page .talent_inner .talent_img .mark {
  position: absolute;
  width: 50px;
  top: -31px;
  left: -33px;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .talent_img .mark {
    width: 40px;
    top: -29px;
    left: -23px;
  }
}
.talent_page .talent_inner .info {
  width: calc(100% - 300px);
  padding: 0 0px 0 40px;
}
@media only screen and (max-width: 1100px) {
  .talent_page .talent_inner .info {
    padding: 0 0px 40px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .info {
    width: 100%;
    padding: 0;
    margin: 20px 0 0;
  }
}
.talent_page .talent_inner .info .name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 5px;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .info .name {
    font-size: 16px;
  }
}
.talent_page .talent_inner .info .name_kana {
  font-size: 12px;
  letter-spacing: 2px;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .info .name_kana {
    font-size: 10px;
  }
}
.talent_page .talent_inner .info .profile {
  margin: 30px 0 0;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .info .profile {
    margin: 20px 0 0;
  }
}
.talent_page .talent_inner .info .profile .label {
  color: var(--color-main);
  font-size: 17px;
  margin: 0 0 12px;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .info .profile .label {
    font-size: 14px;
  }
}
.talent_page .talent_inner .info .profile .detail_list .detail_list_item {
  display: flex;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .info .profile .detail_list .detail_list_item {
    font-size: 12px;
  }
}
.talent_page .talent_inner .info .profile .detail_list dt {
  width: 100px;
  flex-shrink: 0;
}
.talent_page .talent_inner .info .profile .detail_list dd {
  flex-basis: 100%;
}
.talent_page .talent_inner .info .sns {
  margin: 30px 0 0;
}
.talent_page .talent_inner .info .sns .sns_list li a {
  border-radius: 50%;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  width: 40px;
  height: 40px;
  transition: all 0.5s ease;
  cursor: pointer;
  display: block;
}
@media only screen and (min-width: 769px) {
  .talent_page .talent_inner .info .sns .sns_list li a:hover {
    background-color: var(--color-main2);
    border: 1px solid var(--color-main);
  }
}
.talent_page .talent_inner .info .sns .sns_list li:not(:last-child) {
  margin-right: 10px;
}
.talent_page .talent_inner .info .sns .sns_list .sns_insta a {
  padding: 10px 10px !important;
}
.talent_page .talent_inner .info .sns .sns_list .sns_x a {
  padding: 10px 11px !important;
}
.talent_page .talent_inner .info .sns .sns_list .sns_tiktok a {
  padding: 10px 11px !important;
}
.talent_page .talent_inner .info .sns .sns_list .sns_youtube a {
  padding: 7px 11px !important;
}
.talent_page .talent_inner .info .letter {
  margin: 30px 0 0;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--color-main);
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .info .letter {
    margin: 20px 0 0;
    padding: 0 0 20px;
  }
}
.talent_page .talent_inner .info .letter .label {
  color: var(--color-main);
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 5px;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .info .letter .label {
    font-size: 12px;
  }
}
.talent_page .talent_inner .info .link_area {
  margin: 30px 0 0;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .info .link_area {
    margin: 20px 0 0;
  }
}
.talent_page .talent_inner .info .link_area li:not(:last-child) {
  margin-bottom: 10px;
}
.talent_page .talent_inner .info .link_area li .link_name {
  color: var(--color-main);
  font-size: 13px;
  font-weight: bold;
  padding: 0 0 0 16px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .info .link_area li .link_name {
    font-size: 12px;
  }
}
.talent_page .talent_inner .info .link_area li .link_name:before {
  content: "";
  background-image: url(../img/common/talent_linkmark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  left: 0px;
  position: absolute;
  top: 5px;
}
.talent_page .talent_inner .info .link_area li a {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  align-items: center;
  padding: 1px 8px;
  margin: 1px 0 0;
  color: var(--color-w);
  font-size: 12px;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
  z-index: 10;
  transition: all 0.5s ease;
  cursor: pointer;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .info .link_area li a {
    font-size: 11px;
  }
}
@media only screen and (min-width: 769px) {
  .talent_page .talent_inner .info .link_area li a:hover {
    background-color: var(--color-w);
    border: 1px solid var(--color-main);
    color: var(--color-main) !important;
  }
}
.talent_page .talent_inner .info .link_area li.link_item a p {
  padding: 0 0 0 16px;
}
.talent_page .talent_inner .info .link_area li.link_item a p:before {
  content: "";
  background-image: url(../img/common/mark_talent_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 12px;
  left: 0px;
  position: absolute;
  top: 4px;
  filter: invert(100);
}
@media only screen and (min-width: 769px) {
  .talent_page .talent_inner .info .link_area li.link_item a:hover p:before {
    filter: invert(18%) sepia(93%) saturate(2068%) hue-rotate(198deg) brightness(98%) contrast(101%);
  }
}
.talent_page .talent_inner .info .link_area li.buy_item a p {
  padding: 0 0 0 15px;
}
.talent_page .talent_inner .info .link_area li.buy_item a p:before {
  content: "";
  background-image: url(../img/common/mark_talent_cart.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 12px;
  left: 0px;
  position: absolute;
  top: 4px;
  filter: invert(100);
}
@media only screen and (min-width: 769px) {
  .talent_page .talent_inner .info .link_area li.buy_item a:hover p:before {
    filter: invert(18%) sepia(93%) saturate(2068%) hue-rotate(198deg) brightness(98%) contrast(101%);
  }
}
.talent_page .talent_inner .topics_talent {
  padding: 50px 0 0;
}
@media only screen and (max-width: 1100px) {
  .talent_page .talent_inner .topics_talent {
    padding: 30px 0 80px;
  }
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .topics_talent {
    padding: 30px 0 80px;
  }
}
.talent_page .talent_inner .topics_talent .topics_list {
  max-width: 800px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 768px) {
  .talent_page .talent_inner .topics_talent .topics_list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}

.talent_page .talents-detail-history h2 {
  color: var(--color-main);
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: 600;
}
.talent_page .talents-detail-history .history-block {
  margin: 0 0 25px;
  padding: 0 0 25px;
  border-bottom: 1px dotted var(--color-4);
}
.talent_page .talents-detail-history .history-block h3 {
  font-size: 13px;
  margin: 0 0 8px;
  font-weight: 600;
}
.talent_page .talents-detail-history .history-block ul li {
  font-size: 12px;
  font-weight: 300;
}
.talent_page .talents-detail-history .history-block ul li p {
  font-weight: 500;
}
.talent_page .talents-detail-history .history-block ul li:not(:last-child) {
  margin-bottom: 10px;
}
.talent_page .sub_inner .talents-detail-history {
  display: none;
}
@media only screen and (max-width: 1100px) {
  .talent_page .sub_inner .talents-detail-history {
    display: block;
    margin: 20px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--color-main);
  }
}
.talent_page .sub_side .talents-detail-history {
  margin: 40px 0 0;
}
@media only screen and (max-width: 1100px) {
  .talent_page .sub_side .talents-detail-history {
    display: none;
  }
}

/* ==========================================================================

	topics

========================================================================== */
.topics_page .section_title {
  margin: 150px 0 0;
}
@media only screen and (max-width: 768px) {
  .topics_page .section_title {
    width: calc(100% - 40px);
    padding: 0;
    margin: 100px auto 0;
  }
}
.topics_page .topics_info .topics_inner {
  display: flex;
  margin: 50px auto 0;
  border-top: 1px solid var(--color-1);
}
@media only screen and (max-width: 1100px) {
  .topics_page .topics_info .topics_inner {
    display: block;
    margin: 20px auto 0;
  }
}
.topics_page .topics_info .topics_inner .sub_inner {
  margin: 50px auto 0;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_inner .sub_inner {
    margin: 20px auto 0;
  }
}
.topics_page .topics_info .topics_inner .read_more_wrap {
  width: 100%;
  text-align: right;
  border-bottom: 1px solid var(--color-1);
  padding: 0 40px 40px 0px;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_inner .read_more_wrap {
    padding: 0 0px 20px 0px;
  }
}
.topics_page .topics_info .topics_inner .topics_contents .date_box {
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_inner .topics_contents .date_box {
    margin: 0 0 5px;
  }
}
.topics_page .topics_info .topics_inner .topics_contents .date_box .date {
  background-color: var(--color-main2);
  display: inline-block;
  padding: 2px 6px;
  color: var(--color-10);
  font-weight: 500;
  margin: 0 20px 0px 0px;
  font-size: 11px;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_inner .topics_contents .date_box .date {
    font-size: 10px;
  }
}
.topics_page .topics_info .topics_inner .topics_contents .date_box .category {
  font-size: 12px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_inner .topics_contents .date_box .category {
    font-size: 11px;
  }
}
.topics_page .topics_info .topics_inner .topics_contents .date_box .category:before {
  content: "";
  position: absolute;
  height: 99%;
  left: -10px;
  width: 1px;
  background-color: var(--color-1);
}
.topics_page .topics_info .topics_inner .topics_contents .topics_title {
  margin: 16px 0 16px;
  font-size: 26px;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_inner .topics_contents .topics_title {
    font-size: 20px;
    margin: 0px 0 5px;
  }
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_inner .topics_contents .talent_box {
    margin: 0px 0 15px;
  }
}
.topics_page .topics_info .topics_inner .topics_contents .talent_box .label {
  font-size: 12px;
  margin: 0 10px 0 0;
  line-height: 1;
  position: relative;
  padding: 2px 4px;
  border: 1px solid var(--color-main);
  color: var(--color-main);
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_inner .topics_contents .talent_box .label {
    font-size: 10px;
    margin: 0 5px 0 0;
  }
}
.topics_page .topics_info .topics_inner .topics_contents .talent_box .talents_name {
  font-size: 12px;
  color: var(--color-main);
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_inner .topics_contents .talent_box .talents_name {
    font-size: 10px;
  }
}
.topics_page .topics_info .topics_inner .topics_contents .post_area {
  max-width: 800px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  font-weight: 400;
}
.topics_page .topics_info .topics_inner .topics_contents .post_area * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.topics_page .topics_info .topics_inner .topics_contents .post_area img {
  width: auto;
  max-width: 100%;
  padding-top: 16px;
  padding-bottom: 20px;
  width: 660px;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_inner .topics_contents .post_area img {
    width: 100%;
    padding: 0;
  }
}
.topics_page .topics_info .topics_inner .topics_contents .post_area p + p {
  margin-top: 1.4em;
}
.topics_page .topics_info .topics_inner .topics_contents .post_area p {
  font-size: 13px;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_inner .topics_contents .post_area p {
    font-size: 12px;
  }
}
.topics_page .topics_info .topics_inner .topics_contents .post_area a {
  color: var(--color-main);
}
.topics_page .topics_info .topics_talent {
  padding: 50px 40px 100px 0;
}
@media only screen and (max-width: 1100px) {
  .topics_page .topics_info .topics_talent {
    padding: 30px 40px 80px 0;
  }
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_talent {
    padding: 30px 0 0px;
  }
}
.topics_page .topics_info .topics_talent .section_title {
  margin: 0 0 20px;
  color: var(--color-main);
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_talent .section_title {
    margin: 0 0 10px;
  }
}
.topics_page .topics_info .topics_talent .topics_list {
  max-width: 800px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_info .topics_talent .topics_list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
.topics_page .topics_contents {
  padding: 0 40px 0 0;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_contents {
    padding: 0;
  }
}

.topics_page .topics_block {
  padding: 40px 0 0;
}
.topics_page .topics_block h2 {
  color: var(--color-main);
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_block h2 {
    margin: 0 0 10px;
  }
}
.topics_page .topics_block .pickup_list li {
  border: 3px solid var(--color-main);
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_block .pickup_list li {
    border: 2px solid var(--color-main);
  }
}
.topics_page .topics_block .pickup_list li:not(:last-child) {
  margin-bottom: 12px;
}
.topics_page .topics_block .pickup_list li .topics_hover_info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  z-index: 1;
  color: #ffffff;
  background-image: url(../img/common/hover_bg_pickup.png);
  opacity: 0;
  transition: 0.4s ease-in-out;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_block .pickup_list li .topics_hover_info {
    position: relative;
    opacity: 1;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    transform: none;
    padding: 10px 16px 12px;
    background-image: url(../img/common/hover_bg.png);
  }
}
@media only screen and (min-width: 769px) {
  .topics_page .topics_block .pickup_list li .topics_hover_info:hover {
    opacity: 1;
  }
}
.topics_page .topics_block .pickup_list li .topics_hover_info .date_box {
  margin: 0 0 0px;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_block .pickup_list li .topics_hover_info .date_box {
    margin: 0 0 4px;
  }
}
.topics_page .topics_block .pickup_list li .topics_hover_info .date_box .date {
  background-color: var(--color-main2);
  display: inline-block;
  padding: 2px 6px;
  color: var(--color-10);
  font-weight: 500;
  margin: 0 20px 0px 0px;
  font-size: 11px;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_block .pickup_list li .topics_hover_info .date_box .date {
    font-size: 10px;
  }
}
.topics_page .topics_block .pickup_list li .topics_hover_info .date_box .category {
  font-size: 12px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_block .pickup_list li .topics_hover_info .date_box .category {
    font-size: 11px;
  }
}
.topics_page .topics_block .pickup_list li .topics_hover_info .date_box .category:before {
  content: "";
  position: absolute;
  height: 99%;
  left: -10px;
  width: 1px;
  background-color: var(--color-w);
}
.topics_page .topics_block .pickup_list li .topics_hover_info .topics_title {
  margin: 11px 0 0px;
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  .topics_page .topics_block .pickup_list li .topics_hover_info .topics_title {
    font-size: 12px;
    margin: 0px;
  }
}
.topics_page .sub_side {
  border-left: 1px solid var(--color-1);
}
@media only screen and (max-width: 768px) {
  .topics_page .sub_side {
    border-left: 0px solid var(--color-1);
    padding: 0 0 80px;
  }
}

.topics_list_page .topics_info .topics_talent {
  padding: 0px 0 100px;
}
@media only screen and (max-width: 768px) {
  .topics_list_page .topics_info .topics_talent {
    padding: 0px 0 40px;
    border-bottom: 1px solid var(--color-main);
  }
}
.topics_list_page .topics_info .topics_talent .topics_list {
  max-width: 100%;
  padding: 0 40px 0 0;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 768px) {
  .topics_list_page .topics_info .topics_talent .topics_list {
    padding: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .topics_list_page .topics_info .topics_talent .topics_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1700px) {
  .topics_list_page .topics_info .topics_talent .topics_list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .topics_list_page .topics_info .topics_talent .topics_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 1100px) {
  .topics_list_page .sub_side, .topics_page .sub_side {
    border-left: 0px solid var(--color-1);
    padding: 0 40px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .topics_list_page .sub_side, .topics_page .sub_side {
    padding: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .topics_list_page .sub_side .pickup_list, .topics_page .sub_side .pickup_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    margin: 0 0 60px;
  }
  .topics_list_page .sub_side .pickup_list li:not(:last-child), .topics_page .sub_side .pickup_list li:not(:last-child) {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .topics_list_page .sub_side .pickup_list, .topics_page .sub_side .pickup_list {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: repeat(1, 1fr);
  }
  .topics_list_page .sub_side .pickup_list li:not(:last-child), .topics_page .sub_side .pickup_list li:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* ==========================================================================

	contact

========================================================================== */
input[type=text],
input[type=tel],
input[type=email],
input[type=time],
input[type=date],
input[type=password],
select,
textarea {
  box-sizing: border-box;
  font-size: 1.3rem;
  padding: 10px 15px;
  border-bottom: 2px solid var(--color-main);
  line-height: 180%;
  background: var(--color-9);
  color: var(--color-2);
  outline: none;
  transition: 0.2s ease all;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=time],
  input[type=date],
  input[type=password],
  select,
  textarea {
    padding: 10px 12px;
    border-radius: 0;
  }
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=time]:focus,
input[type=date]:focus,
input[type=password]:focus,
textarea:focus {
  background: #fff;
  border-color: var(--color-main);
}

input[type=submit] {
  outline: none;
}

textarea {
  min-height: 300px;
}
@media only screen and (max-width: 768px) {
  textarea {
    min-height: 200px;
  }
}

::-moz-placeholder {
  color: var(--color-5);
}

::placeholder {
  color: var(--color-5);
}

.select_lap {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--color-main);
}
.select_lap .placeholder {
  color: var(--color-5) !important;
  opacity: 0.5;
}

.select_label {
  position: relative;
}
.select_label::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 15px;
  margin: 0px 0px 2px 10px;
  background: url(../img/common/arrow_b.svg) no-repeat;
  background-size: contain;
  vertical-align: sub;
  top: 50%;
  right: 12px;
  margin-top: -6px;
}

.select_half {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 768px) {
  .select_half {
    width: calc(50% - 5px);
  }
}

.select_all {
  width: 100%;
}

.select_birth_wrap {
  margin: 0 2px;
}

.select_birth {
  padding: 10px 45px 10px 15px;
  border: none;
  border-bottom: 2px solid var(--color-main);
}

.b_year {
  margin: 0 2px 0 0;
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .b_year {
    width: 120px;
  }
}

.placeholder-select.placeholder-active {
  color: var(--color-5);
}

.input_height {
  width: 120px;
}

.input_weight {
  width: 100px;
}

.input_height_txt {
  margin: 0 10px 0 10px;
}

.input_height_txt {
  margin: 0 10px 0 10px;
}

.radio_btn input[type=radio] {
  display: none;
}

.radio_btn label {
  position: relative;
  display: block;
  padding: 5px 25px 3px 21px;
  cursor: pointer;
  font-size: 14px;
  line-height: 180%;
}

.radio_btn label::before {
  position: absolute;
  content: "";
  top: 47%;
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -8px;
  background: #fff;
  border: 1px solid var(--color-4);
  border-radius: 100%;
  transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
}

.radio_btn input[type=radio]:checked + label::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 4px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  background: var(--color-main);
  border-radius: 100%;
}

input[type=radio]:focus {
  outline: 0;
}

.input_all {
  width: 100%;
}

.input_half {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 768px) {
  .input_half {
    width: calc(50% - 5px);
  }
}

.input_200 {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .input_200 {
    width: calc(50% - 5px);
    min-height: 51px;
  }
}

.contact_sns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.contact_sns .contact_sns_item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.contact_sns .contact_sns_item p {
  width: 80px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .contact_sns .contact_sns_item p * {
    font-size: 11px !important;
  }
}

.file_area {
  position: relative;
  padding: 30px;
  background-color: var(--color-main3);
}
.file_area label {
  padding: 8px 16px;
  font-weight: bold;
  border: 1px solid #333333;
}
.file_area .file_area_main {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .file_area .file_area_main {
    flex-direction: column;
    gap: 8px;
  }
}
.file_area .file_area_main p {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .file_area .file_area_main p {
    flex-direction: column;
    gap: 8px;
  }
}
.file_area .control-wrap {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 4px;
  white-space: nowrap;
}
.file_area .control-wrap input {
  position: absolute;
  opacity: 0;
}
.file_area .file-selected {
  color: #666;
}
.file_area .file-message {
  padding-top: 16px;
  color: #666;
}

.user_area {
  width: 100%;
}
.user_area .subtitle {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 30px 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .user_area .subtitle {
    margin: 30px 0 0 0px;
  }
}
.user_area .user_info .item {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--color-info);
  padding: 30px 0;
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item {
    padding: 20px 0;
  }
}
.user_area .user_info .item .user_left {
  width: 140px;
  margin: 6px 0 0 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-2);
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item .user_left {
    width: 100%;
    margin: 0 0 11px 0;
    padding: 0;
  }
}
.user_area .user_info .item .user_left .required {
  position: relative;
  display: inline-block;
}
.user_area .user_info .item .user_left .required:after {
  content: "*";
  position: absolute;
  top: 1px;
  right: -10px;
  bottom: 0;
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--color-red);
}
.user_area .user_info .item .user_right {
  width: calc(100% - 150px);
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item .user_right {
    width: 100%;
  }
}
.user_area .user_info .item .user_right .contents .label {
  margin: 0 0 6px;
  color: var(--color-2);
}
.user_area .user_info .item .user_right .mb {
  margin: 0 0 16px;
}
.user_area .user_info .item .user_right .hint {
  color: var(--color-3);
  font-size: 1.1rem;
  margin: 10px 0 0 2px;
}
.user_area .user_info .error_box {
  margin: 10px 0 0;
}
.user_area .user_info .error_txt {
  color: var(--color-red);
  font-size: 1.2rem;
  font-weight: bold;
  padding: 5px 0;
}

.contact_page .contact_inner {
  margin: 50px auto 140px;
  border-top: 1px solid var(--color-1);
}
@media only screen and (max-width: 768px) {
  .contact_page .contact_inner {
    margin: 20px auto 0;
  }
}
.contact_page .txtbox {
  margin: 30px auto 0;
}
@media only screen and (max-width: 768px) {
  .contact_page .txtbox {
    margin: 30px auto 80px;
  }
}
.contact_page .comment {
  margin: 20px 0;
  color: var(--color-main);
  font-size: 14px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .contact_page .comment {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .contact_page .user_info {
    border-top: 1px solid var(--color-info);
  }
}
.contact_page .user_area .user_info .item .user_left {
  width: 250px;
  position: relative;
  padding: 0 10px 0 0;
}
.contact_page .user_area .user_info .item .user_left .txt {
  font-size: 1.3rem;
  font-weight: bold;
}
.contact_page .user_area .user_info .item .user_left .txt span {
  color: var(--color-main);
}
@media only screen and (max-width: 768px) {
  .contact_page .user_area .user_info .item .user_left {
    width: 100%;
    padding: 0;
    margin: 0 0 7px 0;
  }
}
.contact_page .user_area .user_info .item .user_right {
  width: calc(100% - 250px);
  font-size: 1.3rem;
  font-weight: bold;
  margin: 6px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .contact_page .user_area .user_info .item .user_right {
    width: 100%;
    margin: 0;
  }
}
.contact_page .submit_btn {
  text-align: center;
}
.contact_page .submit {
  max-width: 300px;
  margin: 50px auto 0;
}
@media only screen and (max-width: 768px) {
  .contact_page .submit {
    width: 100%;
    max-width: 100%;
    margin: 30px auto 80px;
  }
}

@media only screen and (max-width: 768px) {
  .audition_page main {
    overflow: hidden;
  }
}
.audition_page .memo_area {
  background-color: var(--color-main3);
  padding: 40px;
  margin: 30px auto 0;
}
@media only screen and (max-width: 768px) {
  .audition_page .memo_area {
    width: 100%;
    padding: 20px;
    margin: 20px auto 0;
  }
}
.audition_page .memo_area p {
  font-size: 13px;
}
.audition_page .memo_area p span {
  font-weight: bold;
}
.audition_page .memo_area p + p {
  margin-top: 1.4em;
}
.audition_page .line_oubo {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1000;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: block;
  padding: 41px 27px;
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 769px) {
  .audition_page .line_oubo:hover {
    background-color: var(--color-w);
    border: 1px solid var(--color-main);
    color: #fff;
  }
  .audition_page .line_oubo:hover img {
    content: url("../img/common/line_audition_hover.svg");
  }
}
@media only screen and (max-width: 768px) {
  .audition_page .line_oubo {
    width: 100%;
    padding: 14px 90px;
    bottom: 0;
    right: 0;
    top: auto;
    height: auto;
    border-radius: 0;
    background-color: var(--color-main);
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
  }
  .audition_page .line_oubo img {
    max-width: 150px;
    display: block;
    margin: 0 auto;
    content: url("../img/common/line_audition_sp.svg");
  }
}
.audition_page .line_oubo.hidden {
  opacity: 0;
  visibility: hidden;
}

.sub_page main {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 2s ease 0.1s, transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, filter 2s ease 0.1s;
}

.sub_page.is-load main {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 1.6s ease 0.1s;
}/*# sourceMappingURL=style.css.map */