@charset "utf-8";
/* fund_search.css
++++++++++++++++++++++++++++++++++++++++
* NOTE
++++++++++++++++++++++++++++++++++++++++
- Charset: utf-8
- Return code: LF
++++++++++++++++++++++++++++++++++++++++ */

/* 
++++++++++++++++++++++++++++++++++++++++ */


/* UI module
++++++++++++++++++++++++++++++++++++++++ */
/* input text */
.input_text {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	min-width: 0;
	max-width: 100%;
	min-height: 0;
  height: 40px;
	padding: 6px;
	border: 1px solid #dde0e5;
	border-radius: 5px;
	outline: none;
	background-color: #fff;
}
.input_text:focus {
  outline: none;
}

/* checkbox button style */
.input_checkbox,
.input_checkbtn {
  display: flex;
  position: relative;
  overflow: hidden;
}
.input_checkbox input[type=checkbox],
.input_checkbtn input[type=checkbox] {
  position: absolute;
  z-index: -100;
  opacity: 0.001;
  margin: 0;
}

.input_checkbox input[type=checkbox] + span,
.input_checkbtn input[type=checkbox] + span {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  padding: 6px 10px 6px 40px;
  border: 1px solid #dde0e5;
  border-radius: 5px;
  background-color: #fff;
  line-height: 1.625;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.input_checkbox input[type=checkbox] + span::before,
.input_checkbtn input[type=checkbox] + span::before {
  display: block;
  z-index: 2;
  position: absolute;
  top: calc(50% - 9px);
  left: 12px;
  width: 18px;
  height: 18px;
  border: 1px solid #dde0e5;
  background: #fff;
  content: '';
}
.input_checkbox input[type=checkbox] + span::after,
.input_checkbtn input[type=checkbox] + span::after {
  -webkit-transform: rotate(40deg);
  display: block;
  z-index: 5;
  position: absolute;
  top: calc(50% - 7px);
  left: 18px;
  width: 6px;
  height: 12px;
  transform: rotate(40deg);
  border-right: 3px solid #0c4684;
  border-bottom: 3px solid #0c4684;
  content: "";
  opacity: 0;
}
.input_checkbox input[type=checkbox]:checked + span,
.input_checkbtn input[type=checkbox]:checked + span {
	border-color: #daecf2;
	background-color: #daecf2;
}
.input_checkbox input[type=checkbox]:checked + span::after,
.input_checkbtn input[type=checkbox]:checked + span::after {
	opacity: 1;
}

/* radio button style */
.input_radiobtn {
	display: flex;
	position: relative;
	overflow: hidden;
}
.input_radiobtn input[type=radio],
.input_radiobtn input[type=radio]:checked {
  position: absolute;
  z-index: -100;
  opacity: 0.001;
  margin: 0;
}
.input_radiobtn input[type=radio] + span {
	display: flex;
	position: relative;
	align-items: center;
	width: 100%;
	padding: 6px 10px 6px 40px;
	border: 1px solid #dde0e5;
	border-radius: 5px;
	background-color: #fff;
	line-height: 1.625;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.input_radiobtn input[type=radio] + span::before, 
.input_radiobtn input[type=radio] + span::after {
	display: inline-block;
	z-index: 2;
	position: absolute;
	border-radius: 50%;
	background: #fff;
	text-align: center;
	vertical-align: middle;
	content: '';
	cursor: pointer;
}
.input_radiobtn input[type=radio] + span::before {
	top: calc(50% - 9px);
	left: 12px;
	width: 18px;
	height: 18px;
	border: 1px solid #dde0e5;
}
.input_radiobtn input[type=radio] + span::after {
	z-index: 3;
	top: calc(50% - 5px);
	left: 16px;
	width: 10px;
	height: 10px;
}
.input_radiobtn input[type=radio]:checked + span {
	border-color: #daecf2;
	background-color: #daecf2;
}
.input_radiobtn input[type=radio]:checked + span::after {
	background-color: #024f95;
}

/* select */
.select_pulldown {
	position: relative;
	width: 100%;
  height: 40px;
	overflow: hidden;
	border: 1px solid #dde0e5;
	border-radius: 5px;
}
.select_pulldown::before {
	display: block;
	z-index: 5;
	position: absolute;
	top: calc(50% - 2px);
	right: 10px;
	border: 5px solid transparent;
	border-top-color: #465059;
	content: "";
	pointer-events: none;
}
.select_pulldown::after {
	display: block;
	z-index: 2;
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 100%;
	border-left: 1px solid #dce3e9;
	background-color: #f3f4f6;
	content: "";
	pointer-events: none;
}
.select_pulldown select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	padding: 7px 40px 7px 15px;
	border: none;
	outline: none;
	background-color: #fff;
	font-size: 1.6rem;
	cursor: pointer;
}
.select_pulldown select::-ms-expand {
  display: none
}

/* up-down botton s-size */
.btn_numup,
.btn_numdown {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	position: relative;
	width: 30px;
	border: 1px solid #dde0e5;
	outline: none;
	background-color: #fff;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  /* for ios safari */
  font-size: 0;
  color: transparent;
}
.btn_numup {
  border-right-width: 0;
  border-left-width: 0;
}
.btn_numdown {
  border-radius: 0 5px 5px 0;
}
.btn_numup::before,
.btn_numdown::before {
	display: block;
	z-index: 5;
	position: absolute;
	top: calc(50% - 2px);
	left: calc(50% - 5px);
	border: 5px solid transparent;
	content: "";
}
.btn_numup::before {
	top: calc(50% - 7px);
	border-bottom-color: #465059;
}
.btn_numdown::before {
	top: calc(50% - 2px);
	border-top-color: #465059;
}

@media (min-width: 768px) {
  .btn_numup:hover,
  .btn_numdown:hover {
    background-color: #eaf4f8;
  }
}


/* search UI area
++++++++++++++++++++++++++++++++++++++++ */
/* search box +++++++++++ */
.fund_search_searchbox {
  position: relative;
  display: flex;
}
.fund_search_searchbox > input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 50px;
  padding: 11px 18px;
  border: 1px solid #dde0e5;
  border-radius: 5px 0 0 5px;
  outline: none;
  box-shadow: inset 0 2px 5px #d3d7dc;
  font-size: 1.6rem;
}
.fund_search_searchbtn > a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 5;
  display: block;
  height: 50px;
  overflow: unset;
  border: none;
  border-radius: 0 5px 5px 0;
  outline: none;
  background: #465059 url(/corp/guide/fund/search/img/index_ic05.svg) 50% 50% no-repeat;
  background-size: 22px auto;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

