@charset "UTF-8";
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
/**
 * Review 하위 페이지 공통 스타일
 * - `review/index.html`, `review/before-after.html` 등에서 공유하는 영역만 둡니다.
 * - 칩(`rr-chips`), Total 줄(`rr-toolbar` / `rr-total`), FEATURED(`rr-feat` …) 등.
 * - 각 페이지 전용 스타일은 `index.scss`, `before-after.scss` 등에 유지하세요.
 * - `#section01` hero 배경·반응형은 `_review-section01-hero.scss`를 사용하세요.
 *
 * 상위에서 `@import "../../__variables";`, `@import "../../__mixins";` 후에 이 파일을 불러오세요.
 */
.rr-hero {
  padding: 48px 0 36px;
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  .rr-hero {
    padding: 32px 0 24px;
  }
}

.rr-hero > p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #7a716a;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
}
@media screen and (max-width: 991.98px) {
  .rr-hero > p {
    font-size: 13px;
    font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  }
}

.rr-hero > h1 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  line-height: 1.15;
}
@media screen and (max-width: 991.98px) {
  .rr-hero > h1 {
    font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  }
}

.rr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 22px;
}

.rr-chips button {
  appearance: none;
  border: 1px solid #d5cfc7;
  background: #fff;
  color: #4a433c;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.rr-chips button:hover {
  border-color: #b0a69a;
}
.rr-chips button.is-active {
  border-color: #4a433c;
  background: #4a433c;
  color: #fff;
}

.rr-toolbar {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 20px;
}

.rr-total {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6f665e;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}

.rr-spot {
  padding: 40px 0 52px;
  background: #6f6358;
  color: #f5f0e8;
  text-align: center;
  /* FEATURED 등 소제목(첫 요소가 p 일 때) */
  /* 카드 셀 460×301 — 클릭 비활성(고정 노출) */
  /* FEATURED 슬롯 그리드: h2 또는 p 바로 다음 형제 div (B&A 베스트는 h2+ul 이라 여기 해당 없음) */
  /* FEATURED 슬롯: 빈 슬롯용 반투명 박스(.rr-feat 제외) */
  /* FEATURED — 마크업: .rr-feat > .rr-feat__item > .rr-feat__box > .rr-feat__media | .rr-feat__body */
}
@media screen and (max-width: 991.98px) {
  .rr-spot {
    padding: 28px 0 36px;
  }
}
.rr-spot > .area {
  max-width: 1420px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.rr-spot > .area > p:first-child {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.9);
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
}
.rr-spot > .area > h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ebca6d;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}
@media screen and (max-width: 991.98px) {
  .rr-spot > .area > h2 {
    margin-bottom: 20px;
  }
}
.rr-spot > .area > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 18px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .rr-spot > .area > ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media screen and (max-width: 543.98px) {
  .rr-spot > .area > ul {
    grid-template-columns: 1fr;
  }
}
.rr-spot > .area > ul > li {
  width: 460px;
  max-width: 100%;
  height: 301px;
  margin: 0;
  pointer-events: none;
  box-sizing: border-box;
}
.rr-spot > .area > ul > li > div {
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(44, 39, 33, 0.06);
}
.rr-spot > .area > p + div,
.rr-spot > .area > h2 + div {
  display: grid;
  justify-content: center;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 991.98px) {
  .rr-spot > .area > p + div,
  .rr-spot > .area > h2 + div {
    gap: 14px 16px;
  }
}
@media screen and (min-width: 720px) {
  .rr-spot > .area > p + div,
  .rr-spot > .area > h2 + div {
    grid-template-columns: repeat(2, minmax(0, 340px));
  }
}
@media screen and (min-width: 1100px) {
  .rr-spot > .area > p + div,
  .rr-spot > .area > h2 + div {
    grid-template-columns: repeat(3, minmax(0, 340px));
  }
}
@media screen and (min-width: 1480px) {
  .rr-spot > .area > p + div,
  .rr-spot > .area > h2 + div {
    grid-template-columns: repeat(4, minmax(0, 340px));
  }
}
.rr-spot > .area > p + div > div:not(.rr-feat__item),
.rr-spot > .area > h2 + div > div:not(.rr-feat__item) {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}
.rr-spot > .area > p + div > a.rr-feat__item,
.rr-spot > .area > h2 + div > a.rr-feat__item {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.rr-spot > .area > p + div > a.rr-feat__item:hover,
.rr-spot > .area > h2 + div > a.rr-feat__item:hover {
  transform: translateY(-2px);
}
.rr-spot > .area > p + div > a.rr-feat__item:hover .rr-feat__box,
.rr-spot > .area > h2 + div > a.rr-feat__item:hover .rr-feat__box {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.rr-spot > .area > p + div > a.rr-feat__item .rr-feat__box,
.rr-spot > .area > h2 + div > a.rr-feat__item .rr-feat__box {
  transition: box-shadow 0.2s ease;
}
.rr-spot > .area > p + div > a.rr-feat__item--text .rr-feat__box,
.rr-spot > .area > h2 + div > a.rr-feat__item--text .rr-feat__box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.rr-spot > .area > p + div > a.rr-feat__item--text .rr-feat__body,
.rr-spot > .area > h2 + div > a.rr-feat__item--text .rr-feat__body {
  width: 100%;
  padding: 20px 16px;
  text-align: center;
}
.rr-spot > .area > p + div > div.rr-feat__item--ph,
.rr-spot > .area > h2 + div > div.rr-feat__item--ph {
  width: 100%;
  box-sizing: border-box;
  pointer-events: none;
}
.rr-spot .rr-feat__box {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.rr-spot .rr-feat__media {
  width: 100%;
  max-width: 340px;
  height: 340px;
  margin-inline: auto;
  background: #1a1410;
  box-sizing: border-box;
}
.rr-spot .rr-feat__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rr-spot .rr-feat__ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1410 0%, #2a221c 100%);
  opacity: 0.55;
}
.rr-spot .rr-feat__body {
  padding: 15px;
}
.rr-spot .rr-feat__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #2c2721;
  font-weight: 600;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
@media screen and (max-width: 543.98px) {
  .rr-spot .rr-feat__media {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    max-height: none;
  }
}

#page-content-wrapper.page-community {
  overflow: visible;
  /* #section01 hero — review/index 패턴: wrapper 여백 없이 hero padding으로 처리 */
}
@media screen and (max-width: 1439.98px) {
  #page-content-wrapper.page-community {
    padding-top: var(--mega-dim-top, 88px);
  }
}
@media screen and (max-width: 767.98px) {
  #page-content-wrapper.page-community {
    padding-top: var(--mega-dim-top, 72px);
  }
}
@media screen and (max-width: 1439.98px) {
  #page-content-wrapper.page-community:has(#section01) {
    padding-top: 0;
  }
}
@media screen and (max-width: 767.98px) {
  #page-content-wrapper.page-community:has(#section01) {
    padding-top: 0;
  }
}

