@charset "UTF-8";
/*--------------------------
リセット
---------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  overflow-y:scroll;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
/*----------------------------------------------------
基本：基本タグ
------------------------------------------------------ */
/* [ PC - SP switch ] */
@media screen and (min-width: 768px) {
  .pcOFF {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  /* Smartphone */
  .spOFF {
    display: none !important;
  }
}
@media print  {
  .spOFF {
    display: none !important;
  }
}
/* -------*/
* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  min-width:1100px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height:160%;
}

.f-serif{
	font-family: 'Noto Serif JP', serif;
}
.f-volk{
	font-family: 'Vollkorn', serif;
}
@media screen and (max-width: 767px) {
  /* Smartphone */
	body {
	  min-width:100%;
	}
}

/*----------------------------------------------------
共通
------------------------------------------------------ */
.tit01{
	font-size:30px;;
	padding-bottom:25px;
	margin-bottom:40px;
	border-bottom:solid 1px #002494;
}
.txt01{
	font-size:16px;
	margin-bottom:30px;
}
ul.lst01{
	list-style:disc;

	margin-left:25px;
}
ul.lst01 li{
}



.box{
	width:100%;
	max-width:1080px;
	margin:0 auto 85px;
}
.boxMini{
	width:100%;
	max-width:970px;
	margin:0 auto 85px;
}

.mainTit{
	font-size:38px;
	line-height:160%;
	margin-bottom:95px;
	position:relative;
}
.mainTit:before{
	content:"";
	width:150px;
	height:3px;
	background:#000;
	position:absolute;
	top:35px;
	left:-170px;
}

.tbl01{
	margin-bottom:100px;
	width:100%;
}
.tbl01 tr{
	background:#fff;
}
.tbl01 tr:nth-child(odd){
	background:#EEEEEE;
}
.tbl01 th{
	font-size:18px;
	padding:23px;
	vertical-align:top;
}
.tbl01 td{
	font-size:18px;
	padding:23px;

}
/*--------- .imgCenter --------- */
.imgCenter{
	text-align:center;
}

@media screen and (max-width: 767px) {
  /* Smartphone */
	.tit01{
		font-size:22px;;
		font-weight:bold;
		padding-bottom:15px;
		margin-bottom:30px;
		border-bottom:solid 1px #002494;
	}
	.box{
		width:calc(100% - 40px);
		margin:0 auto;
	}
	.mainTit{
		font-size:18px;
		line-height:160%;
		margin-bottom:20px;
		padding-left:70px;
	}
	.mainTit br{
		display:none;
	}
	.mainTit:before{
		content:"";
		width:70px;
		height:3px;
		background:#000;
		position:absolute;
		top:15px;
		left:-20px;
	}
	
	.tbl01{
		margin-bottom:40px;
		width:100%;
	}
	.tbl01 tr{
		background:#fff;
	}
	.tbl01 tr:nth-child(odd){
		background:#EEEEEE;
	}
	.tbl01 th{
		font-size:15px;
		padding:10px 5px;
		width:35%;
	}
	.tbl01 td{
		font-size:15px;
		padding:10px 5px;
		width:65%;
	}

}


/*----------------------------------------------------
スマホヘッダー
------------------------------------------------------ */
/* スマホヘッダー */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999999;
}

#fixed-top {
	background:url(../img/header_bk.png) repeat;
  position: fixed;
  top: 0;
  z-index: 99999999;
  height: 50px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/* ヘッダーのロゴ */
#fixed-top .logo {
  padding: 10px 0 0 10px;
}

#fixed-top .logo img {
  width: auto;
  height: 32px;
}

/* ヘッダーのボタン関連 */
#fixed-top .headerButtons {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: right;
  justify-content: right;
}

#fixed-top .headerButtons li a {
  display: block;
}

#fixed-top .headerButtons li img {
  vertical-align: bottom;
  height: 50px;
  width: auto;
}

/* スマートフォン用ナビゲーション*/
#slidar_menu {
  background: #f2f5fd;
  padding: 10px;
  z-index: 99999999;
}

#slidar_menu .sb-right-inner .logo {
  margin: 0px 0 20px;
  text-align: center;
  overflow: hidden;
}

#slidar_menu .sb-right-inner .logo img {
  display: block;
  width: 200px;
  height: auto;
  margin: 10px auto;
  text-align: center;
}

