@font-face {
  font-family: FakePearl-Regular;
  src: url(https://cdn.jsdelivr.net/gh/max32002/FakePearl@1.1/webfont/FakePearl-Regular.woff2) format("woff2"), url(https://cdn.jsdelivr.net/gh/max32002/FakePearl@1.1/webfont/FakePearl-Regular.woff) format("woff");
}
* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

h2 sup {
  font-size: 1.25rem;
}

p {
  margin: 0;
}
p sup {
  font-size: 0.75rem;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
  scroll-padding-block-start: 93px;
}
@media (max-width: 960px) {
  html {
    scroll-padding-block-start: 3.5rem;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
}

.container {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page__header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 32px;
  color: #fff;
  z-index: 1007;
  border-bottom: 1px solid #FFDCB6;
  box-shadow: 0px 4px 4px rgba(137, 69, 34, 0.25);
}
@media (max-width: 960px) {
  .page__header {
    padding: 0;
  }
}
.page__header .header__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 2.25rem;
  gap: 1.15rem;
}
@media (max-width: 960px) {
  .page__header .header__wrapper {
    padding: 0.75rem 1rem;
    border-radius: 0;
  }
}
.page__header .header__wrapper .logo img {
  height: 3.25rem;
}
@media (max-width: 960px) {
  .page__header .header__wrapper .logo img {
    height: 2rem;
  }
}
.page__header .header__wrapper .title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
@media (max-width: 960px) {
  .page__header .header__wrapper .title {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.page__header .header__wrapper #nav {
  display: flex;
}
@media (max-width: 960px) {
  .page__header .header__wrapper #nav {
    display: block;
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 1rem 2rem;
    background: #fff;
    box-shadow: 0px 4px 4px rgba(137, 69, 34, 0.25);
  }
  .page__header .header__wrapper #nav.open {
    transform: translateX(0%);
  }
}
.page__header .header__wrapper #nav .nav__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  row-gap: 1rem;
}
@media (max-width: 960px) {
  .page__header .header__wrapper #nav .nav__wrapper {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.page__header .header__wrapper #nav .nav__wrapper .nav__item {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.25rem;
  color: #B2775D;
  padding: 0 1.5rem;
}
.page__header .header__wrapper #nav .nav__wrapper .nav__item:hover {
  color: #81310D;
}
@media (max-width: 960px) {
  .page__header .header__wrapper #nav .nav__wrapper .nav__item {
    display: block;
    line-height: 2.5rem;
    padding: 0.5rem 2rem 0.5rem 3rem;
  }
  .page__header .header__wrapper #nav .nav__wrapper .nav__item::before {
    content: "";
    display: inline-block;
    width: 0.375rem;
    height: 0.375rem;
    border: 0.375rem solid #D3B591;
    border-radius: 100%;
    transform: translateX(-1rem) translateY(0.125rem);
  }
}
.page__header .header__wrapper #nav .nav__wrapper .nav__item + .nav__item {
  border-left: 1px solid #B2775D;
}
@media (max-width: 960px) {
  .page__header .header__wrapper #nav .nav__wrapper .nav__item + .nav__item {
    border-left: none;
  }
}
.page__header .header__wrapper #nav-toggle {
  display: none;
  position: fixed;
  place-items: center;
  top: 4px;
  right: 12px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media (max-width: 960px) {
  .page__header .header__wrapper #nav-toggle {
    display: grid;
  }
}
.page__header .header__wrapper #nav-toggle.open .bar {
  transform: rotate(135deg);
}
.page__header .header__wrapper #nav-toggle.open .bar::before {
  top: 0px;
  transform: rotate(-90deg);
}
.page__header .header__wrapper #nav-toggle.open .bar::after {
  bottom: 0px;
  transform: rotate(90deg);
}
.page__header .header__wrapper #nav-toggle .bar {
  width: 32px;
  height: 1px;
  background-color: #696969;
  position: relative;
  transition: transform 0.5s ease-in-out, width 0.5s ease-in-out;
}
.page__header .header__wrapper #nav-toggle .bar::before, .page__header .header__wrapper #nav-toggle .bar::after {
  content: "";
  background-color: #696969;
  height: 1px;
}
.page__header .header__wrapper #nav-toggle .bar::before {
  position: absolute;
  top: -8px;
  left: 0;
  width: 32px;
  transition: transform 0.5s ease-in-out, top 0.5s ease-in-out;
}
.page__header .header__wrapper #nav-toggle .bar::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  transition: transform 0.5s ease-in-out, bottom 0.5s ease-in-out, width 0.5s ease-in-out;
}

