@charset "utf-8";
/* CSS Document */

/*共通*/
p a[target="_blank"]:after, /*別ウインドウの時にアイコンを付ける*/
.popup:after {
	content: "";
	display: inline-block;
    width: 16px;
    height: 16px;
    /*background-color: red;*/
    background-image: url('/share/designsystem/icon/svg/new_window_line.svg');
	background-repeat: no-repeat;
    background-position-y: 2px;
    background-position-x: center;
    background-size: contain;	
	margin-left: 2px;  /* 5pxぐらい離した方が見栄えがよい */
}
@media (max-width: 1199px) {/*SPメニューの青背景は白*/
    #navbarNavDropdown .popup:after { 
    background-image: url('/share/designsystem/icon/svg/new_window_line_wh.svg');
}
}
@media (max-width: 767px) {/*SP*/
	p a[target="_blank"]:after, /*別ウインドウの時にアイコンを付ける*/
	.popup:after {
	content: none;
	}
}

a.imgMoz {/*マウスオーバー画像ズーム*/
  max-width: 500px;/*念のため*/
  overflow: hidden;
  width: 100%;
}
a.imgMoz img {
  height: auto;
  transition: transform .3s ease; /* ゆっくり変化させる */
}
a.imgMoz:hover img {
  transform: scale(1.8); /* 拡大 */
}