﻿/* ---reset.css--- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tfoot,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a,
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}

body {
  line-height: 1;
  font-size: 16px;
  font-family:
    "Open Sans", "Noto Sans TC", "Microsoft JhengHei", "Source Sans Pro",
    sans-serif;
  color: #2e2a2e;
  position: relative;
  word-wrap: break-word;
  word-break: break-all;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

table {
  border-collapse: collapse;
}

/* --選單------------------------------------- */

nav {
  width: 100%;
  display: block;
  background-color: #ffffff;
  color: #ecedee;
  border-color: #060606;
  height: 80px;
  z-index: 9999;
  position: fixed;
  box-shadow: 0px 1px 2px rgba(165, 165, 165, 0.3);
}

nav a {
  color: #666666;
}

nav a:link {
  color: #666666;
}

nav a:hover {
  color: #061937;
}

#logo {
  display: block;
  float: left;
}

#logo img {
  width: 210px;
  padding-top: 32px;
  padding-left: 20px;
}

nav label {
  display: block;
  float: right;
  padding-top: 23px;
  padding-bottom: 12px;
  padding-right: 20px;
}

nav label div {
  width: 30px;
  height: 3px;
  background-color: #9e9e9e;
  margin: 6px 0;
}

nav ul {
  display: none;
  list-style: none;
  clear: both;
  font-size: 16px;
}

nav ul li {
  display: block;
  border-bottom: 1px solid #dbdbdb;
}

nav ul li a {
  display: block;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #ffffff;
  letter-spacing: 1.4px;
  float: none;
}

nav ul li a:hover {
  background: #f6fcfd;
}

nav ul:active {
  display: block;
}

#drop {
  display: none;
}

#drop:checked ~ ul {
  display: block;
  clear: both;
}

@media screen and (min-width: 1280px) {
  nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  nav label {
    display: none;
  }

  nav ul {
    display: block;
    float: right;
    padding: 0px 40px;
    font-size: 18px;
  }

  nav ul li {
    display: inline-block;
    min-width: 120px;
    border-bottom: none;
  }

  nav ul li a {
    background: #ffffff;
  }

  nav ul li a:hover {
    background: #ffffff;
    color: #061937;
  }

  #logo {
    display: block;
    float: left;
  }

  #logo img {
    width: 230px;
    padding-top: 5px;
    padding-left: 25px;
  }
}

/* --主視覺------------------------------------- */

#KV {
  width: 100%;
  min-height: 700px;
  background-color: #ffeabf;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.KV_content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.KV_people_L {
  width: 55%;
  position: relative;
}

.KV_people_L img {
  width: 100%;
  display: block;
}

.KV_main_group {
  width: 45%;
  position: relative;
  text-align: left;
  padding: 0 0 0 40px;
  z-index: 10;
  top: -30px;
}

.KV_tit {
  width: 100%;
  margin-bottom: 30px;
}

.KV_tit h1 {
  margin: 0;
  line-height: 0;
}

.KV_tit img {
  width: 100%;
  max-width: 580px;
}

.KV_btn_group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 550px;
}

.KV_text_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #17212f;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.KV_text_btn:hover {
  background-color: #2b3b52;
  transform: translateY(-2px);
}

.KV_people_L img {
  animation: floatEffect 5s ease-in-out infinite;
}

@keyframes floatEffect {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px); /* 向上浮動 12px */
  }
}

.KV_text_btn {
  transition: all 0.3s ease;
}

.KV_text_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.KV_text_btn i {
  transition: transform 0.3s ease;
}

.KV_text_btn:hover i {
  transform: translateX(6px);
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  #KV {
    min-height: 620px;
  }
}

@media screen and (max-width: 991px) {
  .KV_content {
    flex-direction: column-reverse;
    padding: 100px 20px 0px 20px;
    justify-content: center;
  }

  .KV_main_group {
    width: 100%;
    max-width: 450px;
    padding: 0;
    text-align: center;
    margin-bottom: 30px;
    top: 0;
  }

  .KV_tit {
    margin-bottom: 20px;
  }

  .KV_tit img {
    margin: 0 auto;
  }

  .KV_people_L {
    width: 100%;
    max-width: 400px;
  }

  .KV_btn_group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .KV_text_btn {
    width: 100%;
    max-width: 240px;
    box-sizing: border-box;
    font-size: 15px;
  }
}

@media screen and (max-width: 667px) {
  .KV_content {
    padding: 80px 20px 0px 20px;
  }
}
/* --內容區共同設定------------------------------------ */

.content_section {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  line-height: 1.2;
}

.content_section_2 {
  padding: 80px 0 20px 0;
}

.content_section_3 {
  padding: 0;
  text-align: center;
}

.content_section_4 {
  padding: 60px 0 0 0;
  text-align: center;
}

