@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;600;700&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans TC", "Arial", sans-serif, "微軟正黑體";
  font-size: 16px;
  color: #878787;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}

.w-1920 {
  max-width: 1920px;
  margin: auto;
  width: 100%;
  overflow: hidden;
}

.w-1000 {
  max-width: 1000px;
  margin: auto;
  width: 100%;
  overflow: hidden;
}

.w-800 {
  max-width: 800px;
  margin: auto;
  width: 100%;
  overflow: hidden;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
a:hover {
  text-decoration: none;
}

.checkout-btn {
  outline: 1px solid #3c3c3c;
  padding: 6px 10px;
  border-radius: 20px;
  color: #3c3c3c;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) {
  .checkout-btn {
    padding: 8px 20px;
  }
}
.checkout-btn::before {
  content: "";
  position: absolute;
  background-color: #D7B393;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all ease-in-out 0.3s;
}
.checkout-btn:hover {
  outline: none;
  color: #ffffff;
  transition: all ease-in-out 0.3s;
}
.checkout-btn:hover::before {
  width: 100%;
  transition: all ease-in-out 0.3s;
}

.page ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
}
.page a {
  color: #646464;
  padding: 3px;
  margin: 3px;
}

.mainBtn {
  background-color: #D7B393;
  border-radius: 2rem;
  color: var(--white);
  padding: 0.5rem 1.5rem;
  font-size: 14px;
  width: 180px;
  display: block;
}

.subtitle {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem;
  color: #3c3c3c;
  font-size: 1.7rem;
  font-weight: 600;
}
.subtitle::before {
  content: "";
  width: 4px;
  height: 30px;
  background-color: #D7B393;
  position: absolute;
  left: 0;
  top: 10%;
}

.title {
  color: #3c3c3c;
  font-weight: 600;
}

.moreBtn {
  font-size: 1.25rem;
  color: #3c3c3c;
  border: 1px solid #3c3c3c;
  border-radius: 5px;
}

.searchBtn {
  background-color: #D7B393;
  color: #85562B;
  font-size: 14px;
}

.bread_crumbs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.bread_crumbs li {
  font-size: 15px;
  padding-left: 8px;
}
.bread_crumbs li::after {
  content: "/";
  margin-left: 8px;
}
.bread_crumbs li a {
  color: #878787;
}
.bread_crumbs li:last-child::after {
  content: "";
}

.joinBtn {
  background-color: #D7B393;
  color: #85562B;
  border-radius: 30px;
  font-size: 15px;
}

.fullBtn {
  background-color: #eaeaea;
  color: #878787;
  border-radius: 30px;
  font-size: 15px;
}

.login_registerBtn {
  background-color: #D7B393;
  color: #878787;
  border-radius: 30px;
  font-size: 15px;
}

.text-red {
  color: red;
}

.bg-main {
  background-color: #D7B393;
}

.text-sub {
  color: #85562B;
}

.text-main {
  color: #D7B393;
}

.text-lightBlack {
  color: #878787;
}

.text-darkBlack {
  color: #3c3c3c;
}

.text-white {
  color: #ffffff;
}

.text-nav {
  color: #989898;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.fs-32 {
  font-size: 32px;
}

.fs-48 {
  font-size: 48px;
}

.w-1920 {
  max-width: 1920px;
  margin: 0 auto;
}

.mb-1rem {
  margin-bottom: 1rem;
}

.mb-2rem {
  margin-bottom: 2rem;
}

.mb-3rem {
  margin-bottom: 3rem;
}

.mb-4rem {
  margin-bottom: 4rem;
}

.mainbg {
  background-color: #EAEFF3;
}
@media (min-width: 992px) {
  .mainbg {
    background-color: transparent;
  }
}

.subbg {
  background-color: #D7E2EA;
}

.mainBtn {
  color: var(--white);
  background-color: #D7B393;
}

.mainBtn:hover {
  color: var(--white);
}

.margin-r-s {
  margin-right: 0;
}
@media (min-width: 992px) {
  .margin-r-s {
    margin-right: -1.5rem;
  }
}