#slidar_menu .sb-right-inner .parent .tit {
  display: block;
  background: #f0f6ff;
  padding: 5px;
  margin-bottom: 10px;
  border-radius: 3px;
  font-weight: bold;
  color: #cf1357;
}

#slidar_menu .sb-right-inner .parent li {
  border-bottom: solid 1px #ccc;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

#slidar_menu .sb-right-inner .parent li.banner img {
  width: 100%;
  height: auto;
}

#slidar_menu .sb-right-inner .parent li.banner {
  border-bottom: none;
  margin-bottom: 5px;
  padding-bottom: 0px;
}

#slidar_menu .sb-close {
  text-align: right;
  margin-bottom: 10px;
}

#slidar_menu .sb-right-inner a {
  display: block;
  text-decoration: none;
  font-size: 13px;
  color: #333;
  font-weight: bold;
}

/* テキストメニュー */
#slidar_menu .parent.txt {
  margin-bottom: 30px;
}

#slidar_menu .parent.txt li {
  background-image: url(../img/shoplist_marker.png);
  background-repeat: no-repeat;
  background-position: 98% 4px;
  background-size: 14px 14px;
}

/* バナーメニュー */
#slidar_menu .parent.banner li {
  padding: 0 !important;
  margin: 0 !important;
  border: none;
}

#slidar_menu .parent.banner .tit {
  text-align: center;
  margin-bottom: 5px !important;
  background: #cf1357;
  color: #fff;
}

#slidar_menu .parent.banner img {
  width: 100%;
  height: auto;
}

/* スライドメニュー：サムネイルメニュー */
#slidar_menu .parent.prsvNav .parent__tit {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
}

#slidar_menu .parent.prsvNav .parent__lst {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: dotted 1px #000;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

#slidar_menu .parent.prsvNav .parent__lst li {
  width: 48%;
  margin-bottom: 10px;
  border: none !important;
}

#slidar_menu .parent.prsvNav .parent__lst li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: normal;
}

#slidar_menu .parent.prsvNav .parent__lst li img {
  width: 100%;
  height: auto;
  margin-bottom: 0px;
  vertical-align: bottom;
  border: solid 1px #000;
}

/* コンタクトメニュー */
#slidar_menu .parent.contact {
  margin-bottom: 30px;
}

#slidar_menu .parent.contact .tit {
  border: none;
  background: none;
  text-align: center;
}

#slidar_menu .parent.contact li {
  border: none;
}

#slidar_menu .parent.contact .thum {
  padding: 0 !important;
  background-color: #fff;
  background-image: url(../img/shoplist_marker.png);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: 14px 14px;
  border: solid 1px #aaa !important;
  border-radius: 2px !important;
  margin-bottom: 3px !important;
}

#slidar_menu .parent.contact .thum a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: normal;
  line-height: 130%;
}

#slidar_menu .parent.contact .thum a img {
  width: 65px;
  height: auto;
  margin-right: 5px;
  border-right: #aaa solid 1px;
}

#slidar_menu .parent.contact .tel a {
  border-radius: 3px;
  text-align: center;
}

#slidar_menu .parent.contact .tel a span {
  font-size: 14px;
}

#slidar_menu .parent.contact .tel a span span {
  font-weight: bold;
}

/*----------------------------------------------------
header
------------------------------------------------------ */
.header{
	background:url(../img/header_bk.png) repeat;
	position:fixed;
	z-index:10;
	top:0;
	left:0;
	width:100%;
}
.header .inner{
	width:100%;
	max-width:1170px;
	margin:0 auto;
	height:85px;

	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items: center;      /* 垂直方向の中央寄せ */
}
.header .inner .headerLogo{
	flex-basis:225px;
}
.header .inner .headerLogo img{
	width:220px;
	height:auto;
}
.header .inner .nav{
	flex-basis:70%;
}
.header .inner .navLst{
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap;
	align-items: center;      /* 垂直方向の中央寄せ */
}
.header .inner .navLst li.navItem{
	margin-right:35px;
}
.header .inner .navLst li.navItem:last-child{
	margin-right:0;
}
.header .inner .navLst a{
	text-decoration:none;
	font-size:20px;
	font-weight:bold;
	color:#333333;
	background:url(../img/nav_marker.png) no-repeat left center;
	padding-left:30px;
}
.header .inner .navLst a:hover{
	color:#08287f;
}
/*----------------------------------------------------
wrapper
------------------------------------------------------ */
#wrapper.basicPage{
	margin-top:160px;
}
@media screen and (max-width: 767px) {
  /* Smartphone */
	#wrapper.basicPage{
		margin-top:90px;
	}
}

