﻿/* ======================================

	A.RESET
	B.GLOBAL
		01.Base
		02.Table
	C.COMMON
		01.Header
		02.Navigation
		03.Contents
		04.Footer
	D.PAGE
		01.Page1
		02.Page2
		03.Page3
		04.Page4
		05.Page5
		06.Page6

========================================= */


/*---------------------------------------
   A.RESET
-----------------------------------------*/

a,abbr,acronym,address,article,aside,audio,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,iframe,img,input,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,select,span,strike,summary,table,tbody,td,textarea,tfoot,th,thead,time,tr,tt,ul,var,video{outline:0;border:0;font:inherit;vertical-align:baseline;margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}.clear{clear:both}.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;line-height:0;font-size:0}* html .clearfix{height:1%}.clearfix{display:block}li,p,td{background:url()}ol,ul{list-style:none}img{display:inline-block;vertical-align:middle}body,html{width:100%;min-height:100%}

*,
*:before,
*:after {
	margin: 0;
	padding: 0;
  	-webkit-box-sizing: border-box;
     	-moz-box-sizing: border-box;
          	box-sizing: border-box;
}
img, audio, video, canvas {
	max-width: 100%;
}

/*---------------------------------------
   B.GLOBAL
-----------------------------------------*/

/* 01.Base */

body {
	font-size: 15px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", Helvetica, Arial, Osaka,"MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
	color: #434343;
	background-color: #fff;
	line-height: 1.4;
	-webkit-text-size-adjust: none;
}
a {
	color: inherit;
	text-decoration: none;
}
a.co_blue {
	color: #162bfa;
}
a.co_red {
	color: #f93905;
}
.co_red {
	color: #fe0505;
}
.under {
	text-decoration: underline;
}
#container {
	width: 100%;
	min-width: 1100px;
	overflow: hidden;
}
.wrapper {
	width: 1002px;
	margin: 0 auto;
}
.trans {
	opacity: 1;
}
.trans:hover,
.trans:hover img {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: .7;
}
.sm {
	display: none !important
}

/* 02.Table */

.tb {
	display: table;
	border-collapse: collapse;
}
.tb .tr {
	display: table-row;
}
.tb .th,
.tb .td {
	display: table-cell;
}
.tb_skin {
	width: 100%;
	background-color: #fff;
}
.tb_skin .th,
.tb_skin .td {
	border: 1px solid #e5e5e5;
}
.tb_skin .th {
	background: #faf9f9;
	padding: 20px;
	font-size: 24px;
	width: 185px;
	vertical-align: middle;
	text-align: center;
}
.tb_skin .td {
	vertical-align: middle;
	padding: 20px 50px;
}
.tb_skin .td.pdd {
	padding: 50px;
}

/*---------------------------------------
   C.COMMON
-----------------------------------------*/

/* 01.Header */

header .inner {
	padding: 15px 21px 15px 15px;
}
header .inner .logo {
	float: left;
	margin-top: 17px;
}
header .inner .ct_bar {
	float: right;
}
header .inner .ct_bar .ct_email,
header .inner .ct_bar .ct_tel {
	display: block;
	float: left;
}
header .inner .ct_bar .ct_email img,
header .inner .ct_bar .ct_tel img {
	display: block;
}
header .inner .ct_bar .ct_tel {
	margin-left: 4px;
}

/* 02.Navigation */

nav {
	background: #2f487d;
	padding: 6px 0;
	-webkit-box-shadow: 3px 4px 9.2px 0.8px rgba(101, 101, 101, 0.25);
	-moz-box-shadow: 3px 4px 9.2px 0.8px rgba(101, 101, 101, 0.25);
	box-shadow: 3px 4px 9.2px 0.8px rgba(101, 101, 101, 0.25);
	position: relative;
	z-index: 100;
	text-align: center;
}
nav .navbar li {
	display: inline-block;
	padding: 0 12px;
}
nav .navbar li a {
	display: block;
	padding: 5px 20px 3px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	color: #fff;
	font-size: 18px;
}
nav .navbar li a:hover,
nav .navbar li.active a {
	background: #859ed2;
}

/* 03.Contents */

