@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700&display=swap");
@font-face {
  font-family: handwriting;
  src: url(../font/font1.ttf);
}
@font-face {
  font-family: bannerFont;
  src: url(../font/Senobi-Gothic-Medium.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
}

a {
  transition: all 0.3s;
  text-decoration: none;
}

p {
  margin-bottom: 0;
}

.handwriting {
  font-family: handwriting;
  font-size: 24px;
  letter-spacing: 2px;
}

.text-main {
  color: #74592b;
}

.hightLight {
  color: #d12626;
}

.hightLightBoldText {
  font-weight: bold;
  color: #d12626;
}

.hightLightText {
  color: #000;
}

.sectionTitle {
  text-align: center;
}
.sectionTitle h1,
.sectionTitle h2,
.sectionTitle p {
  color: #74592b;
  text-transform: uppercase;
}
.sectionTitle h1,
.sectionTitle h2 {
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 2px;
}
.sectionTitle p {
  letter-spacing: 2px;
}

.blueMoreBtn {
  border: 1px solid #74592b;
  background-color: #74592b;
  color: #fff;
  letter-spacing: 6px;
  padding: 5px 50px;
  border-radius: 30px;
  font-size: 22px;
}
.blueMoreBtn:hover {
  border: 1px solid #b8a482;
  background-color: #b8a482;
  color: #fff;
}

.innerPageBanner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 350px;
  border-bottom-left-radius: 50% 20px;
  border-bottom-right-radius: 50% 20px;
}
.innerPageBanner .pageBannerPhone {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.innerPageBanner .pageBannerPhone > a {
  font-size: 48px;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .innerPageBanner .pageBannerPhone > a {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .innerPageBanner .pageBannerPhone .pcInnerBannerText {
    display: none;
  }
}
.innerPageBanner .pageBannerPhone .mobileInnerBannerText {
  display: none;
}
@media (max-width: 768px) {
  .innerPageBanner .pageBannerPhone .mobileInnerBannerText {
    display: block;
  }
}
.innerPageBanner .breadcrumb li {
  font-size: 14px;
  color: #fff;
}
@media (max-width: 768px) {
  .innerPageBanner .breadcrumb li {
    display: none;
  }
}
.innerPageBanner .breadcrumb li a {
  color: #fff;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
}
@media (min-width: 769px) {
  .accordion-content {
    max-height: none !important;
  }
}

.accordion-content.show {
  max-height: 220px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

#topNavbar {
  position: fixed;
  width: 100%;
  height: 10vh;
  z-index: 99;
  background: #fff4e1;
  border-bottom-left-radius: 50% 20px;
  border-bottom-right-radius: 50% 20px;
  transition: all 0.3s;
}
#topNavbar .topBtns {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#topNavbar .topBtns .topNavLogo {
  transform: translateY(0px);
}
@media (max-width: 768px) {
  #topNavbar .topBtns .topNavLogo {
    transform: translateY(0px);
  }
}
@media (max-width: 768px) {
  #topNavbar .topBtns .topNavLogo img {
    width: 150px;
  }
}
#topNavbar .topBtns #topNavMenu svg,
#topNavbar .topBtns #topNavContact svg,
#topNavbar .topBtns #topNavMenuBackIcon svg {
  fill: #74592b;
  transition: all 0.3s;
}
#topNavbar .topBtns #topNavMenu:hover svg,
#topNavbar .topBtns #topNavContact:hover svg,
#topNavbar .topBtns #topNavMenuBackIcon:hover svg {
  fill: #fff;
}
#topNavbar #contactButtonGroup {
  position: relative;
}
#topNavbar #contactButtonGroup #expandedButtons {
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  top: 0px;
  right: 110%;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  #topNavbar #contactButtonGroup #expandedButtons {
    background: #fff4e1;
    flex-direction: column;
    top: 100%;
    right: -5px;
    padding: 5px;
    border-radius: 5px;
  }
}
#topNavbar #contactButtonGroup #expandedButtons.visible {
  opacity: 1;
  visibility: visible;
}
#topNavbar #contactButtonGroup #expandedButtons.visible .expandedBtn {
  transform: translateX(0px);
}
@media (max-width: 768px) {
  #topNavbar #contactButtonGroup #expandedButtons.visible .expandedBtn {
    transform: translateY(0px);
  }
}
#topNavbar #contactButtonGroup #expandedButtons .expandedBtn {
  margin: 0px 3px;
  transform: translateX(20px);
  transition: all 0.3s;
}
@media (max-width: 768px) {
  #topNavbar #contactButtonGroup #expandedButtons .expandedBtn {
    margin: 3px 0;
    transform: translateX(0px);
    transform: translateY(-20px);
  }
}
#topNavbar #contactButtonGroup #expandedButtons .expandedBtn #fbBtn {
  fill: #4778ff;
}
#topNavbar #contactButtonGroup #expandedButtons .expandedBtn #lineBtn {
  fill: #52cf4e;
  transition-delay: 0.1s;
}
#topNavbar #contactButtonGroup #expandedButtons .expandedBtn #phoneBtn {
  fill: #ffc164;
  transition-delay: 0.2s;
}
#topNavbar #contactButtonGroup #expandedButtons .expandedBtn #live800Btn {
  fill: #ff8484;
  transition-delay: 0.3s;
}
#topNavbar .menuContent {
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
#topNavbar .menuContent.activeMenu {
  opacity: 1;
  visibility: visible;
}
#topNavbar .menuContent.activeMenu .MenuSection1,
#topNavbar .menuContent.activeMenu .MenuSection2,
#topNavbar .menuContent.activeMenu .MenuSection3 {
  transform: translateX(0%);
  opacity: 1;
}
#topNavbar .menuContent .menuSection {
  width: 100%;
  display: flex;
  align-items: stretch;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  #topNavbar .menuContent .menuSection {
    flex-direction: column;
  }
}
#topNavbar .menuContent .menuSection a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  height: 30vh;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  #topNavbar .menuContent .menuSection a {
    width: 80%;
    margin: 10px auto;
    padding: 5% 0;
    border-radius: 10px;
  }
}
#topNavbar .menuContent .menuSection a img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  #topNavbar .menuContent .menuSection a img {
    filter: brightness(0.5);
  }
}
#topNavbar .menuContent .menuSection a .instructions {
  width: 60%;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#topNavbar .menuContent .menuSection a .instructions h3,