.page__main {
  padding-top: 86px;
}
@media (max-width: 960px) {
  .page__main {
    padding-top: 3.5rem;
  }
}

section .container {
  padding: 3rem 1rem;
}
section .container .title {
  padding: 2.5rem 1rem;
  text-align: center;
}
section .container .title h2 img {
  height: 5rem;
}
@media (max-width: 960px) {
  section .container .title h2 img {
    height: 4rem;
  }
}

p.source {
  color: #6C4630;
  font-size: 1rem;
  line-height: 1.75rem;
}

#kv {
  background-color: #fcf9f0;
  background-image: url("img/sec-01/bg.jpg");
  background-size: cover;
  background-position: center top;
}
@media (max-width: 960px) {
  #kv {
    background-image: url("img/sec-01/bg-mobi.png");
    background-position: center bottom;
  }
}
#kv .container {
  max-width: 100%;
  padding: 3rem 0 0;
  min-height: 600px;
}
@media (max-width: 960px) {
  #kv .container {
    padding: 16rem 0 0;
  }
}
#kv .container .kv__wrapper {
  position: relative;
}
@media (max-width: 960px) {
  #kv .container .kv__wrapper {
    min-height: 50vh;
  }
}
#kv .container .kv__wrapper .title {
  position: absolute;
  top: 0;
  left: 50%;
  width: 28rem;
  transform: translateX(-50%);
}
@media (max-width: 960px) {
  #kv .container .kv__wrapper .title {
    top: -14rem;
    width: 90%;
    max-width: 448px;
  }
}
#kv .container .kv__wrapper .fairy {
  position: absolute;
}
#kv .container .kv__wrapper #fairy-yellow {
  bottom: 50%;
  left: calc(50% - 20rem);
  width: 130px;
}
@media (max-width: 960px) {
  #kv .container .kv__wrapper #fairy-yellow {
    bottom: 15rem;
    left: 0.5rem;
    width: 98px;
  }
}
#kv .container .kv__wrapper #fairy-pink {
  bottom: 42%;
  right: calc(50% - 23rem);
  width: 230px;
}
@media (max-width: 960px) {
  #kv .container .kv__wrapper #fairy-pink {
    bottom: 14rem;
    right: 2rem;
    width: 152px;
  }
}
#kv .container .kv__wrapper .bg-flower {
  margin-top: 8rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media (max-width: 960px) {
  #kv .container .kv__wrapper .bg-flower {
    display: none;
  }
}