.margin-l-s {
  margin-left: 0;
}
@media (min-width: 992px) {
  .margin-l-s {
    margin-left: -1.5rem;
  }
}

.gotop {
  position: fixed;
  right: 1%;
  bottom: 90px;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 998;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background-color: #85562B;
  border: 1px solid #85562B;
  transition: all 0.5s;
  animation: 2s arrowTop ease-out infinite;
}

@keyframes arrowTop {
  0%, 100%, 20%, 50%, 80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20%);
  }
  60% {
    transform: translateY(-10%);
  }
}
/* 手機漢堡選單 */
.menu-icon__cheeckbox {
  display: none;
}

.menu-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 65px;
  height: 65px;
  cursor: pointer;
  display: block;
  background-color: #D7B393;
  margin-bottom: 0;
  z-index: 1001;
}
@media (min-width: 1200px) {
  .menu-icon {
    display: none;
  }
}
.menu-icon div {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 12px;
}

.menu-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 1px;
  background-color: var(--white);
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.menu-icon span:first-of-type {
  top: 0;
}
.menu-icon span:last-of-type {
  bottom: 0;
}

.menu-icon__cheeckbox:checked ~ .menu-icon div span:first-of-type {
  transform: rotate(45deg);
  top: 4px;
}

.menu-icon__cheeckbox:checked ~ .menu-icon div span:last-of-type {
  transform: rotate(-45deg);
  bottom: 5px;
}

/* 手機漢堡選單end */
/* 主選單開始 */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  min-height: 64px;
  background: var(--white);
  z-index: 100;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1200px) {
  .navbar {
    min-height: 84px;
  }
}

.navbar-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.navbar-header .navbar-collapse {
  display: flex;
  height: 100vh;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .navbar-header .navbar-collapse {
    flex-direction: row;
    justify-content: space-between;
    flex: 0 0 calc(100% - 300px);
    width: calc(100% - 300px);
    height: auto;
    opacity: 1;
    visibility: visible;
    position: relative;
  }
}
@media (min-width: 992px) {
  .navbar-header .navbar-collapse ul {
    margin-left: 2rem;
  }
}
.navbar-header .navbar-collapse .head-cont {
  text-align: center;
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .navbar-header .navbar-collapse .head-cont {
    text-align: left;
    margin-top: 0;
    width: 210px;
    display: flex;
    flex-wrap: wrap;
  }
}
.navbar-header .navbar-collapse .head-cont h3 {
  width: 100%;
  font-size: 1.4rem;
  color: #878787;
}
.navbar-header .navbar-collapse .head-cont .item a {
  color: #989898;
  font-size: 14px;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .navbar-header .navbar-collapse .head-cont .item a {
    margin-right: 10px;
    margin-bottom: 0;
  }
}

#menu-link:checked ~ .navbar-collapse {
  opacity: 1;
  top: 64px;
  visibility: visible;
}

.nav li {
  flex: 0 0 100%;
}
@media (min-width: 1200px) {
  .nav li {
    flex: 0 0 auto;
  }
}
.nav li a {
  color: #878787;
  padding: 0.8rem 1rem;
  position: relative;
  font-weight: 500;
  display: block;
  text-align: center;
  transition: all 0.3s ease-in;
}
@media (min-width: 992px) {
  .nav li a {
    padding: 1.3rem 0.8rem;
  }
}
.nav li a span {
  color: #F83D02;
}
.nav li a:hover {
  color: #85562B;
}
.nav li a.active {
  position: relative;
  color: #D7B393;
}
.nav li a.active::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 5px;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: #D7B393;
}

.logo {
  width: 300px;
  padding: 6px 0;
}
.logo a {
  width: 100%;
  display: block;
  padding-bottom: 17%;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1200px) {
  .logo a {
    padding-bottom: 24%;
  }
}

.loginbox .modal-header .heading {
  width: 100%;
}
.loginbox .modal-header .chText {
  font-size: 1.5rem;
  color: #3c3c3c;
  text-align: center;
  width: 100%;
}
.loginbox .modal-body {
  padding: 1.3rem;
}
.loginbox .fromBox .name {
  flex: 0 0 60px;
}
.loginbox .formBtm {
  display: flex;
  justify-content: center;
}
.loginbox .formBtm a {
  color: #3c3c3c;
  padding: 0 1rem;
  font-size: 15px;
}

