@charset "UTF-8";
/* CSS reset */
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
}
* {
	margin: 0;
	padding: 0;
}
ul li {list-style: none;}
@media screen and (min-width: 480px) {
	body { background: #EBEBEB; }
	#content, #wrap, #footer, #header {
		width: 420px;
		background: #FFF;
		overflow: hidden;
		margin: 0 auto;
	}

}
/* ----------  header ---------- */
#header { 
	border-bottom: 3px solid #192b56;
}
#header h1 {
  font-size: .8em;
	width: 45%;
	padding: 10px 0 5px 5px;
	float: left;
	line-height: 1;
}
#header li {list-style: none;}
/* navi */
#nav_hd_menu_bg {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	display: none;
	z-index: 90000;
}
#nav_hd_menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 88%;
	color: #fff;
	height: 100%;
	padding-bottom: 150px;
	background: #444;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	z-index: 90001;
	display: none;
}
#nav_hd_menu h2 {
	background: #444;
	font-weight: bold;
	line-height: 150%;
	padding: 10px 10px;
	border-bottom: 1px solid rgba(0,0,0,0.5);
	box-sizing: border-box;
}
#nav_hd_menu h3 {
	background: #222;
	font-weight: bold;
	line-height: 150%;
	padding: 5px 10px;
	border-top: 1px solid rgba(180,180,180,0.2);
	border-bottom: 1px solid rgba(0,0,0,1);
	box-sizing: border-box;
}
#nav_hd_menu li {
	border-bottom: 1px solid rgba(0,0,0,0.8);
	box-sizing: border-box;
}
#nav_hd_menu li > a {
	color: #fff;
	line-height: 150%;
	padding: 6px;
	display: block;
}
.nav_hd_menu_btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 90002;
    font-size: 11px;
    background: #111;
    padding: 5px 10px;
}
.arrow {
	position: relative;
	display: block;
	padding: 16px;
	color: #fff;
	vertical-align: middle;
}
.arrow::before, .arrow::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	vertical-align: middle;
	content: "";
}
.yaji::before {
	right: 8px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
}
.nav_li_pt small { font-size: 80%; }
.nav_li_txt { padding: 0 65px 0 25px; }
#navi_menu_btn {
	float: right;
	position: relative;
	width: 30px;
	height: 30px;
	margin: 10px 10px;
}
.navi_menu_btn-01 {
	position: absolute;
	top: 4px;
	left: 0;
	right: 0;
	margin: auto;
	width: 27px;
	height: 4px;
	background: #192b56;
	border-radius: 5px;
}
.navi_menu_btn-02 {
	position: absolute;
	top: 13px;
	left: 0;
	right: 0;
	margin: auto;
	width: 27px;
	height: 4px;
	background: #192b56;
	border-radius: 5px;
}
.navi_menu_btn-03 {
	position: absolute;
	top: 22px;
	left: 0;
	right: 0;
	margin: auto;
	width: 27px;
	height: 4px;
	background: #192b56;
	border-radius: 5px;
}
.navi_menu_btn-04 {
	position: absolute;
	bottom: 2px;
	left: 0;
	right: 0;
	margin: auto;
	wigth: 27px;
	height: 7px;
	color: #333;
	font-size: 7px;
	line-height: 130%;
	text-align: center;
	font-weight: bold;
}
.icons_position {
	display: block;
	background: url(../images/icon_menu.png) no-repeat;
	background-size: 100%;
	overflow: hidden;
	width: 30px;
	height: 30px;
	float: left;
	margin: 0 5px 0 0;
}
.icons_position_01 {background-position: 0 0;}
.icons_position_02 {background-position: 0 -35px;}
.icons_position_03 {background-position: 0 -62px;}
.icons_position_04 {background-position: 0 -93px;}
.icons_position_05 {background-position: 0 -122px;}
.icons_position_06 {background-position: 0 -152px;}
/* ---------- animetion ---------- */
.animated_nemu {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@-webkit-keyframes bounceInRight {
	 from, 60%, 75%, 90%, to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	 from {
	opacity: 0;
	-webkit-transform: translate3d(3000px, 0, 0);
	transform: translate3d(3000px, 0, 0);
	}
	 60% {
	opacity: 1;
	-webkit-transform: translate3d(-25px, 0, 0);
	transform: translate3d(-25px, 0, 0);
	}
	 75% {
	-webkit-transform: translate3d(10px, 0, 0);
	transform: translate3d(10px, 0, 0);
	}
	 90% {
	-webkit-transform: translate3d(-5px, 0, 0);
	transform: translate3d(-5px, 0, 0);
	}
	 to {
	-webkit-transform: none;
	transform: none;
	}
}
@keyframes bounceInRight {
	 from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	 from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}
	 60% {
	opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
	 75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
	 90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}
	 to {
		-webkit-transform: none;
		transform: none;
	}
}
.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}
 @-webkit-keyframes bounceOutRight {
	10% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	}
	@keyframes bounceOutRight {
	10% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}
 @-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
	}
	@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
