@charset "UTF-8";
/* reset
==========================================================================================*/
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, 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-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul, li {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

* html .clearfix {
  height: 1px;
  /*＼*/
  /*/
	height: auto;
	overflow: hidden;
	/**/
}

.both {
  clear: both;
}

/* chromeの画像ボケ回避 */
img {
  -webkit-backface-visibility: hidden;
}

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

	// 基本

==========================================================================================*/
/*-------- break point --------
〜479px  ：SP縦
480px〜  ：SPランドスケープ @media screen and (min-width: 480px){}
960px〜  ：PC @media screen and (min-width: 960px){}
1280px〜：ワイドスクリーン @media screen and (min-width: 1280px){}


    font-family: 'Oswald', sans-serif;
    font-family: 'Open Sans Condensed', sans-serif;

----------------------------*/
html,
body {
  height: 100%;
}

body {
  font-family: Arial, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  word-wrap: break-word;
}

.fontS {
  font-size: 88%;
}

/* clearfix */
.clearfix {
  zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

a {
  color: #777;
  text-decoration: none;
}

.dp_ilb {
  display: inline-block;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
}

/*-------- PC基本設定 --------　*/
@media screen and (min-width: 960px) {
  body {
    font-size: 14px;
  }
  a {
    transition: all .3s;
  }
  a img {
    transition: all .3s;
  }
  a img:hover {
    opacity: 0.85;
  }
}

/* mixin
=====================================================*/
/*==========================================================================================

	■ header

==========================================================================================*/
header {
  position: relative;
}

header nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  border-top: #004e97 3px solid;
  border-bottom: #749abd 1px solid;
  font-family: 'PT Serif', serif;
}

header .logo {
  display: block;
  width: 150px;
  padding: 20px 0 15px;
  margin: 0 auto;
}

header .logo img + img {
  margin-top: 7px;
}

header ul {
  padding-bottom: 15px;
}

header li {
  display: inline-block;
  padding: 0 0.7em;
  font-size: 13px;
  line-height: 1.2;
  color: #707070;
  font-weight: bold;
}

header a {
  color: #222;
  padding: 0 1px 3px;
  letter-spacing: 0.3px;
  font-weight: bold;
}

#top .nav01 a,
#company .nav02 a,
#service .nav03 a,
#lawyer .nav04 a,
#contact .nav06 a {
  border-bottom: #004e97 1px solid;
  color: #004e97;
  font-weight: 700;
}

@media screen and (max-width: 320px) {
  header li {
    font-size: 10px;
  }
}

@media screen and (min-width: 960px) {
  header nav {
    height: 170px;
  }
  header .logo {
    /*
		position: absolute;
		top: 12px;
		left: 20px;
		*/
    padding: 24px 0 0;
    width: 300px;
  }
  header .logo img + img {
    margin-top: 10px;
  }
  header ul {
    padding: 25px 0 0 3em;
  }
  header li {
    padding: 0 1.5em;
    font-size: 15px;
  }
  header li:first-child {
    display: inline-block;
  }
  header a {
    padding: 0 2px 5px;
  }
  header a:hover {
    opacity: 0.7;
  }
}

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

	■ footer

==========================================================================================*/
footer {
  padding: 15px 0;
  background: #172839;
  text-align: center;
  font-size: 12px;
}

footer .foot_nav {
  padding-top: 10px;
  font-size: 10px;
}

footer .foot_nav a {
  color: #e9666e;
}

footer .foot_nav a {
  text-decoration: underline;
}

footer small {
  color: #fff;
}

@media screen and (min-width: 960px) {
  footer {
    height: 50px;
    padding: 30px 0 0;
  }
  footer .foot_nav {
    padding: 15px 0 0;
    margin-bottom: 0;
  }
  footer .foot_nav a:hover {
    opacity: 0.7;
  }
}

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

	■ Contents

==========================================================================================*/
/* top以外共通 */
.content {
  padding-top: 130px;
  font-size: 13px;
}

.content .sec_title {
  padding-bottom: 35px;
  text-align: center;
}

