@charset "utf-8";

/* 全体
   ========================================================================== */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  position: relative;
  width: 100%;
	height: 100%;
  font-size: 62.5%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
body {
	position: relative;
  width: 100%;
	background-color: #fff;
  color: #000;
  font-size: 1.4rem;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
	word-wrap: break-word;
}
body,
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (min-width:769px){
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #000;
  text-decoration: none;
}
a:link, a:active, a:hover, a:visited {
  outline: 0 none;
}
ul, ol, dl {
  margin: 0;
  padding: 0;
  list-style: none;
}
dl, dt, dd {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}
input[type="button"], input[type="text"], input[type="email"], input[type="submit"], input[type="image"], textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
	border: none;
	border-radius: 0;
}
h1, h2, h3, h4, h5, h6, p, figure {
  font-weight: normal;
  padding: 0;
  margin: 0;
}
figure {
	font-size: 0;
}
table {
  border-collapse: collapse;
}

.wrap {
	padding: 0 20px;
}
@media (min-width:769px){
	.wrap {
		width: 1100px;
		padding: 0;
		margin: 0 auto;
	}
}

.sp {
  display: block !important;
}
.pc {
  display: none !important;
}
@media (min-width:769px){
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}

.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.right {
  text-align: right !important;
}
.center {
  text-align: center !important;
}
.underline {
  text-decoration: underline;
}
.italic {
	font-style: italic;
}

.red {
	color: #f00;
}

.mc {
}

.mt1 {
	margin-top: 1em !important;
}
.mb1 {
	margin-bottom: 20px !important;
}
@media (min-width:769px){
	.mb1 {
		margin-bottom: 30px !important;
	}
}


/* 一段階強調
   ====================================== */
.strong {
	font-weight: bold;
}


/* 一段階小さい文字
   ====================================== */
.small {
  font-size: 1.2rem;
}
@media (min-width:768px) {
	.small {
		font-size: 1.4rem;
	}
}


/* 上付き文字
   ====================================== */
.sup {
  font-size: 1.0rem;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}
@media (min-width:768px) {
	.sup {
		font-size: 1.2rem;
	}
}


/* 「※」印付きの注意書き
   ====================================== */
.notes {
	font-size: 1.2rem;
	text-indent: -1em;
	padding-left: 1em;
}
.notes::before {
	content: '※';
}
@media (min-width:768px) {
	.notes {
    font-size: 1.4rem;
  }
}


/* ページTOPへ戻るボタン
   ====================================== */
#pagetop {
	position: fixed;
	display: none;
	right: 10px;
	z-index: 4;
	bottom: 40px;
	background-color: #072145;
	text-decoration: none;
  width: 30px;
  height: 30px;
	border-radius: 6px;
}
#pagetop::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	display: block;
	width: 6px;
	height: 6px;
	margin-top: -3px;
  margin-left: 2px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg) translate(-50%, -50%);
}
@media (min-width:768px) {
  #pagetop {
    right: 30px;
    bottom: 94px;
    width: 50px;
    height: 50px;
		border-radius: 10px;
    transition: .3s;
  }
  #pagetop::after {
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: 3px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
  }
  #pagetop:hover {
    opacity: .6;
  }
}



/* ヘッダ
   ========================================================================== */
