@charset "UTF-8";
body * {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /* 初期状態: 透明で下にずらす */
  /* visible クラスが付いたらフェードイン＆スライドアップ */
  /* レスポンシブ */
}
body .floating-btn {
  position: fixed;
  right: 16px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #a80000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 3000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
body .floating-btn img {
  display: block;
  width: 70%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
body .floating-btn:hover, body .floating-btn:focus {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
body .floating-btn:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}
@media (max-width: 414px) {
  body .floating-btn {
    display: inline-flex;
  }
}
@media (min-width: 415px) {
  body .floating-btn {
    display: none;
  }
}
body .floating-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
body .scroll-reveal,
body [data-reveal] {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body .scroll-reveal.is-visible,
body [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
body .SectionLead-char {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
body .SectionLead-char.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body .errorpage {
  margin: 0;
  padding: 32px 0;
  text-align: center;
}
body .errorpage h1 {
  font-family: serif;
  font-size: 60px;
}
body .errorpage p {
  padding-bottom: 32px;
}
body .errorpage .button {
  background-color: #000000;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  padding: 8px 40px;
  border-radius: 20px;
}
body .m-header,
body .m-menu {
  display: none;
}
body .header_PC {
  font-family: "Exo", sans-serif;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
  padding: 0 120px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}
body .header_PC.hide {
  transform: translate(-50%, -90px);
  transition: transform 0.4s ease;
}
body .header_PC .header_PC-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .header_PC .pc-left {
  display: flex;
  align-items: center;
  gap: 32px;
}
body .header_PC .pc-left .pc-logo {
  height: 36px;
}
body .header_PC .pc-left .pc-text {
  margin-top: 4px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.05rem;
}
body .header_PC .pc-nav ul {
  display: flex;
  gap: 25px;
}
body .header_PC .pc-nav ul li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.4s ease;
}
body .header_PC .pc-nav ul li a:hover {
  transition: 0.4s ease;
  color: #a80000;
}
body main {
  padding-top: 80px;
}
body main .about {
  padding: 60px 0 60px 0;
  max-width: 1080px;
  margin: 0 auto;
  /* =========================================
  Settings & Variables
  ========================================= */
  /* =========================================
  Component: Introduction (Desktop First)
  ========================================= */
}
body main .about ._pc {
  display: inline;
}
body main .about ._sp {
  display: none;
}
body main .about ._visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media (max-width: 768px) {
  body main .about ._pc {
    display: none;
  }
  body main .about ._sp {
    display: inline;
  }
}
body main .about .Introduction {
  width: 100%;
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
  color: #000;
  /* =========================================
  SP Styles (Max-width Override)
  ========================================= */
}
body main .about .Introduction-head {
  margin-bottom: 80px;
  position: relative;
}
body main .about .Introduction-headInner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
body main .about .Introduction-title {
  font-size: 100px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
}
body main .about .Introduction-title .SectionLead-row {
  display: block;
  font-family: "Exo", sans-serif;
  font-weight: 200;
  margin-bottom: 8px;
}
body main .about .Introduction-title .SectionLead-row span {
  margin-right: 4px;
}
body main .about .Introduction-title .SectionLead-row .char_red {
  color: #a80000;
}
body main .about .Introduction-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin-top: 12px;
  line-height: 1.8;
}
body main .about .Introduction-image {
  margin: 0;
  line-height: 0;
}
body main .about .Introduction-image img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body main .about .Introduction.-spark {
  width: 240px;
  height: 140px;
  border-radius: 4px;
  margin-top: 10px;
}
body main .about .Introduction-body {
  display: grid;
  grid-template-columns: 36% 17% 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: end;
  position: relative;
}
body main .about .Introduction.-beam {
  width: 100%;
}
body main .about .Introduction.-worker {
  width: 100%;
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}
body main .about .Introduction-textWrapper {
  padding-bottom: 40px;
}
body main .about .Introduction-text {
  letter-spacing: 0.05rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2.4;
  text-align: justify;
  margin-bottom: 32px;
}
body main .about .Introduction .read-more-button {
  width: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  justify-content: flex-end;
}
body main .about .Introduction .read-more-button .text {
  font-family: "Exo", sans-serif;
  color: #a80000;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.3s;
}
body main .about .Introduction .read-more-button .circle {
  background-color: #a80000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}
body main .about .Introduction .read-more-button .circle .arrow {
  color: white;
  font-size: 14px;
}
body main .about .Introduction .read-more-button:hover .circle {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  body main .about .Introduction-head {
    margin-bottom: 40px;
  }
  body main .about .Introduction-title {
    font-size: 44px;
  }
  body main .about .Introduction-lead {
    font-size: 16px;
    margin-top: 12px;
  }
  body main .about .Introduction.-spark {
    width: 100px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
  }
  body main .about .Introduction-body {
    display: block;
  }
  body main .about .Introduction.-beam {
    width: 65%;
    margin-bottom: 0;
    float: left;
    margin-right: 10px;
  }
  body main .about .Introduction-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
  }
  body main .about .Introduction-body img {
    border-radius: 8px;
  }
  body main .about .Introduction.-beam {
    grid-column: 1/2;
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    align-self: end;
  }
  body main .about .Introduction.-worker {
    grid-column: 2/3;
    width: 100%;
    margin-bottom: 40px;
    height: auto;
  }
  body main .about .Introduction-textWrapper {
    grid-column: 1/3;
    margin-top: 20px;
    padding-bottom: 0;
  }
  body main .about .Introduction-text {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 20px;
  }
}
body .mv .hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #000000;
}
body .mv .hero__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
  overflow: hidden;
}
body .mv .hero__bg-particles::before, body .mv .hero__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: 10vw 20vh #fff, 30vw 40vh #fff, 50vw 10vh #fff, 70vw 80vh #fff, 90vw 30vh #fff, 15vw 70vh #fff, 35vw 90vh #fff, 55vw 50vh #fff, 75vw 20vh #fff, 95vw 60vh #fff, 20vw 30vh 1px #fff, 40vw 50vh 1px #fff, 60vw 70vh 1px #fff, 80vw 90vh 1px #fff;
  border-radius: 50%;
  animation: animateParticles 60s linear infinite;
}
body .mv .hero__bg-particles::after {
  box-shadow: 5vw 15vh #fff, 25vw 35vh #fff, 45vw 5vh #fff, 65vw 75vh #fff, 85vw 25vh #fff, 10vw 65vh 1px #fff, 30vw 85vh 1px #fff, 50vw 45vh 1px #fff, 70vw 15vh 1px #fff;
  animation-duration: 90s;
  animation-delay: -10s;
  opacity: 0.5;
}
body .mv .hero__bg-red-ambient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vmax;
  height: 150vmax;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0.4;
  filter: blur(120px);
  background: radial-gradient(circle at 30% 80%, rgba(168, 0, 0, 0.5) 0%, rgba(168, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0) 60%);
  mix-blend-mode: screen;
  animation: ambientMove 20s ease-in-out infinite alternate;
}
body .mv .hero__container {
  position: relative;
  z-index: 10;
  padding: 0 20px;
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}
body .mv .hero__tagline {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease-out 0.5s forwards;
  opacity: 0;
}
body .mv .hero__title {
  font-family: "Exo", sans-serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #ffffff;
}
body .mv .hero__title-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}
body .mv .hero__title-word {
  display: block;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  animation: slideUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  font-size: clamp(1.5rem, 6vw, 6.5rem);
  line-height: 1.2;
}
body .mv .hero__title-word:nth-child(1) {
  animation-delay: 1.2s;
}
body .mv .hero__title-word:nth-child(2) {
  animation-delay: 1.6s;
}
body .mv .hero__title-accent {
  width: clamp(80px, 15vw, 200px);
  max-width: 200px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: scale(0.8);
  animation: logoReveal 1s ease-out 0.8s forwards;
  filter: drop-shadow(0 0 10px rgba(168, 0, 0, 0.7));
}
body .mv .hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeIn 1s ease-out 2.5s forwards;
  opacity: 0;
}
body .mv .hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  margin: 10px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes animateParticles {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100vh);
  }
}
@keyframes ambientMove {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translate(-45%, -55%) scale(1.1) rotate(5deg);
    opacity: 0.6;
  }
  100% {
    transform: translate(-55%, -45%) scale(1) rotate(-5deg);
    opacity: 0.4;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@media screen and (min-width: 415px) {
  body .mv .hero__title {
    font-size: 3.5rem;
  }
  body .mv .hero__title-word {
    font-size: 3.5rem;
  }
  body .mv .hero__title-text-wrapper {
    gap: 1rem;
  }
  body .mv .hero__title-accent {
    max-width: 120px;
  }
  body .mv .hero__tagline {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 414px) {
  body .mv .hero__title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  body .mv .hero__title-text-wrapper {
    gap: 0.3rem;
    margin-top: 1rem;
  }
  body .mv .hero__title-accent {
    max-width: 100px;
  }
  body .mv .hero__tagline {
    font-size: 0.6rem;
    margin-bottom: 1.5rem;
  }
}
body .loop {
  /* ulタグ */
  /* PCの時のフォントサイズ */
  /* アニメーション */
}
body .loop .scroll-list {
  display: flex;
  list-style: none;
  padding-inline: 0;
  margin-inline: 0;
  gap: 0;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
}
body .loop .scroll-list li {
  color: #e3e3e3;
  font-size: 120px;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 1em 0 0;
  margin: 0;
  animation: marquee-left 16s linear infinite;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
}
@media (min-width: 600px) {
  body .loop .scroll-list li {
    font-size: 120px;
  }
}
@keyframes marquee-left {
  100% {
    transform: translateX(-100%);
  }
}
body .business {
  background: #a80000;
  width: 100%;
  padding: 120px 0 144px 0;
}
body .business .business_title {
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 60px;
}
body .business .business_title h2 {
  color: #ffffff;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  letter-spacing: 0.05rem;
}
body .business .business_title h2::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 5px;
  background-color: #ffffff;
  width: 100px;
  margin-top: 24px;
}
body .business .business_title p {
  color: #ffffff;
  font-size: 18px;
  margin-top: 24px;
  letter-spacing: 0.05rem;
  font-weight: 700;
}
body .business .cards {
  position: relative;
  margin: 0 auto;
  max-width: 1080px;
  display: flex;
  gap: 51px;
}
body .business .card {
  position: relative;
  width: 326px;
  height: 464px;
  color: #fff;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
body .business .card .card__link {
  position: absolute;
  inset: 0;
  z-index: 5;
}
body .business .card:hover .card__image img {
  transform: scale(1.12);
}
body .business .card__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
body .business .card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
body .business .card:hover body .business .card__image img {
  transform: scale(1.1);
}
body .business .card:hover .card__arrow {
  background: #fff;
  transform: scale(1.3);
  color: #a80000;
}
body .business .card__content {
  position: relative;
  z-index: 2;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
body .business .card__title {
  font-family: "Exo", sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 26px 0;
}
body .business .card__text {
  font-size: 16px;
  line-height: 1.6;
}
body .business .card__footer {
  margin: auto 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .business .card__number {
  font-family: "Exo", sans-serif;
  left: -3%;
  bottom: -11%;
  position: absolute;
  font-size: 160px;
  font-weight: 700;
}
body .business .card__arrow {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
  text-decoration: none;
}
body .members_title {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 60px;
}
body .members_title .members_title_text {
  width: 100%;
}
body .members_title .members_title_text h2 {
  color: #333333;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  letter-spacing: 0.05rem;
  color: #ffffff;
}
body .members_title .members_title_text h2::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 5px;
  background-color: #ffffff;
  width: 100px;
  margin-top: 24px;
}
body .members_title .members_title_text h2 span {
  color: #ffffff;
}
body .members_title .members_title_text p {
  color: #ffffff;
  font-size: 18px;
  margin-top: 24px;
  letter-spacing: 0.05rem;
  font-weight: 700;
}
body .members_title .all-members-btn {
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 8px 16px;
  color: #ffffff;
  border-radius: 20px;
  text-decoration: none;
  float: right;
  margin-top: 20px;
  width: 180px;
  text-align: center;
  letter-spacing: 0.05rem;
  font-weight: 500;
  transition: 0.5s;
}
body .members_title .all-members-btn:hover {
  background: #ffffff;
  color: #a80000;
}

.members {
  padding: 120px 0 144px 0;
  max-width: 1080px;
  margin: 0 auto;
}
.members .members_title {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.members .members_title .members_title_text {
  width: 100%;
}
.members .members_title .members_title_text h2 {
  color: #333333;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  letter-spacing: 0.05rem;
}
.members .members_title .members_title_text h2::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 5px;
  background-color: #a80000;
  width: 100px;
  margin-top: 24px;
}
.members .members_title .members_title_text h2 span {
  color: #a80000;
}
.members .members_title .members_title_text p {
  color: #333333;
  font-size: 18px;
  margin-top: 24px;
  letter-spacing: 0.05rem;
  font-weight: 700;
}
.members .members_title .all-members-btn {
  display: inline-block;
  border: 1px solid #a80000;
  padding: 8px 16px;
  color: #a80000;
  border-radius: 20px;
  text-decoration: none;
  float: right;
  margin-top: 20px;
  width: 180px;
  text-align: center;
  letter-spacing: 0.05rem;
  font-weight: 500;
  transition: 0.5s;
}
.members .members_title .all-members-btn:hover {
  background: #a80000;
  color: #ffffff;
  transition: 0.5s;
}
.members .members-container {
  display: flex;
  gap: 52px;
  overflow-x: auto;
  padding-right: 0px;
}
.members .members-container::-webkit-scrollbar {
  width: 16px;
  height: 12px;
}
.members .members-container::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0);
}
.members .members-container::-webkit-scrollbar-thumb {
  background-color: rgba(168, 0, 0, 0);
  border-radius: 8px;
}
.members .member-card {
  min-width: 250px;
  background: #ffffff;
  border-radius: 10px;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
.members .member-card:hover .circle-btn {
  transform: scale(1.2);
}
.members .member-card img {
  width: 100%;
  border-radius: 8px;
}
.members .member-card .info {
  padding: 10px 0;
  text-align: left;
}
.members .member-card .info .role {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
.members .member-card .info .name.jp {
  font-weight: bold;
  font-size: 24px;
  color: #333333;
  letter-spacing: 0.05rem;
}
.members .member-card .info .name.jp span {
  color: #a80000;
}
.members .member-card .info .name.en {
  color: #a80000;
  font-size: 12px;
  letter-spacing: 0.05rem;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.members .member-card .circle-btn {
  position: absolute;
  font-size: 18px;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background-color: #a80000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.members img {
  width: 100%;
  border-radius: 8px;
}
.members .info {
  padding: 10px 0;
  text-align: left;
}
.members .info .role {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
.members .info .name.jp {
  font-weight: bold;
  font-size: 24px;
  color: #333333;
  letter-spacing: 0.05rem;
}
.members .info .name.jp span {
  color: #a80000;
}
.members .info .name.en {
  color: #a80000;
  font-size: 12px;
  letter-spacing: 0.05rem;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.members .circle-btn {
  position: absolute;
  font-size: 18px;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background-color: #a80000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.topic_a1 {
  padding: 120px 0 80px 0;
}

.topic_a2 {
  padding: 0px 0 144px 0;
}

.topic {
  background-color: #efefef;
  margin: 0 auto;
}
.topic .members_title {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.topic .members_title .members_title_text {
  width: 100%;
}
.topic .members_title .members_title_text h2 {
  color: #333333;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  letter-spacing: 0.05rem;
}
.topic .members_title .members_title_text h2::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 5px;
  background-color: #a80000;
  width: 100px;
  margin-top: 24px;
}
.topic .members_title .members_title_text h2 span {
  color: #a80000;
}
.topic .members_title .members_title_text p {
  color: #333333;
  font-size: 18px;
  margin-top: 24px;
  letter-spacing: 0.05rem;
  font-weight: 700;
}
.topic .members_title .all-members-btn {
  display: inline-block;
  border: 1px solid #a80000;
  padding: 8px 16px;
  color: #a80000;
  border-radius: 20px;
  text-decoration: none;
  float: right;
  margin-top: 20px;
  width: 180px;
  text-align: center;
  letter-spacing: 0.05rem;
  font-weight: 500;
  transition: 0.5s;
  background-color: #ffffff;
}
.topic .members_title .all-members-btn:hover {
  background: #a80000;
  color: #ffffff;
  transition: 0.5s;
}
.topic .members-container {
  margin: 0 auto;
  max-width: 1080px;
  display: flex;
  gap: 36px;
  overflow-x: auto;
  padding-right: 0px;
}
.topic .members-container::-webkit-scrollbar {
  width: 16px;
  height: 12px;
}
.topic .members-container::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0);
}
.topic .members-container::-webkit-scrollbar-thumb {
  background-color: rgba(168, 0, 0, 0);
  border-radius: 8px;
}
.topic .member-card {
  min-width: 250px;
  background: #ffffff;
  border-radius: 10px;
  text-align: center;
  position: relative;
  padding: 20px;
  transition: 0.5s;
}
.topic .member-card:hover {
  opacity: 0.5;
  transition: 0.5s;
}
.topic .member-card a {
  text-decoration: none;
}
.topic .member-card img {
  width: 100%;
  border-radius: 5px;
}
.topic .member-card .info {
  padding: 10px 0;
  text-align: left;
}
.topic .member-card .info .role {
  margin-top: 12px;
  font-size: 14px;
  color: #a80000;
  letter-spacing: 0.05rem;
  font-optical-sizing: auto;
  font-weight: 500;
}
.topic .member-card .info #event {
  color: #1d9200;
}
.topic .member-card .info #important {
  color: #a80000;
}
.topic .member-card .info #blog {
  color: #ff7300;
}
.topic .member-card .info #business {
  color: #1b0092;
}
.topic .member-card .info .name.jp {
  /* オーバーした要素を非表示にする*/
  overflow: hidden;
  text-overflow: ellipsis;
  line-break: anywhere;
  margin: 12px 0 12px 0;
  font-size: 18px;
  color: #333333;
  letter-spacing: 0.05rem;
  font-weight: 600;
  height: 56px;
}
.topic .member-card .info .name.en {
  color: #5c5c5c;
  font-size: 14px;
  letter-spacing: 0.05rem;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

.SNS {
  padding: 120px 0 144px 0;
  max-width: 1080px;
  margin: 0 auto;
}
.SNS .SNS_title {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.SNS .SNS_title .SNS_title_text {
  width: 100%;
}
.SNS .SNS_title .SNS_title_text h2 {
  color: #333333;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  letter-spacing: 0.05rem;
}
.SNS .SNS_title .SNS_title_text h2::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 5px;
  background-color: #a80000;
  width: 100px;
  margin-top: 24px;
}
.SNS .SNS_title .SNS_title_text h2 span {
  color: #a80000;
}
.SNS .SNS_title .SNS_title_text p {
  color: #333333;
  font-size: 18px;
  margin-top: 24px;
  letter-spacing: 0.05rem;
  font-weight: 700;
}
.SNS .sns-container {
  width: 100%;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  gap: 52px;
}
.SNS .sns-card {
  text-align: center;
}
.SNS .sns-card a {
  display: block;
  text-decoration: none;
  color: #333333;
}
.SNS .sns-card a img {
  height: auto;
  width: 100%;
  max-height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s;
}
.SNS .sns-card a img:hover {
  opacity: 0.5;
  transition: 0.5s;
}
.SNS .sns-card a .caption {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 0.05rem;
  margin-top: 8px;
  font-size: 16px;
  align-items: center;
  gap: 29px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  display: flex;
}
.SNS .sns-card a .caption img {
  width: 16px;
  height: 16px;
}

.contact {
  height: 100%;
  /*固定する背景*/
  /*スクロールするコンテンツ*/
  font-style: normal;
}
.contact div {
  box-sizing: border-box;
  color: #fff;
  font-size: 5rem;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.contact .parallax-bg {
  display: none;
  background-image: url("../img/parallax.webp");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 500px;
}
.contact .scrollbox {
  border-radius: 8px 8px 0 0;
  background-color: #a80000;
}
.contact .scrollbox .contact-section {
  text-decoration: none;
  padding: 80px 0;
  margin: 0 auto;
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.contact .scrollbox .contact-section .contact-content h2 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 52px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  letter-spacing: 0.05rem;
}
.contact .scrollbox .contact-section .contact-content p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
.contact .scrollbox .contact-section .read-more-button {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: sans-serif;
  justify-content: flex-end;
}
.contact .scrollbox .contact-section .read-more-button .circle {
  background-color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}
.contact .scrollbox .contact-section .read-more-button .circle .arrow {
  color: #a80000;
  font-size: 20px;
}
.contact .scrollbox .contact-section .read-more-button:hover .circle {
  transform: scale(1.2);
}

.RBA-login-container {
  width: 360px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  font-family: "Helvetica Neue", sans-serif;
}

.RBA-login-logo {
  text-align: center;
  margin-bottom: 28px;
}
.RBA-login-logo img {
  width: 100px;
  height: auto;
  display: inline-block;
}

.RBA-login-error {
  color: #ff4d4f;
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px;
}

.RBA-login-form {
  display: flex;
  flex-direction: column;
}

.RBA-login-label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #555555;
}

.RBA-login-input {
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 18px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.RBA-login-input:focus {
  border-color: #409eff;
  box-shadow: 0 0 6px rgba(64, 158, 255, 0.3);
  outline: none;
}

.RBA-login-input-error {
  border-color: #ff4d4f;
  box-shadow: 0 0 6px rgba(255, 77, 79, 0.3);
}

.RBA-login-button {
  margin-top: 16px;
  padding: 12px;
  font-size: 16px;
  background-color: #1f1f1f;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.RBA-login-button:hover {
  background-color: #2e2e2e;
}

@media screen and (max-width: 440px) {
  .errorpage {
    margin: 0;
    padding: 60px 0;
    text-align: center;
  }
  .errorpage h1 {
    font-family: serif;
    font-size: 40px;
  }
  .errorpage p {
    font-size: 14px;
    padding-bottom: 32px;
  }
  .errorpage .button {
    background-color: #000000;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    padding: 8px 40px;
    border-radius: 20px;
  }
  .RBA-login-container {
    width: 90%;
    padding: 30px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0);
  }
  .RBA-login-title {
    font-size: 24px;
  }
  .RBA-login-logo img {
    width: 80px;
  }
  .RBA-login-input {
    padding: 8px 10px;
    font-size: 16px;
  }
  .RBA-login-button {
    padding: 10px;
    font-size: 14px;
  }
  .RBA-login-error {
    font-size: 13px;
  }
  .RBA-login-button {
    margin-top: 24px;
    padding: 20px;
    font-size: 16px;
    background-color: #1f1f1f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .RBA-login-button:hover {
    background-color: #2e2e2e;
  }
}
.footer {
  display: none;
}

.footer_PC {
  padding: 44px 80px 44px 80px;
  font-size: 15px;
  color: #ffffff;
  background: #252525;
}
.footer_PC .footer__navi-heading {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
  text-align: center;
}
.footer_PC .footer__navi-heading a {
  color: #ffffff;
}
.footer_PC .footer__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.footer_PC .footer__logo img {
  width: 280px;
}
.footer_PC .footer__navi li {
  margin-bottom: 0.75rem;
  text-align: center;
  text-decoration: none;
}
.footer_PC .footer__navi li::marker {
  font-size: 0px;
}
.footer_PC .footer__address {
  margin-bottom: 2rem;
}
.footer_PC a {
  color: #d1d1d1;
  text-decoration: none;
}
.footer_PC a:hover {
  color: #af0000;
}
.footer_PC hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #999999;
}
.footer_PC address {
  font-style: normal;
}
.footer_PC address p {
  margin-bottom: 12px;
  font-size: 16px;
}
.footer_PC .grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem 1rem;
  margin-bottom: 1.5rem;
}
.footer_PC .footer__address a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer_PC .md-flex {
    display: flex;
  }
  .footer_PC .md-justify-between {
    justify-content: space-between;
  }
  .footer_PC .grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .footer_PC .footer__address a {
    text-decoration: none;
    pointer-events: none;
  }
}
@media (min-width: 1024px) {
  .footer_PC .lg-flex {
    display: flex;
  }
}/*# sourceMappingURL=style.css.map */