#topNavbar .menuContent .menuSection a .instructions p {
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 4px;
}
#topNavbar .menuContent .menuSection a .instructions h3 {
  font-size: 26px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  #topNavbar .menuContent .menuSection a .instructions p {
    display: none;
  }
}
#topNavbar .menuContent .menuSection a:hover img {
  filter: brightness(0.6);
}
#topNavbar .menuContent .menuSection a:hover .instructions h3 {
  font-size: 34px;
}
#topNavbar .menuContent .MenuSection1 {
  opacity: 0;
  transform: translateX(50%);
  transition-delay: 0.3s;
}
#topNavbar .menuContent .MenuSection2 {
  opacity: 0;
  transform: translateX(-50%);
  transition-delay: 0.4s;
}
#topNavbar .menuContent .MenuSection3 {
  opacity: 0;
  transform: translateX(50%);
  transition-delay: 0.5s;
}
#topNavbar .serviceMenuContent .pcServiceSection {
  display: none !important;
}
#topNavbar .serviceMenuContent.activeMenu .pcServiceSection {
  display: flex !important;
}

.indexBanner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url("../img/indexBanner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding-bottom: 20px;
  border-bottom-left-radius: 50% 20px;
  border-bottom-right-radius: 50% 20px;
  position: relative;
}
@media (max-width: 768px) {
  .indexBanner {
    background-position: 30% center;
    background: url("../img/indexBannerMobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.indexBanner .bannerMask {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.indexBanner .bannerContent {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .indexBanner .bannerContent > h1 img {
    width: 70%;
  }
}
.indexBanner .bannerContent > p {
  color: #fff;
  font-family: bannerFont;
  font-size: 40px;
  text-shadow: 0 0 4px #000;
}
@media (max-width: 768px) {
  .indexBanner .bannerContent > p {
    display: none;
  }
}
.indexBanner .bannerContent .mobileImg {
  display: none;
}
@media (max-width: 768px) {
  .indexBanner .bannerContent .mobileImg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .indexBanner .bannerContent .mobileImg p {
    font-family: bannerFont;
    color: #fff;
    text-shadow: 0 0 4px #000;
    font-size: 24px;
  }
}
.indexBanner .bannerContent .indexBannerPhone {
  width: 100%;
  margin: 30px 0;
}
.indexBanner .bannerContent .indexBannerPhone a {
  color: #fff;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 4px;
  display: block;
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .indexBanner .bannerContent .indexBannerPhone a {
    font-size: 28px;
  }
}
.indexBanner .bannerContent .indexBannerPhone .phoneBox p {
  color: #fff;
  font-size: 32px;
}

.indexAbout {
  margin-top: 100px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .indexAbout {
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
  }
}
.indexAbout .aboutContent {
  width: 900px;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .indexAbout .aboutContent {
    width: 100%;
  }
}
.indexAbout .aboutContent p {
  margin-bottom: 20px;
  font-weight: 300;
}
.indexAbout .aboutContent .aboutPageContent h1 {
  font-size: 24px;
}
.indexAbout .aboutContent .aboutPageContent h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.emotional {
  margin-top: 0px;
}

.slogan {
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .slogan {
    height: 250px !important;
    margin: 50px 0;
  }
}
.slogan .textBg {
  position: absolute;
}
.slogan .bg1 {
  max-width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.slogan .bg2 {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3;
}
@media (max-width: 768px) {
  .slogan .bg2 {
    width: 80%;
  }
}
.slogan .blueCircle {
  width: 400px;
  height: 400px;
  position: absolute;
  transform: translate(-50%, -50%) !important;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(255, 244, 225, 0.5), #fff, #fff);
}
@media (max-width: 768px) {
  .slogan .blueCircle {
    width: 200px;
    height: 200px;
  }
}

.slogan1 {
  height: 526px;
}
.slogan1 .blueCircle {
  top: 50%;
  left: 40%;
}
@media (max-width: 768px) {
  .slogan1 .blueCircle {
    left: 60%;
  }
}

.slogan2 {
  height: 517px;
}
.slogan2 .blueCircle {
  top: 56%;
  left: 50%;
}

.slogan3 {
  height: 575px;
}
.slogan3 .blueCircle {
  top: 56%;
  left: 50%;
}

.slogan4 {
  height: 569px;
}
.slogan4 .bg3 {
  top: 80%;
  left: 65%;
  transform: translate(-50%, -50%) !important;
  z-index: 3;
}
@media (max-width: 768px) {
  .slogan4 .bg3 {
    top: 90%;
    left: 50%;
    width: 180px;
  }
}

.pcServiceSection {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pcServiceSection .topIconService {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  padding: 0 100px;
}
@media (max-width: 768px) {
  .pcServiceSection .topIconService {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding: 0 10px;
  }
}
.pcServiceSection .topIconService .serviceIconBox {
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 5px 1px #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .pcServiceSection .topIconService .serviceIconBox {
    padding: 10px;
  }
}
.pcServiceSection .topIconService .serviceIconBox img {
  width: 40px;
}
@media (max-width: 768px) {
  .pcServiceSection .topIconService .serviceIconBox img {
    width: 30px;
  }
}
.pcServiceSection .topIconService .serviceIconBox h4 {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .pcServiceSection .topIconService .serviceIconBox h4 {
    margin-top: 5px;
  }
}
.pcServiceSection .topIconService .serviceIconBox h4 a {
  font-size: 20px;
  color: #74592b;
  letter-spacing: 4px;
}
.pcServiceSection .topIconService .serviceIconBox h4 a::before, .pcServiceSection .topIconService .serviceIconBox h4 a::after {
  content: "-";
}
.pcServiceSection .topIconService .serviceIconBox h4 a:hover {
  color: #b8a482;
}
@media (max-width: 768px) {
  .pcServiceSection .topIconService .serviceIconBox h4 a {
    letter-spacing: 0;
  }
}
.pcServiceSection .topIconService .serviceIconBox p {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .pcServiceSection .topIconService .serviceIconBox p {
    margin-top: 5px;
  }
}
.pcServiceSection .bottomImgService {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  padding: 0 100px;
}
@media (max-width: 768px) {
  .pcServiceSection .bottomImgService {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 10px;
  }
}
.pcServiceSection .bottomImgService .ImgServiceBox {
  border-radius: 20px;
  width: 100%;
  display: block;
  text-align: center;
  position: relative;
  box-shadow: 0.5px 0.5px 1px #666;
  overflow: hidden;
}
.pcServiceSection .bottomImgService .ImgServiceBox img {
  width: 100%;
  transform: scale(1);
  transition: all 0.5s;
}
.pcServiceSection .bottomImgService .ImgServiceBox p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0.5px 0.5px 1px #333;
  letter-spacing: 2px;
}
.pcServiceSection .bottomImgService .ImgServiceBox:hover img {
  transform: scale(1.1);
}

.indexService,
.feedbackContent {
  width: 80%;
  margin: 0 auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .indexService,
  .feedbackContent {
    width: 95%;
  }
}
.indexService .serviceSwiper,
.indexService .feedbackSwiper,
.feedbackContent .serviceSwiper,
.feedbackContent .feedbackSwiper {
  width: 100%;
  height: 600px;
}
.indexService .serviceSwiper .indexService-wrapper,
.indexService .serviceSwiper .indexFeedback-wrapper,
.indexService .feedbackSwiper .indexService-wrapper,
.indexService .feedbackSwiper .indexFeedback-wrapper,
.feedbackContent .serviceSwiper .indexService-wrapper,
.feedbackContent .serviceSwiper .indexFeedback-wrapper,
.feedbackContent .feedbackSwiper .indexService-wrapper,
.feedbackContent .feedbackSwiper .indexFeedback-wrapper {
  width: 80%;
  height: 550px;
}
.indexService .serviceSwiper .swiper-button-next:after,
.indexService .serviceSwiper .swiper-button-prev:after,
.indexService .feedbackSwiper .swiper-button-next:after,
.indexService .feedbackSwiper .swiper-button-prev:after,
.feedbackContent .serviceSwiper .swiper-button-next:after,
.feedbackContent .serviceSwiper .swiper-button-prev:after,
.feedbackContent .feedbackSwiper .swiper-button-next:after,
.feedbackContent .feedbackSwiper .swiper-button-prev:after {
  color: rgba(255, 255, 255, 0.6);
}
.indexService .serviceSwiper .serviceCard,
.indexService .feedbackSwiper .serviceCard,
.feedbackContent .serviceSwiper .serviceCard,
.feedbackContent .feedbackSwiper .serviceCard {
  width: 100%;
  height: 100%;
  position: relative;
}
.indexService .serviceSwiper .serviceCard .serviceCardBg,
.indexService .feedbackSwiper .serviceCard .serviceCardBg,
.feedbackContent .serviceSwiper .serviceCard .serviceCardBg,
.feedbackContent .feedbackSwiper .serviceCard .serviceCardBg {
  filter: brightness(0.9);
  border-radius: 30px;
  position: absolute;
  width: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .indexService .serviceSwiper .serviceCard .serviceCardBg,
  .indexService .feedbackSwiper .serviceCard .serviceCardBg,
  .feedbackContent .serviceSwiper .serviceCard .serviceCardBg,
  .feedbackContent .feedbackSwiper .serviceCard .serviceCardBg {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.indexService .serviceSwiper .serviceCard .serviceName,
.indexService .feedbackSwiper .serviceCard .serviceName,
.feedbackContent .serviceSwiper .serviceCard .serviceName,
.feedbackContent .feedbackSwiper .serviceCard .serviceName {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
}
.indexService .serviceSwiper .serviceCard .blueMoreBtn,
.indexService .feedbackSwiper .serviceCard .blueMoreBtn,
.feedbackContent .serviceSwiper .serviceCard .blueMoreBtn,
.feedbackContent .feedbackSwiper .serviceCard .blueMoreBtn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 25px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #fff;
  color: #000;
  background-color: #fff;
  letter-spacing: 2px;
}
.indexService .serviceSwiper .serviceCard .blueMoreBtn:hover,
.indexService .feedbackSwiper .serviceCard .blueMoreBtn:hover,
.feedbackContent .serviceSwiper .serviceCard .blueMoreBtn:hover,
.feedbackContent .feedbackSwiper .serviceCard .blueMoreBtn:hover {
  border: 1px solid #74592b;
  background-color: #74592b;
  color: #fff;
}
.indexService .swiper-pagination,
.feedbackContent .swiper-pagination {
  bottom: 0;
}

.indexProcess {
  margin-top: 100px;
  width: 100%;
  margin: 0 auto;
  background-image: linear-gradient(to bottom, #fff 0%, rgba(255, 244, 225, 0.5) 50%, #fff 100%);
}
.indexProcess .processContent {
  width: 80%;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .indexProcess .processContent {
    width: 100%;
    margin-top: 20px;
  }
}
.indexProcess .processContent > img {
  width: 50px;
  height: 50px;
  transform: translateY(120px);
}
.indexProcess .processContent .processCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0px 5px;
}
@media (max-width: 768px) {
  .indexProcess .processContent .processCard {
    margin: 0;
  }
}
.indexProcess .processContent .processCard .cardTitle {
  text-align: center;
  margin-bottom: 20px;
  color: #74592b;
}
.indexProcess .processContent .processCard .cardTitle p {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: 500;
}
.indexProcess .processContent .swiper-container {
  width: 90%;
  overflow-x: hidden;
}
.indexProcess .processContent .swiper-container .swiper-wrapper {
  margin-top: 20px;
  height: 500px;
}
.indexProcess .processContent .swiper-container .swiper-pagination {
  bottom: initial;
  top: 10px;
}
.indexProcess .processContent .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 20px;
  position: relative;
}
.indexProcess .processContent .swiper-container .swiper-button-next,
.indexProcess .processContent .swiper-container .swiper-button-prev {
  background: url(../img/step/expand_less_black_24dp.png);
  background-size: cover;
  background-position: center;
}
.indexProcess .processContent .swiper-container .swiper-button-next::after,
.indexProcess .processContent .swiper-container .swiper-button-prev::after {
  content: "";
}
.indexProcess .processContent .swiper-container .swiper-button-prev {
  top: 35%;
  left: 5px;
}
.indexProcess .processContent .swiper-container .swiper-button-next {
  top: 35%;
  right: 5px;
}

.indexResume {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.resume {
  width: 80%;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .resume {
    flex-direction: column;
    align-items: center;
  }
}
.resume > img {
  width: 50%;
}
@media (max-width: 768px) {
  .resume > img {
    width: 100%;
  }
}
.resume .video {
  flex: 1;
  padding-right: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.resume .video iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .resume .video {
    padding-right: 0;
    padding-top: 0;
  }
}
.resume .resumeContent .resumeTitle {
  border-left: 2px solid #74592b;
  padding-left: 10px;
  margin-bottom: 30px;
  color: #74592b;
}
@media (max-width: 768px) {
  .resume .resumeContent .resumeTitle {
    border-left: none;
  }
}
.resume .resumeContent .resumeTitle p {
  font-size: 18px;
}
@media (max-width: 768px) {
  .resume .resumeContent .resumeTitle p {
    text-align: center;
  }
}
.resume .resumeContent .resumeTitle h4 {
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .resume .resumeContent .resumeTitle h4 {
    text-align: center;
  }
}
.resume .resumeContent .resumeTitle h4 span {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  padding-left: 20px;
}
.resume .resumeContent .resumeList {
  padding-left: 10px;
}
.resume .resumeContent .resumeList .listBox {
  display: flex;
}
@media (max-width: 768px) {
  .resume .resumeContent .resumeList .listBox {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .resume .resumeContent .resumeList .listBox > div {
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 20px;
  }
}
.resume .resumeContent .resumeList .listBox ul {
  margin-left: 10px;
  padding-left: 10px;
  list-style: none;
  border-left: 1px solid #000;
}
@media (max-width: 768px) {
  .resume .resumeContent .resumeList .listBox ul {
    border-left: none;
    margin-left: 0px;
    padding-left: 0px;
  }
}

footer {
  width: 100%;
  background-image: linear-gradient(#fff, #fff4e1, #fff);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
footer .sectionTitle {
  padding-top: 50px;
}
footer .footerContent {
  padding: 50px 0;
}
@media (max-width: 768px) {
  footer .footerContent {
    width: 90%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding-bottom: 30px;
  }
}
footer .footerContent .footerPhoneBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #74592b;
}
@media (max-width: 768px) {
  footer .footerContent .footerPhoneBox {
    margin-top: 10px;
  }
}
footer .footerContent .footerPhoneBox a {
  font-size: 30px;
  color: #74592b;
}
footer .footerContent .footerPhoneBox a:hover {
  color: #b8a482;
}
footer .social a {
  margin: 0px 5px;
}
footer .social a img {
  width: 40px;
}
footer .footerSlogan {
  text-align: center;
  padding: 25px 0;
  color: #74592b;
  font-size: 14px;
}
footer .copyright {
  width: 100%;
  background-color: #fff4e1;
  color: #74592b;
  position: relative;
  padding: 10px 0;
}
footer .copyright .pacts {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  footer .copyright .pacts {
    position: relative;
    top: initial;
    right: initial;
    transform: translateY(0%);
    text-align: center;
    margin-bottom: 5px;
  }
}
footer .copyright .pacts > a {
  color: #74592b;
  padding: 0 4px;
  font-size: 12px;
  border-left: 1px solid #74592b;
}
footer .copyright .pacts > a:first-child {
  border: none;
}
footer .copyright > p {
  text-align: center;
  font-size: 12px;
}
footer .copyright > p img {
  width: 100px;
}

.certificate {
  width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .certificate {
    width: 100%;
    flex-direction: column;
  }
}
.certificate img {
  width: 100%;
  margin: 50px 10px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .certificate img {
    margin: 10px 0;
    width: 80%;
  }
}

.faq {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq {
    width: 90%;
  }
}

.myAccordion {
  width: 100%;
  margin: 0 auto;
  --bs-accordion-bg: transparent;
}
.myAccordion .accordion-item {
  border: none;
  margin: 10px 0;
}
.myAccordion .accordion-header .accordion-button,
.myAccordion .accordion-header .accordion-button.collapsed {
  border-radius: 10px;
  font-size: 16px;
  letter-spacing: 4px;
  justify-content: start;
  background: #b8a482;
  border: 1px solid #74592b;
  color: #fff;
  line-height: 1;
  padding: 10px 20px;
  transition: all 0.3s;
}
.myAccordion .accordion-header .accordion-button::after,
.myAccordion .accordion-header .accordion-button.collapsed::after {
  content: none;
}
.myAccordion .accordion-header .accordion-button:focus,
.myAccordion .accordion-header .accordion-button.collapsed:focus {
  outline: none;
  box-shadow: none;
}
.myAccordion .accordion-header .accordion-button:hover,
.myAccordion .accordion-header .accordion-button.collapsed:hover {
  background: #74592b;
}
.myAccordion .accordion-header .accordion-button {
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}
.myAccordion .accordion-body {
  color: #000;
  border: 1px solid #74592b;
  border-top: none;
  border-radius: 0px 0px 10px 10px;
}

#qaContent {
  padding-top: 30px;
  padding-bottom: 50px;
}
#qaContent .accordion-header .accordion-button,
#qaContent .accordion-header .accordion-button.collapsed {
  border: none;
}

.aboutSwiper {
  display: block;
}

.chargeContainer {
  max-width: 1280px;
  padding-bottom: 150px;
}
.chargeContainer h1 {
  color: #74592b;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.chargeContainer p {
  font-weight: 300;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .chargeContainer p {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .chargeContainer {
    padding: 0;
    padding-bottom: 50px;
  }
}

.priceCategoryTitle {
  font-size: 24px;
  color: #74592b;
  text-align: center;
  font-weight: 300;
  letter-spacing: 4px;
  margin-top: 60px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .priceCategoryTitle {
    display: none;
  }
}

.priceTable {
  border-spacing: 5px;
  border-collapse: separate;
}
@media (max-width: 768px) {
  .priceTable {
    display: none;
  }
}
.priceTable th,
.priceTable td {
  font-size: 16px;
  font-weight: 300;
  border-radius: 5px;
  padding: 12px;
  border: none;
}
.priceTable thead {
  background: #74592b;
}
.priceTable thead th {
  text-align: center;
  color: #fff;
  font-weight: bolder;
}
.priceTable thead th:nth-child(1) {
  width: 15%;
}
.priceTable thead th:nth-child(2) {
  width: 10%;
}
.priceTable thead th:nth-child(3) {
  width: 10%;
}
.priceTable thead th:nth-child(4) {
  width: 37%;
}
.priceTable thead th:nth-child(5) {
  width: 28%;
}
.priceTable tbody tr:nth-child(n) {
  background: #fffff8;
}
.priceTable tbody tr:nth-child(2n) {
  background: #fff4e1;
}
.priceTable tbody td:nth-child(1),
.priceTable tbody td:nth-child(2),
.priceTable tbody td:nth-child(3) {
  text-align: center;
}

@media (max-width: 768px) {
  .pcPriceText {
    display: none;
  }
}

@media (max-width: 768px) {
  .chargeText {
    padding: 0 10%;
  }
}

.priceCategoryBtn {
  display: none;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  background: #74592b;
  color: #fff;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .priceCategoryBtn {
    display: block;
  }
}

#m-charge01,
#m-charge02,
#m-charge03,
#m-charge04,
#m-charge05,
#m-charge06,
#m-charge07,
#m-charge08 {
  display: none;
}
@media (max-width: 768px) {
  #m-charge01,
  #m-charge02,
  #m-charge03,
  #m-charge04,
  #m-charge05,
  #m-charge06,
  #m-charge07,
  #m-charge08 {
    display: block;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }
  #m-charge01 .accordion-item,
  #m-charge02 .accordion-item,
  #m-charge03 .accordion-item,
  #m-charge04 .accordion-item,
  #m-charge05 .accordion-item,
  #m-charge06 .accordion-item,
  #m-charge07 .accordion-item,
  #m-charge08 .accordion-item {
    border: none;
    margin: 10px 0;
    padding: 0px;
  }
  #m-charge01 .accordion-item:nth-child(even) .accordion-header,
  #m-charge02 .accordion-item:nth-child(even) .accordion-header,
  #m-charge03 .accordion-item:nth-child(even) .accordion-header,
  #m-charge04 .accordion-item:nth-child(even) .accordion-header,
  #m-charge05 .accordion-item:nth-child(even) .accordion-header,
  #m-charge06 .accordion-item:nth-child(even) .accordion-header,
  #m-charge07 .accordion-item:nth-child(even) .accordion-header,
  #m-charge08 .accordion-item:nth-child(even) .accordion-header {
    background: #fff4e1;
  }
  #m-charge01 .accordion-item:nth-child(even) .accordion-header .accordion-button,
  #m-charge02 .accordion-item:nth-child(even) .accordion-header .accordion-button,
  #m-charge03 .accordion-item:nth-child(even) .accordion-header .accordion-button,
  #m-charge04 .accordion-item:nth-child(even) .accordion-header .accordion-button,
  #m-charge05 .accordion-item:nth-child(even) .accordion-header .accordion-button,
  #m-charge06 .accordion-item:nth-child(even) .accordion-header .accordion-button,
  #m-charge07 .accordion-item:nth-child(even) .accordion-header .accordion-button,
  #m-charge08 .accordion-item:nth-child(even) .accordion-header .accordion-button {
    color: #000;
  }
  #m-charge01 .accordion-item .accordion-header,
  #m-charge02 .accordion-item .accordion-header,
  #m-charge03 .accordion-item .accordion-header,
  #m-charge04 .accordion-item .accordion-header,
  #m-charge05 .accordion-item .accordion-header,
  #m-charge06 .accordion-item .accordion-header,
  #m-charge07 .accordion-item .accordion-header,
  #m-charge08 .accordion-item .accordion-header {
    font-size: 30px;
    margin: 0;
    padding: 0;
    background: #74592b;
  }
  #m-charge01 .accordion-item .accordion-header .accordion-button,
  #m-charge02 .accordion-item .accordion-header .accordion-button,
  #m-charge03 .accordion-item .accordion-header .accordion-button,
  #m-charge04 .accordion-item .accordion-header .accordion-button,
  #m-charge05 .accordion-item .accordion-header .accordion-button,
  #m-charge06 .accordion-item .accordion-header .accordion-button,
  #m-charge07 .accordion-item .accordion-header .accordion-button,
  #m-charge08 .accordion-item .accordion-header .accordion-button {
    display: block;
    text-align: center;
    font-size: 22px;
    letter-spacing: 0;
    text-indent: 0;
    direction: ltr;
    background: transparent;
    margin: 0 auto;
    padding: 15px;
    color: #fff;
    position: relative;
  }
  #m-charge01 .accordion-item .accordion-header .accordion-button::after,
  #m-charge02 .accordion-item .accordion-header .accordion-button::after,
  #m-charge03 .accordion-item .accordion-header .accordion-button::after,
  #m-charge04 .accordion-item .accordion-header .accordion-button::after,
  #m-charge05 .accordion-item .accordion-header .accordion-button::after,
  #m-charge06 .accordion-item .accordion-header .accordion-button::after,
  #m-charge07 .accordion-item .accordion-header .accordion-button::after,
  #m-charge08 .accordion-item .accordion-header .accordion-button::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    right: 10%;
  }
  #m-charge01 .accordion-item .accordion-body,
  #m-charge02 .accordion-item .accordion-body,
  #m-charge03 .accordion-item .accordion-body,
  #m-charge04 .accordion-item .accordion-body,
  #m-charge05 .accordion-item .accordion-body,
  #m-charge06 .accordion-item .accordion-body,
  #m-charge07 .accordion-item .accordion-body,
  #m-charge08 .accordion-item .accordion-body {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }
  #m-charge01 .accordion-item .accordion-body .list-box,
  #m-charge02 .accordion-item .accordion-body .list-box,
  #m-charge03 .accordion-item .accordion-body .list-box,
  #m-charge04 .accordion-item .accordion-body .list-box,
  #m-charge05 .accordion-item .accordion-body .list-box,
  #m-charge06 .accordion-item .accordion-body .list-box,
  #m-charge07 .accordion-item .accordion-body .list-box,
  #m-charge08 .accordion-item .accordion-body .list-box {
    text-align: left;
    background: #fff4e1;
    border-radius: 10px;
    margin: 10px 0;
    box-shadow: 1px 1px 2px 1px #ccc;
  }
  #m-charge01 .accordion-item .accordion-body .list-box h5,
  #m-charge02 .accordion-item .accordion-body .list-box h5,
  #m-charge03 .accordion-item .accordion-body .list-box h5,
  #m-charge04 .accordion-item .accordion-body .list-box h5,
  #m-charge05 .accordion-item .accordion-body .list-box h5,
  #m-charge06 .accordion-item .accordion-body .list-box h5,
  #m-charge07 .accordion-item .accordion-body .list-box h5,
  #m-charge08 .accordion-item .accordion-body .list-box h5 {
    font-size: 16px;
    font-weight: 600;
    padding-left: 10px;
    padding-top: 10px;
  }
  #m-charge01 .accordion-item .accordion-body .list-box p,
  #m-charge02 .accordion-item .accordion-body .list-box p,
  #m-charge03 .accordion-item .accordion-body .list-box p,
  #m-charge04 .accordion-item .accordion-body .list-box p,
  #m-charge05 .accordion-item .accordion-body .list-box p,
  #m-charge06 .accordion-item .accordion-body .list-box p,
  #m-charge07 .accordion-item .accordion-body .list-box p,
  #m-charge08 .accordion-item .accordion-body .list-box p {
    font-size: 16px;
    padding: 0;
    margin: 0;
    padding-left: 10px;
    padding-bottom: 10px;
  }
  #m-charge01 .accordion-item .accordion-button:not(.collapsed),
  #m-charge02 .accordion-item .accordion-button:not(.collapsed),
  #m-charge03 .accordion-item .accordion-button:not(.collapsed),
  #m-charge04 .accordion-item .accordion-button:not(.collapsed),
  #m-charge05 .accordion-item .accordion-button:not(.collapsed),
  #m-charge06 .accordion-item .accordion-button:not(.collapsed),
  #m-charge07 .accordion-item .accordion-button:not(.collapsed),
  #m-charge08 .accordion-item .accordion-button:not(.collapsed) {
    display: block;
    color: #fff !important;
    background-color: #74592b;
  }
  #m-charge01 .accordion-item .accordion-button:not(.collapsed)::after,
  #m-charge02 .accordion-item .accordion-button:not(.collapsed)::after,
  #m-charge03 .accordion-item .accordion-button:not(.collapsed)::after,
  #m-charge04 .accordion-item .accordion-button:not(.collapsed)::after,
  #m-charge05 .accordion-item .accordion-button:not(.collapsed)::after,
  #m-charge06 .accordion-item .accordion-button:not(.collapsed)::after,
  #m-charge07 .accordion-item .accordion-button:not(.collapsed)::after,
  #m-charge08 .accordion-item .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
  }
  #m-charge01 .accordion-item .accordion-button:focus,
  #m-charge02 .accordion-item .accordion-button:focus,
  #m-charge03 .accordion-item .accordion-button:focus,
  #m-charge04 .accordion-item .accordion-button:focus,
  #m-charge05 .accordion-item .accordion-button:focus,
  #m-charge06 .accordion-item .accordion-button:focus,
  #m-charge07 .accordion-item .accordion-button:focus,
  #m-charge08 .accordion-item .accordion-button:focus {
    box-shadow: none;
  }
}

