@charset "UTF-8";
:root {
  --font-en: capitana, "Noto Sans", sans-serif;
  --font-ja: "Noto Sans", sans-serif;
  --color-navy: #26292C;
  --color-white: #EFEFEF;
  --color-yellow: #F2FF53;
  --color-red: #ff3351;
}

body {
  background-color: var(--color-navy);
  font-family: var(--font-ja);
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 500;
  font-size: 1.8rem;
}

html {
  width: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: auto;
  font-size: 0.5208333333vw;
}

@media (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media (max-width: 1600px) {
  html {
    font-size: 0.625vw;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media (max-width: 1080px) {
  html {
    font-size: 0.8518518519vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1.65vw;
    font-size: 1.3020833333vw;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 1.86vw;
  }
}
@media (orientation: landscape) and (max-width: 768px) {
  html {
    font-size: 1.171875vw;
  }
}
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  transition: all 0.5s ease;
  animation-delay: 0.5s;
  z-index: 999;
}
@media screen and (min-width: 769px) {
  header {
    padding: 3rem 0;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 0 0;
  }
}
header .header_inner {
  position: relative;
  width: 95%;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s;
}
header .header_inner.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1401px) {
  header .header_inner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  header .header_inner {
    width: 100%;
  }
}
header .header_inner .nav-open header {
  mix-blend-mode: normal;
}

.hamburger {
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  background: #171D21;
}

.hamburger .hamburger__line {
  width: 5rem;
  position: absolute;
  height: 0.1rem;
  background-color: var(--color-white);
  will-change: top, left, transform;
  transition: top 0.5s ease, left 0.5s ease, transform 0.5s ease;
}

.hamburger .hamburger__line--1 {
  top: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger .hamburger__line--2 {
  top: 4.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger .hamburger__line--3 {
  font-family: var(--font-en);
  font-weight: bold;
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
}

.nav-open #nav .global-nav {
  width: 100%;
  top: 0;
  opacity: 1;
  visibility: visible;
  background: linear-gradient(0deg, #484848 0%, #171D21 100%);
  z-index: 999;
}
.nav-open #nav .global-nav li a {
  color: var(--color-white);
}
.nav-open #nav .global-nav .contact-button {
  margin-top: 15rem;
}
.nav-open #nav .global-nav .contact-button a {
  display: block;
  width: 100%;
  background-color: var(--color-yellow);
  color: var(--color-navy);
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.5;
  padding: 2rem 0;
}
.nav-open #nav .global-nav .contact-button a span {
  font-size: 1.5em;
}
.nav-open #nav .global-nav::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  top: 0;
  left: 0;
}

.nav-open .hamburger__line--1 {
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%) rotate(30deg);
}

.nav-open .hamburger__line--2 {
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%) rotate(-30deg);
}

.nav-open .hamburger .hamburger__line {
  background-color: var(--color-white) !important;
}

@media screen and (min-width: 769px) {
  nav .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 98%;
  }
  nav .global-nav .global-nav_list {
    display: flex;
    align-items: center;
    justify-content: end;
  }
  nav .global-nav .global-nav_list li {
    margin-left: 4rem;
    padding: 1rem 0;
  }
  nav .global-nav .global-nav_list li a {
    font-family: var(--font-en);
    font-weight: bold;
    text-shadow: 0 0 0.5rem rgba(21, 23, 25, 0.5);
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  nav .global-nav {
    position: fixed;
    background-color: var(--color-blue);
    top: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transition: all 0.5s ease;
    padding: 18rem 4rem;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
  }
  nav .global-nav .nav-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: luminosity;
    opacity: 0.1;
    z-index: -1;
  }
  nav .global-nav .nav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
  nav .global-nav::-webkit-scrollbar {
    display: none;
  }
  nav .global-nav .global-nav_list .drop-menu {
    margin-bottom: 5rem;
  }
  nav .global-nav .global-nav_list .drop-menu > a {
    margin-bottom: 3rem;
  }
  nav .global-nav .global-nav_list .drop-menu .drop-menu-item {
    margin-bottom: 3rem !important;
  }
  nav .global-nav .global-nav_list .drop-menu .drop-menu-item a {
    font-family: var(--font-en);
    position: relative;
    font-size: 1.4rem;
    padding-left: 2rem;
  }
  nav .global-nav .global-nav_list .drop-menu .drop-menu-item a::before {
    position: absolute;
    content: "";
    width: 1.2rem;
    border-bottom: 1px solid #fff;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  nav .global-nav .global-nav_list li {
    margin-bottom: 6rem;
  }
  nav .global-nav .global-nav_list li a {
    font-family: var(--font-en);
    font-weight: bold;
    color: var(--color-white);
    width: 90%;
    display: block;
    font-size: 3rem;
    line-height: 1;
    border-radius: 999px;
  }
}

