@charset "UTF-8";

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}


/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(0, 0, 0, .7);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

/* .remodal-wrapper {
  padding: 10px 15px 0;
} */

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}


/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/* =====================
  Modal
===================== */
.sw-Modal-og{
  margin-left: 4%;
  margin-right: 4%;
  margin-top: 50px;
  padding: 56px 30px;
  position: relative;
  text-align: left;
  width: 92%;
}

.sw-Modal-og.sw-Modal-og_Movie{
  padding: 0;
  background: none;
}

.sw-Modal-og_MovieWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.sw-Modal-og_MovieWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media print, screen and (min-width: 768px) {
  .sw-Modal-og {
    margin-left: 34px;
    margin-right: 34px;
    max-width: inherit;
    padding: 56px 34px;
    width: 1020px;
  }
}

@media print, screen and (min-width: 768px) {
  .sw-Modal-og_MovieWrapper{
    padding-bottom: 56.25%;
    width: 1020px;
    height: 574px;
  }
  .sw-Modal-og_MovieWrapper iframe{
    padding-left: 0;
    margin-left: 0;
    padding-right: 0;
    margin-right: 0;
    max-width: 100%;
    max-height: 100%;
  }
}
.sw-Modal-og-fluid {
  background: #f4f6f8;
  height: auto;
  margin: 0;
  min-height: 100%;
  width: 100%;
}

.sw-Modal-og-fluid .sw-Modal-og_Close {
  right: 24px;
  top: 24px;
}

.sw-Modal-og-fluid .sw-Modal-og_Close::before, .sw-Modal-og-fluid .sw-Modal-og_Close::after {
  background: #333;
}

@media print, screen and (min-width: 768px) {
  .sw-Modal-og-fluid .sw-Modal-og_Close {
    right: 34px;
    top: 34px;
  }
}

.sw-Modal-og_Inner {
  margin: 0 auto;
  max-width: 952px;
}

.sw-Modal-og_Close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 24px;
  outline: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: -36px;
  width: 24px;
}
.sw-Modal-og_Movie .sw-Modal-og_Close {
  height: 20px;
  top: -38px;
  width: 20px;
}
@media print, screen and (min-width: 768px) {
  .sw-Modal-og_Movie .sw-Modal-og_Close {
    top: -55px;
    right: 0px;
  }
}

.sw-Modal-og_Close::before, .sw-Modal-og_Close::after {
  background: #fff;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  width: 100%;
}

.sw-Modal-og_Close::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.sw-Modal-og_Close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* =====================
  Clear
===================== */
.fund-Clear {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  color: #0c419a;
  cursor: pointer;
  font-size: 1.4rem;
  outline: none;
  padding: 0 0 0 1em;
  position: relative;
  text-decoration: underline;
  word-break: keep-all;
}

.fund-Clear::before, .fund-Clear::after {
  background: #0c419a;
  content: "";
  display: block;
  height: 1.2px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 10px;
}

.fund-Clear::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.fund-Clear::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.fund-Clear:hover {
  text-decoration: none;
}

/* =====================
  ConditionTag
===================== */
.fund-ConditionTagWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px 0 0;
}

.fund-ConditionTag,
a.fund-ConditionTag {
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #d9deea;
  border-radius: 20px;
  color: #979db1;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 10px 10px 0;
  outline: none;
  padding: 10px 16px;
}

a.fund-ConditionTag{
  line-height: normal;
  text-decoration: none;
}

.fund-ConditionTag:hover,
a.fund-ConditionTag:hover {
  opacity: 0.7;
}

.fund-ConditionTag-active,
a.fund-ConditionTag-active {
  background: #0c419a;
  border-color: #0c419a;
  color: #fff;
}

.fund-ConditionTag-fav {
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #d9deea;
  border-radius: 20px;
  color: #979db1;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 10px 10px 0;
  outline: none;
  padding: 10px 16px;
}

.fund-ConditionTag-fav:hover {
  opacity: 0.7;
}

.fund-ConditionTag-fav-active {
  background: #0c419a;
  border-color: #0c419a;
  color: #fff;
}