h2 {
  width: 80%;
  font-size: 36px;
  text-align: center;
  color: #1e1e1e;
  line-height: 1.2;
  letter-spacing: 2px;
  padding: 20px;
  margin: 0 auto;
}

h3 {
  font-size: 28px;
  line-height: 1.4;
  padding: 10px 0;
  text-align: center;
}

h3.type2 {
  color: #ff7e3e;
  letter-spacing: 2px;
}

h3.type2 .tag {
  display: inline-block;
  background-color: #ff7e3e;
  color: #ffffff;
  font-size: 0.8em;
  font-weight: normal;
  padding: 5px 20px;
  border-radius: 10px;
  margin-right: 8px;
  letter-spacing: 2px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

h3.type3 {
  color: #0077b8;
  padding-bottom: 0;
}

h4 {
  width: 80%;
  max-width: 800px;
  font-size: 24px;
  font-weight: normal;
  color: #2e2a2e;
  text-align: justify;
  line-height: 1.5;
  padding: 10px 0;
  margin: 0 auto;
}

h4.color-1 {
  color: #2e2a2e;
}

h4.type2 {
    font-size: 20px;
  color: #05c3de;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  padding: 0;
}

h4.type3 {
  font-size: 20px;
  color: #0077b8;
  padding-bottom: 0;
  font-weight: bold;
  letter-spacing: 3px;
}

.content_text {
  width: 90%;
  max-width: 1000px;
  font-size: 20px;
  font-weight: normal;
  color: #2e2a2e;
  text-align: justify;
  line-height: 1.5;
  padding: 10px 0;
  margin: 0 auto;
}

.font_center {
  text-align: center;
}

.font_justify {
  text-align: justify;
}

.font_left {
  text-align: left;
}

.font_right {
  text-align: right;
}

.content_btn {
  display: inline-block;
  width: 60%;
  max-width: 240px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #fff;
  background-color: #0e52a0;
  border-radius: 5px;
  padding: 18px 25px;
  margin: 30px 10px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

.content_btn a,
.content_btn a:link,
.content_btn a:visited,
.content_btn a:hover,
.content_btn a:active {
  color: #ffffff;
  text-decoration: none; 
}

.content_btn:hover {
  background-color: #1163c1;
}

.content_chart {
  display: block;
  max-width: 820px;
  width: 90%;
  padding: 30px 0 10px 0;
  margin: 0 auto;
}

.content_chart.size2 {
  max-width: 950px;
  padding: 0;
}

.content_chart.size3 {
  max-width: 1000px;
  padding: 0;
}

.content_chart.size4 {
  width: 95%;
  max-width: 1100px;
  padding: 0;
}

.content_chart_two {
  display: inline-block;
  max-width: 500px;
  width: 95%;
  padding: 10px 20px;
  vertical-align: top;
}

.chart_flex_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.chart_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 550px;
}

 .chart_item .content_infotex {
  padding-top: 5px;
}

.content_chart_mobile {
  display: none!important;
}

.content_infotex {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: justify;
  font-size: 16px;
  line-height: 1.4;
  color: #8c898a;
  padding: 20px 0;
}

.content_infotex b {
  color: #67360b;
}

.content_infotex_all {
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  padding: 80px 0;
}

.target-fix {
  scroll-margin-top: 80px;
}

@media screen and (min-width: 812px) and (max-width: 1199px) {
  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }
    h4.type2 {
    font-size: 18px;
}

h4.type3 {
  font-size: 18px;
}


  .content_text {
    font-size: 18px;
  }
}

@media screen and (max-width: 811px) {
  .content_section {
    padding: 30px 0;
  }

  .content_section_2 {
    padding: 30px 0 0 0;
  }

  .content_section_4 {
    padding: 30px 0 0 0;
  }

  h2 {
    width: 90%;
    font-size: 24px;
    letter-spacing: 2px;
    padding: 10px 0;
  }

  h3 {
    width: 90%;
    font-size: 22px;
    margin: 0 auto;
  }

  h4 {
    width: 90%;
    font-size: 20px;
    padding: 10px 0;
    margin: 0 auto;
  }

  h4.type2 {
    font-size: 18px;
}

h4.type3 {
  font-size: 18px;
}

  .content_text {
    font-size: 15px;
  }

  .content_chart_pc {
    display: none !important; 
  }

  .content_chart_mobile {
    display: block!important;
    margin: 0 auto;
  }

  .content_chart {
    width: 90%;
    padding: 10px 0;
  }

  .content_chart_two {
    width: 90%;
    padding: 15px 0;
  }

  .content_btn {
    font-size: 18px;
    margin: 20px 0 0 0;
  }

  .content_infotex {
    width: 90%;
    font-size: 14px;
    padding: 20px 0;
  }
}