.fixed-button {
  position: fixed;
  bottom: 3%;
  right: 3%;
  width: 16rem;
  height: 16rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .fixed-button {
    bottom: 0%;
    right: 0%;
    width: 100%;
    height: 8rem;
  }
}
.fixed-button a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--color-yellow);
  color: var(--color-navy);
  border-radius: 999px;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .fixed-button a {
    border-radius: 0;
    padding-bottom: 1rem;
    font-size: 1.5rem;
  }
}
.fixed-button a span {
  font-size: 1.8em;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .fixed-button a span {
    margin-bottom: 0.2rem;
    font-size: 1.6em;
  }
}
.fixed-button a::before {
  position: absolute;
  content: "";
  bottom: 10%;
  transform: translateX(-50%) rotate(45deg);
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
  color: var(--color-navy);
}
.fixed-button.show {
  opacity: 1;
  visibility: visible;
}

.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.fixed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(3px);
}

#firstview-contents {
  position: relative;
  width: 100%;
  height: 100svh;
  z-index: 1;
  overflow: hidden;
  z-index: 1;
}
#firstview-contents .firstview-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}
#firstview-contents .firstview-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60%;
}
@media screen and (min-width: 1081px) {
  #firstview-contents {
    min-height: 800px;
  }
}
@media screen and (max-width: 1080px) {
  #firstview-contents {
    min-height: 500px;
  }
}
#firstview-contents::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -0.2%;
  height: 100%;
  width: 18%;
  max-width: 120px;
  background: url(../img/firstview-bg-logo.png) 0 0/cover no-repeat;
  mix-blend-mode: difference;
  z-index: -1;
}
#firstview-contents .add-more-seats_block {
  position: absolute;
  bottom: 3%;
  left: 0;
  z-index: 1;
}
#firstview-contents .add-more-seats_block a {
  display: inline-block;
  width: 75%;
  max-width: 850px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  #firstview-contents .add-more-seats_block a {
    width: 100%;
  }
}
#firstview-contents .add-more-seats_block a img {
  width: 100%;
}
#firstview-contents .add-more-seats_block a:hover {
  opacity: 0.7;
}

.marquee-text {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  animation: header-animation 1.8s ease-in both;
  animation-delay: 3s;
  color: var(--color-white);
  background-color: #302c2c;
}

.marquee-text .marquee {
  display: flex;
  overflow: hidden !important;
  gap: 1rem;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.8rem;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .marquee-text .marquee {
    letter-spacing: 0.3rem;
  }
}
.marquee-text .marquee-inner {
  animation: marquee 70s linear infinite;
}

@keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 1rem);
  }
}
@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
.inner_firstview-contents {
  position: relative;
  width: 90%;
  max-width: 1670px;
  height: 100%;
  margin: 0 auto;
}
.inner_firstview-contents .inner_firstview-contents__text {
  width: 100%;
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 1081px) {
  .inner_firstview-contents .inner_firstview-contents__text {
    max-width: 890px;
  }
}
.inner_firstview-contents .company-logo {
  margin-bottom: 6rem;
}
.inner_firstview-contents .company-logo img {
  width: 100%;
}
.inner_firstview-contents .title-text .text-ja {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .inner_firstview-contents .title-text .text-ja {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 450px) {
  .inner_firstview-contents .title-text .text-ja {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
}
.inner_firstview-contents .title-text .text-en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 6.3rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .inner_firstview-contents .title-text .text-en {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 450px) {
  .inner_firstview-contents .title-text .text-en {
    font-size: 3.7rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
}
.inner_firstview-contents .title-sub-text {
  height: 2.3rem;
  margin-bottom: 8rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .inner_firstview-contents .title-sub-text {
    height: 1.5rem;
    margin-bottom: 6rem;
  }
}
.inner_firstview-contents .title-sub-text img {
  height: 100%;
}
.inner_firstview-contents .event-info-box {
  position: relative;
  display: inline-block;
  padding: 0 10rem;
  margin-bottom: 15.8rem;
}
@media screen and (min-width: 451px) {
  .inner_firstview-contents .event-info-box {
    padding: 0 7rem;
  }
}
@media screen and (max-width: 450px) {
  .inner_firstview-contents .event-info-box {
    padding: 0 5rem;
  }
}
.inner_firstview-contents .event-info-box .date {
  width: 67rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .inner_firstview-contents .event-info-box .date {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.inner_firstview-contents .event-info-box .date img {
  width: 100%;
}
.inner_firstview-contents .event-info-box .place {
  width: 67rem;
}
@media screen and (max-width: 768px) {
  .inner_firstview-contents .event-info-box .place {
    width: 100%;
  }
}
.inner_firstview-contents .event-info-box .place img {
  width: 100%;
}
.inner_firstview-contents .event-info-box::before, .inner_firstview-contents .event-info-box::after {
  width: 5rem;
  height: 17rem;
}
@media (max-width: 1280px) and (min-width: 769px) {
  .inner_firstview-contents .event-info-box::before, .inner_firstview-contents .event-info-box::after {
    width: 4.5rem;
    height: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .inner_firstview-contents .event-info-box::before, .inner_firstview-contents .event-info-box::after {
    width: 2.5rem;
    height: 10rem;
  }
}
.inner_firstview-contents .event-info-box::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  background: url(../img/event-info-box_left-img.png) left 0/contain no-repeat;
}
.inner_firstview-contents .event-info-box::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  background: url(../img/event-info-box_right-img.png) right 0/contain no-repeat;
}
.inner_firstview-contents .contact-button a {
  display: inline-block;
  background-color: var(--color-yellow);
  color: var(--color-navy);
  text-align: center;
  font-weight: bold;
  padding: 1rem 3rem 1.2rem;
  border-radius: 999px;
}
@media screen and (max-width: 768px) {
  .inner_firstview-contents .contact-button a {
    display: block;
    width: 85%;
    max-width: 450px;
    margin: 0 auto;
  }
}
.inner_firstview-contents .contact-button a span {
  font-size: 1.5em;
}
.inner_firstview-contents .contact-button .contact-button-end {
  display: inline-block;
  background-color: #b3b4b6;
  color: var(--color-navy);
  text-align: center;
  font-weight: bold;
  padding: 1rem 3rem 1.2rem;
  border-radius: 999px;
  font-size: 1.3em;
}
@media screen and (max-width: 768px) {
  .inner_firstview-contents .contact-button .contact-button-end {
    display: block;
    width: 85%;
    max-width: 450px;
    margin: 0 auto;
  }
}

#introduction-contents {
  position: relative;
  padding: 25rem 0 30rem;
}
@media screen and (max-width: 1080px) {
  #introduction-contents {
    padding: 15rem 0 20rem;
  }
}
#introduction-contents::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(21, 23, 25, 0) 0%, rgba(21, 23, 25, 0.8) 70%, rgb(21, 23, 25) 100%);
  z-index: -1;
}
@media screen and (min-width: 1081px) {
  #introduction-contents .introduction-img {
    position: absolute;
    left: 0;
    top: 43rem;
    width: 37vw;
  }
}
@media screen and (max-width: 1080px) {
  #introduction-contents .introduction-img {
    margin-top: 10rem;
    width: 90%;
    max-width: 77rem;
    margin: 10rem 0 0 auto;
  }
}
#introduction-contents .introduction-img img {
  width: 100%;
}