/*----------------------------------------------------
mainVisual
------------------------------------------------------ */
.mainVisual{
	position:relative;
	margin:0px auto 50px;
	z-index:1;
}
#video-area{
}
.mainVisual #video {
    width:100%;
}
.mainVisual__tit{
	width:100%;
	max-width:1170px;
	font-size:64px;
	line-height:1.5;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height:100px;
	text-shadow: 0 0 15px #111111;
}

@media screen and (max-width: 767px) {
  /* Smartphone */
	.mainVisual {
        display: flex;
        justify-content: center;
		margin-bottom:30px;
	}
	.mainVisual #video {
		width:auto;
		height:500px;
	}
	.mainVisual__tit{
		font-size:20px;
		padding-left:20px;
	}
}

/*----------------------------------------------------
pageVisual
------------------------------------------------------ */
.pageVisual{
	position:relative;
	margin:0px auto 125px;
	z-index:1;
}
.pageVisual__pic{
    width:100%;
	text-align:center;
}
.pageVisual__pic img{
    width:100%;
	max-width:1800px;
	height:auto;
}
.pageVisual__tit{
	width:100%;
	max-width:1170px;
	position:absolute;
	top: 200px;
	left: 0;
	right:0;
	margin-left:auto;
	margin-right:auto;
	height:100px;
}
.pageVisual__tit span{
	display:inline-block;
	font-size:28px;
	background:#002494;
	padding:15px 30px;
	color:#fff;
	margin-bottom:15px;
}
.pageVisual__tit span:nth-child(1){
	margin-left:-50px;
}
.pageVisual__tit span:nth-child(2){
	margin-left:-30px;
}

@media screen and (max-width: 767px) {
  /* Smartphone */
	.pageVisual{
		margin-bottom:80px;
	}
	.pageVisual__tit{
		top:auto;
		bottom:10px;
		left: auto;
		right:auto;
		height:100px;
	}
	.pageVisual__tit span{
		font-size:18px;
		padding:5px 20px;
	}
	.pageVisual__tit span:nth-child(1){
		margin-left:auto;
		position:absolute;
		left:0;
	}
	.pageVisual__tit span:nth-child(2){
		margin-left:auto;
		position:absolute;
		right:0;
		top:75px;
	}

}

/*----------------------------------------------------
footer
------------------------------------------------------ */
.footer{
	background:#EEEEEE;
}