#info {
  position: relative;
  background-image: url("img/sec-02/bg.png");
  background-size: 100% 100%;
  background-position: center top;
  margin: -8rem 0 0;
}
@media (max-width: 960px) {
  #info .container {
    padding: 0 0.5rem;
  }
}
#info .container .title {
  padding: 3rem 0 2rem;
}
#info .container .content .tabs ul {
  padding-inline-start: 0;
  list-style-type: none;
  display: flex;
  gap: 3rem;
  padding: 0 3rem 2rem;
}
@media (max-width: 960px) {
  #info .container .content .tabs ul {
    gap: 0.5rem;
    padding: 0 0 2rem;
  }
}
#info .container .content .tabs ul li {
  cursor: pointer;
}
#info .container .content .content {
  background-color: #fff;
  padding: 3rem;
  border-radius: 2rem;
}
@media (max-width: 960px) {
  #info .container .content .content {
    padding: 1rem 0.5rem;
    border-radius: 0.5rem;
  }
}
#info .container .content .content .answers__wrapper .answers .titles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 0 0;
  margin-bottom: 3rem;
}
@media (max-width: 960px) {
  #info .container .content .content .answers__wrapper .answers .titles {
    gap: 0.5rem;
    padding: 0;
    margin-bottom: 0.5rem;
  }
}
#info .container .content .content .answers__wrapper .answers .titles h3 {
  position: relative;
  font-size: 2rem;
  line-height: 3.25rem;
  color: #ea854d;
  font-family: FakePearl-Regular;
  text-align: center;
  background: #ffe7ce;
  border-radius: 1rem;
  cursor: pointer;
}
@media (max-width: 960px) {
  #info .container .content .content .answers__wrapper .answers .titles h3 {
    font-size: 1rem;
    line-height: 1.85rem;
    padding: 0.375rem 1.25rem;
  }
}
#info .container .content .content .answers__wrapper .answers .titles h3.active {
  color: #fff;
  background-color: #ea854d;
}
@media (max-width: 960px) {
  #info .container .content .content .answers__wrapper .answers .titles h3.active {
    padding: 0.375rem 0.5rem 0.375rem 1.75rem;
  }
}
#info .container .content .content .answers__wrapper .answers .titles h3.active::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -2rem;
  left: 1.5rem;
  background-image: url("img/sec-02/angel@2x.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 71px;
  height: 89px;
}
@media (max-width: 960px) {
  #info .container .content .content .answers__wrapper .answers .titles h3.active::before {
    top: -1rem;
    left: -0.375rem;
    width: 47px;
    height: 59px;
  }
}
#info .container .content .content .answers__wrapper .answers .answer {
  padding: 1rem;
}
#info .container .content .content .answers__wrapper .answers .answer p {
  font-size: 1.25rem;
  line-height: 1.85rem;
  margin-bottom: 1.85rem;
}
#info .container .content .content .answers__wrapper .answers .answer p.no-mb {
  margin-bottom: 0;
}
#info .container .content .content .answers__wrapper .answers .answer ul {
  padding-inline-start: 1.5rem;
  margin: 0;
}
#info .container .content .content .answers__wrapper .answers .answer ul li {
  font-size: 1.25rem;
  line-height: 1.85rem;
}
#info .container .content .content .answers__wrapper .answers .answer .list-items {
  background-color: #ffe7ce;
  border-radius: 2rem;
}
#info .container .content .content .answers__wrapper .answers .answer .list-items .item {
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 6rem;
}
@media (max-width: 960px) {
  #info .container .content .content .answers__wrapper .answers .answer .list-items .item {
    padding: 1rem 1rem;
    grid-template-columns: 8rem 1fr;
  }
}
#info .container .content .content .answers__wrapper .answers .answer .list-items .item + .item {
  border-top: 1px solid #ea854d;
}
#info .container .content .content .answers__wrapper .answers .answer .list-items .item h4 {
  position: relative;
  font-size: 1.25rem;
  line-height: 2rem;
  padding: 0 0 0 2.25rem;
}
#info .container .content .content .answers__wrapper .answers .answer .list-items .item h4::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-image: url("img/sec-02/arrow@2x.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 17px;
}
#info .container .content .content .answers__wrapper .answers .answer .list-items .item p {
  font-size: 1.0625rem;
  line-height: 2rem;
  margin-bottom: 0;
}
#info .container .content .content .answers__wrapper .answers .answer .list-items .item ul li {
  font-size: 1.0625rem;
  line-height: 2rem;
}
#info .container .content .content .answers__wrapper .answers .answer.b__1 {
  padding: 0rem 4rem;
}
@media (max-width: 960px) {
  #info .container .content .content .answers__wrapper .answers .answer.b__1 {
    padding: 1rem;
  }
}
#info .container .content .content .answers__wrapper .answers .answer.b__1 .talk {
  width: 545px;
  margin-bottom: 2rem;
}
#info .container .content .content .answers__wrapper .answers .answer.b__1 .list__b {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 2rem;
  gap: 6rem;
}
@media (max-width: 960px) {
  #info .container .content .content .answers__wrapper .answers .answer.b__1 .list__b {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
    gap: 2rem;
  }
}
#info .container .content .content .answers__wrapper .answers .answer.b__1 .list__b .item {
  flex: 0 1 auto;
  width: 10rem;
}
#info .container .content .content .answers__wrapper .answers .answer.b__2 .b__2__header {
  font-size: 1.375rem;
  line-height: 2rem;
  color: #ea854d;
  margin: 1.5rem 0 0.5rem;
}
#info .container .content .content .answers__wrapper .answers .answer.c__1 .c__1__header {
  font-size: 1.375rem;
  line-height: 2rem;
  color: #8a6036;
  text-align: center;
  margin-bottom: 2.5rem;
}
#info .container .content .content .answers__wrapper .answers .answer.c__1 .c__1__header img {
  display: inline-block;
  height: 2.5rem;
  padding-right: 0.5rem;
  transform: translateY(0.25rem);
}