.inner_introduction-contents {
  position: relative;
  width: 90%;
  margin: 0 auto;
  z-index: 1;
}
.inner_introduction-contents .introduction-text {
  text-align: justify;
}
@media screen and (min-width: 1081px) {
  .inner_introduction-contents .introduction-text {
    width: 55vw;
    max-width: 77rem;
    margin-left: 38vw;
  }
}
@media screen and (max-width: 1080px) {
  .inner_introduction-contents .introduction-text {
    max-width: 77rem;
  }
}
.inner_introduction-contents .introduction-text h2 {
  font-family: var(--font-en);
  font-size: 6rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .inner_introduction-contents .introduction-text h2 {
    font-size: 4.5rem;
  }
}
.inner_introduction-contents .introduction-text h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .inner_introduction-contents .introduction-text h3 {
    font-size: 2.1rem;
  }
}
.inner_introduction-contents .introduction-text p {
  line-height: 2;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}
.accordion-content.open {
  height: 100%;
  max-height: 500px;
}

.inner_talk-contents {
  margin: 0 auto;
  padding-bottom: 21.2rem;
}
@media screen and (min-width: 1081px) {
  .inner_talk-contents {
    width: 90%;
    max-width: 1280px;
  }
}
@media screen and (max-width: 1080px) {
  .inner_talk-contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .inner_talk-contents {
    padding-bottom: 10rem;
  }
}
.inner_talk-contents .contents-head {
  position: relative;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .contents-head {
    margin-bottom: 4rem;
  }
}
.inner_talk-contents .contents-head .contents-label {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 3rem;
  background-color: var(--color-navy);
  padding: 0 2rem;
  margin-bottom: 5.4rem;
}
@media screen and (max-width: 1080px) {
  .inner_talk-contents .contents-head .contents-label {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}
.inner_talk-contents .contents-head h2 {
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 6rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .contents-head h2 {
    font-size: 3.5rem;
  }
}
.inner_talk-contents .contents-head .time {
  position: relative;
  padding-left: 3rem;
  font-family: var(--font-en);
  font-size: 2.9rem;
  line-height: 1;
  margin-bottom: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .inner_talk-contents .contents-head .time {
    font-size: 2.2rem;
    padding-left: 2rem;
  }
}
.inner_talk-contents .contents-head .time::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 100%;
  background-color: var(--color-navy);
  left: 0;
  top: 0;
}
@media screen and (max-width: 1080px) {
  .inner_talk-contents .contents-head .time::before {
    width: 0.8rem;
  }
}
.inner_talk-contents .contents-head .tag {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  color: #d42818;
  font-weight: bold;
  padding: 0.5rem 2rem;
  line-height: 1;
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .contents-head .tag {
    font-size: 1.1em;
  }
}
.inner_talk-contents .contents-head .tag::before {
  position: absolute;
  content: "[";
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
}
.inner_talk-contents .contents-head .tag::after {
  position: absolute;
  content: "]";
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
}
.inner_talk-contents .contents-head .tag2 {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  color: var(--color-navy);
  font-weight: bold;
  border-radius: 999px;
  padding: 0.5rem 2rem;
  line-height: 1;
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .contents-head .tag2 {
    font-size: 1em;
  }
}
.inner_talk-contents .contents-head .tag2::before {
  position: absolute;
  content: "[";
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
}
.inner_talk-contents .contents-head .tag2::after {
  position: absolute;
  content: "]";
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
}
.inner_talk-contents .contents-head p span {
  font-size: 0.85em;
}
.inner_talk-contents .main-contents,
.inner_talk-contents .open-session,
.inner_talk-contents .social-gathering {
  position: relative;
  background-color: #fff;
  color: var(--color-navy);
  z-index: 1;
  padding: 9rem 8rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1080px) {
  .inner_talk-contents .main-contents,
  .inner_talk-contents .open-session,
  .inner_talk-contents .social-gathering {
    padding: 3rem 3rem;
  }
}
.inner_talk-contents .main-contents::before,
.inner_talk-contents .open-session::before,
.inner_talk-contents .social-gathering::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.inner_talk-contents .main-contents .contents-body,
.inner_talk-contents .open-session .contents-body,
.inner_talk-contents .social-gathering .contents-body {
  position: relative;
  font-weight: bold;
  margin-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body,
  .inner_talk-contents .open-session .contents-body,
  .inner_talk-contents .social-gathering .contents-body {
    margin-bottom: 6rem;
  }
}
.inner_talk-contents .main-contents .contents-body .speaker-info,
.inner_talk-contents .open-session .contents-body .speaker-info,
.inner_talk-contents .social-gathering .contents-body .speaker-info {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .inner_talk-contents .main-contents .contents-body .speaker-info,
  .inner_talk-contents .open-session .contents-body .speaker-info,
  .inner_talk-contents .social-gathering .contents-body .speaker-info {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker-info,
  .inner_talk-contents .open-session .contents-body .speaker-info,
  .inner_talk-contents .social-gathering .contents-body .speaker-info {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .inner_talk-contents .main-contents .contents-body .speaker-info .speaker-text,
  .inner_talk-contents .open-session .contents-body .speaker-info .speaker-text,
  .inner_talk-contents .social-gathering .contents-body .speaker-info .speaker-text {
    padding-left: 7.5rem;
  }
}
.inner_talk-contents .main-contents .contents-body .company-logo,
.inner_talk-contents .open-session .contents-body .company-logo,
.inner_talk-contents .social-gathering .contents-body .company-logo {
  line-height: 1;
}
.inner_talk-contents .main-contents .contents-body .company-logo img,
.inner_talk-contents .open-session .contents-body .company-logo img,
.inner_talk-contents .social-gathering .contents-body .company-logo img {
  height: 100%;
}
.inner_talk-contents .main-contents .contents-body .speaker1,
.inner_talk-contents .main-contents .contents-body .speaker2,
.inner_talk-contents .main-contents .contents-body .speaker3,
.inner_talk-contents .open-session .contents-body .speaker1,
.inner_talk-contents .open-session .contents-body .speaker2,
.inner_talk-contents .open-session .contents-body .speaker3,
.inner_talk-contents .social-gathering .contents-body .speaker1,
.inner_talk-contents .social-gathering .contents-body .speaker2,
.inner_talk-contents .social-gathering .contents-body .speaker3 {
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker1,
  .inner_talk-contents .main-contents .contents-body .speaker2,
  .inner_talk-contents .main-contents .contents-body .speaker3,
  .inner_talk-contents .open-session .contents-body .speaker1,
  .inner_talk-contents .open-session .contents-body .speaker2,
  .inner_talk-contents .open-session .contents-body .speaker3,
  .inner_talk-contents .social-gathering .contents-body .speaker1,
  .inner_talk-contents .social-gathering .contents-body .speaker2,
  .inner_talk-contents .social-gathering .contents-body .speaker3 {
    padding: 5rem 3rem;
  }
}
.inner_talk-contents .main-contents .contents-body .speaker1,
.inner_talk-contents .open-session .contents-body .speaker1,
.inner_talk-contents .social-gathering .contents-body .speaker1 {
  border-radius: 14.4rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker1,
  .inner_talk-contents .open-session .contents-body .speaker1,
  .inner_talk-contents .social-gathering .contents-body .speaker1 {
    border-radius: 5rem;
  }
}
.inner_talk-contents .main-contents .contents-body .speaker1 .company-logo,
.inner_talk-contents .open-session .contents-body .speaker1 .company-logo,
.inner_talk-contents .social-gathering .contents-body .speaker1 .company-logo {
  height: 5.5rem;
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker1 .company-logo,
  .inner_talk-contents .open-session .contents-body .speaker1 .company-logo,
  .inner_talk-contents .social-gathering .contents-body .speaker1 .company-logo {
    height: 3.5rem;
    margin-bottom: 2.5rem;
  }
}
.inner_talk-contents .main-contents .contents-body .speaker2,
.inner_talk-contents .open-session .contents-body .speaker2,
.inner_talk-contents .social-gathering .contents-body .speaker2 {
  border-radius: 12.4rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker2,
  .inner_talk-contents .open-session .contents-body .speaker2,
  .inner_talk-contents .social-gathering .contents-body .speaker2 {
    border-radius: 5rem;
  }
}
.inner_talk-contents .main-contents .contents-body .speaker3,
.inner_talk-contents .open-session .contents-body .speaker3,
.inner_talk-contents .social-gathering .contents-body .speaker3 {
  border-radius: 9.5rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker3,
  .inner_talk-contents .open-session .contents-body .speaker3,
  .inner_talk-contents .social-gathering .contents-body .speaker3 {
    border-radius: 5rem;
  }
}
.inner_talk-contents .main-contents .contents-body .speaker3 .company-logo,
.inner_talk-contents .open-session .contents-body .speaker3 .company-logo,
.inner_talk-contents .social-gathering .contents-body .speaker3 .company-logo {
  margin-bottom: 2.5rem;
}
.inner_talk-contents .main-contents .contents-body .speaker3 .company-logo.logo-squeeze,
.inner_talk-contents .open-session .contents-body .speaker3 .company-logo.logo-squeeze,
.inner_talk-contents .social-gathering .contents-body .speaker3 .company-logo.logo-squeeze {
  height: 2rem;
}
.inner_talk-contents .main-contents .contents-body .speaker3 .company-logo.logo-nihonichi,
.inner_talk-contents .open-session .contents-body .speaker3 .company-logo.logo-nihonichi,
.inner_talk-contents .social-gathering .contents-body .speaker3 .company-logo.logo-nihonichi {
  height: 3.3rem;
}
.inner_talk-contents .main-contents .contents-body .speaker3 .company-logo.logo-realgate,
.inner_talk-contents .open-session .contents-body .speaker3 .company-logo.logo-realgate,
.inner_talk-contents .social-gathering .contents-body .speaker3 .company-logo.logo-realgate {
  height: 1.5rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker-icon1,
  .inner_talk-contents .main-contents .contents-body .speaker-icon2,
  .inner_talk-contents .main-contents .contents-body .speaker-icon3,
  .inner_talk-contents .open-session .contents-body .speaker-icon1,
  .inner_talk-contents .open-session .contents-body .speaker-icon2,
  .inner_talk-contents .open-session .contents-body .speaker-icon3,
  .inner_talk-contents .social-gathering .contents-body .speaker-icon1,
  .inner_talk-contents .social-gathering .contents-body .speaker-icon2,
  .inner_talk-contents .social-gathering .contents-body .speaker-icon3 {
    margin: 4rem auto 0;
  }
}
.inner_talk-contents .main-contents .contents-body .speaker-icon1 img,
.inner_talk-contents .main-contents .contents-body .speaker-icon2 img,
.inner_talk-contents .main-contents .contents-body .speaker-icon3 img,
.inner_talk-contents .open-session .contents-body .speaker-icon1 img,
.inner_talk-contents .open-session .contents-body .speaker-icon2 img,
.inner_talk-contents .open-session .contents-body .speaker-icon3 img,
.inner_talk-contents .social-gathering .contents-body .speaker-icon1 img,
.inner_talk-contents .social-gathering .contents-body .speaker-icon2 img,
.inner_talk-contents .social-gathering .contents-body .speaker-icon3 img {
  width: 100%;
}
.inner_talk-contents .main-contents .contents-body .speaker-icon1,
.inner_talk-contents .open-session .contents-body .speaker-icon1,
.inner_talk-contents .social-gathering .contents-body .speaker-icon1 {
  width: 25.9rem;
}
.inner_talk-contents .main-contents .contents-body .speaker-icon1 img,
.inner_talk-contents .open-session .contents-body .speaker-icon1 img,
.inner_talk-contents .social-gathering .contents-body .speaker-icon1 img {
  width: 100%;
}
.inner_talk-contents .main-contents .contents-body .speaker-icon2,
.inner_talk-contents .open-session .contents-body .speaker-icon2,
.inner_talk-contents .social-gathering .contents-body .speaker-icon2 {
  width: 22rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker-icon2,
  .inner_talk-contents .open-session .contents-body .speaker-icon2,
  .inner_talk-contents .social-gathering .contents-body .speaker-icon2 {
    width: 25.9rem;
  }
}
.inner_talk-contents .main-contents .contents-body .speaker-icon2 img,
.inner_talk-contents .open-session .contents-body .speaker-icon2 img,
.inner_talk-contents .social-gathering .contents-body .speaker-icon2 img {
  width: 100%;
}
.inner_talk-contents .main-contents .contents-body .speaker-icon3,
.inner_talk-contents .open-session .contents-body .speaker-icon3,
.inner_talk-contents .social-gathering .contents-body .speaker-icon3 {
  width: 16.6rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker-icon3,
  .inner_talk-contents .open-session .contents-body .speaker-icon3,
  .inner_talk-contents .social-gathering .contents-body .speaker-icon3 {
    width: 25.9rem;
  }
}
.inner_talk-contents .main-contents .contents-body .speaker-icon3 img,
.inner_talk-contents .open-session .contents-body .speaker-icon3 img,
.inner_talk-contents .social-gathering .contents-body .speaker-icon3 img {
  width: 100%;
}
.inner_talk-contents .main-contents .contents-body .speaker-position,
.inner_talk-contents .open-session .contents-body .speaker-position,
.inner_talk-contents .social-gathering .contents-body .speaker-position {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker-position,
  .inner_talk-contents .open-session .contents-body .speaker-position,
  .inner_talk-contents .social-gathering .contents-body .speaker-position {
    line-height: 1.3;
    font-size: 1.85rem;
  }
}
.inner_talk-contents .main-contents .contents-body .speaker-name,
.inner_talk-contents .open-session .contents-body .speaker-name,
.inner_talk-contents .social-gathering .contents-body .speaker-name {
  position: relative;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.inner_talk-contents .main-contents .contents-body .speaker-name span,
.inner_talk-contents .open-session .contents-body .speaker-name span,
.inner_talk-contents .social-gathering .contents-body .speaker-name span {
  font-size: 1.8em;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker-name span,
  .inner_talk-contents .open-session .contents-body .speaker-name span,
  .inner_talk-contents .social-gathering .contents-body .speaker-name span {
    font-size: 1.6em;
    margin-right: 0.5rem;
  }
}
.inner_talk-contents .main-contents .contents-body .speaker-name .accordion-btn,
.inner_talk-contents .open-session .contents-body .speaker-name .accordion-btn,
.inner_talk-contents .social-gathering .contents-body .speaker-name .accordion-btn {
  position: relative;
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.5rem;
  padding: 1rem 4rem 0.9rem 2.5rem;
  line-height: 1;
  border: 2px solid var(--color-navy);
  border-radius: 999px;
  margin-left: 5rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .speaker-name .accordion-btn,
  .inner_talk-contents .open-session .contents-body .speaker-name .accordion-btn,
  .inner_talk-contents .social-gathering .contents-body .speaker-name .accordion-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--color-navy);
  }
}
.inner_talk-contents .main-contents .contents-body .speaker-name .accordion-btn::after,
.inner_talk-contents .open-session .contents-body .speaker-name .accordion-btn::after,
.inner_talk-contents .social-gathering .contents-body .speaker-name .accordion-btn::after {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/arrow-navy.png) 0 0/cover no-repeat;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.inner_talk-contents .main-contents .contents-body .speaker-name .accordion-btn.active::after,
.inner_talk-contents .open-session .contents-body .speaker-name .accordion-btn.active::after,
.inner_talk-contents .social-gathering .contents-body .speaker-name .accordion-btn.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.inner_talk-contents .main-contents .contents-body .accordion-content p,
.inner_talk-contents .open-session .contents-body .accordion-content p,
.inner_talk-contents .social-gathering .contents-body .accordion-content p {
  padding: 5rem 7.5rem;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .main-contents .contents-body .accordion-content p,
  .inner_talk-contents .open-session .contents-body .accordion-content p,
  .inner_talk-contents .social-gathering .contents-body .accordion-content p {
    padding: 5rem 0 0;
  }
}
.inner_talk-contents .main-contents::before {
  background: radial-gradient(circle at top left, #F3FFB7 0%, #F0FBC2 20%, #E7EBED 100%);
}
.inner_talk-contents .main-contents .contents-head .contents-label {
  color: #F3FFB7;
}
.inner_talk-contents .open-session::before {
  background: radial-gradient(circle at top left, #e2efef 0%, #E7EBED 100%);
}
.inner_talk-contents .open-session .contents-head .contents-label {
  color: #e2efef;
}
.inner_talk-contents .open-session h3 {
  font-family: var(--font-en);
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.inner_talk-contents .social-gathering::before {
  background: radial-gradient(circle at top left, #e5eded 0%, #e9ecee 100%);
}
.inner_talk-contents .social-gathering .contents-img img {
  width: 100%;
}
.inner_talk-contents .social-gathering .shop-about_list li {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .social-gathering .shop-about_list li {
    flex-direction: column;
    align-items: normal;
  }
  .inner_talk-contents .social-gathering .shop-about_list li:first-child {
    margin-bottom: 7rem;
  }
}
.inner_talk-contents .social-gathering .shop-about_list li .shop-icon {
  width: 15rem;
}
@media screen and (min-width: 769px) {
  .inner_talk-contents .social-gathering .shop-about_list li .shop-icon {
    margin-right: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .social-gathering .shop-about_list li .shop-icon {
    margin-bottom: 2rem;
  }
}
.inner_talk-contents .social-gathering .shop-about_list li .shop-icon img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .inner_talk-contents .social-gathering .shop-about_list li .shop-text {
    width: calc(100% - 13rem - 5rem);
  }
}
.inner_talk-contents .social-gathering .shop-about_list li .shop-text h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.inner_talk-contents .social-gathering .shop-about_list li .shop-text p {
  font-size: 1.6rem;
}
.inner_talk-contents .contact-button {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.inner_talk-contents .contact-button a {
  display: inline-block;
  background-color: var(--color-navy);
  border: 3px solid var(--color-yellow);
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-yellow);
  padding: 1rem 3.5rem;
  border-radius: 999px;
  margin-bottom: 3rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .contact-button a {
    font-size: 2.5rem;
    padding: 1rem 5rem;
    margin-bottom: 2rem;
  }
}
.inner_talk-contents .contact-button a:hover {
  opacity: 0.8;
}
.inner_talk-contents .contact-button .link-end {
  position: relative;
  display: inline-block;
  background-color: #6D7577;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  padding: 1rem 3.5rem;
  border-radius: 999px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .inner_talk-contents .contact-button .link-end {
    font-size: 2.5rem;
    padding: 1rem 5rem;
    margin-bottom: 2rem;
  }
}
.inner_talk-contents .contact-button p {
  font-weight: 500;
  font-size: 1.6rem;
  text-align: left;
}

#outline-contents {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #outline-contents {
    padding-bottom: 20rem;
  }
}
#outline-contents .bg-img {
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  #outline-contents .bg-img {
    height: 100%;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #outline-contents .bg-img {
    width: 100%;
    height: 60rem;
    bottom: 0;
    left: 0;
  }
}
#outline-contents .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
#outline-contents::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, rgb(30, 37, 43) 0%, rgb(66, 77, 82) 65%, rgba(27, 39, 49, 0) 100%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #outline-contents::after {
    width: 100%;
    height: 90%;
    background: linear-gradient(180deg, rgb(30, 37, 43) 0%, rgb(66, 77, 82) 70%, rgba(27, 39, 49, 0) 100%);
  }
}