@media screen and (max-width: 767.98px) {
  #page-content-wrapper.page-community > section,
  .community-hero-wrap > section#section01 {
    margin-top: 62px;
    padding: 100px 0;
  }
}
.page-community .rr-hero h1 .rr-hero__accent {
  color: #9d968e;
}

/* Community hub pages — #section01 hero (notice · with-star · view-tv · blog · faq) */
/* Review list pages — #section01 hero (index · story · selfies · before-after) */
.community-subnav {
  width: 100%;
  margin-top: 80px;
  background: #453f3a;
}
@media screen and (max-width: 1439.98px) {
  .community-subnav {
    margin-top: 0;
  }
}

.community-subnav__inner {
  width: 100%;
  max-width: 1420px;
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.community-subnav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  height: 100%;
  min-height: 80px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-subnav__item {
  position: relative;
  flex: 0 0 auto;
}
.community-subnav__item:not(:first-child) {
  margin-left: 28px;
  padding-left: 28px;
}
.community-subnav__item:not(:first-child)::before {
  content: "|";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}
.community-subnav__item a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #ccc6b7;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.community-subnav__item a:hover, .community-subnav__item a:focus-visible {
  color: #fff;
}
.community-subnav__item.is-active a {
  color: #ebca6d;
  font-weight: 600;
}

body:has(.community-subnav) #page-content-wrapper.page-community {
  padding-top: 32px;
}
@media screen and (max-width: 1439.98px) {
  body:has(.community-subnav) #page-content-wrapper.page-community {
    padding-top: var(--mega-dim-top, 88px);
  }
}
@media screen and (max-width: 767.98px) {
  body:has(.community-subnav) #page-content-wrapper.page-community {
    padding-top: var(--mega-dim-top, 72px);
  }
}

body:has(.community-hero-wrap) #page-content-wrapper.page-community {
  padding-top: 0;
}

