@charset "UTF-8";
/* -------------------------------------------------------------
  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

------------------------------------------------------------- */
.site-content {
  min-height: inherit;
  z-index: 0;
  overflow: inherit;
  overflow-x: hidden;
}

.TR_information {
  font-size: 20px;
  line-height: 1.75;
}
.TR_information sup {
  font-size: 12px;
  line-height: 1;
  top: -6px;
  position: relative;
}
.TR_information .lg-view {
  display: block;
}
.TR_information .sm-view {
  display: none;
}
.TR_information .kv {
  position: relative;
  -moz-user-select: none;
  -webkit-user-select: none;
  background-color: #d5e7e7;
  margin-bottom: 60px;
}
.TR_information .kv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
}
.TR_information .kv-image {
  position: relative;
  z-index: 1;
  height: 209px;
  overflow: hidden;
}
.TR_information .kv-image img {
  position: absolute;
  z-index: 1;
  display: block;
  margin: 0 auto;
  top: 0;
  right: 0;
  max-width: inherit;
  height: 100%;
}
.TR_information .kv-main {
  background-image: url(../images/TR_information/TR_information_banner_text_C.png);
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 920px;
  height: 100%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  font-size: 0;
  color: transparent;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.zh-TW .TR_information .kv-main {
  background-image: url(../images/TR_information/TR_information_banner_text_C.png);
  background-size: 207px auto;
}
.zh-CN .TR_information .kv-main {
  background-image: url(../images/TR_information/TR_information_banner_text_D.png);
  background-size: 207px auto;
}
.en-US .TR_information .kv-main {
  background-image: url(../images/TR_information/TR_information_banner_text_E.png);
  background-size: 466px auto;
}
.ja-JP .TR_information .kv-main {
  background-image: url(../images/TR_information/TR_information_banner_text_J.png);
  background-size: 261px auto;
}
.TR_information .section {
  max-width: 920px;
  margin: 0 auto;
}
.TR_information .section-header {
  font-size: 26px;
  line-height: 36px;
  color: #8b0000;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .2em;
  text-indent: -.2em;
}
.TR_information .text-block {
  display: inline-block;
}
.TR_information .country-list .item {
  width: calc(100% / 5 -  42px);
  margin: 0 21px;
  margin-bottom: 20px;
}
.TR_information .country-list .item .image {
  width: 124px;
  border: 1px solid #707070;
  margin: 0 auto 8px;
  -moz-transition-property: -moz-transform, border;
  -o-transition-property: -o-transform, border;
  -webkit-transition-property: -webkit-transform, border;
  transition-property: transform, border;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  position: relative;
}
.TR_information .country-list .item .image img {
  width: 100%;
  display: block;
  opacity: 1;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.TR_information .country-list .item .image:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.TR_information .country-list .item .main-text {
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  text-align: center;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.TR_information .country-list .item a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.TR_information .country-list .item a:hover .image, .TR_information .country-list .item a:active .image {
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  border-width: 0.9996px;
  transform-origin: top center;
  background-color: #fff;
}
.TR_information .country-list .item a:hover .image:before, .TR_information .country-list .item a:active .image:before {
  opacity: 1;
}
.TR_information .country-list .item a:hover .main-text, .TR_information .country-list .item a:active .main-text {
  color: #8b0000;
  font-weight: 700;
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.TR_information .country-list .item a.prompt .main-text {
  color: #d5d5d5;
}
.TR_information .country-list .item a.prompt .image {
  white-space: pre;
}
.TR_information .country-list .item a.prompt .image:after {
  content: "製作中 \A 敬請期待!!";
  color: #0000ff;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  opacity: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.zh-CN .TR_information .country-list .item a.prompt .image:after {
  content: "制作中 \A 敬请期待!!";
}
.en-US .TR_information .country-list .item a.prompt .image:after {
  content: "Coming \A Soon!!";
}
.ja-JP .TR_information .country-list .item a.prompt .image:after {
  content: "近日公開!!";
}
.TR_information .country-list .item a.prompt:hover .image, .TR_information .country-list .item a.prompt:active .image {
  border-color: transparent;
  box-shadow: none;
}
.TR_information .country-list .item a.prompt:hover .image:before, .TR_information .country-list .item a.prompt:active .image:before {
  opacity: 0;
}
.TR_information .country-list .item a.prompt:hover .image:after, .TR_information .country-list .item a.prompt:active .image:after {
  opacity: 1;
}
.TR_information .country-list .item a.prompt:hover .image img, .TR_information .country-list .item a.prompt:active .image img {
  opacity: .15;
}
.TR_information .country-list .item a.prompt:hover .main-text, .TR_information .country-list .item a.prompt:active .main-text {
  color: #d5d5d5;
}
.is-mobile .TR_information .country-list .item a:hover .image {
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
  box-shadow: none;
}
.is-mobile .TR_information .country-list .item a:hover .image:before {
  opacity: 0;
}
.is-mobile .TR_information .country-list .item a:hover .main-text {
  color: #000;
  font-weight: 400;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
.is-mobile .TR_information .country-list .item a.prompt .image:after {
  display: none;
}
.is-mobile .TR_information .country-list .item a.prompt:hover .image, .is-mobile .TR_information .country-list .item a.prompt:active .image {
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
  box-shadow: none;
}
.is-mobile .TR_information .country-list .item a.prompt:hover .image:before, .is-mobile .TR_information .country-list .item a.prompt:active .image:before {
  opacity: 0;
}
.is-mobile .TR_information .country-list .item a.prompt:hover .main-text, .is-mobile .TR_information .country-list .item a.prompt:active .main-text {
  color: #8b0000;
  font-weight: 700;
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.TR_information .country-list .item.is-prompt a {
  pointer-events: none;
}
.TR_information .country-list .item.is-prompt:hover .prompt .image {
  border-color: transparent;
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  border-width: 0.9996px;
  transform-origin: top center;
  background-color: #fff;
  box-shadow: none;
}
.TR_information .country-list .item.is-prompt:hover .prompt .image:before {
  opacity: 0;
}
.TR_information .country-list .item.is-prompt:hover .prompt .image:after {
  opacity: 1;
}
.TR_information .country-list .item.is-prompt:hover .prompt .image img {
  opacity: .15;
}
.TR_information .country-list .item.is-prompt:hover .prompt .main-text {
  color: #d5d5d5;
  font-weight: 700;
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.is-mobile .TR_information .country-list .item.is-prompt a {
  pointer-events: auto;
}
.is-mobile .TR_information .country-list .item.is-prompt a:hover .image, .is-mobile .TR_information .country-list .item.is-prompt a:active .image {
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
  box-shadow: none;
}
.is-mobile .TR_information .country-list .item.is-prompt a:hover .image:before, .is-mobile .TR_information .country-list .item.is-prompt a:active .image:before {
  opacity: 0;
}
.is-mobile .TR_information .country-list .item.is-prompt a:hover .main-text, .is-mobile .TR_information .country-list .item.is-prompt a:active .main-text {
  color: #d5d5d5;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
.is-mobile .TR_information .country-list .item.is-prompt:hover .image {
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
  box-shadow: none;
}
.is-mobile .TR_information .country-list .item.is-prompt:hover .image:before {
  opacity: 0;
}
.is-mobile .TR_information .country-list .item.is-prompt:hover .main-text {
  color: #d5d5d5;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
.TR_information .section {
  margin-bottom: 60px;
}
.TR_information .section:last-child {
  margin-bottom: 35px;
}
.TR_information .img-title {
  position: relative;
  margin-bottom: 40px;
}
.TR_information .img-title img {
  width: 100%;
  display: block;
}
.TR_information .img-title .lg-view {
  display: block;
}
.TR_information .img-title .md-view {
  display: none;
}
.TR_information .img-title .sm-view {
  display: none;
}
.ja-JP .TR_information .country-list .item.is-prompt {
  pointer-events: none;
}
.ja-JP .TR_information .country-list .item.is-prompt .prompt .image {
  opacity: .15;
}
.ja-JP .TR_information .country-list .item.is-prompt .prompt .image:before {
  opacity: 1;
  box-shadow: none;
}
.ja-JP .TR_information .country-list .item.is-prompt .prompt .image:after {
  opacity: 0;
}
.ja-JP .TR_information .country-list .item.is-prompt .prompt .image img {
  opacity: 1;
}
.ja-JP .TR_information .country-list .item.is-prompt:hover .prompt .image:after {
  opacity: 0;
}
.ja-JP .TR_information .country-list .item.is-prompt:hover .prompt .image img {
  opacity: 1;
}
.TR_information .information-filter {
  margin-bottom: 20px;
  display: none;
  position: relative;
  z-index: 2;
}
.TR_information .information-collapse {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.TR_information .information-collapse .sub-menu {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  border: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding-bottom: 0;
  background-color: #fff;
}
.TR_information .information-collapse .sub-menu a {
  line-height: 21px;
  padding: 10px 50px 10px 39px;
  font-size: 16px;
  display: block;
  text-decoration: none;
  color: #000;
}
.TR_information .information-collapse .sub-menu a:hover {
  color: #404040;
  text-decoration: none;
  background-color: #D4E2E6;
}
.TR_information .information-collapse .sub-menu a.active {
  color: #404040;
  text-decoration: none;
  background-color: #D4E2E6;
  font-weight: 700;
}
.TR_information .information-collapse .collapse-trigger {
  position: relative;
  background-color: #D4E2E6;
  border-radius: 0;
  border: 1px solid #D4E2E6;
  height: 38px;
  line-height: 22px;
  width: 100%;
  padding: 8px 59px 8px 39px;
  color: #000;
  font-size: 16px;
  display: block;
  text-decoration: none;
}
.TR_information .information-collapse .icon-arrow {
  background-position: center center;
  background-size: 16px auto;
  background-image: url(../images/TR_information/select-arrow.svg);
  width: 16px;
  height: 10px;
  position: absolute;
  top: 14px;
  right: 33px;
}
.TR_information .information-collapse .collapsed .icon-arrow {
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.TR_country .banner {
  position: relative;
  -moz-user-select: none;
  -webkit-user-select: none;
  background-color: #d5e7e7;
  margin-bottom: 60px;
  background-image: url(../images/TR_information/TR_country_banner_bg.jpg);
}
.TR_country .banner-image {
  position: relative;
  z-index: 1;
  height: 135px;
  overflow: hidden;
}
.TR_country .banner-image img {
  position: absolute;
  z-index: 1;
  display: block;
  margin: 0 auto;
  top: 0;
  right: 0;
  max-width: inherit;
  height: 100%;
}
.TR_country .banner-image .lg-view {
  display: block;
}
.TR_country .banner-image .md-view {
  display: none;
}
.TR_country .banner-block {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 118px * 2);
  max-width: 920px;
  display: block;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}
.TR_country .banner-block:after {
  display: none;
}
.TR_country .banner-link {
  position: absolute;
  bottom: 15px;
  right: 20px;
  z-index: 1;
}
.TR_country .banner-link a {
  position: relative;
  display: block;
  text-align: center;
  font-weight: 700;
  width: 194px;
  height: 47px;
  border: 2px solid rgba(92, 176, 197, 0.85);
  background-color: rgba(254, 255, 255, 0.85);
  color: #404040;
  line-height: 43px;
  font-size: 22px;
  letter-spacing: .1em;
  border-radius: 47px;
  padding: 0;
  text-decoration: none;
}
.TR_country .banner-link a:hover, .TR_country .banner-link a:active {
  background-color: #8B0000;
  color: #fff;
  border-color: #8B0000;
}
.TR_country .banner .country-title {
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.TR_country .banner .country-title .lg-view {
  display: block;
}
.TR_country .banner .country-title .md-view {
  display: none;
}
.TR_country .banner .country-title .sm-view {
  display: none;
}
.TR_country .banner .flag {
  position: absolute;
  left: -58px;
  bottom: .2em;
  width: 48px;
  background-color: #707070;
  padding: 1px;
}
.TR_country .banner .flag img {
  display: block;
}
.TR_country .banner .main-text {
  color: #0705e5;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  position: relative;
  vertical-align: text-bottom;
  white-space: nowrap;
}
.TR_country .banner .sub-text {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .2em;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  display: block;
  overflow: hidden;
  vertical-align: text-bottom;
}
.zh-CN .TR_country .banner .sub-text {
  font-family: 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.en-US .TR_country .banner .sub-text {
  letter-spacing: .05em;
}
.TR_country .l-block {
  border: 1px solid #707070;
  margin-bottom: 20px;
  line-height: 1.75;
}
.TR_country .l-block-header {
  background-color: #5DAABE;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: .2em;
  padding: 6px 20px;
  min-height: 50px;
}
.TR_country .l-block-sub_header {
  background-color: #E6EEEF;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: .2em;
  padding: 3px 20px;
  min-height: 38px;
}
.en-US .TR_country .l-block .l-block-header {
  letter-spacing: .1em;
}
.en-US .TR_country .l-block .l-block-sub_header {
  letter-spacing: .1em;
}
.TR_country .l-row {
  border-top: 1px solid #707070;
}
.TR_country .l-row:first-child {
  border-top: 0;
}
.TR_country .l-row-hd {
  padding: 8px 10px;
  text-align: right;
  width: 265px;
  background-color: #ECECEC;
  font-weight: 700;
  border-right: 1px solid #707070;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.TR_country .l-row-bd {
  padding: 8px 15px;
  width: calc(100% - 265px);
  text-align: justify;
}
.en-US .TR_country .l-row .l-row-hd {
  width: 355px;
}
.en-US .TR_country .l-row .l-row-bd {
  text-align: left;
  width: calc(100% - 355px);
}
.TR_country .l-layer {
  border-bottom: 1px solid #707070;
  margin: 0 35px;
  padding: 10px 0;
}
.TR_country .l-layer:last-child {
  border-bottom: 0;
}
.TR_country .l-layer-hd {
  padding-right: 35px;
  text-align: center;
  width: 230px;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.TR_country .l-layer-hd:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #707070;
}
.TR_country .l-layer-hd span {
  display: block;
  width: 100%;
}
.TR_country .l-layer-bd {
  padding: 0 15px;
  padding-right: 0;
  width: calc(100% - 230px);
  text-align: justify;
}
.en-US .TR_country .l-layer .l-layer-hd {
  width: 320px;
}
.en-US .TR_country .l-layer .l-layer-bd {
  text-align: left;
  width: calc(100% - 320px);
}
.TR_country .square-list {
  list-style: square;
  padding-left: 1em;
}
.TR_country .decimal-list {
  list-style: decimal;
  padding-left: 1.1em;
}
.TR_country .decimal-list li {
  padding-left: .25em;
}
.TR_country .type .item {
  margin-bottom: 20px;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.45);
  line-height: 1.75;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 100%;
  position: relative;
}
.TR_country .type .item:last-child {
  margin-bottom: 0;
}
.TR_country .type .item-hd {
  padding: 8px 5px 8px 15px;
  text-align: center;
  width: 265px;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background-color: #DADCC3;
  position: relative;
  font-size: 26px;
  line-height: 1.36;
}
.TR_country .type .item-hd:before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 21px;
  height: 100%;
  background-image: url(../images/TR_information/type-triangle.png);
  background-position: right center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.TR_country .type .item-hd .image {
  margin-left: 8px;
  width: 86px;
  display: inline-block;
}
.TR_country .type .item-hd .image img {
  margin: 0;
  display: block;
}
.TR_country .type .item-bd {
  padding: 8px 16px;
  width: calc(100% - 265px);
  max-width: 100%;
  position: relative;
  text-align: justify;
  min-height: 78px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.TR_country .type .item-bd__inner {
  width: 100%;
  display: block;
}
.en-US .TR_country .type .item .item-hd {
  width: 355px;
  font-size: 24px;
}
.en-US .TR_country .type .item .item-hd h2 {
  width: calc(100% - 94px);
  text-align: left;
}
.en-US .TR_country .type .item .item-bd {
  width: calc(100% - 355px);
  text-align: left;
}
.TR_country .related .square-list li {
  padding-bottom: .5em;
}
.TR_country .related .square-list li:last-child {
  padding-bottom: 0;
}
.TR_country .related .square-list a {
  color: #000;
  text-decoration: underline;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .1em;
}
.TR_country .related .square-list a:hover, .TR_country .related .square-list a:active {
  text-decoration: none;
  color: #0705e5;
}
.is-mobile .TR_country .related .square-list a:hover {
  text-decoration: underline;
  color: #000;
}
.is-mobile .TR_country .related .square-list a:active {
  text-decoration: none;
  color: #0705e5;
}
.TR_country .memberStates-table .hd {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  border: 1px solid #707070;
  border-bottom: 0;
  padding: 5px 8px;
  background-color: #adadad;
  letter-spacing: .2em;
  text-indent: .2em;
  white-space: nowrap;
}
.TR_country .memberStates-table td {
  line-height: 1.5;
  border: 1px solid #707070;
  border-top: 0;
  padding: 8px 16px;
  text-align: left;
  vertical-align: middle;
}
.TR_country .memberStates-table td span {
  display: inline-block;
}
.TR_country .memberStates-table tr td:first-child {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  width: 22%;
}
.TR_country .memberStates-table-en tr td:first-child {
  font-weight: 400;
  text-align: left;
  width: 50%;
}
.TR_country .memberStates-table-en strong {
  font-weight: 700;
}
@media (max-width: 480px) {
  .TR_country .memberStates-table-en .hd {
    letter-spacing: 0;
    text-indent: 0;
  }
  .TR_country .memberStates-table-en tr td:first-child {
    width: 100%;
  }
  .TR_country .memberStates-table-en tr td {
    width: 100%;
    display: block;
  }
  .TR_country .memberStates-table-en .mb-hide {
    display: none;
  }
}

.prompt-model .modal-dialog {
  width: calc(100vw - 20%);
  max-width: 340px;
  border-radius: 5px;
  margin: 0 auto;
}
.prompt-model .modal-header {
  text-align: center;
  border: 0;
  display: block;
  padding: 15px 0;
}
.prompt-model .modal-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #8b0000;
}
.en-US .prompt-model .modal-title .d-inline-block {
  display: block !important;
}
.prompt-model .modal-body {
  padding: 0 15px;
}
.prompt-model .modal-footer {
  border: 0;
  padding: 15px;
  display: block;
}
.prompt-model p {
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
}
.prompt-model a {
  color: #0000ff;
  text-decoration: underline;
}
.prompt-model a:hover, .prompt-model a:active {
  text-decoration: none;
}
.prompt-model .btn-link {
  color: #AC3B00;
  padding: 0 15px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.44;
  display: block;
  margin: 0 auto;
}
.prompt-model .btn-link:hover, .prompt-model .btn-link:active {
  color: #0705E5;
}
.en-US .prompt-model .modal-title {
  font-size: 20px;
  line-height: 1.3;
}
.en-US .prompt-model p {
  font-size: 16px;
  line-height: 1.63;
}
.en-US .prompt-model .btn-link {
  font-size: 16px;
}
.en-US .prompt-model .modal-title {
  font-size: 24px;
  line-height: 1.3;
}

@media (min-width: 1921px) {
  .TR_information .kv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .TR_country .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 961px) {
  .TR_country .banner .country-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .TR_country .banner .main-text {
    margin-right: 10px;
  }
}
@media (min-width: 961px) and (max-width: 1240px) {
  .en-US .TR_country .banner .main-text {
    font-size: 3.629vw;
    letter-spacing: 0.080645161vw;
  }
  .en-US .TR_country .banner .sub-text {
    font-size: 2.58vw;
  }
}
@media (max-width: 960px) {
  .TR_information .kv {
    margin-bottom: 40px;
  }
  .TR_information .kv-image {
    height: 138px;
  }
  .TR_information .kv-main {
    max-width: 648px;
    width: calc(100% - 7.8% * 2);
  }
  .zh-TW .TR_information .kv-main {
    background-size: 207px auto;
  }
  .zh-CN .TR_information .kv-main {
    background-size: 207px auto;
  }
  .en-US .TR_information .kv-main {
    background-size: 322px auto;
  }
  .ja-JP .TR_information .kv-main {
    background-size: 261px auto;
  }
  .TR_information .container {
    padding: 0 7.8%;
  }
  .TR_information .img-title .lg-view {
    display: none;
  }
  .TR_information .img-title .md-view {
    display: block;
  }
  .TR_information .img-title .sm-view {
    display: none;
  }
  .TR_information .section {
    max-width: 648px;
    margin-bottom: 40px;
  }
  .TR_information .section-header {
    text-indent: -.5em;
  }
  .TR_information .country-list {
    margin: 0 -21px;
  }
  .TR_information .country-list .item {
    width: calc(100% / 5 -  42px);
    margin: 0 21px;
    margin-bottom: 20px;
  }
  .TR_information .country-list .item .main-text br {
    display: none;
  }
  .en-US .TR_information .country-list .item .main-text br {
    display: block;
  }
  .TR_information .country-list .item .image {
    width: 100%;
  }
  .TR_information .country-list .item a.prompt .image:after {
    font-size: 14px;
  }
  .TR_information .country-list .item.is-prompt a {
    pointer-events: auto;
  }
  .TR_information .country-list .item.is-prompt:hover .prompt .image:after {
    font-size: 14px;
  }

  .TR_country .section {
    margin-bottom: 60px;
  }
  .TR_country .banner {
    background-image: none;
    background: #fff;
  }
  .TR_country .banner-image {
    height: 135px;
  }
  .TR_country .banner-image .lg-view {
    display: none;
  }
  .TR_country .banner-image .md-view {
    display: block;
  }
  .TR_country .banner-link a {
    width: 155px;
    height: 37px;
    line-height: 33px;
    font-size: 20px;
    border-radius: 37px;
    padding: 0 10px;
  }
  .en-US .TR_country .banner-link a {
    letter-spacing: 0;
    text-indent: 0;
  }
  .TR_country .banner .main-text {
    font-size: 40px;
  }
  .TR_country .banner .sub-text {
    font-size: 32px;
    width: 2.1em;
    white-space: nowrap;
    margin-left: 10px;
    letter-spacing: .08em;
    height: 48px;
    line-height: 48px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .TR_country .banner .country-title {
    display: inline-block;
    padding-right: 80px;
  }
  .TR_country .banner .country-title .lg-view {
    display: none;
  }
  .TR_country .banner .country-title .md-view {
    display: block;
  }
  .TR_country .banner .country-title .sm-view {
    display: none;
  }
  .en-US .TR_country .banner .sub-text {
    font-size: 26px;
    width: 6em;
    white-space: initial;
  }
  .en-US .TR_country .banner .country-title {
    padding-right: 180px;
  }
  .en-US .TR_country .type .item {
    display: block !important;
  }
  .en-US .TR_country .type .item .item-hd {
    padding: 8px;
    width: 100%;
    font-size: 24px;
    text-align: center;
    display: block;
  }
  .en-US .TR_country .type .item .item-hd:before {
    display: none;
  }
  .en-US .TR_country .type .item .item-hd .image {
    display: none;
  }
  .en-US .TR_country .type .item .item-hd h2 {
    width: 100%;
    text-align: center;
  }
  .en-US .TR_country .type .item .item-bd {
    padding: 8px 16px;
    width: 100%;
    display: block;
    min-height: inherit;
    font-size: 20px;
  }
  .en-US .TR_country .type .item .sm-text-center {
    text-align: center;
    display: block;
  }
  .en-US .TR_country .type .item .item-hd {
    padding: 8px;
  }
  .en-US .TR_country .type .item .item-bd {
    padding: 8px 30px;
  }
  .en-US .TR_country .l-block {
    display: block !important;
  }
  .en-US .TR_country .l-block .l-block-sub_header {
    padding-left: 58px;
    text-indent: -2em;
  }
  .en-US .TR_country .l-row {
    display: block !important;
  }
  .en-US .TR_country .l-row .l-row-hd {
    width: 100%;
    padding: 8px 30px;
    border: 0;
    text-align: left;
    display: block !important;
  }
  .en-US .TR_country .l-row .l-row-bd {
    width: 100%;
    padding: 8px 30px;
    border: 0;
  }
  .en-US .TR_country .l-layer {
    display: block !important;
  }
  .en-US .TR_country .l-layer .l-layer-hd {
    width: 100%;
    text-align: left;
    display: block;
    padding: 0;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .en-US .TR_country .l-layer .l-layer-hd:after {
    display: none;
  }
  .en-US .TR_country .l-layer .l-layer-hd span {
    display: inline;
    width: auto;
  }
  .en-US .TR_country .l-layer .l-layer-hd span:after {
    content: "/";
    padding-left: .25em;
    padding-right: .25em;
  }
  .en-US .TR_country .l-layer .l-layer-hd span:last-child:after {
    display: none;
  }
  .en-US .TR_country .l-layer .l-layer-hd:after {
    display: none;
  }
  .en-US .TR_country .l-layer .l-layer-bd {
    width: 100%;
  }
  .en-US .TR_country .program .l-row {
    border: 0;
  }
  .en-US .TR_country .program .l-row .l-row-hd {
    padding-left: 58px;
  }
  .en-US .TR_country .program .l-row .l-row-bd {
    padding-left: 58px;
  }
  .en-US .TR_country .program .l-block .l-block-sub_header {
    padding-left: 58px;
    text-indent: -2em;
  }
  .en-US .TR_country .program .l-layer .l-layer-hd {
    padding-left: 24px;
  }
  .en-US .TR_country .program .l-layer .l-layer-bd {
    padding-left: 24px;
  }

  .ja-JP .prompt-model .modal-dialog {
    width: calc(100vw - 15px * 2);
    max-width: 320px;
  }
  .ja-JP .prompt-model .modal-title {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .TR_information .section {
    max-width: 100%;
  }
  .TR_information .section-header {
    font-size: 22px;
  }
  .TR_information .container {
    padding: 0 30px;
  }

  .TR_country .banner-block {
    width: calc(100% - 90px * 2);
  }
  .TR_country .banner .main-text {
    font-size: 36px;
    letter-spacing: .5px;
  }
  .TR_country .banner .sub-text {
    font-size: 24px;
    width: 2.1em;
    letter-spacing: .08em;
    height: 48px;
    line-height: 48px;
  }
  .TR_country .banner .country-title {
    padding-right: 80px;
  }
  .en-US .TR_country .banner .sub-text {
    font-size: 24px;
    width: 6em;
    white-space: initial;
  }
  .en-US .TR_country .banner .country-title {
    padding-right: 160px;
  }
}
@media (max-width: 640px) {
  .TR_information .kv {
    margin-bottom: 16px;
  }
  .TR_information .kv-image {
    height: 66px;
  }
  .TR_information .kv-image img {
    right: -33px;
  }
  .zh-TW .TR_information .kv-main {
    background-size: 138px auto;
  }
  .zh-CN .TR_information .kv-main {
    background-size: 138px auto;
  }
  .en-US .TR_information .kv-main {
    background-size: 168px auto;
  }
  .ja-JP .TR_information .kv-main {
    background-size: 174px auto;
  }
  .TR_information .section-content {
    padding-left: 10%;
    padding-right: 10%;
  }
  .TR_information .lg-view {
    display: none;
  }
  .TR_information .sm-view {
    display: block;
  }
  .TR_information .country-list {
    margin: 0 -10px;
  }
  .TR_information .country-list .item {
    width: calc(100% / 4 - 20px);
    margin: 0 10px;
    margin-bottom: 20px;
  }
  .TR_information .memberStates-table .hd {
    font-size: 20px;
  }
  .TR_information .memberStates-table tr td:first-child {
    font-size: 16px;
  }
  .TR_information .memberStates-table td {
    font-size: 16px;
    padding: 4px 16px;
  }
  .TR_information .memberStates-table td:first-child {
    font-size: 16px;
  }
  .TR_information .memberStates-table td span {
    display: block;
    font-size: 16px;
  }
  .TR_information .section .img-title {
    display: none;
  }
  .TR_information .section.is-hide {
    display: none;
  }
  .TR_information .information-filter {
    display: block;
  }

  .TR_country .section {
    margin-bottom: 15px;
  }
  .TR_country .section .img-title {
    display: block;
  }
  .en-US .TR_country .section {
    margin-bottom: 20px;
  }
  .TR_country .banner {
    margin-bottom: 40px;
  }
  .TR_country .banner-image {
    height: 66px;
  }
  .TR_country .banner-block {
    width: calc(100% - 60px * 2);
  }
  .TR_country .banner-link {
    bottom: -30px;
    right: 10px;
  }
  .TR_country .banner-link:before {
    content: "";
    position: absolute;
    top: calc(50% - 39px / 2);
    left: calc(50% - 142px / 2);
    width: 142px;
    height: 39px;
    background-image: url(../images/TR_information/link-bg.png);
    background-size: 100% 100%;
  }
  .TR_country .banner-link a {
    color: #0000FF;
    font-size: 16px;
    line-height: 30px;
    text-decoration: underline;
    width: auto;
    height: auto;
    border: 0;
    background-color: transparent;
    letter-spacing: 0;
    border-radius: 0;
    padding: 0;
  }
  .TR_country .banner-link a:hover, .TR_country .banner-link a:active {
    background-color: transparent;
    color: #0000FF;
  }
  .TR_country .banner .country-title {
    padding-right: 45px;
  }
  .TR_country .banner .country-title .lg-view {
    display: none;
  }
  .TR_country .banner .country-title .md-view {
    display: none;
  }
  .TR_country .banner .country-title .sm-view {
    display: block;
  }
  .TR_country .banner .flag {
    position: absolute;
    left: -37px;
    bottom: 1px;
    width: 32px;
  }
  .TR_country .banner .main-text {
    font-size: 22px;
    line-height: 22px;
  }
  .TR_country .banner .sub-text {
    font-size: 18px;
    line-height: 20px;
    margin-left: 10px;
    height: 20px;
    bottom: 1px;
  }
  .en-US .TR_country .banner .main-text {
    letter-spacing: 0;
  }
  .en-US .TR_country .banner .sub-text {
    font-size: 14px;
    width: 5.5em;
    letter-spacing: 0.14px;
  }
  .en-US .TR_country .banner .country-title {
    padding-right: 84px;
  }
  .TR_country .l-block {
    margin-bottom: 15px;
  }
  .TR_country .l-block-header {
    padding: 4px 16px;
    font-size: 22px;
    min-height: 38px;
  }
  .TR_country .l-block-sub_header {
    padding: 4px 16px;
    font-size: 20px;
    min-height: 30px;
  }
  .en-US .TR_country .l-block .l-block-header {
    letter-spacing: 0;
    font-size: 20px;
  }
  .en-US .TR_country .l-block .l-block-sub_header {
    letter-spacing: 0;
    font-size: 18px;
  }
  .TR_country .l-row {
    display: block !important;
    border-top: 0;
  }
  .TR_country .l-row-hd {
    padding: 4px 16px;
    text-align: left;
    width: 100%;
    display: block;
    border: 0;
    line-height: 1.4;
    font-size: 16px;
  }
  .TR_country .l-row-bd {
    padding: 4px 16px;
    width: 100%;
    line-height: 1.35;
    font-size: 16px;
  }
  .en-US .TR_country .l-row .l-row-hd {
    width: 100%;
    padding: 8px;
    padding-right: 0;
    font-size: 18px;
  }
  .en-US .TR_country .l-row .l-row-bd {
    width: 100%;
    padding: 8px;
  }
  .TR_country .l-layer {
    display: block !important;
    padding: 4px 0;
    margin: 0 16px;
    font-size: 16px;
  }
  .TR_country .l-layer-hd {
    padding: 0;
    text-align: left;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .TR_country .l-layer-hd:after {
    display: none;
  }
  .TR_country .l-layer-hd span {
    display: inline;
    width: auto;
  }
  .TR_country .l-layer-hd span:after {
    content: "/";
  }
  .TR_country .l-layer-hd span:last-child:after {
    display: none;
  }
  .TR_country .l-layer-bd {
    padding: 0;
    width: 100%;
  }
  .en-US .TR_country .l-layer .l-layer-hd {
    width: 100%;
  }
  .en-US .TR_country .l-layer .l-layer-hd span:after {
    padding-left: .25em;
    padding-right: .25em;
  }
  .en-US .TR_country .l-layer .l-layer-bd {
    width: 100%;
  }
  .TR_country .type .item {
    display: block !important;
  }
  .TR_country .type .item-hd {
    padding: 4px 16px;
    width: 100%;
    font-size: 20px;
    text-align: center;
    display: block;
  }
  .TR_country .type .item-hd:before {
    display: none;
  }
  .TR_country .type .item-hd .image {
    display: none;
  }
  .TR_country .type .item-bd {
    padding: 4px 16px;
    width: 100%;
    display: block;
    min-height: inherit;
    font-size: 16px;
  }
  .TR_country .type .item .sm-text-center {
    text-align: center;
    display: block;
  }
  .en-US .TR_country .type .item .item-hd {
    font-size: 20px;
    padding: 8px;
  }
  .en-US .TR_country .type .item .item-bd {
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
  }
  .TR_country .square-list {
    font-size: 16px;
  }
  .TR_country .square-list li {
    line-height: 1.6;
  }
  .en-US .TR_country .program .l-row .l-row-hd {
    padding-left: 40px;
  }
  .en-US .TR_country .program .l-row .l-row-bd {
    padding-left: 40px;
  }
  .en-US .TR_country .program .l-block .l-block-sub_header {
    padding-left: 40px;
    text-indent: -1.5em;
  }
  .en-US .TR_country .program .l-layer .l-layer-hd {
    padding-left: 24px;
  }
  .en-US .TR_country .program .l-layer .l-layer-bd {
    padding-left: 24px;
  }
  .TR_country .related .square-list li {
    padding-bottom: 0;
  }
  .TR_country .related .square-list li a {
    font-size: 16px;
  }
  .TR_country .img-title {
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .TR_information .kv {
    margin-bottom: 16px;
  }
  .TR_information .section {
    max-width: 300px;
    min-height: 260px;
  }
  .TR_information .img-title {
    margin-bottom: 15px;
  }
  .TR_information .img-title .lg-view {
    display: none;
  }
  .TR_information .img-title .md-view {
    display: none;
  }
  .TR_information .img-title .sm-view {
    display: block;
  }
  .TR_information .country-list .item {
    width: calc(100% / 3 - 5.6%);
    margin-left: 2.8%;
    margin-right: 2.8%;
  }
  .TR_information .country-list .item .main-text {
    font-size: 16px;
  }

  .TR_country .section {
    min-height: inherit;
  }
  .TR_country .banner-block {
    width: 260px;
  }

  .ja-JP .prompt-model .modal-dialog {
    width: calc(100vw - 15px * 2);
    max-width: 320px;
  }
  .ja-JP .prompt-model .modal-title {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media (max-width: 374px) {
  .TR_information .information-collapse .sub-menu a {
    padding: 10px 40px 10px 29px;
  }
  .TR_information .information-collapse .collapse-trigger {
    padding: 8px 49px 8px 29px;
  }
  .TR_information .information-collapse .icon-arrow {
    right: 23px;
  }

  .TR_country .banner .main-text {
    font-size: 18px;
  }
  .TR_country .banner .sub-text {
    font-size: 14px;
    margin-left: 8px;
    filter: drop-shadow(0 0 2px #fff);
  }
  .en-US .TR_country .banner .main-text {
    font-size: 20px;
  }
  .en-US .TR_country .banner .sub-text {
    font-size: 12px;
    width: 5.3em;
    letter-spacing: 0;
  }
  .en-US .TR_country .banner .country-title {
    padding-right: 68px;
  }
}
@media (max-width: 360px) {
  .TR_information .country-list .item .main-text {
    font-size: 14px;
  }

  .TR_country .l-block-sub_header {
    letter-spacing: .1em;
  }
  .TR_country .banner .main-text {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.57px;
  }
  .TR_country .banner .sub-text {
    font-size: 18px;
  }
}
@media (max-width: 359px) {
  .TR_information .container {
    padding: 0 10px;
  }

  .TR_country .banner-block {
    width: 232px;
  }
  .TR_country .banner .sub-text {
    margin-left: 5px;
  }
}