@media (min-width: 768px) {
  .fund_search_searchbox {
    position: relative;
    margin-right: 35px;
    display: flex;
    align-items: center;
    margin: 30px 0;
  }
  .fund_search_searchbox > input {
    width: 378px;
  }.fund_search_searchbtn > a {
    width: 60px;
  }
  .fund_search_searchbtn a:hover {
    background-color: #0067c3;
  }
  .fund_search_searchbox_balloon {
    margin-left: 35px;
  }
}
@media (max-width: 767.98px) {
  .fund_search_searchbox {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .fund_search_searchbox > input {
    flex-grow: 1;
    width: 70%;
  }
  .fund_search_searchbtn > a {
    width: 45px;
  }
  .fund_search_searchbox_balloon {
    margin: 1em 0 0;
    font-size: 1.2rem;
  }
}

/* search header +++++++++++ */
.fund_search_form_header .fund_search_searchitem {
  margin: 0;
  background-color: #f4f9fb;
}
.fund_search_form_header .fund_search_searchitem  dt {
  font-weight: bold;
}
.fund_search_form_header .fund_search_searchitem  dt .txt_xs {
  font-weight: normal;
}
.fund_search_form_header .fund_search_searchitem dd {
  display: flex;
  flex-grow: 1;
}
.fund_search_form_header .fund_search_searchitem dd > label {
  margin-left: 10px;
}

@media (min-width: 768px) {
  .fund_search_form_header .fund_search_searchitem {
    display: flex;
    padding: 20px 20px 0;
  }
  .fund_search_form_header .fund_search_searchitem  dt {
    width: 160px;
  }
  .fund_search_form_header .fund_search_searchitem  dt .txt_xs {
    font-size: 1.4rem;
  }
  .fund_search_form_header .fund_search_searchitem dd > label {
    width: calc(20% - 8px);
  }
}
@media (max-width: 767.98px) {
  .fund_search_form_header .fund_search_searchitem {
    margin-left: -16px;
    margin-right: -16px;
    padding: 20px 15px 0;
  }
  .fund_search_form_header .fund_search_searchitem  dt .txt_xs {
    font-size: 1.2rem;
  }
  .fund_search_form_header .fund_search_searchitem dd {
    flex-wrap: wrap;
    margin-left: -10px;
  }
  .fund_search_form_header .fund_search_searchitem dd > label {
    margin-top: 10px;
  }
  .fund_search_form_header .fund_search_searchitem .cols3-sp > label {
    width: calc(33.3333% - 10px);
  }
  .fund_search_form_header .fund_search_searchitem .cols2-sp > label {
    width: calc(50% - 10px);
  }
}

/* search body title +++++++++++ */
.fund_search_form_body_ttl {
  position: relative;
  display: block;
  /* padding-right: 2.6em; */
  border: 1px solid #dde0e5;
  line-height: 1.4;
  font-weight: bold;
  color: #313942;

}
.fund_search_form_body_ttl::before {
	-webkit-transform: rotate(135deg);
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 20px;
	width: 14px;
	height: 14px;
	margin-top: -0.5em;
	transform: rotate(135deg);
	border-top: 1px solid #9da4ab;
	border-right: 1px solid #9da4ab;
	border-color: #9da4ab;
	vertical-align: middle;
	content: "";
}
.fund_search_form_body_ttl.is-active::before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: -0.25em;
}
@media (min-width: 768px) {
  .fund_search_form_body_ttl {
    margin: 20px;
    padding: 12px 20px;
    box-shadow: 0 0 0 20px #f4f9fb;
    font-size: 1.8rem;
    cursor: pointer;
  }
  .fund_search_form_body_ttl:hover {
    background-color: #eaf4f8;
    color: #0067c3;
  }
  .fund_search_form_body_ttl.is-active {
    margin-bottom: 0;
    border-bottom: 0;
    box-shadow: 20px -20px 0 0 #f4f9fb, -20px -20px 0 0 #f4f9fb, 20px 0 0 0 #f4f9fb, -20px 0 0 0 #f4f9fb;
  }
}
@media (max-width: 767.98px) {
  .fund_search_form_body_ttl {
    margin: 25px 0 20px;
    padding: 11px 20px;
    box-shadow: 15px -25px 0 0 #f4f9fb, -15px -25px 0 0 #f4f9fb, 15px 20px 0 0 #f4f9fb, -15px 20px 0 0 #f4f9fb;
    font-size: 1.5rem;
  }
  .fund_search_form_body_ttl.is-active {
    margin-bottom: 0;
    border-bottom: 0;
    box-shadow: 15px -25px 0 0 #f4f9fb, -15px -25px 0 0 #f4f9fb, 15px 0 0 0 #f4f9fb, -15px 0 0 0 #f4f9fb;
  }
}

