:root {
  --base-black: #4f4f4f;
  --base-gray: #eef0f3;
  --base-lightGray: #fdfdfd;
  --base-grayBlue: #97a5b5;
  --base-white: #ffffff;
  --base-lightBlue: #81d8d0;
  --base-red: #f53662;
  --base-lightPink: #f53561;
  --base-peach: #ec73b2;
  --base-brown: #8c4239;
  --base-darkGray: #97a5b5;
  --base-darkBlueGray: #98a6b5;
  --base-inputGray: #cdd6dd;
  --text-black1: #4f4f4f;
  --text-white: #ffffff;
  --text-lightBlue: #81d8d0;
  --text-red: #f53662;
  --text-peach: #ec73b2;
  --text-brown: #8c4239;
  --text-lightPink: #f53561;
  --base-bgBeige: #faf8f5;
  --base-bgLinearTop: #fafcfb;
  --base-darkText: #333;
  --base-mediumText: #555;
  --base-borderGray: #ccc;
  --base-lightBg: #f5f5f5;
  --base-darkGreen: #003032;
  --base-greenAccent: #5eada5;
  --base-purple: #6c5ce7;
  --base-darkPurple: #5b4bc4;
  --base-navy: #1a1a2e;
  --base-borderLight: #e0e0e0;
  --base-borderLightGray: #eee;
  --base-successGreen: #4cc764;
  --intro-border: #e5e7eb;
  --intro-darkGreen: #4e6269;
  --intro-cyan: #5fced8;
  --intro-borderSage: #a6bdc2;
  --intro-lightBg: #f3f4f6;
  --intro-darkText: #314348;
  --intro-yellow: #ffff00;
  --intro-midGreen: #4d6369;
  --base-mintBorder: #e6eeee;
  --base-lightGrayBorder: #eaeaea;
  --base-nearWhiteBg: #f9fbfb;
  --base-paleTealBg: #eaf4f6;
  --base-tealBg: #eaeff0;
  --base-lightMintBorder: #c8ebe9;
  --base-mintBg: #e8f8f7;
  --base-paleMintBg: #e8f5f5;
  --base-borderCard: #e8ecf0;
  --base-lightBorder: #ddd;
  --base-cardBorder: #dbdbdb;
  --base-midGray: #aaa;
  --base-mutedText: #999;
  --base-darkCharcoal: #444;
  --base-midCharcoal: #666;
  --base-slateGray: #6b7280;
  --base-coolGray: #9ca3af;
  --base-paleGray: #f0f0f0;
  --base-hoverGray: #f0f1f3;
  --base-teal: #3bb8b8;
  --base-softTeal: #7ecfcf;
  --base-mediumTeal: #5cc4bb;
  --base-mediumTealDark: #4ab3aa;
  --base-lightTeal: #a8e8e2;
  --base-lightTealScrollTrack: #e8f7f6;
  --base-darkTeal: #1a6b6b;
  --base-lightCyan: #e6faf8;
  --base-googleBlue: #6186ec;
  --base-googleRed: #cd523f;
  --base-googleYellow: #eabe43;
  --base-googleGreen: #63a45d;
  --base-googleStar: #fbbc04;
  --base-googleBadge: #1a73e8;
  --base-googleBadgeHover: #1557b0;
  --base-alertRed: #ff4d5a;
  --base-pink: #e8527a;
  --base-nearBlack: #1a1a1a;
  --base-pureBlack: #000000;
  --fs-3xs: 0.6875rem;
  --fs-xs: 0.75rem;
  --fs-2xs: 0.8125rem;
  --fs-sm: 0.875rem;
  --fs-sm2: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-lg2: 1.375rem;
  --fs-xl: 1.5rem;
  --fs-xl2: 1.75rem;
  --fs-2xl: 1.875rem;
  --fs-2xl2: 2rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.5rem;
  --fs-4xl2: 2.625rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  --fs-7xl: 4rem;
  --fs-8xl: 4.5rem;
  --fs-9xl: 5rem;
  --fs-display: 6.25rem;
  --font-outfit: Outfit;
  --font-zen: Zen Kaku Gothic New;
}