#service {
  width: 80%;
  margin: 0 auto;
  padding-top: 100px;
}
@media (max-width: 768px) {
  #service {
    width: 100%;
    padding-top: 50px;
  }
}
#service #articleTitle h1 {
  font-size: 26px;
  color: #74592b;
  font-weight: 300;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #service #articleTitle h1 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  #service #articleContent {
    width: 80%;
    margin: 0 auto;
  }
}
#service #articleContent h2,
#service #articleContent h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #d12626;
}
#service #articleContent p {
  margin-bottom: 10px;
}
#service #articleImage {
  margin-top: 20px;
}
#service #articleImage img {
  width: 100%;
}
#service .mobile {
  display: none;
  margin: 50px 0;
  text-align: center;
}
@media (max-width: 768px) {
  #service .mobile {
    display: block;
  }
}

#filterButtons {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  #filterButtons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 10px;
    margin-bottom: 20px;
  }
}
#filterButtons button {
  margin: 0 10px;
  padding: 4px 10px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #74592b;
  color: #74592b;
}
#filterButtons .activeBtn {
  background-color: #74592b;
  color: #fff;
}

.caseListContent .sectionTitle {
  padding-top: 100px;
  padding-bottom: 50px;
}
.caseListContent #caseListboxes {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .caseListContent #caseListboxes {
    width: 100%;
  }
}
.caseListContent #caseListboxes .listBox {
  border-radius: 5px;
  margin: 20px 0;
  padding: 20px;
}
@media (max-width: 768px) {
  .caseListContent #caseListboxes .listBox {
    border-radius: 0;
    margin: 0;
  }
}
.caseListContent #caseListboxes .listBox .caseTitle {
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .caseListContent #caseListboxes .listBox .caseTitle {
    padding-left: 5%;
  }
}
.caseListContent #caseListboxes .listBox .caseTitle a {
  color: #74592b;
}
.caseListContent #caseListboxes .listBox .caseTitle a:hover {
  color: #b8a482;
}
.caseListContent #caseListboxes .listBox .caseDescription {
  margin-bottom: 10px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .caseListContent #caseListboxes .listBox .caseDescription {
    display: none;
  }
}
.caseListContent #caseListboxes .listBox .readMore {
  text-align: right;
}
@media (max-width: 768px) {
  .caseListContent #caseListboxes .listBox .readMore {
    display: none;
  }
}
.caseListContent #caseListboxes .listBox .readMore a {
  font-size: 14px;
  color: #74592b;
}
.caseListContent #caseListboxes .listBox .readMore a:hover {
  color: #b8a482;
}
.caseListContent #caseListboxes .listBox:nth-child(even) {
  border: 1px solid #74592b;
}
@media (max-width: 768px) {
  .caseListContent #caseListboxes .listBox:nth-child(even) {
    border: none;
  }
}
.caseListContent #caseListboxes .listBox:nth-child(odd) {
  background: #fff4e1;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .caseListContent #caseListboxes .listBox:nth-child(odd) {
    box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.3);
  }
}
.caseListContent .pagination {
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
}
.pagination .page-item {
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #74592b;
}
.pagination .page-item .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 36px;
  height: 36px;
  border: 1px solid #74592b;
  border-radius: 50%;
  margin: 0px auto;
  color: #74592b;
}
.pagination .page-item.active .page-link {
  background-color: #b8a482;
}
.pagination .page-item:nth-child(1) .page-link,
.pagination .page-item:last-child .page-link,
.pagination .page-item.disabled .page-link {
  font-size: 26px;
  border: none;
  padding-bottom: 14px;
}