/* --輪播圖表------------------------------------ */
.content_slider_block {
  width: 85%;
  max-width: 1000px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 0px 60px 20px 60px;
  margin: 20px auto;
}

@media screen and (min-width: 812px) and (max-width: 1199px) {
  .content_slider_block {
    width: 85%;
    padding: 0 40px 20px 40px;
    margin: 20px auto;
  }
}

@media screen and (max-width: 811px) {
  .content_slider_block {
    width: 90%;
    padding: 10px 20px;
    margin: 20px auto;
  }
}

/* --前言------------------------------------ */

#global-asset-allocation,
#global-asset-allocation * {
  box-sizing: border-box !important;
}

#global-asset-allocation {
  width: 100%;
  max-width: 100vw;
  background-color: #ffeabf;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

#global-asset-allocation .content_section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px 80px 20px;
  display: block !important;
}

/* --主視覺卡片------------------------------------ */
.intro_card {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 850px;
  background-color: #ffffff;

  border: 1px solid #eaeaea;
  border-left: 8px solid #17212f;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgb(228 162 105 / 8%);

  padding: 45px 50px 45px 45px;
}

.intro_card .content_text {
  margin-bottom: 0;
  color: #17212f;
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
  line-height: 1.8;
  word-wrap: break-word;
}

@media screen and (max-width: 811px) {
  #global-asset-allocation .content_section {
    padding: 40px 20px 60px 20px !important;
  }

  .intro_card {
    padding: 30px 20px 30px 15px !important;
    border-left-width: 6px !important;
    box-shadow: 0 10px 20px rgba(23, 33, 47, 0.06) !important;
  }

  .intro_card .content_text {
    font-size: 15px !important;
  }
}

/* --新興市場觀點------------------------------------ */

.slide_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
  border: 1px solid #ffa774;
  border-radius: 12px;
  padding: 40px;
  margin: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 320px;
}

.slide_image_slot {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 35%;
  padding-right: 30px;
  border-right: 1px solid #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slide_image_slot img {
  max-width: 100%;
  height: auto;
  display: block;
}

.slide_content_slot {
  -webkit-box-flex: 1.8;
  -ms-flex: 1.8;
  flex: 1.8;
  padding-left: 30px;
}

.slide_box h3.type2 {
  display: block;
}
.slide_box h3 .tag {
  display: inline-block;
  margin-right: 10px;
}
.slide_content_slot .content_text {
  font-size: 1rem;
  line-height: 1.75;
  color: #333333;
  margin-top: 15px;
  text-align: justify;
}

@media (max-width: 991px) {
  .slide_box {
    -webkit-box-flow: column;
    -ms-flex-flow: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 25px 20px;
    min-height: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .slide_content_slot {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flow: column;
    -ms-flex-flow: column;
    flex-direction: column;
    width: 100%;
  }

  .slide_box h3.type2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }

  .slide_box h3 .tag {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .slide_box .content_text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 0px;
    margin-bottom: 0;
    width: 100%;
  }

  .slide_image_slot {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
    border-right: none;
    border-top: 1px solid #f8f9fa;
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .slide_image_slot img {
    max-height: 150px;
    width: auto;
  }
}

/* --卡片------------------------------------ */

.cardArea_section {
  margin: 0 auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 95%;
  max-width: 1200px;

  justify-content: center;
  flex-wrap: initial;
}

.cardArea {
  width: 70%;
  max-width: 300px;
  margin: 20px;
}

.cardArea_two {
  max-width: 400px;
  margin: 20px 40px;
}

.cardArea p {
  font-size: 15px;
  color: rgb(40 31 31);
  text-align: justify;
  margin: 0 auto;
  line-height: 1.5em;
  letter-spacing: 1px;
}

.cardArea.icon img {
  max-width: 100px;
  margin: 0 auto;
}

.cardArea_pic {
  border-radius: 10px;
  background-color: #ffffff;
  padding: 0 0 25px 0;
}

.cardArea_pic.shadow {
  -webkit-box-shadow: 5px 5px 60px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 20px 0px rgba(255, 211, 154, 0.3);
}

.cardArea_pic.board {
  border: 1px solid #aaaaaa;
}

.cardArea_pic img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.imgArea {
  margin: 0 auto;
}

.imgArea .item {
  display: inline-block;
  width: 50%;
  max-width: 140px;
  padding: 20px;
}

@media screen and (min-width: 812px) and (max-width: 1199px) {
  .cardArea_section {
    -ms-flex-wrap: initial;
    flex-wrap: initial;
  }
}

@media screen and (max-width: 811px) {
  .cardArea_section {
    flex-wrap: wrap;
    width: 100%;
  }

  .cardArea {
    margin: 15px 2%;
    width: 45%;
    max-width: none;
  }
  .cardArea_two {
    width: 80%;
    margin: 20px 10px;
  }

  .cardArea p {
    font-size: 14px;
    line-height: 1.5em;
  }

  .imgArea .item {
    width: 35%;
    max-width: 95px;
    padding: 15px 5px;
  }

  .cardArea.icon img {
    max-width: 100px;
  }
}

/* --日本市場觀點------------------------------------ */

#view_japan {
  width: 100%;
  background-color: #fff7f0;
}