.page_banner {
	padding: 14px 0 16px;
	background: rgba(248,247,245,1);
	background: -moz-linear-gradient(top, rgba(248,247,245,1) 0%, rgba(225,224,222,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(248,247,245,1)), color-stop(100%, rgba(225,224,222,1)));
	background: -webkit-linear-gradient(top, rgba(248,247,245,1) 0%, rgba(225,224,222,1) 100%);
	background: -o-linear-gradient(top, rgba(248,247,245,1) 0%, rgba(225,224,222,1) 100%);
	background: -ms-linear-gradient(top, rgba(248,247,245,1) 0%, rgba(225,224,222,1) 100%);
	background: linear-gradient(to bottom, rgba(248,247,245,1) 0%, rgba(225,224,222,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f7f5', endColorstr='#e1e0de', GradientType=0 );
}
.page_banner .inner {
	-webkit-box-shadow: 3px 4px 6.79px 0.21px rgba(4, 0, 0, 0.2);
	-moz-box-shadow: 3px 4px 6.79px 0.21px rgba(4, 0, 0, 0.2);
	box-shadow: 3px 4px 6.79px 0.21px rgba(4, 0, 0, 0.2);
}
.page_banner .inner img {
	display: block;
}
.pathway {
	padding: 16px 0 20px 16px;
	font-size: 12px;
}
.pathway a {
	color: #9c5baf;
}
.content_wrap {
	padding: 0 0 67px;
}
.content_wrap .content_sidebar {
	float: left;
	width: 302px;
}
.content_wrap .content_main {
	float: right;
	width: 680px;
}
.mod_contact_info {
	position: relative;
}
.mod_contact_info:before {
	display: block;
	content: ' ';
	width: 100%;
	height: 10px;
	background: url(../img/common/dotted.png) repeat-x;
	position: absolute;
	left: 0;
	top: 0;
}
.mod_contact_info .inner {
	background: #f6f5f5;
	border: 1px solid #e5e5e5;
	padding: 38px 68px 18px;
}
.mod_contact_info .info_contact {
	background: #fff;
	padding: 20px 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}
.mod_contact_info .info_contact .tb {
	width: 100%;
	text-align: center;
}
.mod_contact_info .info_contact .tb .th {
	width: 510px;
	padding: 12px 0 0 15px;
	border-right: 2px solid #eeeeee;
	vertical-align: middle;
}
.mod_contact_info .info_contact .tb .td {
	vertical-align: middle;
	padding-top: 15px;
}
.mod_contact_info .info_contact .ct_desc {
	margin-top: 11px;
}
.mod_contact_info .info_company {
	margin: 20px 7px 0 50px;
	padding-top: 28px;
	border-top: 1px solid #fff;
	position: relative;
}
.mod_contact_info .info_company:before {
	display: block;
	content: ' ';
	width: 100%;
	height: 1px;
	background: #dcdcdc;
	position: absolute;
	top: 0;
	left: 0;
}
.mod_contact_info .info_company .tb {
	width: 100%;
}
.mod_contact_info .info_company .tb .th {
	vertical-align: top;
}
.mod_contact_info .info_company .tb .td {
	vertical-align: top;
	padding-top: 24px;
	padding-left: 20px;
	text-align: right;
}
.mod_contact_info .ct_post .thumb {
	float: left;
	margin-right: 45px;
	margin-left: 17px;
	-webkit-box-shadow: 3px 4px 6.79px 0.21px rgba(4, 0, 0, 0.2);
	-moz-box-shadow: 3px 4px 6.79px 0.21px rgba(4, 0, 0, 0.2);
	box-shadow: 3px 4px 6.79px 0.21px rgba(4, 0, 0, 0.2);
}
.mod_contact_info .ct_post .cont {
	overflow: hidden;
	padding-top: 12px;
	line-height: 1.166666666666667;
}
.mod_contact_info .ct_post .map {
	text-align: center;
	margin-top: 6px;
}
.mod_contact_info .ct_post .map a {
	display: inline-block;
	border: 1px solid #0000ff;
	padding: 2px 6px 0 18px;
	margin-left: 40px;
	color: #0000ff;
	font-size: 14px;
	line-height: 1em;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}
.mod_banner img {
	display: block;
}
.mod_category {
	margin-top: 18px;
}
.category_ttl a {
	display: block;
	padding: 8px 10px;
	border-color: #e7e5e5 #bebcbc #bebcbc #e7e5e5;
	border-style: solid;
	border-width: 1px;
	font-size: 18px;
	font-weight: bold;
	color: #4e4e4e;
	-webkit-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.15);
}
.category_ttl a span {
	display: block;
	padding-top: 4px;
	padding-bottom: 2px;
	padding-left: 22px;
	border-left: 4px solid #273e6d;
	line-height: 1;
}
.category_lis {
	margin-bottom: 10px;
	padding: 0 12px;
}
.category_lis li {
	display: table;
	width: 100%;
	height: 65px;
	border-bottom: 1px solid #dcdcdc;
}
.category_lis li a {
	display: table-cell;
	vertical-align: middle;
	padding: 0 8px;
}
.category_lis li a span {
	display: block;
	padding-top: 2px;
	padding-left: 35px;
	background-repeat: no-repeat;
	background-position: 0 50%;
}
.category_lis .ico_point {
	background-image: url(../img/common/ico01.png);
}
.category_lis .ico_support {
	background-image: url(../img/common/ico02.png);
}
.category_lis .ico_inversigation {
	background-image: url(../img/common/ico03.png);
}
.category_lis .ico_performance {
	background-image: url(../img/common/ico04.png);
}
.category_lis .ico_about {
	background-image: url(../img/common/ico05.png);
}
.category_lis .ico_community {
	background-image: url(../img/common/ico06.png);
}
.category_lis .ico_lawyer {
	background-image: url(../img/common/ico07.png);
}
.category_lis .ico_map {
	background-image: url(../img/common/ico08.png);
}
.mod_contact {
	background: #848482;
	padding: 28px 20px 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}
.mod_contact_email {
	display: block;
	margin-top: 11px;
}
.mod_contact img,
.mod_contact_plus img {
	display: block;
}
.mod_contact_plus {
	margin-top: 28px;
}
.mod_adv {
	margin-top: 17px;
}
.ul_adv li {
	margin-top: 13px;
}
.ul_adv li:first-child {
	margin-top: 0;
}
.ul_adv li img {
	display: block;
}
.block_post .block_ttl {
	background: #2f487d;
	padding: 12px 10px;
	font-size: 20px;
	color: #fff;
}
.block_post .block_ttl.gray {
	background: #848482;
}
.block_post .block_ttl span {
	display: block;
	line-height: 1;
	padding-top: 4px;
	padding-bottom: 2px;
	padding-left: 22px;
	border-left: 4px solid #fff;
	white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.block_post .block_cont {
	padding: 30px 20px;
}
.block_post .block_cont.ml {
	margin-left: 20px;
}
.mod_acc_thumb .mod_head {
	width: 561px;
	margin: 0 auto;
}
.mod_acc_thumb .mod_head .cont {
	position: relative;
}
.mod_acc_thumb .mod_head .cont:before {
	display: block;
	content: ' ';
	width: 24px;
	height: 24px;
	background: url(../img/common/ico_view.png) no-repeat;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -12px;
}
.mod_acc_thumb .mod_head.active .cont:before {
	background-image: url(../img/common/ico_less.png);
}
.mod_acc_thumb .desc {
	font-size: 12px;
	margin-top: 5px;
	text-align: center;
}
.mod_acc_thumb .mod_body {
	display: none;
}
.mod_acc_thumb .mod_body .inner {
	padding-top: 20px;
}
.mod_acc {
	margin-top: 20px;
}
.mod_acc .mod_head {
	width: 432px;
	margin: 0 auto;
	position: relative;
}
.mod_acc .mod_head:before {
	display: block;
	content: ' ';
	width: 24px;
	height: 24px;
	background: url(../img/common/ico_view.png) no-repeat;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -12px;
}
.mod_acc .mod_head.active:before {
	background-image: url(../img/common/ico_less.png);
}
.mod_acc .mod_body {
	display: none;
}
.mod_acc .mod_body .inner {
	padding-top: 52px;
}
.mod_price {
	text-align: center;
	margin-bottom: 25px;
	color: #203258;
}
.mod_price .desc {
	margin-top: 15px;
}

.grad-wrap {
  position: relative
}
.grad-btn {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: -50px;
  left: 0;
  width: 148px;
  margin: auto;
  padding: .5em 0;
  border-radius: 2px;
  background: #A3A2A2;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 0 3px rgba(0,0,0,.3);
  /*デモ用の一例です。.grad-btnのCSSは表示/非表示の動作には関係ないので、ご自由にどうぞ。*/
}
.grad-btn::before {
  content: "続きを読む";
  font-size: 14px;
}
.grad-item {
  position: relative;
  overflow: hidden;
  height: 150px; /*隠した状態の高さ*/
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  content: "";
}
.grad-trigger {
  display: none; /*チェックボックスは常に非表示*/
}
.grad-trigger:checked ~ .grad-btn::before {
  content: "閉じる" /*チェックされていたら、文言を変更する*/
}
.grad-trigger:checked ~ .grad-item {
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad-trigger:checked ~ .grad-item::before {
  display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}
.kiji p {
	margin: 0px 0px 10px 0px;
}
.kiji_top {
	margin-top: 30px;
}



.accordion-box2 {
    position: relative;
	width:80%;
	left: 10%;
	/*border-style: solid;*/
	font-size: 3vw;
}
.accordion-box2 label {
    height: 100%; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size:2vw;
    position: absolute;
    bottom: 0;
    width: 100%;

    /* 以下グラデーションは「背景が白」に併せて設定しています */ 
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}
.accordion-box2 input:checked + label {
    background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box2 label:after {
    content: "↓　続きをよむ　"; /* ラベルの文字 */
    letter-spacing: .07vw;
    line-height: 7vw;
	font-size: 3vw;
    position: absolute;
    bottom: -5vw;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #fff;
    background-color: #959191;
    width:50%;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	z-index: 997;
}
.accordion-box2 label:before {
    content: "↓";
    font-weight: 700;
    position: absolute;
    bottom: -5vw;
    left: 100%;
    -webkit-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    background-color: #959191;
    z-index: 1;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
	z-index: 998;
	display: none
}
.accordion-box2 input {
    display: none;
}
.accordion-box2 .accordion-container {
    overflow: hidden;
    height: 20vw; /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


.accordion-box2 input:checked + label {
  /*display: none ; 閉じるボタンは要らないとき*/
}
.accordion-box2 input:checked + label:after {
    content: "↑　閉じる　";
	bottom: -7vw;
}
.accordion-box2 input:checked + label:before {
    content: "↑";
}
.accordion-box2 input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 0%; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.kiji-sm p {
	margin: 0px 0px 10px 0px;
}


.sm-space {
	padding-bottom: 2em !important;
}




/* 04.Footer */

footer {
	margin-top: 104px;
}
footer .logo {
	text-align: center;
	margin-bottom: 90px;
}
footer .copyright {
	background: #2f487d;
	padding: 8px 0 13px;
	font-size: 12px;
	color: #fff;
	text-align: center;
}
#page_control {
	position: fixed;
	left: 50%;
	bottom: 202px;
	margin-left: 555px;
}
#page_control span {
	display: block;
	width: 50px;
	height: 74px;
	background-repeat: no-repeat;
	cursor: pointer;
}
#page_control .pageup {
	background-image: url(../img/common/pageup.png);
}
#page_control .pagedown {
	background-image: url(../img/common/pagedown.png);
	margin-top: -1px;
}
.mod_footer_logo {
	text-align: right;
	margin-bottom: -50px;
}

/*---------------------------------------
   D.PAGES
-----------------------------------------*/

/* 01.Top */

.page_top article {
	padding-top: 30px;
}
.block_intro .post_intro .thumb {
	float: right;
	margin-left: 16px;
	margin-right: 10px;
	margin-top: 18px;
}
.block_intro .post_intro .cont .fbig {
	font-size: 26px;
	color: #5b5a5a;
}
.block_intro .post_profile {
	margin-top: 35px;
	padding: 0 25px;
}
.block_intro .post_profile .ttl {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 24px;
}
.block_intro .post_profile .ttl span {
	display: inline-block;
	border-bottom: 4px solid #273e6d;
	padding: 0 20px;
}
.block_intro .post_profile .thumb {
	float: left;
	margin-right: 27px;
	margin-left: 20px;
}
.block_area .block_cont .ttl {
	margin-bottom: 24px;
}
.block_area .block_cont .ttl a {
	text-decoration: underline;
}
.block_area .block_cont .thumb {
	float: right;
	margin-left: 25px;
}
.block_area .block_cont .thumb img {
	display: block;
	-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,.2);
	box-shadow: 2px 2px 6px rgba(0,0,0,.2);
}
.block_cost {
	margin-bottom: 38px;
}
.block_cost .block_tb .desc {
	font-size: 12px;
	margin-top: 10px;
	padding-left: 123px;
}