.animated_btn {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.btn01 {
	-webkit-animation-name: btn01;
	animation-name: btn01;
}
.btn02 {
	-webkit-animation-name: btn02;
	animation-name: btn02;
}
.btn03 {
	-webkit-animation-name: btn03;
	animation-name: btn03;
}
 @-webkit-keyframes btn02 {
	0%, 10%, 100% {
	opacity:1;
	}
	11%, 99% {
	opacity:0;
	}
}
@keyframes btn02 {
	0%, 10%, 100% {
	opacity:1;
	}
	11%, 99% {
	opacity:0;
	}
}
 @-webkit-keyframes btn01 {
	 15% {
	transform: translateY(9px);
	-webkit-transform: translateY(9px);
	}
	 30% {
	transform: rotate(45deg) translate(6px, 6.5px);
	-webkit-transform: rotate(45deg) translate(6px, 6.5px);
	}
	 45%, 99% {
	transform: rotate(45deg) translate(50px, -40px);
	-webkit-transform: rotate(45deg) translate(50px, -40px);
	}
	 100% {
	opacity: 1;
	}
}
@keyframes btn01 {
	 15% {
	transform: translateY(9px);
	-webkit-transform: translateY(9px);
	}
	 30% {
	transform: rotate(45deg) translate(6px, 6.5px);
	-webkit-transform: rotate(45deg) translate(6px, 6.5px);
	}
	 45%, 99% {
	transform: rotate(45deg) translate(50px, -40px);
	-webkit-transform: rotate(45deg) translate(50px, -40px);
	}
	 100% {
	opacity: 1;
	}
}
@-webkit-keyframes btn03 {
	 15% {
	transform: translateY(-9px);
	-webkit-transform: translateY(-9px);
	}
	 30% {
	transform: rotate(-45deg) translate(6.5px, -7px);
	-webkit-transform: rotate(-45deg) translate(6.5px, -7px);
	}
	 45%, 99% {
	transform: rotate(-45deg) translate(50px, 40px);
	-webkit-transform: rotate(-45deg) translate(50px, 40px);
	}
	 100% {
	opacity: 1;
	}
}
@keyframes btn03 {
	 15% {
	transform: translateY(-9px);
	-webkit-transform: translateY(-9px);
	}
	 30% {
	transform: rotate(-45deg) translate(6.5px, -7px);
	-webkit-transform: rotate(-45deg) translate(6.5px, -7px);
	}
	 45%, 99% {
	transform: rotate(-45deg) translate(50px, 40px);
	-webkit-transform: rotate(-45deg) translate(50px, 40px);
	}
	 100% {
	opacity: 1;
	}
}
/* ----------  content ---------- */
#content {
	background: #f5f1ee;
}
#content main {
	margin: 10px;
}
/* 案件一覧 */
#ad_frames {
	background: #FFF;
	margin-bottom: 10px;
	box-shadow:0px 0px 6px 3px #f2f2f2;
	-moz-box-shadow:0px 0px 6px 3px #f2f2f2;
	-webkit-box-shadow:0px 0px 6px 3px #f2f2f2;	
}
#ad_frames a {
	text-decoration: none;
}
#content h1 {
	font-size: 20px;
	background: #192b56;
	line-height: 1.5;
	color: #FFF;
	border-bottom: 3px solid #483832;
}
.h1_icons_position {
	display: block;
	background: url(../images/icon_menu_2.png) no-repeat;
	background-size: 100%;
	overflow: hidden;
	width: 25px;
	height: 25px;
	float: left;
	margin: 1px 5px 0 5px;
}
.h1_icons_position_01 {background-position: 0 2px;}
.h1_icons_position_02 {background-position: 0 -25px;}
.h1_icons_position_03 {background-position: 0 -50px;}
.h1_icons_position_04 {background-position: 0 -75px;}
.h1_icons_position_05 {background-position: 0 -99px;}
.h1_icons_position_06 {background-position: 0 -124px;}
.ad_box {
	line-height: 1.8;
	border-bottom: 1px solid #eee;
}
.ad_thum {
	width: 20%;
	float: left;
	padding: 10px 10px 0;
}
.ad_txt {
	float: left;
	width: 70%;
	padding: 10px 0;
	position: relative;
}
.arrow_icon {
	position: absolute;
	background: url(../images/arrow_icon.png)no-repeat;
	background-size: 100%;
	width: 30px;
	height: 30px;
	top:20px;
	right:0;
}
.ad_txt h2 {
	font-size: 18px;
	font-weight: bold;
	color: #000;
}
.ad_btn {
	background: #FFF;
	border:1px solid #CCC;
	padding: 2px 0;
	color: #626262;
	width: 70%;
	text-align: center;
	font-size: 12px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;	
}
.ad_txt_in {
	font-size: 11px;
	margin: 0 10px 10px;
	text-decoration: none;
	background: #FFFEED;
	border:1px solid #EAE9E7;
	padding: 5px;
	color: #000;
}
.ad_area {
	width: 90%;
	margin: 0 auto 10px;
}
.ad_area2 {
	width: 40%;
	margin: 10px auto;
}
/* 案件詳細 */
.details_box { line-height: 1.8;}
.details_box h2 {
	background: #192b56;
	color: #FFF;
	text-align: center;
	padding: 5px 0;
	font-size: 20px;
}
.details_thum {
	width: 50%;
	margin: 5px auto;
}
.details_txt {
	font-size: 11px;
	margin: 0 10px 10px;
	text-decoration: none;
	background: #FFFEED;
	border:1px solid #EAE9E7;
	padding: 5px;
	color: #000;
}
.dl_btn {
	width: 80%;
	margin: 5px auto;
}
.PreformattedText {
	font-size: 14px;
	line-height: 1.8;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #CCC;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 1%, #ffffea 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #ffffff 1%,#ffffea 100%); /* Chrome10-25,Safari5.1-6 */	
}
#page-top img {
    position: fixed;
    bottom: 10px;
    right: 10px;
	width:50px;
	z-index:1;

}
#page-top a {
    display: block;
}
#page-top a:hover {
	opacity:0.67;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.dl_btn_1 a {
  display: block;
  width: 170px;
  margin: 0 auto;
  text-align: center;
  color: #FFF;
  background: #192b56;
  padding: 5px 0;
  font-weight: bold;
  text-decoration: none;
  float: right;
}
.dl_btn_1 a:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  border-bottom: none;/*線を消す*/  
}
.dl_btn_2 {
  width: 80%;
  margin: 3% auto;
}
.content_box {
  padding: 0 0 10px 0;
}
.movie_box {
  width: 100%;
  margin: 0 auto;
}
.content_box_1 {
  padding: 10px;
}
.content_box_1 h2 {
  font-size: 30px;
  width: 300px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 7px 10px;
  color: #192b56;
  background: #FFF;
  border: solid 5px #192b56;
  box-sizing: border-box;
}