.jp_grid_container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;

  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.jp_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  box-sizing: border-box;
}

.jp_card_full {
  grid-column: span 2;
}

.jp_card_img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  margin-right: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.jp_card_img img {
  width: 90px;
  height: auto;
  display: block;
}

.jp_card_info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.jp_card_info h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #111111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tag_jp {
  background: #ff7e3e;
  color: #ffffff;
  font-size: 1rem;
  padding: 3px 10px;
  border-radius: 4px;
  margin-right: 12px;
  font-weight: normal;
  display: inline-block;
  white-space: nowrap;
}

.jp_card_info .content_text {
  width: 100%;
  font-size: 1rem;
  line-height: 1.7;
  color: #444444;
  margin-top: 0;
  text-align: justify;
}

.jp_slider_block {
  display: none;
}

@media screen and (min-width: 812px) and (max-width: 1199px) {
  .jp_grid_container {
    max-width: 95%;
  }
}

@media screen and (max-width: 991px) {
  .jp_grid_container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 20px;
    margin-top: 25px;
  }

  .jp_card,
  .jp_card_full {
    grid-column: auto;
    -webkit-box-flow: column;
    -ms-flex-flow: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 15px;
  }

  .jp_card_img {
    display: none;
  }

  .jp_card_img img {
    max-height: 55px;
    width: auto;
  }
  .jp_card_info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }

.jp_card_info h3 {
    -webkit-box-flow: column;
    -ms-flex-flow: column;
    flex-direction: column; 
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    font-size: 1.2rem;
  }

  .tag_jp {
    margin-bottom: 8px; 
    margin-right: 0;    
    font-size: 0.9rem;
    padding: 2px 8px;
  }

  .jp_card_info .content_text {
    margin-top: 0px;
  }


  .jp_grid_container {
    display: none !important;
  }
  
  .jp_slider_block {
    display: block;
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  

  .jp_slider_block .slide {
    padding: 10px 15px;
    box-sizing: border-box;
  }
  

  .jp_slider_block .jp_card {
    width: 100% !important;
    margin: 0 auto;
    background: #ffffff;
  }
}

/* --推薦基金標題------------------------------------- */
.referral_fund {
  width: 90%;
  max-width: 900px;
  font-size: 32px;
  color: #ffffff;
  padding: 40px 0 60px 0;
  font-weight: normal;
}

.referral_fund b {
  font-weight: bold;
  color: #ffeece;
}

.referral_fund_info {
  font-size: 20px;
  background-color: #ffffff;
  width: 180px;
  border-radius: 50px;
  padding: 10px;
  margin: 0 auto 15px auto;
  font-weight: bold;
}

.referral_fund_info.orange {
  color: #ff7e3e;
}

.referral_fund_info.blue {
  color: #0077b8;
}

.performance_bg {
  margin-top: 40px;
  padding: 40px 0;
}

.performance_bg.orange {
  background-color: #fffbf3;
}

.performance_bg.blue {
  background-color: #e4f1f9;
}

@media screen and (max-width: 811px) {
  .referral_fund {
    font-size: 20px;
    padding: 20px 0 30px 0;
  }
}

/* --績效表格  ------------------------------------- */
.performance {
  width: 95%;
  max-width: 1000px;
  font-size: 16px;
  margin: 0 auto;
  color: #333333;
}

.content_performance {
  width: 90%;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 8px;
}

.performance table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
}

.performance_item {
  font-size: 20px;
  text-align: left;
  padding: 0 0 10px 0;
  font-weight: bold;
}

.performance th {
  color: #ffffff;
  background-color: #505050;
  padding: 16px 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid #c4c4c4;
  text-align: center;
  white-space: nowrap;
}

.performance td {
  padding: 14px 10px;
  border: 1px solid #dfdfdf;
  text-align: center;
  vertical-align: middle;
}

.performance tr:nth-child(even) {
  background: #f6f6f6;
}

.performance tr:nth-child(odd) {
  background: #ffffff;
}

.performance tbody tr:hover {
  background-color: #ebebeb;
  transition: background-color 0.3s ease;
}

.performance_text span.orange {
  font-weight: bold;
  color: #ff824d;
}

.performance_text span.blue {
  font-weight: bold;
  color: #4b84da;
}