/* search aco +++++++++++ */
.fund_search_form_aco {
  overflow: hidden;
  border: 1px solid #dde0e5;
  background-color: #fff;
}

@media (min-width: 768px) {
  .fund_search_form_aco {
    margin: 0 20px 20px;
    padding: 0 20px 30px;
    box-shadow: 20px 20px 0 0 #f4f9fb, -20px 20px 0 0 #f4f9fb, 20px 0 0 0 #f4f9fb, -20px 0 0 0 #f4f9fb;
  }
}
@media (max-width: 767.98px) {
  .fund_search_form_aco {
    margin: 0 0 20px;
    padding: 0 15px 20px;
    box-shadow: 15px 20px 0 0 #f4f9fb, -15px 20px 0 0 #f4f9fb, 15px 0 0 0 #f4f9fb, -15px 0 0 0 #f4f9fb;
  }
}

/* search body +++++++++++ */
.fund_search_form_body {

}
.fund_search_form_body_col {

}
.fund_search_form_body .fund_search_searchitem {
  margin: 20px 0 0;
}
.fund_search_form_body .fund_search_searchitem dt {
  display: flex;
  font-weight: bold;
}
.fund_search_form_body .fund_search_searchitem dt .txt_xs {
  font-size: 1.4rem;
  font-weight: normal;
}
.fund_search_form_body .left .fund_search_searchitem dt {
  width: 140px;
}
.fund_search_form_body .right .fund_search_searchitem dt {
  width: 115px;
}
.fund_search_form_body .fund_search_searchitem dd {
  flex-grow: 1;
  margin: 0;
}

.fund_search_form_body .fund_search_searchitem .cols2 {
  display: flex;
  margin-left: -10px;
}
.fund_search_form_body .fund_search_searchitem .cols2 > label {
  width: calc(50% - 10px);
  margin-left: 10px;
}