.close:focus {
  outline: 0;
}

.modal-header {
  border-bottom: 0;
  position: relative;
  text-align: center;
}
.modal-header .modal-title {
  text-align: center;
  width: 100%;
  color: #3c3c3c;
}

.modal-header .close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 60px;
  height: 60px;
}

.submit {
  background-color: #D7B393;
  color: var(--white);
  width: 120px;
  margin: auto;
  display: block;
}

footer {
  background-color: #2a2a2a;
  padding: 3rem 0 1rem;
}
footer .footer .title {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
footer .footer ul li {
  color: #989898;
  font-size: 14px;
  margin-bottom: 0.8rem;
}
footer .footer ul li a {
  color: #989898;
}
footer .footer .focus-icon a {
  color: var(--white);
  margin-right: 10px;
  font-size: 1.25rem;
}
footer .footer_fixed_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #3c3c3c;
  width: 100%;
}
footer .footer_fixed_btn a {
  flex: 0 0 25%;
  padding: 1.2rem 0.6rem;
  text-align: center;
  color: #D7B393;
  font-size: 1.125rem;
}

.slider {
  margin-top: 63px;
  position: relative;
  background-color: #111A29;
}
@media (min-width: 1200px) {
  .slider {
    margin-top: 84px;
    padding-bottom: 45%;
  }
}
.slider .img {
  position: relative;
  width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  padding-bottom: 40%;
}
@media (min-width: 1200px) {
  .slider .img {
    position: absolute;
    border-radius: 20px;
    width: 90%;
    padding-bottom: 0;
    top: 10%;
    bottom: 10%;
    height: 80%;
  }
}
.slider .text {
  background-color: var(--white);
  position: relative;
  bottom: 5%;
  padding: 1rem;
  z-index: 2;
}
@media (min-width: 1200px) {
  .slider .text {
    padding: 1.5rem 4rem 1.5rem 5rem;
    position: absolute;
    width: 50%;
  }
}
.slider .text .title {
  font-size: 2rem;
}
@media (min-width: 1200px) {
  .slider .text .title {
    font-size: 3rem;
  }
}
.slider .text p {
  font-size: 1rem;
}
@media (min-width: 1200px) {
  .slider .text p {
    font-size: 2rem;
  }
}

.index-theme {
  padding: 1rem 0;
  color: #3c3c3c;
}
@media (min-width: 1200px) {
  .index-theme {
    padding: 3rem 0;
  }
}
.index-theme .text h3 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
}
.index-theme .img img {
  display: block;
  margin: auto;
}