@media screen and (max-width: 811px) {
  .performance {
    width: 95%;
    font-size: 14px;
    padding: 10px 0;
  }

  .content_performance {
    width: 100%;
    border-radius: 0;
    overflow-x: hidden;
  }

  .performance th {
    white-space: normal;
  }

  .performance td {
    padding: 12px 6px;
    border: 1px solid #e0e0e0;
  }

  .performance_item {
    font-size: 16px;
  }
}

/* --基金清單------------------------------------- */

.fund_block table {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.fund_block table td {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 1px;
  padding: 22px 10px;
}

.fund_name {
  text-align: justify;
}

.fund_name b {
  color: #061937;
}

.fund_btn {
  width: 30%;
}

.fund_btn a {
  display: block;
  font-size: 20px;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: #061937;
  padding: 15px;
  border-radius: 50px;
  transition: 0.4s ease-in-out;
}

.fund_btn a:hover {
  background-color: #0c995c;
  transition: 0.4s ease-in-out;
}

@media screen and (max-width: 811px) {
  .fund_block table td {
    font-size: 16px;
  }

  .fund_btn {
    width: 35%;
  }

  .fund_btn a {
    font-size: 14px;
  }
}

/* --輪播圖表------------------------------------- */
.slick-prev,
.slick-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.slick-prev i,
.slick-next i {
  font-size: 35px;
  line-height: 1;
  color: #4a4a4a;
}

/* --什麼是母子月月領？  ------------------------------------- */
#about-monthly-income {
  background-color: #f4f6f9;
}

.monthly_intro_box {
  background-color: #ffffff;
  padding: 25px 35px;
  border-radius: 8px;
  margin-bottom: 40px;
  border: 1px solid #dce2e6;
  box-sizing: border-box;
}

.step_flow_container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  max-width: 1000px;
  margin: 0 auto 50px auto;
  gap: 15px;
}

.step_box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 10px;
  color: #ffffff;
  border-radius: 4px;
  min-height: 160px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.step_num {
  width: 42px;
  height: 42px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.step_desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 1px;
}

.step_arrow {
  color: #a0a0a0;
  font-size: 22px;
}

.step_1 {
  background-color: #009edb;
}
.step_2 {
  background-color: #3168a3;
}
.step_3 {
  background-color: #faae1a;
}
.step_4 {
  background-color: #ff7e3e;
}

.compare_table_wrapper {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto 30px auto;
  overflow-x: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.compare_table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background-color: #ffffff;
}

.compare_table th {
  background-color: #16325c;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  text-align: center;
  border: 1px solid #16325c;
  letter-spacing: 1.5px;
}

.compare_table td {
  border: 1px solid #e0e0e0;
  padding: 18px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  text-align: left;
  vertical-align: middle;
}

.compare_table td.center_col {
  text-align: center;
  font-weight: bold;
  background-color: #f9f9f9;
}

@media screen and (max-width: 811px) {
  .monthly_intro_box {
    padding: 20px;
    margin-bottom: 30px;
  }

  .step_flow_container {
    flex-direction: column;
    gap: 5px;
  }

  .step_box {
    width: 85%;
    max-width: 320px;
    margin: 0 auto;
    min-height: auto;
    flex-direction: row;
    padding: 15px 20px;
    justify-content: center;
    box-sizing: border-box;
  }

  .step_num {
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .step_desc {
    text-align: left;
    font-size: 18px;
  }

  .step_arrow {
    transform: rotate(90deg);
    margin: 8px auto;
    display: block;
  }

  .compare_table_wrapper {
    width: 90%;
    margin: 0 auto 30px auto;
    overflow-x: hidden;
    border-radius: 0;
    box-shadow: none;
  }

  .compare_table {
    min-width: 100%;
    background-color: transparent;
  }

  .compare_table thead {
    display: none;
  }

  .compare_table tbody,
  .compare_table tr,
  .compare_table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .compare_table tr {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  }

  .compare_table th {
    font-size: 16px;
  }

  .compare_table td {
    text-align: left;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    background-color: #ffffff;
  }

  .compare_table td:last-child {
    border-bottom: none;
  }

  .compare_table td.center_col {
    background-color: #16325c;
    color: #ffffff;
    font-size: 18px;
    padding: 12px 15px;
    text-align: center;
  }

  .compare_table td:nth-child(2)::before {
    content: "【傳統配息型基金】";
    display: block;
    font-weight: bold;
    color: #666666;
    margin-bottom: 8px;
    font-size: 15px;
  }

  .compare_table td:nth-child(3)::before {
    content: "【中租母子月月領】";
    display: block;
    font-weight: bold;
    color: #ff7e3e;
    margin-bottom: 8px;
    font-size: 15px;
  }
}
/* --母子月月領精選配組------------------------------------- */

.portfolio_premium_grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  width: 95%;
  max-width: 1100px;
  margin: 40px auto 0 auto;
}