.casePageContent {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .casePageContent {
    width: 100%;
  }
}
.casePageContent #caseTitle {
  color: #74592b;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .casePageContent #caseTitle {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .casePageContent #caseArticle {
    width: 80%;
    margin: 0 auto;
  }
}
.casePageContent #caseArticle h2,
.casePageContent #caseArticle h3 {
  color: #74592b;
  font-size: 24px;
  font-weight: 300;
}
.casePageContent #caseArticle p {
  margin-bottom: 20px;
}
.casePageContent .btns {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .casePageContent .btns {
    justify-content: center;
  }
}
.casePageContent .btns a {
  display: flex;
  align-items: center;
  color: #74592b;
}
.casePageContent .btns a:hover {
  color: #b8a482;
}
@media (max-width: 768px) {
  .casePageContent .btns a {
    flex-direction: column;
  }
}
.casePageContent .btns a img {
  margin: 0 5px;
  width: 20px;
}
@media (max-width: 768px) {
  .casePageContent .btns a img {
    width: 40px;
  }
}
@media (max-width: 768px) {
  .casePageContent .btns a:last-child {
    display: none;
  }
}
.casePageContent .moreCase {
  margin-top: 50px;
}
.casePageContent .moreCase h2 {
  color: #74592b;
  text-align: center;
  font-weight: 300;
  font-size: 28px;
}
.casePageContent #caseListboxes .listBox {
  border-radius: 5px;
  margin: 20px 0;
  padding: 20px;
}
@media (max-width: 768px) {
  .casePageContent #caseListboxes .listBox {
    margin: 0;
  }
}
.casePageContent #caseListboxes .listBox .caseTitle {
  font-size: 18px;
  font-weight: 300;
}
.casePageContent #caseListboxes .listBox .caseTitle a {
  color: #74592b;
}
.casePageContent #caseListboxes .listBox .caseTitle a:hover {
  color: #b8a482;
}
@media (max-width: 768px) {
  .casePageContent #caseListboxes .listBox .caseTitle {
    padding-left: 5%;
  }
}
.casePageContent #caseListboxes .listBox .caseDescription {
  margin-bottom: 10px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .casePageContent #caseListboxes .listBox .caseDescription {
    display: none;
  }
}
.casePageContent #caseListboxes .listBox .readMore {
  text-align: right;
}
@media (max-width: 768px) {
  .casePageContent #caseListboxes .listBox .readMore {
    display: none;
  }
}
.casePageContent #caseListboxes .listBox .readMore a {
  font-size: 14px;
  color: #74592b;
}
.casePageContent #caseListboxes .listBox .readMore a:hover {
  color: #b8a482;
}
.casePageContent #caseListboxes .listBox:nth-child(even) {
  border: 1px solid #74592b;
}
@media (max-width: 768px) {
  .casePageContent #caseListboxes .listBox:nth-child(even) {
    border: 0;
  }
}
.casePageContent #caseListboxes .listBox:nth-child(odd) {
  background: #fff4e1;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .casePageContent #caseListboxes .listBox:nth-child(odd) {
    box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.3);
  }
}