.fund_search_condition_renge {
  margin: 0.5em 0 0;
  padding-left: 1em;
  text-indent: -1em;
  color: #666;
}
.fund_search_searchitem_error,
.fund_search_searchitem_error {
  margin-top: 4px;
  padding: 5px  3px 5px 12px;
  background-color: #f9e6e9;
  color: #c00;
  line-height: 1.1666;
}

@media (min-width: 768px) {
  .fund_search_form_body {
    display: flex;
    justify-content: space-between;
  }
  .fund_search_form_body_col.left {
    width: 50%;
    max-width: 400px;
  }
  .fund_search_form_body_col.right {
    width: 390px;
    width: 48%;
    max-width: 380px;
  }
  .fund_search_form_body .fund_search_searchitem {
    display: flex;
  }
  .fund_search_form_body .fund_search_searchitem dt {
    margin-top: 8px;
  }
  .fund_search_form_body .fund_search_searchitem dd {
    margin: 0;
  }
  .fund_search_condition_renge {
    
    font-size: 1.4rem;
  }
}
@media (max-width: 767.98px) {
  .fund_search_form_body .fund_search_searchitem dt {
    margin-bottom: 10px;
  }
  .fund_search_form_body .fund_search_searchitem dd {
    margin: 0;
  }
  .fund_search_condition_renge {
    font-size: 1.2rem;
  }
}

/**/
.fromto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
.fromto > p {
  display: flex;
  margin: 0;
}
.fromto > p:nth-child(2) {
  padding: 0 10px;
}
.fromto .input_text {
  border-radius: 5px 0 0 5px;
  text-align: right;
}
@media (min-width: 768px) {
  .fromto .input_text {
    width: 60px;
  }
}
@media (max-width: 767.98px) {
  .fromto .input_text {
    width: calc(100% - 60px);
  }
}

/**/
.input_radio_guroup {
  display: flex;
  margin-left: -10px;
}
.input_radio_guroup .input_radiobtn {
  flex-grow: 1;
  margin-left: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .input_radio_guroup .input_radiobtn {

  }
}
@media (max-width: 767.98px) {
  .input_radio_guroup .input_radiobtn {
    width: calc(33.3333% - 10px);
  }
}


/* search footer +++++++++++ */
.fund_search_form_footer {
  display: flex;
  justify-content: space-between;
  max-width: 440px;
  margin: 30px auto 0;
}
.fund_search_submitbtn,
.fund_search_clearbtn {
  flex-grow: 1;
  text-align: center;
}
.fund_search_submitbtn {
  width: 300px;
}
.fund_search_clearbtn {
	width: 120px;
  margin-left: 20px;
}

.fund_search_submitbtn > a,
.fund_search_clearbtn > a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 12px;
  border: 1px solid #dde0e5;
  border-radius: 5px;
  outline: none;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  width: 100%;
  display: block;
}

.fund_search_submitbtn > a {
  border-color: #465059;
  background-color: #465059;
  color: #fff;
}
.fund_search_clearbtn > a {
	background-color: #fff;
	color: #313942;
}





/* search results
++++++++++++++++++++++++++++++++++++++++ */
/* fund search results +++++++++++ */
.fund_search_results {
  /* font-family: "Hiragino Kaku Gothic Pro", Meiryo, Verdana, "MS PGothic", sans-serif; */
  margin: 45px auto 0;
}