.inner_outline-contents {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 13rem 0;
}
@media screen and (max-width: 768px) {
  .inner_outline-contents {
    padding: 10rem 0;
  }
}
.inner_outline-contents h2 {
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 7.6rem;
}
@media screen and (max-width: 768px) {
  .inner_outline-contents h2 {
    font-size: 4.5rem;
    margin-bottom: 5rem;
  }
}
.inner_outline-contents .outline-table {
  width: 50%;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 6rem;
}
@media screen and (min-width: 769px) {
  .inner_outline-contents .outline-table {
    max-width: 559px;
  }
}
@media screen and (max-width: 768px) {
  .inner_outline-contents .outline-table {
    width: 100%;
  }
}
.inner_outline-contents .outline-table tr th,
.inner_outline-contents .outline-table tr td {
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--color-white);
}
.inner_outline-contents .outline-table tr th {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .inner_outline-contents .outline-table tr th {
    width: 25%;
  }
}
.inner_outline-contents .outline-table tr td {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .inner_outline-contents .outline-table tr td {
    width: 75%;
  }
}
@media screen and (min-width: 769px) {
  .inner_outline-contents .access-block {
    width: 50%;
    max-width: 559px;
  }
}
.inner_outline-contents .access-block p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.inner_outline-contents .access-block p a {
  display: inline-block;
  text-decoration: underline;
  margin-left: 2rem;
}
.inner_outline-contents .access-block iframe {
  width: 100%;
  height: 250px;
  filter: grayscale(100);
}
@media screen and (max-width: 768px) {
  .inner_outline-contents .access-block iframe {
    height: 200px;
  }
}