.portfolio_premium_card {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #e8ecef;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(23, 33, 47, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.portfolio_premium_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(23, 33, 47, 0.1);
}

.card_theme_bar {
  height: 5px;
  width: 100%;
}
.card_theme_bar.theme_blue {
  background-color: #3168a3;
}
.card_theme_bar.theme_green {
  background-color: #2b5c38;
}

.card_main_content {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card_tag_row {
  margin-bottom: 25px;
}
.portfolio_badge {
  display: inline-block;
  font-size: 26px;
  font-weight: bold;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 3px;
}
.badge_blue {
  background-color: #e6f0fa;
  color: #1e4b7a;
}
.badge_green {
  background-color: #eaf4ed;
  color: #1c4526;
}

.fund_flow_wrapper {
  display: flex;
  flex-direction: column;
  background-color: #f8fafc;
  border: 1px solid #f0f2f5;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.fund_flow_node {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 15px;
}

.node_label {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 2px;
}
.label_orange {
  background-color: #ff7e3e;
}
.label_blue {
  background-color: #3168a3;
}
.label_green {
  background-color: #2b5c38;
}

.node_name {
  font-size: 19px;
  font-weight: normal;
  line-height: 1.5;
  color: #17212f;
  text-align: left;
}

.legal_note {
  color: #8c9ba5;
  font-weight: bold;
  display: inline;
}

.fund_flow_arrow {
  text-align: left;
  padding-left: 18px;
  margin: 6px 0;
  color: #cbd5e1;
  font-size: 14px;
}

.strategy_focus_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  border-top: 1px dashed #e2e8f0;
  padding-top: 20px;
}

.strategy_target {
  font-size: 20px;
  font-weight: bold;
  color: #ff7e3e;
  line-height: 1.4;
}
.strategy_target i {
  margin-right: 4px;
}

.strategy_desc {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  text-align: justify;
}

/* 底部按鈕區 */
.card_action_footer {
  padding: 0 30px 35px 30px;
  display: flex;
  gap: 12px;
}

.action_btn {
  flex: 1;
  display: block;
  text-align: center;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

/* 質感橘色線框鈕 */
.btn_outline_orange {
  background-color: #ff7e3e;
  color: #ffffff;
  border: 1px solid #ff7e3e;
}
.btn_outline_orange:hover {
  background-color: #fd8042;
  color: #ffffff;
  transform: translateY(-1px);
}

/* 沉穩深色申購鈕 */
.btn_solid_dark {
  background-color: #17212f;
  color: #ffffff;
  border: 1px solid #17212f;
}
.btn_solid_dark:hover {
  background-color: #2b3b52;
  border-color: #2b3b52;
  transform: translateY(-1px);
}

@media screen and (max-width: 811px) {
  .portfolio_premium_grid {
    flex-direction: column;
    gap: 25px;
    width: 90%;
    margin: 20px auto 0 auto;
  }

  .card_main_content {
    padding: 25px 20px;
  }

  .portfolio_badge {
    font-size: 21px;
  }

  .node_name {
    font-size: 17px;
  }

  .strategy_target {
    font-size: 16px;
  }

  .strategy_desc {
    font-size: 15px;
  }

  .card_action_footer {
    padding: 0 20px 25px 20px;
    gap: 10px;
  }

  .action_btn {
    font-size: 15px;
    padding: 12px 5px;
  }
}

/* --各族群每月可提領金額試算------------------------------------- */
#rate-calculator {
  background-color: #efefef;
}

.rate-calculator_tab {
  padding: 40px 0 0 0;
}

.cardArea_section_tab {
  flex-wrap: nowrap;
}

.cardArea_tab {
  width: calc(30% - 30px);
  background-color: #ffffff;
  padding: 30px 30px 40px 35px;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 60px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 5px 5px 0px rgb(218 235 207 / 40%);
}

.tabArea {
  padding: 40px 0 20px 0;
}

.tabArea p {
  width: 100%;
}

.tabArea ul {
  font-size: 18px;
  text-align: left;
  list-style: decimal;
  padding: 10px 0;
  line-height: 1.7em;
  letter-spacing: 1px;
  color: #626262;
}

.topicNav {
  list-style: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px auto;
  padding: 0px;
  display: block;
  text-align: center;
  letter-spacing: 0px;
}

.topicNav > li {
  max-width: 320px;
  cursor: pointer;
  display: inline-grid;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.6em 3em !important;
  margin: 5px 12px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  border-radius: 10px;
  color: #969696;
  background-color: #ffffff;
  border: 2px solid #0077b8;
  white-space: nowrap;
  -webkit-box-shadow: 2px 5px 2px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 5px 2px 0px rgba(200, 233, 255, 0.4);
}

