@charset "UTF-8";
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
  共通部品ここから
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font-size-normal);
  color: #1E1E1E;
  line-height: 1.8;
  min-width: 350px;
  -webkit-print-color-adjust: exact;
}

:root {
  --color-main-header-hover: white;
  --header-height: 81px;
  --font-size-normal-value: 16;
  --font-size-normal: calc(var(--font-size-normal-value) * 1px);
  --main-visual-height: 929px;
  --header-menu-hamburger-width: 65px;
  --whats-neorebase-margin-top: 140px;
  --color-link-blue: #337AB7;
  --color-black: #1E1E1E;
  --color-red: #D40000;
}
@media (min-width: 576px) {
  :root {
    --whats-neorebase-margin-top: 150px;
  }
}
@media (min-width: 768px) {
  :root {
    --whats-neorebase-margin-top: 300px;
  }
}
@media (min-width: 768px) {
  :root {
    --header-height: 88px;
    --font-size-normal-value: 20;
    --font-size-normal: calc(var(--font-size-normal-value) * 1px);
  }
}
@media (min-width: 1200px) {
  :root {
    --header-height: 88px;
  }
}

.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  padding-left: 0px;
  padding-right: 0px;
}
.container-fluid .row,
.container-lg .row,
.container-md .row,
.container-sm .row,
.container-xl .row {
  margin-left: 0;
  margin-right: 0;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1200px;
  width: 100%;
}
@media (min-width: 576px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    width: 500px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 90%;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
    width: 100%;
  }
}
@media (min-width: 1920px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
    width: 100%;
  }
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: calc(100% - 30px);
  width: 100%;
}
@media (min-width: 576px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    width: 500px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 90%;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
    width: 100%;
  }
}
@media (min-width: 1920px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
    width: 100%;
  }
}