/* tab nav +++++++++++ */
.fund_search_results_nav {
  display: flex;
  justify-content: space-between;
  padding: 0;
  box-shadow: 0px -1px 0px 0px #dde0e5 inset;
}
.fund_search_results_tab {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-radius: 5px 5px 0 0;
	background-color: #f4f9fb;
	box-shadow: 0px 0px 0px 1px #dde0e5 inset;
	color: #313942;
	line-height: 1.4;
	text-align: center;
	font-weight: bold;
  word-break: keep-all;
  cursor: pointer;
}
.fund_search_results_tab::before,
.fund_search_results_tab::after {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  content: "";
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.fund_search_results_tab::before {
  bottom: 0;
  height: 1px;
  background-color: #fff;
}
.fund_search_results_tab::after {
  top: 0;
  height: 4px;
  border-radius: 5px 5px 0 0;
  background-color: #024f95;
}
.fund_search_results_tab.is-active {
	color: #024f95;
	background-color: #fff;
}
.fund_search_results_tab.is-active::before,
.fund_search_results_tab.is-active::after {
	opacity: 1;
}
@media (min-width: 768px) {
  .fund_search_results_nav {
    margin: 0 -5px 35px;
  }
  .fund_search_results_tab {
    margin: 0 5px;
    padding: 1.1em 1.2em;
    font-size: 1.8rem;
  }
}
@media (max-width: 767.98px) {
  .fund_search_results_nav {
    margin: 0 -3px 25px;
  }
  .fund_search_results_tab {
    margin: 0 3px;
    padding: 0.7em 0.6em;
    font-size: 1.4rem;
  }
}

/* select nav +++++++++++ */
.sort_select {
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .sort_select {
    display: none;
  }
}

/* panel +++++++++++ */
.fund_search_panel {
  position: relative;
  /* overflow: hidden; */
  min-height: 300px;
}
.fund_search_panel.is-active {
  display: block;
}
.fund_search_panel.is-inactive {
  display: none;
}

/* overlay info , loading */
.fund_search_panel_overlayinfo,
.fund_search_panel_overlayloading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8) no-repeat center center;
  color: #ea6153;
  text-align: center;
}
.fund_search_panel_overlayloading {
  background-image: url(/app-files/img/cmn_ic49.gif);
}
.fund_search_panel_overlayinfo p {
  position: absolute;
  top: 50%;
  width: 100%;
}

/* no results ++ */
.fund_search_noresults {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  background-color: #f9f9f9;
}

.fund_search_noresults p {
  color: #4a5864;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}


/* table +++++++++++ */
.fund_search_results_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

/* table head +++++++++++ */
.fund_search_results_table > thead {
  background-color: rgba(200, 225, 235, 0.2);/* #f4f9fb */
  text-align: center;
}
.fund_search_results_table th {
  padding: 12px 10px;
  border: 1px solid #dde0e5;
  font-weight: bold;
  text-align: center;
  vertical-align: top;
}

/* label */
.fund_search_results_table th a {
  display: block;
  width: 100%;
  text-decoration: underline;
}
.fund_search_results_table .itembox {
  width: 100%;
  height: 60px;
  font-size: inherit;
}
.fund_search_results_table .itembox_return {
  display: flex;
  align-items: center;
  width: 100%;
  height: 35px;
  font-size: inherit;
}
.fund_search_results_table .itembox p,
.fund_search_results_table .itembox_return p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0;
}

/* sort button */
.fund_search_results_table .btnbox {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  font-size: 0;
  line-height: 0;
}
.fund_search_results_table .btnbox a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #dde0e5;
  outline: none;
  /* background-color: #fff; */
  background-color: rgba(255,255,255,0.6);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.fund_search_results_table .btnbox a:first-child {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
.fund_search_results_table .btnbox a:last-child {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.fund_search_results_table .btnbox a + a {
  border-left: 0;
}
.fund_search_results_table .btnbox a::before {
  display: block;
  z-index: 5;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% - 5px);
  border: 5px solid transparent;
  content: "";
}
.fund_search_results_table .btnbox a.up::before,
.fund_search_results_table .btnbox a.up-on::before {
  top: calc(50% - 7px);
  border-bottom-color: #465059;
}
.fund_search_results_table .btnbox a.down::before,
.fund_search_results_table .btnbox a.down-on::before {
	top: calc(50% - 2px);
	border-top-color: #465059;
}
.fund_search_results_table .btnbox a:hover {
  background-color: #eaf4f8; 
}
.fund_search_results_table .btnbox a.up-on,
.fund_search_results_table .btnbox a.down-on {
  background-color: rgba(162, 212, 228, 0.6);/* #c7e5ef */
}
.fund_search_results_table a.btn-ym {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 48px;
  height: 30px;
  border: 1px solid #dde0e5;
  border-radius: 5px;
  outline: none;
  /* background-color: #fff; */
  background-color: rgba(255,255,255,0.6);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  color: #465059;
  text-decoration: none;
}
.fund_search_results_table a.btn-ym:hover {
  background-color: #eaf4f8; 
}
.fund_search_results_table span.on a.btn-ym {
  background-color: rgba(162, 212, 228, 0.6);/* #c7e5ef */
}

/* table data +++++++++++ */
.fund_search_results_table > thead > *:first-child > th:nth-child(1),
.fund_search_results_table > thead > *:first-child > th:nth-child(7) {
  width: 320px;
  min-width: 320px;
}.fund_search_results_table > thead > *:first-child > th:nth-child(2) {
  width: 116px;
}

.fund_search_results_table > thead > *:first-child > th:nth-child(5),
.fund_search_results_table > thead > *:first-child > th:nth-child(6) {
  width: 130px;
}
.fund_search_results_table > thead > *:first-child > th:nth-child(9) {
  width: 110px;
}
.fund_search_results_table > tbody > *:nth-child(even) {
  background-color: rgba(225, 225, 225, 0.2);
}

.fund_search_results_table td {
  border: 1px solid #dde0e5;
  padding: 15px 10px;
  text-align: right;
  white-space: nowrap;
}
.fund_search_results_table td:nth-child(1),
.fund_search_results_table td:nth-child(7) {
  text-align: left;
  white-space: normal;
}

@media (max-width: 767.98px) {
  .fund_search_panel [data-table-sp="scroll"] {
    max-width: 100%;
    overflow-x: auto;
    background: linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.2)) left, linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.2)) right;
    background-size: 15px 100%;
    background-attachment: scroll;
    background-repeat: no-repeat;
  }
  .fund_search_panel [data-table-sp="scroll"] > * {
    width: auto;
    min-width: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0), #fff 20px) left, linear-gradient(to right, rgba(255,255,255,0), #fff 20px) right;
    background-size: 30px 100%;
    background-attachment: local;
    background-repeat: no-repeat;
  }
  .fund_search_panel [data-table-sp="scroll"] > * > * > * > th {
    white-space: nowrap;
  }
  .fund_search_panel [data-table-sp="scroll"] > * > * > * > td {
    word-break: break-all;
  }
}