.community-hero-wrap {
  position: relative;
  width: 100%;
}
.community-hero-wrap #page-content-wrapper.page-community--index {
  position: relative;
  width: 100%;
  max-width: 100%;
  z-index: 2;
  padding-top: 0;
  overflow: visible;
}
@media screen and (min-width: 1440px) {
  .community-hero-wrap #page-content-wrapper.page-community--index {
    margin-top: -300px;
  }
}
@media screen and (max-width: 1439.98px) {
  .community-hero-wrap #page-content-wrapper.page-community--index {
    margin-top: 0;
  }
}
.community-hero-wrap .rr-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.community-hero-wrap .community-online-consult {
  padding-top: 0;
  position: relative;
  z-index: 3;
}

@media screen and (min-width: 1440px) {
  .page-community--index .community-online-consult {
    margin-top: 200px;
  }
}
@media screen and (max-width: 1439.98px) {
  .page-community--index .community-online-consult {
    margin-top: 0;
  }
}

.community-hero {
  position: relative;
  width: 100%;
  min-height: 760px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: url("../../../img/page/community/community_bg.png") no-repeat center top;
  background-size: cover;
  overflow: hidden;
}
.community-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(48%, 360px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 55%, rgba(255, 255, 255, 0.92) 82%, #fff 100%);
  pointer-events: none;
  z-index: 1;
}

.community-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 190px;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
}

.community-hero__eyebrow {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
}

.community-hero__title {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: #fff;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  text-shadow: 0 2px 24px rgba(30, 35, 45, 0.18);
}

@media screen and (max-width: 991.98px) {
  .community-hero-wrap .rr-page {
    padding: 0 20px;
  }
  .community-hero {
    min-height: 620px;
  }
  .community-hero__inner {
    margin-top: 140px;
    padding: 0;
  }
  .community-hero__eyebrow {
    font-size: 14px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 767.98px) {
  .community-hero-wrap .rr-page {
    max-width: 100%;
    padding: 0 16px;
  }
  .community-hero {
    min-height: 520px;
  }
  .community-hero__inner {
    margin-top: 0;
    padding: 0;
  }
  .community-hero__title {
    font-size: clamp(34px, 9vw, 48px);
  }
}
@media screen and (max-width: 991.98px) {
  .community-subnav__inner {
    padding: 0 16px;
  }
  .community-subnav__item:not(:first-child) {
    margin-left: 20px;
    padding-left: 20px;
  }
  .community-subnav__item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767.98px) {
  .community-subnav__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .community-subnav__inner::-webkit-scrollbar {
    display: none;
  }
  .community-subnav__list {
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
    padding: 0 4px;
  }
}
.community-online-consult {
  padding: 0 0 80px;
}

.community-online-consult__embed {
  margin: 0 auto;
}

.community-online-consult__iframe {
  width: 1px;
  min-width: 100%;
  min-height: 720px;
}

.community-online-consult__notice {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 20px;
  text-align: center;
  color: #7a4545;
  background: #fdf8f8;
  border: 1px solid #e8c4c4;
  border-radius: 8px;
}

@media screen and (max-width: 991.98px) {
  .community-online-consult {
    padding-bottom: 48px;
  }
  .community-online-consult__iframe {
    min-height: 640px;
  }
}
#section01 {
  background: url(../../../img/page/community/index/sec01_bg.png) no-repeat center -100px;
  background-size: cover;
  /* 모바일 padding — page-shell / review-section01-hero-responsive 에서 지정 */
}
@media screen and (min-width: 992px) {
  #section01 {
    padding: 192px 0 250px;
  }
}
#section01 p {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  #section01 p {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
#section01 h2 {
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #section01 h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 1599.98px) {
  #section01 {
    background-position: top;
  }
}
@media screen and (max-width: 1439.98px) {
  #section01 {
    background: url("../../../img/page/community/index/sec01_bg_m.png") no-repeat center bottom !important;
    background-size: cover !important;
  }
}