.content .sec_title h1 {
  padding-bottom: 5px;
  font-size: 24px;
  line-height: 1.2;
  font-family: 'PT Serif', serif;
  font-weight: bold;
}

.content .sec_title p {
  display: inline-block;
  padding: 2px 8px;
  background: #222;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
}

.dp_ilb {
  display: inline-block;
}

.dp_pc {
  display: none;
}

.btn {
  text-align: center;
  padding-bottom: 30px;
  max-width: 400px;
  margin: 0 auto;
}

.btn a {
  display: inline-block;
  padding: 10px 20px 10px 15px;
  border: #000 1px solid;
  border-radius: 50px;
  color: #000;
  font-weight: bold;
  display: block;
  position: relative;
}

.btn a:after {
  display: block;
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
}

.btn a:after {
  right: 13px;
  margin-top: -4px;
}

@media screen and (min-width: 960px) {
  .dp_pc {
    display: inline-block;
  }
  .dp_sp {
    display: none;
  }
  .btn a {
    font-size: 15px;
    padding: 12px 20px 12px 15px;
    display: block;
    position: relative;
  }
  .btn a:after {
    display: block;
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    margin-top: -3.5px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
  }
  .btn a:after {
    right: 15px;
    margin-top: -4px;
  }
  .btn a:hover {
    opacity: 0.7;
  }
  .content {
    padding-top: 210px;
    font-size: 14px;
    min-height: -moz-calc(100% - 287px);
    min-height: -o-calc(100% - 287px);
    min-height: -webkit-calc(100% - 287px);
    min-height: calc(100% - 287px);
  }
  .content .sec_title {
    padding-bottom: 45px;
    text-align: center;
  }
  .content .sec_title h1 {
    padding-bottom: 10px;
    font-size: 40px;
  }
  .content .sec_title p {
    padding: 2px 8px;
    font-size: 12px;
  }
}

/*------------------------------------------------------------------

// top

------------------------------------------------------------------*/
#top_main {
  background: #fff;
  overflow: hidden;
  /*
	-webkit-background-size: cover;
	background-size: cover;*/
  /*.txt_catch2{
		padding:30px 20px 0px;
		text-align: center;
		font-size: 18px;
		font-family: 'PT Serif', serif;
		font-weight: bold;
	}*/
}

#top_main .inner {
  height: 260px;
  margin-top: 80px;
  background: url(../images/main.jpg) 50% 50% no-repeat;
  -webkit-background-size: auto 100%;
  background-size: auto 100%;
}

#top_main .txt_catch {
  padding: 0 20px;
  text-align: center;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  font-family: 'PT Serif', serif;
  font-weight: bold;
  color: #fff;
}

#top_main .main_txt {
  padding: 30px 30px 10px;
  text-align: center;
  line-height: 1.6;
}

#top_main .main_txt .top_ttl {
  padding-bottom: 1em;
}

#top_main .main_txt .top_ttl h2 {
  font-size: 180%;
  font-family: 'PT Serif', serif;
  color: #004e97;
}

#top_main .main_txt .top_ttl h3 {
  display: inline-block;
  padding: 1px 8px;
  font-family: 'PT Serif', serif;
  font-size: 10px;
  font-weight: bold;
  background: #000;
  color: #fff;
}

#top_main .main_txt p {
  text-align: left;
  font-weight: bold;
}

#top_main.main2 .inner {
  background: url(../images/main2.jpg) 50% 0 no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

#top_main.main2 .inner .txt_catch {
  display: block;
}

#top .content {
  padding-top: 10px;
}

#top .content .textBlc {
  padding-bottom: 30px;
}

#top .textBlc p {
  padding-top: 10px;
}

