@charset "utf-8";
/* CSS Document */

/* ------------------------------------------------------------
	BASE SETTING CSS
   ------------------------------------------------------------ */


/* ------------------------------------------------------------
	LAYOUT CSS
   ------------------------------------------------------------ */

html {
    font-size: 62.5%;
}

body {
  background: #fff;
  font-family: "Hiragino kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",  Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  Osaka, sans-serif;
  color: black;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
	vertical-align: bottom;
	width: 100%;
	max-width: 100%;
	height: auto;
}

@media screen and (min-width:768px) and (max-width:1024px) {

img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

}


/* link
----------------------------------------------------*/
a {
  text-decoration: none;
  color: #000;
}
a:hover {
  text-decoration: underline;
}

.text_link a {
	color: #000;
}

/* layout
----------------------------------------------------*/
#wrapper {
  font-size: 14px;
  font-size: 1.4rem;
}

.content {
	width: 1115px;
	margin: auto;
}

@media screen and (min-width:768px) and (max-width:1200px) {

.content {
	width: 90%;
	margin: auto;
}

}


.content .box {
	margin: 10px 0 50px;
}

.section__devider {
    margin: 0 0 6em;
	clear: left;
    text-align: center;
    z-index: 0;
}

.section__link {
    font: 1.125em/1.22222 "Frutiger Light",Meiryo,"MS PGothic","Hiragino Kaku Gothic Pro",Helvetica,sans-serif;
	color: #646464;
    margin: 0 auto;
    position: relative;
    text-decoration: none;
    z-index: 2;
}

.section__link:after {
    height: 20px;
    width: 45px;
    top: 1.75em;
    content: '';
    background-repeat: no-repeat;
    background-image: url(../img/icon_scroll.jpg);
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -22px;
    z-index: 1;
    padding-top: .6875em;
}

.top__link {
	text-align: right;
	margin: 0 0 15px;
}

.top__link a {
	font: 100% "Frutiger Light",Meiryo,"MS PGothic","Hiragino Kaku Gothic Pro",Helvetica,sans-serif;
	color: #646464;
    z-index: 2;
}



@media screen and (max-width:768px) {

:root * img	{
	width: 100%;
}

.content {
	width: 90%;
}

}


/* header
----------------------------------------------------*/
.header {
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-sizing: border-box;
}

.header .headerInner {
	max-width: 1115px;
    height: 75px;
    margin: auto;
    overflow: hidden;
    padding: 25px 0 0px 0;
}

.header_logo {
  float: left;
  margin: 0 0 29px 10px;
}

.header_navi {
  float: right;
  padding: 15px 10px 0 0px;
  text-align: right;
  line-height: 1;
  font-size: 13px;
  font-size: 1.3rem;
}
.header_navi li {
  display: inline-block;
  margin: 0 0 0 17px;
  padding: 0 17px 0 0;
  border-right: 1px solid #666;
}
.header_navi li:last-child {
  border: none;
  padding: 0;
}
.header_navi li a:hover {
  color: #000;
}

.headerNav-sp {
	display: none;
}


@media screen and (max-width:768px) {

.header {
  width: 100%;
  height: 75px;
  margin: 0;
  padding: 0;
  position: fixed;
  z-index: 999;
  background: #fff;
  -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
  -o-box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
  -ms-box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
}


.header .headerInner {
	width: 100%;
	margin: 0;
	height: 75px;
	position: relative;
	padding: 15px 0 0 20px;
    box-sizing: border-box;
}

.header_logo {
	margin: 0;
}

.header_navi {
	display: none;
}

.headerNavTrigger{
        display: block;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 23px;
		right: 20px;
		cursor: pointer;
    }
    .headerNavTrigger-item{
        display: block;
        width: 40px;
        height: 4px;
        background: #555;
        position: absolute;
        border-radius: 10px;
	    transition: all 0.3s;
    }
    .headerNavTrigger-item:nth-of-type(1) {
        top: 0;
    }
    .headerNavTrigger-item:nth-of-type(2) {
        top: 12px;
    }
    .headerNavTrigger-item:nth-of-type(3) {
        top: 24px;
    }
	
	.headerNavTrigger-open .headerNavTrigger-item:nth-of-type(1) {
        -webkit-transform: translateY(12px) rotate(-45deg);
        transform: translateY(12px) rotate(-45deg);
    }
    .headerNavTrigger-open .headerNavTrigger-item:nth-of-type(2) {
        opacity: 0;
    }
    .headerNavTrigger-open .headerNavTrigger-item:nth-of-type(3) {
        -webkit-transform: translateY(-12px) rotate(45deg);
        transform: translateY(-12px) rotate(45deg);
    }

.headerNav-sp {
	width: 100%;
    z-index: 99999;
	display: none;
	background: #fff;
	overflow: hidden;
  -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
  -o-box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
  -ms-box-shadow: 0px 1px 3px rgba(0,0,0,0.3);

}

.headerNav-sp .headerNavList {
	border-top: 1px solid #CCC;
	margin: 0 0 20px;
}

.headerNav-sp .headerNavList li {
	border-bottom: 1px solid #CCC;
}

.headerNav-sp .headerNavList li a {
	display: block;
	padding: 10px 40px 10px 10px;
	font-size: 120%;
	position: relative;
	text-align: left;
}

.headerNav-sp .headerNavList li a:after {
	content: "";
	position: absolute;
	right: 25px;
	top: 15px;
	width: 10px;
	height: 10px;
	border-bottom: 1px solid #333;
	border-right: 1px solid #333;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.headerNav-sp .headerNavList2 {
	width: 60%;
	margin: 0 auto 20px;
}

.headerNav-sp .headerNavList2 li {
	background: #dfeaf5;
	width: 100%;
	display: inline-block;
}

.headerNav-sp .headerNavList2 li a {
	display: block;
	padding: 10px;
	text-align: center;
}


}