.container {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1920px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

h1,
h2 {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  display: block;
}
a p,
a img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
a:not(.not-link) {
  cursor: pointer;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

a.link-blue {
  color: #337AB7;
  text-decoration: underline;
  display: inline-block;
}
a.link-blue:hover {
  opacity: 0.7;
}

p {
  margin-bottom: 0;
}

.table {
  margin-bottom: 0;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

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

.d-flex.common-gap {
  gap: 15px;
}
@media (min-width: 768px) {
  .d-flex.common-gap {
    gap: 30px;
  }
}

.my-margin {
  margin-bottom: 20px;
}

*:focus {
  outline: none;
}

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

.empty-display-none:empty {
  display: none !important;
}

.black-filter {
  position: relative;
}
.black-filter::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.hover-scale-img-wrapper {
  overflow: hidden;
}
.hover-scale-img-wrapper img {
  transition: 0.5s all;
}
@media (min-width: 768px) {
  .hover-scale-img-wrapper img:hover {
    transform: scale(1.2, 1.2);
  }
}
.hover-scale-img-wrapper.black-filter:hover::after {
  transition: 0.5s all;
}
@media (min-width: 768px) {
  .hover-scale-img-wrapper.black-filter:hover img {
    transform: scale(1.2, 1.2);
  }
}

.photo-shadow {
  filter: drop-shadow(3px 3px 3px gray);
}

.slider-button-show {
  display: block;
  opacity: 1;
}

.slider-button-hide {
  opacity: 0;
  pointer-events: none;
}

.point-3-reader-line-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.point-3-reader-line-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.point-3-reader-line-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.point-3-reader-line-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.bag-letters-wrapper {
  position: relative;
}

.explain {
  line-height: 2;
}

.hover-underline p {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(currentColor 0 0) 0 100%/var(--d, 0) 2px no-repeat;
  transition: 0.7s;
}
@media (min-width: 768px) {
  .hover-underline:hover {
    --d: 100%;
  }
}

.annotation {
  position: relative;
  margin-left: 16px;
  opacity: 0.8;
  font-size: 14px;
}
@media (min-width: 768px) {
  .annotation {
    margin-left: 20px;
    font-size: 18px;
  }
}
.annotation:before {
  position: absolute;
  top: 0;
  left: -16px;
  content: "※";
}
@media (min-width: 768px) {
  .annotation:before {
    left: -20px;
  }
}

.img-gold-ratio {
  position: relative;
}
.img-gold-ratio::before {
  content: "";
  display: block;
  padding-top: 61.804697157%;
}
.img-gold-ratio > img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.svg-wrapper {
  width: 14px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
  共通部品ここまで
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.common-contents {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .common-contents {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.common-contents .common-explain {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .common-contents .common-explain {
    margin-bottom: 50px;
  }
}

.common-title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 50px;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .common-title {
    margin-bottom: 100px;
  }
}
.common-title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  transform: skewX(-10deg);
  background-color: #1E1E1E;
}
.common-title h2 {
  position: relative;
  z-index: 20;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  color: #EBC658;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .common-title h2 {
    font-size: 48px;
  }
}
@media (min-width: 768px) {
  .common-title h2 {
    font-size: 56px;
  }
}
@media (min-width: 992px) {
  .common-title h2 {
    font-size: 72px;
  }
}

.common-button {
  width: 280px;
  height: 70px;
  margin: 0 auto;
}
.common-button .button-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #5B9FA6;
}
.common-button .button-inner p {
  color: white;
  font-size: 16px;
}
@media (min-width: 768px) {
  .common-button .button-inner p {
    font-size: 18px;
  }
}
.common-button .button-inner .button-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .common-button .button-inner:hover {
    background-color: white;
    border: 2px solid #5B9FA6;
  }
  .common-button .button-inner:hover p {
    color: #5B9FA6;
  }
}

.join-button {
  width: 200px;
  --height: 70px;
  height: var(--height);
  background-color: #81D935;
  border-radius: calc(var(--height) / 2);
  box-shadow: 0 10px 0 #4EB91A;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .join-button {
    width: 300px;
    --height: 100px;
  }
}
.join-button a {
  position: relative;
  height: 100%;
}
.join-button a p {
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 768px) {
  .join-button a p {
    font-size: 32px;
  }
}
.join-button a .svg-wrapper {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
@media (min-width: 768px) {
  .join-button a .svg-wrapper {
    width: 30px;
  }
}

.menu-modal .modal-content {
  background-color: #1E1E1E;
  color: white;
}
.menu-modal .modal-content .modal-body {
  padding-bottom: 40px;
}
.menu-modal .modal-content .modal-body .close-button {
  margin-bottom: 10px;
}
.menu-modal .modal-content .modal-body .close-button a {
  float: right;
}
.menu-modal .modal-content .modal-body .logo-image {
  width: 140px;
  margin: 0 auto;
  margin-bottom: 100px;
}
.menu-modal .modal-content .modal-body .modal-links a {
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
}

.page-fixed-hamburger-menu {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1010;
}
.page-fixed-hamburger-menu.show-button {
  display: block;
}
.page-fixed-hamburger-menu.hide-button {
  display: none;
}
.page-fixed-hamburger-menu .header-menu-hamburger {
  width: var(--header-menu-hamburger-width);
  height: var(--header-menu-hamburger-width);
  background-color: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.page-fixed-hamburger-menu .header-menu-hamburger a {
  padding: 10px;
  width: 100%;
  height: 100%;
}
.page-fixed-hamburger-menu .header-menu-hamburger a .button-inner {
  width: 100%;
  height: 100%;
}
.page-fixed-hamburger-menu .header-menu-hamburger a .button-inner img {
  height: 30px;
}
.page-fixed-hamburger-menu .header-menu-hamburger a .button-inner p {
  color: white;
  text-align: center;
  font-size: 12px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
  個別部品ここまで
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.main-visual {
  position: relative;
  height: var(--main-visual-height);
  background-color: #fefffd;
  overflow: hidden;
}
.main-visual .rhombus {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  opacity: 0.8;
  width: 100%;
  height: 100%;
}
.main-visual .rhombus img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .main-visual .rhombus {
    width: 1920px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1920px) {
  .main-visual .rhombus {
    width: 100%;
  }
}
.main-visual .background-slider-area {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  width: 150%;
  margin: 0 0 0 auto;
}
@media (min-width: 768px) {
  .main-visual .background-slider-area {
    transform: translateX(calc(-50% + 250px));
    width: 1340px;
  }
}
.main-visual .background-slider-area .background-slider {
  height: 100%;
}
.main-visual .background-slider-area .background-slider .slick-list,
.main-visual .background-slider-area .background-slider .slick-track {
  height: 100%;
}
.main-visual .background-slider-area .background-slider .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual .white-transparent-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 768px) {
  .main-visual .white-transparent-background {
    width: 50%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.65) 90%, rgba(255, 255, 255, 0) 100%);
  }
}
.main-visual .player-illust {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% - 522px));
  width: 482px;
}
.main-visual .main-visual-container {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 30;
  height: 100%;
  transform: translateX(-50%);
  --main-area-left-md: 166px;
}
@media (max-width: 575px) {
  .main-visual .main-visual-container {
    max-width: calc(100% - 20px);
  }
}
.main-visual .main-visual-container .main-visual-logo {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1E1E1E;
  width: 170px;
  height: 70px;
  border-radius: 0 0 10px 10px;
  gap: 5px;
  box-shadow: 0px 3px 3px rgba(30, 30, 30, 0.65);
}
@media (min-width: 768px) {
  .main-visual .main-visual-container .main-visual-logo {
    width: 188px;
    height: 99px;
  }
}
@media (min-width: 1200px) {
  .main-visual .main-visual-container .main-visual-logo {
    left: var(--main-area-left-md);
  }
}
.main-visual .main-visual-container .main-visual-logo .logo-text {
  font-size: 10px;
  font-weight: 600;
  color: #F4CC33;
}
.main-visual .main-visual-container .main-visual-logo .logo-image {
  width: 70%;
}
.main-visual .main-visual-container .main-visual-logo .logo-image img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-visual .main-visual-container .main-visual-text-area {
  position: absolute;
  top: 100px;
  left: 0;
  padding-top: 134px;
  height: 100%;
}
@media (min-width: 768px) {
  .main-visual .main-visual-container .main-visual-text-area {
    top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .main-visual .main-visual-container .main-visual-text-area {
    left: var(--main-area-left-md);
  }
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner h2 {
  margin-bottom: 32px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 2px 2px 2px white;
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner h2 .pro-player {
  position: relative;
  z-index: 30;
  font-size: 32px;
  background: linear-gradient(transparent 70%, #4EC22B 70%);
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner h2 .yaku,
.main-visual .main-visual-container .main-visual-text-area .text-area-inner h2 .mei {
  font-size: 72px;
}
@media (min-width: 576px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner h2 .yaku,
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner h2 .mei {
    font-size: 80px;
  }
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner h2 .number-40 {
  font-size: 110px;
}
@media (min-width: 576px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner h2 .number-40 {
    font-size: 120px;
  }
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner h2 .ga {
  font-size: 68px;
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner h2 .zaiseki {
  font-size: 98px;
}
@media (min-width: 576px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner h2 .zaiseki {
    font-size: 108px;
  }
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .points {
  width: min(100%, 650px);
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner .points {
    margin-bottom: 0;
  }
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .points .point-wrapper {
  position: relative;
  gap: 10px;
  padding: 5px 24px;
  margin: 0 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 8px;
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .points .point-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: skewX(-15deg);
  background-color: #1E1E1E;
  content: "";
  box-shadow: 0px 3px 3px rgba(30, 30, 30, 0.65);
}
@media (min-width: 576px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner .points .point-wrapper {
    padding: 10px 24px;
  }
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .points .point-wrapper .point-head-icon {
  width: 16px;
  height: 16px;
}
@media (min-width: 1200px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner .points .point-wrapper .point-head-icon {
    width: 23px;
    height: 23px;
  }
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .points .point-wrapper .point-head-icon img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .points .point-wrapper .point-text {
  color: white;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner .points .point-wrapper .point-text {
    line-height: 1;
  }
}
@media (min-width: 1200px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner .points .point-wrapper .point-text {
    font-size: 24px;
  }
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft {
  position: relative;
  --color: #FFD660;
  font-weight: 600;
  white-space: nowrap;
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-top {
  position: absolute;
  font-size: 30px;
  left: -2.6041666667vw;
  top: -1.3020833333vw;
}
@media (max-width: 575px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-top {
    left: 0px;
    top: -20px;
  }
}
@media (min-width: 768px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-top {
    left: 10px;
    top: 10px;
  }
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-top .bag-letter {
  color: var(--color);
  -webkit-text-stroke: 4px #1E1E1E;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-top .bag-letter span {
  color: var(--color);
  -webkit-text-stroke: 0px;
  position: absolute;
  top: 0;
  left: 0;
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-bottom .bag-letters {
  color: var(--color);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-text-stroke: 4px #1E1E1E;
  -moz-text-stroke: 4px #1E1E1E;
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-bottom .text-normal {
  color: var(--color);
  font-size: 7.8125vw;
}
@media (max-width: 575px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-bottom .text-normal {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-bottom .text-normal {
    font-size: 60px;
  }
}
.main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-bottom .text-large {
  color: var(--color);
  font-size: 11.71875vw;
}
@media (max-width: 575px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-bottom .text-large {
    font-size: 61px;
  }
}
@media (min-width: 768px) {
  .main-visual .main-visual-container .main-visual-text-area .text-area-inner .munber-of-draft .draft-bottom .text-large {
    font-size: 90px;
  }
}

.whats-neorebase {
  --background-height: 850px;
  position: relative;
  z-index: 30;
  height: calc(var(--background-height) - var(--whats-neorebase-margin-top));
  margin-top: calc(-1 * var(--whats-neorebase-margin-top));
}
@media (min-width: 768px) {
  .whats-neorebase {
    --background-height: 1050px;
  }
}
@media (min-width: 992px) {
  .whats-neorebase {
    --background-height: 1500px;
  }
}
@media (min-width: 1200px) {
  .whats-neorebase {
    --background-height: 1400px;
  }
}
.whats-neorebase .background-image-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--background-height);
  --tri-height: calc(100vw * 200 / 1920);
  -webkit-clip-path: polygon(0 var(--tri-height), 100% 0%, 100% calc(100% - var(--tri-height)), 0% 100%);
          clip-path: polygon(0 var(--tri-height), 100% 0%, 100% calc(100% - var(--tri-height)), 0% 100%);
  background-image: url("../images/background/baseball-space.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.whats-neorebase .common-contents {
  position: relative;
  color: white;
  padding-top: 100px;
}
@media (min-width: 768px) {
  .whats-neorebase .common-contents {
    padding-top: 150px;
  }
}
@media (min-width: 992px) {
  .whats-neorebase .common-contents {
    padding-top: 200px;
  }
}
@media (min-width: 1200px) {
  .whats-neorebase .common-contents {
    padding-top: 300px;
  }
}
.whats-neorebase .common-contents .text-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.whats-neorebase .common-contents .text-wrapper .text-backgound {
  background-color: red;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
}
.whats-neorebase .common-contents .text-wrapper .own-title {
  font-weight: 600;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .whats-neorebase .common-contents .text-wrapper .own-title {
    text-align: left;
  }
}
.whats-neorebase .common-contents .text-wrapper .own-title p,
.whats-neorebase .common-contents .text-wrapper .own-title h2 {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  text-shadow: 1px 4px 1px #001C3C;
}
.whats-neorebase .common-contents .text-wrapper .own-title .tilte-ja {
  font-size: 32px;
  line-height: 1;
}
@media (min-width: 768px) {
  .whats-neorebase .common-contents .text-wrapper .own-title .tilte-ja {
    font-size: 56px;
  }
}
@media (min-width: 992px) {
  .whats-neorebase .common-contents .text-wrapper .own-title .tilte-ja {
    font-size: 80px;
  }
}
.whats-neorebase .common-contents .text-wrapper .own-title .title-en {
  font-size: 56px;
  line-height: 1.25;
  display: inline-block;
}
@media (min-width: 768px) {
  .whats-neorebase .common-contents .text-wrapper .own-title .title-en {
    font-size: 80px;
  }
}
@media (min-width: 992px) {
  .whats-neorebase .common-contents .text-wrapper .own-title .title-en {
    font-size: 120px;
  }
}
.whats-neorebase .common-contents .text-wrapper .separate {
  width: min(100%, 804px);
  font-size: 32px;
  margin-bottom: 10px;
  text-shadow: 1px 2px 1px #001C3C;
}
@media (min-width: 768px) {
  .whats-neorebase .common-contents .text-wrapper .separate {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .whats-neorebase .common-contents .text-wrapper .separate {
    font-size: 56px;
  }
}
.whats-neorebase .common-contents .text-wrapper .separate::before, .whats-neorebase .common-contents .text-wrapper .separate::after {
  content: "";
  height: 3px;
  flex-grow: 1;
  background-color: white;
}
.whats-neorebase .common-contents .text-wrapper .separate::before {
  margin-right: 10px;
}
.whats-neorebase .common-contents .text-wrapper .separate::after {
  margin-left: 10px;
}
.whats-neorebase .common-contents .text-wrapper .neorebase-explain {
  width: min(100%, 938px);
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
  text-shadow: 1px 2px 1px #001C3C;
}
@media (min-width: 768px) {
  .whats-neorebase .common-contents .text-wrapper .neorebase-explain {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .whats-neorebase .common-contents .text-wrapper .neorebase-explain {
    font-size: 32px;
  }
}
.whats-neorebase .common-contents .member-photo {
  width: min(100%, 531px);
}

.online-salon {
  position: relative;
  background-color: #E4E4E4;
  z-index: 20;
}
.online-salon .header-background-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  margin-top: 0;
  background-image: url("../images/background/balls_mono.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 768px) {
  .online-salon .header-background-area {
    height: 600px;
  }
}
@media (min-width: 768px) {
  .online-salon .header-background-area {
    height: 800px;
  }
}
@media (min-width: 1200px) {
  .online-salon .header-background-area {
    height: 1028px;
  }
}
.online-salon .header-background-area .header-background-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 120, 167, 0.27);
}
.online-salon .common-contents {
  padding-top: 200px;
}
@media (min-width: 768px) {
  .online-salon .common-contents {
    padding-top: 350px;
  }
}
@media (min-width: 1200px) {
  .online-salon .common-contents {
    padding-top: 400px;
  }
}
.online-salon .header-area {
  position: relative;
  z-index: 20;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.online-salon .header-area .title-comment {
  margin-bottom: 10px;
}
.online-salon .header-area .title-comment p {
  text-shadow: 2px 2px 2px white;
}
.online-salon .header-area .title-comment p.header-top {
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 576px) {
  .online-salon .header-area .title-comment p.header-top {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .online-salon .header-area .title-comment p.header-top {
    font-size: 32px;
  }
}
.online-salon .header-area .title-comment p.header-bottom .salon-name {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 768px) {
  .online-salon .header-area .title-comment p.header-bottom .salon-name {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .online-salon .header-area .title-comment p.header-bottom .salon-name {
    font-size: 56px;
  }
}
.online-salon .header-area .title-comment p.header-bottom .salon-do {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .online-salon .header-area .title-comment p.header-bottom .salon-do {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .online-salon .header-area .title-comment p.header-bottom .salon-do {
    font-size: 32px;
  }
}
.online-salon .salon-features .salon-feature {
  margin-bottom: 120px;
  --side-margin: auto;
  margin-left: var(--side-margin);
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature {
    --side-margin: 30px;
    margin-bottom: 160px;
  }
}
@media (min-width: 1200px) {
  .online-salon .salon-features .salon-feature {
    --side-margin: 140px;
  }
}
.online-salon .salon-features .salon-feature.feature-right {
  margin-left: auto;
  margin-right: var(--side-margin);
}
.online-salon .salon-features .salon-feature .salon-feature-inner {
  position: relative;
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-back-color {
  --side-position: 50px;
  position: absolute;
  bottom: -30px;
  left: var(--side-position);
  width: calc(100% - var(--side-position));
  height: 90%;
  z-index: -1;
  border-radius: 20px;
  background-color: transparent;
  background-image: linear-gradient(90deg, rgba(1, 137, 185, 0.5) 40%, transparent 90%);
}
@media (min-width: 576px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-back-color {
    bottom: -50px;
  }
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-back-color {
    bottom: -80px;
    background-image: linear-gradient(90deg, rgba(1, 137, 185, 0.5) 40%, transparent 70%);
  }
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-back-color.feature-right {
  background-image: linear-gradient(-90deg, rgba(1, 137, 185, 0.5) 40%, transparent 90%);
  left: auto;
  right: var(--side-position);
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-back-color.feature-right {
    background-image: linear-gradient(-90deg, rgba(1, 137, 185, 0.5) 40%, transparent 70%);
  }
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area {
    width: 76%;
  }
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area.feature-right {
    margin: 0 0 0 auto;
  }
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .number-tab {
  position: relative;
  background-color: #fefffd;
  width: 167px;
  height: 43px;
  border-radius: 20px 20px 0 0;
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .number-tab.feature-right {
  margin: 0 0 0 auto;
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .number-tab p {
  position: absolute;
  top: -40px;
  right: 30px;
  font-family: "Noto Serif", serif;
  font-size: 100px;
  line-height: 1;
  color: #005D88;
  text-shadow: 2px 2px 2px white;
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .number-tab p {
    top: -50px;
    right: 10px;
    font-size: 120px;
  }
}
@media (min-width: 992px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .number-tab p {
    top: -50px;
    right: -5px;
    font-size: 150px;
  }
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content {
  background-color: #fefffd;
  padding: 32px 24px 24px 24px;
  border-radius: 0 20px 0 20px;
  box-shadow: 0px 3px 6px rgba(78, 113, 114, 0.95);
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content {
    padding: 50px 32% 25px 25px;
  }
}
@media (min-width: 992px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content {
    padding: 70px 32% 35px 45px;
  }
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content.feature-right {
  border-radius: 20px 0 20px 0;
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content.feature-right {
    padding: 50px 25px 25px 32%;
  }
}
@media (min-width: 992px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content.feature-right {
    padding: 70px 45px 35px 32%;
  }
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content .feature-title-ja {
  margin-bottom: 10px;
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content .feature-title-ja p {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content .feature-title-ja p {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content .feature-title-ja p {
    font-size: 40px;
  }
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content .feature-title-en {
  width: 100%;
  margin-bottom: 10px;
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content .feature-title-en p {
  color: #07A0D0;
  font-size: 18px;
  font-weight: 600;
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content .feature-title-en::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #07A0D0;
  margin-left: 10px;
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content .feature-expain {
  font-size: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content .feature-expain {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content .photo-area-in-text {
  width: 110%;
  aspect-ratio: 2/1;
  margin-left: -10%;
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-text-area .text-content .photo-area-in-text.feature-right {
  margin-left: auto;
  margin-right: -10%;
}
.online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-photo-area {
  width: 100%;
  aspect-ratio: 2/1;
  filter: drop-shadow(0px 3px 6px rgba(78, 113, 114, 0.95));
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-photo-area {
    position: absolute;
    bottom: -46px;
    right: 0;
    width: 50%;
    height: 90%;
  }
}
@media (min-width: 768px) {
  .online-salon .salon-features .salon-feature .salon-feature-inner .salon-feature-photo-area.feature-right {
    left: 0;
    right: auto;
  }
}
.online-salon .salon-feature-photo-area-inner {
  -webkit-clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  width: 100%;
  height: 100%;
  background-image: var(--feature-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.online-salon .salon-feature-photo-area-inner.feature-right {
  -webkit-clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.guidance {
  position: relative;
  background-image: url("../images/background/guidance-back.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.guidance:not(:last-child) {
  margin-bottom: 20px;
}
.guidance .guidance-details .guidance-detail {
  position: relative;
  padding: 24px;
  background-color: #001C3C;
}
.guidance .guidance-details .guidance-detail:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .guidance .guidance-details .guidance-detail:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .guidance .guidance-details .guidance-detail:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .guidance .guidance-details .guidance-detail {
    padding: 32px;
  }
}
@media (min-width: 992px) {
  .guidance .guidance-details .guidance-detail {
    padding: 65px;
  }
}
.guidance .guidance-details .guidance-detail .guidance-title {
  gap: 20px;
  margin-bottom: 10px;
}
.guidance .guidance-details .guidance-detail .guidance-title .title-text {
  color: white;
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .guidance .guidance-details .guidance-detail .guidance-title .title-text {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .guidance .guidance-details .guidance-detail .guidance-title .title-text {
    font-size: 56px;
  }
}
@media (min-width: 992px) {
  .guidance .guidance-details .guidance-detail .guidance-title .title-text {
    font-size: 60px;
  }
}
.guidance .guidance-details .guidance-detail .guidance-overview {
  color: white;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  text-align: left;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .guidance .guidance-details .guidance-detail .guidance-overview {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .guidance .guidance-details .guidance-detail .guidance-overview {
    font-size: 32px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .guidance .guidance-details .guidance-detail .guidance-overview {
    font-size: 38px;
  }
}
.guidance .guidance-details .guidance-detail .guidance-photo {
  aspect-ratio: 1060/480;
  --corner-width: 5px;
  -webkit-clip-path: polygon(90% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(90% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
  background-image: var(--guidance-bg-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .guidance .guidance-details .guidance-detail .guidance-photo {
    margin-bottom: 0;
  }
}
.guidance .guidance-details .guidance-detail .show-detail-button {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1200px) {
  .guidance .guidance-details .guidance-detail .show-detail-button {
    margin: 0;
  }
}
.guidance .guidance-details .guidance-detail .show-detail-button a {
  position: relative;
  background-color: #fefffd;
  width: 150px;
  height: 50px;
}
@media (min-width: 1200px) {
  .guidance .guidance-details .guidance-detail .show-detail-button a {
    width: 300px;
    height: 100px;
  }
}
.guidance .guidance-details .guidance-detail .show-detail-button a .button-text {
  font-size: 16px;
}
@media (min-width: 1200px) {
  .guidance .guidance-details .guidance-detail .show-detail-button a .button-text {
    font-size: 24px;
  }
}
.guidance .guidance-details .guidance-detail .show-detail-button a .arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 12px;
}
@media (min-width: 1200px) {
  .guidance .guidance-details .guidance-detail .show-detail-button a .arrow {
    font-size: 16px;
    right: 50px;
  }
}
@media (min-width: 768px) {
  .guidance .guidance-details .guidance-detail .show-detail-button a:hover {
    opacity: 0.7;
  }
}

.medias {
  position: relative;
  background-image: url("../images/background/baseball-ground.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
}
.medias .introduction-media {
  width: min(100%, 1050px);
  padding: 30px;
  background-color: #F2F1F1;
  border: 3px solid #005D88;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .medias .introduction-media {
    padding: 50px 110px;
  }
}
.medias .introduction-media .introduction-media-header {
  --font-size: 24px;
  font-size: var(--font-size);
  letter-spacing: calc(100 * var(--font-size) / 1000);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .medias .introduction-media .introduction-media-header {
    --font-size: 48px;
    margin-bottom: 30px;
  }
}
.medias .introduction-media .introduction-media-header .small-text {
  line-height: 1;
  font-size: 16px;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .medias .introduction-media .introduction-media-header .small-text {
    font-size: 24px;
  }
}
.medias .introduction-media .article {
  background-color: #fefffd;
  padding: 15px;
  border: 1px solid #707070;
}
.medias .introduction-media .article:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .medias .introduction-media .article {
    padding: 30px;
  }
}
.medias .introduction-media .article .article-inner {
  gap: 27px;
}
.medias .introduction-media .article .article-inner .article-image {
  aspect-ratio: 1618/1000;
}
@media (min-width: 768px) {
  .medias .introduction-media .article .article-inner .article-image {
    width: 168px;
    aspect-ratio: 1/1;
  }
}
.medias .introduction-media .article .article-inner .article-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.medias .introduction-media .article .article-inner .article-content {
  flex: 1;
  gap: 10px;
}
@media (min-width: 768px) {
  .medias .introduction-media .article .article-inner .article-content {
    gap: 0;
  }
}
.medias .introduction-media .article .article-inner .article-content .article-title {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .medias .introduction-media .article .article-inner .article-content .article-title {
    font-size: 24px;
  }
}
.medias .introduction-media .article .article-inner .article-content .article-bottom {
  gap: 32px;
}
.medias .introduction-media .article .article-inner .article-content .article-bottom .article-company-logo {
  flex: 1;
  height: 30px;
  background-color: #fefffd;
}
@media (min-width: 768px) {
  .medias .introduction-media .article .article-inner .article-content .article-bottom .article-company-logo {
    height: 40px;
  }
}
.medias .introduction-media .article .article-inner .article-content .article-bottom .article-company-logo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.medias .introduction-media .article .article-inner .article-content .article-bottom .read-article-button {
  padding: 5px 10px;
  border: 2px solid #1E1E1E;
  border-radius: 10px;
  background-color: #fefffd;
}
@media (min-width: 768px) {
  .medias .introduction-media .article .article-inner .article-content .article-bottom .read-article-button {
    padding: 5px 50px;
    border-width: 3px;
  }
}

.how-to-join {
  position: relative;
  background-color: #F3F8FB;
}
.how-to-join .sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #005D88;
  text-align: center;
  margin-bottom: 37px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .how-to-join .sub-title {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .how-to-join .sub-title {
    font-size: 48px;
  }
}
.how-to-join .join-method {
  font-size: 16px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .how-to-join .join-method {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .how-to-join .join-method {
    font-size: 32px;
    text-align: center;
  }
}
.how-to-join .join-method-flow {
  gap: 25px;
  margin-bottom: 50px;
}
.how-to-join .join-method-flow .step {
  width: 270px;
  gap: 24px;
}
@media (min-width: 768px) {
  .how-to-join .join-method-flow .step {
    gap: 37px;
  }
}
.how-to-join .join-method-flow .step .step-image {
  position: relative;
}
.how-to-join .join-method-flow .step .step-image .finger {
  position: absolute;
  width: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.how-to-join .join-method-flow .step .step-image .finger.step-1 {
  bottom: 23%;
}
.how-to-join .join-method-flow .step .step-image .finger.step-3 {
  bottom: 30%;
}
.how-to-join .join-method-flow .step .step-title {
  font-size: 24px;
  color: #07A0D0;
  font-weight: 600;
  text-align: center;
}
.how-to-join .join-method-flow .step .step-button .join-button {
  width: 90%;
  height: 60px;
}
@media (min-width: 576px) {
  .how-to-join .join-method-flow .step .step-button .join-button {
    width: 100%;
    height: 70px;
  }
}
.how-to-join .join-method-flow .step .step-button .join-button a p {
  font-size: 20px;
}
.how-to-join .join-method-flow .step .step-button .join-button a .svg-wrapper {
  right: 18px;
}
@media (min-width: 768px) {
  .how-to-join .join-method-flow .step .step-button .join-button a .svg-wrapper {
    right: 13px;
  }
}
.how-to-join .join-method-flow .arrow-triangle {
  width: 47px;
  height: 56px;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: #07A0D0;
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .how-to-join .join-method-flow .arrow-triangle {
    margin-top: 250px;
    transform: none;
  }
}

.voices {
  position: relative;
  z-index: 10;
  background-color: #001C3C;
}
.voices .mono-uchida-background {
  position: absolute;
  top: 200px;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100vh;
  background-image: url("../images/photo/uchida-mono.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom 0 left -50px;
}
.voices .voice-list {
  width: min(940px, 100%);
  margin: 0 0 0 auto;
}
.voices .voice-list .voice {
  color: white;
}
.voices .voice-list .voice:not(:last-child) {
  margin-bottom: 72px;
}
.voices .voice-list .voice .voice-header {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .voices .voice-list .voice .voice-header {
    gap: 20px;
  }
}
.voices .voice-list .voice .voice-header .voice-header-title {
  gap: 8px;
  line-height: 1;
}
@media (min-width: 768px) {
  .voices .voice-list .voice .voice-header .voice-header-title {
    gap: 14px;
  }
}
.voices .voice-list .voice .voice-header .voice-header-title .member {
  font-size: 20px;
}
@media (min-width: 768px) {
  .voices .voice-list .voice .voice-header .voice-header-title .member {
    font-size: 32px;
  }
}
.voices .voice-list .voice .voice-header .voice-header-title .number {
  font-size: 48px;
  font-family: "Noto Serif", serif;
}
@media (min-width: 768px) {
  .voices .voice-list .voice .voice-header .voice-header-title .number {
    font-size: 56px;
  }
}
.voices .voice-list .voice .voice-header .voice-header-position {
  font-size: 30px;
  flex: 1;
}
@media (min-width: 768px) {
  .voices .voice-list .voice .voice-header .voice-header-position {
    font-size: 32px;
  }
}
.voices .voice-list .voice .voice-content {
  gap: 30px;
}
.voices .voice-list .voice .voice-content .member-icon {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
}
.voices .voice-list .voice .voice-content .member-icon img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voices .voice-list .voice .voice-content .voice-text {
  flex: 1;
  gap: 25px;
}
.voices .voice-list .voice .voice-content .voice-text .voice-text-header {
  font-size: 26px;
  font-weight: 600;
}
.voices .voice-list .voice .voice-content .voice-text .voice-text-content {
  font-size: 16px;
  line-height: 2;
}
@media (min-width: 768px) {
  .voices .voice-list .voice .voice-content .voice-text .voice-text-content {
    font-size: 18px;
  }
}

.member-profile {
  background-color: #292929;
  background-image: linear-gradient(90deg, #292929 0%, #757575 50%, #292929 100%);
}
.member-profile .members .member {
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}
@media (min-width: 1200px) {
  .member-profile .members .member {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.member-profile .members .member:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .member-profile .members .member:not(:last-child) {
    margin-bottom: 120px;
  }
}
.member-profile .members .member .mono-background {
  position: absolute;
  top: 0;
  left: 100px;
  width: 80%;
  height: 100%;
  z-index: -10;
  overflow: hidden;
  opacity: 0.8;
}
.member-profile .members .member .mono-background.profile-left {
  left: auto;
  right: 100px;
}
.member-profile .members .member .member-info {
  width: min(1447px, 100%);
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .member-profile .members .member .member-info {
    gap: 32px;
  }
}
.member-profile .members .member .member-info .color-photo {
  position: relative;
  z-index: -1;
  flex: 1;
  width: min(650px, 90%);
}
@media (min-width: 1200px) {
  .member-profile .members .member .member-info .color-photo.profile-left {
    order: 20;
  }
}
.member-profile .members .member .member-info .color-photo .photo-name {
  position: absolute;
  top: 20px;
  left: 40px;
  color: white;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-shadow: 1px 1px 1px #1E1E1E;
}
.member-profile .members .member .member-info .color-photo .photo-name.profile-left {
  left: auto;
  right: 40px;
}
@media (min-width: 768px) {
  .member-profile .members .member .member-info .color-photo .photo-name {
    top: auto;
    bottom: 80px;
  }
}
.member-profile .members .member .member-info .color-photo .photo-name .name-en {
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 576px) {
  .member-profile .members .member .member-info .color-photo .photo-name .name-en {
    font-size: 32px;
  }
}
.member-profile .members .member .member-info .color-photo .photo-name .name-ja {
  font-size: 32px;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .member-profile .members .member .member-info .color-photo .photo-name .name-ja {
    font-size: 64px;
  }
}
.member-profile .members .member .member-info .color-photo .color-photo-wrapper {
  width: min(300px, 90%);
  margin: 0 0 0 auto;
}
.member-profile .members .member .member-info .color-photo .color-photo-wrapper.profile-left {
  margin: 0 auto 0 0;
}
@media (min-width: 1200px) {
  .member-profile .members .member .member-info .color-photo .color-photo-wrapper {
    width: min(662px, 90%);
  }
}
.member-profile .members .member .member-info .profile-text-box {
  color: white;
  background-color: rgba(30, 30, 30, 0.66);
  padding: 20px;
  width: min(753px, 90%);
  margin-top: -50px;
}
@media (min-width: 1200px) {
  .member-profile .members .member .member-info .profile-text-box.profile-left {
    order: 10;
  }
}
@media (min-width: 1200px) {
  .member-profile .members .member .member-info .profile-text-box {
    width: min(753px, 100%);
    padding: 50px 70px;
    margin-top: 0;
  }
}
.member-profile .members .member .member-info .profile-text-box .name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-bottom: 34px;
}
.member-profile .members .member .member-info .profile-text-box .name .name-en {
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 768px) {
  .member-profile .members .member .member-info .profile-text-box .name .name-en {
    font-size: 24px;
  }
}
.member-profile .members .member .member-info .profile-text-box .name .name-ja {
  font-size: 32px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .member-profile .members .member .member-info .profile-text-box .name .name-ja {
    font-size: 64px;
  }
}
.member-profile .members .member .member-info .profile-text-box .strength {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3913043478;
}
@media (min-width: 768px) {
  .member-profile .members .member .member-info .profile-text-box .strength {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .member-profile .members .member .member-info .profile-text-box .strength {
    font-size: 46px;
  }
}
.member-profile .members .member .member-info .profile-text-box .strength .color-red {
  color: #D40000;
}
.member-profile .members .member .member-info .profile-text-box .profile-detail {
  margin-top: 30px;
}
.member-profile .members .member .member-info .profile-text-box .profile-detail .box-separate p {
  color: #07A0D0;
  font-weight: 600;
}
@media (min-width: 768px) {
  .member-profile .members .member .member-info .profile-text-box .profile-detail .box-separate p {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .member-profile .members .member .member-info .profile-text-box .profile-detail .box-separate p {
    font-size: 48px;
  }
}
.member-profile .members .member .member-info .profile-text-box .profile-detail .box-separate::before, .member-profile .members .member .member-info .profile-text-box .profile-detail .box-separate::after {
  content: "";
  height: 5px;
  background-color: #07A0D0;
}
.member-profile .members .member .member-info .profile-text-box .profile-detail .box-separate::before {
  width: 63px;
  margin-right: 10px;
}
.member-profile .members .member .member-info .profile-text-box .profile-detail .box-separate::after {
  flex: 1;
  margin-left: 10px;
}
.member-profile .members .member .member-info .profile-text-box .profile-detail p {
  font-size: 16px;
}
@media (min-width: 768px) {
  .member-profile .members .member .member-info .profile-text-box .profile-detail p {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .member-profile .members .member .member-info .profile-text-box .profile-detail p {
    font-size: 24px;
  }
}
.member-profile .members .member .member-info .profile-text-box .profile-detail ul li {
  --li-margin: 30px;
  --li-margin-md: 30px;
  position: relative;
  margin-left: var(--li-margin);
}
@media (min-width: 768px) {
  .member-profile .members .member .member-info .profile-text-box .profile-detail ul li {
    margin-left: var(--li-margin-md);
  }
}
.member-profile .members .member .member-info .profile-text-box .profile-detail ul li:before {
  position: absolute;
  top: 0;
  left: calc(-1 * var(--li-margin));
  content: "・";
}
@media (min-width: 768px) {
  .member-profile .members .member .member-info .profile-text-box .profile-detail ul li:before {
    left: calc(-1 * var(--li-margin-md));
  }
}

.campany-information {
  position: relative;
  background-image: url("../images/background/balls_mono.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 10;
  color: white;
  font-family: "Noto Serif JP", serif;
  text-shadow: 2px 2px 2px #12526D;
}
.campany-information .background-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 120, 167, 0.27);
  z-index: -10;
}
.campany-information .content-header {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .campany-information .content-header {
    font-size: 72px;
    margin-bottom: 85px;
  }
}
.campany-information .content-header p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.campany-information .company-info-table {
  font-size: 20px;
  width: min(100%, 400px);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .campany-information .company-info-table {
    font-size: 32px;
    width: auto;
    margin: 0;
  }
}
.campany-information .company-info-table .info-table-row {
  gap: 10px;
}
@media (min-width: 768px) {
  .campany-information .company-info-table .info-table-row {
    gap: 23px;
  }
}
.campany-information .company-info-table .info-table-row:not(:last-child) {
  margin-bottom: 12px;
}
@media (min-width: 576px) {
  .campany-information .company-info-table .info-table-row:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) {
  .campany-information .company-info-table .info-table-row:not(:last-child) {
    margin-bottom: 32px;
  }
}
.campany-information .company-info-table .info-table-row .info-table-header {
  width: 100px;
}
@media (min-width: 576px) {
  .campany-information .company-info-table .info-table-row .info-table-header {
    width: 120px;
  }
}
@media (min-width: 768px) {
  .campany-information .company-info-table .info-table-row .info-table-header {
    width: 230px;
  }
}
.campany-information .company-info-table .info-table-row .info-table-content {
  flex: 1;
}
@media (max-width: 767px) {
  .campany-information .company-info-table .info-table-row .info-table-content {
    padding-left: 30px;
  }
}

.main-footer .footer-top {
  background-color: #001C3C;
  color: white;
  padding: 40px;
}
@media (min-width: 768px) {
  .main-footer .footer-top {
    padding: 60px;
  }
}
.main-footer .footer-top .footer-logo {
  width: 250px;
  margin: 0 auto;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .main-footer .footer-top .footer-logo {
    width: 268px;
    margin: 0;
    margin-bottom: 60px;
  }
}
.main-footer .footer-top .footer-logo .logo-text {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #F4CC33;
  margin-bottom: 8px;
}
.main-footer .footer-top .footer-top-middle {
  gap: 40px;
  width: min(100%, 850px);
  margin: 0 auto;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .main-footer .footer-top .footer-top-middle .footer-menu {
    gap: 80px;
  }
}
.main-footer .footer-top .footer-top-middle .footer-menu .menu-col a {
  margin-bottom: 16px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .main-footer .footer-top .footer-top-middle .footer-menu .menu-col a {
    margin-bottom: 22px;
  }
}
.main-footer .footer-top .sns-area .sns-links {
  gap: 10px;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .main-footer .footer-top .sns-area .sns-links {
    gap: 25px;
  }
}
.main-footer .footer-top .sns-area .sns-links a .svg-wrapper {
  width: 40px;
  height: 40px;
}
@media (min-width: 992px) {
  .main-footer .footer-top .sns-area .sns-links a .svg-wrapper {
    width: 61px;
    height: 61px;
  }
}
.main-footer .footer-top .sns-area .sns-links a .svg-wrapper img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-footer .footer-top .sns-area .sns-comment p {
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .main-footer .footer-top .sns-area .sns-comment p {
    font-size: 24px;
  }
}
.main-footer .footer-bottom {
  background-color: #5E5E5E;
  color: white;
  height: 56px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .main-footer .footer-bottom {
    height: 68px;
    font-size: 20px;
  }
}

.return-top-button {
  position: fixed;
  z-index: 100;
  right: 15px;
  bottom: 20px;
  width: min(80px, 10.4166666667vw);
}
.return-top-button img {
  width: 100%;
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */