@charset "utf-8";

#ch-header,
#ch-header div,
#ch-header span,
#ch-header h1,
#ch-header p,
#ch-header a,
#ch-header ol,
#ch-header ul,
#ch-header li {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

#ch-header a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  display: flex;
}

#ch-header #ch-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  #ch-header #ch-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  #ch-header #ch-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  #ch-header #ch-container {
    max-width: 1140px;
  }
}

#ch-header h1 img {
  height: 48px;
}

@media (max-width: 768px) {
  #ch-header h1 img {
    height: 32px;
  }
}

#ch-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

@media (max-width: 768px) {
  #ch-header {
    padding: 8px 0;
  }
}

#ch-header #ch-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#ch-header ul {
  display: flex !important;
  list-style: none;
}

#ch-header ul li a {
  padding: 23px 12px;
  display: inline-table;
  text-decoration: none;
  color: #222;
  -webkit-transition: all .5s;
  transition: all .5s;
}

#ch-header ul li a:hover {
  color: #094;
}

@media (max-width: 768px) {
  #ch-header ul li a {
    font-size: 20px;
    padding: 15px 20px;
  }
}

@media (max-width: 568px) {
  #ch-header ul li a {
    font-size: 18px;
  }
}

#ch-header #ch-social-group {
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  #ch-header #ch-social-group {
    margin-top: 15px;
  }
}

#ch-header .ch-social {
  font-size: 40px;
}

#ch-header .ch-social a {
  padding: 0 12px;
  line-height: 36px;
  color: #979696;
}

#ch-header .ch-social a:hover {
  border-bottom: 0;
  padding: 0 12px;
}

@media (max-width: 568px) {
  #ch-header .ch-social a {
    font-size: 40px;
    color: #fff;
  }
}

#ch-header .ch-social i {
  vertical-align: bottom;
}

#ch-header #ch-button-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 10000;
  cursor: pointer;
}

@media (max-width: 768px) {
  #ch-header #ch-button-toggle {
    display: block;
  }
}

#ch-header #ch-button-toggle span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #000;
}

#ch-header #ch-button-toggle span::after,
#ch-header #ch-button-toggle span::before {
  -webkit-transition: all .5s;
  transition: all .5s;
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  top: 50%;
  height: 2px;
  background-color: #000;
}

#ch-header #ch-button-toggle span::before {
  top: -8px;
}

#ch-header #ch-button-toggle span::after {
  bottom: -8px;
  top: auto;
}

#ch-header #ch-button-toggle.active span {
  background-color: transparent;
}

#ch-header #ch-button-toggle.active span::after,
#ch-header #ch-button-toggle.active span::before {
  top: 0;
}

#ch-header #ch-button-toggle.active span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  #ch-header #ch-button-toggle.active span::before {
    background-color: #000;
  }
}

#ch-header #ch-button-toggle.active span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  #ch-header #ch-button-toggle.active span::after {
    background-color: #000;
  }
}

@media (max-width: 768px) {
  #ch-header ul {
    position: absolute;
    left: 0;
    top: 0;
    height: 0px;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
    z-index: 120;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
  }

  #ch-header ul.opening {
    height: 100vh;
    width: 100%;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
  }

  #ch-header ul li {
    width: 100vw;
    text-align: center;
  }
}

body,
html {
  height: auto;
  width: 100%;
  /* font-family: "Microsoft JhengHei", "Noto Sans TC", sans-serif; */
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--sz-body);
  line-height: 1.8;
  color: var(--black);
  position: relative;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  letter-spacing: 0.03em;
  text-align: justify;
  font-synthesis: none;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 1s cubic-bezier(0.42, 0, 0.58, 1);
  transition: 1s cubic-bezier(0.42, 0, 0.58, 1);
}

body.page-fade::after {
  opacity: 1;
}

@media screen and (max-width: 768px) {

  body,
  html {
    font-size: 14px;
  }
}

/* ----------------------- */
/* 變數 */
:root {
  /* New Design Tokens */
  --font-accent: "din-2014", sans-serif;
  --font-accent-weight: 700;
  /* --font-body: "Microsoft JhengHei", "Noto Sans TC", sans-serif; */
  --font-body: "Noto Sans TC", sans-serif;

  /* Legacy Variables (Preserved for compatibility, can be consolidated) */
  --mjColor: #D93C40;
  --mjColor-l: #FF7461;
  --mjColor-lx2: #F5624D;
  --subColor: #FAA41A;
  --subColor-l: #FFD777;
  --subColor-lx2: #FFF0D2;
  --subColor2: #6DB0F3;
  --subColor2-d: #164890;
  --subColor2-dx2: #23334A;
  --black: #000;
  --gray: #989a9a;
  --gray-l: #c9cbcc;
  --gray-lx2: #e4e6e6;
  --gray-lx3: #eceeee;
  --gray-lx4: #f4f6f6;
  --grad1: linear-gradient(135deg,
      #dddddd 0%,
      #ffffff 18%,
      #ffffff 38%,
      #f2f2f2 61%,
      #ffffff 75%,
      #cccccc 100%);
  --grad2: linear-gradient(135deg,
      #dbff6f 0%,
      #dbff6f 20%,
      #f2f2f2 45%,
      #dbff6f 65%,
      #dbff6f 70%,
      #f2f2f2 80%,
      #dbff6f 100%);

  /* 容器 */
  --ctn-w: 1050px;
  --ctn-w-xs: 820px;
  --ctn-pdX: 1.5rem;
  --headerH: 80px;
  /* Estimated header height */

  /* 動畫 */
  --trans: all 0.3s linear;
  --trans-ease: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Typography Scale */
  --sz-h1: 45px;
  /* Section Title */
  --sz-h2: 34px;
  /* Section Subtitle */
  --sz-h3: 22px;
  /* Article Title */
  --sz-body: 17px;
}

@media screen and (max-width: 768px) {
  :root {
    --sz-h1: 35px;
    --sz-h2: 26px;
  }
}

@media screen and (max-width: 660px) {
  :root {
    --sz-h1: 30px;
  }
}

@media screen and (max-width: 376px) {
  :root {
    --sz-h1: 26px;
    --sz-h2: 24px;
  }
}

/* ----------------------- */
/* 文字樣式 */
a {
  color: var(--mjColor);
  position: relative;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  text-decoration: none;
}

a:active,
a:focus,
a:hover,
a:hover:active {
  outline: 0;
  text-decoration: none;
  color: #009ce5;
}

p,
li {
  word-wrap: break-word;
}

hr {
  border-top: 1px solid #ededed;
}

li,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

button {
  -webkit-transition: var(--trans);
  transition: var(--trans);
}

button:active,
button:focus,
button:hover,
button:hover:active {
  outline: 0;
  text-decoration: none;
}

* {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}

/* ----------------------- */
/* 共用樣式 */
.--trans {
  transition: var(--trans);
  -webkit-transition: var(--trans);
  -moz-transition: var(--trans);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.blue-d {
  color: var(--subColor2-d);
}

.red {
  color: var(--mjColor);
}

.red-l {
  color: var(--mjColor-l);
}

strong {
  font-weight: 700
}

.mb-1 {
  margin-bottom: 5px;
}

.mb-2 {
  margin-bottom: 10px;
}

.mb-3 {
  margin-bottom: 15px;
}

.mb-4 {
  margin-bottom: 20px;
}

.mb-5 {
  margin-bottom: 25px;
}

.mb-6 {
  margin-bottom: 30px;
}

.mb-7 {
  margin-bottom: 35px;
}

.mb-8 {
  margin-bottom: 40px;
}

.mb-9 {
  margin-bottom: 45px;
}

.mb-10 {
  margin-bottom: 50px;
}

.sz-sm {
  font-size: 15px;
}

/* ----------------------- */
/* 卷軸樣式 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: 0 0;
  cursor: pointer;
}

::-webkit-scrollbar-thumb {
  background-color: #0003;
  border-radius: 10px;
  border-color: transparent;
  border-style: solid;
  border-width: calc(10px / 3);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:active,
::-webkit-scrollbar-thumb:hover {
  border-width: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

::-webkit-selection {
  background: #262626;
  color: #ededed;
}

::-moz-selection {
  background: #262626;
  color: #ededed;
}

::selection {
  background: #262626;
  color: #ededed;
}

:active,
:focus,
:hover,
:hover:active {
  outline: none;
}

/* !============內容開始============ */
.bodyBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: url("../../images/all/bg.png") no-repeat left top/75% auto;
}

/* 共用架構 */
.wrapper {
  --pdY: clamp(5rem, 10vw, 7.5rem);
  padding-top: var(--pdY);
  padding-bottom: var(--pdY);
}

.container,
.container--xs {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ctn-pdX);
  padding-right: var(--ctn-pdX);
}

.container {
  max-width: var(--ctn-w);
  width: 85%;
}

.container--xs {
  max-width: var(--ctn-w-xs);
}

/* 尺寸顯示 */
.pc_only {
  display: block !important;
}

.pc_only_s {
  display: none !important;
}

.pad_only {
  display: block !important;
}

.mb_only {
  display: none !important;
}

.mb_only_m {
  display: none !important;
}

/* 按鈕 */
.btnWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.btnStyle {
  display: inline-block;
  min-width: 130px;
  padding: 1.125rem 2rem;
  background: var(--grad1);
  border-radius: 3em;
  font-size: 1.125rem;
  color: var(--subColor2-d);
  text-align: center;
  box-shadow: 0 0 0 var(--subColor2);
  transition: var(--trans);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
}

.btnStyle:active,
.btnStyle:focus,
.btnStyle:hover,
.btnStyle:hover:active {
  background: var(--grad2);
  color: var(--black);
  box-shadow: 0 0 2rem var(--subColor2-d);
  transform: scale(0.95);
}

/* !====比例模組 */
[class*="ratio--"] {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  object-fit: cover;
}

.ratio--9x16 {
  display: block;
  width: 300px;
  aspect-ratio: 9/16;
  margin: 0 auto;
}

/* KV Section */
.kv {
  position: relative;
  overflow: hidden;
}

.kv .container {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.kv__bg {
  width: 100%;
  height: 90dvh;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.kv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.kv__text {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
  max-width: 55%;
  flex: 0 0 45%;
}

.kv__visual {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75%;
  flex: 0 0 55%;
  transform-origin: bottom center;
  transform: translate(20%, 10%);
}

.kv__visual::after {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  top: 34%;
  aspect-ratio: 1180/686;
  background: url('../../images/kv/kv_man2.png')no-repeat center/contain;
  animation: kv_man2 3s ease-in-out infinite;
  animation-direction: alternate;
}

@keyframes kv_man2 {
  0% {
    transform: rotate(5deg);
  }

  /* 50% { transform: rotate(0deg); } */
  100% {
    transform: rotate(-2deg);
  }
}

.kv__title-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

.kv__man {
  width: 100%;
  height: auto;
  /* transform-origin:bottom center; */
  /* transform: translate(20%,10%); */
}

.kv__flower {
  position: absolute;
  width: clamp(200px, 30vw, 370px);
  max-width: 100%;
  animation: floating 3s ease-in-out infinite;
  z-index: -1;
}

.kv__flower.-p1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.kv__flower.-p2 {
  bottom: 0;
  left: 0;
  animation-delay: 1.5s;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Shared Components */
.indexTitle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.indexTitle__text {
  background-color: var(--mjColor);
  color: #fff;
  padding: .875rem clamp(2rem, 5vw, 3.5rem);
  font-size: var(--sz-h1);
  font-weight: 700;
  border-radius: 15px;
  border: solid 6px var(--subColor);
  position: relative;
  z-index: 0;
  line-height: 1.2;
}

.indexTitle__text::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  aspect-ratio: 1;
  background-image: url('../../images/title_icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  transform: translate(50%, -50%);
}

.sectionSubtitle {
  font-size: var(--sz-h2);
  color: var(--subColor2-dx2);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.sectionSubtitle::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 1em;
  background: linear-gradient(180deg, transparent 30%, var(--subColor) 30%, var(--subColor) 70%, transparent 70%);
  z-index: -1;
}

.sectionSubtitle.--white {
  color: #fff;
}

.articleTitle {
  font-size: var(--sz-h3);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--mjColor);
  line-height: 1.5;
}

.bodyText {
  font-size: var(--sz-body);
  line-height: 1.6;
}

.font-accent {
  font-family: var(--font-accent);
  font-weight: var(--font-accent-weight);
}

/* Myth Section */
#myth {
  z-index: 1;
  position: relative;
  background-color: var(--subColor-lx2);
}

#myth .bgImg {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 100%;
  object-fit: fill;
  object-position: left bottom;
}

/* Eduction Info Section */
#information {
  z-index: 1;
  position: relative;
  background-color: var(--subColor-l);
}

#information .bgImg {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 100%;
  object-fit: fill;
  object-position: left top;
}

/* Pain Management Section */
#diary {
  --grid-color: rgba(255, 255, 255, 0.1);
  --grid-size: 23.5px;
  --grid-line: 1px;
  --bg: var(--mjColor-l);
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid-color) var(--grid-line),
      transparent 0),
    linear-gradient(90deg,
      var(--grid-color) var(--grid-line),
      transparent 0);
  background-size: var(--grid-size) var(--grid-size);
  color: #fff;
  font-size: var(--sz-body);
}

#diary .indexTitle {}

#diary .indexTitle__text {
  color: #fff;
}

.painMgmt__intro {
  position: relative;
  margin-bottom: 0;
}

.painMgmt__intro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14%;
  width: clamp(70px, 10vw, 106px);
  aspect-ratio: 163/144;
  transform: translate(-150%, -50%);
  background: url('../../images/painMgmt_el1.svg')no-repeat center/contain
}

.painMgmt__quote-card {
  background: #fff;
  color: var(--black);
  padding: clamp(1.25rem, 3vw, 3rem) clamp(1rem, 2.5vw, 2rem);
  margin: clamp(2rem, 3vw, 3rem) 0;
  box-shadow: -4px 6px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  transform: rotate(1deg);
  line-height: 2;
}

.painMgmt__quote-title {
  color: var(--mjColor-l);
  font-size: clamp(var(--sz-body), 1.5vw, 20px);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  text-underline-offset: 3px;
}

.painMgmt__quote-txt {
  color: var(--black);
  font-size: clamp(var(--sz-body), 1.5vw, 20px);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  text-underline-offset: 3px;
}

.painMgmt__why {
  position: relative;
}

.painMgmt__why::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: clamp(50px, 10vw, 110px);
  aspect-ratio: 1/1;
  transform: translate(50%, -50%);
  background: url('../../images/painMgmt_el2.svg')no-repeat center/contain;
}

.painMgmt__subtitle {
  font-size: var(--sz-h3);
  color: #fff;
  margin-bottom: 0;
  margin-top: 2rem;
  font-weight: 700;
}

.painMgmt__subtitle:first-child {
  margin-top: 0;
}

.painMgmt__list {
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0;
  color: #fff;
  line-height: 1.8;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 300;
}

.painMgmt__list>li {
  margin-bottom: 0;
  padding-left: 1.375em;
  position: relative;
}

.painMgmt__list>li::before {
  content: '•';
  position: absolute;
  top: .125em;
  left: .375em;
  color: #fff;
  font-size: 1rem;
  line-height: 1.75;
}

.painMgmt__list strong {
  font-weight: 700
}

.painMgmt__list.--olist {
  counter-reset: analysis-counter;
  /* padding-left:2.5rem; */
}

.painMgmt__list.--olist>li {
  counter-increment: analysis-counter;
}

.painMgmt__list.--olist>li::before {
  content: counter(analysis-counter) '.';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.painMgmt__example {
  position: relative
}

.painMgmt__example::before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: clamp(50px, 10vw, 114px);
  aspect-ratio: 1/1;
  transform: translate(-150%, -50%);
  background: url('../../images/painMgmt_el3.svg')no-repeat center/contain;
}

.painMgmt__example .bodyText {
  font-weight: 300
}

.painMgmt__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0 3rem;
  padding: 10px;
  box-shadow: -4px 6px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
}

.painMgmt__table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: var(--black);
  overflow: hidden;
}

.painMgmt__table thead {
  color: var(--subColor2-d);
}

.painMgmt__table th,
.painMgmt__table td {
  padding: 5px 10px;
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
  font-weight: 370;
  line-height: 1.5;
  border-bottom: 1px solid #BCBCBC;
  border-right: 1px solid #BCBCBC;
}

.painMgmt__table th:last-child,
.painMgmt__table td:last-child {
  border-right: none;
}

.painMgmt__table th {
  font-weight: 700;
}

.painMgmt__table th:nth-child(1) {
  width: 150px;
}

.painMgmt__table th:nth-child(2) {
  width: 150px;
}

.painMgmt__table th:nth-child(3) {
  width: 200px;
}

.painMgmt__table th:nth-child(4) {
  width: 190px;
}

.painMgmt__table th:nth-child(5) {
  width: 240px;
}

.painMgmt__table .bx {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
}

.painMgmt__table tbody tr:last-child td {
  border-bottom: none;
}

.painMgmt__table tbody tr:hover {
  background-color: #f9f9f9;
}

.painMgmt__download {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.painMgmt__download-info-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 6/4;
  width: 50%;
  padding: 0 clamp(2rem, 3vw, 3rem);
  text-align: center;
  font-size: var(--sz-h3);
  font-weight: 600;
  color: #fff;
  background: url('../../images/painMgmt_obj.svg') no-repeat center/contain;
}

.painMgmt__download-info-wrap::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: clamp(50px, 10vw, 106px);
  aspect-ratio: 53/96;
  transform: translate(50%, -50%);
  background: url('../../images/painMgmt_el4.svg')no-repeat center/contain
}

.painMgmt__download-img-wrap {
  width: 100%;
  max-width: 460px;
  margin: 0;
}

.painMgmt__download-img {
  width: 100%;
  height: auto;
  display: block;
}


.painMgmt__analysisSummary {
  background: #fff;
  padding: 10px 10px 10px 0;
}

.painMgmt__analysisSummary .painMgmt__list {
  margin: 0;
  font-size: var(--sz-body);
  color: var(--black);
}

.painMgmt__analysisSummary .painMgmt__list li::before {
  color: var(--black);
}

/* Articles Section */
#article {
  position: relative;
  background-color: var(--mjColor-lx2);
  padding-bottom: calc(var(--pdY) / 2);
}

#article::after {
  content: '';
  position: absolute;
  right: 2%;
  top: 4%;
  width: clamp(140px, 25vw, 240px);
  aspect-ratio: 240/229;
  background: url('../../images/articleSection_el.svg')no-repeat center/contain
}

#article .container {
  --ctn-w: 1200px;
}

.articlesWrap {
  position: relative;
  padding: 0 50px;
}

.articlesSwiper {
  padding-bottom: 50px;
}

.articlesSwiper .swiper-slide {
  height: auto;
}

.articleCard {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--trans);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.articleCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.articleCard a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.articleCard__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 15px;
}

.articleCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}

.articleCard:hover .articleCard__img img {
  transform: scale(1.05);
}

.articleCard__body {
  padding: 8px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btnMore {
  background: var(--subColor2-d);
  color: #fff;
  border-radius: 3em;
  text-align: center;
  padding: 5px;
}

.articleCard__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--subColor2-d);
  line-height: 1.5;
  margin: 0;
}

.articleCard:hover .articleCard__title {
  color: var(--mjColor);
}

.articlesSwiper .swiper-pagination {
  position: relative;
  margin-top: 2rem;
  bottom: auto;
}

.articlesSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--mjColor);
  opacity: 0.3;
}

.articlesSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}