/* 02.Page2 */

.block_traffic .thumb {
	float: right;
	margin-left: 24px;
	margin-bottom: 10px;
}
.block_traffic .txt {
	padding-top: 8px;
}
.post_certification_intro {
	position: relative;
}
.post_certification_intro .thumb {
	position: absolute;
	top: 108px;
	right: 20px;
}
.post_certification_case {
	margin-top: 45px;
}
.post_certification_case .ttl {
    text-align: center;
    margin-bottom: 16px;
    font-size: 1.1em;
    font-weight: bold;
}
.post_certification_case .ttl span {
    display: inline-block;
    border-bottom: 4px solid #273e6d;;
}
.post_certification_case .thumb {
	margin-top: 20px;
}
.block_resolution {
	margin-bottom: 60px;
}
.block_resolution .block_tb .desc {
	font-size: 12px;
    margin-top: 15px;
    text-align: center;
}

/* 03.Page3 */

.block_community .box_post {
	border: 1px solid #dcdcdc;
	padding: 23px 40px;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	-ms-border-radius: 18px;
	-o-border-radius: 18px;
	border-radius: 18px;
}
.block_community .box_post .box_head {
	margin: 0 15px;
}
.block_community .box_post .box_head .th,
.block_community .box_post .box_head .td {
	vertical-align: middle;
}
.block_community .box_post .box_head .td {
	padding-left: 50px;
	line-height: 1.7;
	text-align: center;
}
.block_community .box_post .box_head .td .fbig {
	font-size: 24px;
}
.block_community .box_post .box_head .td .bb {
	border-bottom: 1px solid #434343;
}
.block_community .box_post .box_cont {
	margin-top: 15px;
}