#mediaContent {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #mediaContent {
    width: 100%;
  }
}
#mediaContent #caseList {
  padding-top: 50px;
}
#mediaContent #caseList .casebox {
  margin-bottom: 10px;
}
#mediaContent #caseList .casebox .caseTitle {
  background: #fff4e1;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  border-left: 5px solid #74592b;
  box-shadow: 0.5px 0.5px 1px #333;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  #mediaContent #caseList .casebox .caseTitle {
    padding: 10px 10px;
    border-left: none;
  }
}
#mediaContent #caseList .casebox .caseTitle:hover, #mediaContent #caseList .casebox .caseTitle:focus {
  background: #b8a482;
}
#mediaContent #caseList .casebox .caseTitle h2 {
  font-size: 26px;
}
@media (max-width: 768px) {
  #mediaContent #caseList .casebox .caseTitle h2 {
    font-size: 16px;
  }
}
#mediaContent #caseList .casebox .caseTitle img {
  width: 32px;
  transform: rotate(0 deg);
  transition: all 0.3s;
}
@media (max-width: 768px) {
  #mediaContent #caseList .casebox .caseTitle img {
    width: 24px;
  }
}
#mediaContent #caseList .casebox .caseTitle.active {
  background: #b8a482;
}
#mediaContent #caseList .casebox .caseTitle.active img {
  transform: rotate(180deg);
}
#mediaContent #caseList .casebox .caseContent {
  margin-top: 20px;
  padding: 0 10px;
  font-size: 18px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  display: grid;
  place-content: center;
}
#mediaContent #caseList .casebox .caseContent iframe {
  width: 640px;
  height: 360px;
}
@media (max-width: 768px) {
  #mediaContent #caseList .casebox .caseContent iframe {
    max-width: 100%;
    height: 360px;
  }
}
#mediaContent #caseList .casebox .caseContent.active {
  max-height: 3000px;
}
#mediaContent #pagination {
  display: flex;
  justify-content: center;
}
#mediaContent #pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff4e1;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
  color: #000;
}
#mediaContent #pagination a.active {
  background-color: #000;
  color: #fff4e1;
  font-weight: bold;
}