@media screen and (min-width: 700px) {
  #top_main .inner {
    height: 340px;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

@media screen and (min-width: 960px) {
  #top_main .inner {
    height: 420px;
    margin-top: 140px;
    -webkit-background-size: cover;
    background-size: cover;
  }
  #top_main .txt_catch {
    font-size: 30px;
  }
  #top_main .txt_catch2 {
    padding: 50px 20px 0px;
    font-size: 28px;
  }
  #top_main .main_txt {
    padding: 50px 50px 0px;
    max-width: 900px;
    margin: 0 auto;
  }
  #top_main .main_txt .top_ttl {
    padding-bottom: 1.5em;
  }
  #top_main .main_txt .top_ttl h2 {
    font-size: 240%;
  }
  #top_main .main_txt .top_ttl h3 {
    font-size: 12px;
  }
  #top_main .main_txt p {
    line-height: 1.8;
    text-align: center;
    font-size: 16px;
  }
  #top .content {
    padding-top: 20px;
    min-height: inherit;
  }
  #top .content .textBlc {
    padding-bottom: 70px;
  }
  #top .textBlc {
    padding-top: 30px;
  }
  #top .textBlc p {
    padding-top: 20px;
    line-height: 1.6;
    text-align: center;
  }
}

/*------------------------------------------------------------------

// compnay

------------------------------------------------------------------*/
#company .list_inner {
  padding: 10px 4% 40px;
}

#company .list_inner dl {
  border-bottom: #ccc 1px solid;
}

#company .list_inner dl:first-child {
  border-top: #ccc 1px solid;
}

#company .list_inner dt {
  font-weight: bold;
  line-height: 1.2;
  padding: 1.4em 5px 0.5em;
}

#company .list_inner dd {
  padding: 0 5px 1.5em;
  color: #373737;
}

#company .list_inner dd li {
  text-indent: -1em;
  padding-left: 1em;
  padding-bottom: 3px;
}

#company .list_inner dd a {
  text-decoration: underline;
}

#company #access {
  text-align: center;
}

#company #access h2 {
  padding: 0px 0 15px;
  font-size: 20px;
  line-height: 1.2;
  font-family: 'PT Serif', serif;
  font-weight: 700;
}

#company #access p {
  padding: 20px 0 40px;
  font-size: 12px;
}

#company #access #map {
  height: 340px;
  min-height: 150px;
  min-width: 150px;
  width: 100%;
}

#company .content .textBlc {
  padding-bottom: 0;
}

@media screen and (min-width: 960px) {
  #company .list_inner {
    padding: 30px 4% 90px;
  }
  #company .list_inner dl {
    box-sizing: border-box;
    max-width: 820px;
    margin: 0 auto;
  }
  #company .list_inner dt, #company .list_inner dd {
    display: inline-block;
    vertical-align: middle;
    padding: 2.4em 0px;
    line-height: 1.5;
  }
  #company .list_inner dt {
    text-align: center;
    width: 260px;
    line-height: 1.4;
  }
  #company .list_inner a:hover {
    opacity: 0.7;
  }
  #company #access h2 {
    padding: 0px 0 20px;
    font-size: 26px;
  }
  #company #access p {
    padding: 30px 0 60px;
    font-size: 14px;
  }
  #company #access #map {
    height: 450px;
  }
}

/*------------------------------------------------------------------

// service

------------------------------------------------------------------*/
#service {
  /*
	.content_img{
		background: #F7F7F7;
		padding-top: 110px;
		
		.logo{
			width: 45%;
			max-width: 300px;
			margin: 0 auto;
			padding: 15% 0;
		}
		.service_img{
			width: 85%;
			max-width: 500px;
			margin: 0 auto;
			padding: 0 0 20%;
		}
	}
	
	.content{ padding-top: 45px; }*/
}

#service .sec_body {
  max-width: 780px;
  margin: 0 auto 30px;
}

#service .sec_body .inner {
  padding: 0 30px;
}

#service .sec_body .logo {
  display: block;
  max-width: 460px;
  margin: 0 auto 20px;
  box-sizing: border-box;
  padding: 40px 10%;
  border: #ddd 1px solid;
}

#service .sec_body .logo img {
  margin: 0 auto;
}

#service .sec_body p {
  padding: 0 0px 20px;
  text-align: left;
}

#service .sec_body ul {
  text-align: left;
}

#service .sec_body li {
  padding: 6px 2px;
  border-bottom: #ccc 1px solid;
  font-weight: bold;
}