#flow {
  background-color: #fdf7f1;
}
#flow .container .title {
  padding: 0 0 2rem;
}
@media (max-width: 960px) {
  #flow .container {
    padding: 3rem 0;
  }
}
@media (max-width: 960px) {
  #flow .container .content .process {
    padding: 0 0 1rem;
  }
}
#flow .container .content .process .process__1 {
  position: relative;
  display: block;
  background-color: #f8e9d9;
  padding: 1rem 2rem;
  border-radius: 2rem 2rem 0 0;
  cursor: pointer;
}
@media (max-width: 960px) {
  #flow .container .content .process .process__1 {
    padding: 1rem 1rem;
  }
}
#flow .container .content .process .process__1 .point {
  margin-top: -2rem;
}
#flow .container .content .process .process__1 .s4 {
  position: absolute;
  top: -7%;
  left: 15%;
  width: 15%;
}
@media (max-width: 960px) {
  #flow .container .content .process .process__1 .s4 {
    top: auto;
    bottom: 70%;
    width: 25%;
    max-width: 10rem;
  }
}
#flow .container .content .process .process__2 {
  background-color: #fff;
  padding: 2rem 1rem;
}
#flow .container .content .doctor {
  display: grid;
  grid-template-areas: "img header" "img intro";
  grid-template-columns: 250px 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1rem;
  padding: 4rem 3rem 2rem;
}
@media (max-width: 960px) {
  #flow .container .content .doctor {
    grid-template-areas: "header header" "img intro";
    grid-template-columns: auto 1fr;
    /*background-color: #f4c48c;*/
    margin: 0rem 0 -3rem;
    justify-items: center;
  }
}
#flow .container .content .doctor .img {
  grid-area: img;
  width: 15.625rem;
}
@media (max-width: 960px) {
  #flow .container .content .doctor .img {
    width: 8rem;
  }
}
#flow .container .content .doctor .header {
  grid-area: header;
  line-height: 1;
  padding-left: 5rem;
}
@media (max-width: 960px) {
  #flow .container .content .doctor .header {
    padding-left: 0rem;
  }
}
#flow .container .content .doctor .header img {
  height: 6.5rem;
}
@media (max-width: 960px) {
  #flow .container .content .doctor .header img {
    height: 4.5rem;
  }
}
#flow .container .content .doctor .intro {
  grid-area: intro;
}
@media (max-width: 960px) {
  #flow .container .content .doctor .intro {
    align-self: end;
  }
}
#flow .container .content .doctor .intro .name {
  color: #75855a;
  font-size: 1.5rem;
  line-height: 2.25rem;
}
#flow .container .content .doctor .intro .position {
  font-size: 1.175rem;
  line-height: 2.15rem;
}
@media (max-width: 960px) {
  #flow .container .content .doctor .intro .position {
    font-size: 0.95rem;
    line-height: 1.65rem;
  }
}
#flow .container .content .say {
  background-color: #ffffff;
  padding: 40px 40px 120px;
  border-radius: 1.75rem;
  margin: 20px 40px 100px;
  position: relative;
}
@media (max-width: 960px) {
  #flow .container .content .say {
    padding: 2rem 2rem 5rem;
    margin: 50px 20px 70px;
  }
}
#flow .container .content .say p {
  font-size: 1.25rem;
  line-height: 2.15rem;
  margin-bottom: 1.85rem;
}
@media (max-width: 960px) {
  #flow .container .content .say p {
    font-size: 1.15rem;
    line-height: 1.85rem;
    margin-bottom: 1.5rem;
  }
}
#flow .container .content .say .angel {
  height: 200px;
  width: 200px;
  position: absolute;
  right: -40px;
  bottom: 0;
}
@media (max-width: 960px) {
  #flow .container .content .say .angel {
    height: 120px;
    width: 120px;
  }
}
#flow .container .content .say .angel .img {
  width: 95%;
}

#stage {
  background-image: linear-gradient(to right, #f4c48c 50%, #d7dfba 50%);
  overflow: hidden;
}
@media (max-width: 960px) {
  #stage {
    background-image: linear-gradient(to bottom, #f4c48c 51%, #d7dfba 51%);
  }
}
#stage .container {
  padding: 4rem 4rem 10rem;
}
@media (max-width: 960px) {
  #stage .container {
    padding: 0rem 2rem 10rem;
  }
}
#stage .container .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
}
@media (max-width: 960px) {
  #stage .container .content {
    grid-template-columns: 1fr;
    gap: 8rem;
  }
}
#stage .container .content .type {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 1.75rem;
  background-color: #fff;
}
#stage .container .content .type h3 {
  text-align: center;
  margin-bottom: 1rem;
}
#stage .container .content .type h3 img {
  height: 4.5rem;
}
@media (max-width: 960px) {
  #stage .container .content .type h3 img {
    height: 4.5rem;
  }
}
#stage .container .content .type p {
  position: relative;
  font-size: 1.25rem;
  line-height: 2.25rem;
  margin-bottom: 0;
  z-index: 1;
}
#stage .container .content .type.type__1 .bg {
  position: absolute;
  bottom: -32px;
  left: -160px;
  width: 320px;
}
#stage .container .content .type.type__2 .bg {
  position: absolute;
  bottom: -80px;
  right: -72px;
  width: 231px;
}
@media (max-width: 960px) {
  #stage .container .content .type.type__2 .bg {
    right: 0px;
    z-index: 1;
    width: 140px;
  }
}

#qa {
  position: relative;
  background-image: url("img/sec-05/s5-bg.png");
  background-size: 100% 100%;
  background-position: center top;
  margin: -4rem 0 0;
}
@media (max-width: 960px) {
  #qa {
    background-size: 960px 100%;
    margin: -8rem 0 0;
  }
}
@media (max-width: 960px) {
  #qa .container {
    padding: 3rem 1rem 13rem;
    overflow: hidden;
  }
}
#qa .container .title h2 {
  font-family: FakePearl-Regular;
  font-size: 2.125rem;
  line-height: 3.5rem;
  text-align: center;
  color: #524B4B;
}
#qa .container .treatments .treatments__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 8rem 0rem 3rem;
}
@media (max-width: 960px) {
  #qa .container .treatments .treatments__wrapper {
    grid-template-columns: 1fr;
    gap: 7rem;
  }
}
#qa .container .treatments .treatments__wrapper .item {
  position: relative;
  background-color: #fff;
  padding: 6rem 2rem 0;
  border-radius: 1rem;
}
#qa .container .treatments .treatments__wrapper .item .img {
  position: absolute;
  top: -8rem;
  left: 50%;
  width: 12rem;
  display: block;
  transform: translateX(-50%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media (max-width: 960px) {
  #qa .container .treatments .treatments__wrapper .item .img {
    top: -5rem;
    width: 10rem;
  }
}
#qa .container .treatments .treatments__wrapper .item h3 {
  font-size: 1.75rem;
  line-height: 2.25rem;
  text-align: center;
  color: #000000;
  margin-bottom: 1.5rem;
}
#qa .container .treatments .treatments__wrapper .item h4 {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2.25rem;
  color: #E78A56;
}
#qa .container .treatments .treatments__wrapper .item p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.85rem;
  color: #000000;
  margin-bottom: 2.25rem;
}
#qa .container .story h2 {
  font-family: FakePearl-Regular;
  font-size: 2.125rem;
  line-height: 3.5rem;
  text-align: center;
  color: #524B4B;
  margin-bottom: 3rem;
}
#qa .container .story .story__content {
  position: relative;
  background-color: #fbf0e1;
  display: grid;
  grid-template-areas: "img desc";
  grid-template-columns: auto 1fr;
  padding: 2.5rem 10rem 2.5rem 0;
  border-radius: 1rem;
}
@media (max-width: 960px) {
  #qa .container .story .story__content {
    grid-template-areas: "img" "desc";
    grid-template-columns: 1fr;
    padding: 2.5rem 1rem;
  }
}
#qa .container .story .story__content .img .patient {
  width: 12.5rem;
  display: block;
  padding: 0 1.5rem 0 3rem;
}
@media (max-width: 960px) {
  #qa .container .story .story__content .img .patient {
    margin: 0 auto -3rem;
    width: 10rem;
    transform: translateY(-5rem);
    padding: 0;
  }
}
#qa .container .story .story__content .img .flower {
  width: 209px;
  display: block;
}
@media (max-width: 960px) {
  #qa .container .story .story__content .img .flower {
    display: none;
  }
}
#qa .container .story .story__content .desc h3 {
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 2.25rem;
  color: #555555;
  padding: 1rem 0;
}
#qa .container .story .story__content .desc p {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2.25rem;
  color: #555555;
}
#qa .container .story .story__content .angel {
  position: absolute;
  width: 10rem;
  bottom: -4.75rem;
  right: 0rem;
}
@media (max-width: 960px) {
  #qa .container .story .story__content .angel {
    bottom: -12.75rem;
  }
}

#story .container .content {
  display: grid;
  grid-template-areas: "img header" "img desc";
  grid-template-columns: 250px 1fr;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 2rem;
  padding: 0 2rem;
}
@media (max-width: 960px) {
  #story .container .content {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "img header" "desc desc";
  }
}
#story .container .content .img {
  grid-area: img;
  width: 250px;
  padding: 0.5rem 0;
}
#story .container .content .header {
  grid-area: header;
  line-height: 1;
}
#story .container .content .header img {
  height: 6.5rem;
}
@media (max-width: 960px) {
  #story .container .content .header img {
    padding-top: 2rem;
    height: 8.5rem;
  }
}
#story .container .content .desc {
  grid-area: desc;
  font-style: normal;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2.25rem;
  color: #555555;
}

#care {
  position: relative;
  background-image: url("img/sec-07/bg.png");
  background-size: cover;
  background-position: center center;
}
#care .container .title h2 {
  font-family: FakePearl-Regular;
  font-size: 2.125rem;
  line-height: 3.5rem;
  text-align: center;
  color: #524B4B;
}
#care .container .content .list__care {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 3rem;
}
@media (max-width: 960px) {
  #care .container .content .list__care {
    grid-template-columns: repeat(1, 1fr);
  }
}
#care .container .content .list__care .item {
  position: relative;
  text-align: center;
  height: 12rem;
  transition: transform 0.8s;
  perspective: 500px;
  cursor: pointer;
}
#care .container .content .list__care .item:nth-of-type(odd) .item__wrapper .front,
#care .container .content .list__care .item:nth-of-type(odd) .item__wrapper .back {
  background-color: #FFD9BD;
}
#care .container .content .list__care .item:nth-of-type(even) .item__wrapper .front,
#care .container .content .list__care .item:nth-of-type(even) .item__wrapper .back {
  background-color: #E1E4D5;
}
#care .container .content .list__care .item.flip .item__wrapper {
  transform: rotateY(180deg);
}
#care .container .content .list__care .item .item__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.5s;
  transform-style: preserve-3d;
}
#care .container .content .list__care .item .item__wrapper .front,
#care .container .content .list__care .item .item__wrapper .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
}
#care .container .content .list__care .item .item__wrapper .front h3,
#care .container .content .list__care .item .item__wrapper .back h3 {
  font-size: 1.375rem;
  line-height: 2.75rem;
  color: #524B4B;
}
#care .container .content .list__care .item .item__wrapper .front {
  padding: 2rem;
}
#care .container .content .list__care .item .item__wrapper .front img {
  width: 5.5rem;
  margin-bottom: 0.25rem;
}
#care .container .content .list__care .item .item__wrapper .back {
  transform: rotateY(180deg);
  padding: 0.35rem 1rem;
}
#care .container .content .list__care .item .item__wrapper .back p {
  font-size: 0.95rem;
  line-height: 1.5rem;
  color: #524B4B;
}

#daily {
  background-color: #f8e4dc;
}
#daily .container .title h2 {
  font-family: FakePearl-Regular;
  font-size: 2.125rem;
  line-height: 3.5rem;
  text-align: center;
  color: #524B4B;
  margin-bottom: 2rem;
}
@media (max-width: 960px) {
  #daily .container .title h2 {
    margin-bottom: 0;
  }
}
#daily .container .content .intro {
  display: grid;
  grid-template-areas: "img header" "img desc";
  grid-template-columns: auto 1fr;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 0.5rem;
  align-items: start;
  padding: 0 2rem;
  margin: -5rem 0 0;
}
@media (max-width: 960px) {
  #daily .container .content .intro {
    grid-template-areas: "img header" "desc desc";
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    margin: -1rem 0 0;
    padding: 0 0rem;
  }
}
#daily .container .content .intro .img {
  grid-area: img;
  width: 20rem;
  padding: 0.5rem 0;
}
@media (max-width: 960px) {
  #daily .container .content .intro .img {
    width: 8rem;
  }
}
#daily .container .content .intro .img img {
  transition: translateY(-5rem);
}
#daily .container .content .intro .header {
  grid-area: header;
  font-size: 1.625rem;
  line-height: 2.75rem;
  padding: 0.5rem;
  color: #524B4B;
  align-self: end;
}
@media (max-width: 960px) {
  #daily .container .content .intro .header {
    font-size: 1.375rem;
    line-height: 2.25rem;
  }
}
#daily .container .content .intro .desc {
  grid-area: desc;
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #524B4B;
  padding: 1.5rem 0.5rem 0.5rem;
  border-top: 2px dashed #AD5845;
}
@media (max-width: 960px) {
  #daily .container .content .intro .desc {
    font-size: 1.25rem;
    line-height: 1.85rem;
    padding: 1rem 0.5rem 0.5rem;
  }
}
#daily .container .content .list__care {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 4rem 0rem 3rem;
}
@media (max-width: 960px) {
  #daily .container .content .list__care {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
#daily .container .content .list__care .item {
  position: relative;
  background-color: #fff;
  padding: 7rem 1.5rem 1.5rem;
  border-radius: 1rem;
}
#daily .container .content .list__care .item .img {
  position: absolute;
  top: -2rem;
  left: 50%;
  width: 8rem;
  display: block;
  transform: translateX(-50%);
}
#daily .container .content .list__care .item h3 {
  font-size: 1.75rem;
  line-height: 2.25rem;
  text-align: center;
  color: #000000;
  margin-bottom: 1.5rem;
}
#daily .container .content .list__care .item p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2.25rem;
  color: #000000;
  padding: 0 0.5rem;
  margin-bottom: 2.25rem;
  overflow: hidden;
}
#daily .container .content .list__care .item button {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  color: #DA7F7F;
  background-color: transparent;
  border: 1px solid #DA7F7F;
  cursor: pointer;
}
#daily .container .content .list__care .item button:hover {
  color: #fff;
  background-color: #DA7F7F;
}
#daily .container .content .list__care .item button::before {
  content: "- Close";
  font-size: 1rem;
  line-height: 1.25rem;
}
#daily .container .content .list__care .item button.close::before {
  content: "+ Open";
}

.splide__arrows .splide__arrow {
  background: none;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 960px) {
  .splide__arrows .splide__arrow {
    height: 1.25rem;
    width: 1.25rem;
  }
}
.splide__arrows .splide__arrow svg {
  height: 2.5rem;
  width: 2.5rem;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #949696;
  fill: none;
}
.splide__arrows .splide__arrow.splide__arrow--prev {
  left: -5rem;
}
@media (max-width: 960px) {
  .splide__arrows .splide__arrow.splide__arrow--prev {
    left: -1.75rem;
  }
}
.splide__arrows .splide__arrow.splide__arrow--next {
  right: -5rem;
}
@media (max-width: 960px) {
  .splide__arrows .splide__arrow.splide__arrow--next {
    right: -1.75rem;
  }
}

#more {
  background-color: #f9eca9;
}
#more .container {
  padding: 3rem 6rem 0;
}
@media (max-width: 960px) {
  #more .container {
    padding: 3rem 1rem 0;
  }
}
#more .container .content .content__wrapper {
  padding: 0 1rem;
}
#more .container .content .content__wrapper .splide__article .splide__slide {
  padding: 1rem 0;
}
#more .container .content .content__wrapper .splide__article .splide__slide .splide__wrapper {
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.14));
  background: #FFFFFF;
  box-shadow: 0px 0px 7px rgba(105, 105, 105, 0.5);
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 960px) {
  #more .container .content .content__wrapper .splide__article .splide__slide .splide__wrapper {
    padding: 4rem 0 0;
  }
}
#more .container .content .content__wrapper .splide__article .splide__slide .splide__wrapper a {
  display: block;
  text-decoration: none;
  background: #FFFFFF;
}
#more .container .content .content__wrapper .splide__article .splide__slide .splide__wrapper a img {
  height: 12rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.14);
}
#more .container .content .content__wrapper .splide__article .splide__slide .splide__wrapper a p {
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.95rem;
  height: 10rem;
  color: #333333;
  padding: 1rem 1.5rem;
  overflow: hidden;
}
#more .container .content .content__wrapper .source {
  padding: 3rem 2rem;
}
@media (max-width: 960px) {
  #more .container .content .content__wrapper .source {
    padding: 3rem 0rem;
  }
}
#more .container .content .content__wrapper .source h4 {
  font-size: 0.6rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #555555;
  margin-bottom: 0;
}
#more .container .content .content__wrapper .source ol {
  padding-inline-start: 1rem;
  margin: 0 0 2rem;
}
#more .container .content .content__wrapper .source ol li {
  font-size: 0.6rem;
  line-height: 1.25rem;
  color: #555555;
  word-break: break-all;
}
#more .container .content .content__wrapper .source p {
  font-size: 0.65rem;
  line-height: 1.25rem;
  color: #555555;
  text-align: center;
}

.page__footer {
  padding: 30px 0;
  background: #fff;
  position: relative;
}
.page__footer .logo {
  text-align: center;
  position: absolute;
  width: 100%;
  top: -5rem;
}
.page__footer .logo img {
  height: 2.25rem;
}
@media (max-width: 960px) {
  .page__footer .logo img {
    height: 2rem;
  }
}
.page__footer .commonhealth_footer-channel ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
  padding-inline-start: 0;
}
.page__footer .commonhealth_footer-channel ul li {
  padding: 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
}
.page__footer .commonhealth_footer-channel ul li + li {
  border-left: 1px solid #1d1615;
}
.page__footer .commonhealth_footer-channel ul li a {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 300;
  color: #1d1615;
  text-decoration: none;
  position: relative;
}
.page__footer .commonhealth_footer-copyright {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5rem;
  font-weight: 300;
}
.page__footer .commonhealth_footer-copyright a {
  color: #1d1615;
}

#learn-more {
  position: fixed;
  bottom: 4rem;
  right: 1rem;
  z-index: 1000;
}
@media (max-width: 960px) {
  #learn-more {
    bottom: 2rem;
    right: 1rem;
  }
}
#learn-more:hover {
  filter: brightness(1.05);
}
#learn-more img {
  width: 8rem;
  cursor: pointer;
}
@media (max-width: 960px) {
  #learn-more img {
    width: 6.5rem;
  }
}/*# sourceMappingURL=style.css.map */