/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
a:visited {
  color: inherit;
}

.dark {
  color: #00428E;
}

.grid {
  display: grid;
}

.invest_page .flex {
  display: flex;
}
.invest_page .flex > * {
  align-content: flex-start;
}
.invest_page .flex.center {
  justify-content: center;
}
.invest_page .flex.wrap {
  flex-wrap: wrap;
}

.grid, .grid > * {
  display: grid;
}
.grid.center {
  align-items: center;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.flex-2 > div {
  width: calc(100% / 2 - 20px);
}
@media (max-width: 600px) {
  .flex-2 > div {
    width: 100%;
  }
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 850px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.flex-3 > div {
  width: calc(100% / 3 - 20px);
}
@media (max-width: 850px) {
  .flex-3 > div {
    width: calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .flex-3 > div {
    width: 100%;
  }
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 850px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.flex-4 > div {
  width: calc(100% / 4 - 20px);
}
@media (max-width: 991px) {
  .flex-4 > div {
    width: calc(33.33333% - 20px);
  }
}
@media (max-width: 850px) {
  .flex-4 > div {
    width: calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .flex-4 > div {
    width: 100%;
  }
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1199px) {
  .grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 850px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .grid-5 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.flex-5 > div {
  width: calc(100% / 5 - 20px);
}
@media (max-width: 1199px) {
  .flex-5 > div {
    width: calc(25% - 20px);
  }
}
@media (max-width: 991px) {
  .flex-5 > div {
    width: calc(33.33333% - 20px);
  }
}
@media (max-width: 850px) {
  .flex-5 > div {
    width: calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .flex-5 > div {
    width: 100%;
  }
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1499px) {
  .grid-6 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1199px) {
  .grid-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 850px) {
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .grid-6 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.flex-6 > div {
  width: calc(100% / 6 - 20px);
}
@media (max-width: 1499px) {
  .flex-6 > div {
    width: calc(20% - 20px);
  }
}
@media (max-width: 1199px) {
  .flex-6 > div {
    width: calc(25% - 20px);
  }
}
@media (max-width: 991px) {
  .flex-6 > div {
    width: calc(33.33333% - 20px);
  }
}
@media (max-width: 850px) {
  .flex-6 > div {
    width: calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .flex-6 > div {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  h2.h4 {
    font-size: 35px;
  }
}
.select_top_box .select_box .select_submenu li.active a {
  background: #00a7ea;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .select_top_box {
    margin-top: 50px;
  }
}
.tab_box > div {
  display: none;
  animation-name: fadeIn;
}
.tab_box > div.in {
  display: block;
}
.tab_box > div:not(.in) {
  display: none;
}

ul.decimal {
  list-style:disc;
  margin-left:36px;
}

ol.decimal {
  list-style: decimal;
  margin-left: 36px;
}

ul.cjk {
  margin-left: 60px;
}
ul.cjk li {
  list-style-type: cjk-ideographic;
}
ul.custom li {
  list-style-type: none;
  text-indent: -48px;
  padding-left: 48px;
}
ul.custom li:first-child:before{
  content: '(一)、';
}
ul.custom li:nth-child(2):before{
  content: '(二)、';
}
ul.custom li:nth-child(3):before{
  content: '(三)、';
}
ul.custom li:nth-child(4):before{
  content: '(四)、';
}
ul.custom li:nth-child(5):before{
  content: '(五)、';
}
ul.custom li:nth-child(6):before{
  content: '(六)、';
}
ul.custom li:nth-child(7):before{
  content: '(七)、';
}

ul.num li{
  list-style-type: none;
  padding-left: 42px;
}
ul.num li:before{
  position: absolute;
  left: 32px;
}
ul.num li:first-child:before{
  content: '(1)';
}
ul.num li:nth-child(2):before{
  content: '(2)';
}
ul.num li:nth-child(3):before{
  content: '(3)';
}

hr {
  border-color: #ddd;
}

hr.black {
  border-top-color: #333;
  margin: 35px 0;
}

.director-list {
  border: 1px solid #ddd;
  padding: 45px;
  font-size: 0;
}
@media (max-width: 768px) {
  .director-list .h5 {
    font-size: 26px;
  }
  .director-list .h9 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .director-list {
    padding: 30px 30px 10px;
  }
}
.director-list > div {
  padding-right: 15px;
}
@media (min-width: 1150px) {
  .director-list > div {
    width: 33.33333%;
  }
}
@media (max-width: 1149px) {
  .director-list > div:first-of-type {
    width: 200px;
  }
  .director-list > div:not(:first-of-type) {
    width: calc((100% - 200px) / 2);
  }
}
@media (max-width: 768px) {
  .director-list > div:first-of-type {
    width: 100%;
    margin-bottom: 20px;
  }
  .director-list > div:not(:first-of-type) {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .director-list > div:not(:first-of-type) {
    width: 100%;
    margin-bottom: 20px;
  }
}

.inline-top {
  display: inline-block;
  vertical-align: top;
}

.disc li {
  position: relative;
  padding-left: 16px;
}
.disc li:before {
  position: absolute;
  left: 3px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: #00a2e6;
}

.select_top_box .h2._btm {
  margin-bottom: 90px;
}

.invest_page {
  background-image: url(../images/top_bg.png), url(../images/bottom_bg.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top right, left bottom;
}
@media (min-width: 1400px) {
  .invest_page {
    background-size: 442px auto, 238px auto;
  }
}
@media (max-width: 1399px) {
  .invest_page {
    background-size: 20% auto, 20% auto;
  }
}

.invest-idx-list {
  margin-left: -23px;
  margin-right: -23px;
}
.invest-idx-list a {
  position: relative;
  text-align: left;
  border-bottom: 1px solid #ddd;
  margin: 0 23px 0px;
}
@media (min-width: 1500px) {
  .invest-idx-list a {
    min-height: 160px;
    padding: 54px 122px 54px 65px;
  }
}
@media (max-width: 1499px) {
  .invest-idx-list a {
    padding: 54px 55px 54px 65px;
  }
}
@media (max-width: 991px) {
  .invest-idx-list a {
    padding: 54px 35px 54px 60px;
  }
}
.invest-idx-list a:before, .invest-idx-list a:after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  content: "";
}
.invest-idx-list a:after {
  height: auto;
  aspect-ratio: 18/32;
  background: url(../images/_temp/investment/arrow.svg) center no-repeat;
  background-size: cover;
}
@media (min-width: 1500px) {
  .invest-idx-list a:after {
    width: 15.75px;
    right: 53px;
  }
}
@media (max-width: 1499px) {
  .invest-idx-list a:after {
    width: 13px;
    right: 20px;
  }
}
@media (max-width: 991px) {
  .invest-idx-list a:after {
    width: 10px;
    right: 10px;
  }
}
.invest-idx-list a span {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  height: -moz-fit-content;
  height: fit-content;
}
.invest-idx-list a:before {
  font-size: 40px;
  color: #333;
  opacity: 0.1;
  font-family: arial;
}
.invest-idx-list a:nth-child(01)::before {
  content: "01";
}
.invest-idx-list a:nth-child(02)::before {
  content: "02";
}
.invest-idx-list a:nth-child(03)::before {
  content: "03";
}
.invest-idx-list a:nth-child(04)::before {
  content: "04";
}
.invest-idx-list a:nth-child(05)::before {
  content: "05";
}
.invest-idx-list a:nth-child(06)::before {
  content: "06";
}
.invest-idx-list a:nth-child(07)::before {
  content: "07";
}
.invest-idx-list a:nth-child(08)::before {
  content: "08";
}
.invest-idx-list a:nth-child(09)::before {
  content: "09";
}
.invest-idx-list a:nth-child(10)::before {
  content: "10";
}
.invest-idx-list a:nth-child(11)::before {
  content: "11";
}
.invest-idx-list a:nth-child(12)::before {
  content: "12";
}
.invest-idx-list a:nth-child(13)::before {
  content: "13";
}
.invest-idx-list a:nth-child(14)::before {
  content: "14";
}
@media (max-width: 991px) {
  .invest-idx-list {
    display: block;
  }
}

.invest-idx-list .icon-link::before,
.select_submenu .icon-link::before {
  margin-left: 5px;
  background-image: url(../images/_temp/investment/link-g.svg);
}
@media (max-width: 768px) {
  .invest-idx-list .icon-link,
  .select_submenu .icon-link {
    width: 13px;
    height: 13px;
    background-size: contain;
  }
}

.invest-idx-list a:hover .icon-link::before {
  background-image: url(../images/_temp/investment/link.svg);
  transition: all 0.3s ease-in-out;
}

.select_submenu a:hover .icon-link::before {
  background-image: url(../images/_temp/investment/link-w.svg);
  transition: all 0.3s ease-in-out;
}

.shadow {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}

.committee {
  margin-left: -14px;
  margin-right: -14px;
}
.committee .shadow {
  padding: 40px;
  margin: 0 14px;
  width: calc(50% - 28px);
}
.committee .shadow .icon-pdf {
  width: 100%;
  padding: 27px 0 0 33px;
  border-top: 1px solid #00B9EF;
}
.committee .shadow .h5_2 {
  color: #00a2e6;
}
@media (min-width: 1200px) {
  .committee .shadow .h5_2 {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .committee .shadow .h5_2 {
    margin-bottom: 25px;
  }
}
.committee .shadow p:nth-of-type(2) {
  color: #666;
}
@media (min-width: 768px) {
  .committee .shadow p:nth-of-type(2) {
    min-height: 86px;
  }
}
@media (max-width: 768px) {
  .committee .shadow {
    width: 100%;
    margin-bottom: 20px;
    padding: 30px 30px;
  }
  .committee .shadow .h5_2 {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .committee .shadow .p:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .committee .shadow .icon-pdf {
    margin-top: 25px;
  }
}
.committee .shadow a:hover, .committee .shadow a p:hover {
  color: #00a2e6;
  transition: 0.3s;
}
.committee .shadow a:hover.icon-pdf:before, .committee .shadow a p:hover.icon-pdf:before {
  background: url(../images/_temp/investment/pdf-b.svg) center no-repeat;
}

.max-1370 {
  max-width: 1370px;
  margin: auto;
}
.max-1136 {
  max-width: 1136px;
  margin: auto;
}

.icon-pdf {
  position: relative;
  display: block;
}
.icon-pdf:before {
  display: inline-block;
  vertical-align: top;
  content: "";
  width: 20px;
  height: 24px;
  background: url(../images/_temp/investment/pdf.svg) center no-repeat;
  background-size: contain;
  margin: -3px 10px 0 -33px;
}

.icon-arrow {
  position: relative;
}
.icon-arrow::before {
  content: "";
  background: url(../images/_temp/investment/arrow.svg) center no-repeat;
}

.icon-link {
  position: relative;
}
.icon-link::before {
  content: "";
  background: url(../images/_temp/investment/link.svg) center no-repeat;
  width: 15px;
  height: 15px;
}

@media (hover: hover) and (pointer: fine) {
  .invest-idx-list a:hover {
    color: #00a2e6;
  }
}
.control .icon-pdf {
  line-height: 40px;
}
.control .icon-pdf:before {
  width: 33.25px;
  height: 40px;
  margin: 0 25px 0 0;
  background-size: contain;
}
@media (max-width: 1024px) {
  .control .icon-pdf {
    line-height: 35px;
    font-size: 18px;
  }
  .control .icon-pdf::before {
    height: 35px;
    width: 27px;
    margin-right: 15px;
  }
}
.control .icon-arrow {
  position: absolute;
  right: 25px;
  transform: translateY(-50%);
  top: 50px;
}
.control .icon-arrow::before {
  width: 12px;
  height: 18px;
}
.control .down-btn {
  padding: 30px 25px;
  font-size: 20px;
  color: #333;
  border-bottom: 1px solid #ddd;
  max-width: calc(33.3333333333% - 30px);
  margin: 0 30px 20px 0;
  width: 33.3333%;
  position: relative;
}
.control .down-btn:hover {
  background-color: #00a2e6;
  color: #fff;
  border-color: transparent;
}
.control .down-btn:hover .icon-arrow::before {
  background-image: url(../images/_temp/investment/arrow-w.svg);
  transition: all 0.3s ease-in-out;
}
.control .down-btn:hover .icon-pdf::before {
  background-image: url(../images/_temp/investment/pdf-w.svg);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
  .control .down-btn {
    max-width: calc(50% - 40px);
    margin: 0 20px 20px;
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .control .down-btn {
    padding: 30px 15px;
    max-width: 100%;
    width: 100%;
    margin: 0 10px 20px;
  }
}

.security-item {
  padding: 50px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-wrap: wrap;
}
.security-item:nth-child(even) {
  background-color: #fafafa;
}
.security-item + .security-item {
  border-top: 0px;
}
.security-item:last-of-type {
  border-bottom: 1px solid #e5e5e5;
}
.security-title {
  color: #666;
  font-size: 26px;
  font-weight: bold;
  color: #333;
  width: 30%;
  display: flex;
}
.security-title .num {
  opacity: 0.1;
  font-size: 40px;
  font-family: arial;
  margin-right: 20px;
  font-weight: 400;
  position: relative;
  top: -8px;
}
.security-title span .sub {
  font-size: 20px;
  font-weight: 400;
  display: block;
  margin-top: 10px;
}
.security-text {
  font-size: 18px;
  color: #666;
  width: 70%;
  line-height: 28px;
  max-width: 810px;
}
.security-text ul {
  list-style-type: none;
  padding-left: 20px;
}
.security-text li {
  margin-bottom: 10px;
}
.security-text li::before {
  content: "";
  display: inline-block;
  width: 14px;
  margin-left: -15px;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: #00a2e6;
  position: relative;
  top: -4px;
  margin-right: 15px;
}
.security-text p + p {
  margin: 20px 0;
}
@media (max-width: 860px) {
  .security-title, .security-text {
    width: 100%;
    max-width: 100%;
  }
  .security-title {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .security-title .num {
    font-size: 32px;
    top: -5px;
    margin-right: 13px;
  }
  .security-title .sub {
    margin-bottom: 10px;
  }
  .security-text {
    font-size: 15px;
    padding-left: 50px;
  }
  .security-text li {
    line-height: 24px;
  }
  .security-item {
    padding: 40px 10px;
  }
}

.open-link {
  font-size: 20px;
  color: #00a2e6;
  text-align: center;
  border: 1px solid #00a2e6;
  padding: 26px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media (min-width: 1200px) {
  .open-link {
    width: 50%;
  }
}
.open-link:hover {
  background-color: #00a2e6;
  color: #fff;
}
.open-link:hover .icon-link::before {
  background-image: url(../images/_temp/investment/link-w.svg);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .open-link {
    font-size: 16px;
    padding: 18px;
  }
}

.info-box {
  border: 1px solid #ddd;
  overflow: auto;
}
.info-item {
  padding: 4%;
}
.info-item:last-child {
  border-left: 1px solid #ddd;
}
.info-item .h9,
.info-item a {
  color: #666;
}
@media (min-width: 1024px) {
  .info-item .h5 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .info-item:last-child {
    border-left: 0px solid #ddd;
    border-top: 1px solid #ddd;
  }
}
.info-g {
  background-color: #fafafa;
  padding: 4%;
  display: flex;
  flex-wrap: wrap;
}
.info-g h4 {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .info-g h4 {
    max-width: 195px;
  }
}
.info-g .h9 {
  color: #666;
}
@media (min-width: 1025px) {
  .info-g .h9 {
    font-size: 16px;
    max-width: calc(100% - 195px);
  }
}
@media (max-width: 1024px) {
  .info-g {
    padding: 40px 25px;
  }
}

.step-box {
  border: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
}
.step-box .bule {
  padding: 0 5px;
  display: inline-block;
}
.step-box li {
  width: 25%;
  padding: 30px 27px;
}
.step-box a.bule{
  color: #00a2e6;
  text-decoration: underline;
}
@media (min-width: 767px) {
  .step-box li {
    border-right: 1px solid #ddd;
  }
  .step-box li:nth-child(1) {
    border-bottom: 5px solid #00a2e6;
  }
  .step-box li:nth-child(2) {
    border-bottom: 5px solid #0081cf;
  }
  .step-box li:nth-child(3) {
    border-bottom: 5px solid #015BA5;
  }
  .step-box li:last-child {
    border: 0;
    border-bottom: 5px solid #00428E;
  }
}
@media (max-width: 767px) {
  .step-box li {
    padding: 30px 20px;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }
  .step-box li:nth-child(1) {
    border-left: 5px solid #00a2e6;
  }
  .step-box li:nth-child(2) {
    border-left: 5px solid #0081cf;
  }
  .step-box li:nth-child(3) {
    border-left: 5px solid #015BA5;
  }
  .step-box li:last-child {
    border: 0;
    border-left: 5px solid #00428E;
  }
}
.step-box .num {
  font-size: 40px;
  font-family: arial;
  color: #ebebeb;
}
@media (max-width: 767px) {
  .step-box .num {
    font-size: 35px;
  }
}

.year-select {
  display: none;
  position: absolute;
  top: 100%;
  left: -1px;
  width: 101%;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #00a2e6;
  background-color: #fff;
  z-index: 1;
}
.year-select-title {
  position: relative;
  border: 1px solid #00a2e6;
  width: 100%;
  text-align: center;
  margin: 30px auto;
  max-width: 260px;
}
.year-select-title .select-title {
  padding: 19px;
  font-size: 18px;
  display: block;
  color: #00a2e6;
  background: url("../images/_temp/investment/s-arrow.svg") no-repeat right center;
  background-size: 45px 7px;
  padding-right: 20px;
}
.year-select-title .select-title:hover:first-child {
  cursor: pointer;
  background-color: #00a2e6;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .year-select-title .select-title {
    font-size: 16px;
    padding: 15px;
  }
}
.year-select-title.open ul {
  display: block;
}
.year-select li {
  padding: 19px;
  cursor: pointer;
  color: #00a2e6;
  border-bottom: 1px solid #ddd;
}
.year-select li:hover {
  background-color: #00a2e6;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.table-table {
  max-width: 1370px;
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.5);
}
.table-table th,
.table-table td {
  padding: 8px;
  text-align: center;
  width: 12%;
  font-size: 18px;
  padding: 20px 0;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .table-table th:first-of-type,
  .table-table td:first-of-type {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  #stock .table-table th:first-of-type,
  #stock .table-table td:first-of-type {
    width: 12%;
  }
  #law .table-table th:first-of-type,
  #law .table-table td:first-of-type {
    width: 12%;
  }
  #performance .table-table th:first-of-type,
  #performance .table-table td:first-of-type {
    width: 12%;
  }
}
.table-table th {
  color: #00a2e6;
  margin: 20px 0;
  position: relative;
  border-bottom: 1px solid #00a2e6;
}
.table-table th:first-child {
  border-left: 0;
}
.table-table th:after {
  content: "";
  height: 25px;
  display: block;
  position: absolute;
  right: 0;
  width: 1px;
  background-color: #ddd;
  top: 50%;
  transform: translateY(-50%);
}
.table-table th:last-child::after {
  content: "";
  display: none;
}
.table-table td {
  position: relative;
  border-bottom: 1px solid #ddd;
}
.table-table thead {
  border-top: 2px solid #00a2e6;
  border-bottom: 1px solid #00a2e6;
}
.table-table .icon-pdf {
  margin: auto;
}
.table-table .icon-pdf::before {
  margin: 0;
  width: 24px;
  height: 29px;
  background-size: contain;
}
.table-table .icon-pdf:hover::before {
  background: url(../images/_temp/investment/pdf-b.svg) center no-repeat;
  background-size: contain;
}
.table-table tbody tr:nth-child(even) {
  background-color: rgba(209, 209, 209, 0.15);
}
@media screen and (max-width: 768px) {
  .table-table thead {
    display: none;
  }
  .table-table tr {
    margin-bottom: 10px;
    border-spacing: 20px;
    border-collapse: separate;
  }
  .table-table th,
  .table-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .table-table th {
    text-align: left;
  }
  .table-table td {
    padding-left: 200px;
    font-size: 16px;
    text-align: left;
  }
  .table-table td:first-child {
    border-top: 1px solid #ddd;
  }
  .table-table td::before {
    content: attr(data-title);
    position: absolute;
    width: 180px;
    left: 15px;
    text-align: left;
    font-weight: bold;
  }
}
@media screen and (min-width: 768px) {
  .table-table.law-table th:first-child,
  .table-table.law-table td:first-child {
    width: 15%;
  }
  .table-table.law-table th:nth-child(2n),
  .table-table.law-table td:nth-child(2n) {
    width: 55%;
  }
}

.down-table {
  max-width: 1370px;
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.5);
}
.down-table th,
.down-table td {
  padding: 8px;
  text-align: center;
  width: 15%;
  font-size: 18px;
  padding: 20px 0;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .down-table th:first-of-type,
  .down-table td:first-of-type {
    width: 25%;
  }
}
.down-table th {
  color: #00a2e6;
  margin: 20px 0;
  position: relative;
  border-bottom: 1px solid #00a2e6;
}
.down-table th:first-child {
  border-left: 0;
}
.down-table th:after {
  content: "";
  height: 25px;
  display: block;
  position: absolute;
  right: 0;
  width: 1px;
  background-color: #ddd;
  top: 50%;
  transform: translateY(-50%);
}
.down-table th:last-child::after {
  content: "";
  display: none;
}
.down-table td {
  position: relative;
  border-bottom: 1px solid #ddd;
}
.down-table thead {
  border-top: 2px solid #00a2e6;
  border-bottom: 1px solid #00a2e6;
}
.down-table .icon-pdf {
  margin: auto;
}
.down-table .icon-pdf::before {
  margin: 0;
  width: 24px;
  height: 29px;
  background-size: contain;
}
.down-table .icon-pdf:hover::before {
  background: url(../images/_temp/investment/pdf-b.svg) center no-repeat;
  background-size: contain;
}
.down-table tbody tr:nth-child(even) {
  background-color: rgba(209, 209, 209, 0.15);
}
@media screen and (max-width: 768px) {
  .down-table thead {
    display: none;
  }
  .down-table tr {
    margin-bottom: 10px;
    border-spacing: 20px;
    border-collapse: separate;
  }
  .down-table th,
  .down-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .down-table th {
    text-align: left;
  }
  .down-table td {
    padding-left: 135px;
    font-size: 16px;
    text-align: left;
  }
  .down-table td:first-child {
    border-top: 1px solid #ddd;
  }
  .down-table td::before {
    content: attr(data-title);
    position: absolute;
    width: 135px;
    left: 15px;
    text-align: left;
    font-weight: bold;
  }
}

.table-table [data-title="錄音(影)檔"] .icon-pdf:hover::before {
  background: url(../images/_temp/investment/video_icon2.png) center no-repeat;
  background-size: cover;
  width: 28px;
  height: 28px;
}

.table-table [data-title="錄音(影)檔"] .icon-pdf::before {
  background: url(../images/_temp/investment/video_icon1.png) center no-repeat;
  background-size: cover;
  width: 28px;
  height: 28px;
}