.index-theme-cont .head h2.title {
  color: #3c3c3c;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}
.index-theme-cont .cont {
  margin: 1rem 0 3rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}
.index-theme-cont .cont .img {
  padding-bottom: 120%;
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
}
@media (min-width: 1200px) {
  .index-theme-cont .cont .img {
    padding-bottom: 470px;
  }
}
.index-theme-cont .text-box {
  padding: 1.5rem;
}
@media (min-width: 1200px) {
  .index-theme-cont .text-box {
    padding: 3rem 2rem;
  }
}
.index-theme-cont .text-box .head .name {
  color: #3c3c3c;
  padding-bottom: 0.6rem;
}
.index-theme-cont .text-box .head .name span {
  color: #D7B393;
}
.index-theme-cont .text-box .head .company {
  color: #3c3c3c;
}
.index-theme-cont .text-box .head .company-cate {
  color: #878787;
  font-size: 1.1rem;
}
.index-theme-cont .text-box .slogan {
  font-weight: 300;
  color: #3c3c3c;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.index-theme-cont .text-box .self-info {
  margin-bottom: 1.5rem;
}
.index-theme-cont .text-box .self-info li {
  margin-bottom: 0.7rem;
  color: #3c3c3c;
}
.index-theme-cont .text-box .self-info li a {
  color: #3c3c3c;
  word-break: break-all;
}
.index-theme-cont .text-box .self-info li i {
  color: #D7B393;
  margin-right: 5px;
}
.index-theme-cont .text-box .self-info li b {
  color: #3c3c3c;
  margin-right: 5px;
}
.index-theme-cont .text-box p {
  color: #3c3c3c;
  font-weight: 400;
  font-size: 1.25rem;
}

.sub {
  color: #3c3c3c;
  font-size: 1.25rem;
  position: relative;
  padding-left: 20px;
}
.sub::before {
  content: "";
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  background-color: #D7B393;
}

.community a {
  color: #D7B393;
  margin-right: 10px;
  font-size: 1.125rem;
}

.office {
  padding: 3rem 0 0;
  background-color: #f5f5f5;
}
@media (min-width: 1200px) {
  .office {
    padding: 5rem 0 2rem;
  }
}

.member-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.member-box .item {
  flex: 0 0 calc(50% - 1rem);
  margin: 0 0.5rem 1rem;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  padding: 5px;
  background-color: var(--white);
}
@media (min-width: 992px) {
  .member-box .item {
    flex: 0 0 calc(50% - 2rem);
  }
}
@media (min-width: 1200px) {
  .member-box .item {
    flex: 0 0 calc(33.33% - 2rem);
    padding: 0.6rem;
  }
}
.member-box .item a {
  color: #3c3c3c;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.member-box .item a .img {
  padding-bottom: 125%;
  background-repeat: no-repeat;
  flex: 0 0 100%;
  background-size: contain;
  margin-bottom: 1rem;
  background-position: center center;
}
@media (min-width: 1200px) {
  .member-box .item a .img {
    padding-bottom: 43%;
    margin-right: 1rem;
    flex: 0 0 132px;
  }
}
.member-box .item a .member-text {
  flex: 0 0 100%;
  align-content: center;
}
@media (min-width: 1200px) {
  .member-box .item a .member-text {
    flex: 0 0 calc(100% - 1rem - 132px);
  }
}
.member-box .item a .member-text .office-title {
  color: #C8A29A;
  font-weight: bold;
  margin-bottom: 0.5rem;
  padding-left: 0.8rem;
  position: relative;
  font-size: 1.2rem;
}
.member-box .item a .member-text .office-title::before {
  content: "";
  width: 4px;
  height: 26px;
  background-color: #C8A29A;
  position: absolute;
  left: 0;
  top: 0;
}
.member-box .item a .member-text .name {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 5px;
}
.member-box .item a .member-text .category {
  color: #878787;
  font-size: 14px;
}
.member-box .item .more {
  font-size: 14px;
  color: #D7B393;
}

.activity-items .item a .img {
  background-position: center center;
}

.member-card {
  padding: 2rem 0 2rem;
  background-color: #f5f5f5;
}
@media (min-width: 1200px) {
  .member-card {
    padding: 1.5rem 0 4rem;
  }
}
.member-card .container {
  background-color: var(--white);
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-radius: 1rem;
}

.search-wrapper {
  display: flex;
}
.search-wrapper input {
  padding: 5px;
  border: 1px solid #aaaaaa;
}
.search-wrapper .searchBtn {
  background-color: #3c3c3c;
  color: var(--white);
  border-radius: 0;
}

.member-info-box {
  margin-top: 63px;
  padding: 2rem 0;
}
@media (min-width: 1200px) {
  .member-info-box {
    margin-top: 84px;
    padding: 4rem 0;
  }
}

.titlebox {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.main_title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1rem 4rem;
  color: #3c3c3c;
  display: inline-flex;
}
@media (min-width: 1200px) {
  .main_title {
    font-size: 2rem;
  }
}
.main_title::before {
  content: "";
  width: 3rem;
  height: 2px;
  background-color: #D7B393;
  position: absolute;
  top: 50%;
  left: 0;
}
.main_title::after {
  content: "";
  width: 3rem;
  height: 2px;
  background-color: #D7B393;
  position: absolute;
  top: 50%;
  right: 0;
}

.self-info .item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem 2.5rem;
  margin: 1% 1.5% 1.5rem;
}
@media (min-width: 1200px) {
  .self-info .item {
    flex: 0 0 47%;
  }
}
.self-info .self-info-title {
  color: #646464;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
}
.self-info .self-info-title span {
  color: #D7B393;
  margin-left: 6px;
}
.self-info p {
  color: #3c3c3c;
}