.topicNav > li {
  max-width: 320px;
  cursor: pointer;
  display: inline-grid;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.6em 3em !important;
  margin: 5px 12px;
  font-size: 26px;
  line-height: 1.2;
  border-radius: 10px;
  color: #6fb8e7;
  background-color: #ffffff;
  white-space: nowrap;
  -webkit-box-shadow: 2px 5px 2px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 5px 2px 0px rgba(200, 233, 255, 0.4);
}

.topicNav > li b {
  font-size: 30px;
}

.topicNav > li.act {
  background-color: #0077b8;
  color: #fff;
}

.tabBox {
  width: 100%;
  overflow: hidden;
  height: 0px;
}
.tabBox.act {
  width: 95%;
  max-width: 1200px;
  height: 100%;
  /*border:3px solid #696aad;
	background-color: #FFFFFF;*/
  border-radius: 20px;
  padding: 30px 0 20px 0;
  margin: 0 auto;
}

.tabBox img {
  width: 90%;
  max-width: 950px;
  margin: 0 auto;
}

.account_step_pc {
  display: block;
}

.account_step_mobile {
  display: none;
}

@media screen and (max-width: 931px) {
  .rate-calculator_tab {
    padding: 20px 10px;
  }

  .tabArea ul {
    list-style-position: inside;
  }

  .topicNav > li {
    padding: 1em 2em !important;
    font-size: 19px;
    white-space: normal;
    display: inline-block;
    margin: 5px 4px;
    max-width: 200px;
  }

  .cardArea_tab {
    width: 100%;
    max-width: 600px;
    padding: 30px 30px 40px 50px;
  }

  .cardArea_section_tab {
    width: 100%;
    flex-wrap: wrap;
  }

  .tabBox.act {
    width: 90%;
    padding: 20px 0;
  }

  .account_step_pc {
    display: none;
  }

  .account_step_mobile {
    display: block;
  }

  .tabBox img {
    width: 100%;
  }
  .bankArea {
    font-size: 16px;
    padding: 20px 25px 40px 25px;
  }

  .cardAreaQA .tit {
    font-size: 18px;
    padding: 0;
  }

  .cardAreaQA {
    padding: 30px 20px;
  }

  .cardAreaQA p {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .cardArea_tab {
    width: 80%;
    max-width: 600px;
    padding: 30px 20px 30px 25px;
  }

  .tabArea ul {
    font-size: 16px;
    list-style-position: outside;
  }

  .topicNav > li {
    padding: 1em 0.5em !important;
    font-size: 17px;
    max-width: 160px;
  }

  .topicNav > li b {
    font-size: 22px;
  }
}

/* --側邊按鈕------------------------------------- */
.fixedRightBtn-area {
  position: fixed;
  top: 50%;
  right: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 999;
  display: none;
}

.fixedRightBtn a {
  display: block;
  text-align: center;
  width: 40px;
  color: #ffffff;
  padding: 14px 9px;
  box-sizing: border-box;
  font-size: 17px;
  line-height: 20px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  position: relative;
  left: 0%;
  margin-bottom: 5px;
  border-radius: 10px 0 0 10px;
}

.link {
  background: #3266a6;
}

.FB_link {
  background: #ff725c;
}

.link:hover {
  background: #1c4d8a;
}

.FB_link:hover {
  background: #df503a;
}

@media screen and (max-width: 667px) {
  .fixedRightBtn-area {
    top: auto;
    bottom: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 0px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: none;
  }

  .fixedRightBtn a {
    display: inline-block;
    width: 50%;
    font-size: 18px;
    margin-bottom: 0px;
    border-radius: 0;
  }
}

/* --返回上方------------------------------------- */
.topBtn {
  position: fixed;
  z-index: 1;
  bottom: 35px;
  right: 15px;
  transition:
    0.5s ease transform,
    0.3s ease opacity;
  opacity: 1;
  cursor: pointer;
  display: none;
}

.topBtn article {
  display: block;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  color: #fff;
  font-size: 12px;
  box-sizing: border-box;
  transition: 0.3s ease all;
  position: relative;
  top: 0px;
  padding-top: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 0px 2px #fff;
}

.topBtn article span {
  position: relative;
}

.topBtn article i {
  display: block;
  margin: 0 auto;
}

.topBtn article:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1199px) {
  .topBtn {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .topBtn {
    bottom: 80px;
  }
  .topBtn article {
    width: 40px;
    height: 40px;
    font-size: 0px;
  }
  .topBtn article i {
    font-size: 20px;
  }
}

/* --基金公司警語------------------------------------- */

#company_attention {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  color: #525252;
  background-color: #e9e9e9;
  padding: 40px 0;
}

.company_attention_text {
  max-width: 1140px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 30px;
}

.company_attention_text span {
  font-weight: bold;
}
.company_attention_text span.type2 {
  color: #339caa;
}