.eduInfo__item {
  margin-bottom: 1rem;
  padding: 0.5rem clamp(1rem, 2vw, 2rem) clamp(1rem, 1.5vw, 1.5rem);
  background: #f5f5f5;
  border-left: solid clamp(6px, 2vw, 14px) var(--subColor2);
}

.eduInfo__item:last-child {
  margin-bottom: 0;
}

.eduInfo__item.--eduInfo1 {
  padding-right: 28%;
}

.eduInfo__item.--eduInfo1::after {
  content: '';
  position: absolute;
  right: clamp(.5rem, 1vw, 1rem);
  bottom: 0;
  width: 28%;
  max-width: 156px;
  aspect-ratio: 157/199;
  background: url('../../images/eduInfo1.svg')no-repeat center bottom/contain;
}

.eduInfo__title {
  font-size: var(--sz-h3);
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.4;
  color: var(--subColor2-d);
}

.eduInfo__title .num {
  color: var(--subColor2-d);
  margin-right: 0.5rem;
  font-size: 45px;
  font-weight: 300;
}

.eduInfo__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
}

.eduInfo__table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.eduInfo__table th,
.eduInfo__table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e4e6e6;
}

.eduInfo__table th {
  font-weight: 700;
  font-size: 1.125rem;
  background-color: var(--mjColor);
  color: #fff;
}

.eduInfo__table tbody tr:last-child td {
  border-bottom: none;
}

.eduInfo__table tbody tr:hover {
  background-color: #f9f9f9;
}

.mythCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.note{
  margin-bottom: 4rem;
  text-align: left;
}
.note p{
  font-size: 14px;
  color: #d2d2d2;
}
.note_math{
  font-size: 11px;
  vertical-align: top;
}
.note a{
  color: #d2d2d2;
  text-decoration: underline;
}

.mythCard {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.mythCard__head {
  background-color: #D93636;
  padding: 2px 12px;
  color: #fff;
  display: flex;
  align-items: center;
}

.mythCard__tag {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.mythCard__tag::before {
  content: '✕';
  display: inline-block;
  margin-right: 0.5rem;
  font-weight: 900;
}

.mythCard__body {
  padding: 12px;
}

.mythCard__body .summary {
  margin-bottom: .5rem;
  color: #006A9E;
  font-size: var(--sz-body);
  font-weight: 500;
  line-height: 1.5;
}

.eduDt {
  display: grid;
  gap: clamp(30px, 4vw, 50px);
  grid-template-columns: repeat(3, 1fr);
  margin: 20px auto;
}

.eduDt__li {}

.eduDt__head {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 10px;
}

.eduDt__head .infoBx {
  flex: 1
}

.eduDt__head .infoBx .num {
  display: inline-block;
  width: 74px;
  padding: .05rem .5rem;
  background: var(--mjColor);
  color: #fff;
  font-size: 14px;
}

.eduDt__head .infoBx .tt {
  display: block;
  margin-top: 5px;
  color: var(--mjColor);
  font-size: var(--sz-h3);
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
}

.eduDt__head .picBx {
  width: 90px;
  height: 80px;
}

.eduDt__head .picBx img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eduDt__txt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  letter-spacing: 0;
}


.eduInfo__item:has(.eduInfoPt4) {
  --af: 310px;
  position: relative;
  padding-right: calc(var(--af) + 60px);
}

.eduInfo__item:has(.eduInfoPt4)::after {
  content: '';
  position: absolute;
  right: 30px;
  bottom: 0;
  width: var(--af);
  aspect-ratio: 44/65;
  background: url('../../images/eduInfo4.png')no-repeat center bottom /contain
}

.eduInfoPt4__bx {
  margin-bottom: 20px;
}

.eduInfoPt4__bx .tt {
  font-size: var(--sz-h3);
  margin-bottom: 0;
  font-weight: 700;
  color: var(--mjColor);
}

.eduInfoPt4__bx .txt {
  font-size: 15px;
  line-height: 1.6;
}
.eduInfoPt4__bx .txt p{
  margin-bottom: 1.6rem;
}
/* Chart Slider */
.chartSectionTitle {
  font-size: var(--sz-h2);
  color: var(--black);
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.chartSliderWrap {
  position: relative;
  padding: 0 50px;
}

.chartSliderWrap::before {
  content: '';
  width: clamp(100px, 15vw, 220px);
  aspect-ratio: 194/227;
  background: url('../../images/myth_el.svg')no-repeat center/contain;
  position: absolute;
  top: -10%;
  right: 99%;
}

.chartSwiper {
  width: 100%;
  padding: 0 0;
}

.chartImg {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* max-width:900px; */
}

/* Adjust generic swiper nav for this section if needed */
.swiper-button-next,
.swiper-button-prev {
  width: 60px;
  height: 60px;
  margin: 0;
  background: url('../../images/arrow.svg') no-repeat center/contain;
}

.swiper-button-next {
  right: -30px;
  left: inherit
}

.swiper-button-prev {
  transform: scaleX(-1);
  left: -30px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
  font-size: 1.2rem;
  font-weight: bold;
}

/* 專家的話與故事 */
#expert {
  position: relative;
  background: #FFFBCF
}

#expert::before,
#expert::after {
  content: '';
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  background: url('../../images/story-mk.svg');
}

#expert::before {
  bottom: 100%;
}

#expert::after {
  top: 100%;
  transform: scale(-1)
}

#expert .container::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 2%;
  width: 100%;
  aspect-ratio: 1440/533;
  background: url('../../images/bg-clound.svg')no-repeat center top/cover;
}

.storyBk.--expert {
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}

.storyBk.--expert::before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: clamp(140px, 25vw, 195px);
  aspect-ratio: 194/124;
  background: url('../../images/cloud.svg')no-repeat center/contain;
  transform: translate(-90%, -90%);
}

.storyBk.--expert::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: clamp(140px, 25vw, 240px);
  aspect-ratio: 240/229;
  background: url('../../images/cloud2.svg')no-repeat center/contain
}

.storyBk.--patient {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.storyHead {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.storyHead__pic {
  width: clamp(50px, 10vw, 100px);
  height: clamp(50px, 10vw, 100px);
  overflow: hidden;
  flex-shrink: 0;
}

.storyHead__info {
  flex: 1
}

.storyHead__info .name {
  color: var(--mjColor);
  font-size: var(--sz-h3);
  font-weight: 700;
}

.storyHead__info .txt {
  font-size: var(--sz-body);
  font-weight: 700;
  line-height: 1.6;
}

.faqTitle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0;
  padding: 15px 15px;
  background: #F5F5F5;
  color: var(--subColor2-d);
  border-left: solid 3px var(--subColor2);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.faqTitle::before {
  content: '';
  display: inline-block;
  width: 28px;
  aspect-ratio: 1;
  /* aspect-ratio:1; */
  background: url('../../images/icon.png')center/contain;
}

.faqTitle .tt {
  flex: 1
}

.tabsGp {
  margin-top: 20px;
}

.tabsGp__tabs {
  display: flex;
  gap: 1px;
}

.tabsGp__tabs li {
  cursor: pointer;
  flex: 1;
  padding: 20px 10px;
  border-radius: 20px 20px 0 0;
  background-color: #FFA78F;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  transition: var(--trans)
}

.tabsGp__tabs li.active,
.tabsGp__tabs li:hover {
  background-color: var(--mjColor-l);
}

/* .tabsGp__body {overflow: hidden;transition: height .35s ease;} */

.tabContent {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: clamp(15px, 2vw, 30px) clamp(15px, 4vw, 80px) clamp(30px, 4vw, 50px);
}

.storyStep {
  --gap: 10px;
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
  margin: 20px 0;
}

.storyStep__li {
  background: #FFEDCF;
  border-radius: 10px;
  padding: 10px;
}

.storyStep__li.--flex1 {
  flex: 1
}

.storyStep__li.--w30 {
  width: calc((100% / 3) - (var(--gap) * 2 / 3));
}

.storyStep__li .ttBx {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: var(--mjColor-l);
  font-size: var(--sz-h3);
  font-weight: 700;
}

.storyStep__li .ttBx .num {
  font-size: 150%;
  font-family: var(--font-accent);
  line-height: 1.2;
}

.storyStep__li .ttBx .tt {}

.storyStep__li:not(:has(.ttBx)) {
  padding: 20px
}

.patientCard {
  max-width: 630px;
  margin: 20px auto 0;
  box-shadow: -4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  border: solid 1px var(--mjColor-l)
}

.patientCard__head {
  background-color: var(--mjColor-l);
  padding: 10px 20px;
  color: #fff;
  font-weight: 700;
  font-size: var(--sz-h3);
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--subColor-l);
  text-underline-offset: 4px;
  /* 控制底線與文字距離 */
}

.patientCard__head .tt {
  display: inline-block;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='6'><path d='M0 3 Q6 0 12 3 T24 3' fill='none' stroke='%23FFD777' stroke-width='2'/></svg>") repeat-x;
  background-position: 0 1.5em;
  background-size: 9px 6px;
}

.patientCard__body {
  padding: 20px 15px;
  font-size: 15px;
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
}

#tabCon_2-2 .storyStep {
  --gap: 20px;
}

#qa {
  background-image: url('../../images/qa-bg.png');
  background-size: 1440px auto;
}

.qaWrap {
  display: none;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 850px;
  margin: 0 auto;
  letter-spacing: 0;
  text-align: left;
}

.qaWrap__pic {
  width: 260px;
  text-align: center;
}

.qaWrap__pic img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.qaWrap__bx {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qaWrap__tt {
  font-size: var(--sz-h3);
  font-weight: 700;
  color: var(--subColor2-d);
  text-align: left;
  line-height: 1.5;
}

.qaWrap__options {}

.qaWrap__option {
  padding: 15px 20px;
  background: #fff;
  border-radius: 10px;
  color: var(--mjColor);
  font-size: clamp(17px, 3vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 3px 3px rgba(0, 0, 0, .15);
  cursor: pointer;
}

.qaWrap__option+.qaWrap__option {
  margin-top: 8px;
}

.qaWrap__btn {
  display: none;
  background: var(--subColor2-d);
  color: #fff;
  border-radius: 3em;
  text-align: center;
  padding: 5px 20px;
  font-size: 18px;
  font-weight: 700;
  margin-left: auto;
  cursor: pointer;
  transition: var(--trans);
}

.qaWrap__btn:hover {
  background: var(--subColor);
}

.qaWrap.--active {
  display: flex;
}

.qaWrap.--answer .qaWrap__option[data-answer="wrong"] {
  color: #BCBCBC;
  position: relative;
  padding-right: 50px;
}

.qaWrap.--answer .qaWrap__option[data-answer="wrong"]::after {
  content: '';
  position: absolute;
  right: 5px;
  top: 6px;
  width: 50px;
  aspect-ratio: 1/1;
  background: url('../../images/qa-x.png')no-repeat center/contain;
  display: inline-block;
  float: right;
}

.qaWrap.--answer .qaWrap__option[data-answer="correct"] {
  background: var(--subColor);
  color: #fff;
}

.qaWrap.--answer .qaWrap__btn {
  display: block
}


/* !============media============ */

@media screen and (max-width: 1200px) {}

@media all and (max-width: 1025px) {

  /* 尺寸顯示 */
  .pc_only_s {
    display: block !important;
  }
}

@media screen and (max-width: 991px) {

  /* Myth Section Mobile */
  .mythCards {
    grid-template-columns: 1fr;
  }

  .sectionSubtitle::after {
    height: 70%;
    background: var(--subColor);
  }

  #myth .sectionSubtitle::before {
    content: '';
    width: clamp(70px, 15vw, 220px);
    aspect-ratio: 194/227;
    background: url('../../images/myth_el.svg')no-repeat center/contain;
    position: absolute;
    bottom: 100%;
    left: 0;
  }

  .painMgmt__download-info-wrap {
    position: relative;
    width: 100%;
    max-width: 460px
  }

  .painMgmt__download-info-wrap::after {
    left: inherit;
    top: inherit;
    right: 2%;
    bottom: 0;
    transform: rotate(-33deg);
  }

  .eduInfo__item.--eduInfo1 {
    padding-right: 35%;
  }

  .painMgmt__example::before {
    display: none
  }

  .painMgmt__why::before {
    content: '';
    position: absolute;
    width: clamp(50px, 10vw, 114px);
    aspect-ratio: 1/1;
    background: url('../../images/painMgmt_el3.svg')no-repeat center/contain;
    left: 0;
    top: 0;
    transform: translate(-25%, -25%);
  }

  .painMgmt__why::after {
    left: inherit;
    right: 2%;
    top: 100%;
  }

  .painMgmt__intro::before {
    display: none
  }

  #diary .indexTitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(70px, 10vw, 106px);
    aspect-ratio: 163/144;
    transform: translate(-150%, -50%);
    background: url('../../images/painMgmt_el1.svg')no-repeat center/contain;
    transform: translate(0%, -50%);
  }

  .eduInfo__item:has(.eduInfoPt4) {
    padding-right: clamp(1rem, 1.5vw, 1.5rem);
  }

  .eduInfo__item:has(.eduInfoPt4)::after {
    display: none
  }

}

@media screen and (max-width: 860px) {
  .eduDt {
    grid-template-columns: repeat(1, 1fr);
    max-width: 260px;
  }

  .storyStep__li.--flex1,
  .storyStep__li.--w30 {
    flex: none;
    width: 100%;
  }
}

@media screen and (max-width: 820px) {
  :root {
    --ctn-w: 100%;
    --ctn-pdX: 2.5rem;
  }

  .container {
    width: auto
  }

  /* 尺寸顯示 */
  .pc_only {
    display: none !important;
  }

  .mb_only {
    display: block !important;
  }

  /* KV Mobile */
  .kv {
    /* display: flex; */
    /* gap: 2rem; */
    /* flex-direction: column; */
  }

  .kv__bg {
    position: absolute;
    z-index: -2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .kv__visual {
    position: static;
    width: 100%;
  }

  .kv .container {
    position: static;
    height: auto;
    padding: 100px 15px 0;
    transform: inherit;
    /* display: flex; */
    /* gap: 0; */
    /* flex-direction: column; */
  }

  .kv__text {
    position: static;
    max-width: 80%;
    height: 30vh;
    text-align: center;
    padding: 0;
    z-index: 2;
  }

  .kv__flower.-p1 {
    top: inherit;
    bottom: 45%;
    left: 15%;
  }

  .kv__flower.-p2 {
    bottom: 0%;
    left: 3%;
  }

  .qaWrap {
    gap: 15px
  }

  .qaWrap__pic {
    width: 100%
  }

  .qaWrap__pic img {
    width: 180px
  }

  .qaWrap__bx {
    max-width: 400px;
    margin: auto
  }
}

@media screen and (max-width: 768px) {

  /* Shared Components */
  .indexTitle {
    margin-bottom: 40px
  }

  /* Myth Section Mobile */
  .chartSliderWrap {
    padding: 0;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .swiper-button-next {
    right: 0;
  }

  .swiper-button-prev {
    left: 0;
  }

  .chartImg {
    max-width: 400px;
    width: 68vw;
  }

  .chartSliderWrap::before {
    display: none
  }



}

@media screen and (max-width: 660px) {

  /* 尺寸顯示 */
  .pad_only {
    display: none !important;
  }

  .mb_only_m {
    display: block !important;
  }
}

@media screen and (max-width: 440px) {
  :root {
    --ctn-pdX: 1.25rem;
  }

}

@media all and (max-width: 375px) {}




/* ---------------母集團 規範--------------- */
#ch-header,
#ch-header div,
#ch-header span,
#ch-header h1,
#ch-header p,
#ch-header a,
#ch-header ol,
#ch-header ul,
#ch-header li {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

#ch-header a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  display: flex;
}

#ch-header #ch-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width:768px) {
  #ch-header #ch-container {
    max-width: 720px;
  }
}

@media (min-width:992px) {
  #ch-header #ch-container {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  #ch-header #ch-container {
    max-width: 1140px;
  }
}

#ch-header h1 img {
  height: 48px;
}

@media (max-width:768px) {
  #ch-header h1 img {
    height: 32px;
  }
}

#ch-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  transition: var(--trans);
}

#ch-header.--isFixed {
  background-color: #fff;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
}

@media (max-width:768px) {
  #ch-header {
    padding: 8px 0;
  }
}

#ch-header #ch-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#ch-header ul {
  display: flex !important;
  list-style: none;
}

#ch-header ul li a {
  padding: 23px 12px;
  display: inline-table;
  text-decoration: none;
  color: #222;
  -webkit-transition: all .5s;
  transition: all .5s;
}

#ch-header ul li a:hover {
  color: var(--mjColor);
}

@media (max-width:768px) {
  #ch-header ul li a {
    font-size: 20px;
    padding: 15px 20px;
  }
}

@media (max-width:568px) {
  #ch-header ul li a {
    font-size: 18px;
  }
}

#ch-header #ch-social-group {
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width:768px) {
  #ch-header #ch-social-group {
    margin-top: 15px;
  }
}

#ch-header .ch-social {
  font-size: 40px;
}

#ch-header .ch-social a {
  padding: 0 12px;
  line-height: 36px;
  color: #979696;
}

#ch-header .ch-social a:hover {
  border-bottom: 0;
  padding: 0 12px;
}

@media (max-width:568px) {
  #ch-header .ch-social a {
    font-size: 40px;
    color: #fff;
  }
}

#ch-header .ch-social i {
  vertical-align: bottom;
}

#ch-header #ch-button-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 10000;
  cursor: pointer;
}

@media (max-width:768px) {
  #ch-header #ch-button-toggle {
    display: block;
  }
}

#ch-header #ch-button-toggle span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #000;
}

#ch-header #ch-button-toggle span::after,
#ch-header #ch-button-toggle span::before {
  -webkit-transition: all .5s;
  transition: all .5s;
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  top: 50%;
  height: 2px;
  background-color: #000;
}

#ch-header #ch-button-toggle span::before {
  top: -8px;
}

#ch-header #ch-button-toggle span::after {
  bottom: -8px;
  top: auto;
}

#ch-header #ch-button-toggle.active span {
  background-color: transparent;
}

#ch-header #ch-button-toggle.active span::after,
#ch-header #ch-button-toggle.active span::before {
  top: 0;
}

#ch-header #ch-button-toggle.active span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width:768px) {
  #ch-header #ch-button-toggle.active span::before {
    background-color: #000;
  }
}

#ch-header #ch-button-toggle.active span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width:768px) {
  #ch-header #ch-button-toggle.active span::after {
    background-color: #000;
  }
}

@media (max-width:768px) {
  #ch-header ul {
    position: absolute;
    left: 0;
    top: 0;
    height: 0px;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
    z-index: 120;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
  }

  #ch-header ul.opening {
    height: 100vh;
    width: 100%;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
  }

  #ch-header ul li {
    width: 100vw;
    text-align: center;
  }
}

/* ---------------表尾 規範--------------- */
footer {
  --pdY: clamp(5rem, 10vw, 7.5rem);
  width: 100%;
  padding: 0 0 calc(var(--pdY) / 2);
  color: #fff;
  background: var(--mjColor-lx2);
}

footer a {
  transition: .3s;
  text-decoration: none;
  color: #fff;
}

footer ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

footer ul li {
  font-size: 15px;
  line-height: 15px;
  border-right: 1px solid #fff;
  padding: 0 10px 0 0;
  margin: 0 10px 10px 0;
}

footer ul li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}

footer ul li a {
  color: #fff;
  line-height: 15px;
}

footer ul:last-child {
  margin: 0;
}

footer p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
}

@media (max-width:768px) {
  footer ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  footer ul li {
    padding: 0 5px 0 0;
    margin: 0 5px 10px 0;
  }
}