/* mainImg
----------------------------------------------------*/
#mainImg {
	width: 100%;
    max-width: 1500px;
    margin: 0 auto;
	position: relative;
}

#mainImg .mainImgInner {
	position: absolute;
    top: 30%;
    right: 6%;
}

#mainImg .mainImgInner .ttl {
	margin: 0 0 30px;
}

#mainImg .mainImgInner ul {
	margin: 0 0 20px;
}

#mainImg li a {
	border: 2px solid #000;
	color: #000;
	text-align: center;
	padding: 10px 15px;
}

#mainImg .pc img {
	width: 100%;
	height: auto;
}

@media screen and (max-width:768px) {

#mainImg {
	padding-top: 75px;
	margin-bottom: 50px;
}

#mainImg .sp img {
	width: 100%;
}

#mainImg .mainImgInner {
	top: 35%;
	left: 10px;
}

#mainImg .mainImgInner .ttl {
	margin: 0 0 15px;
}

#mainImg .mainImgInner ul {
    width: 100%;
	margin: 0 0 15px;
}

#mainImg li a {
	width: 50%;
    display: block;
    padding: 3px;
}

}


/* anchorLink
----------------------------------------------------*/
#anchorLink {
	width: 100%;
	margin: 0 0 70px;
}

#anchorLink .anchorLinkInner {
	width: 100%;
	background: #E6E6E6;

}

#anchorLink .anchorLinkInner.fixed{
	position:fixed;
	top:0;
	z-index:999;
}

#anchorLink .anchorLinkInner ul {
	max-width: 1115px;
	height: 90px;
	margin: auto;
	padding: 15px 0;
	box-sizing: border-box;
}

#anchorLink .anchorLinkInner li {
	display: inline-block;
    text-align: center;
    border-left: 1px solid #333;
    padding: 0 13px;
	width: 16%;
    height: 60px;
    vertical-align: middle;
	box-sizing: border-box;
}

#anchorLink .anchorLinkInner li:last-child {
	border-right: 1px solid #333;
}

#anchorLink .anchorLinkInner li a{
	display: block;
	vertical-align: middle;
	padding-top: 5px;
	font-size: 120%;
    font-weight: bold;
}

#anchorLink .anchorLinkInner li a.p-reset{
	padding-top: 8px;
}

@media screen and (max-width:768px) {

#anchorLink { 
	display: none;
}

}

@media screen and (min-width:768px) and (max-width:1200px) {
	
#anchorLink .anchorLinkInner li {
	padding: 5px;
	font-size: 85%;
	width: 15%;
}

#anchorLink .anchorLinkInner li a {
	padding-top: 0px;
}

#anchorLink .anchorLinkInner li br {
	display: none;
}

#anchorLink .anchorLinkInner li:first-child {
	margin-left: 10px;
}

#anchorLink .anchorLinkInner li a.p-reset{
	padding-top: 4px;
}


}


/* movie
----------------------------------------------------*/
#movie .movieArea {
	background: #E6E6E6;
	margin: 30px 0;
	padding: 20px;
}

#movie .movieArea img {
	width: 520px;
	height:auto;
}

@media screen and (max-width:768px) {

#movie {
	width: 90%;
	margin: auto;
}

#movie .movieArea img {
	width: 500px;
}

}
	