.content_box_1 h2:before {
  content: "";
  position: absolute;
  bottom: -42px;
  left: 50%;
  margin-left: -25px;
  border: 20px solid transparent;
  border-top: 20px solid #192b56;
  z-index: 2;
}
.content_box_1 p {
  padding: 20px 10px 10px 10px;
  line-height: 2;
}
.content_box_1 p span {color: #F00;font-weight: bold;}
.content_box_2 {
  color: #192b56;
  padding: 10px;
}
.content_box_2 li {
  padding: 10px;
  border: 3px solid #192b56;
  margin-bottom: 10px;
}
.scheme_img {
  width: 35%;
  float: left;
  box-sizing: border-box;
}
.note_ {
  font-size: .8em;
  width: 65%;
  float: left;
  box-sizing: border-box;
  padding:0 0 0 5px;
}
.note_ h2 {
  font-weight: bold;
  font-size: 20px;
}
.news_box {
  color: #252525;
  background: #FFF;
  width: 100%;
  padding: 2% 0;
  margin: 0 auto;
}
.news_box h2 {
  position: relative;
  text-align: center;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 5px solid #EEE;
}
.news_box h2 span {
  display: block;
  color: #CCC;
  font-size: 12px;
  line-height: 2;
}
.policy_contents {
  width: 80%;
  margin: 0 auto;
  font-size: 10px;
  line-height: 2;
  color: #333;
}
.policy_contents p {
    padding: 2%;
}
.bn_a {width: 90%;margin: 5px auto;}
/* ----------  footer ---------- */
#footer {
	border-top: 1px solid #192b56;
	text-align: center;
}
#copyright {
	padding: 5% 0;
	font-size: 11px;
}
/* ----------  clearfix ---------- */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix { min-height: 1px; }