/* 04.Page4 */

.block_lawyer .block_cont {
	padding: 30px 55px;
	margin-bottom: 30px;
}
.block_lawyer .block_cont .txt {
	border: 1px solid #dcdcdc;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	-ms-border-radius: 18px;
	-o-border-radius: 18px;
	border-radius: 18px;
	padding: 35px;
	margin-top: 18px;
}
.block_lawyer .block_cont .txt .inside {
	display: inline-block;
	position: relative;
	left: 50%;
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.block_lawyer .block_cont .thumb {
	margin-top: 35px;
}
.block_map .map_info .desc .th {
	vertical-align: middle;
}
.block_map .map_info .desc .td {
	text-align: right;
	vertical-align: middle;
	padding-left: 33px;
}
.block_map .map_info .txt {
	margin-top: 24px;
}
.block_map .map_info .txt .th,
.block_map .map_info .txt .td {
	vertical-align: top;
	padding-left: 50px;
}
#map_canvas {
	margin-top: 12px;
	width: 600px;
	height: 300px;
}

/* 05.Page5 */

.page_contact article {
	padding-top: 50px;
}
.ul_contact_form {
	width: 100%;
	border-top: 6px solid #848482;
	table-layout: fixed;
}
.ul_contact_form .td,
.ul_contact_form .th {
	border: 1px solid #c9c9c9;
	vertical-align: middle;
	height: 100%;
}
.ul_contact_form .th .inner {
	position: relative;
	height: 100%;
}
.ul_contact_form .th {
	width: 214px;
	background-color: #eeeeee;
	padding: 12px 8px 12px 30px;
}
.ul_contact_form .td {
	padding: 12px 8px;
}
.ul_contact_form .th .note {
	font-size: 10px;
	margin-top: 14px;
}
.ul_contact_form .td .note {
	font-size: 14px;
	padding-left: 34px;
	padding-top: 7px;
	line-height: 1;
	margin-bottom: 9px;
}
.ul_contact_form .text_input,
.ul_contact_form .text_area {
	display: block;
	color: #c3c4c3;
	border: 1px solid #bfbfbf;
}
.ul_contact_form .text_input {
	width: 313px;
	height: 31px;
	line-height: 31px;
	font-size: 18px;
	padding: 0 10px;
	color: #000;
}
.ul_contact_form .text_input.large {
	width: 100%;
}
.ul_contact_form .text_area {
	width: 100%;
	height: 154px;
	resize: none;
	padding: 10px;
	color: #000;
}
.ul_contact_form .select_box {
	display: block;
	width: 190px;
	height: 23px;
	font-size: 14px;
	border: 1px solid #bfbfbf;
	background: #fff url(../img/page5/select_ico01.png) 96% 50% no-repeat;
	padding-left: 14px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
}
.ul_contact_form .vbottom {
	vertical-align: bottom;
}
#contact_form .required,
#contact_form .default {
	background-repeat: no-repeat;
	background-position: 98.5% 5px;
}
#contact_form .required {
	background-image: url(../img/page5/tag_required.png);
}
#contact_form .default {
	background-image: url(../img/page5/tag_default.png);
}
#contact_form .box_policy {
	background: #eeeeee;
	border: 1px solid #e5e5e5;
	padding: 20px 36px;
	margin-top: 35px;
}
#contact_form .box_policy .box_ttl {
	padding-left: 28px;
}
#contact_form .box_policy .box_cont {
	background: #fff;
	margin-top: 8px;
	height: 130px;
	overflow-y: auto;
	font-size: 14px;
}
#contact_form .box_policy .box_cont .inside {
	padding: 8px 20px;
}
#contact_form .box_agree {
	padding-top: 15px;
	padding-left: 40px;
	position: relative;
	margin-top: 12px;
	margin-left: -12px;
}
#contact_form .box_agree label .lb {
	margin-left: 8px;
}
#contact_form .box_agree.required {
	background-position: 0 0;
}
#contact_form .box_agree .check input {
	vertical-align: middle;
	margin-top: -0.2em;
}
#contact_form .box_btn {
	margin-top: 30px;
	text-align: center;
}
#contact_form .btn_send {
	border: none;
	background: transparent;
	cursor: pointer;
}