/* @media (min-width: 768px) {

}
@media (max-width: 767.98px) {
  .fund_search_results_table > thead {
    display: none;
  }
  .fund_search_results_table,
  .fund_search_results_table > tbody,
  .fund_search_results_table > * > tr,
  .fund_search_results_table > * > * > td {
    display: block;
    padding: 0;
    border: 0;
  }
} */


/* data content +++++++++++ */
.fund_search_results_table .fundname {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.625;
}
.fund_search_results_table .fundname a {
  display: block;
}
.fund_search_results_table .fundname a::after {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  z-index: 2;
  position: relative;
  top: -1px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-top: 1px solid #adb5bb;
  border-right: 1px solid #adb5bb;
  content: "";
}
.fund_search_results_table .fundcompany {
	margin: 0.5em 0 0;
	color: #666666;
	font-size: 1.4rem;
}

/* respoisive +++++++++++ *
.fund_search_results_table dl {
  margin: 0;

	display: flex;
	align-items: center;
	justify-content: space-between;
  padding: 8px 0;
  border-top: 1px dotted #dde0e5;
}
.fund_search_results_table dt {
  font-size: 1.4rem;
  font-weight: bold;
}
.fund_search_results_table dt > small {
  font-size: inherit;
  font-weight: normal;
}
.fund_search_results_table dd {
  margin: 0;
}

@media (min-width: 768px) {
}
@media (max-width: 767.98px) {
}

/* color +++++++++++ */
.txt_plus { color: #cc0000; }
.txt_minus { color: #0067c3; }

/* icon +++++++++++ */
.icon-box-s {
  width: 100%;
  text-align: center;
}
.icon-box-s span {
  display: block;
  padding: 3px 10px 1px 10px;
  border-radius: 50px;
  background-color: #339c8f;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
.icon-box-s span + span {
  margin-top: 10px;
}

/* fund category icon color */
span.icon-jp { background: #d87159;; }/* 日本 */
span.icon-ov { background: #339c8f; }/* 海外 */
span.icon-emg { background: #bb891d; }/* 新興国 */
span.icon-kabu { background: #3f84b3; }/* 株式 */
span.icon-bond { background: #3f84b3; }/* 債券 */
span.icon-balance { background: #3f84b3; }/* バランス */
span.icon-reit { background: #3f84b3; }/* REIT */
span.icon-other { background: #3f84b3; }
span.icon-nisa { background-color: #5d9bb2; }/* NISA */

@media (min-width: 768px) {
  .fund_search_results_table .fundname a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 767.98px) {
  .fund_search_results_table .fundname {
    font-size: 1.5rem;
  }
  .fund_search_results_table .fundcompany {
    font-size: 1.2rem;
  }
  .icon-box-s span {
    min-width: 75px;
    font-size: 1.2rem;
  }
  .icon-box-s span + span {
    margin-top: 5px;
  }
}

label.icon-nisa-s {
    font-size: 1.2rem;
}