﻿/* ---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;
  display: 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: 160px;
    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%;
  height: 830px;
  background-image: url(image/KV_pc.png);
  background-color: #0e0e0f;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
  overflow: hidden;
}

.KV_content {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.KV_diamond {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  z-index: 1;
  bottom: 60px; /* 👈 在這裡修改！數值越大，鑽石離底部越遠（越高） */
}
.KV_diamond img {
  width: 100%;
  display: block;
  margin: 0 auto;
  will-change: filter;
  animation: diamond-glow-intense 2s infinite alternate ease-in-out;
}

@keyframes diamond-glow-intense {
  0% {
    /* 基礎狀態：維持基本的白光與淺藍光，避免暗下來時太突兀 */
    filter: brightness(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.7))
      drop-shadow(0 0 20px rgba(135, 206, 250, 0.5));
  }
  100% {
    /* 強效發光狀態：
       1. brightness(1.15) 讓鑽石圖片本身提亮 15%
       2. 第一層純白高光 (20px)
       3. 第二層亮藍色中層光暈 (40px)
       4. 第三層亮藍色大範圍擴散光暈 (80px)
    */
    filter: brightness(1.15) drop-shadow(0 0 20px rgba(255, 255, 255, 1))
      drop-shadow(0 0 40px rgba(0, 191, 255, 0.85))
      drop-shadow(0 0 80px rgba(0, 191, 255, 0.65));
  }
}

.KV_main_group {
  position: relative;
  width: 100%;
  max-width: 650px;
  text-align: center;
  margin: 0 auto;
  padding: 220px 0 0 0;
  z-index: 999;
}

.KV_tit {
  width: 100%;
  margin-bottom: 20px;
}
.KV_tit h1 {
  margin: 0;
  line-height: 0;
}
.KV_tit img {
  width: 100%;
  max-width: 650px;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.KV_btn {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  animation: floating 3s ease-in-out infinite;
  cursor: pointer;
}
.KV_btn img {
  width: 100%;
  display: block;
}

.KV_people_L,
.KV_people_R {
  position: absolute;
  bottom: 40px;
  width: 28%;
  max-width: 350px;
  z-index: 5;
}

.KV_people_L {
  left: 0;
}
.KV_people_R {
  right: 0;
}
.KV_people_L img,
.KV_people_R img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 811px) {
  #KV {
    height: 660px;
    background-image: url(image/KV_mobile.png);
    background-size: cover;
  }

  .KV_diamond {
    width: 95%;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
  }
  .KV_main_group {
    width: 90%;
    max-width: 350px;
    padding: 160px 0 0 0;
  }

  .KV_btn {
    max-width: 260px;
  }

  .KV_people_L,
  .KV_people_R {
    width: 45%;
    bottom: 20px;
  }
  .KV_people_L {
    left: 3%;
  }
  .KV_people_R {
    right: 1%;
  }
}

/* --內容區共同設定------------------------------------ */

.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: 38px;
  text-align: center;
  color: #0b2743;
  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: #02557f;
  letter-spacing: 2px;
}

h3.type2 .tag {
  display: inline-block;
  background-color: #02557f;
  color: #ffffff;
  font-size: 0.8em;
  font-weight: normal;
  padding: 5px 20px;
  border-radius: 2px 20px 20px 2px;
  margin-right: 8px;
  letter-spacing: 2px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

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 {
  color: #05c3de;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}

.content_text {
  width: 85%;
  max-width: 850px;
  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: #054c70;
  border-radius: 5px;
  padding: 18px 25px;
  margin: 30px 10px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

.content_btn_2 {
  background-color: #ff7867;
}

.content_btn:hover {
  background-color: #1b719c;
}

.content_btn_2:hover {
  background-color: #f7543e;
}

.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 {
  width: 90%;
  max-width: 1100px;
  padding: 0;
}

.content_chart_two {
  display: inline-block;
  max-width: 520px;
  width: 95%;
  padding: 10px 0;
}

.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; /* 配合您原本圖片的最大寬度 */
}

/* 針對排版微調 (如果您覺得預設 padding 太大，可以透過父層覆寫，不影響全域)
  這裡利用 .chart_item 去限制裡面的 .content_infotex，不會影響其他頁面的 .content_infotex
*/
.chart_item .content_infotex {
  padding-top: 5px; /* 讓說明文字離圖片近一點 */
}

.content_chart_mobile {
  display: none;
}

.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: #1d6183;
}

.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;
  }

  .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 {
    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;
  }

  .content_text {
    font-size: 16px;
  }

  .content_chart_pc {
    display: none;
  }

  .content_chart_mobile {
    display: block;
    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: 60px 60px 20px 60px;
  margin: 20px auto;
}