/* footer
----------------------------------------------------*/
.footer {
  width: 1115px;
  margin: auto;
  clear: both;
  overflow: hidden;
  padding: 35px 0 0 0;
  border-top: 1px solid #bebebe;
}
.footer img {
	width: inherit;
}
.footer .footer_content {
  float: left;
  width: 340px;
  margin: 0 47px 0 0;
}
.footer .footer_content:nth-child(3) {
  float: right;
  margin: 0;
}
.footer .footer_content p {
  margin: 0 0 20px 0;
  padding: 0 0 15px 0;
  border-bottom: 1px solid #efeff0;
  font-size: 12px;
  font-size: 1.2rem;
}
.footer .footer_content ul {
  margin: 0 0 40px 0;
}
.footer .footer_content ul li {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
}
.footer .footer_content ul li a:before {
  content: " ";
  display: inline-block;
  background: url('/am/images/icons-s48fa17e2f3.png') -15px -13px;
  width: 7px;
  height: 14px;
  vertical-align: middle;
  margin: 0 4px 0 0;
}
.footer .footer_copy {
  overflow: hidden;
  width: 100%;
  padding: 20px 0 40px 0;
  border-top: 1px solid #bebebe;
  font-size: 12px;
  font-size: 1.2rem;
}
.footer .footer_copy .footer_copy_ja {
  display: inline-block;
    margin-left: 0.5em;
}
.footer .footer_copy .footer_copy_en {
    display: inline-block;
}

@media screen and (max-width:768px) {

.footer {
	width: 100%;
	border-top: none;
}

.footer .footer_content {
	display: none;
}

.footer .footer_copy {
	width: 95%;
	margin: 0 auto;
}

.footer .footer_copy_ja {
	float: none;
	text-align: left;
    margin: 0 0 20px;

}
}

@media screen and (min-width:768px) and (max-width:1200px) {

.footer {
	width: 90%;
}

.footer .footer_content {
	width: 100%;
}

.footer .footer_content:nth-child(3) {
	float: none;
}

}

/* 200911 追記 */
.footer .footer_copy p {
	margin: 0;
}
.footer .footer_copy_varl {
	margin-bottom: 10px;
}
@media screen and (min-width:768px) {
	.footer .footer_copy_varl {
		font-size: 14px;
	}
	.footer .footer_copy_varl br {
		display: none;
	}
}



/* modal
----------------------------------------------------*/
.modal{
	background:#FFF;
	padding:20px;
}

a.modal {
	padding: inherit;
}

a.modal:hover {
	opacity: 0.8;
}

.modal .modalTtl{
	font-size: 160%;
	border-bottom: 1px solid #CCC;
	margin: 0 0 20px;
}

.modal .modalTtl span {
	font-size: 70%;
	padding-right: 15px;
}

.modal .modalBox {
	display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
	margin-bottom: 30px;
}

.modal .modalBox img {
    max-width: 90%;
}

.modal .modalBox li {
	background:#EEF5FB;
}

.modal .modalBox li:nth-child(1),
.modal .modalBox li:nth-child(2) {
	    margin-bottom: 30px;
}


.modal .modalBox li:nth-child(2),
.modal .modalBox li:nth-child(4) {
	    margin-right: 0px;
}

.modal .modalBox li .ttl {
	background: #0599D2;
    color: #FFF;
    padding: 5px;
    font-size: 110%;
    text-align: center;
	margin: 0 0 15px;
}

.modal .modalBox li .inner {
	padding: 10px;
}


.modalClose{
	background: #CCC;
	padding: 10px;
	bottom: 20px;
	right:0;
	cursor:pointer;
	width: 130px;
    text-align: center;
    margin: 0 auto 20px;
}


.modal.modalView {
	overflow-y: scroll;
	max-width: 800px;
	max-height: 75%;
}

.modal_overlay {
	z-index: 999;
}

.btn a.modal {
	font-size: 120%;
	font-weight: bold;
}

@media screen and (max-width:768px) {

.modal.modalView {
	overflow-y: scroll;
	max-width: 80%;
    max-height: 70%;
}

}


/* btn
----------------------------------------------------*/

.btn {
	margin: 15px 0;
}

.btn a {
	position: relative;
	background: #dfeaf5;
    padding: 15px;
    width: 70%;
    margin: 0 auto;
    display: block;
}

.btn a:after {
	content: "";
	position: absolute;
	right: 19px;
	width: 7px;
	height: 7px;
	border-top: 2px solid #007099;
	border-right: 2px solid #007099;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	margin-top: -4px;
}