.company_attention_item {
  display: inline-block;
  padding-right: 40px;
}

@media screen and (max-width: 811px) {
  #company_attention {
    font-size: 16px;
  }
}

/* --注意事項------------------------------------- */

.Attention_tit {
  padding: 60px 0 0 0;
}

@media screen and (min-width: 1200px) {
  #Promotions {
    width: 100%;
    text-align: center;
    background-color: #f7f8f8;
  }

  #Attention {
    margin: 0 auto;
    width: auto;
    padding-top: 40px;
    padding-bottom: 70px;
    text-align: left;
  }

  .Attention_title {
    width: 1000px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #5e5e5e;
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: left;
  }

  .Attention_text li {
    width: 960px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.5;
    color: #595757;
    list-style-type: square;
    text-align: justify;
  }
}

@media screen and (min-width: 668px) and (max-width: 1199px) {
  #Promotions {
    width: 100%;
    text-align: center;
    background-color: #f7f8f8;
  }

  #Attention {
    margin: 0 auto;
    width: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: left;
  }

  .Attention_title {
    width: 80%;
    margin: 0 auto;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #5e5e5e;
    padding-bottom: 8px;
    padding-top: 8px;
    text-align: left;
  }

  .Attention_text li {
    width: 75%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.5;
    color: #595757;
    list-style-type: square;
    text-align: justify;
  }
}

@media screen and (max-width: 667px) {
  #Promotions {
    width: 100%;
    text-align: center;
    background-color: #f7f8f8;
    padding-bottom: 30px;
  }

  #Attention {
    margin: 0 auto;
    width: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: left;
  }

  .Attention_title {
    width: 85%;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #5e5e5e;
    padding-bottom: 6px;
    padding-top: 6px;
    text-align: left;
  }

  .Attention_text li {
    width: 76%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.5;
    color: #595757;
    list-style-type: square;
    text-align: justify;
  }
}

/* --footer------------------------------------- */
/*
footer {
	background: #3D3D3D;
	color: #F7F7F7;
	line-height: 1.8;
	margin:0;
	padding: 40px 0 50px;
	box-sizing: border-box;
}

footer > div {
	max-width: 1140px;
	margin: 0 auto;
	box-sizing: border-box;
	padding:0 30px;
}

footer > div > dl {
	padding: 10px 0 10px 1.5em;
	margin: 10px auto;
	border-top: 2px solid #F7F7F7;
	border-bottom: 2px solid #F7F7F7;
	display: block;
}
footer > div > dl dt,
footer > div > dl dd{
	margin: 0;
	line-height: 1.5;
	font-size: 16px;
	display: list-item;
}
footer > div > dl dt {
	list-style-type: square;
}

footer > div > dl dd:nth-of-type(even) {
	font-size: 16px;
}

footer > div > dl dd a,
footer > div > dl dt a {
	color: #F7F7F7;
	text-decoration: none;
}

footer > div > p {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	text-align: left;
	position: relative;
}
footer > div > p b{
	display: inline-block;
	padding: 0 0 0 16px;
}
footer > div > p > .socialBox{
	display: inline-block;
	text-align: right;
	position: absolute;
	right:0;
	bottom:0;
	z-index: 2;	
	letter-spacing: 5px;
	padding: 0;	
}
footer > div > p > .socialBox > a{
	display: inline-block;
}
footer > div > p > .socialBox > a i{
	font-size:30px;
	color:#c8a973;
}
footer > div > p > .socialBox > a:hover i{
	color:#b49560;
}
footer > div > p > .socialBox > a .footIcon{
	font-size:36px;
	height:36px;
	display: inline-block;
	vertical-align: 0;
	border:none;
}


footer > div > .text_scroll {
	overflow-y: scroll;
	overflow-x: hidden;
	height: 122px;
	width:100%;
	margin: 0;
	padding:0 16px 0 0;
	box-sizing: border-box;
}

footer > div > .text_scroll > p {
	margin: 0;
	font-weight:normal;
}

footer > div > .text_scroll span {
	color: #A89878;
	font-weight: bold;
}

.text_scroll{
	font-size: 15px;
}	

@media screen and (max-width: 669px){
	footer {
		padding: 20px 0;
		margin-bottom:48px;
	}
	footer > div > p {
		text-align: center;
	}
	footer > div > p b{
		display: block;
		padding: 0;
	}
	footer > div > p > .socialBox{
		display: block;
		text-align: center;
		position: relative;
		right:0;
		bottom:0;
		z-index: 1;	
		padding: 8px 0 0;
		letter-spacing: 16px;		
	}
	footer > div > p > .socialBox > a .footIcon{
		font-size:48px;
		height:48px;
		display: inline-block;
		vertical-align: 0;
		border:none;
	}

}

*/