#psychologicalTest {
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #psychologicalTest {
    width: 90%;
  }
}
#psychologicalTest h1,
#psychologicalTest h2 {
  margin: 20px 0;
  text-align: center;
}
#psychologicalTest p {
  font-size: 18px;
  line-height: 1.75;
}
#psychologicalTest #quizForm label {
  display: block;
  font-size: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
}
#psychologicalTest #quizForm .radioDiv {
  font-size: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  padding-left: 5px;
}
#psychologicalTest #quizForm .radioDiv input[type=radio] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: 5%;
  margin-right: 2%;
}
#psychologicalTest #quizForm input[type=button] {
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #74592b;
  color: #fff;
  padding: 10px 20px;
  border: none;
}
#psychologicalTest #result {
  margin-top: 20px;
  font-size: 24px;
  color: #b8a482;
  padding: 0 20px;
  text-align: center;
}

.violentPartnerContent h1 {
  text-align: left;
  margin-bottom: 20px;
  color: #705a32;
}
.violentPartnerContent h2,
.violentPartnerContent h3,
.violentPartnerContent h4 {
  margin: 20px 0;
}
.violentPartnerContent h2 {
  font-size: 32px;
  color: #705a32;
}
@media (max-width: 1024px) {
  .violentPartnerContent h2 {
    font-size: 26px;
  }
}
.violentPartnerContent h3 {
  font-size: 18px;
  color: #d12626;
}
.violentPartnerContent img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 1px 1px 3px #fdf4e3;
}
.violentPartnerContent > div {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  padding: 20px;
  margin: 20px 0px;
  border-radius: 20px;
  background: #fdf4e3;
  color: #705a32;
  box-shadow: 1px 1px 3px #fdf4e3;
}
@media (max-width: 1024px) {
  .violentPartnerContent > div p br {
    display: none;
  }
}
.violentPartnerContent > div a {
  color: #f3bc54;
}
.violentPartnerContent > div a:hover {
  color: #d28f0f;
}