.info {
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
}
.info .commpany-title {
  color: #3c3c3c;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding: 0 15px;
}
.info .commpany-title span {
  color: #D7B393;
  display: block;
  font-size: 1.4rem;
}

.commpany-content {
  padding: 0 15px;
  margin-bottom: 1rem;
}
.commpany-content .img {
  flex: 0 0 100%;
}
.commpany-content .text {
  flex: 0 0 100%;
  color: #3c3c3c;
}
@media (min-width: 1200px) {
  .commpany-content .img {
    flex: 0 0 24%;
    margin-right: 1%;
  }
  .commpany-content .text {
    flex: 0 0 75%;
  }
}

.content {
  padding: 0 15px;
  color: #3c3c3c;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.content .item {
  flex: 0 0 98%;
  margin: 0 1% 1rem;
  text-align: center;
}
@media (min-width: 992px) {
  .content .item {
    flex: 0 0 48%;
  }
}
.content .item .img {
  padding-bottom: 60%;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 8px;
  background-position: center center;
}
.content .item a {
  color: #878787;
}

.member_box {
  display: flex;
  flex-wrap: wrap;
}

.member_menu {
  width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 1200px) {
  .member_menu {
    width: 260px;
    flex: 0 0 260px;
    margin-right: 30px;
  }
}
.member_menu .name {
  color: #3c3c3c;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.member_menu ul {
  display: flex;
  flex-wrap: wrap;
}
.member_menu ul li {
  flex: 0 0 50%;
}
@media (min-width: 1200px) {
  .member_menu ul li {
    flex: 0 0 100%;
  }
}
.member_menu ul li a {
  color: #3c3c3c;
  background-color: #eaeaea;
  padding: 0.8rem;
  margin-bottom: 0.3rem;
  display: block;
}
.member_menu ul li a:hover {
  background-color: #D7B393;
  color: var(--white);
}
.member_menu li.active a {
  background-color: #D7B393;
  color: var(--white);
}
.member_menu ul li:last-child a {
  background-color: transparent;
}
.member_menu ul li:last-child a:hover {
  color: #3c3c3c;
}

.member_cont {
  width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 1200px) {
  .member_cont {
    width: calc(100% - 260px - 30px);
    flex: 1 0 calc(100% - 260px - 30px);
  }
}
.member_cont .member-head {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #989898;
  margin-bottom: 1rem;
}
.member_cont .member-head a {
  padding: 0.6rem 1.5rem;
  color: #878787;
  text-align: center;
  border: 1px solid #989898;
  margin-bottom: -1px;
}
.member_cont .member-head a.active {
  background-color: #D7B393;
  color: var(--white);
}
.member_cont .col-form-label {
  color: #3c3c3c;
}
.member_cont .cardtitle {
  margin-top: 1rem;
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem;
  color: #3c3c3c;
  font-size: 1.125rem;
  padding-bottom: 0.8rem;
  font-weight: 600;
  border-bottom: #eaeaea 1px solid;
}
.member_cont .cardtitle::before {
  content: "";
  width: 4px;
  height: 80%;
  background-color: #D7B393;
  position: absolute;
  left: 0;
  top: 0;
}
.member_cont .cardtitle span {
  color: #D7B393;
  font-size: 15px;
  font-weight: normal;
  margin-left: 10px;
}
.member_cont .remark {
  color: #D7B393;
}