/* =====================
  Favorite
===================== */
.fund-Favorite {
  background-color: transparent;
  background-image: url(/library/common/images/fund/icon_fav.png);
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  cursor: pointer;
  display: block;
  height: 40px;
  margin: 0 auto;
  outline: none;
  position: relative;
  width: 40px;
}

.fund-Favorite-active {
  background-image: url("/library/common/images/icon_fav_active.png");
}

.fund-Favorite_Tooltip {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #de5500;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  height: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  padding: 6px 6px 7px;
  position: absolute;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

.fund-Favorite_Tooltip_Wrap {
  display: none;
  min-width: 220px;
  pointer-events: none;
  position: absolute;
  right: calc(100% + 4px);
  top: 50%;
}

.fund-Favorite_Tooltip::after {
  border: 4px solid transparent;
  border-left-color: #de5500;
  border-left-width: 6px;
  content: '';
  left: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* =====================
  Float
===================== */
.fund-Float {
  bottom: 0;
  left: 0;
  position: fixed;
}

@media print, screen and (min-width: 768px) {
  .fund-Float {
    display: none;
  }
}

.fund-Float_Button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f4f6f8;
  border: none;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  color: #223760;
  cursor: pointer;
  font-weight: bold;
  min-height: 40px;
  outline: none;
  padding: 0;
  padding: 0 28px;
  text-align: center;
  width: 100vw;
}

/* =====================
  Help
===================== */
.fund-Help {
  background-color: transparent;
  background-image: url("/library/common/images/icon_question.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  cursor: pointer;
  height: 18px;
  outline: none;
  width: 18px;
}

/* =====================
  Modal
===================== */
.fund-Modal {
  padding: 42px 30px 80px;
}

.fund-Modal.remodal-is-opened {
  -webkit-transform: none;
          transform: none;
}

.fund-Modal_Title {
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.4;
  margin: 0 0 19px 0;
}

.fund-Modal_SubTitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}

.fund-Modal_TitleBlock {
  margin-bottom: 49px;
}

.fund-Modal_TitleArea {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}

@media print, screen and (min-width: 768px) {
  .fund-Modal_TitleArea {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.fund-Modal_Registry {
  font-size: 2rem;
  margin: 0 0 34px 0;
}

.fund-Modal_Clear {
  margin-left: 40px;
}

.fund-Modal_FloatButton {
  bottom: 0;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  position: fixed;
  width: 100vw;
}

.fund-Modal_SearchButton, .fund-Modal_ClearButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  min-height: 62px;
  outline: none;
  padding: 10px 13px;
  text-align: center;
  width: 50%;
}

.fund-Modal_ClearButton {
  background: #fff;
  color: #0c419a;
}

.fund-Modal_SearchButton {
  background: #0c419a;
  color: #fff;
}

/* =====================
  More
===================== */
.fund-More {
  border-top: 1px solid #4f5a77;
  padding-top: 15px;
}

.fund-More_Text {
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: none;
  color: #4f5a77;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  outline: none;
  position: relative;
}

.fund-More_Text:hover {
  opacity: 0.7;
}

.fund-More_Text::after {
  border-right: 1px solid #4f5a77;
  border-top: 1px solid #4f5a77;
  content: "";
  display: block;
  height: 12px;
  margin: -8px 0 0 10px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  width: 12px;
}

.fund-More_Text .is-active::after {
  top: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* =====================
  Notice
===================== */
.fund-Notice {
  background: #333;
  color: #fff;
  display: none;
  left: 50%;
  line-height: 1.4;
  margin: 0;
  opacity: .8;
  padding: 18px;
  position: fixed;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  z-index: 2;
}

@media print, screen and (min-width: 768px) {
  .fund-Notice {
    width: 500px;
  }
}

/* =====================
  Number
===================== */
.fund-Number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  margin-bottom: 6px;
}
div:not(.pb-of-visible) .fund-Number.Pc-none {
  display: flex;
}

.fund-Number_Total {
  font-weight: bold;
}

.fund-Number_Ratio {
  margin-left: .5em;
}

@media print, screen and (min-width: 768px) {
  .fund-Number_Ratio {
    margin-left: 1em;
  }
  div:not(.pb-of-visible) .fund-Number.Pc-none {
    display: none;
  }  
}

.fund-Number_Date {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .fund-Number_Date {
    margin-left: 1em;
    width: auto;
  }
}

/* =====================
  Search
===================== */
.fund-Search {
  margin-bottom: 33px;
}

@media print, screen and (min-width: 768px) {
  .fund-Search {
    margin: 0 auto 46px;
  }
}

.fund-Search_Area {
  background-color: #f4f6f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 17px;
  padding: 24px 4%;
  position: relative;
}

@media print, screen and (min-width: 768px) {
  .fund-Search_Area {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 24px 34px;
    width: 100%;
  }
}

.fund-Search_Area-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.fund-Search_TextBox {
  border: 1px solid #d9deea;
  border-radius: 0;
  font-size: 1.4rem;
  height: 34px;
  padding: 0 8px;
  vertical-align: text-bottom;
  width: calc(100% - 85px);
}

@media print, screen and (min-width: 768px) {
  .fund-Search_TextBox {
    line-height: normal;
    width: 527px;
  }
}

.fund-Search_TextBox:focus {
  outline: none;
}

.fund-Search_TextBox-active {
  border-color: #4f5a77;
}

.iphone .fund-Search_TextBox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-top: 5px;
}

.fund-Search_TextBox:placeholder-shown {
  font-size: 1.2rem;
}

.fund-Search_TextBox:-webkit-input-placeholder {
  font-size: 1.2rem;
}

@media print, screen and (min-width: 768px) {
  .fund-Search_TextBox:placeholder-shown {
    font-size: 1.4rem;
  }
  .fund-Search_TextBox:-webkit-input-placeholder {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .fund-Search_Width680 {
    width: 680px;
  }
  .edge .fund-Search_Width680 {
    width: 679px;
  }
}

@media print, screen and (min-width: 768px) {
  .fund-Search_Width715 {
    width: 715px;
  }
}

.fund-Search_Width715 ~ .fund-Search_SecondaryButton {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .fund-Search_Width715 ~ .fund-Search_SecondaryButton {
    width: auto;
  }
}

.fund-Search_Button {
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  background-color: #d9deea;
  border: none;
  color: #223760;
  cursor: pointer;
  font-size: 1.4rem;
  height: 34px;
  position: relative;
  width: 85px;
}

.fund-Search_Button:hover {
  opacity: 0.7;
}

.fund-Search_Button::after {
  background-image: url("/library/common/images/icon_search.png");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 19px;
  left: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 19px;
}

.fund-Search_Button-text {
  color: #4f5a77;
  font-weight: bold;
  margin-left: 27px;
}

.fund-Search_Button-active {
  background-color: #4f5a77;
  color: #fff;
}

.fund-Search_Button-active::after {
  background-image: url("/library/common/images/icon_search_active.png");
}

.fund-Search_Button-active .fund-Search_Button-text {
  color: #fff;
}

.ie .fund-Search_Button {
  padding: 0 14px;
}

.edge .fund-Search_Button {
  padding: 0 14px;
}

.fund-Search_SecondaryButton,
a.fund-Search_SecondaryButton {
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  background-color: #fff;
  border: 1px solid #4f5a77;
  color: #4f5a77;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 16px;
  min-height: 34px;
  padding: 2px 12px;
  text-align: center;
  text-decoration: none;
  width: 48%;
}

.fund-Search_SecondaryButton:hover {
  opacity: 0.7;
}

.fund-Search_SecondaryButton + .fund-Search_SecondaryButton {
  margin-left: 10px;
}

@media print, screen and (min-width: 768px) {
  .fund-Search_SecondaryButton,
  a.fund-Search_SecondaryButton {
    margin-left: 15px;
    margin-top: 0;
    padding: 2px 18px;
    width: auto;
  }
}

.fund-Search_TextWrap .fund-Clear {
  margin-top: 6px;
}

@media print, screen and (min-width: 768px) {
  .fund-Search_TextWrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fund-Search_TextWrap .fund-Clear {
    margin-left: 24px;
  }
}

.fund-Search_Text {
  display: inline;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
}

@media print, screen and (min-width: 768px) {
  .fund-Search_Text {
    display: block;
  }
  
  .sw-Fund-Modal .sw-Modal-content > div:not(.pb-handle) .fund-Search_Text {
   display: inline-block;
 }

}

.fund-Search_TextItemWrap {
  display: inline;
  font-size: 1.4rem;
}
.sw-Fund-Modal .sw-Modal-content > div:not(.pb-handle) .fund-Search_TextItemWrap {
  display: inline-block;
}

.fund-Search_TextItem {
  font-size: 1.4rem;
}

@media print, screen and (min-width: 768px) {
  .fund-Search_TextItem {
    /* vertical-align: text-bottom; */
  }
}

.fund-Search_TextItem:not(:first-child) {
  margin-left: 0.5em;
}

.fund-Search_TextItem::after {
  content: "/";
  margin-left: 0.5em;
}

.fund-Search .sw-Text {
  margin: 17px 0 0 0;
}

@media print, screen and (min-width: 768px) {
  .fund-Search .sw-Text {
    margin: 0 0 0 23px;
  }
}

.fund-Search .fund-ConditionTag {
  background: #fff;
  margin: 16px 0 0 10px;
  padding: 8px 16px;
}

@media print, screen and (min-width: 768px) {
  .fund-Search .fund-ConditionTag {
    margin: 0 0 0 8px;
  }
}

.fund-Search .fund-ConditionTag-active {
  background: #0c419a;
}

.st-Container_Inner .fund-Search_Area {
  margin: 0 -4.35% 17px;
}

@media print, screen and (min-width: 768px) {
  .st-Container_Inner .fund-Search_Area {
    margin: 0 auto 17px;
  }
}

/* =====================
  Table
===================== */
.fund-TableWrap {
  margin-bottom: 49px;
}

@media print, screen and (min-width: 768px) {
  .fund-TableWrap {
    margin-bottom: 89px;
  }
}

.fund-Table {
  border-collapse: collapse;
  font-size: 1.6rem;
  margin: 0 auto;
  table-layout: fixed;
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .fund-Table {
    font-size: 1.4rem;
  }
}

.fund-Table_TitleArea {
  color: #fff;
}

.fund-Table_TitleArea th {
  background-clip: padding-box;
  background-color: #0c419a;
  font-size: 1.1rem;
  line-height: 1.4;
  padding: 10px 5px;
  position: relative;
}

.fund-Table_TitleArea th:not(:last-child) {
  border-right: 1px solid #fff;
}

.fund-Table_TitleArea th[rowspan]:not(:first-child) {
  border-left: 1px solid #fff;
}

.fund-Table_TitleArea th[rowspan]:not(:last-child) {
  border-right: 1px solid #fff;
}

@media print, screen and (min-width: 768px) {
  .fund-Table_TitleArea-item {
    padding: 10px 5px 30px !important;
  }
}

.fund-Table_Body tr:nth-child(odd) td {
  background-color: #f4f6f8;
}

.fund-Table_Body tr td {
  padding: 13px 16px;
  text-align: center;
}

.fund-Table_Sort {
  bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  width: calc(100% - 10px);
}

.fund-Table_Sort > *:not(:first-child) {
  margin-left: 8px;
}

.fund-Table_Asc, .fund-Table_Desc {
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 13px;
  outline: none;
  padding: 0;
  position: relative;
  width: 10px;
}

.fund-Table_Asc::before, .fund-Table_Desc::before {
  border: 5px solid transparent;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.fund-Table_Asc::before {
  border-bottom: 8px solid #fff;
  top: 1px;
}

.fund-Table_Asc-active::before {
  border-bottom: 8px solid #de5500;
}

.fund-Table_Desc::before {
  border-top: 8px solid #fff;
  top: 6px;
}

.fund-Table_Desc-active::before {
  border-top: 8px solid #de5500;
}

.fund-Table_Link {
  color: #0c419a;
  font-size: 1.6rem;
}

.fund-Table_Link:hover {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .fund-Table_Link {
    font-size: 1.4rem;
  }
}

.fund-Table_Link-blank::after {
  background-image: url(/library/common/images/icon_external.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  content: "";
  display: inline-block;
  height: 16px;
  margin-left: 10px;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  width: 16px;
}

.fund-Table_TagWrap {
  margin-top: 9px;
}

.fund-Table_Nickname {
  color: #666;
  margin: 9px 0 0 0;
}

.fund-Table_FundName {
  line-height: 1.4;
  text-align: left !important;
}

.fund-Table_Number {
  text-align: right !important;
}

.fund-Table_Date {
  line-height: 1.4;
}

.fund-Table_Date-item {
  font-size: 1.1rem;
}

.fund-Table_Plus {
  color: #de5500;
}

.fund-Table_Minus {
  color: #0c419a;
}

.fund-Table_RowspanWrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.fund-Table_RowspanWrap .fund-Table_Rowspan-tbody {
  padding-left: 16px;
  padding-right: 16px;
}

.fund-Table_Rowspan-thead {
  border-top: 1px solid #fff;
  margin-top: 10px;
  padding-top: 10px;
}

.fund-Table_Rowspan-tbody {
  line-height: 1.4;
}

.fund-Table_Rowspan-tbody:not(:first-child) {
  border-top: 1px solid #979db1;
  margin-top: 10px;
  padding-top: 10px;
}

.fund-Table_SortArea {
  margin-bottom: 13px;
}

.fund-Table_ModalText {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13px;
}

.fund-Table_ModalText:not(:last-child) {
  margin-bottom: 3px;
}

.fund-Table_ModalText .sw-Text {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.fund-Table_ModalText .fund-Help {
  height: 28px;
  margin-left: .5em;
}

.fund-Table_Bold {
  font-weight: bold;
}

/* =====================
  Tag
===================== */
.fund-TagWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -2px;
  margin-right: -8px;
}

.fund-TagWrap > .fund-Tag {
  margin-bottom: 8px;
  margin-right: 8px;
}

.fund-Tag {
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2;
  min-height: 20px;
  min-width: 60px;
  padding: 0 10px;
  text-align: center;
}

.fund-Tag-dc {
  background-color: #65510f;
  border: 1px solid #65510f;
}

.fund-Tag-dcd {
  background-color: #9b7828;
  border: 1px solid #9b7828;
}

.fund-Tag-etf {
  background-color: #ff872f;
  border: 1px solid #ff872f;
}

.fund-Tag-redemption {
  background-color: #979db1;
  border: 1px solid #979db1;
}

.fund-Tag-domesticStock {
  background-color: #223760;
  border: 1px solid #223760;
}

.fund-Tag-foreignStock {
  background-color: #1f5fa8;
  border: 1px solid #1f5fa8;
}

.fund-Tag-insideAndOutsideStock {
  background-color: #5783d5;
  border: 1px solid #5783d5;
}

.fund-Tag-domesticBond {
  background-color: #483d58;
  border: 1px solid #483d58;
}

.fund-Tag-foreignBond {
  background-color: #795ea0;
  border: 1px solid #795ea0;
}

.fund-Tag-insideAndOutsideBond {
  background-color: #baa8d5;
  border: 1px solid #baa8d5;
}

.fund-Tag-leet {
  background-color: #296c11;
  border: 1px solid #296c11;
}

.fund-Tag-complexAssets {
  background-color: #3e9120;
  border: 1px solid #3e9120;
}

.fund-Tag-other {
  background-color: #75c159;
  border: 1px solid #75c159;
}

.fund-Tag-preliminary {
  background-color: #de5500;
  border: 1px solid #de5500;
}
.fund-Tag-nisaReserve {
  background-color: #f7ffef;
  border: 1px solid #00793D;
}
.sw-fund-Tag.fund-Tag-nisaReserve, .fund-Tag.fund-Tag-nisaReserve {
  color: #00793D; 
}
.fund-Tag-nisaGrowth {
  background-color: #f1f5ff;
  border: 1px solid #0073BD;
}
.sw-fund-Tag.fund-Tag-nisaGrowth, .fund-Tag.fund-Tag-nisaGrowth {
  color: #0073BD;
}
.fund-Tag-list {
  margin: 0 8px 0 0;
  text-indent: initial;
  vertical-align: text-top;
}

/* =====================
  Wrapper
===================== */
.fund-Wrapper {
  padding-bottom: 80px;
}

@media print, screen and (min-width: 768px) {
  .fund-Wrapper {
    padding-bottom: 0;
  }
}


/* =====================
  Search
===================== */
.tp-Search {
  -webkit-box-shadow: 0px 20px 60px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0px 20px 60px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 2;
}

@media print, screen and (min-width: 768px) {
  .tp-Search {
    -webkit-box-shadow: 0px 20px 30px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0px 20px 30px 0 rgba(0, 0, 0, 0.16);
  }
}

.tp-Search .fund-Search {
  background-color: #fff;
}

.tp-Search .fund-Search_Area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 15px;
}

@media print, screen and (min-width: 768px) {
  .tp-Search .fund-Search_Area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 20px;
  }
}

.tp-Search .fund-Search_TextBox {
  border: 1px solid #d9deea;
  border-radius: 0;
  font-size: 1.4rem;
  height: 100%;
  padding: 0 8px 0 35px;
  vertical-align: text-bottom;
  width: 100%;
}

.tp-Search .fund-Search_TextBoxWrap {
  height: 34px;
  margin-bottom: 7.5px;
  position: relative;
}

.tp-Search .fund-Search_TextBoxWrap::after {
  background-image: url(/library/common/images/icon_search.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 19px;
  left: 21px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 19px;
}

@media print, screen and (min-width: 768px) {
  .tp-Search .fund-Search_TextBoxWrap {
    margin-bottom: 0;
    width: 291px;
  }
}

.tp-Search .fund-Search_TextBox-active {
  border-color: #4f5a77;
}

.tp-Search .fund-Search_TextBox:focus {
  outline: none;
}

.iphone .tp-Search .fund-Search_TextBox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-top: 5px;
}

.tp-Search .fund-Search_TextBox:placeholder-shown {
  font-size: 1.2rem;
}

.tp-Search .fund-Search_TextBox:-webkit-input-placeholder {
  font-size: 1.2rem;
}

@media print, screen and (min-width: 768px) {
  .tp-Search .fund-Search_TextBox:placeholder-shown {
    font-size: 1.4rem;
  }
  .tp-Search .fund-Search_TextBox:-webkit-input-placeholder {
    font-size: 1.4rem;
  }
}

.tp-Search .fund-Search_Button {
  background-color: #d9deea;
  border: none;
  color: #4f5a77;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  height: 34px;
  margin-bottom: 10px;
  width: 100%;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

@media print, screen and (min-width: 768px) {
  .tp-Search .fund-Search_Button {
    margin-bottom: 0;
    margin-right: 10px;
    width: 67px;
  }
}

.tp-Search .fund-Search_Button:hover {
  opacity: 0.7;
}

.tp-Search .fund-Search_Button-active {
  background-color: #4f5a77;
  color: #fff;
}

.tp-Search .fund-Search_Button::after {
  background-image: none;
}

.tp-Search .fund-Search_Button-text {
  margin-left: 0;
}

.tp-Search .fund-Search_SecondaryButton {
  background-color: #fff;
  border: 1px solid #4f5a77;
  color: #4f5a77;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  height: 34px;
  margin-top: 0;
  padding: 2px 10px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

@media print, screen and (min-width: 768px) {
  .tp-Search .fund-Search_SecondaryButton {
    width: 136px;
  }
}

.tp-Search .fund-Search_SecondaryButton:hover {
  opacity: 0.7;
}


/* =====================
  fund-Area_Search
===================== */

.fund-Area_Search {
    background-color: #f4f6f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 auto 17px;
    padding: 24px 4%;
    position: relative;
}

@media print, screen and (min-width: 768px){
    .fund-Area_Search {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding: 24px 34px;
        width: 100%;
    }
}