.btn a:hover:after {
	right: 16px;
}

.col-2.height li {
	position: relative;
	padding-bottom: 85px;
}

.col-2.height li .btn {
	position: absolute;
	bottom: 0;
	width: 100%;
}

.col-2.height li .modalBox li {
	padding-bottom: 0px;
}




/* setting
----------------------------------------------------*/

h2 {
	font-size: 200%;
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px;
}

h3 {
	font-size: 160%;
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px;
}

h4 {
	font-size: 120%;
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px;
    padding: 0 0 5px;
    border-bottom: 1px solid #BACDD7;
}

.mb10 {	margin-bottom: 10px; }
.mb20 {	margin-bottom: 20px; }
.mb30 {	margin-bottom: 30px; }



.textC { text-align: center;}
.textR { text-align: right;}

@media screen and (min-width:769px) {
.textR-pc { text-align: right;}

.fs110p-pc { font-size: 110%;}

}

.red {
	color: #F00;
}

.pink {
	color: #F3C;
}

.bold {
	font-weight: bold;
}

.ind {
	text-indent: -0.5em;
	padding-left: 0.5em;
}

.indent {
	text-indent: -1em;
	padding-left: 1em;
}

.indent2 {
	text-indent: -2em;
	padding-left: 2em;
}

.indent3 {
	text-indent: -3em;
	padding-left: 3em;
}

.col-2,
.col-3 {
	margin: 30px 0;
	overflow: hidden;
}

.col-2.height {
	display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}

.col-2 li {
	float: left;
    width: 48%;
    margin-right: 4%;
}

.col-2 li:last-child {
	margin-right: 0px;
}

.col-3 li {
	float: left;
    width: 30%;
	margin-right: 4%;
}

.col-3 li:last-child {
	margin-right: 0px;
}

.reportList {
	margin-bottom: 15px;
}

.reportList dt {
	clear: left;
    float: left;
    width: 10em;
    padding: 11px 0 13px;
    color: #666;
}

.reportList dd {
    padding: 12px 0 13px 10em;
    border-bottom: 1px solid #efeff0;
}

.linkPDF {
    background-image: url(http://japan1.ubs.com/am/images/icon/icPDF.gif);
    background-position: left center;
    background-repeat: no-repeat;
    padding: 2px 0 0 20px;
}

.note {
	font-size: 12px;
}

.resize {
	width: inherit;
}


@media screen and (max-width:768px) {

.pc {
	display: none;
}

.col-2 {
	margin: 0;
}

.col-2 li,
.col-3 li {
	float: none;
	width: 100%;
	margin-right: 0px;
	margin-bottom: 15px;
}

}

@media screen and (min-width:769px) {

.sp {
	display: none;
}

}



/* 新興国株式投資の新たな潮流
----------------------------------------------------*/

.imgList {
	margin: 30px 0 ;
	overflow: hidden;
}

.imgList li {
	width: 260px;
	height: 230px;
	float: left;
	margin-right: 20px;
}

.imgList li:last-child {
	margin-right: 0px;
}

@media screen and (max-width:1200px) {

.imgList li {
	width: 22%;
	height: auto;
	margin-right: 3%;
}

}

@media screen and (max-width:768px) {

.imgList li {
	width: 47%;
	height: auto;
	margin: 0 3% 3% 0;
}

.imgList li:nth-child(2n),
.imgList li:nth-child(4n) {
	margin-right: 0%;
}

}

/* ファンドのポイント
----------------------------------------------------*/

.pointList {
	display: table;
	width: 100%;
}

.pointList dt,
.pointList dd {
	display: inline-block;
}

.pointList dt {
	width: 12%;
	margin-right: 3%;
	vertical-align: top;
}

.pointList dd {
	width: 84%;
	margin: 0 0 40px;
}

.pointList dd:last-child {
	margin: 0;
}

.pointList dd h4 {
	font-size: 130%;
	font-weight: bold;
	margin-bottom: 0px;
	border-bottom: none;
    text-align: left;
}


/* 個別企業の選別に着目
----------------------------------------------------*/

.engineList {
	margin: 30px 0;
    overflow: hidden;
	background: url(../../img/arrow_r.jpg) no-repeat center;
}

.engineList li {
	width: 45%;
    float: left;
    margin-right: 10%;
}

.engineList li:last-child {
	margin-right: 0%;
}

@media screen and (max-width:768px) {
	
.engineList {
	background: url(../../img/arrow_b.jpg) no-repeat center;
}

.engineList li {
	width: 100%;
}

.engineList li:first-child {
	margin-bottom: 90px;
}

}