.member-cont div.col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .member-cont > div:nth-child(2) div.col-lg-6:first-child {
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .member-cont > div:nth-child(2) div.col-lg-6:last-child {
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .member-cont .member-cont-card.info div.col-lg-6:nth-child(odd) {
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .member-cont .member-cont-card.info div.col-lg-6:nth-child(even) {
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .member-cont .community-card.info div.col-lg-6:nth-child(odd) {
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .member-cont .community-card.info div.col-lg-6:nth-child(even) {
    padding-right: 15px;
  }
}
.member-cont .member-cont-card.company .img-container {
  padding: 0.5rem 0.5rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.member-cont .member-cont-card.company .box {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
}
@media (min-width: 768px) {
  .member-cont .member-cont-card.company .box {
    padding-bottom: 40%;
  }
}
.member-cont .member-cont-card.company .img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.member-cont .member-cont-card.company input[type=file] {
  background-color: #f5f5f5;
  border: none;
}
.member-cont .member-cont-card.company div.col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .member-cont .member-cont-card.company div.col-lg-6:nth-child(2) {
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .member-cont .member-cont-card.company div.col-lg-6:nth-child(3) {
    padding-left: 15px;
  }
}
.member-cont .member-cont-card.company .cross-icon {
  color: #3C3C3C;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.member-cont .community-card.company div.col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .member-cont .community-card.company div.col-lg-6:nth-child(2) {
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .member-cont .community-card.company div.col-lg-6:nth-child(3) {
    padding-left: 15px;
  }
}
.member-cont .extra-info-card.company .info-index {
  text-decoration: none;
  background-color: #D7B393;
  width: 35px;
  height: 35px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.member-cont .extra-info-card.company .img-upload-box label {
  display: block;
  position: relative;
  width: 85%;
  color: #989898;
  padding: 4px;
  background-color: #EDEAE9;
  border: 1px solid #C3C4C5;
  border-radius: 5px;
  text-align: center;
}
.member-cont .extra-info-card.company .img-upload-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.member-cont .extra-info-card.company .cross-icon {
  color: #3C3C3C;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.member-cont .extra-info-card.company .trash-icon {
  color: #C8A29A;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.member-cont .extra-info-card.company table {
  margin: 0;
  padding: 0;
  table-layout: fixed;
}
.member-cont .extra-info-card.company table thead {
  display: none;
  background-color: #d9d9d9;
  color: #3c3c3c;
}
@media (min-width: 992px) {
  .member-cont .extra-info-card.company table thead {
    position: sticky;
    z-index: 2;
    top: 64px;
    display: table-header-group;
  }
}
@media (min-width: 1200px) {
  .member-cont .extra-info-card.company table thead {
    top: 84px;
  }
}
.member-cont .extra-info-card.company table thead th {
  padding: 8px 4px;
  font-weight: 500;
}
.member-cont .extra-info-card.company table thead th:first-child {
  padding-left: 12px;
}
.member-cont .extra-info-card.company table tr {
  display: block;
  margin-bottom: 1em;
  border: 1px solid #d9d9d9;
  border-top: none;
}
@media (min-width: 992px) {
  .member-cont .extra-info-card.company table tr {
    display: table-row;
    border: none;
  }
}
.member-cont .extra-info-card.company table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}
.member-cont .extra-info-card.company table tbody td {
  display: flex;
  padding: 0;
}
@media (min-width: 992px) {
  .member-cont .extra-info-card.company table tbody td {
    display: table-cell;
    background-color: transparent;
    border: none;
  }
}
.member-cont .extra-info-card.company table tbody td::before {
  content: attr(data-th);
  display: inline-block;
  width: 20%;
  max-width: 20%;
  color: #3c3c3c;
  padding: 6px 6px;
  word-wrap: break-word;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .member-cont .extra-info-card.company table tbody td::before {
    display: none;
  }
}
@media (min-width: 992px) {
  .member-cont .extra-info-card.company table tbody td div.width-limit {
    width: 75%;
  }
}
.member-cont .extra-info-card.company table tbody td > div {
  padding: 6px 6px;
}

.signup_cont .subtitle {
  font-size: 1.125rem;
  padding-bottom: 0.5rem;
}
.signup_cont .subtitle span {
  color: #D7B393;
}
.signup_cont .remark {
  color: #A74141;
}

.fileUploadBox {
  width: 100%;
  position: relative;
  border: 1px dashed #b3b3b3;
  background-color: #f3f3f3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  margin-bottom: 1rem;
}
.fileUploadBox .fileUpload {
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
}

.member_table {
  border: none;
}
.member_table tr.tr-only-hide {
  background-color: #e9ecef;
  color: #333;
}
.member_table th {
  font-weight: 400;
}
.member_table .herinneren-use {
  color: #D7B393;
  font-size: 14px;
}

.w-65 {
  width: 65px;
}

.search-date {
  display: flex;
  max-width: 400px;
  margin-bottom: 1rem;
  align-items: center;
}
.search-date .year, .search-date .month {
  margin: 0 8px;
}
.search-date .searchBtn {
  margin-left: 8px;
  flex: 0 0 60px;
  width: 60px;
}

.activity-info-box {
  margin-top: 67px;
  padding-top: 1.5rem;
}
@media (min-width: 1200px) {
  .activity-info-box {
    margin-top: 88px;
  }
}
.activity-info-box .activity_title {
  color: #3c3c3c;
  letter-spacing: 1px;
}
.activity-info-box .cont {
  flex: 0 0 100%;
  margin-bottom: 3rem;
}
@media (min-width: 1200px) {
  .activity-info-box .cont {
    flex: 1 0 calc(100% - 300px - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
.activity-info-box .cont .activity_date {
  color: #D7B393;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.activity_box {
  margin-bottom: 2rem;
}
.activity_box .item {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #eaeaea;
  margin-bottom: 1rem;
}
.activity_box a {
  flex: 0 0 100%;
}
@media (min-width: 1200px) {
  .activity_box a {
    flex: 0 0 35%;
  }
}
.activity_box a .img {
  padding-bottom: 63%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex: 0 0 100%;
  align-content: flex-start;
}
.activity_box .text {
  flex: 0 0 100%;
  padding: 1rem;
}
@media (min-width: 1200px) {
  .activity_box .text {
    flex: 0 0 65%;
  }
}
.activity_box .text .date {
  color: #D7B393;
  margin-bottom: 5px;
  font-size: 14px;
}
.activity_box .text .cate {
  color: #D7B393;
  margin-bottom: 5px;
  padding-left: 10px;
  font-size: 14px;
  position: relative;
}
.activity_box .text .cate::before {
  content: "|";
  color: #D7B393;
  position: absolute;
  left: 0;
  top: 0;
}
.activity_box .text .title {
  font-size: 1.25rem;
}
.activity_box .text .subtip {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 400;
}
.activity_box .text .apply_time {
  font-size: 1rem;
  margin-bottom: 0;
}
.activity_box .text .num {
  margin-bottom: 15px;
}

.menubox {
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .menubox {
    flex: 0 0 300px;
    width: 300px;
  }
}
.menubox .all-btn {
  color: var(--white);
  background-color: #D7B393;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 5px;
}
.menubox .title {
  font-size: 1.25rem;
  border-bottom: 1px solid #D7B393;
  padding-bottom: 0.5rem;
}
.menubox .subtitle {
  font-size: 1.25rem;
}
.menubox ul {
  margin-bottom: 1.5rem;
  display: none;
}
@media (min-width: 1200px) {
  .menubox ul {
    display: block;
  }
}
.menubox ul li a {
  color: #3c3c3c;
  margin-bottom: 0.2rem;
  padding: 0.3rem 0.6rem;
  display: block;
}
.menubox ul li.active a {
  color: #D7B393;
}
.menubox .search-wrapper.search_act {
  border-radius: 5px;
  border: 1px solid #eaeaea;
  margin-bottom: 1.5rem;
}
.menubox .search-wrapper.search_act .searchBtn {
  background-color: transparent;
  color: #3c3c3c;
}
.menubox .search-wrapper.search_act input {
  border: none;
}
.menubox .search-wrapper.search_act input:focus {
  outline: none;
}
.menubox .tag {
  display: flex;
  flex-wrap: wrap;
}
.menubox .tag .item {
  margin-right: 5px;
}
.menubox .tag .item a {
  border: 1px solid #eaeaea;
  padding: 5px;
  margin-right: 5px;
  color: #3c3c3c;
}
.menubox .activity_apply {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 1rem;
  border-radius: 1rem;
}
.menubox .activity_apply .title {
  font-size: 1.4rem;
}
.menubox .activity_apply .time {
  color: #D7B393;
  margin-bottom: 0.6rem;
}
.menubox .activity_apply .add {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 0.8rem;
  font-size: 1.125rem;
  color: #3c3c3c;
  margin-bottom: 0.5rem;
}

.calendar_box .head {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 0;
  font-size: 1.25rem;
  align-items: flex-end;
  color: #3c3c3c;
}
.calendar_box .head .mm-select {
  display: flex;
  align-items: center;
}
.calendar_box .head .mm-select .month_select {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  text-align: center;
  line-height: 36px;
  margin: 0 5px;
  cursor: pointer;
}
.calendar_box table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
}
.calendar_box table thead {
  background-color: #eaeaea;
}
.calendar_box table th {
  padding: 5px;
  font-weight: 400;
}
.calendar_box table td {
  width: 14%;
  height: 30px;
  border: 2px solid #eaeaea;
  vertical-align: middle;
}
.calendar_box table td .mm {
  padding: 5px;
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
}
.calendar_box table td a {
  color: #3c3c3c;
  display: block;
  height: 100%;
  padding: 0 2px;
  cursor: pointer;
  border: 2px solid transparent;
}
.calendar_box table td a .item {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 150px;
}
.calendar_box table td a .item .tag {
  font-weight: 600;
}
.calendar_box table td a .more {
  color: #167EB9;
}
.calendar_box table td .delay-name {
  font-size: 14px;
}
.calendar_box table td a:hover {
  border: 2px solid #333;
}
.calendar_box table .holiday {
  color: #C83E3E;
  background-color: #EBF5F9;
}
.calendar_box table .holiday .mm {
  color: #C83E3E;
  font-size: 1.125rem;
  font-weight: 600;
}
.calendar_box .trip_head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  color: #3c3c3c;
  border-bottom: 1px solid #D7B393;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  font-size: 1.3rem;
  font-weight: 600;
}
.calendar_box .trip_item {
  margin-bottom: 4rem;
}
.calendar_box .trip_item .item a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  border: 1px solid #eaeaea;
  padding: 0.8rem;
}
.calendar_box .trip_item .item a .date {
  flex: 0 0 100%;
  color: #D7B393;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .calendar_box .trip_item .item a .date {
    flex: 0 0 30%;
    width: 30%;
  }
}
.calendar_box .trip_item .item a .title {
  flex: 0 0 100%;
  color: #3c3c3c;
}
@media (min-width: 1200px) {
  .calendar_box .trip_item .item a .title {
    flex: 0 0 33.33%;
    width: 33.33%;
  }
}
.calendar_box .trip_item .item a .title span {
  color: #D7B393;
  border-left: 1px solid #D7B393;
  padding-left: 5px;
  display: block;
  margin-bottom: 5px;
}
.calendar_box .trip_item .item a .text {
  color: #878787;
}
.calendar_box .trip_item .item a .text i {
  color: #D7B393;
}
.calendar_box .trip_item .item a .text p {
  margin-bottom: 5px;
}

.service-content {
  margin-bottom: 30px;
}

.activity-items li {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #eaeaea;
  margin-bottom: 1.5rem;
}
.activity-items li a {
  width: 100%;
}
.activity-items li a .img {
  padding-bottom: 60%;
  background-repeat: no-repeat;
  background-size: contain;
}
.activity-items li .content {
  width: 100%;
  padding: 15px;
  margin-bottom: 0;
}
.activity-items li .content .date {
  display: block;
  color: #D7B393;
  width: 100%;
  margin-bottom: 5px;
}
.activity-items li .content p {
  color: #878787;
  margin-bottom: 5px;
  font-size: 14px;
}
.activity-items li .content .title {
  font-size: 1.4rem;
}
.activity-items li .content .cont {
  color: #878787;
  margin-bottom: 1rem;
}
.activity-items li .content .btn {
  width: 80px;
}
@media (min-width: 1200px) {
  .activity-items li a {
    flex: 0 0 35%;
  }
  .activity-items li .content {
    flex: 0 0 65%;
  }
}/*# sourceMappingURL=all.css.map */