:root {
  --ns-navy: #012e4c;
  --ns-teal: #56aea7;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--ns-navy);
  min-width: 320px;
}
button {
  font-family: inherit;
}
.sp_br {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_br {
    display: block;
  }
}
.logo-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 11;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #fff;
  padding-top: calc(50vh - 140px);
  animation: move-logo-container 0.6s ease-out 0.3s forwards,
    fadeout 0.4s ease-out 0.9s forwards;
}
@media screen and (max-width: 767px) {
  .logo-fixed {
    animation: move-logo-container-sp 0.6s ease-out 0.3s forwards,
      fadeout 0.4s ease-out 0.9s forwards;
  }
}
.logo-fixed img {
  width: 280px;
  height: 280px;
  animation: shrink-img 0.6s ease-out 0.3s forwards;
}
@keyframes shrink-img {
  0% {
    width: 280px;
    height: 280px;
  }
  100% {
    width: 120px;
    height: 120px;
  }
}
@keyframes move-logo-container {
  0% {
    padding-top: calc(50vh - 140px);
  }
  100% {
    padding-top: 26px;
  }
}
@keyframes move-logo-container-sp {
  0% {
    padding-top: calc(50vh - 140px);
  }
  100% {
    padding-top: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
.logo {
  width: 120px;
  padding: 26px 0 0 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .logo {
    padding: 0;
  }
}
.hero {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.hero-title,
.hero-sub,
.hero-photo,
.content {
  opacity: 0;
  transform: translateY(40px);
  animation: fade-up 0.4s ease-out forwards;
}
.hero-title {
  font-family: "Rubik";
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 30px 0;
  animation-delay: 1.2s;
}
@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 40px;
    margin: 0 0 12px 0;
  }
}
.accent {
  color: var(--ns-teal);
}
.hero-sub {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.7;
  margin: 0 0 60px 0;
  animation-delay: 1.6s;
}
@media screen and (max-width: 767px) {
  .hero-sub {
    font-size: 15px;
    padding: 0 30px;
    margin: 0 0 32px 0;
  }
}
.hero-photo {
  animation-delay: 2s;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 767px) {
  .hero-photo {
    position: static;
  }
}
.hero-photo img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: bottom;
}
@media screen and (max-width: 767px) {
  .hero-photo img {
    height: auto;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.content {
  background: #ffffffe5;
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(40px);
  animation-delay: 2.4s;
}
.content-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 160px 28px 160px 28px;
}
@media screen and (max-width: 767px) {
  .content-inner {
    padding: 40px 28px;
  }
}
.content-main-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.9;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 767px) {
  .content-main-title {
    font-size: 18px;
    margin: 0 0 28px 0;
  }
}
.content-main {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.8;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 767px) {
  .content-main {
    font-size: 15px;
  }
}
.content-main a {
  color: var(--ns-navy);
  text-decoration: underline;
}
.content-main a:hover {
  text-decoration: none;
}
.content-name {
  text-align: right;
  line-height: 48px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .content-name {
    font-size: 15px;
    line-height: 26px;
  }
}
.access-images {
  width: 100%;
  overflow: hidden;
}
.access-images-inner {
  display: flex;
  gap: 60px;
  animation: access-loop 52s linear infinite;
}
@media screen and (max-width: 767px) {
  .access-images-inner {
    gap: 24px;
  }
}
@keyframes access-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--access-loop-width)));
  }
}
.access-images div {
  min-width: 700px;
}
.access-images div img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .access-images-inner {
    gap: 24px;
  }
  .access-images div {
    min-width: 282px;
  }
}
.access-info {
  max-width: 1080px;
  margin: 60px auto 0 auto;
  padding: 0 28px;
}
@media screen and (max-width: 767px) {
  .access-info {
    margin: 40px auto 0 auto;
  }
}
.access-info-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5;
  margin: 0 0 23px 0;
}
@media screen and (max-width: 767px) {
  .access-info-title {
    font-size: 24px;
    margin: 0 0 20px 0;
  }
}
.access-info-text {
  display: flex;
  gap: 160px;
}
@media screen and (max-width: 767px) {
  .access-info-text {
    flex-flow: column;
    justify-content: flex-start;
    gap: 28px;
  }
}
.access-info-text p {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .access-info-text p {
    font-size: 15px;
  }
}
.access-info-text p a {
  text-decoration: underline;
  color: var(--ns-teal);
}
.access-info-text p a:hover {
  text-decoration: none;
}
.access-info-text p:nth-child(1) {
  min-width: 396px;
}
@media screen and (max-width: 767px) {
  .access-info-text p:nth-child(1) {
    min-width: initial;
  }
}
.support {
  padding: 160px 0 80px 0;
}
@media screen and (max-width: 767px) {
  .support {
    padding: 100px 0;
  }
}
.support-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 767px) {
  .support-title {
    font-size: 24px;
    margin: 0 0 28px 0;
  }
}
.support-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  text-align: center;
  margin: 0 0 80px 0;
}
@media screen and (max-width: 767px) {
  .support-text {
    font-size: 15px;
    margin: 0 0 28px 0;
  }
}
.support-head {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 767px) {
  .support-head {
    font-size: 20px;
    margin: 0 0 20px 0;
  }
}
.companies {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 40px;
  margin: 0 28px 80px 28px;
}
@media screen and (max-width: 767px) {
  .companies {
    gap: 20px;
    margin: 0 auto 60px auto;
    max-width: 470px;
    padding: 0 20px;
  }
}
.company-card {
  border: none;
  cursor: pointer;
  flex: 1;
  background: none;
  border-radius: 12px;
}
.company-card:hover {
  box-shadow: 0px 0px 20px 0px #00000026;
}
.company-card img.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .company-card img.pc {
    display: none;
  }
  .company-card img.sp {
    display: block;
  }
}
.company-1 {
  display: flex;
  justify-content: center;
  width: 100%;
}
.company-1 .company-card {
  max-width: 400px;
}
.company-2 {
  max-width: 1080px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .company-2 {
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
  }
}
.company-2 .company-card {
  max-width: 333px;
  min-width: 333px;
}
@media screen and (max-width: 767px) {
  .company-2 .company-card {
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.company-3 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
}
@media screen and (max-width: 767px) {
  .company-3 {
    gap: 12px;
    margin: 0;
  }
}
.company-3 .company-card {
  max-width: 270px;
  min-width: 270px;
}
@media screen and (max-width: 767px) {
  .company-3 .company-card {
    min-width: calc(100% / 3 - 8px);
    max-width: calc(100% / 3 - 8px);
  }
}
.slide-cards {
  width: 100%;
  overflow: hidden;
  flex-flow: column;
  display: flex;
  padding: 16px 0 0 0;
}
@media screen and (max-width: 767px) {
  .slide-cards {
    padding: 12px 0 0 0;
  }
}
.slide-row {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  padding: 16px 0;
  margin: -16px 0 0 0;
}
@media screen and (max-width: 767px) {
  .slide-row {
    gap: 8px;
    padding: 12px 0;
    margin: -12px 0 0 0;
  }
}
.card {
  min-width: 300px;
  width: 300px;
  height: 92px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .card {
    min-width: 210px;
    width: 210px;
    height: 64px;
    gap: 12px;
  }
}
.card:hover {
  box-shadow: 0px 0px 20px 0px #00000026;
}
.card img {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .card img {
    min-width: 41px;
    width: 41px;
    height: 41px;
  }
}
.card-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ns-navy);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
  white-space: normal;
}
@media screen and (max-width: 767px) {
  .card-text {
    font-size: 12px;
  }
}
.card-modal-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000099;
  z-index: 100;
  display: none;
}
.card-modal-layer.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-modal {
  max-width: 800px;
  width: 100%;
  padding: 32px 40px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-height: calc(100% - 40px);
  overflow: auto;
  scrollbar-width: none;
}
.card-modal::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .card-modal {
    padding: 40px 24px;
    max-width: calc(100% - 32px);
    max-height: calc(100% - 32px);
  }
}
.card-modal-close {
  width: 27px;
  height: 27px;
  position: sticky;
  transform: translate(22px, -22px);
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 0 -27px auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .card-modal-close {
    transform: translate(14px, -30px);
  }
}
.card-modal-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  word-break: auto-phrase;
}
@media screen and (max-width: 767px) {
  .card-modal-name {
    font-size: 18px;
    gap: 12px;
  }
}
.card-modal-name:empty {
  display: none;
}
.card-modal-name img {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .card-modal-name img {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
}
.card-modal-thanks {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 32px 0;
}
@media screen and (max-width: 767px) {
  .card-modal-thanks {
    font-size: 13px;
  }
}
.card-modal-thanks a {
  color: var(--ns-teal);
}
.card-modal-thanks a:hover {
  text-decoration: none;
}
.card-modal-from {
  margin: 0 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .card-modal-from {
    height: 46px;
  }
}
.card-modal-from img {
  width: 60px;
  min-width: 60px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .card-modal-from img {
    width: 46px;
    min-width: 46px;
    border-radius: 6px;
  }
}
.card-modal-from p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .card-modal-from p {
    font-size: 14px;
    line-height: 1.5;
  }
}
.card-modal-from p span {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .card-modal-from p span {
    font-size: 16px;
  }
}
.footer {
  background: var(--ns-navy);
  padding: 96px 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 0;
  }
}
.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}
.footer-title {
  font-family: "Rubik";
  font-weight: 500;
  font-size: 96px;
  line-height: 1;
  color: #fff;
  margin: 0 0 36px 0;
}
@media screen and (max-width: 767px) {
  .footer-title {
    font-size: 36px;
    margin: 0 0 24px 0;
  }
}
.footer-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer-text {
    font-size: 15px;
  }
}
.footer-link {
  margin: 47px 0 0 0;
  width: 336px;
  height: 65px;
  border-radius: 65px;
  background: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  gap: 12px;
  color: var(--ns-navy);
}
@media screen and (max-width: 767px) {
  .footer-link {
    width: 238px;
    height: 55px;
    border-radius: 55px;
    font-size: 18px;
    margin: 32px 0 0 0;
    gap: 10px;
  }
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin: 80px 0 0 0;
}
@media screen and (max-width: 767px) {
  .footer-links {
    gap: 12px 20px;
    flex-wrap: wrap;
    margin: 60px 0 0 0;
  }
}
.footer-links a {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer-links a {
    font-size: 12px;
  }
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-copyright {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 0 auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    width: 100%;
    font-size: 14px;
    margin: 6px 0 0 0;
  }
}
.card-modal-company-logo:empty {
  display: none;
}
.card-modal-company-logo {
  margin: 0 0 10px 0;
  max-width: 270px;
  min-height: 100px;
}
@media screen and (max-width: 767px) {
  .card-modal-company-logo {
    margin: 0 auto 10px auto;
  }
}
.card-modal-company-link {
  margin: 0 0 15px 0;
}
@media screen and (max-width: 767px) {
  .card-modal-company-link {
    margin: 0 0 10px 0;
    text-align: center;
  }
}
.card-modal-company-link a {
  color: var(--ns-teal);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-modal-company-link a:hover {
  text-decoration: underline;
}
.card-modal-company-link:empty {
  display: none;
}
.card-modal-company-link a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/link-icon.svg) no-repeat center center;
}
@media screen and (max-width: 767px) {
  .card-modal-company-link a::after {
    width: 20px;
    height: 20px;
    background: url(../images/link-icon.svg) no-repeat center center;
    background-size: 20px;
  }
}
.card-modal-company-message:empty {
  display: none;
}
.card-modal-company-message {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  padding: 0 0 24px 0;
  margin: 0 0 24px 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .card-modal-company-message {
    font-size: 13px;
  }
}
.card-modal-company-message a {
  color: var(--ns-teal);
  text-decoration: none;
}
.card-modal-company-message a:hover {
  text-decoration: underline;
}
.document-section {
  max-width: 848px;
  margin: 80px auto 300px auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .document-section {
    margin: 40px auto 80px auto;
  }
}
.document-section h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 80px 0;
}
@media screen and (max-width: 767px) {
  .document-section h2 {
    font-size: 20px;
    margin: 0 0 50px 0;
  }
}
.document-list dt {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 12px 0;
  color: var(--ns-navy);
}
@media screen and (max-width: 767px) {
  .document-list dt {
    font-size: 18px;
    margin: 0 0 8px 0;
  }
}
.document-list dd {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 60px 0;
  color: var(--ns-navy);
}
@media screen and (max-width: 767px) {
  .document-list dd {
    font-size: 15px;
    margin: 0 0 40px 0;
  }
}
.document-list dd a {
  text-decoration: underline;
  color: var(--ns-navy);
}
.document-list .clause {
  text-indent: -18px;
  padding: 0 0 0 18px;
}
.footer-copyright-layer {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  margin: 80px 0;
  color: var(--ns-navy);
}
@media screen and (max-width: 767px) {
  .footer-copyright-layer {
    font-size: 14px;
    margin: 40px 0;
  }
}
.member-pre {
  padding: 70px 0 160px 0;
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .member-pre {
    padding: 0 0 60px 0;
  }
}
.member-pre-head {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin: 0 0 16px 0;
}
@media screen and (max-width: 767px) {
  .member-pre-head {
    font-size: 24px;
    margin: 0 0 12px 0;
  }
}
.member-pre-text-1 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 767px) {
  .member-pre-text-1 {
    font-size: 13px;
    margin: 0 0 28px 0;
  }
}
.member-pre-text-2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  text-align: center;
  color: #fff;
  margin: 0 0 80px 0;
}
@media screen and (max-width: 767px) {
  .member-pre-text-2 {
    font-size: 15px;
    margin: 0 0 40px 0;
  }
}
.member-pre-cards {
  display: flex;
  gap: 80px;
  padding: 0 12px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .member-pre-cards {
    flex-flow: column;
    gap: 12px;
  }
}
.member-pre-card {
  max-width: 520px;
  min-width: 520px;
  background: #fff;
  border-radius: 12px;
  padding: 40px 40px 60px 40px;
}
@media screen and (max-width: 767px) {
  .member-pre-card {
    min-width: 0;
    border-radius: 8px;
    padding: 28px 16px 32px 16px;
  }
}
.member-pre-card-head {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .member-pre-card-head {
    font-size: 22px;
  }
}
.member-pre-card-price {
  font-weight: 700;
  font-size: 64px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .member-pre-card-price {
    font-size: 44px;
  }
}
.member-pre-card-price span {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .member-pre-card-price span {
    font-size: 16px;
  }
}
.member-pre-card-price i {
  font-size: 16px;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .member-pre-card-price i {
    font-size: 10px;
  }
}
.member-pre-card-contact {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  text-align: center;
  margin: 24px 0 38px 0;
}
@media screen and (max-width: 767px) {
  .member-pre-card-contact {
    font-size: 28px;
    margin: 20px 0;
  }
}
.member-pre-card-list {
  margin: 28px 0 36px 0;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .member-pre-card-list {
    margin: 16px 0 24px 0;
  }
}
.member-pre-card-list li {
  list-style: disc;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  word-break: auto-phrase;
}
@media screen and (max-width: 767px) {
  .member-pre-card-list li {
    font-size: 13px;
  }
}
.member-pre-card-list li::marker {
  font-size: 12px;
  line-height: 18px;
}
.member-pre-card-link {
  display: flex;
  justify-content: center;
}
.member-pre-card-link-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 58px;
  border-radius: 58px;
  padding: 0 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
  background: var(--ns-teal);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .member-pre-card-link-1 {
    height: 43px;
    border-radius: 43px;
    font-size: 16px;
    padding: 0 32px;
  }
}
.member-pre-card-link-1:hover {
  background: linear-gradient(#0000001a, #0000001a), var(--ns-teal);
}
.member-pre-card-link-1::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/button-link-icon.svg) no-repeat center center;
  display: block;
}
.member-pre-card-link-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 40px;
  height: 58px;
  border-radius: 58px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
  background: var(--ns-navy);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .member-pre-card-link-2 {
    height: 43px;
    border-radius: 43px;
    font-size: 16px;
    padding: 0 32px;
  }
}
.member-pre-card-link-2:hover {
  background: linear-gradient(#0000001a, #0000001a), var(--ns-navy);
}
.member-pre-card-link-2::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/button-link-icon.svg) no-repeat center center;
  display: block;
}
.member-pre-link {
  text-align: center;
  margin: 80px 0 0 0;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .member-pre-link {
    font-size: 15px;
    text-align: center;
    flex-flow: column;
    gap: 24px;
    margin: 40px 0 0 0;
  }
}
.member-pre-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-radius: 58px;
  padding: 0 40px;
  background: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ns-navy);
  text-decoration: none;
  gap: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .member-pre-link a {
    font-size: 16px;
    height: 43px;
    border-radius: 43px;
    padding: 0 32px;
  }
}
.member-pre-link a:hover {
  background: linear-gradient(#0000001a, #0000001a), #fff;
}
.member-pre-link a::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/button-link-icon-2.svg) no-repeat center center;
  display: block;
}