@media screen and (max-width: 1520px) {
  body.page-community-index .community-hero-wrap > #section01 {
    background-position: center top !important;
  }
}
@media screen and (max-width: 1439.98px) {
  body.page-community-index #page-content-wrapper {
    overflow-x: hidden;
  }
  body.page-community-index .community-hero-wrap {
    overflow-x: hidden;
  }
  body.page-community-index .community-hero-wrap > #section01 {
    position: relative;
    overflow: hidden;
    background: url("../../../img/page/community/index/sec01_bg.png") no-repeat center top !important;
    background-size: cover !important;
  }
}
@media screen and (max-width: 1439.98px) and (max-width: 1599.98px) {
  body.page-community-index .community-hero-wrap > #section01 {
    background-position: top;
  }
}
@media screen and (max-width: 1439.98px) and (max-width: 1439.98px) {
  body.page-community-index .community-hero-wrap > #section01 {
    background: url("../../../img/page/community/index/sec01_bg_m.png") no-repeat center bottom !important;
    background-size: cover !important;
  }
}
@media screen and (max-width: 1439.98px) {
  body.page-community-index .community-hero-wrap > #section01 .area {
    position: relative;
    z-index: 1;
    max-width: none;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  body.page-community-index .community-hero-wrap > #section01::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
    pointer-events: none;
    z-index: 2;
  }
  body.page-community-index .community-hero-wrap > #section01 h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.12;
    font-weight: 700;
    text-shadow: none;
  }
  body.page-community-index .community-hero-wrap > #section01 p {
    font-size: 18px;
    margin-bottom: 16px;
  }
  body.page-community-index .rr-page {
    margin-top: 0;
  }
  body.page-community-index .community-online-consult .oc7-form-wrap {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767.98px) {
  body.page-community-index .community-hero-wrap > #section01 h2 {
    font-size: 30px !important;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: none;
  }
  body.page-community-index .community-hero-wrap > #section01 p {
    font-size: 15px !important;
    margin-top: 13px;
    margin-bottom: 0 !important;
  }
  body.page-community-index .page-community--index .community-online-consult {
    margin-top: -12px;
  }
  body.page-community-index .community-online-consult .oc7-form-wrap {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media screen and (max-width: 1439.98px) {
  body.page-community-index .community-online-consult .oc7-form-wrap {
    padding: 20px 16px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1439.98px) {
  body.page-community-index .community-online-consult .oc7-steps__title {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
}
@media screen and (max-width: 767.98px) {
  body.page-community-index .community-online-consult .oc7-steps__title {
    font-size: 30px !important;
    line-height: 1.2;
    margin-bottom: 20px !important;
    text-align: center;
  }
}
@media screen and (max-width: 1439.98px) {
  body.page-community-index .community-online-consult .oc7-form-wrap .oc7-form-inner h2.oc7-custom-form__page-title {
    margin: 0 0 20px !important;
    padding: 0 !important;
    font-size: 30px !important;
    line-height: 1.2;
    text-align: center !important;
  }
}
@media screen and (max-width: 767.98px) {
  body.page-community-index .community-online-consult .oc7-form-wrap .oc7-form-inner h2.oc7-custom-form__page-title {
    margin: 0 !important;
    margin-bottom: 20px !important;
    font-size: 30px !important;
    text-align: center !important;
  }
}
@media screen and (max-width: 1439.98px) {
  body.page-community-index .community-online-consult .oc7-custom-form__privacy-embed {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767.98px) {
  body.page-community-index .community-online-consult .oc7-custom-form__privacy-embed {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1439.98px) {
  body.page-community-index .community-online-consult .oc7-custom-form__privacy-embed .oc7-custom-form__privacy-heading {
    margin: 0 0 12px;
  }
}
@media screen and (max-width: 767.98px) {
  body.page-community-index .community-online-consult .oc7-custom-form__privacy-embed .oc7-custom-form__privacy-heading {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.4;
    text-align: center !important;
  }
}
@media screen and (max-width: 1439.98px) {
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767.98px) {
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table {
    margin: 0 0 16px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 1439.98px) and (min-width: 768px) {
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table {
    table-layout: auto !important;
  }
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table :is(th, td) {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}
@media screen and (max-width: 767.98px) {
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table thead {
    display: none !important;
  }
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table,
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table tbody,
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table tr,
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table td {
    display: block;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table td {
    padding: 16px !important;
    font-size: 13px;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: anywhere;
    border-left: 0 !important;
    background: var(--oc7-recruitment-body-bg, #fff) !important;
    color: var(--oc7-recruitment-body-color, #333) !important;
  }
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table td::before {
    display: block !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    background: transparent !important;
    color: #6b4436;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.35;
  }
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table td:first-child::before {
    content: "Items of Personal Information Collected" !important;
  }
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table td:last-child::before {
    content: "Purpose of collection" !important;
  }
  body.page-community-index .community-online-consult .oc7-form-wrap .recruitment-table__table td + td {
    border-top: 1px solid rgba(90, 59, 46, 0.18);
  }
}

body.page-community-index #sub-footer {
  background: #fcfbfa;
}