@media screen and (min-width: 812px) and (max-width: 1199px) {
  .content_slider_block {
    width: 85%;
    padding: 60px 40px 20px 40px;
    margin: 20px auto;
  }
}

@media screen and (max-width: 811px) {
  .content_slider_block {
    width: 85%;
    padding: 40px 20px 10px 20px;
    margin: 20px 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 {
  width: 90%;
  font-size: 18px;
  color: #707070;
  text-align: justify;
  margin: 0 auto;
  line-height: 1.5em;
  letter-spacing: 1px;
}

.cardArea p.type2 {
  color: #f26119;
}

.cardArea.icon img {
  max-width: 130px;
}

.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 {
    margin: 20px 5px;
    width: 50%;
    max-width: 150px;
  }

  .cardArea_section {
    flex-wrap: wrap;
  }

  .cardArea_two {
    width: 80%;
    margin: 20px 10px;
  }

  .cardArea p {
    font-size: 16px;
    line-height: 1.5em;
  }

  .imgArea .item {
    width: 35%;
    max-width: 95px;
    padding: 15px 5px;
  }

  .cardArea.icon img {
    max-width: 100px;
  }
}

/* --overview------------------------------------ */
#overview {
  width: 100%;
  background-color: #f5f5f7;
}

@media screen and (min-width: 812px) and (max-width: 1199px) {
}

@media screen and (max-width: 811px) {
  #overview {
    padding: 0px;
  }
}

/* --投資觀點------------------------------------ */

#view_1 {
  background-color: #e8f4f7;
}

#view_3 {
  background-color: #e4f1f9;
}

@media screen and (min-width: 812px) and (max-width: 1199px) {
}

@media screen and (max-width: 811px) {
}

/* --ETF跟得上越南轉型速度嗎？主動基金更能打造最佳投資配置！------------------------------------- */
/* 基礎設定 */
#advantage {
  position: relative;
  background-color: #fbeeee;
}

.advantage_text {
  position: relative;
  z-index: 2;
}

.advantage_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  z-index: 1;
}

.advantage_img img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 812px) and (max-width: 1199px) {
  .advantage_img {
    width: 280px;
  }
}

@media screen and (max-width: 811px) {
  .advantage_img {
    width: 160px;
    top: 0;
    left: 0;
  }
}

/* --推薦基金標題------------------------------------- */
.referral_fund {
  width: 90%;
  color: #ffffff;
  padding: 60px;
}

.performance_bg {
  background-image: url(image/view_bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 811px) {
  .referral_fund {
    padding: 30px 0;
  }
}

/* --同樣是主動型越南基金，富邦的三個不同之處------------------------------------- */
#differentiation {
  background-color: #ecf6ff;
}

/* --績效表格  ------------------------------------- */

.performance {
  width: 95%;
  max-width: 1000px;
  font-size: 18px;
  margin: 0 auto;
  color: #333333; /* 加上基礎字體顏色，讓文字更柔和易讀 */
}

.content_performance {
  width: 90%;
  margin: 0 auto;
  overflow-x: auto; /* 加上 -x 確保只有水平方向會出現卷軸 */
  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: #02557f; /* 換成更清新、明亮的藍色主題 */
  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 #e0e0e0; /* 內部儲存格加上淺灰色框線 */
  text-align: center;
  vertical-align: middle;
}

.performance tr:nth-child(even) {
  background: #f0f8ff; /* 調整為更清亮的淺藍色 (AliceBlue) */
}

.performance tr:nth-child(odd) {
  background: #ffffff;
}

/* 加上滑鼠懸停的互動效果，提升網頁體驗 */
.performance tbody tr:hover {
  background-color: #e1f0fa;
  transition: background-color 0.3s ease;
}

@media screen and (max-width: 811px) {
  .performance {
    width: 95%; /* 將原本寫死的 800px 改為 100%，避免手機螢幕被撐破 */
    font-size: 15px; /* 稍微縮小字級，讓小螢幕顯示更精簡 */
    padding: 10px 0;
  }

  .content_performance {
    width: 100%;
    border-radius: 0; /* 手機版取消圓角，貼齊邊緣爭取最大顯示空間 */
  }

  .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;
  }
}

/* --側邊按鈕------------------------------------- */
.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;
  font-weight: bold;
  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{
 color: #0961c5;
}

.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;
	}

}

*/