/* 06.Contact | Sucess */

.page_success {
	padding-top: 56px;
}
.page_success:before {
	display: block;
    content: ' ';
    width: 100%;
    height: 11px;
    background: #2f487d;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-box-shadow: 3px 4px 9.2px 0.8px rgba(101, 101, 101, 0.25);
	-moz-box-shadow: 3px 4px 9.2px 0.8px rgba(101, 101, 101, 0.25);
	box-shadow: 3px 4px 9.2px 0.8px rgba(101, 101, 101, 0.25);
}
.page_success footer {
	margin-top: 60px;
}
.contact_info_plus {
	width: 600px;
	border: 1px solid #898989;
	margin: 0 auto;
	-webkit-box-shadow: 3px 4px 6.79px 0.21px rgba(4, 0, 0, 0.2);
	-moz-box-shadow: 3px 4px 6.79px 0.21px rgba(4, 0, 0, 0.2);
	box-shadow: 3px 4px 6.79px 0.21px rgba(4, 0, 0, 0.2);
}
.contact_success_post {
	width: 880px;
	margin: 90px auto 0;
}
.contact_success_post .ttl {
	font-size: 38px;
	text-align: center;
}
.contact_success_post .desc {
	font-size: 25px;
	margin-top: 30px;
}
.contact_success_post .desc .fbig {
	font-size: 38px;
	line-height: 1;
}
.contact_success_post .desc .fnorm {
	text-decoration: underline;
	text-indent: 24px;
}
.contact_success_post .txt {
	font-size: 18px;
	margin-top: 34px;
}
.contact_success_post .note {
	font-size: 24px;
	margin-top: 45px;
}
.contact_success_post .logo {
	margin-top: 64px;
	text-align: center;
}