#service .sec_body li:first-child {
  border-top: #ccc 1px solid;
}

@media screen and (min-width: 960px) {
  #service {
    /*
	.content_img{
		padding-top: 90px;
		
		.clearfix{
			max-width: 1000px;
			margin: 0 auto;
		}
		
		.logo{
			float: right;
			width: 293px;
			margin: 0 auto;
			padding: 140px 60px 0 0;
		}
		.service_img{
			float: left;
			width: 55%;
			max-width: 630px;
			margin: 0 auto;
			padding: 80px 0 80px
		}
	}
	*/
  }
  #service .sec_body {
    max-width: 780px !important;
  }
  #service .sec_body .inner {
    padding: 0 30px 50px;
  }
  #service .sec_body .logo {
    margin-top: 10px;
    margin-bottom: 50px;
    padding: 60px 30px;
  }
  #service .sec_body p {
    padding: 0 0px 3em;
    line-height: 1.6;
  }
  #service .sec_body p span {
    display: inline-block;
  }
  #service .sec_body .btn {
    display: inline-block;
  }
  #service .sec_body .btn a {
    padding-left: 30px;
    padding-right: 40px;
  }
  #service .sec_body li {
    display: block;
    float: left;
    box-sizing: border-box;
    width: 48%;
    padding: 10px 6px;
  }
  #service .sec_body li:nth-child(2) {
    border-top: #ccc 1px solid;
  }
  #service .sec_body li:nth-child(even) {
    float: right;
  }
}

/*------------------------------------------------------------------

// Lawyer

------------------------------------------------------------------*/
#lawyer li {
  padding-bottom: 0.5em;
}

@media screen and (min-width: 960px) {
  #lawyer .sec_body {
    max-width: 780px !important;
    margin: 0 auto 30px;
  }
}

/*------------------------------------------------------------------

// contact

------------------------------------------------------------------*/
#contact .content {
  padding-top: 80px;
  margin-bottom: -10px;
}

@media screen and (min-width: 960px) {
  #contact .content {
    padding-top: 40px;
  }
}

/*------------------------------------------------------------------

// 汎用レイアウト

------------------------------------------------------------------*/
.content .textBlc {
  padding: 0 0 40px;
}

.content .textBlc.bg_gray {
  background: #f4f4f4;
}

.content .textBlc .inner {
  text-align: left !important;
  padding: 0 30px;
}

.content .textBlc .pic_s {
  width: 80%;
  max-width: 500px;
  margin: 0 auto 20px;
}

.content .textBlc .textBox .pic {
  width: 80%;
  max-width: 500px;
  margin: 0 auto 20px;
}

.content .textBlc .textBox.pic_center .pic {
  width: 100%;
  max-width: 600px;
}

.content .textBlc .textBox p {
  padding-bottom: 2em;
}

.content .textBlc h2 {
  margin: 0.5em 0 1em;
  font-size: 120%;
  padding: 2px 0 2px 0.6em;
  display: inline-block;
  border-left: #004e97 4px solid;
  line-height: 1;
  color: #004e97;
}

.content .textBlc h3 {
  padding-bottom: 0.5em;
}

@media screen and (min-width: 960px) {
  .content .textBlc .sec_body {
    max-width: 960px !important;
    margin: 0 auto;
  }
  .content .textBlc .pic_s {
    margin: 0 auto 40px;
  }
  .content .textBlc .textBox .pic {
    margin: 0 auto 40px;
  }
  .content .textBlc .textBox.pic_right .pic {
    float: right;
    width: 360px;
    margin: 0 0 20px 20px;
  }
  .content .textBlc .textBox.pic_left .pic {
    float: left;
    width: 360px;
    margin: 0 20px 20px 0;
  }
  .content .textBlc .textBox.pic_center .pic {
    max-width: 540px;
    margin: 0 auto 30px;
  }
  .content .textBlc .textBox p {
    padding-bottom: 3em;
  }
  .content .textBlc .textBox p.text_center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .content .textBlc .textBox + .textBox {
    margin-top: 30px;
  }
}