.mail-form {
  padding-top: 50px;
  display: grid;
  place-content: center;
}
@media (max-width: 1024px) {
  .mail-form {
    padding: 0 5%;
  }
}
.mail-form .sectionTitle {
  margin-bottom: 30px;
}
.mail-form form#form {
  font-size: 16px;
}
.mail-form form#form .form1 {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .mail-form form#form .form1 {
    flex-direction: column;
  }
}
.mail-form form#form .form1 .form-name {
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .mail-form form#form .form1 .form-name {
    margin-right: 0;
  }
}
.mail-form form#form .form1 .form-name label {
  color: #000;
  margin-right: 10px;
}
.mail-form form#form .form1 .form-name label::before {
  content: "*";
  color: #f00;
}
.mail-form form#form .form1 .form-name input {
  background-color: #fef7e9;
  border: none;
  border-radius: 5px;
  padding: 2px 4px;
}
.mail-form form#form .form1 .form-name input:focus {
  outline: none;
}
@media (max-width: 1024px) {
  .mail-form form#form .form1 .form-name input {
    margin-bottom: 10px;
    width: 100%;
  }
}
.mail-form form#form .form1 .form-sex label {
  margin-right: 10px;
}
.mail-form form#form .form2 {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .mail-form form#form .form2 {
    flex-direction: column;
  }
}
.mail-form form#form .form2 label {
  color: #000;
  margin-right: 10px;
}
.mail-form form#form .form2 label::before {
  content: "*";
  color: #f00;
}
.mail-form form#form .form2 input {
  background-color: #fef7e9;
  border: none;
  border-radius: 5px;
  padding: 2px;
}
.mail-form form#form .form2 input:focus {
  outline: none;
}
@media (max-width: 1024px) {
  .mail-form form#form .form2 input {
    width: 100%;
  }
}
.mail-form form#form .form2 .form-phone {
  margin-right: 25px;
}
@media (max-width: 1024px) {
  .mail-form form#form .form2 .form-phone {
    margin-right: 0;
  }
}
.mail-form form#form .form3 {
  margin-bottom: 20px;
}
.mail-form form#form .form3 label {
  color: #000;
  margin-right: 10px;
}
.mail-form form#form .form3 label::before {
  content: "*";
  color: #f00;
}
@media (max-width: 1024px) {
  .mail-form form#form .form3 label {
    display: block;
  }
}
.mail-form form#form .form3 select {
  width: 33%;
  background-color: #fef7e9;
  border: none;
}
.mail-form form#form .form3 select:focus {
  outline: none;
}
@media (max-width: 1024px) {
  .mail-form form#form .form3 select {
    width: 100%;
  }
}
.mail-form form#form .form-message {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.mail-form form#form .form-message label {
  color: #000;
  margin-bottom: 10px;
}
.mail-form form#form .form-message label::before {
  content: "*";
  color: #f00;
}
.mail-form form#form .form-message textarea {
  width: 100%;
  height: 150px;
  resize: none;
  background-color: #fef7e9;
  border: none;
  border-radius: 5px;
  padding: 5px;
}
.mail-form form#form .form-message textarea:focus {
  outline: none;
}
.mail-form form#form .form-btn {
  display: flex;
  justify-content: center;
}
.mail-form form#form .form-btn button {
  background-color: transparent;
  color: #705a32;
  border: 1px solid #705a32;
  border-radius: 30px;
  padding: 5px 20px;
  transition: all 0.3s;
  margin: 0px 50px;
}
.mail-form form#form .form-btn button:hover {
  color: #fff;
  background-color: #705a32;
  border: 1px solid #705a32;
}
@media (max-width: 1024px) {
  .mail-form form#form .form-btn button {
    margin: 0px 20px;
  }
}

.mailText {
  text-align: center;
  color: #705a32;
}

.google-reCAPTCHA {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
@media (max-width: 1024px) {
  .google-reCAPTCHA {
    position: relative;
    top: initial;
    transform: translateY(0);
    text-align: center;
  }
}

/* 隱藏 Google reCAPTCHA 徽章 */
.grecaptcha-badge {
  visibility: hidden;
}

/* 完全移除 Google reCAPTCHA 徽章 */
.grecaptcha-badge {
  display: none;
}/*# sourceMappingURL=main.css.map */