header {
	position: relative;
	width: 100%;
  height: 70px;
	background-image: url("../img/hd-bg.jpg");
	background-repeat: no-repeat;
	background-position: left;
	background-size: auto 70px;
  padding: 0;
}
header .wrap {
	padding: 0 10px 0 14px;
}
header figure {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
header figure img {
	width: 70%;
}
@media (min-width:768px) {
	header {
		width: 100%;
		height: 190px;
		background-position: center top;
		background-size: cover;
		margin: 0 auto;
		border-bottom: none;
		box-shadow: none;
	}
	header .wrap {
		padding: 0;
	}
	header figure {
		top: 20px;
		transform: translateY(0);
	}
	header figure img {
		width: auto;
	}
}



/* ナビゲーション
   ========================================================================== */
/* SP用ボタン
   ====================================== */
nav .btn {
	position: absolute;
  z-index: 3;
  top: 50%;
	transform: translateY(-50%);
  right: 10px;
	width: 50px;
	height: 50px;
}
nav .btn::before, 
nav .btn::after,
nav .btn span {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	width: 60%;
	margin: auto;
}
nav .btn span {
	top: calc(50% - 1px);
	height: 3px;
	background-color: #fff;
}
nav .btn::before {
	content: '';
	top: calc(25% - 0px);
	border-top: 3px solid #fff;
}
nav .btn::after {
	content: '';
	bottom: calc(25% - 0px);
	border-bottom: 3px solid #fff;
}
nav .btn.on span {
  display: none;
}
nav .btn.on::before {
	top: calc(50% - 1px);
	border-top: 3px solid #fff;
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
}
nav .btn.on::after {
	bottom: calc(50% - 2px);
	border-bottom: 3px solid #fff;
	-webkit-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
@media (min-width:768px) {
  nav .btn {
    display: none;
  }
}


/* GM
   ====================================== */
.nav-conts {
  display: none;
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 4;
  width: 100%;
	box-shadow: 0 6px 6px -5px rgba(0,0,0,0.4);
}
.nav-conts li {
  background: #072145;
}
.nav-conts li:first-child {
  border-top: 1px solid #1b4b57;
}
.nav-conts li a {
  display: block;
  position: relative;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 1.4rem;
  color: #fff;
	text-decoration: none;
  line-height: 1.0;
  padding: 1em 20px;
  border-bottom: 1px solid #1b4b57;
}
.nav-conts li:last-of-type a {
  border-bottom: none;
}
@media (min-width:768px) {
  .nav-conts {
    display: block;
    position: absolute;
		top: auto;
    bottom: 0;
		height: 90px;
		background: -moz-linear-gradient(top, transparent, #0a0b0f 70%);
		background: -webkit-linear-gradient(top, transparent, #0a0b0f 70%);
		background: linear-gradient(to bottom, transparent, #0a0b0f 70%);
		box-shadow: none;
	}
  .nav-conts ul {
    display: flex;
		align-content: space-between;
		justify-content: space-between;
    width: 1100px;
		margin: 0 auto;
  }
  .nav-conts li {
		background-color: transparent;
    text-align: center;
  }
	.nav-conts li:first-child {
		border-top: none;
	}
  .nav-conts li a {
		display: block;
		position: relative;
		font-size: 1.8rem;
		line-height: 87px;
		padding: 0 18px;
    border: none;
  }
  .nav-conts li a.current,
  .nav-conts li a:hover {
		border-bottom: 3px solid #64adbf;
  }
}



/* フッタ
   ========================================================================== */
footer {
	background: url("../img/bg-dot-gray.png");
	margin-top: auto;
}
.ft-nav {
	display: none;
}
.ft-link {
	padding: 20px 0;
}
.ft-link .bnr figure {
	text-align: center;
	margin-bottom: 10px;
}
.ft-link .sns {
	display: flex;
	justify-content: center;
}
.ft-link .sns figure {
	margin: 0 10px;
}
.ft-link .sns img {
	width: 40px;
}
.ft-contact img {
	margin-bottom: 20px;
}
.copyright {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-image: url("../img/ft-bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	font-size: 1.0rem;
	color: #fff;
	text-align: center;
	padding: .6em;
}
@media (min-width:768px) {
	footer {
		padding: 0;
	}
	.ft-nav {
		display: block;
		padding: 30px 0;
		margin-bottom: 30px;
		border-bottom: 1px solid #000;
	}
	.ft-nav ul {
		display: flex;
		justify-content: center;
	}
	.ft-nav li {
		line-height: 1;
		border-right: 1px solid #000;
	}
	.ft-nav li:first-child {
		border-left: 1px solid #000;
	}
	.ft-nav a {
		padding: 0 30px;
	}
	.ft-nav a:hover {
		text-decoration: underline;
	}
	.ft-link {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0;
	}
	.ft-link .bnr {
		display: flex;
	}
	.ft-link .bnr figure {
		display: flex;
		text-align: left;
		margin: 0 30px 0 0;
	}
	.ft-link .bnr figure:last-of-type {
		margin-right: 0;
	}
	.ft-link .sns figure {
		margin: 0 0 0 30px;
	}
	.ft-link .sns img {
		width: auto;
	}
	.ft-link a img {
		transition: .3s;
	}
	.ft-link a:hover img {
		opacity: .8;
	}
	.ft-contact img {
		width: auto;
		margin: 30px 0;
	}
	.copyright {
		width: 100%;
		height: 64px;
		font-size: 1.6rem;
	}
}



/* 共通コンテンツ
   ========================================================================== */
main {
	padding-bottom: 20px;
}
article > section {
	margin-top: 20px;
}
article p {
	margin-top: 1em;
}
section > p:first-of-type {
	margin-top: 0;
}
@media (min-width:768px) {
	main {
		padding-bottom: 60px;
		display: block;
	}
	article > section {
		margin-top: 60px;
	}
	article p {
		margin-top: 2em;
	}
}


/* メイン2カラム 
   ====================================== */
@media (min-width:768px) {
	.main-container {
		display: flex;
		width: 1100px;
		padding: 0;
		margin: 0 auto 60px auto;
	}
  .main-container main {
		display: block;
		width: 800px;
    margin: 0 auto;
  }
}

/* 2カラム時サイドナビ
   ====================================== */
aside ul {
	margin-top: 20px;
	border-bottom: 1px solid #dadada;
}
aside li:first-child {
	position: relative;
	background-color: #fff;
	font-weight: bold;
  color: #000;
	text-align: center;
	padding: 10px;
  border-top: 2px solid #072145;
	border-bottom: 1px dotted #dadada;
	border-right: 1px solid #dadada;
	border-left: 1px solid #dadada;
}
aside li:first-child::before,
aside li:first-child::after {
  position: absolute;
  display: block;
  content: "";
  top: -2px;
  height: 2px;
}
aside li:first-child::before {
  left: -1px;
  border-left: 1px solid #072145;
}
aside li:first-child::after {
  right: -1px;
  border-right: 1px solid #072145;
}
aside li {
	border-right: 1px solid #dadada;
	border-left: 1px solid #dadada;
	border-top: 1px dotted #dadada;
}
aside li:nth-child(2) {
	border-top: none;
}
aside li a {
	position: relative;
	display: block;
	text-decoration: none;
	padding: 10px 32px 10px 10px;
}
@media (min-width:768px) {
	aside {
		width: calc(1100px - 800px - 40px);
		padding-bottom: 0;
		margin-left: 40px;
	}
	aside ul {
		margin-top: 0;
	}
	aside li:first-child {
		font-size: 1.6rem;
		padding: 16px;
		border-top-width: 3px;
	}
	aside li:first-child::before,
	aside li:first-child::after {
		position: absolute;
		display: block;
		content: "";
		top: -3px;
		height: 3px;
	}
	aside li a {
		font-size: 1.6rem;
		padding: 16px 44px 16px 16px;
    transition: .3s;
	}
	aside li a:hover {
		opacity: .6;
	}
}



/* パンくず
   ====================================== */
.breadcrumb {
  width: 100%;
	background: url("../img/bg-dot-gray.png");
  font-size: 0;
}
.breadcrumb ul {
	margin: 0 10px;
}
.breadcrumb li {
  display: inline-block;
  font-size: 1.2rem;
  padding: 8px 10px 5px 0;
	white-space: nowrap;
	vertical-align: middle;
}
.breadcrumb li::before {
  content: '\003e';
  padding: 0 10px 0 0;
}
.breadcrumb li:first-child::before {
  content: '';
  padding: 0;
}
.breadcrumb li:last-child {
	white-space: normal;
}
.breadcrumb a {
	text-decoration: none;
}
.breadcrumb img {
	width: 14px;
}
@media print, screen and (min-width:768px){
  .breadcrumb {
		margin-top: 0;
  }
  .breadcrumb ul {
    width: 1100px;
    margin: 0 auto;
  }
  .breadcrumb li {
    font-size: 1.4rem;
    line-height: 1.0;
    padding: 16px 10px 14px 0;
  }
  .breadcrumb a:hover {
    text-decoration: underline;
  }
	.breadcrumb img {
		width: 18px;
		transition: .2s;
	}
	.breadcrumb img:hover {
		opacity: 0.7;
	}
}


/* ページタイトル（第二階層以降）
   ====================================== */
.page-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	padding: 20px 0;
}
@media (min-width:768px) {
	.page-ttl {
		font-size: 3.6rem;
		padding: 80px 0;
	}
}

/* タイトル1 */
.ttl-lv1 {
	position: relative;
	font-size: 1.6rem;
	font-weight: bold;
	padding-bottom: .25em;
	margin-bottom: 10px;
	border-bottom: 3px solid #131116;
}
.ttl-lv1::before {
	position: absolute;
	display: block;
  content: '';
	left: 0;
	bottom: -3px;
	z-index: 2;
	width: 16px;
	height: 3px;
	background-color: #64adbf;
}
@media (min-width:768px) {
	.ttl-lv1 {
		font-size: 3.0rem;
		margin-bottom: 20px;
		border-bottom-width: 4px;
	}
	.ttl-lv1::before {
		bottom: -4px;
		width: 22px;
		height: 4px;
	}
}

/* タイトル2 */
.ttl-lv2 {
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 10px;
	border-bottom: 1px dotted #131116;
}
@media (min-width:768px) {
	.ttl-lv2 {
		font-size: 2.0rem;
		padding-bottom: .3em;
		margin-bottom: 20px;
	}
}

/* タイトル3 */
.ttl-lv3 {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 16px;
	margin: 14px 0 10px 0;
}
.ttl-lv3::before {
  position: absolute;
  display: block;
  content: '';
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #131116;
  border-radius: 50%;
}
.ttl-lv3::after {
  position: absolute;
  display: block;
  content: '';
  top: 11px;
  left: 2px;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
}
@media (min-width:768px) {
  .ttl-lv3 {
    font-size: 1.8rem;
    padding-left: 22px;
		margin: 30px 0 20px 0;
  }
  .ttl-lv3::before {
    top: 8px;
    width: 14px;
    height: 14px;
  }
  .ttl-lv3::after {
   top: 11px;
   left: 3px;
   width: 8px;
   height: 8px;
  }
}


/* リストマーク入りli
   ====================================== */
ul.disc {
  margin-top: 1em;
}
ul.disc li {
  position: relative;
  padding-left: 14px;
  margin-bottom: .5em;
}
ul.disc li:last-child {
  margin-bottom: 0;
}
ul.disc li::before {
  position: absolute;
  display: block;
  content: '';
  top: 10px;
  left: 2px;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 50%;
}
@media (min-width:768px) {
  ul.disc li {
    padding-left: 20px;
  }
  ul.disc li::before {
    top: 11px;
    left: 4px;
    width: 6px;
    height: 6px;
  }
}

/* 入れ子の場合 */
ol ul.disc {
	margin-top: 0.5em;
	margin-bottom: 1em;
}
ol li:last-child ul.disc {
	margin-bottom: 0;
}


/* テーブル
   ====================================== */
h2 + table {
	margin-top: 1em;
}
.tb-def {
	width: 100%;
}
.tb-def th,
.tb-def td {
	display: block;
}
.tb-def th {
	text-align: left;
	padding: 1em 0 0 0;
}
.tb-def td {
	padding: 0.5em 0 1em 0;
	border-bottom: 1px solid #dadada;
}
@media (min-width:768px) {
	.tb-def {
		display: table;
	}
	.tb-def th,
	.tb-def td {
		display: table-cell;
		vertical-align: top;
		padding: 1em 0;
	}
	.tb-def th {
		padding-right: 20px;
		border-bottom: 1px solid #dadada;
	}
}


/* 横長テーブル
   ====================================== */
@media (max-width:767px) {
  .tb-wide-wrap::-webkit-scrollbar {
    background: #fff;
    width: 2px;
    height: 4px;
  }
  .tb-wide-wrap::-webkit-scrollbar-thumb {
    background: #4e4e4e;
  }
}

.tb-wide-wrap {
  overflow-x: auto;
  width: 100%;
}
.tb-wide {
  margin-top: 1em;
  border-top: 1px solid #dadada;
  border-left: 1px solid #dadada;
}
.tb-wide th,
.tb-wide td {
  padding: 7px;
  border-right: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  white-space: nowrap;
}
.tb-wide th:nth-of-type(1) {
  width: 1%;
  white-space: nowrap;
}
@media (min-width:769px){
  .tb-wide-wrap {
    overflow-x: hidden;
  }
  .tb-wide th,
  .tb-wide td {
    padding: 16px;
    white-space: normal;
  }
}


/* 基本のリンク付きリスト
   ====================================== */
.link-list > li {
	background-image: url("../../common/img/line-dot-gray.png");
	background-repeat: repeat-x;
	background-position: bottom;
	padding: .75em 0;
}
.link-list > li:first-child {
	padding-top: 0;
}
.link-list .nolink {
	position: relative;
  padding-left: 14px;
}
.link-list .nolink::before {
  position: absolute;
  display: block;
  content: '';
	top: 10px;
  left: 2px;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 50%;
}
.link-list li.nolink::before {
	top: 20px;
}
.link-list > li a {
	text-decoration: underline;
}
.link-list > li span {
	font-weight: bold;
}
.link-list a.pdf {
	background-image: url("../../common/img/ic-pdf.png");
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: auto;
	padding-right: 36px;
}
.link-list a.external {
	background-image: url("../../common/img/ic-external.png");
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 16px auto;
	padding-right: 26px;
}
@media (min-width:768px) {
	.link-list > li {
		padding: .75em 0;
	}
	.link-list .nolink {
		padding-left: 20px;
	}
  .link-list .nolink::before {
    top: 11px;
    left: 4px;
    width: 6px;
    height: 6px;
  }
	.link-list li.nolink::before {
		top: 22px;
	}
  .link-list > li a:hover {
		text-decoration: none;
  }
}

/* 複数横並び */
.link-list .multiple a {
	display: inline-block;
	margin-left: 20px;
}
.link-list .multiple.long a,
.link-list .multiple.longsp a,
.link-list .multiple a:first-of-type,
.link-list .multiple.longsp a:first-of-type {
	margin-left: 0;
}
.link-list .multiple a::after {
	right: 20px;
}
.link-list .multiple.long a,
.link-list .multiple.longsp a {
	margin-top: .5em;
}
@media (min-width:768px) {
	.link-list .multiple a,
	.link-list .multiple.longsp a {
		margin-left: 30px;
	}
}


/* 矢印つきテキストリンク
   ====================================== */
.arrow-link {
  position: relative;
  display: inline-block;
  padding-left: 20px !important;
}
.arrow-link::before {
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  left: 0;
  content: '';
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border-top: 2px solid #64adbf;
  border-right: 2px solid #64adbf;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width:768px) {
  .arrow-link {
    padding-left: 20px !important;
  }
  .arrow-link::before {
    width: 6px;
    height: 6px;
    margin-top: -4px;
    border-top: 2px solid #64adbf;
    border-right: 2px solid #64adbf;
  }
}


/* 基本のボタン
   ====================================== */
.btn-area {
	margin-top: 20px;
}
@media (min-width:768px) {
	.btn-area {
		text-align: center;
		margin-top: 40px;
	}
}

/* 白背景　灰色枠　黒文字 */
.btn-def {
	position: relative;
	display: block;
  width: 100%;
	background-color: #fff;
  color: #000;
  padding: 10px;
  border: 1px solid #000;
}
.btn-external {
	background-image: url("../img/ic-external.png");
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 16px auto;
  padding: 10px 24px 10px 10px;
}
.btn-def.arrow::after {
	position: absolute;
	display: block;
	top: 50%;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
}
.btn-def.next {
	padding-right: 24px;
}
.btn-def.next::after {
	right: 10px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn-def.prev::after {
	left: 10px;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}
.btn-def.prev {
	padding-left: 24px;
}
@media (min-width:768px) {
  .btn-def {
    display: inline-block;
		width: auto;
    padding: 16px;
    margin: 0 auto;
		transition: .3s;
  }
  .btn-def:hover {
    opacity: .6;
  }
	.btn-external {
		background-position: right 16px top 50%;
    padding: 16px 48px 16px 16px;
	}
	.btn-def.arrow::after {
		width: 8px;
		height: 8px;
	}
	.btn-def.next {
		padding-right: 44px;
	}
  .btn-def.next::after {
    right: 20px;
  }
	.btn-def.prev {
		padding-left: 44px;
	}
  .btn-def.prev::after {
    left: 20px;
  }
	.btn-def br {
		display: inline-block !important;
	}
}


/* テキスト外部リンク
   ====================================== */
a.external {
	background-image: url("../img/ic-external.png");
  background-repeat: no-repeat;
  background-position: top 50% right 0;
  background-size: 14px auto;
	text-decoration: underline;
  padding-right: 20px;
	margin-right: 7px;
}
@media (min-width:769px){
	a.external {
		background-size: 16px auto;
		padding-right: 26px;
		margin-right: 8px;
	}
  a.external:hover {
    text-decoration: none;
  }
}


/* 画像にグレーの枠（四隅が白い場合等）
   ====================================== */
img.img-fr {
	border: 1px solid #dadada;
}


/* ライトボックス
   ====================================== */
.lb-nav a.lb-prev {
	background-image: url("../img/prev.png");
}
.lb-nav a.lb-next {
	background-image: url("../img/next.png");
}
.lb-data .lb-close {
	background-image: url("../img/close.png");
}
.lb-cancel {
	background-image: url("../img/loading.gif");
}
.lightbox .lb-image {
  border-radius: 0;
  border: 2px solid #fff;
}
.lb-outerContainer {
  border-radius: 0;
}