.footer .inner{
	width:100%;
	max-width:1080px;
	margin:0 auto;
	padding:50px 0 55px;

	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items: center;      /* 垂直方向の中央寄せ */
}
.footer .inner .logo{
	flex-basis:140px;
}
.footer .inner .logo img{
	width:140px;
	height:auto;
}
.footer .inner .footerLnks{
	flex-basis:calc(100% - 140px);
	padding:0 80px 0 150px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.footer .inner .footerLnks .item{
}
.footer .inner .footerLnks .item .lnk{
	text-decoration:none;
	color:#222;
}
.footer .inner .footerLnks .item .lnk:hover{
	color:#f33;
}
.footer .inner .footerLnks .item .lnk span{
	display:block;
}
.footer .inner .footerLnks .item .lnk .ja{
	font-size:18px;
	margin-bottom:5px;
}
.footer .inner .footerLnks .item .lnk .en{
	font-size:13px;
}

/* address  */
.address{
	border-top:solid 1px #000;
	padding-top:30px;
	padding-bottom:30px;
}
.address span{
	display:block;
	text-align:center;
	font-size:12px;
}

@media screen and (max-width: 767px) {
  /* Smartphone */
	.footer .inner{
		width:calc(100% - 40px);
		display:block;
		padding-bottom:20px;
	}
	.footer .inner .logo{
		flex-basis:100%;
		width:100%;
		padding:0;
		text-align:center;
		margin-bottom:30px;
	}
	.footer .inner .footerLnks{
		flex-basis:100%;
		width:100%;
		padding:0;
		display:block;
	}
	.footer .inner .footerLnks .item{
		border-bottom:dashed 1px #666666;
		padding-bottom:10px;
		margin-bottom:10px;
	}
	.footer .inner .footerLnks .item .lnk span{
		display:inline-block;
	}
	.footer .inner .footerLnks .item .lnk .ja{
		font-size:18px;
	}
	.footer .inner .footerLnks .item .lnk .en{
		font-size:12px;
	}

	/* address  */
	.address{
		border:none;
		padding:15px 0;
		background:#666666;
	}
	.address span{
		font-size:12px;
		color:#fff;
	}
	.pageTop img{
		width:30px;
		height:auto;
	}
}
/*----------------------------------------------------
.partnerBox
------------------------------------------------------ */
.partnerBox{
	margin-bottom:258px;
	position:relative;
	z-index:10;
}
.partnerBox .box{
	width:100%;
	max-width:890px;

	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.partnerBox .tit{
	flex-basis:62.9%;
	font-size:18px;
	line-height:160%;
	letter-spacing:-1px;
	color:#111111;
}
.partnerBox .pic{
	flex-basis:33.7%;
}
@media screen and (max-width: 767px) {
  /* Smartphone */
	.partnerBox{
		margin-bottom:55px;
	}
	.partnerBox .box{
		width:calc(100% - 40px);
		margin:0 auto;
	}
	.partnerBox .tit{
		flex-basis:100%;
		font-size:16px;
		margin-bottom:25px;
	}
	.partnerBox .pic{
		flex-basis:100%;
		text-align:center;
	}
	.partnerBox .pic img{
		max-width:300px;
	}
}

/*----------------------------------------------------
.partnerBox2
------------------------------------------------------ */
.partnerBox2{
	margin-bottom:80px;
	position:relative;
	z-index:10;
}
.partnerBox2 .box{
	width:100%;
	max-width:890px;

	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.partnerBox2 .tit{
	flex-basis:62.9%;
	font-size:18px;
	line-height:160%;
	letter-spacing:-1px;
	color:#111111;
}
.partnerBox2 .pic{
	flex-basis:33.7%;
}
@media screen and (max-width: 767px) {
  /* Smartphone */
	.partnerBox2{
		margin-bottom:55px;
	}
	.partnerBox2 .box{
		width:calc(100% - 40px);
		margin:0 auto;
	}
	.partnerBox2 .tit{
		flex-basis:100%;
		font-size:16px;
		margin-bottom:25px;
	}
	.partnerBox2 .pic{
		flex-basis:100%;
		text-align:center;
	}
	.partnerBox2 .pic img{
		max-width:300px;
	}
}

/*----------------------------------------------------
.partnerBox3
------------------------------------------------------ */
.partnerBox3{
	margin-bottom:80px;
	position:relative;
	z-index:10;
}
.partnerBox3 .box{
	width:100%;
	max-width:940px;

	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.partnerBox3 .tit{
	flex-basis:42.9%;
	font-size:18px;
	line-height:160%;
	letter-spacing:-1px;
	color:#111111;
}
.partnerBox3 .pic{
	flex-basis:53.7%;
}
@media screen and (max-width: 767px) {
  /* Smartphone */
	.partnerBox3{
		margin-bottom:55px;
	}
	.partnerBox3 .box{
		width:calc(100% - 40px);
		margin:0 auto;
	}
	.partnerBox3 .tit{
		flex-basis:100%;
		font-size:16px;
		margin-bottom:25px;
	}
	.partnerBox3 .pic{
		flex-basis:100%;
		text-align:center;
	}
	.partnerBox3 .pic img{
		max-width:450px;
	}
}
/*----------------------------------------------------
businessBox
------------------------------------------------------ */
.businessBox{
	margin-bottom:185px;
}
.businessBox .inner{
	width:100%;
	max-width:1170px;
	margin:0 auto;
	position:relative;
	z-index:1;
}
.businessBox .inner .pic{
	position:absolute;
	right:-100px;
	top:-190px;
}
.businessBox .inner .cnt{
	width:570px;
	position:relative;
	z-index:10;
}
.businessBox .inner .cnt .tit{
	color:#002494;
	margin-bottom:30px;
}
.businessBox .inner .cnt .tit .en{
	font-size:46px;
	margin-bottom:5px;
	display:block;
}
.businessBox .inner .cnt .tit .ja{
	font-size:26px;
	display:block;
}
.businessBox .inner .cnt .info{
}
.businessBox .inner .cnt .info .txt{
	font-size:18px;
	color:#1F1F1F;
	line-height:160%;
	margin-bottom:25px;
}
.businessBox .inner .cnt .info .btn{
	text-align:right;
}
.businessBox .inner .cnt .info .btn a{
	display:inline-block;
	background:#002494;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	padding:15px 30px;
	text-decoration:none;
}
.businessBox .inner .cnt .info .btn a:hover{
	background:#000;
}
@media screen and (max-width: 767px) {
  /* Smartphone */
	.businessBox{
		margin-bottom:50px;
	}
	.businessBox .inner .cnt{
		width:100%;
	}
	.businessBox .inner{
		  display: flex;
		  justify-content: space-between;
		  flex-wrap: wrap;
		  flex-direction: column;
	}
	.businessBox .inner .pic{
		height:400px;
		position:relative;
		right:auto;
		top:auto;
		order:2;
	}
	.businessBox .inner .pic img{
		width:120%;
		height:auto;
		position:absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}
	.businessBox .inner .cnt .info{
		order:1;
	}

	.businessBox .inner .cnt .tit{
		margin-bottom:20px;
	}
	.businessBox .inner .cnt .tit .en{
		font-size:30px;
		margin-bottom:5px;
	}
	.businessBox .inner .cnt .tit .ja{
		font-size:18px;
	}
	.businessBox .inner .cnt .info .txt{
		font-size:15px;
	}
	.businessBox .inner .cnt .info .btn{
		text-align:center;
	}
	.businessBox .inner .cnt .info .btn a{
		padding:10px 30px;
	}
}
/*----------------------------------------------------
ContactBannerArea
------------------------------------------------------ */
.ContactBannerArea{
	margin-bottom:250px;
}
.ContactBannerArea .inner{
	width:100%;
	max-width:1400px;
	margin:0 auto;
}
.ContactBanners {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
}
.ContactBanners .item{
	background:#000 url(../img/ContactBannerArea_pic_about.jpg) no-repeat center center;
	flex-basis:49.85%;
}
.ContactBanners .item:nth-child(1){ background-image: url(../img/ContactBannerArea_pic_about.jpg); }
.ContactBanners .item:nth-child(2){ background-image: url(../img/ContactBannerArea_pic_contact.jpg); }

.ContactBanners .item .lnk{
	display:block;
	padding:55px 0;
	text-decoration:none;
	color:#fff;
}

/* .tit */
.ContactBanners .item .lnk .tit{
	margin-bottom:40px;
}
.ContactBanners .item .lnk .tit span{
	display:block;
	text-align:center;
}
.ContactBanners .item .lnk .tit .en{
	font-size:46px;
	margin-bottom:5px;
}
.ContactBanners .item .lnk .tit .ja{
	font-size:26px;
}

/* .txt */
.ContactBanners .item .lnk .txt{
	font-size:16px;
	text-align:center;
	margin-bottom:15px;
	line-height:1.8;
}

/* .btn */
.ContactBanners .item .lnk .btn{
}

.ContactBanners .item .lnk .btn span{
	display:block;
	border:solid 1px #fff;
	background:rgba(255,255,255,0.2);
	padding:20px 0;
	text-align:center;
	width:160px;
	margin:0 auto;
	position:relative;
}
.ContactBanners .item .lnk .btn span:after{
	content:"";
	position:absolute;
	right:-27px;
	top:0;
	bottom:0;
	margin:auto;
	width:41px;
	height:15px;
	background:url(../img/ContactBanners_arrow.png) no-repeat center center;
}
.ContactBanners .item .lnk:hover .btn span{
	background:rgba(0,0,0,0.2);
}

@media screen and (max-width: 767px) {
  /* Smartphone */
	.ContactBannerArea{
		margin-bottom:100px;
	}
	.ContactBanners {
		display:block;
	}
	.ContactBannerArea .inner{
		width:calc(100% - 40px);
		margin:0 auto;
	}
	.ContactBanners .item{
		flex-basis:100%;
		margin-bottom:20px;
	}
	.ContactBanners .item:last-child{
		margin-bottom:0;
	}
	.ContactBanners .item{
		background:none url(../img/ContactBannerArea_pic_about.jpg) no-repeat center center;
		background-size:140%;
	}
	.ContactBanners .item .lnk{
		padding:25px 15px;
	}
	.ContactBanners .item .lnk .tit{
		margin-bottom:20px;
	}
	.ContactBanners .item .lnk .tit .en{
		font-size:30px;
		margin-bottom:5px;
	}
	.ContactBanners .item .lnk .tit .ja{
		font-size:18px;
	}
	.ContactBanners .item .lnk .txt{
		font-size:14px;
		letter-spacing:-1px;
	}
	.ContactBanners .item .lnk .btn span{
		padding:10px 0;
	}
}
/*----------------------------------------------------
businessArea01
------------------------------------------------------ */
.businessArea01{

}
.businessArea01 .box{
	position:relative;
	margin-bottom:60px;
}
.businessArea01 .box .pic{
	width:57%;
	position:relative;
	top:0;
	left:0;
}
.businessArea01 .box .pic img{
}
.businessArea01 .box .info{
	position:absolute;
	width:57%;
	background:#EEEEEE;
	padding:55px 55px 100px 55px;
	right:0;
	top:30px;
}
.businessArea01 .box .tit{
	color:#002492;
	font-size:30px;
	margin-bottom:30px;
}
.businessArea01 .box .txt{
	font-size:18px;
	color:#1F1F1F;
	line-height:160%;
}
@media screen and (max-width: 767px) {
  /* Smartphone */
	.businessArea01 .box{
		width:100%;
		margin-bottom:0;
	}
	.businessArea01 .box .pic{
		width:100%;
	}
	.businessArea01 .box .pic img{
		width:100%;
		height:auto;
	}
	.businessArea01 .box .info{
		width:calc(100% - 40px);
		margin:0 auto;
		position:relative;
		left:auto;
		top:-20px;
		padding:20px 30px 40px;
	}
	.businessArea01 .box .tit{
		font-size:20px;
	}
	.businessArea01 .box .txt{
		font-size:15px;
	}
}
/*----------------------------------------------------
businessArea02
------------------------------------------------------ */
.businessArea02{
	margin-bottom:180px;
	margin-top:-40px;
}
.businessArea02 .box{
	position:relative;
}
.businessArea02 .box .pic{
	width:597px;
	position:absolute;
	top:-130px;
	right:-30px;
}
.businessArea02 .box .pic img{
}
.businessArea02 .box .info{
	position:relative;
	width:470px;
}
.businessArea02 .box .tit{
	color:#002492;
	font-size:30px;
	margin-bottom:30px;
}
.businessArea02 .box .txt{
	font-size:18px;
	color:#1F1F1F;
	line-height:160%;
	margin-bottom:30px;
}
.businessArea02 .btn {
	text-align:right;
}
.businessArea02 .btn a{
	display:inline-block;
	background:#002494;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	padding:15px 30px;
	text-decoration:none;
}
.businessArea02 .btn a:hover{
	background:#000;
}
@media screen and (max-width: 767px) {
  /* Smartphone */
	.businessArea02{
		margin-bottom:50px;
	}
	.businessArea02 .box .pic{
		width:100%;
		position:relative;
		right:auto;
		top:auto;
		margin-bottom:25px;
	}
	.businessArea02 .box .pic img{
		width:100%;
		height:auto;
	}
	.businessArea02 .box .info{
		position:relative;
		width:100%;
	}
	.businessArea02 .btn {
		text-align:center;
	}
	.businessArea02 .btn a{
		padding:10px 30px;
	}
}
/*----------------------------------------------------
policyLst
------------------------------------------------------ */
.policyLst{
}
.policyLst dt{
	font-size:22px;
	font-weight:bold;
	margin-bottom:20px;
}
.policyLst dd{
	font-size:16px;
	border-bottom:solid 1px #ccc;
	padding-bottom:25px;
	margin-bottom:35px;
}
@media screen and (max-width: 767px) {
  /* Smartphone */
	.policyLst dt{
		font-size:18px;
	}
	.policyLst dd{
		font-size:15px;
	}
}