.content {
  display: none;
  transition: all 0.5s;
}
.content.show {
  display: block;
}
.content.content-fujita, .content.content-tabata {
  padding: 5rem;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  .content.content-fujita, .content.content-tabata {
    padding: 3rem;
  }
}
.content.content-fujita .contact-title, .content.content-tabata .contact-title {
  margin-bottom: 7rem;
  font-weight: bold;
  font-size: 1.4em;
  text-align: center;
  background-color: var(--color-navy);
  padding: 1rem 2rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .content.content-fujita .contact-title, .content.content-tabata .contact-title {
    font-size: 1.25em;
    margin-bottom: 5rem;
    line-height: 1.3;
  }
}
.content.content-fujita .contact-title {
  color: #deef85;
}
.content.content-fujita .contact-title .number {
  border: 1px solid #deef85;
}
.content.content-tabata .contact-title {
  color: #bbf0f0;
}
.content.content-tabata .contact-title .number {
  border: 1px solid #bbf0f0;
}

#application-contents {
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.885);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
}

.inner_application-contents {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 21.4rem 0;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .inner_application-contents {
    padding: 10rem 0;
  }
}
.inner_application-contents h2 {
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 7.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .inner_application-contents h2 {
    font-size: 4.5rem;
    margin-bottom: 6rem;
  }
}
.inner_application-contents h2 span {
  font-size: 2rem;
}
.inner_application-contents .head-text {
  margin-bottom: 6rem;
}
.inner_application-contents .tab-container {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .inner_application-contents .tab-container {
    margin-bottom: 6rem;
  }
}
.inner_application-contents .tab-container h3 {
  width: 100%;
  background: #5b5858;
  color: var(--color-white);
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 3rem;
  padding: 1rem;
}
.inner_application-contents .tab-container h3.end {
  background: #a02115;
}
.inner_application-contents .tab-container .tab-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .inner_application-contents .tab-container .tab-list {
    flex-direction: column;
  }
}
.inner_application-contents .tab-container .tab-list .tab {
  position: relative;
  width: 49%;
  border-radius: 999px;
  text-align: center;
  padding: 1rem 2rem;
  background-color: #fff;
  font-size: 2rem;
  font-weight: bold;
  border: 2px solid #889095;
  color: #889095;
  cursor: pointer;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .inner_application-contents .tab-container .tab-list .tab {
    width: 100%;
  }
  .inner_application-contents .tab-container .tab-list .tab:first-child {
    margin-bottom: 1rem;
  }
}
.inner_application-contents .tab-container .tab-list .tab.active {
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
}
.inner_application-contents .tab-container .tab-list .tab.active.tab-fujita {
  background-color: #deef85;
}
.inner_application-contents .tab-container .tab-list .tab.active.tab-tabata {
  background-color: #c0e5e5;
}
.inner_application-contents .tab-container .tab-list .tab-end {
  position: relative;
  width: 49%;
  border-radius: 999px;
  text-align: center;
  padding: 1rem 2rem;
  background-color: #fff;
  font-size: 2rem;
  font-weight: bold;
  border: 2px solid #889095;
  color: #889095;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .inner_application-contents .tab-container .tab-list .tab-end {
    width: 100%;
  }
  .inner_application-contents .tab-container .tab-list .tab-end:first-child {
    margin-bottom: 1rem;
  }
}
.inner_application-contents .tab-container .tab-list .tab-end::after {
  position: absolute;
  content: "応募を締め切りました";
  color: #fff;
  background-color: #a02115;
  width: 50%;
  font-size: 1em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#about-contents {
  position: relative;
  background: url(../img/about-bg.jpg) center center/cover no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #about-contents {
    padding-top: 38rem;
  }
}
#about-contents .about-img {
  position: absolute;
  width: 37%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  #about-contents .about-img {
    max-width: 72rem;
  }
}
#about-contents .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
@media screen and (max-width: 768px) {
  #about-contents .about-img {
    width: 100%;
    height: 38rem;
  }
  #about-contents .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
  }
}
#about-contents .inner_about-contents {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 12rem 0;
}
@media screen and (max-width: 768px) {
  #about-contents .inner_about-contents {
    padding: 9rem 0;
  }
}
#about-contents .inner_about-contents .text-block {
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  #about-contents .inner_about-contents .text-block {
    width: 70%;
    max-width: 62.6rem;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #about-contents .inner_about-contents .text-block {
    width: 100%;
  }
}
#about-contents .inner_about-contents .text-block h2 {
  font-family: var(--font-en);
  font-size: 4.5rem;
  margin-bottom: 5.7rem;
}
@media screen and (max-width: 768px) {
  #about-contents .inner_about-contents .text-block h2 {
    font-size: 3.5rem;
    margin-bottom: 4rem;
  }
}
#about-contents .inner_about-contents .text-block h3 {
  font-size: 2rem;
  margin-bottom: 4rem;
}
#about-contents .inner_about-contents .text-block p {
  margin-bottom: 6.6rem;
}
#about-contents .inner_about-contents .text-block .cp-banner {
  margin-bottom: 6.6rem;
}
#about-contents .inner_about-contents .text-block .cp-banner a {
  display: inline-block;
  transition: all 0.5s;
}
#about-contents .inner_about-contents .text-block .cp-banner a img {
  width: 100%;
}
#about-contents .inner_about-contents .text-block .cp-banner a:hover {
  opacity: 0.8;
}
#about-contents .inner_about-contents .text-block .link-button a {
  position: relative;
  display: inline-block;
  font-size: 2.3rem;
  border: 1px solid var(--color-white);
  padding: 1.7rem;
  line-height: 1;
  z-index: 1;
  transition: all 0.5s;
}
#about-contents .inner_about-contents .text-block .link-button a span {
  display: inline-block;
  width: 2.3rem;
  margin-left: 2rem;
}
#about-contents .inner_about-contents .text-block .link-button a span img {
  width: 100%;
  transition: all 0.5s;
}
#about-contents .inner_about-contents .text-block .link-button a::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background-color: var(--color-white);
  top: 0;
  left: 0;
  transition: all 0.5s;
  z-index: -1;
}
#about-contents .inner_about-contents .text-block .link-button a:hover {
  color: var(--color-navy);
}
#about-contents .inner_about-contents .text-block .link-button a:hover::before {
  width: 100%;
}
#about-contents .inner_about-contents .text-block .link-button a:hover span img {
  filter: invert(100%);
}

footer {
  position: relative;
  background: linear-gradient(0deg, #484848 0%, #171D21 100%);
  overflow: hidden;
  z-index: 1;
}
footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 17rem;
  background: url(../img/footer-bg-logo.png) 0 0/cover no-repeat;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: difference;
  z-index: -1;
}
footer .footer__inner {
  padding: 12rem 0 3rem;
  width: 90%;
  max-width: 1670px;
  margin: 0 auto;
}
footer .footer__inner .footer-logo a {
  display: block;
  height: 8rem;
  margin-bottom: 8rem;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer-logo a {
    height: 5rem;
  }
}
footer .footer__inner .footer-logo a img {
  height: 100%;
}
footer .footer__inner .footer-logo a:hover {
  opacity: 0.7;
}
footer .footer__inner .footer-nav {
  margin-bottom: 6rem;
}
footer .footer__inner .footer-nav li {
  margin-bottom: 2rem;
}
footer .footer__inner .footer-nav li a {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: bold;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  footer .footer__inner .footer-nav li a {
    font-size: 1.8rem;
  }
}
footer .footer__inner .footer-nav li a:hover {
  opacity: 0.7;
}
footer .footer__inner .copyright {
  color: #6D7577;
  font-size: 1.2rem;
  text-align: right;
}