.p-member-page-section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 16px;
  background-color: var(--base-white);
}
@media screen and (max-width: 767px) {
  .p-member-page-section {
    padding: 50px 16px;
  }
}

.p-member-page-container {
  width: 100%;
  max-width: 1440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .p-member-page-container {
    gap: 30px;
  }
}

.p-member__voice-content {
  max-width: 1472px;
}

.c-voice-section__header.p-member__voice-header {
  width: 100%;
  max-width: 1472px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.p-member__cards-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-member__cards-grid {
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 1200px) {
  .p-member__cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .p-member__cards-grid {
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 20px;
  }
}

.p-member__content .c-voice-card {
  height: 100%;
  border: 1px solid var(--base-gray);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-member__voice-slide {
    padding: 30px;
    padding-top: 60px;
  }
  .p-member__voice-label {
    padding: 8px 33px;
    width: calc(100% - 20px);
    text-align: center;
  }
  .p-member__voice-img-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
  .p-member__voice-name {
    text-align: center;
    padding-bottom: 20px;
  }
}

.p-member-voice__card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  width: 100%;
}

.p-member-voice__img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-member-voice__img-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

.p-member-voice__card {
  background-color: var(--base-white);
  padding: 30px;
  max-width: 460px;
  min-height: 190px;
  border: 1px solid var(--base-gray);
}
@media screen and (max-width: 767px) {
  .p-member-voice__card {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-member-voice__label {
  background-color: var(--base-lightBlue);
  position: absolute;
  right: 0;
  min-width: 150px;
  text-align: center;
  top: 0;
  padding: 2px 33px;
  font-size: var(--fs-sm);
  color: var(--text-white);
}
@media screen and (max-width: 767px) {
  .p-member-voice__label {
    width: calc(100% - 20px);
    text-align: center;
  }
}

.p-member-voice__name {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--base-gray);
  font-weight: 700;
  color: var(--text-lightBlue);
}

.p-member-voice__body {
  font-size: var(--fs-sm2);
}

.p-member__section-title {
  font-weight: 700;
  font-size: var(--fs-xl);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-member__section-title {
    font-size: var(--fs-lg);
  }
}

.p-member__section-desc {
  line-height: 2;
}

.p-member-speech-bubble {
  position: absolute;
  top: -230px;
  right: 200px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1090px) {
  .p-member-speech-bubble {
    right: 120px;
  }
}
@media screen and (max-width: 900px) {
  .p-member-speech-bubble {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-member-speech-bubble {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    width: 14rem;
    height: 14.5rem;
    margin: 2.5rem 1.25rem -3rem auto;
    z-index: 2;
    pointer-events: none;
  }
}

@media screen and (max-width: 1090px) {
  .p-member-speech-bubble__img--first {
    width: 100px;
    height: auto;
  }
}
@media screen and (max-width: 900px) {
  .p-member-speech-bubble__img--first {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-member-speech-bubble__img--first {
    display: block;
    width: auto;
    height: 14rem;
    margin: 0 auto;
  }
}

.p-member-speech-bubble__img--last {
  position: absolute;
  top: 0;
  left: 140px;
}
@media screen and (max-width: 1090px) {
  .p-member-speech-bubble__img--last {
    width: 100px;
    height: auto;
    margin-left: -20px;
  }
}
@media screen and (max-width: 900px) {
  .p-member-speech-bubble__img--last {
    width: 100px;
    height: auto;
    margin-left: -30px;
  }
}
@media screen and (max-width: 767px) {
  .p-member-speech-bubble__img--last {
    top: 1rem;
    left: 50%;
    width: 7rem;
    height: auto;
    margin-left: 2.5rem;
  }
}

.p-member-page-container__first-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 75px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1350px) {
  .p-member-page-container__first-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .p-member-page-container__first-section {
    gap: 0;
  }
}
@media screen and (max-width: 950px) {
  .p-member-page-container__first-section {
    max-width: 650px;
  }
}
@media screen and (max-width: 880px) {
  .p-member-page-container__first-section {
    max-width: 550px;
  }
}
@media screen and (max-width: 800px) {
  .p-member-page-container__first-section {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .p-member-page-container__first-section {
    max-width: 100%;
    gap: 0;
  }
}/*# sourceMappingURL=member.css.map */
