@charset "UTF-8";
/*@import "compass";*/
/* -------------------------------------------------------------------------

		function.sass
		
		scssファイル内で使う関数を定義
		
------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------

		reset.sass
		
		要素のデフォルトスタイル、フォントサイズのリセット
		
------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------

		style reset
		
------------------------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

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

small {
  font-size: smaller; }

sup {
  font-size: 0.7em;
  vertical-align: top; }

sub {
  font-size: 0.7em;
  vertical-align: baseline; }

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

		font styles
		
------------------------------------------------------------------------- */
/* YUI 3.9.1 (build 5852) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
  font: 81.25%/1.231 arial,sans-serif;
  *font-size: small;
  /* for IE */
  *font: x-small;
  /* for IE in quirks mode */ }

/**
 * Nudge down to get to 13px equivalent for these form elements
 */
select,
input,
button,
textarea {
  font: 99% arial,sans-serif; }

/**
 * To help tables remember to inherit
 */
table {
  font-size: inherit;
  font: 100%; }

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%; }

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssfonts {
  display: none; }

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

		vars.sass
		
		scssファイル内で使う変数を定義
		
------------------------------------------------------------------------- */
/* width
------------------------------------------------- */
/* color
------------------------------------------------- */
/* text color
------------------------------------------------- */
/* fonts
------------------------------------------------- */
/* -------------------------------------------------------------------------

    util.sass

    案件に依存せず汎用的に使うClassを定義

------------------------------------------------------------------------- */
/* layout
------------------------------------------------- */
.image_text_view_l,
.image_text_view_r {
  overflow: hidden; }
  @media only screen and (max-width: 736px) {
    .image_text_view_l,
    .image_text_view_r {
      overflow: visible; } }

.image_text_view_l .img {
  float: left;
  margin-right: 30px; }
  @media only screen and (max-width: 736px) {
    .image_text_view_l .img {
      width: 67%;
      float: none;
      margin: 0 auto 20px; } }

.image_text_view_r .img {
  float: right;
  margin-left: 30px; }
  @media only screen and (max-width: 736px) {
    .image_text_view_r .img {
      width: 67%;
      float: none;
      margin: 0 auto 20px; } }

.image_text_view_l .img > div,
.image_text_view_r .img > div {
  margin-bottom: 15px; }

.image_text_view_l .img img,
.image_text_view_r .img img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto; }

.image_text_view_l .text,
.image_text_view_r .text {
  overflow: hidden;
  line-height: 1.8; }
  .image_text_view_l .text p,
  .image_text_view_r .text p {
    margin-bottom: 1em;
    line-height: 1.8; }
    .image_text_view_l .text p:last-child,
    .image_text_view_r .text p:last-child {
      margin-bottom: 0; }
  @media only screen and (max-width: 736px) {
    .image_text_view_l .text,
    .image_text_view_r .text {
      overflow: visible; } }

@media only screen and (max-width: 736px) {
  .image_text_view_l .text {
    margin-left: 0 !important; } }

@media only screen and (max-width: 736px) {
  .image_text_view_r .text {
    margin-right: 0 !important; } }

/* br
------------------------------------------------- */
.sp_none {
  display: block; }

.pc_none {
  display: none; }

@media screen and (max-width: 742px) {
  .sp_none {
    display: none; }
  .pc_none {
    display: none; } }

@media screen and (max-width: 736px) {
  .sp_none {
    display: none; }
  .pc_none {
    display: block; } }

/* float clear
------------------------------------------------- */
/*for modern browser*/
.clear_fix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden; }

/*for IE 5.5-7*/
.clear_fix　 {
  zoom: 　1; }

.clear_both　 {
  clear: both;
  height: 1px;
  font-size: 1px;
  text-align: center;
  line-height: 0; }

.clear　 {
  clear: both; }

/* float
------------------------------------------------- */
.float_r {
  float: right;
  display: inline; }

.float_l {
  float: left;
  display: inline; }

/* margin + padding （0から5刻みでクラスを定義 ex: mb0, mb5, mb10...）
------------------------------------------------- */
.mb0 {
  margin-bottom: 0px !important; }

.mt0 {
  margin-top: 0px !important; }

.mr0 {
  margin-right: 0px !important; }

.ml0 {
  margin-left: 0px !important; }

.mb5 {
  margin-bottom: 5px !important; }

.mt5 {
  margin-top: 5px !important; }

.mr5 {
  margin-right: 5px !important; }

.ml5 {
  margin-left: 5px !important; }

.mb10 {
  margin-bottom: 10px !important; }

.mt10 {
  margin-top: 10px !important; }

.mr10 {
  margin-right: 10px !important; }

.ml10 {
  margin-left: 10px !important; }

.mb15 {
  margin-bottom: 15px !important; }

.mt15 {
  margin-top: 15px !important; }

.mr15 {
  margin-right: 15px !important; }

.ml15 {
  margin-left: 15px !important; }

.mb20 {
  margin-bottom: 20px !important; }

.mt20 {
  margin-top: 20px !important; }

.mr20 {
  margin-right: 20px !important; }

.ml20 {
  margin-left: 20px !important; }

.mb25 {
  margin-bottom: 25px !important; }

.mt25 {
  margin-top: 25px !important; }

.mr25 {
  margin-right: 25px !important; }

.ml25 {
  margin-left: 25px !important; }

.mb30 {
  margin-bottom: 30px !important; }

.mt30 {
  margin-top: 30px !important; }

.mr30 {
  margin-right: 30px !important; }

.ml30 {
  margin-left: 30px !important; }

.mb35 {
  margin-bottom: 35px !important; }

.mt35 {
  margin-top: 35px !important; }

.mr35 {
  margin-right: 35px !important; }

.ml35 {
  margin-left: 35px !important; }

.mb40 {
  margin-bottom: 40px !important; }

.mt40 {
  margin-top: 40px !important; }

.mr40 {
  margin-right: 40px !important; }

.ml40 {
  margin-left: 40px !important; }

.mb45 {
  margin-bottom: 45px !important; }

.mt45 {
  margin-top: 45px !important; }

.mr45 {
  margin-right: 45px !important; }

.ml45 {
  margin-left: 45px !important; }

.mb50 {
  margin-bottom: 50px !important; }

.mt50 {
  margin-top: 50px !important; }

.mr50 {
  margin-right: 50px !important; }

.ml50 {
  margin-left: 50px !important; }

.mb55 {
  margin-bottom: 55px !important; }

.mt55 {
  margin-top: 55px !important; }

.mr55 {
  margin-right: 55px !important; }

.ml55 {
  margin-left: 55px !important; }

.mb60 {
  margin-bottom: 60px !important; }

.mt60 {
  margin-top: 60px !important; }

.mr60 {
  margin-right: 60px !important; }

.ml60 {
  margin-left: 60px !important; }

.mb65 {
  margin-bottom: 65px !important; }

.mt65 {
  margin-top: 65px !important; }

.mr65 {
  margin-right: 65px !important; }

.ml65 {
  margin-left: 65px !important; }

.mb70 {
  margin-bottom: 70px !important; }

.mt70 {
  margin-top: 70px !important; }

.mr70 {
  margin-right: 70px !important; }

.ml70 {
  margin-left: 70px !important; }

.mb75 {
  margin-bottom: 75px !important; }

.mt75 {
  margin-top: 75px !important; }

.mr75 {
  margin-right: 75px !important; }

.ml75 {
  margin-left: 75px !important; }

.mb80 {
  margin-bottom: 80px !important; }

.mt80 {
  margin-top: 80px !important; }

.mr80 {
  margin-right: 80px !important; }

.ml80 {
  margin-left: 80px !important; }

.pb0 {
  padding-bottom: 0px !important; }

.pt0 {
  padding-top: 0px !important; }

.pr0 {
  padding-right: 0px !important; }

.pl0 {
  padding-left: 0px !important; }

.pb5 {
  padding-bottom: 5px !important; }

.pt5 {
  padding-top: 5px !important; }

.pr5 {
  padding-right: 5px !important; }

.pl5 {
  padding-left: 5px !important; }

.pb10 {
  padding-bottom: 10px !important; }

.pt10 {
  padding-top: 10px !important; }

.pr10 {
  padding-right: 10px !important; }

.pl10 {
  padding-left: 10px !important; }

.pb15 {
  padding-bottom: 15px !important; }

.pt15 {
  padding-top: 15px !important; }

.pr15 {
  padding-right: 15px !important; }

.pl15 {
  padding-left: 15px !important; }

.pb20 {
  padding-bottom: 20px !important; }

.pt20 {
  padding-top: 20px !important; }

.pr20 {
  padding-right: 20px !important; }

.pl20 {
  padding-left: 20px !important; }

.pb25 {
  padding-bottom: 25px !important; }

.pt25 {
  padding-top: 25px !important; }

.pr25 {
  padding-right: 25px !important; }

.pl25 {
  padding-left: 25px !important; }

.pb30 {
  padding-bottom: 30px !important; }

.pt30 {
  padding-top: 30px !important; }

.pr30 {
  padding-right: 30px !important; }

.pl30 {
  padding-left: 30px !important; }

.pb35 {
  padding-bottom: 35px !important; }

.pt35 {
  padding-top: 35px !important; }

.pr35 {
  padding-right: 35px !important; }

.pl35 {
  padding-left: 35px !important; }

.pb40 {
  padding-bottom: 40px !important; }

.pt40 {
  padding-top: 40px !important; }

.pr40 {
  padding-right: 40px !important; }

.pl40 {
  padding-left: 40px !important; }

.pb45 {
  padding-bottom: 45px !important; }

.pt45 {
  padding-top: 45px !important; }

.pr45 {
  padding-right: 45px !important; }

.pl45 {
  padding-left: 45px !important; }

.pb50 {
  padding-bottom: 50px !important; }

.pt50 {
  padding-top: 50px !important; }

.pr50 {
  padding-right: 50px !important; }

.pl50 {
  padding-left: 50px !important; }

.pb55 {
  padding-bottom: 55px !important; }

.pt55 {
  padding-top: 55px !important; }

.pr55 {
  padding-right: 55px !important; }

.pl55 {
  padding-left: 55px !important; }

.pb60 {
  padding-bottom: 60px !important; }

.pt60 {
  padding-top: 60px !important; }

.pr60 {
  padding-right: 60px !important; }

.pl60 {
  padding-left: 60px !important; }

.pb65 {
  padding-bottom: 65px !important; }

.pt65 {
  padding-top: 65px !important; }

.pr65 {
  padding-right: 65px !important; }

.pl65 {
  padding-left: 65px !important; }

.pb70 {
  padding-bottom: 70px !important; }

.pt70 {
  padding-top: 70px !important; }

.pr70 {
  padding-right: 70px !important; }

.pl70 {
  padding-left: 70px !important; }

.pb75 {
  padding-bottom: 75px !important; }

.pt75 {
  padding-top: 75px !important; }

.pr75 {
  padding-right: 75px !important; }

.pl75 {
  padding-left: 75px !important; }

.pb80 {
  padding-bottom: 80px !important; }

.pt80 {
  padding-top: 80px !important; }

.pr80 {
  padding-right: 80px !important; }

.pl80 {
  padding-left: 80px !important; }

/* align
------------------------------------------------- */
.align_l　 {
  text-align: left !important; }

.align_r　 {
  text-align: right !important; }

.align_c　 {
  text-align: center !important; }

/* font
------------------------------------------------- */
.smaller {
  font-size: 85% !important; }

.larger {
  font-size: larger !important; }

.bold {
  font-weight: bold !important; }

/* display
------------------------------------------------- */
.block {
  display: block !important; }

.inline {
  display: inline !important; }

/* justify layout
Usage:
<ul class="just_layout">
  <li class ="just_item"></li>
</ul>
------------------------------------------------- */
.just_layout {
  text-align: justify;
  text-justify: distribute-all-lines;
  zoom: 1;
  display: block;
  line-height: 0; }
  .just_layout:after {
    line-height: 0;
    visibility: hidden;
    content: "";
    display: inline-block;
    width: 100%; }
  .just_layout .just_item {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    line-height: normal; }

* html .just_layout .just_item {
  display: 　inline;
  zoom: 　1; }

*:first-child + html .just_layout .just_item {
  display: 　inline;
  zoom: 　1; }

/* list
------------------------------------------------- */
.list_disc {
  margin-left: 　1 0.2em;
  list-style: 　disc; }

.list_square {
  margin-left: 　1 0.2em;
  list-style: 　square; }

.list_decimal {
  margin-left: 　1 0.7em;
  list-style: 　decimal; }

.list_decimal_zero {
  margin-left: 　2 0.3em;
  list-style: 　decimal-leading-zero; }

/* list style (IE8以上)
------------------------------------------------- */
/* ---- ※ ---- */
.list_asterisk > li {
  text-indent: -1.3em;
  margin-left: 1.3em; }
  .list_asterisk > li:before {
    content: "※ "; }
  .list_asterisk > li > * {
    text-indent: 0; }

/* ---- ・ ---- */
.list_dot > li {
  text-indent: -1em;
  margin-left: 1em; }
  .list_dot > li:before {
    content: "・"; }
  .list_dot > li > * {
    text-indent: 0; }

/* ---- ● ---- */
.list_circle > li {
  text-indent: -1em;
  padding-left: 1em; }
  .list_circle > li::before {
    content: "";
    background-color: #DC491E;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle; }
  .list_circle > li > * {
    text-indent: 0; }

/* ---- 1. ---- */
.list_decimal_01 > li {
  counter-increment: decimal_01;
  margin-left: 1.2em;
  text-indent: -1.2em; }
  .list_decimal_01 > li:before {
    content: counter(decimal_01) ". "; }
  .list_decimal_01 > li > * {
    text-indent: 0; }

/* ---- (1) ---- */
.list_decimal_02 > li {
  counter-increment: decimal_02;
  margin-left: 1.5em;
  text-indent: -1.5em; }
  .list_decimal_02 > li:before {
    content: "(" counter(decimal_02) ") "; }
  .list_decimal_02 > li > * {
    text-indent: 0; }

/* ---- [1] ---- */
.list_decimal_03 > li {
  counter-increment: decimal_03;
  margin-left: 1.5em;
  text-indent: -1.5em; }
  .list_decimal_03 > li:before {
    content: "[" counter(decimal_03) "] "; }
  .list_decimal_03 > li > * {
    text-indent: 0; }

/* ---- 丸数字 ---- */
.list_decimal_04 > li {
  counter-increment: decimal_04;
  margin-left: 1.5em;
  text-indent: -1.5em; }
  .list_decimal_04 > li:before {
    content: counter(decimal_04);
    border: 1px solid #000;
    padding: 0 3px;
    font-size: 10px;
    margin-right: 5px;
    text-align: center;
    line-height: 1;
    /*@include border-radius(50%);*/ }
  .list_decimal_04 > li > * {
    text-indent: 0; }

/* ---- upper alpha ---- */
.list_upper_alpha_01 > li {
  counter-increment: upper_alpha_01;
  margin-left: 1.5em;
  text-indent: -1.5em; }
  .list_upper_alpha_01 > li:before {
    content: counter(upper_alpha_01, upper-alpha) ") "; }
  .list_upper_alpha_01 > li > * {
    text-indent: 0; }

/* 注釈 (IE8以上)
------------------------------------------------- */
/* ---- ※（注釈） ---- */
.notes {
  margin-left: 1.3em;
  text-indent: -1.3em; }
  .notes:before {
    content: "※ "; }
  .notes > * {
    text-indent: 0; }

/* ---- ※n （番号付き注釈）---- */
.notes_num {
  counter-increment: decimal_notes;
  margin-left: 1.9em;
  text-indent: -1.9em; }
  .notes_num:before {
    content: "※" counter(decimal_notes) " "; }
  .notes_num > * {
    text-indent: 0; }

/* 章番号用mixin (IE8以上)
usage:
■キャプションに章番号をつける場合
$counterName: oreoreCounter;
.parent-section {
  @include resetCounter($counterName);
  h2 {
    @include addCounter($counterName, '第', '章');
  }
}
■入れ子になってるリストに通し番号(1-1-1など）を付ける場合
$counterName: listCounter;
ol {
  @include resetCounter($counterName);
  li {
    @include addCounters($counterName, '-');
  }
}
------------------------------------------------- */
/* グリッドレイアウト用mixin (IE8以上)
usage:
■12分割で間隔が20pxのグリッドのクラスを作る場合
・SASS
@include grid_system(12, 20px);
・HTML
<div class="grid_system_12">  ← このdivへの幅指定はNG
  <div class="grid_6"></div> ┐
  <div class="grid_3"></div> ├ 子要素は合計が12になるようにクラス名を付ける
  <div class="grid_3"></div> ┘
</div>
------------------------------------------------- */
/* -------------------------------------------------------------------------

    module.sass

    見出し、ボタン、表など繰り返し使うパーツ（モジュール）のスタイルを定義

------------------------------------------------------------------------- */
/* text link
------------------------------------------------- */
a {
  color: #333333;
  text-decoration: none; }
  a:hover {
    color: #DC491E;
    text-decoration: underline; }
  a.img_hover:hover img {
    opacity: .7; }
  a.tel {
    display: inline-block;
    cursor: default;
    pointer-events: none; }
    @media only screen and (max-width: 480px) {
      a.tel {
        pointer-events: auto; } }

i {
  margin-right: 5px; }

.fa, .pnavi a::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto; }

a.link_continuation {
  color: #DC491E;
  text-decoration: underline; }
  a.link_continuation:hover {
    text-decoration: none; }

/*img
------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: top;
  -webkit-transition: all .3s ease-in-out 0s;
  -o-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
  -ms-transition: 　none; }

/* form
------------------------------------------------- */
input[type="text"], input[type="submit"], textarea {
  width: 100%;
  margin: 0;
  padding: 1% 2%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid #c4c4c3;
  border: 1px solid #aaa;
  background-color: #fff;
  font-family: "Lato", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-transition: all .3s;
  outline: none; }
  input[type="text"].narrow, input[type="submit"].narrow, textarea.narrow {
    width: 20%; }

input[type="text"] {
  width: 60%;
  margin-bottom: 10px; }
  @media only screen and (max-width: 480px) {
    input[type="text"] {
      width: 100%; } }

input[type="text"]:focus, textarea:focus {
  border: 1px solid #52a8ec;
  -webkit-box-shadow: 0 0 7px #52a8ec;
  box-shadow: 0 0 7px #52a8ec; }

input[type="radio"], input[type="checkbox"] {
  margin-right: 5px;
  border-style: none;
  vertical-align: baseline; }

label {
  margin-right: 15px;
  cursor: pointer; }

input[type="submit"], input[type="button"] {
  display: block;
  width: 360px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background-color: transparent;
  -webkit-appearance: none; }

select {
  padding: 1% 2%;
  font-size: 16px; }

textarea {
  height: 200px; }
  @media only screen and (max-width: 736px) {
    textarea {
      height: 150px; } }

/* animation
------------------------------------------------- */
.animation, body.service .plink a, body.price .plink a, body.flow .plink a, body.privacy .plink a {
  transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out; }
  .animation.fast, .wp-pagenavi a, .pagenavi a, body.single .contents h2::before, .icon.arrow_r_01::before, .pagenavi li.nextpostslink a::before, .icon.arrow_r_02::before, body.voice .post_single .contents h2::before, body.blog article.post_single .contents h2::before, .icon.arrow_l_01::before, .pagenavi li.prevpostslink a::before, .icon.list::before, .pagenavi li.list a::before, .global_nav a b, .secondary_area .nav li a, .secondary_area .pagelinks a, .secondary_area .pagelinks a::before, .site_footer .page_top a, .site_footer .page_top a i, body.service .plink a.fast, body.price .plink a.fast, body.flow .plink a.fast, body.privacy .plink a.fast, body.service .plink a::before, body.price .plink a::before, body.flow .plink a::before, body.privacy .plink a::before, body.blog article.post_single footer a.single_f_bnr::after, body.blog article.post_single footer a.single_f_bnr div::before {
    transition: all .15s ease-out;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -ms-transition: all .15s ease-out;
    -o-transition: all .15s ease-out; }
  .animation.slow, body.service .plink a.slow, body.price .plink a.slow, body.flow .plink a.slow, body.privacy .plink a.slow {
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out; }
  .animation.cubic, body.service .plink a.cubic, body.price .plink a.cubic, body.flow .plink a.cubic, body.privacy .plink a.cubic {
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
    transition-timing-function: cubic-bezier(1, 0, 0, 1);
    -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1); }
  .animation.ease, .btn.navy a, .btn.navy input, .btn.navy::before, .btn.orange a, .btn.orange input, .btn.orange::before, .service_list .item a .more, .pnavi a::before, .global_nav a::before, .site_footer .contact_us .longbtn::before, body.service .plink a.ease, body.price .plink a.ease, body.flow .plink a.ease, body.privacy .plink a.ease {
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition-timing-function: cubic-bezier(0, 0.82, 0.2, 0.99);
    transition-timing-function: cubic-bezier(0, 0.82, 0.2, 0.99);
    -webkit-transition-timing-function: cubic-bezier(0, 0.82, 0.2, 0.99); }

/* column
------------------------------------------------- */
.left_column {
  float: left; }

.right_column {
  float: right; }

/* pager - WPのページャー
------------------------------------------------- */
.wp-pagenavi, .pagenavi {
  position: relative;
  width: 100%;
  margin: 60px auto;
  text-align: center; }
  @media only screen and (max-width: 480px) {
    .wp-pagenavi, .pagenavi {
      margin-top: 30px; } }
  .wp-pagenavi span, .wp-pagenavi a, .pagenavi span, .pagenavi a {
    display: inline-block !important;
    height: 40px;
    margin-right: 2px;
    padding: 0 12px;
    border: #e3e3e3 1px solid;
    background-color: #fff;
    line-height: 40px;
    vertical-align: top; }
  .wp-pagenavi span, .pagenavi span {
    background-color: #f3f3f3; }
  .wp-pagenavi a:hover, .pagenavi a:hover {
    border-color: #DC491E;
    background-color: #DC491E;
    color: #fff;
    text-decoration: none; }
  .wp-pagenavi .prevpostslink a, .wp-pagenavi .nextpostslink a, .pagenavi .prevpostslink a, .pagenavi .nextpostslink a {
    position: absolute;
    top: 0;
    width: auto; }
  .wp-pagenavi .prevpostslink a, .pagenavi .prevpostslink a {
    left: 0;
    padding-left: 58px;
    background-repeat: no-repeat;
    background-position: 0 center; }
    @media only screen and (max-width: 480px) {
      .wp-pagenavi .prevpostslink a, .pagenavi .prevpostslink a {
        padding-left: 20px;
        background-size: auto 100%; } }
  .wp-pagenavi .nextpostslink a, .pagenavi .nextpostslink a {
    right: 0;
    padding-right: 58px;
    background-repeat: no-repeat;
    background-position: right center; }
    @media only screen and (max-width: 480px) {
      .wp-pagenavi .nextpostslink a, .pagenavi .nextpostslink a {
        padding-right: 20px;
        background-size: auto 100%; } }

.pagenavi {
  width: 100%; }
  @media only screen and (max-width: 480px) {
    .pagenavi {
      width: 94%; } }
  .pagenavi li {
    float: left;
    width: 33%; }
    @media only screen and (max-width: 480px) {
      .pagenavi li {
        width: 25%; } }
    .pagenavi li a {
      display: block !important;
      margin-right: 0; }
    .pagenavi li.prevpostslink a, .pagenavi li.nextpostslink a {
      position: relative; }
      .pagenavi li.prevpostslink a::before, .pagenavi li.nextpostslink a::before {
        position: absolute;
        top: 50%;
        margin-top: -.5em;
        font-size: 1.8rem; }
      .pagenavi li.prevpostslink a:hover, .pagenavi li.nextpostslink a:hover {
        background-color: #DC491E; }
        .pagenavi li.prevpostslink a:hover::before, .pagenavi li.nextpostslink a:hover::before {
          color: #fff; }
    .pagenavi li.prevpostslink.empty span, .pagenavi li.nextpostslink.empty span {
      display: block;
      border: none;
      background-color: transparent; }
    .pagenavi li.prevpostslink a::before {
      left: 7%; }
      @media only screen and (max-width: 480px) {
        .pagenavi li.prevpostslink a::before {
          display: none; } }
    .pagenavi li.nextpostslink a::before {
      right: 7%; }
      @media only screen and (max-width: 480px) {
        .pagenavi li.nextpostslink a::before {
          display: none; } }
    .pagenavi li.list {
      width: 34%; }
      @media only screen and (max-width: 480px) {
        .pagenavi li.list {
          width: 50%; } }
      .pagenavi li.list a {
        border-top-color: #DC491E;
        border-right-color: #DC491E;
        border-bottom-color: #DC491E;
        border-left-color: #DC491E;
        background-color: #DC491E;
        color: #fff; }
        .pagenavi li.list a::before {
          margin-right: 1em; }
          @media only screen and (max-width: 480px) {
            .pagenavi li.list a::before {
              display: none;
              margin-right: 0; } }
        .pagenavi li.list a:hover {
          background-color: #fff;
          color: #DC491E; }

/* btn
------------------------------------------------- */
.btn a, .btn input {
  display: block;
  padding: 13px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  letter-spacing: 0; }
  @media only screen and (max-width: 480px) {
    .btn a, .btn input {
      padding: 15px 0; } }

.btn.navy {
  position: relative; }
  .btn.navy a, .btn.navy input {
    background-color: #293843; }
  .btn.navy::before {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    content: "";
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: #293843 2px solid; }
  .btn.navy:hover a, .btn.navy:hover input {
    position: relative;
    z-index: 1;
    background-color: transparent;
    color: #293843;
    text-decoration: none; }
  .btn.navy:hover::before {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    z-index: 0; }

.btn.orange {
  position: relative; }
  .btn.orange a, .btn.orange input {
    background-color: #DC491E; }
  .btn.orange::before {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    content: "";
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: #DC491E 2px solid; }
  .btn.orange:hover {
    background-color: #fff; }
    .btn.orange:hover a, .btn.orange:hover input {
      position: relative;
      z-index: 1;
      background-color: transparent;
      color: #DC491E;
      text-decoration: none; }
    .btn.orange:hover::before {
      opacity: 1;
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
      z-index: 0; }

.btn.arrow_r {
  position: relative; }
  .btn.arrow_r i {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -.5em;
    margin-right: 0;
    font-size: 1.7rem;
    line-height: 1; }

/* icon
------------------------------------------------- */
/* title
------------------------------------------------- */
.section_title {
  position: relative;
  margin-bottom: 60px;
  padding: 0 0 20px;
  font-weight: 500;
  text-align: center; }
  @media only screen and (max-width: 480px) {
    .section_title {
      margin-bottom: 30px; } }
  .section_title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: "";
    width: 50px;
    height: 4px;
    margin-left: -25px;
    background-color: #DC491E; }
    @media only screen and (max-width: 480px) {
      .section_title::after {
        width: 25px;
        height: 2px;
        margin-left: -12.5px; } }
  .section_title b {
    display: block;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px; }
    @media only screen and (max-width: 480px) {
      .section_title b {
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: 0; } }

.border_title, body.voice .post_single .contents h1, body.blog article.post_single .contents h1, body.single .contents h1, body.blog .contents h1 {
  margin-bottom: 20px;
  padding: 8px 0;
  border-top: #DC491E 2px solid;
  border-bottom: #d0d0d0 1px solid;
  color: #DC491E;
  font-size: 2rem; }
  @media only screen and (max-width: 480px) {
    .border_title, body.voice .post_single .contents h1, body.blog article.post_single .contents h1, body.single .contents h1, body.blog .contents h1 {
      line-height: 1.5; } }

body.single .contents h1 {
  margin-top: 6rem; }

body.single .contents h2 {
  margin-top: 4rem;
  margin-bottom: 1rem;
  font-size: 1.8rem; }
  body.single .contents h2::after, body.single .contents h2::before {
    display: inline-block;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: auto; }
  body.single .contents h2::before {
    margin-right: .3em; }
  body.single .contents h2::before {
    content: "\f0da";
    color: #DC491E;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    vertical-align: middle; }

body.single .contents h3 {
  padding-left: 1em;
  font-weight: 500;
  text-indent: -1em; }
  body.single .contents h3::before {
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #DC491E;
    vertical-align: middle; }
  body.single .contents h3 > * {
    text-indent: 0; }

/* icon
------------------------------------------------- */
.icon::after, .pagenavi li.prevpostslink a::after, .pagenavi li.nextpostslink a::after, .pagenavi li.list a::after, body.voice .post_single .contents h2::after, body.blog article.post_single .contents h2::after, .icon::before, .pagenavi li.prevpostslink a::before, .pagenavi li.nextpostslink a::before, .pagenavi li.list a::before, body.voice .post_single .contents h2::before, body.blog article.post_single .contents h2::before {
  display: inline-block;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto; }

.icon::before, .pagenavi li.prevpostslink a::before, .pagenavi li.nextpostslink a::before, .pagenavi li.list a::before, body.voice .post_single .contents h2::before, body.blog article.post_single .contents h2::before {
  margin-right: .3em; }

.icon.arrow_r_01::before, .pagenavi li.prevpostslink a.arrow_r_01::before, .pagenavi li.nextpostslink a::before, .pagenavi li.list a.arrow_r_01::before, body.voice .post_single .contents h2.arrow_r_01::before, body.blog article.post_single .contents h2.arrow_r_01::before {
  content: "\f105";
  color: #DC491E;
  font-weight: bold; }

.icon.arrow_r_02, .pagenavi li.prevpostslink a.arrow_r_02, .pagenavi li.nextpostslink a.arrow_r_02, .pagenavi li.list a.arrow_r_02, body.voice .post_single .contents h2, body.blog article.post_single .contents h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem; }
  .icon.arrow_r_02::before, .pagenavi li.prevpostslink a.arrow_r_02::before, .pagenavi li.nextpostslink a.arrow_r_02::before, .pagenavi li.list a.arrow_r_02::before, body.voice .post_single .contents h2::before, body.blog article.post_single .contents h2::before {
    content: "\f0da";
    color: #DC491E;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    vertical-align: middle; }

.icon.arrow_l_01::before, .pagenavi li.prevpostslink a::before, .pagenavi li.nextpostslink a.arrow_l_01::before, .pagenavi li.list a.arrow_l_01::before, body.voice .post_single .contents h2.arrow_l_01::before, body.blog article.post_single .contents h2.arrow_l_01::before {
  content: "\f104";
  color: #DC491E; }

.icon.list::before, .pagenavi li.prevpostslink a.list::before, .pagenavi li.nextpostslink a.list::before, .pagenavi li.list a::before, body.voice .post_single .contents h2.list::before, body.blog article.post_single .contents h2.list::before {
  content: "\f0ca"; }

/* post_default
------------------------------------------------- */
.post_default, body.lawyer .post_single .contents, body.voice .post_single .contents, body.blog article.post_single .contents {
  /* blockquote */
  /* ul */ }
  .post_default p, body.lawyer .post_single .contents p, body.voice .post_single .contents p, body.blog article.post_single .contents p {
    margin: 0 0 24px;
    margin: 0 0 1.714285714rem;
    line-height: 1.714285714; }
  .post_default a, body.lawyer .post_single .contents a, body.voice .post_single .contents a, body.blog article.post_single .contents a {
    color: #DC491E;
    text-decoration: underline; }
    .post_default a:hover, body.lawyer .post_single .contents a:hover, body.voice .post_single .contents a:hover, body.blog article.post_single .contents a:hover {
      text-decoration: none; }
  .post_default img, body.lawyer .post_single .contents img, body.voice .post_single .contents img, body.blog article.post_single .contents img, .post_default .editor-attachment, body.lawyer .post_single .contents .editor-attachment, body.voice .post_single .contents .editor-attachment, body.blog article.post_single .contents .editor-attachment {
    max-width: 100%;
    border: 0; }
  .post_default img.size-full, body.lawyer .post_single .contents img.size-full, body.voice .post_single .contents img.size-full, body.blog article.post_single .contents img.size-full {
    width: auto/9;
    /* Prevent stretching of full-size images in IE8 */ }
  .post_default img[class*="wp-image-"], body.lawyer .post_single .contents img[class*="wp-image-"], body.voice .post_single .contents img[class*="wp-image-"], body.blog article.post_single .contents img[class*="wp-image-"] {
    max-width: 100%;
    height: auto; }
  .post_default img[class*="align"], body.lawyer .post_single .contents img[class*="align"], body.voice .post_single .contents img[class*="align"], body.blog article.post_single .contents img[class*="align"], .post_default img[class*="wp-image-"], body.lawyer .post_single .contents img[class*="wp-image-"], body.voice .post_single .contents img[class*="wp-image-"], body.blog article.post_single .contents img[class*="wp-image-"], .post_default img[class*="attachment-"], body.lawyer .post_single .contents img[class*="attachment-"], body.voice .post_single .contents img[class*="attachment-"], body.blog article.post_single .contents img[class*="attachment-"] {
    height: auto;
    /* Make sure images with WordPress-added height and width attributes are scaled correctly */ }
  .post_default img.mce-wp-nextpage, body.lawyer .post_single .contents img.mce-wp-nextpage, body.voice .post_single .contents img.mce-wp-nextpage, body.blog article.post_single .contents img.mce-wp-nextpage {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .post_default img.wp-smiley, body.lawyer .post_single .contents img.wp-smiley, body.voice .post_single .contents img.wp-smiley, body.blog article.post_single .contents img.wp-smiley {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .post_default .wp-caption, body.lawyer .post_single .contents .wp-caption, body.voice .post_single .contents .wp-caption, body.blog article.post_single .contents .wp-caption {
    margin: 0;
    padding: 4px;
    border: none;
    background: transparent;
    text-align: left; }
  .post_default .wp-caption-dt, body.lawyer .post_single .contents .wp-caption-dt, body.voice .post_single .contents .wp-caption-dt, body.blog article.post_single .contents .wp-caption-dt {
    margin: 0; }
  .post_default .wp-caption .wp-caption-text, body.lawyer .post_single .contents .wp-caption .wp-caption-text, body.voice .post_single .contents .wp-caption .wp-caption-text, body.blog article.post_single .contents .wp-caption .wp-caption-text, .post_default .wp-caption-dd, body.lawyer .post_single .contents .wp-caption-dd, body.voice .post_single .contents .wp-caption-dd, body.blog article.post_single .contents .wp-caption-dd {
    margin: 0 0 24px;
    margin: 0 0 1.71429rem;
    color: #757575;
    font-size: 12px;
    font-size: .857142857rem;
    font-style: italic;
    line-height: 2; }
  .post_default .alignleft, body.lawyer .post_single .contents .alignleft, body.voice .post_single .contents .alignleft, body.blog article.post_single .contents .alignleft {
    display: inline;
    float: left;
    margin: 12px 24px 12px 0;
    margin: .857142857rem 1.714285714rem .857142857rem 0; }
    @media only screen and (max-width: 480px) {
      .post_default .alignleft, body.lawyer .post_single .contents .alignleft, body.voice .post_single .contents .alignleft, body.blog article.post_single .contents .alignleft {
        width: 50%; } }
  .post_default .alignright, body.lawyer .post_single .contents .alignright, body.voice .post_single .contents .alignright, body.blog article.post_single .contents .alignright {
    display: inline;
    float: right;
    margin: 12px 0 12px 24px;
    margin: .857142857rem 0 .857142857rem 1.714285714rem; }
    @media only screen and (max-width: 480px) {
      .post_default .alignright, body.lawyer .post_single .contents .alignright, body.voice .post_single .contents .alignright, body.blog article.post_single .contents .alignright {
        width: 50%; } }
  .post_default .aligncenter, body.lawyer .post_single .contents .aligncenter, body.voice .post_single .contents .aligncenter, body.blog article.post_single .contents .aligncenter {
    display: block;
    clear: both;
    margin-top: 12px;
    margin-top: .857142857rem;
    margin-right: auto;
    margin-bottom: 12px;
    margin-bottom: .857142857rem;
    margin-left: auto; }
  .post_default img[class*="wp-image-"], body.lawyer .post_single .contents img[class*="wp-image-"], body.voice .post_single .contents img[class*="wp-image-"], body.blog article.post_single .contents img[class*="wp-image-"], .post_default img[class*="attachment-"], body.lawyer .post_single .contents img[class*="attachment-"], body.voice .post_single .contents img[class*="attachment-"], body.blog article.post_single .contents img[class*="attachment-"] {
    max-width: 100%;
    height: auto; }
  .post_default blockquote, body.lawyer .post_single .contents blockquote, body.voice .post_single .contents blockquote, body.blog article.post_single .contents blockquote {
    position: relative;
    margin: 15px 0;
    padding: 30px 35px;
    background-color: #f5f4f1;
    background-image: url(../img/common/blockquote_before_01.png), url(../img/common/blockquote_after_01.png);
    background-repeat: no-repeat;
    background-position: 20px 20px,
 97% 92%; }
    @media only screen and (max-width: 480px) {
      .post_default blockquote, body.lawyer .post_single .contents blockquote, body.voice .post_single .contents blockquote, body.blog article.post_single .contents blockquote {
        padding: 15px 20px; } }
    .post_default blockquote p:last-child, body.lawyer .post_single .contents blockquote p:last-child, body.voice .post_single .contents blockquote p:last-child, body.blog article.post_single .contents blockquote p:last-child {
      margin-bottom: 0 !important; }
  .post_default ul li, body.lawyer .post_single .contents ul li, body.voice .post_single .contents ul li, body.blog article.post_single .contents ul li {
    list-style-position: inside;
    list-style-type: disc;
    margin-bottom: 10px; }
    .post_default ul li li, body.lawyer .post_single .contents ul li li, body.voice .post_single .contents ul li li, body.blog article.post_single .contents ul li li {
      margin-bottom: 5px;
      padding-left: 2em; }
  .post_default table, body.lawyer .post_single .contents table, body.voice .post_single .contents table, body.blog article.post_single .contents table {
    width: 100%;
    border: #ccc 1px solid; }
    .post_default table th, body.lawyer .post_single .contents table th, body.voice .post_single .contents table th, body.blog article.post_single .contents table th, .post_default table td, body.lawyer .post_single .contents table td, body.voice .post_single .contents table td, body.blog article.post_single .contents table td {
      padding: 10px 15px;
      border: #ccc 1px solid; }
      @media only screen and (max-width: 480px) {
        .post_default table th, body.lawyer .post_single .contents table th, body.voice .post_single .contents table th, body.blog article.post_single .contents table th, .post_default table td, body.lawyer .post_single .contents table td, body.voice .post_single .contents table td, body.blog article.post_single .contents table td {
          padding: 5px 3%;
          font-size: 1.0rem; } }
    .post_default table th, body.lawyer .post_single .contents table th, body.voice .post_single .contents table th, body.blog article.post_single .contents table th {
      background-color: #e9edf1;
      font-weight: 500;
      text-align: left; }

/* service_list
------------------------------------------------- */
.service_list .item {
  float: left;
  width: 254px;
  margin-right: 8px;
  margin-bottom: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: #e6e6e6 1px solid;
  background-color: #fff; }
  @media only screen and (max-width: 480px) {
    .service_list .item {
      width: 48%;
      margin-right: 0;
      margin-right: 4%;
      margin-bottom: 10px; } }
  .service_list .item.wide {
    width: 516px; }
    @media only screen and (max-width: 480px) {
      .service_list .item.wide {
        width: 100%;
        margin-right: 0; } }
  .service_list .item.last_child {
    margin-right: 0; }
  @media only screen and (max-width: 480px) {
    .service_list .item:nth-child(odd) {
      margin-right: 0; } }
  .service_list .item a {
    display: block;
    overflow: hidden;
    position: relative;
    height: 100%;
    color: inherit; }
    .service_list .item a .more {
      display: inline-block;
      position: absolute;
      right: -74px;
      bottom: 0;
      width: 100px;
      background-color: #293843;
      color: #fff;
      font-size: 1.4rem; }
      .service_list .item a .more i {
        display: inline-block;
        width: 26px;
        margin-right: 10px;
        padding-left: 1px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        text-align: center; }
    .service_list .item a:hover {
      text-decoration: none; }
      .service_list .item a:hover .more {
        right: 0; }
      .service_list .item a:hover img {
        opacity: .7; }
      .service_list .item a:hover dd {
        color: #DC491E; }
  .service_list .item dl {
    padding: 15px 20px 20px; }
    @media only screen and (max-width: 480px) {
      .service_list .item dl {
        padding: 10px 10px 15px 10px; } }
  .service_list .item dt {
    margin-bottom: 10px;
    color: #DC491E;
    font-size: 2rem;
    font-weight: bold;
    text-align: center; }
    @media only screen and (max-width: 480px) {
      .service_list .item dt {
        font-size: 1.6rem;
        line-height: 1.4;
        text-align: left; } }
  @media only screen and (max-width: 480px) {
    .service_list .item dd {
      font-size: 1.2rem; } }

/* voice_list
------------------------------------------------- */
.voice_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 35px; }
  @media only screen and (max-width: 480px) {
    .voice_list {
      display: block; } }
  .voice_list .post {
    -ms-flex-preferred-size: 328px;
    flex-basis: 328px;
    float: left;
    margin-right: 40px;
    margin-bottom: 25px;
    background-color: #ffffff;
    font-weight: bold; }
    @media only screen and (max-width: 480px) {
      .voice_list .post {
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px; } }
    .voice_list .post:nth-child(2n) {
      margin-right: 0; }
  .voice_list .voice_comp {
    margin: 0 6px 15px;
    padding: 0 0 5px;
    border-bottom: #DC491E 3px solid;
    font-size: 1.8rem;
    text-align: center; }
    @media only screen and (max-width: 480px) {
      .voice_list .voice_comp {
        font-size: 1.6rem; } }
  .voice_list figure.logo {
    height: 40px;
    margin: 0 0 12px;
    padding-top: 20px;
    text-align: center; }
    .voice_list figure.logo img {
      width: auto;
      max-height: 100%; }
  .voice_list figure.v_img {
    margin-bottom: 10px; }
    @media only screen and (max-width: 480px) {
      .voice_list figure.v_img {
        width: 55%;
        margin: 0 auto 15px; } }
  .voice_list .voice_bsns {
    padding: 10px 6px;
    font-size: 1.3rem; }
  .voice_list h1 {
    display: block;
    padding: 0 6px 20px;
    font-size: 1.6rem;
    line-height: 1.4; }

/* .tags {
    font-size: 1.3rem;
    font-weight: bold;

    > i {
      display: inline-block;
    }

    ul {
      display: inline-block;
    }

    li {
      display: inline-block;
      word-break: break-all;

      &::after {
        content: ",";
      }

      &:first-child {
        &::before {
          @extend .fa;
          content: "\f02c";
          margin-right: 5px;
        }
      }

      &:last-child {
        &::after {
          content: "";
        }
      }
    }
  }tags */
/* lawyer_list
------------------------------------------------- */
.lawyer_list .thumb_lawyer {
  position: relative;
  text-align: center;
  /* sns */ }
  .lawyer_list .thumb_lawyer figure {
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin: 0 auto 15px; }
    @media only screen and (max-width: 480px) {
      .lawyer_list .thumb_lawyer figure {
        width: 140px;
        height: 140px; } }
    .lawyer_list .thumb_lawyer figure img {
      border-radius: 50%; }
  .lawyer_list .thumb_lawyer .sns {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: -35px; }
    .lawyer_list .thumb_lawyer .sns li {
      display: inline-block;
      width: 32px;
      height: 32px;
      margin-right: 3px;
      border-radius: 50%;
      border: #fff 2px solid;
      line-height: 32px;
      text-align: center; }
      .lawyer_list .thumb_lawyer .sns li a {
        display: block; }
      .lawyer_list .thumb_lawyer .sns li i {
        margin-right: 0;
        color: #fff; }
      .lawyer_list .thumb_lawyer .sns li.fb {
        background-color: #3b5998; }
      .lawyer_list .thumb_lawyer .sns li.tw {
        background-color: #55acee; }
      .lawyer_list .thumb_lawyer .sns li.email {
        background-color: #de5229; }

.lawyer_list .post.mheight .sns .email_text {
  display: none; }

.lawyer_list .post {
  float: left;
  width: 230px;
  margin-right: 15px;
  margin-bottom: 35px;
  text-align: center;
  vertical-align: top; }
  @media only screen and (max-width: 480px) {
    .lawyer_list .post {
      width: 48%;
      margin-right: 4%; } }
  .lawyer_list .post:nth-child(3n) {
    margin-right: 0; }
    @media only screen and (max-width: 480px) {
      .lawyer_list .post:nth-child(3n) {
        margin-right: 4%; } }
  @media only screen and (max-width: 480px) {
    .lawyer_list .post:nth-child(2n) {
      margin-right: 0; } }
  .lawyer_list .post dt {
    margin-bottom: 10px;
    color: #999;
    font-size: 1.2rem;
    font-weight: bold; }
    .lawyer_list .post dt b {
      display: block;
      color: #DC491E;
      font-size: 2rem; }
  @media only screen and (max-width: 480px) {
    .lawyer_list .post dd {
      font-size: 1.2rem; } }

/* blog_list
------------------------------------------------- */
.blog_list article {
  border-bottom: #d0d0d0 1px dotted; }
  .blog_list article:last-child {
    margin-bottom: 0; }
  .blog_list article a {
    display: block;
    padding: 20px 0; }
    .blog_list article a:hover .img {
      opacity: .7; }
  .blog_list article:first-of-type a {
    padding-top: 0; }

.blog_list .img {
  margin-right: 10px; }
  @media only screen and (max-width: 480px) {
    .blog_list .img {
      float: left;
      width: 27%; } }

@media only screen and (max-width: 480px) {
  .blog_list .text {
    overflow: hidden; } }

.blog_list .text p {
  line-height: 1.5; }
  @media only screen and (max-width: 480px) {
    .blog_list .text p {
      margin-bottom: 10px; } }

.blog_list .text time {
  color: #999;
  font-size: 1.2rem; }

/* pnavi
------------------------------------------------- */
.pnavi {
  margin-bottom: 60px; }
  @media only screen and (max-width: 480px) {
    .pnavi {
      margin-bottom: 40px; } }
  .pnavi li {
    display: inline-block;
    width: 24%;
    margin-right: 4px;
    margin-bottom: 10px;
    vertical-align: top; }
    @media only screen and (max-width: 480px) {
      .pnavi li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2px; } }
  .pnavi a {
    display: block;
    display: table;
    position: relative;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #f8dcd4;
    line-height: 1.4;
    text-align: center; }
    @media only screen and (max-width: 480px) {
      .pnavi a {
        text-align: left; } }
    .pnavi a::before {
      display: table-cell;
      z-index: 1;
      float: left;
      content: "\f107";
      width: 20px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      background-color: #e8896d;
      color: #fff;
      font-size: 2rem;
      line-height: 4.7;
      text-align: center;
      vertical-align: middle; }
    .pnavi a span {
      display: table-cell;
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 15px 0;
      vertical-align: middle; }
      @media only screen and (max-width: 480px) {
        .pnavi a span {
          padding: 15px 10px; } }
    .pnavi a:hover {
      text-decoration: none; }
      .pnavi a:hover::before {
        width: 30px;
        padding-bottom: 0; }
      .pnavi a:hover span {
        color: #DC491E; }

/* pnavi */
/* news */
.news_cat {
  display: inline-block;
  padding: 0 .2em;
  color: #fff;
  line-height: 1.7; }
  @media screen and (max-width: 768px) {
    .news_cat {
      font-size: .8em; } }
  .news_cat.news_01 {
    background: #DC491E; }
  .news_cat.news_02 {
    background: #d62b22;
    text-shadow: 0 0 3px #7e1914; }
  .news_cat.news_03 {
    background: #d95281;
    text-shadow: 0 0 3px #a2234f; }
  .news_cat.news_04 {
    background: #2fb8bd;
    text-shadow: 0 0 3px #1b686b; }
  .news_cat.news_05 {
    background: #1f64db;
    text-shadow: 0 0 3px #123b82; }
  .news_cat.news_06 {
    background: #b84ddb;
    text-shadow: 0 0 3px #8221a1; }
  .news_cat.news_07 {
    background: #429e44;
    text-shadow: 0 0 3px darlen(#429e44, 20%); }
  .news_cat.news_08 {
    background: #97cf57;
    text-shadow: 0 0 3px #64952b; }
  .news_cat.news_09 {
    background: #edcf55;
    text-shadow: 0 0 3px #c7a415; }
  .news_cat.news_10 {
    background: #14c994;
    text-shadow: 0 0 3px #0b6c50; }

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

    layout.sass

    ヘッダー、フッター、サイドバー等のサイトの構造に関わるスタイルを定義

------------------------------------------------------------------------- */
/* html
------------------------------------------------- */
html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%; }

/* body
------------------------------------------------- */
body {
  font-family: "Lato", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  background-color: #fff;
  color: #333333;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-size: 1.5rem;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
  right: 0;
  letter-spacing: 1px; }
  body.menu_active main, body.menu_active footer {
    opacity: .3; }

/* IEのみメイリオ */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: 'Lato', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; } }

/* noscript
------------------------------------------------- */
.noscript {
  background-color: #DC491E;
  padding: 　10px 0;
  text-align: 　center;
  font-weight: 　bold; }

/* header
------------------------------------------------- */
.site_header {
  border-bottom: #DBDBDB 1px solid;
  padding: 10px 0 20px;
  /* menu */ }
  @media only screen and (max-width: 480px) {
    .site_header {
      padding: 10px 0; } }
  .site_header .inner {
    width: 1040px;
    margin: 0 auto; }
    @media only screen and (max-width: 480px) {
      .site_header .inner {
        width: 94%; } }
  .site_header h1 {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 5px; }
    @media only screen and (max-width: 480px) {
      .site_header h1 {
        display: none; } }
  .site_header .logo {
    float: left;
    width: 316px; }
    @media only screen and (max-width: 480px) {
      .site_header .logo {
        width: 53%; } }
    .site_header .logo a {
      display: block; }
    @media only screen and (max-width: 480px) {
      .site_header .logo img {
        vertical-align: middle; } }
  .site_header .header_nav {
    width: 495px;
    float: right;
    text-align: right; }
    @media only screen and (max-width: 480px) {
      .site_header .header_nav {
        width: 100%;
        float: none;
        display: none; } }
    .site_header .header_nav li {
      display: inline-block;
      vertical-align: text-top; }
      .site_header .header_nav li a {
        padding: 4px 20px; }
  .site_header .menu {
    display: none; }
    @media only screen and (max-width: 480px) {
      .site_header .menu {
        width: 30px;
        vertical-align: top;
        z-index: 20;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: inline-block;
        float: right; } }
    .site_header .menu .btn_menu {
      position: relative;
      width: 100%;
      height: 17px;
      margin: 0 auto;
      display: block;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .site_header .menu .btn_menu span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #DC491E;
        display: inline-block;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
        .site_header .menu .btn_menu span:nth-of-type(1) {
          top: 0;
          z-index: 2; }
        .site_header .menu .btn_menu span:nth-of-type(2) {
          top: 7px;
          z-index: 1; }
        .site_header .menu .btn_menu span:nth-of-type(3) {
          bottom: 0;
          z-index: 2; }
      .site_header .menu .btn_menu.active span:nth-of-type(1) {
        -webkit-transform: translateY(7px) rotate(-45deg);
        -ms-transform: translateY(7px) rotate(-45deg);
        transform: translateY(7px) rotate(-45deg); }
      .site_header .menu .btn_menu.active span:nth-of-type(2) {
        opacity: 0; }
      .site_header .menu .btn_menu.active span:nth-of-type(3) {
        -webkit-transform: translateY(-7px) rotate(45deg);
        -ms-transform: translateY(-7px) rotate(45deg);
        transform: translateY(-7px) rotate(45deg); }
      .site_header .menu .btn_menu > div {
        font-size: 1.0rem;
        position: absolute;
        bottom: -1.3em;
        font-weight: bold;
        line-height: 1;
        letter-spacing: 0;
        color: #DC491E; }

.header_nav_clone .btn a {
  color: #fff;
  text-align: center;
  padding: 16px 25px; }

/* gloal navi
------------------------------------------------- */
.global_nav {
  width: 1040px;
  margin: 0 auto;
  display: block; }
  @media only screen and (max-width: 480px) {
    .global_nav {
      width: 100%;
      position: absolute;
      display: none;
      background-color: #fff;
      z-index: 20; } }
  .global_nav ul {
    width: 100%; }
  .global_nav li {
    display: inline-block;
    float: left; }
    @media only screen and (max-width: 480px) {
      .global_nav li {
        width: 100%;
        border-bottom: #DBDBDB 1px solid;
        float: none;
        display: block; } }
  .global_nav a {
    color: #293843;
    display: block;
    font-size: 1.2rem;
    text-align: center;
    color: #999;
    line-height: 1.4;
    padding: 13px 25px;
    position: relative;
    overflow: hidden; }
    @media only screen and (max-width: 480px) {
      .global_nav a {
        text-align: left; } }
    .global_nav a:hover {
      text-decoration: none; }
      .global_nav a:hover::before {
        bottom: 0; }
      .global_nav a:hover b {
        color: #DC491E; }
    .global_nav a::before {
      content: "";
      width: 100%;
      height: 3px;
      background-color: #DC491E;
      position: absolute;
      left: 0;
      bottom: -3px; }
    .global_nav a b {
      display: block;
      font-size: 1.5rem;
      color: #293843; }
      @media only screen and (max-width: 480px) {
        .global_nav a b {
          display: inline-block;
          width: 50%; } }
    @media only screen and (max-width: 480px) {
      .global_nav a span {
        display: inline-block;
        width: 50%; } }

/* topicpath
------------------------------------------------- */
.topicpath {
  padding: 5px 0;
  width: 1040px;
  margin: 0 auto 40px;
  text-align: right; }
  @media only screen and (max-width: 480px) {
    .topicpath {
      width: 94%;
      margin-bottom: 15px; } }
  .topicpath li {
    line-height: 1;
    display: inline-block;
    font-size: 1.3rem; }
    @media only screen and (max-width: 480px) {
      .topicpath li {
        font-size: 1.2rem; } }
    .topicpath li:before {
      content: "|";
      padding-right: 5px; }
    .topicpath li:first-child:before {
      content: "";
      padding-right: 0; }
    .topicpath li a {
      color: #999;
      text-decoration: underline; }
      .topicpath li a:hover {
        text-decoration: none; }

/* primary_area
------------------------------------------------- */
.primary_area {
  width: 720px;
  float: left; }
  @media only screen and (max-width: 480px) {
    .primary_area {
      width: 100%;
      float: none; } }

/* secondary_area
------------------------------------------------- */
.secondary_area {
  width: 240px;
  float: right;
  /* nav */
  /* nav_pagelinks */
  /* nav_companyinfo */ }
  @media only screen and (max-width: 480px) {
    .secondary_area {
      width: 100%;
      float: none; } }
  .secondary_area > div {
    margin-bottom: 40px; }
    @media only screen and (max-width: 480px) {
      .secondary_area > div {
        margin-bottom: 20px; } }
  .secondary_area .nav h4 {
    background-color: #676566;
    color: #fff;
    padding: 10px 15px; }
  .secondary_area .nav li {
    border-bottom: #D0D0D0 1px dashed; }
    .secondary_area .nav li a {
      display: block;
      padding: 10px 0; }
      .secondary_area .nav li a:hover {
        color: #DC491E;
        padding-left: 10px;
        text-decoration: none;
        background-color: #FDF6F4; }
        .secondary_area .nav li a:hover i {
          padding-right: 5px; }
      .secondary_area .nav li a i {
        color: #DC491E;
        float: left;
        line-height: 1.6; }
      .secondary_area .nav li a span {
        display: block;
        overflow: hidden; }
    .secondary_area .nav li figure {
      width: 60px;
      display: inline-block;
      vertical-align: middle;
      margin-right: 10px; }
      @media only screen and (max-width: 480px) {
        .secondary_area .nav li figure {
          width: 27%; } }
      .secondary_area .nav li figure + span {
        display: inline-block;
        vertical-align: middle;
        overflow: visible;
        width: 160px; }
        @media only screen and (max-width: 480px) {
          .secondary_area .nav li figure + span {
            width: 65%; } }
  .secondary_area .nav .wpp-list figure {
    vertical-align: text-top;
    margin-top: 6px; }
  .secondary_area .nav .wpp-list span {
    vertical-align: text-top; }
  .secondary_area .new li {
    padding: 10px 0; }
    .secondary_area .new li a {
      padding: 0; }
      .secondary_area .new li a:hover {
        background-color: inherit;
        padding: 0;
        text-decoration: underline; }
        .secondary_area .new li a:hover i {
          padding: 0; }
        .secondary_area .new li a:hover span {
          padding: 0; }
    .secondary_area .new li .tags {
      font-weight: bold;
      font-size: 1.3rem; }
      .secondary_area .new li .tags i {
        color: inherit; }
  .secondary_area .writer li {
    margin-bottom: 5px; }
    @media only screen and (max-width: 480px) {
      .secondary_area .writer li {
        width: 49%;
        text-align: center;
        display: inline-block;
        margin-bottom: 15px; } }
  .secondary_area .writer a {
    display: block; }
    .secondary_area .writer a:hover figure {
      opacity: .7; }
  .secondary_area .writer figure {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px; }
    @media only screen and (max-width: 480px) {
      .secondary_area .writer figure {
        margin: 0 auto 5px;
        display: block; } }
  .secondary_area .pagelinks li {
    margin-bottom: 10px; }
  .secondary_area .pagelinks a {
    border: #D0D0D0 1px solid;
    display: block;
    padding: 9px;
    position: relative; }
    @media only screen and (max-width: 480px) {
      .secondary_area .pagelinks a {
        padding: 5px; } }
    .secondary_area .pagelinks a::before {
      position: absolute;
      right: 0;
      bottom: 0;
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 0 16px 16px;
      border-color: transparent transparent #DC491E transparent; }
    .secondary_area .pagelinks a:hover {
      background-color: #FDF6F4;
      border-color: #DC491E;
      text-decoration: none; }
      .secondary_area .pagelinks a:hover b {
        color: #DC491E; }
      .secondary_area .pagelinks a:hover::before {
        border-width: 0 0 20px 20px; }
  .secondary_area .pagelinks figure img {
    display: inline-block;
    margin-right: 8px;
    width: 50px;
    vertical-align: middle; }
  .secondary_area .pagelinks figcaption {
    display: inline-block;
    vertical-align: middle;
    color: #999;
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.5; }
    .secondary_area .pagelinks figcaption b {
      display: block;
      font-size: 1.5rem;
      color: #333333; }
  .secondary_area .companyinfo dt {
    margin-bottom: 10px; }
    @media only screen and (max-width: 480px) {
      .secondary_area .companyinfo dt {
        width: 82%;
        margin: 0 auto 10px; } }
  .secondary_area .companyinfo dd {
    margin-bottom: 10px;
    line-height: 1.5; }
  .secondary_area .companyinfo .tel {
    display: block;
    font-size: 3.0rem;
    line-height: 1;
    color: #DC491E; }
    @media only screen and (max-width: 480px) {
      .secondary_area .companyinfo .tel {
        text-align: center; } }
    .secondary_area .companyinfo .tel i {
      font-size: 2.0rem; }
  .secondary_area .companyinfo img {
    height: 100%; }

/* page_content
------------------------------------------------- */
.home_content > .inner,
.page_content > .inner {
  width: 1040px;
  margin: 0 auto; }
  @media only screen and (max-width: 480px) {
    .home_content > .inner,
    .page_content > .inner {
      width: 94%; } }
  .home_content > .inner > section,
  .page_content > .inner > section {
    padding: 50px 0; }
    @media only screen and (max-width: 480px) {
      .home_content > .inner > section,
      .page_content > .inner > section {
        padding: 35px 0; } }
  .home_content > .inner.bg_gray,
  .page_content > .inner.bg_gray {
    background-color: #f4f4f4;
    width: 100%; }
    .home_content > .inner.bg_gray > section,
    .page_content > .inner.bg_gray > section {
      width: 1040px;
      margin: 0 auto; }
      @media only screen and (max-width: 480px) {
        .home_content > .inner.bg_gray > section,
        .page_content > .inner.bg_gray > section {
          width: 94%; } }

.page_content .mainvisual {
  background-color: #f4f4f4;
  height: 140px;
  line-height: 140px; }
  @media only screen and (max-width: 480px) {
    .page_content .mainvisual {
      height: 60px;
      line-height: 60px;
      padding: 0 3%; } }
  .page_content .mainvisual h2 {
    font-size: 1.6rem;
    width: 1040px;
    margin: 0 auto;
    letter-spacing: 1px; }
    @media only screen and (max-width: 480px) {
      .page_content .mainvisual h2 {
        font-size: 1rem; } }
    .page_content .mainvisual h2 b {
      color: #DC491E;
      font-size: 3.6rem;
      padding-right: 10px; }
      @media only screen and (max-width: 480px) {
        .page_content .mainvisual h2 b {
          font-size: 1.8rem; } }

/* footer
------------------------------------------------- */
@media only screen and (max-width: 480px) {
  .contact .site_footer, .confirm .site_footer, .complete .site_footer {
    margin-bottom: 0; } }

.site_footer {
  /* contact_us */
  /* copyright */
  /* sp_f_nav */ }
  @media only screen and (max-width: 480px) {
    .site_footer {
      margin-bottom: 62px; } }
  .site_footer #tocontact {
    width: 105px;
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 99;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
    @media only screen and (max-width: 480px) {
      .site_footer #tocontact {
        display: none; } }
    .site_footer #tocontact:hover {
      opacity: 0.8; }
@media print {
  .site_footer #tocontact {
    display: none; } }
.site_footer #tocontact:hover {
  opacity: 0.8; }
.site_footer #tomerumaga {
    width: 105px;
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 99;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
    @media only screen and (max-width: 480px) {
      .site_footer #tomerumaga {
        display: none; } }
    .site_footer #tomerumaga:hover {
      opacity: 0.8; }
  .site_footer .inner {
    width: 1040px;
    margin: 0 auto; }
    @media only screen and (max-width: 480px) {
      .site_footer .inner {
        width: 94%; } }
  .site_footer .contact_us {
    background-image: url(../img/common/bg_footer_01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    color: #fff;
    text-align: center; }
    @media only screen and (max-width: 480px) {
      .site_footer .contact_us {
        padding: 30px 3%; } }
    .site_footer .contact_us h4 {
      font-size: 4.4rem;
      font-weight: 400;
      letter-spacing: 2px; }
      @media only screen and (max-width: 480px) {
        .site_footer .contact_us h4 {
          font-size: 2.5rem; } }
      .site_footer .contact_us h4 + p {
        margin-bottom: 30px; }
        @media only screen and (max-width: 480px) {
          .site_footer .contact_us h4 + p {
            margin-bottom: 15px;
            text-align: left; } }
    .site_footer .contact_us a {
      color: #fff; }
    .site_footer .contact_us ul li {
      display: inline-block;
      vertical-align: middle;
      margin-right: 20px; }
      @media only screen and (max-width: 480px) {
        .site_footer .contact_us ul li {
          margin-right: 0;
          margin-bottom: 15px; } }
      .site_footer .contact_us ul li:last-child {
        margin-right: 0; }
        @media only screen and (max-width: 480px) {
          .site_footer .contact_us ul li:last-child {
            margin-bottom: 0; } }
    .site_footer .contact_us ul .tel {
      display: block;
      font-size: 3.4rem;
      line-height: 1; }
      .site_footer .contact_us ul .tel i {
        font-size: 2.4rem; }
    .site_footer .contact_us ul .business {
      background-color: #fff;
      display: block;
      text-align: center;
      color: #333333;
      padding: 3px 0;
      font-size: 1.4rem;
      line-height: 1;
      font-weight: bold;
      margin-top: 3px; }
    .site_footer .contact_us ul .btn {
      width: 360px; }
      @media only screen and (max-width: 480px) {
        .site_footer .contact_us ul .btn {
          width: 100%; } }
      .site_footer .contact_us ul .btn a {
        padding: 16px 20px; }
        @media only screen and (max-width: 480px) {
          .site_footer .contact_us ul .btn a {
            padding: 10px 0; } }
    .site_footer .contact_us .longbtn {
      width: 540px;
      margin: 15px auto 0;
      position: relative; }
      .site_footer .contact_us .longbtn a {
        width: 100%;
        display: inline-block;
        padding: 15px 0; }
      .site_footer .contact_us .longbtn::before {
        content: "";
        width: 100%;
        height: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0; }
      .site_footer .contact_us .longbtn:hover {
        background-color: #fff; }
        .site_footer .contact_us .longbtn:hover a {
          background-color: transparent;
          text-decoration: none;
          position: relative;
          z-index: 1; }
        .site_footer .contact_us .longbtn:hover a, .site_footer .contact_us .longbtn:hover input {
          background-color: transparent;
          text-decoration: none;
          position: relative;
          z-index: 1; }
        .site_footer .contact_us .longbtn:hover::before {
          -webkit-transform: scale(1);
          -moz-transform: scale(1);
          -ms-transform: scale(1);
          -o-transform: scale(1);
          transform: scale(1);
          opacity: 1;
          z-index: 0; }
      @media only screen and (max-width: 480px) {
        .site_footer .contact_us .longbtn {
          width: 100%;
          margin-top: 15px; }
          .site_footer .contact_us .longbtn:hover {
            background-color: #fff; } }
    .site_footer .contact_us .btn_merumaga {
      background-color: #DB8B20; }
      .site_footer .contact_us .btn_merumaga:hover a, .site_footer .contact_us .btn_merumaga:hover input {
        color: #DB8B20; }
      .site_footer .contact_us .btn_merumaga::before {
        border: #DB8B20 2px solid; }
  .site_footer .page_top a {
    display: block;
    padding: 8px 0;
    text-align: center;
    font-size: 2rem; }
    .site_footer .page_top a:hover {
      background-color: #293843;
      color: #fff; }
      .site_footer .page_top a:hover i {
        top: -5px; }
    .site_footer .page_top a i {
      position: relative;
      top: 0; }
  .site_footer .flinks {
    border-top: #DBDBDB 1px solid;
    padding: 25px 0; }
    @media only screen and (max-width: 480px) {
      .site_footer .flinks {
        padding: 0; } }
    @media only screen and (max-width: 480px) {
      .site_footer .flinks .inner {
        width: 100%;
        border-bottom: #dbdbdb 1px solid; } }
    .site_footer .flinks li {
      display: inline-block; }
      @media only screen and (max-width: 480px) {
        .site_footer .flinks li {
          display: block;
          width: 50%;
          float: left;
          border-right: #dbdbdb 1px solid;
          border-bottom: #dbdbdb 1px solid;
          -webkit-box-sizing: border-box;
          box-sizing: border-box; } }
      @media only screen and (max-width: 480px) {
        .site_footer .flinks li:nth-child(2n) {
          border-right: none; } }
      @media only screen and (max-width: 480px) {
        .site_footer .flinks li:last-child {
          border-bottom: none; } }
      .site_footer .flinks li a {
        display: block;
        padding: 5px 17px; }
        @media only screen and (max-width: 480px) {
          .site_footer .flinks li a {
            padding: 10px 0;
            text-align: center;
            font-size: 1.2rem; } }
        .site_footer .flinks li a .fa, .site_footer .flinks li a .pnavi a::before, .pnavi .site_footer .flinks li a a::before {
          color: #DC491E; }
      @media only screen and (max-width: 480px) {
        .site_footer .flinks li i {
          display: none; } }
  .site_footer .fcontents {
    background-color: #F4F4F4;
    padding: 40px 0; }
    @media only screen and (max-width: 480px) {
      .site_footer .fcontents {
        padding: 20px 0; } }
    .site_footer .fcontents > div {
      width: 1040px;
      margin: 0 auto; }
      @media only screen and (max-width: 480px) {
        .site_footer .fcontents > div {
          width: 94%; } }
    .site_footer .fcontents h5 {
      color: #DC491E;
      font-size: 2rem;
      margin-bottom: 15px;
      line-height: 1.4; }
    .site_footer .fcontents time {
      color: #999;
      font-size: 1.2rem;
      display: block; }
    .site_footer .fcontents li {
      margin-bottom: 20px; }
      .site_footer .fcontents li:last-child {
        margin-bottom: 0; }
    .site_footer .fcontents .just_item {
      width: 340px; }
      @media only screen and (max-width: 480px) {
        .site_footer .fcontents .just_item {
          width: 100%;
          margin-bottom: 30px; } }
      @media only screen and (max-width: 480px) {
        .site_footer .fcontents .just_item:last-child {
          margin-bottom: 0; } }
    .site_footer .fcontents .companyinfo {
      width: 290px; }
      @media only screen and (max-width: 480px) {
        .site_footer .fcontents .companyinfo {
          width: 100%; } }
      .site_footer .fcontents .companyinfo dl {
        background-color: #fff;
        padding: 20px 20px 0 20px;
        border: #dbdbdb 1px solid;
        margin-bottom: 2px; }
        @media only screen and (max-width: 480px) {
          .site_footer .fcontents .companyinfo dl {
            padding: 20px 20px 10px 20px;
            margin-bottom: 15px; } }
      .site_footer .fcontents .companyinfo dt img {
        height: 100%;
        margin-bottom: 5px; }
      .site_footer .fcontents .companyinfo dd {
        font-size: 1.4rem; }
      .site_footer .fcontents .companyinfo li {
        margin-bottom: 2px; }
      .site_footer .fcontents .companyinfo .outline {
        font-size: 2.6rem;
        font-weight: bold;
        margin-bottom: 10px;
        line-height: 1;
        font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif; }
        @media only screen and (max-width: 480px) {
          .site_footer .fcontents .companyinfo .outline {
            font-size: 3.1rem; } }
      .site_footer .fcontents .companyinfo .tel {
        color: #DC491E;
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 15px; }
        .site_footer .fcontents .companyinfo .tel i {
          font-size: 2.4rem; }
  .site_footer .copyright {
    color: #fff;
    background-color: #DC491E;
    padding: 0.6rem 0;
    left: 50%; }
    @media only screen and (max-width: 480px) {
      .site_footer .copyright {
        padding: 8px 3%; } }
    .site_footer .copyright ul {
      float: left;
      width: 52%; }
      @media only screen and (max-width: 480px) {
        .site_footer .copyright ul {
          float: none;
          width: 100%;
          margin-bottom: 1rem; } }
    .site_footer .copyright li {
      display: inline-block;
      margin-right: 30px; }
      @media only screen and (max-width: 480px) {
        .site_footer .copyright li {
          margin-right: 0;
          display: block; } }
    .site_footer .copyright a {
      color: #fff;
      font-size: 1.4rem; }
      @media only screen and (max-width: 480px) {
        .site_footer .copyright a {
          display: block; } }
    .site_footer .copyright p {
      float: right;
      font-size: 1.2rem; }
      @media only screen and (max-width: 480px) {
        .site_footer .copyright p {
          float: none;
          font-size: .9rem;
          margin-top: 0; } }
  .site_footer .sp_f_nav {
    display: none; }
    @media only screen and (max-width: 480px) {
      .site_footer .sp_f_nav {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 100; } }
    @media only screen and (max-width: 480px) {
      .site_footer .sp_f_nav ul {
        overflow: hidden; } }
    @media only screen and (max-width: 480px) {
      .site_footer .sp_f_nav ul li {
        float: left;
        width: 100%;
        border-top: #fff 1px solid;
        min-height: 50px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; } }
    .site_footer .sp_f_nav ul li a {
      padding: 5px 0; }
    .site_footer .sp_f_nav ul li.sp_f_nav_contact {
      background-color: #DC491E; }

/* site_footer */
/* -------------------------------------------------------------------------

    contents.sass

    各ページ固有のスタイルを定義

------------------------------------------------------------------------- */
/* home - トップページ
------------------------------------------------- */
body.home {
  /* home_content */ }
  body.home .home_content {
    /* #news */
    /* service */
    /* information */
    /* voice */
    /* lawyer */
    /* 2017/07/28 tsujimoto */ }
    body.home .home_content .section_title {
      margin-bottom: 40px;
      padding: 0 0 30px; }
      @media only screen and (max-width: 480px) {
        body.home .home_content .section_title {
          margin-bottom: 30px;
          padding: 0 0 20px; } }
      body.home .home_content .section_title b {
        font-size: 4.4rem; }
        @media only screen and (max-width: 480px) {
          body.home .home_content .section_title b {
            font-size: 2.5rem; } }
    body.home .home_content .image_text_view_l .img, body.home .home_content .image_text_view_r .img {
      margin-left: 10px; }
    body.home .home_content .mainvisual {
      height: 530px;
      background-image: url(../img/index/mainvisual_01.jpg);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover; }
      @media only screen and (max-width: 480px) {
        body.home .home_content .mainvisual {
          height: 225px; } }
      body.home .home_content .mainvisual h2 {
        padding-top: 78px;
        text-align: center; }
        @media only screen and (max-width: 480px) {
          body.home .home_content .mainvisual h2 {
            padding-top: 20px; } }
    body.home .home_content #news .section_title {
      padding-bottom: 25px; }
      body.home .home_content #news .section_title:after {
        left: 0;
        width: 100%;
        height: 2px;
        margin-left: 0; }
    body.home .home_content #news .news_none {
      font-size: 1.2em;
      font-weight: 600;
      text-align: center; }
    body.home .home_content #news .news_list {
      width: 90%;
      margin: 0 auto; }
      @media screen and (max-width: 768px) {
        body.home .home_content #news .news_list {
          width: 100%; } }
    body.home .home_content #news .news_content {
      margin-bottom: 1em; }
      @media screen and (max-width: 768px) {
        body.home .home_content #news .news_content {
          margin-bottom: 2%; }
          body.home .home_content #news .news_content:not(:last-of-type) {
            padding-bottom: 2%;
            border-bottom: 1px solid #DC491E; } }
    body.home .home_content #news .news_date {
      display: inline-block;
      width: 8em;
      max-width: 13%;
      vertical-align: top; }
      @media screen and (max-width: 768px) {
        body.home .home_content #news .news_date {
          max-width: 100%; } }
    body.home .home_content #news .news_title {
      display: inline-block;
      max-width: 65%;
      font-weight: 900;
      vertical-align: top; }
      @media screen and (max-width: 768px) {
        body.home .home_content #news .news_title {
          max-width: 100%;
          font-weight: 400; } }
    body.home .home_content #news .news_cat_list {
      display: inline-block;
      width: 10em;
      max-width: 18%;
      margin-right: 2%;
      vertical-align: top; }
      @media screen and (max-width: 768px) {
        body.home .home_content #news .news_cat_list {
          max-width: 100%; } }
    body.home .home_content #news .news_button {
      text-align: right; }
      body.home .home_content #news .news_button a {
        display: inline-block;
        padding: .5em 1em;
        border: 1px solid #e1e1e1; }
      body.home .home_content #news .news_button .news_icon {
        color: #DC491E; }
    body.home .home_content #service .concept {
      margin-bottom: 40px; }
      body.home .home_content #service .concept .image_text_view_l {
        position: relative; }
      @media only screen and (max-width: 480px) {
        body.home .home_content #service .concept .img {
          width: 100%;
          margin-bottom: 25px;
          margin-left: 0; } }
      body.home .home_content #service .concept .text {
        position: absolute;
        top: 50px;
        right: 0;
        width: 650px;
        padding: 35px 40px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-color: rgba(255, 255, 255, 0.8); }
        @media only screen and (max-width: 480px) {
          body.home .home_content #service .concept .text {
            position: static;
            width: 100%;
            padding: 0;
            background-color: transparent; } }
        body.home .home_content #service .concept .text p {
          margin-bottom: 1em; }
          body.home .home_content #service .concept .text p:last-child {
            margin-bottom: 0; }
    body.home .home_content #information {
      /* h3 */ }
      body.home .home_content #information h3 {
        position: relative;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: #DC491E 3px solid;
        line-height: 1.2; }
        @media only screen and (max-width: 480px) {
          body.home .home_content #information h3 {
            margin-bottom: 15px;
            padding-bottom: 10px; } }
        body.home .home_content #information h3 b {
          display: inline-block;
          margin-right: 20px;
          font-size: 2.4rem; }
          @media only screen and (max-width: 480px) {
            body.home .home_content #information h3 b {
              display: block; } }
        body.home .home_content #information h3 span {
          position: absolute;
          top: 0;
          right: 0; }
          body.home .home_content #information h3 span a {
            display: block;
            padding: 5px 10px;
            border: #dbdbdb 1px solid;
            font-size: 1.4rem; }
            body.home .home_content #information h3 span a i {
              color: #DC491E; }
      body.home .home_content #information .just_item {
        width: 500px; }
        @media only screen and (max-width: 480px) {
          body.home .home_content #information .just_item {
            width: 100%; } }
      @media only screen and (max-width: 480px) {
        body.home .home_content #information #topics {
          margin-bottom: 20px; } }
    body.home .home_content #voice .voice_list .post {
      margin-right: 28px; }
      @media only screen and (max-width: 480px) {
        body.home .home_content #voice .voice_list .post {
          margin-right: 0; } }
      body.home .home_content #voice .voice_list .post:nth-child(2n) {
        margin-right: 28px; }
        @media only screen and (max-width: 480px) {
          body.home .home_content #voice .voice_list .post:nth-child(2n) {
            margin-right: 0; } }
      body.home .home_content #voice .voice_list .post:nth-child(3n) {
        margin-right: 0; }
      @media only screen and (max-width: 480px) {
        body.home .home_content #voice .voice_list .post:last-child {
          margin-bottom: 0; } }
    body.home .home_content #voice .btn {
      width: 400px;
      margin: 0 auto; }
      @media only screen and (max-width: 480px) {
        body.home .home_content #voice .btn {
          width: 100%; } }
    body.home .home_content #lawyer .lawyer_list {
      width: 940px;
      margin: 0 auto 30px;
      text-align: center; }
      @media only screen and (max-width: 480px) {
        body.home .home_content #lawyer .lawyer_list {
          width: 100%; } }
    body.home .home_content #lawyer .post {
      display: inline-block;
      float: none;
      margin-right: 120px; }
      @media only screen and (max-width: 480px) {
        body.home .home_content #lawyer .post {
          float: left;
          margin-right: 4%; } }
      body.home .home_content #lawyer .post:nth-child(3n) {
        margin-right: 0; }
        @media only screen and (max-width: 480px) {
          body.home .home_content #lawyer .post:nth-child(3n) {
            margin-right: 4%; } }
      @media only screen and (max-width: 480px) {
        body.home .home_content #lawyer .post:nth-child(2n) {
          margin-right: 0; } }
      body.home .home_content #lawyer .post:last-child {
        margin-right: 0; }
    body.home .home_content .blog_list article {
      border-bottom: none; }
      body.home .home_content .blog_list article a {
        padding-top: 0; }

/* about - 事務所案内
------------------------------------------------- */
body.about {
  /* vision */
  /* office_info */
  /* mission */ }
  body.about h2 {
    margin-bottom: 4rem; }
  body.about #vision {
    padding-top: 0; }
    body.about #vision .image_text_view_l {
      position: relative; }
    @media only screen and (max-width: 480px) {
      body.about #vision .img {
        width: 100%; } }
    body.about #vision .text {
      position: absolute;
      right: 0;
      bottom: -40px;
      width: 570px;
      padding: 40px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      background-color: #fff; }
      @media only screen and (max-width: 480px) {
        body.about #vision .text {
          position: static;
          width: 100%;
          padding: 0; } }
      body.about #vision .text h3 {
        color: #DC491E;
        font-size: 2.4rem; }
        @media only screen and (max-width: 480px) {
          body.about #vision .text h3 {
            line-height: 1.5; } }
  @media only screen and (max-width: 480px) {
    body.about #office_info .img {
      width: 100%; } }
  body.about #office_info .img li {
    margin-bottom: 10px; }
    @media only screen and (max-width: 480px) {
      body.about #office_info .img li {
        float: left;
        width: 49%;
        margin-right: 2%; } }
    @media only screen and (max-width: 480px) {
      body.about #office_info .img li:last-child {
        margin-right: 0; } }
  body.about #office_info table {
    width: 100%;
    margin-bottom: 40px;
    border-top: #dbdbdb 1px solid;
    text-align: left; }
  body.about #office_info th, body.about #office_info td {
    padding: 15px 20px;
    border-bottom: #dbdbdb 1px solid; }
    @media only screen and (max-width: 480px) {
      body.about #office_info th, body.about #office_info td {
        display: block;
        padding: 7px 10px; } }
  body.about #office_info th {
    width: 25%;
    background-color: #e6e6e6;
    font-weight: 500; }
    @media only screen and (max-width: 480px) {
      body.about #office_info th {
        width: 94%; } }
  body.about #office_info .btn {
    width: 400px; }
    @media only screen and (max-width: 480px) {
      body.about #office_info .btn {
        width: 100%; } }
  body.about #access > p {
    margin-bottom: 30px;
    text-align: center; }
    @media only screen and (max-width: 480px) {
      body.about #access > p {
        margin-bottom: 15px;
        text-align: left; } }
  body.about #access #gmap {
    margin-bottom: 50px; }
  body.about #mission h3 {
    color: #DC491E;
    font-size: 2.4rem;
    text-align: center; }
    @media only screen and (max-width: 480px) {
      body.about #mission h3 {
        text-align: left; } }
    body.about #mission h3 + p {
      margin-bottom: 30px;
      text-align: center; }
      @media only screen and (max-width: 480px) {
        body.about #mission h3 + p {
          margin-bottom: 15px;
          text-align: left; } }
  body.about #mission li {
    float: left;
    width: 48%;
    padding: 13px 10px 13px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-right: #dbdbdb 1px dashed;
    border-bottom: #dbdbdb 1px dashed; }
    @media only screen and (max-width: 480px) {
      body.about #mission li {
        float: none;
        width: 100%;
        border-right: none; } }
    body.about #mission li:nth-child(2n) {
      border-right: none; }
    body.about #mission li:last-child {
      border-bottom: none; }
    body.about #mission li figure {
      display: table-cell;
      width: 100px;
      text-align: center;
      vertical-align: top; }
      @media only screen and (max-width: 480px) {
        body.about #mission li figure {
          width: 15%; } }
      body.about #mission li figure img {
        width: auto; }
    body.about #mission li dl {
      display: table-cell;
      padding-left: 10px;
      vertical-align: top; }
    body.about #mission li dt {
      font-size: 2rem;
      font-weight: bold;
      letter-spacing: 0; }
      @media only screen and (max-width: 480px) {
        body.about #mission li dt {
          line-height: 1.4; } }
    body.about #mission li dd {
      line-height: 1.6;
      letter-spacing: 0; }

/* service - サービス
------------------------------------------------- */
body.service, body.price, body.flow, body.privacy {
  /* plink */
  /* box */ }
  body.service .plink, body.price .plink, body.flow .plink, body.privacy .plink {
    width: 740px;
    margin: 40px auto 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: #DC491E 2px solid; }
    @media only screen and (max-width: 480px) {
      body.service .plink, body.price .plink, body.flow .plink, body.privacy .plink {
        width: 100%; } }
    body.service .plink a, body.price .plink a, body.flow .plink a, body.privacy .plink a {
      display: block;
      position: relative;
      padding: 10px; }
      @media only screen and (max-width: 480px) {
        body.service .plink a, body.price .plink a, body.flow .plink a, body.privacy .plink a {
          padding: 8px; } }
      body.service .plink a::before, body.price .plink a::before, body.flow .plink a::before, body.privacy .plink a::before {
        position: absolute;
        right: 0;
        bottom: 0;
        content: "";
        width: 0;
        height: 0;
        border-width: 0 0 18px 18px;
        border-color: transparent transparent #DC491E transparent;
        border-style: solid; }
      body.service .plink a:hover, body.price .plink a:hover, body.flow .plink a:hover, body.privacy .plink a:hover {
        background-color: #fdf6f4;
        text-decoration: none; }
        body.service .plink a:hover::before, body.price .plink a:hover::before, body.flow .plink a:hover::before, body.privacy .plink a:hover::before {
          border-width: 0 0 28px 28px; }
    @media only screen and (max-width: 480px) {
      body.service .plink .img, body.price .plink .img, body.flow .plink .img, body.privacy .plink .img {
        overflow: hidden;
        position: relative;
        float: left;
        width: 20%;
        margin-right: 10px; } }
    @media only screen and (max-width: 480px) {
      body.service .plink .img img, body.price .plink .img img, body.flow .plink .img img, body.privacy .plink .img img {
        position: relative;
        max-width: 1000%;
        height: 100%;
        margin-left: -50%; } }
    @media only screen and (max-width: 480px) {
      body.service .plink .text, body.price .plink .text, body.flow .plink .text, body.privacy .plink .text {
        overflow: hidden; } }
    body.service .plink dt, body.price .plink dt, body.flow .plink dt, body.privacy .plink dt {
      margin-bottom: 5px;
      color: #DC491E;
      font-size: 2rem;
      font-weight: bold; }
      @media only screen and (max-width: 480px) {
        body.service .plink dt, body.price .plink dt, body.flow .plink dt, body.privacy .plink dt {
          margin-bottom: 0;
          font-size: 1.6rem; } }
    @media only screen and (max-width: 480px) {
      body.service .plink dd, body.price .plink dd, body.flow .plink dd, body.privacy .plink dd {
        font-size: 1.2rem; } }
  body.service .box, body.price .box, body.flow .box, body.privacy .box {
    margin-bottom: 60px;
    /* related */ }
    @media only screen and (max-width: 480px) {
      body.service .box, body.price .box, body.flow .box, body.privacy .box {
        margin-bottom: 40px; } }
    body.service .box p, body.price .box p, body.flow .box p, body.privacy .box p {
      margin-bottom: 1em; }
    body.service .box .related, body.price .box .related, body.flow .box .related, body.privacy .box .related {
      margin-top: 35px; }
      body.service .box .related li, body.price .box .related li, body.flow .box .related li, body.privacy .box .related li {
        display: inline-block;
        width: 400px;
        margin-right: 20px; }
        @media only screen and (max-width: 480px) {
          body.service .box .related li, body.price .box .related li, body.flow .box .related li, body.privacy .box .related li {
            width: 100%;
            margin-right: 0;
            margin-bottom: 5px; } }
        body.service .box .related li:last-child, body.price .box .related li:last-child, body.flow .box .related li:last-child, body.privacy .box .related li:last-child {
          margin-right: 0; }
          @media only screen and (max-width: 480px) {
            body.service .box .related li:last-child, body.price .box .related li:last-child, body.flow .box .related li:last-child, body.privacy .box .related li:last-child {
              margin-bottom: 0; } }
    @media only screen and (max-width: 480px) {
      body.service .box:last-child, body.price .box:last-child, body.flow .box:last-child, body.privacy .box:last-child {
        margin-bottom: 0; } }

/* global - サービス/国際法務
------------------------------------------------- */
body.global #section_01 a.link_continuation::before {
  display: none; }

body.global h5 {
  color: #DC491E; }

/* advisory - サービス/法律顧問契約
------------------------------------------------- */
body.advisory .wrapper, body.price .wrapper {
  margin: 2em 0 4em; }
  body.advisory .wrapper .agreement, body.price .wrapper .agreement {
    float: left;
    width: 48%; }
    @media only screen and (max-width: 480px) {
      body.advisory .wrapper .agreement, body.price .wrapper .agreement {
        float: none;
        width: 100%; } }
    body.advisory .wrapper .agreement:nth-child(2), body.price .wrapper .agreement:nth-child(2) {
      margin-left: 4%; }
      @media only screen and (max-width: 480px) {
        body.advisory .wrapper .agreement:nth-child(2), body.price .wrapper .agreement:nth-child(2) {
          margin-top: 2em;
          margin-left: 0; } }
    body.advisory .wrapper .agreement p, body.price .wrapper .agreement p {
      width: 90%;
      margin: 5px auto 0; }
    body.advisory .wrapper .agreement div, body.price .wrapper .agreement div {
      padding: 1.8em;
      background-color: #f4f4f4; }
      @media only screen and (max-width: 480px) {
        body.advisory .wrapper .agreement div, body.price .wrapper .agreement div {
          padding: 1.4em 1em; } }
      body.advisory .wrapper .agreement div h3, body.price .wrapper .agreement div h3 {
        margin-bottom: .8em;
        color: #DC491E;
        font-size: 1.2em;
        line-height: 1.3; }
        body.advisory .wrapper .agreement div h3 small, body.price .wrapper .agreement div h3 small {
          font-size: .7em;
          font-weight: normal; }
      body.advisory .wrapper .agreement div li, body.price .wrapper .agreement div li {
        line-height: 1.8; }

@media only screen and (max-width: 480px) {
  body.advisory ul.list_circle li, body.price ul.list_circle li {
    line-height: 1.8; } }

/* lawyer - 弁護士紹介
------------------------------------------------- */
body.lawyer .post_single {
  /* profile */ }
  body.lawyer .post_single a {
    color: #DC491E;
    text-decoration: underline; }
    body.lawyer .post_single a:hover {
      text-decoration: none; }
  body.lawyer .post_single .thumb_lawyer {
    float: left;
    width: 200px; }
    @media only screen and (max-width: 480px) {
      body.lawyer .post_single .thumb_lawyer {
        float: none;
        margin: 0 auto 10px; } }
    body.lawyer .post_single .thumb_lawyer .email_wrapper {
      cursor: text; }
      @media screen and (max-width: 480px) {
        body.lawyer .post_single .thumb_lawyer .email_wrapper {
          cursor: pointer; } }
    body.lawyer .post_single .thumb_lawyer .email_link {
      color: #333333;
      text-decoration: none;
      pointer-events: none; }
      @media screen and (max-width: 480px) {
        body.lawyer .post_single .thumb_lawyer .email_link {
          color: #DC491E;
          text-decoration: underline;
          pointer-events: all; } }
    body.lawyer .post_single .thumb_lawyer .email_icon {
      display: none; }
  body.lawyer .post_single .profile {
    float: right;
    width: 500px; }
    @media only screen and (max-width: 480px) {
      body.lawyer .post_single .profile {
        float: none;
        width: 100%; } }
    body.lawyer .post_single .profile h1 {
      margin-bottom: 12px;
      padding-bottom: 4px;
      border-bottom: #d0d0d0 1px dashed;
      color: #999;
      font-size: 1.2rem; }
      body.lawyer .post_single .profile h1 b {
        margin-right: 15px;
        color: #DC491E;
        font-size: 2rem; }
      body.lawyer .post_single .profile h1 + p {
        margin-bottom: 25px; }
    body.lawyer .post_single .profile > div {
      margin-bottom: 25px; }
    body.lawyer .post_single .profile dt {
      display: inline-block;
      margin-bottom: 5px;
      padding: 0 10px;
      border: #DC491E 1px solid;
      color: #DC491E; }
  body.lawyer .post_single .contents {
    clear: both; }
    body.lawyer .post_single .contents > div {
      margin-bottom: 60px; }
    body.lawyer .post_single .contents ul > li {
      list-style-position: inherit;
      list-style-type: none;
      margin-bottom: 0;
      padding-left: 1em;
      text-indent: -1em; }
      body.lawyer .post_single .contents ul > li::before {
        display: inline-block;
        content: "";
        width: 6px;
        height: 6px;
        margin-right: 10px;
        border-radius: 50%;
        background-color: #DC491E;
        vertical-align: middle; }
      body.lawyer .post_single .contents ul > li > * {
        text-indent: 0; }
  body.lawyer .post_single .motto {
    clear: both;
    margin-bottom: 6rem;
    padding: 25px 30px;
    background-color: #f4f4f4; }
    @media only screen and (max-width: 480px) {
      body.lawyer .post_single .motto {
        padding: 10px; } }
    body.lawyer .post_single .motto dt {
      margin-bottom: 5px;
      color: #DC491E;
      font-size: 2rem;
      font-weight: bold; }
  body.lawyer .post_single .division dt {
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: bold; }
    body.lawyer .post_single .division dt i {
      display: inline-block;
      color: #DC491E;
      font-size: 3.5rem;
      line-height: 1;
      vertical-align: middle; }
  body.lawyer .post_single .division dd {
    margin-bottom: 35px; }
    body.lawyer .post_single .division dd:last-of-type {
      margin-bottom: 0; }

/* voice - クライアントの声
------------------------------------------------- */
body.voice .post_single {
  /* header */
  /* contents */
  /* footer */ }
  body.voice .post_single header {
    margin-bottom: 60px; }
    @media only screen and (max-width: 480px) {
      body.voice .post_single header {
        margin-bottom: 30px; } }
    body.voice .post_single header h3 {
      margin-bottom: 8px;
      padding: 0 0 8px;
      border-bottom: 1px dashed #d0d0d0;
      color: #DC491E;
      font-size: 2rem; }
      @media only screen and (max-width: 480px) {
        body.voice .post_single header h3 {
          margin-bottom: 15px;
          padding-bottom: 15px; } }
      body.voice .post_single header h3 + p {
        margin-bottom: 20px; }
  body.voice .post_single .contents h2 {
    margin-bottom: 10px;
    font-size: 1.8rem; }
  body.voice .post_single footer {
    padding: 30px;
    background-color: #f4f4f4; }
    @media only screen and (max-width: 480px) {
      body.voice .post_single footer {
        padding: 10px; } }
    body.voice .post_single footer .img {
      margin-right: 10px; }
      @media only screen and (max-width: 480px) {
        body.voice .post_single footer .img {
          margin-right: auto; } }
    body.voice .post_single footer figure {
      overflow: hidden;
      width: 90px;
      height: 90px;
      border-radius: 50%; }
    body.voice .post_single footer dt {
      color: #DC491E;
      font-weight: bold; }

/* recruit - 採用情報
------------------------------------------------- */
body.recruit {
  /* number_title */
  /* not */
  /* section_03 */ }
  body.recruit .pnavi ul {
    text-align: center; }
  body.recruit .center {
    margin: 2rem 0 4rem;
    text-align: center; }
    @media only screen and (max-width: 480px) {
      body.recruit .center {
        text-align: left; } }
  body.recruit main .inner {
    width: 1040px;
    margin: 0 auto; }
    @media only screen and (max-width: 480px) {
      body.recruit main .inner {
        width: 94%;
        margin: 0 auto; } }
  body.recruit main .bg_gray {
    width: 100%;
    margin-bottom: 5rem;
    padding: 5rem 0;
    background-color: #f4f4f4; }
    @media only screen and (max-width: 480px) {
      body.recruit main .bg_gray {
        width: 100%; } }
    body.recruit main .bg_gray .wrap_bg_gray {
      width: 1040px;
      margin: 0 auto; }
      @media only screen and (max-width: 480px) {
        body.recruit main .bg_gray .wrap_bg_gray {
          width: 94%; } }
  body.recruit .section_title {
    margin-bottom: 4rem; }
    @media only screen and (max-width: 480px) {
      body.recruit .section_title {
        margin-bottom: 2rem; } }
    body.recruit .section_title b {
      font-size: 2.4rem;
      font-weight: bold; }
      @media only screen and (max-width: 480px) {
        body.recruit .section_title b {
          font-size: 2rem;
          line-height: 3rem;
          letter-spacing: .8px; } }
  body.recruit .number_title {
    position: relative;
    margin-bottom: 2rem;
    color: #DC491E;
    font-size: 1.8rem;
    letter-spacing: .8px; }
    @media only screen and (max-width: 480px) {
      body.recruit .number_title {
        font-size: 2rem; } }
    @media only screen and (max-width: 480px) {
      body.recruit .number_title span {
        display: block;
        margin-top: -3.3rem;
        margin-left: 5rem; } }
    body.recruit .number_title::before {
      padding-right: 1.5rem;
      color: #e7886c;
      font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
      font-size: 3.5rem;
      font-style: italic;
      line-height: 0;
      vertical-align: middle; }
      @media only screen and (max-width: 480px) {
        body.recruit .number_title::before {
          font-size: 2.8rem; } }
    body.recruit .number_title:nth-of-type(1)::before {
      content: "01"; }
    body.recruit .number_title:nth-of-type(2)::before {
      content: "02"; }
    body.recruit .number_title:nth-of-type(3)::before {
      content: "03"; }
    body.recruit .number_title:nth-of-type(4)::before {
      content: "04"; }
    body.recruit .number_title:nth-of-type(5)::before {
      content: "05"; }
    body.recruit .number_title:nth-of-type(6)::before {
      content: "06"; }
  body.recruit .box > p {
    margin-bottom: 4rem; }
  body.recruit .icon.arrow_r_02, body.recruit .pagenavi li.prevpostslink a.arrow_r_02, .pagenavi li.prevpostslink body.recruit a.arrow_r_02, body.recruit .pagenavi li.nextpostslink a.arrow_r_02, .pagenavi li.nextpostslink body.recruit a.arrow_r_02, body.recruit .pagenavi li.list a.arrow_r_02, .pagenavi li.list body.recruit a.arrow_r_02, body.recruit body.voice .post_single .contents h2, body.voice .post_single .contents body.recruit h2, body.recruit body.blog article.post_single .contents h2, body.blog article.post_single .contents body.recruit h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem; }
    body.recruit .icon.arrow_r_02 span, body.recruit .pagenavi li.prevpostslink a.arrow_r_02 span, .pagenavi li.prevpostslink body.recruit a.arrow_r_02 span, body.recruit .pagenavi li.nextpostslink a.arrow_r_02 span, .pagenavi li.nextpostslink body.recruit a.arrow_r_02 span, body.recruit .pagenavi li.list a.arrow_r_02 span, .pagenavi li.list body.recruit a.arrow_r_02 span, body.recruit body.voice .post_single .contents h2 span, body.voice .post_single .contents body.recruit h2 span, body.recruit body.blog article.post_single .contents h2 span, body.blog article.post_single .contents body.recruit h2 span {
      display: block;
      margin-top: -3.3rem;
      margin-left: 2rem; }
  body.recruit .image_text_view_r {
    margin-bottom: 5rem; }
  body.recruit .not {
    padding-top: 2rem;
    border-top: 1px dashed #e2e2e2; }
    body.recruit .not p {
      margin-bottom: 2rem; }
    body.recruit .not li {
      float: left; }
      body.recruit .not li:first-child {
        margin-right: 4rem; }
        @media only screen and (max-width: 480px) {
          body.recruit .not li:first-child {
            margin-right: 0; } }
  body.recruit #section_03 table {
    width: 100%;
    border-top: 1px solid #dedede; }
    @media only screen and (max-width: 480px) {
      body.recruit #section_03 table {
        border: none; } }
    body.recruit #section_03 table tr {
      border-bottom: 1px solid #dedede; }
      @media only screen and (max-width: 480px) {
        body.recruit #section_03 table tr {
          border-bottom: none; } }
    body.recruit #section_03 table th {
      width: 18%;
      padding: 1.5rem 2.5rem;
      border-right: 1px solid #dedede;
      background-color: #e6e6e6;
      text-align: left; }
      @media only screen and (max-width: 480px) {
        body.recruit #section_03 table th {
          display: block;
          width: auto;
          padding: 1rem 1.5rem;
          border-right: none; } }
    body.recruit #section_03 table td {
      padding: 1.5rem 2.5rem; }
      @media only screen and (max-width: 480px) {
        body.recruit #section_03 table td {
          display: block;
          width: auto;
          padding: 1rem 0; } }
      body.recruit #section_03 table td p {
        margin-bottom: 2rem; }
      @media only screen and (max-width: 480px) {
        body.recruit #section_03 table td li:first-child {
          margin-bottom: 1rem; } }
  body.recruit .page_content {
    margin-bottom: 5rem; }

/* contact - お問い合わせ
------------------------------------------------- */
body.contact #contact, body.coverage #contact {
  padding-top: 0; }
  body.contact #contact > p, body.coverage #contact > p {
    text-align: center; }
    @media only screen and (max-width: 480px) {
      body.contact #contact > p, body.coverage #contact > p {
        text-align: left; } }
  body.contact #contact > a.tel, body.coverage #contact > a.tel {
    margin-right: 2rem;
    font-size: 3rem; }
  body.contact #contact i.tokyo_office, body.coverage #contact i.tokyo_office {
    margin-top: 20px; }

body.contact .border_title, body.coverage .border_title, body.contact body.voice .post_single .contents h1, body.voice .post_single .contents body.contact h1, body.coverage body.voice .post_single .contents h1, body.voice .post_single .contents body.coverage h1, body.contact body.blog article.post_single .contents h1, body.blog article.post_single .contents body.contact h1, body.coverage body.blog article.post_single .contents h1, body.blog article.post_single .contents body.coverage h1 {
  margin-top: 5rem; }

body.contact small, body.coverage small {
  font-size: 1.5rem; }
  @media only screen and (max-width: 480px) {
    body.contact small, body.coverage small {
      display: block; } }

body.contact form table, body.coverage form table {
  width: 100%;
  margin-bottom: 4rem;
  border-top: 1px solid #dedede; }
  @media only screen and (max-width: 480px) {
    body.contact form table, body.coverage form table {
      border: none; } }
  body.contact form table tr, body.coverage form table tr {
    border-bottom: 1px solid #dedede; }
    @media only screen and (max-width: 480px) {
      body.contact form table tr, body.coverage form table tr {
        border-bottom: none; } }
  body.contact form table th, body.coverage form table th {
    width: 34%;
    padding: 2.5rem;
    border-right: 1px solid #dedede;
    background-color: #e6e6e6;
    text-align: left;
    vertical-align: top; }
    @media only screen and (max-width: 480px) {
      body.contact form table th, body.coverage form table th {
        display: block;
        width: auto;
        padding: 1rem 1.5rem;
        border-right: none; } }
    body.contact form table th span, body.coverage form table th span {
      display: block;
      float: right;
      padding: .3rem 1.2rem;
      background-color: #DC491E;
      color: #fff; }
      @media only screen and (max-width: 480px) {
        body.contact form table th span, body.coverage form table th span {
          padding: 0 1.2rem; } }
  body.contact form table td, body.coverage form table td {
    padding: 2.5rem;
    color: #999;
    font-size: 1.6rem; }
    body.contact form table td input, body.coverage form table td input, body.contact form table td textarea, body.coverage form table td textarea {
      border: 1px solid #d4d4d4; }
      @media only screen and (max-width: 480px) {
        body.contact form table td input, body.coverage form table td input, body.contact form table td textarea, body.coverage form table td textarea {
          padding: .8rem; } }
    @media only screen and (max-width: 480px) {
      body.contact form table td, body.coverage form table td {
        display: block;
        width: auto;
        padding: 1rem 0 1.4rem; } }

body.contact form div, body.coverage form div {
  display: inline-block;
  width: 400px;
  margin: 0 auto;
  color: #fff; }
  @media only screen and (max-width: 480px) {
    body.contact form div, body.coverage form div {
      width: 100%; } }
  body.contact form div:hover, body.coverage form div:hover {
    color: #293843; }
  body.contact form div input, body.coverage form div input {
    width: 100%; }

body.contact .mw_wp_form_confirm .submitBack_wrap, body.coverage .mw_wp_form_confirm .submitBack_wrap {
  margin: 0 15px 0 110px; }
  @media only screen and (max-width: 480px) {
    body.contact .mw_wp_form_confirm .submitBack_wrap, body.coverage .mw_wp_form_confirm .submitBack_wrap {
      margin: 0 0 2rem; } }

body.contact main, body.coverage main {
  border-bottom: 1px solid #dbdbdb; }

body.contact .contact_us, body.coverage .contact_us {
  display: none; }

/* blog - ブログ詳細
------------------------------------------------- */
body.blog {
  /* post_single */
  /* pagenavi */ }
  body.blog .wp-pagenavi span.current {
    border-color: #DC491E; }
  body.blog article.post_single {
    /* header */
    /* contents */
    /* footer */ }
    body.blog article.post_single header {
      margin-bottom: 1rem; }
      body.blog article.post_single header p.category {
        font-size: 1.3rem;
        font-weight: bold; }
      body.blog article.post_single header h3 {
        padding: 0 0 8px;
        border-bottom: 1px dashed #d0d0d0;
        color: #DC491E;
        font-size: 2rem; }
    body.blog article.post_single .contents h2 {
      margin-bottom: 10px;
      font-size: 1.8rem; }
    body.blog article.post_single .contents h3 {
      color: #DC491E;
      font-size: 1.8rem; }
      body.blog article.post_single .contents h3::before {
        display: none; }
    @media only screen and (max-width: 480px) {
      body.blog article.post_single .contents p.img {
        text-align: center; } }
    @media only screen and (max-width: 480px) {
      body.blog article.post_single .contents p.md img {
        width: 70%; } }
    @media only screen and (max-width: 480px) {
      body.blog article.post_single .contents p.sm img {
        width: 40%; } }
    body.blog article.post_single .contents u {
      background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #f8dcd4));
      background: -webkit-linear-gradient(transparent 50%, #f8dcd4 0%);
      background: -o-linear-gradient(transparent 50%, #f8dcd4 0%);
      background: linear-gradient(transparent 50%, #f8dcd4 0%);
      text-decoration: none; }
    body.blog article.post_single .contents .wp-caption {
      max-width: 100% !important; }
    body.blog article.post_single .date_author {
      /*border-top: 1px solid $color_line;*/
      /*padding-top: 2rem;*/
      padding-bottom: 2rem; }
      body.blog article.post_single .date_author .author {
        float: right; }
    body.blog article.post_single footer {
      margin-top: 4rem;
      padding: 0;
      background-color: transparent;
      /* single_f_bnr */ }
      body.blog article.post_single footer a.single_f_bnr {
        display: block;
        overflow: hidden;
        position: relative;
        width: 100%;
        margin-bottom: 4rem;
        padding: 5px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
        body.blog article.post_single footer a.single_f_bnr::after {
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          content: "";
          width: 100%;
          height: 100%;
          background-image: url(../img/blog/single_bnr.png);
          background-size: cover; }
          @media only screen and (max-width: 480px) {
            body.blog article.post_single footer a.single_f_bnr::after {
              background-position: center; } }
        body.blog article.post_single footer a.single_f_bnr:hover::after {
          opacity: .9;
          -webkit-transform: scale(1.1);
          -moz-transform: scale(1.1);
          -ms-transform: scale(1.1);
          transform: scale(1.1); }
        body.blog article.post_single footer a.single_f_bnr div {
          position: relative;
          z-index: 1;
          width: 100%;
          height: 118px;
          height: 120px;
          -webkit-box-sizing: border-box;
          box-sizing: border-box;
          border: 1px solid #fff;
          color: #fff;
          text-align: center; }
          @media only screen and (max-width: 480px) {
            body.blog article.post_single footer a.single_f_bnr div {
              height: 100px; } }
          body.blog article.post_single footer a.single_f_bnr div span {
            display: block;
            position: absolute;
            top: 50%;
            left: 0;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 100%;
            font-weight: bold; }
            @media only screen and (max-width: 480px) {
              body.blog article.post_single footer a.single_f_bnr div span {
                font-size: 1.2rem; } }
            body.blog article.post_single footer a.single_f_bnr div span b {
              font-size: 2.4rem; }
              @media only screen and (max-width: 480px) {
                body.blog article.post_single footer a.single_f_bnr div span b {
                  fon-size: 1.6rem; } }
          body.blog article.post_single footer a.single_f_bnr div::before {
            position: absolute;
            right: 0;
            bottom: 0;
            content: "";
            width: 0;
            height: 0;
            border-width: 0 0 16px 16px;
            border-color: transparent transparent #fff transparent;
            border-style: solid; }
          body.blog article.post_single footer a.single_f_bnr div:hover::before {
            border-width: 0 0 20px 20px; }
      body.blog article.post_single footer .share {
        text-align: center; }
  body.blog .pagenavi {
    margin-top: 4rem; }
    body.blog .pagenavi li.prevpostslink a, body.blog .pagenavi li.nextpostslink a {
      border-color: #d0d0d0; }
      body.blog .pagenavi li.prevpostslink a:hover, body.blog .pagenavi li.nextpostslink a:hover {
        border-color: #293843;
        background-color: #293843; }
    body.blog .pagenavi li.list a {
      border-top-color: #293843;
      border-right-color: #293843;
      border-bottom-color: #293843;
      border-left-color: #293843;
      background-color: #293843; }
      body.blog .pagenavi li.list a:hover {
        border-top-color: #d0d0d0;
        border-right-color: #d0d0d0;
        border-bottom-color: #d0d0d0;
        border-left-color: #d0d0d0;
        background-color: #fff;
        color: #293843; }
  body.blog .relation_posts {
    margin-bottom: 6rem; }
    @media only screen and (max-width: 480px) {
      body.blog .relation_posts {
        margin-bottom: 3rem; } }
    body.blog .relation_posts li {
      float: left;
      width: 160px; }
      @media only screen and (max-width: 480px) {
        body.blog .relation_posts li {
          float: none;
          width: 100%;
          margin-bottom: 1rem;
          padding-bottom: 1rem;
          border-bottom: 1px dotted #d0d0d0; } }
      body.blog .relation_posts li:not(:last-child) {
        margin-right: 2.6rem; }
        @media only screen and (max-width: 480px) {
          body.blog .relation_posts li:not(:last-child) {
            margin-right: 0; } }
      body.blog .relation_posts li figure {
        display: block;
        position: relative;
        height: 112px;
        margin-bottom: .5rem; }
        @media only screen and (max-width: 480px) {
          body.blog .relation_posts li figure {
            float: left;
            clear: both;
            width: 28%; } }
        body.blog .relation_posts li figure img {
          display: block;
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
          @media only screen and (max-width: 480px) {
            body.blog .relation_posts li figure img {
              top: 0;
              -webkit-transform: none;
              -ms-transform: none;
              transform: none; } }
      @media only screen and (max-width: 480px) {
        body.blog .relation_posts li div {
          float: right;
          width: 69%; } }
      body.blog .relation_posts li time {
        color: #999;
        font-size: 1.2rem; }

/* お知らせ
--------------------------------------------------- */
body.news .news_cat_list {
  margin-bottom: .5em; }

/* price - メニュー・料金
-------------------------------------------------　*/
body.price main .orange {
  color: #DC491E;
  font-size: 2rem; }
  @media only screen and (max-width: 480px) {
    body.price main .orange {
      font-size: 1.8rem; } }

body.price main .section_title {
  margin-bottom: 3rem; }

body.price main .border_title span, body.price main body.voice .post_single .contents h1 span, body.voice .post_single .contents body.price main h1 span, body.price main body.blog article.post_single .contents h1 span, body.blog article.post_single .contents body.price main h1 span {
  display: block;
  float: right;
  font-size: 1.8rem; }
  @media only screen and (max-width: 480px) {
    body.price main .border_title span, body.price main body.voice .post_single .contents h1 span, body.voice .post_single .contents body.price main h1 span, body.price main body.blog article.post_single .contents h1 span, body.blog article.post_single .contents body.price main h1 span {
      font-size: 1.6rem; } }

body.price main #section_03 > .list_circle {
  margin-bottom: 2rem; }

body.price main #section_07 dl {
  margin-bottom: 2rem;
  padding: 2rem 2rem;
  background: #f4f4f4; }
  body.price main #section_07 dl dt {
    margin-bottom: .5rem;
    border-bottom: 1px solid #DC491E;
    color: #DC491E;
    font-size: 1.8rem; }
  body.price main #section_07 dl dd {
    margin-bottom: 1rem; }
    body.price main #section_07 dl dd:last-child {
      margin-bottom: 0; }

body.price main #section_07 table {
  margin-bottom: 2rem;
  border: 1px solid #dddddd; }
  @media only screen and (max-width: 480px) {
    body.price main #section_07 table {
      width: 100%;
      border-top: none;
      border-right: none; } }
  @media only screen and (max-width: 480px) {
    body.price main #section_07 table thead {
      display: none; } }
  body.price main #section_07 table th, body.price main #section_07 table td {
    padding: 1rem 1.5rem;
    border-top: 1px solid #dddddd;
    border-right: 1px solid #dddddd; }
    @media only screen and (max-width: 480px) {
      body.price main #section_07 table th, body.price main #section_07 table td {
        display: block;
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; } }
  body.price main #section_07 table th {
    background: #f8dcd4;
    text-align: left; }
  @media only screen and (max-width: 480px) {
    body.price main #section_07 table td::before {
      float: left;
      clear: both;
      content: attr(data-text) " ： ";
      font-weight: bold; } }

/* flow - 相談の流れ
------------------------------------------------- */
/* coverage - 取材受付・セミナー依頼
------------------------------------------------- */
body.coverage #contact > p {
  margin-bottom: 3rem; }

body.coverage #contact form {
  margin-bottom: 5rem;
  padding-bottom: 5rem; }

body.coverage #contact .mw_wp_form_input form {
  border-bottom: 1px solid #dddddd; }

body.coverage #contact #detail .orange {
  margin-bottom: 2rem;
  color: #DC491E;
  font-size: 1.8rem; }

body.coverage #contact #detail dt {
  font-size: 1.8rem; }

body.coverage #contact #detail dd {
  margin-bottom: 1.5rem; }
  body.coverage #contact #detail dd p {
    margin-bottom: 1rem; }

/* privacy - プライバシーポリシー
------------------------------------------------- */
body.privacy #section_02 > ul {
  list-style-type: decimal;
  margin-left: 2rem; }
  body.privacy #section_02 > ul ul {
    list-style-type: lower-alpha;
    margin-top: 1rem;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    background: #f4f4f4; }
    body.privacy #section_02 > ul ul ul {
      list-style-type: lower-roman;
      margin-top: 0;
      padding-top: 0;
      padding-left: 2rem; }

body.privacy #section_04 > ul {
  list-style-type: decimal;
  margin-left: 2rem; }
  body.privacy #section_04 > ul > li {
    margin-bottom: 2rem; }
    body.privacy #section_04 > ul > li:nth-child(5) > ul {
      list-style-type: decimal;
      margin-left: 3.5rem; }
      body.privacy #section_04 > ul > li:nth-child(5) > ul > li {
        margin-bottom: 2rem; }

/* sitemap - サイトマップ
------------------------------------------------- */
body.sitemap #contents {
  padding-top: 0; }
  body.sitemap #contents > ul {
    float: left; }
    @media only screen and (max-width: 480px) {
      body.sitemap #contents > ul {
        float: none; } }
    body.sitemap #contents > ul:last-child {
      margin-left: 10rem; }
      @media only screen and (max-width: 480px) {
        body.sitemap #contents > ul:last-child {
          margin-left: 0; } }
    body.sitemap #contents > ul li {
      margin-bottom: 2rem; }
      body.sitemap #contents > ul li .fa-caret-right {
        color: #DC491E; }
      body.sitemap #contents > ul li a {
        color: #DC491E; }
      body.sitemap #contents > ul li > ul {
        margin-top: 2rem; }
        body.sitemap #contents > ul li > ul li {
          margin-bottom: 2rem;
          margin-left: 2rem; }
          body.sitemap #contents > ul li > ul li a {
            color: #333333; }

/* 404 - notfound
------------------------------------------------- */
article#notfound {
  margin-bottom: 5rem; }
  article#notfound .tC p {
    margin-bottom: 1rem; }
  article#notfound .btn {
    width: 300px;
    margin-top: 3rem; }
    @media only screen and (max-width: 480px) {
      article#notfound .btn {
        width: 100%; } }

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

    contents.sass

    各ページ固有のスタイルを定義

------------------------------------------------------------------------- */
body.en {
  word-break: break-all;
  word-break: break-word; }
  body.en .site_footer #tocontact {
    border: none; }
  body.en .site_footer .fcontents .just_item {
    width: 300px; }
    @media only screen and (max-width: 480px) {
      body.en .site_footer .fcontents .just_item {
        width: 100%; } }
  body.en .page_top {
    border-top: #dbdbdb 1px solid;
    border-bottom: #dbdbdb 1px solid; }
  body.en .footer_logo {
    text-align: center; }
  body.en .companyinfo {
    margin-bottom: 15px; }
  body.en .tel_area .tel {
    color: #DC491E;
    font-size: 3rem;
    line-height: 1.2; }
  body.en .lawyer_list .post dt {
    font-size: 1.6rem; }
    body.en .lawyer_list .post dt a {
      color: #999; }
      body.en .lawyer_list .post dt a:hover {
        color: #DC491E; }
  body.en .lawyer_list .post dd {
    font-size: 1.4rem; }
  body.en .footer_logo {
    margin-bottom: 20px; }

/* home - トップページ
------------------------------------------------- */
body.en {
  /* home_content */ }
  body.en .home_content {
    /* #news */
    /* service */
    /* information */
    /* voice */
    /* lawyer */
    /* 2017/07/28 tsujimoto */ }
    body.en .home_content .section_title {
      margin-bottom: 40px;
      padding: 0 0 30px; }
      @media only screen and (max-width: 480px) {
        body.en .home_content .section_title {
          margin-bottom: 30px;
          padding: 0 0 20px; } }
      body.en .home_content .section_title b {
        font-size: 4.4rem; }
        @media only screen and (max-width: 480px) {
          body.en .home_content .section_title b {
            font-size: 2.5rem; } }
    body.en .home_content .image_text_view_l .img {
      margin-bottom: 350px; }
    body.en .home_content .mainvisual {
      height: 530px;
      background-image: url(../img/index/mainvisual_01.jpg);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover; }
      @media only screen and (max-width: 480px) {
        body.en .home_content .mainvisual {
          height: 225px; } }
      body.en .home_content .mainvisual h2 {
        padding-top: 78px;
        color: #fff;
        text-align: center;
        text-shadow: 2px 2px 2px rgba(46, 61, 125, 0.3); }
        @media only screen and (max-width: 480px) {
          body.en .home_content .mainvisual h2 {
            padding-top: 20px;
            font-size: 1.4rem;
            line-height: 1.3; } }
    body.en .home_content #news .section_title {
      padding-bottom: 25px; }
      body.en .home_content #news .section_title:after {
        left: 0;
        width: 100%;
        height: 2px;
        margin-left: 0; }
    body.en .home_content #news .news_none {
      font-size: 1.2em;
      font-weight: 600;
      text-align: center; }
    body.en .home_content #news .news_list {
      width: 90%;
      margin: 0 auto; }
      @media screen and (max-width: 768px) {
        body.en .home_content #news .news_list {
          width: 100%; } }
    body.en .home_content #news .news_content {
      margin-bottom: 1em; }
      @media screen and (max-width: 768px) {
        body.en .home_content #news .news_content {
          margin-bottom: 2%; }
          body.en .home_content #news .news_content:not(:last-of-type) {
            padding-bottom: 2%;
            border-bottom: 1px solid #DC491E; } }
    body.en .home_content #news .news_date {
      display: inline-block;
      width: 8em;
      max-width: 13%;
      vertical-align: top; }
      @media screen and (max-width: 768px) {
        body.en .home_content #news .news_date {
          max-width: 100%; } }
    body.en .home_content #news .news_title {
      display: inline-block;
      max-width: 65%;
      font-weight: 900;
      vertical-align: top; }
      @media screen and (max-width: 768px) {
        body.en .home_content #news .news_title {
          max-width: 100%;
          font-weight: 400; } }
    body.en .home_content #news .news_cat_list {
      display: inline-block;
      width: 10em;
      max-width: 18%;
      margin-right: 2%;
      vertical-align: top; }
      @media screen and (max-width: 768px) {
        body.en .home_content #news .news_cat_list {
          max-width: 100%; } }
    body.en .home_content #news .news_button {
      text-align: right; }
      body.en .home_content #news .news_button a {
        display: inline-block;
        padding: .5em 1em;
        border: 1px solid #e1e1e1; }
      body.en .home_content #news .news_button .news_icon {
        color: #DC491E; }
    body.en .home_content #service .concept {
      margin-bottom: 40px; }
      body.en .home_content #service .concept .image_text_view_l {
        position: relative; }
      @media only screen and (max-width: 480px) {
        body.en .home_content #service .concept .img {
          width: 100%;
          margin-bottom: 25px;
          margin-left: 0; } }
      body.en .home_content #service .concept .text {
        position: absolute;
        top: 50px;
        right: 0;
        width: 650px;
        padding: 35px 40px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-color: rgba(255, 255, 255, 0.8); }
        @media only screen and (max-width: 480px) {
          body.en .home_content #service .concept .text {
            position: static;
            width: 100%;
            padding: 0;
            background-color: transparent; } }
        body.en .home_content #service .concept .text p {
          margin-bottom: 1em; }
          body.en .home_content #service .concept .text p:last-child {
            margin-bottom: 0; }
    body.en .home_content #information {
      /* h3 */ }
      body.en .home_content #information h3 {
        position: relative;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: #DC491E 3px solid;
        line-height: 1.2; }
        @media only screen and (max-width: 480px) {
          body.en .home_content #information h3 {
            margin-bottom: 15px;
            padding-bottom: 10px; } }
        body.en .home_content #information h3 b {
          display: inline-block;
          margin-right: 20px;
          font-size: 2.4rem; }
          @media only screen and (max-width: 480px) {
            body.en .home_content #information h3 b {
              display: block; } }
        body.en .home_content #information h3 span {
          position: absolute;
          top: 0;
          right: 0; }
          body.en .home_content #information h3 span a {
            display: block;
            padding: 5px 10px;
            border: #dbdbdb 1px solid;
            font-size: 1.4rem; }
            body.en .home_content #information h3 span a i {
              color: #DC491E; }
      body.en .home_content #information .just_item {
        width: 500px; }
        @media only screen and (max-width: 480px) {
          body.en .home_content #information .just_item {
            width: 100%; } }
      @media only screen and (max-width: 480px) {
        body.en .home_content #information #topics {
          margin-bottom: 20px; } }
    body.en .home_content #voice .voice_list .post {
      margin-right: 28px; }
      @media only screen and (max-width: 480px) {
        body.en .home_content #voice .voice_list .post {
          margin-right: 0; } }
      body.en .home_content #voice .voice_list .post:nth-child(2n) {
        margin-right: 28px; }
        @media only screen and (max-width: 480px) {
          body.en .home_content #voice .voice_list .post:nth-child(2n) {
            margin-right: 0; } }
      body.en .home_content #voice .voice_list .post:nth-child(3n) {
        margin-right: 0; }
      @media only screen and (max-width: 480px) {
        body.en .home_content #voice .voice_list .post:last-child {
          margin-bottom: 0; } }
    body.en .home_content #voice .btn {
      width: 400px;
      margin: 0 auto; }
      @media only screen and (max-width: 480px) {
        body.en .home_content #voice .btn {
          width: 100%; } }
    body.en .home_content #lawyer .lawyer_list {
      text-align: left; }
      @media only screen and (max-width: 480px) {
        body.en .home_content #lawyer .lawyer_list {
          width: 100%; } }
    body.en .home_content #lawyer .post {
      display: inline-block;
      float: none;
      margin-right: 120px; }
      @media only screen and (max-width: 480px) {
        body.en .home_content #lawyer .post {
          float: left;
          margin-right: 4%; } }
      body.en .home_content #lawyer .post:nth-child(3n) {
        margin-right: 0; }
        @media only screen and (max-width: 480px) {
          body.en .home_content #lawyer .post:nth-child(3n) {
            margin-right: 4%; } }
      @media only screen and (max-width: 480px) {
        body.en .home_content #lawyer .post:nth-child(2n) {
          margin-right: 0; } }
      body.en .home_content #lawyer .post:last-child {
        margin-right: 0; }
    body.en .home_content .blog_list article {
      border-bottom: none; }
      body.en .home_content .blog_list article a {
        padding-top: 0; }
  @media only screen and (max-width: 480px) {
    body.en .service_list .item {
      margin-right: 4%; } }
  @media only screen and (max-width: 480px) {
    body.en .service_list .item:nth-child(even) {
      margin-right: 0; } }
  @media only screen and (max-width: 480px) {
    body.en .service_list .item dl {
      padding-bottom: 25px; } }
  body.en .service_list .item dt {
    text-align: left; }
  body.en.blog article.post_single .contents ol li {
    list-style: decimal inside;
    margin-bottom: 10px; }
  body.en.blog article.post_single .contents .sub_title {
    display: block;
    position: relative;
    padding-left: 1.5em; }
    body.en.blog article.post_single .contents .sub_title:before {
      position: absolute;
      top: .8rem;
      left: 0;
      content: "\f0dd";
      font-family: "FontAwesome";
      font-size: 1.5em;
      font-weight: 900;
      line-height: 0; }
  body.en.blog article.post_single .contents .text_color {
    color: #f60; }
  body.en.about .text_link {
    color: #DC491E;
    text-decoration: underline; }
    body.en.about .text_link:hover {
      text-decoration: none; }
  body.en.about a[href^="tel:"] {
    cursor: default;
    pointer-events: none; }
    @media only screen and (max-width: 480px) {
      body.en.about a[href^="tel:"] {
        cursor: pointer;
        pointer-events: all; } }
  body.en.about #access #gmap_tokyo_en {
    margin-bottom: 50px; }
  body.en.service .service_list, body.en.price .service_list, body.en.flow .service_list, body.en.privacy .service_list {
    margin: 40px auto 30px; }

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

		print.sass
		
		印刷用のスタイルを定義
		
------------------------------------------------------------------------- */
@media print {
  /* IE zoom
	------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7; }
  /* for IE7 */
  * + html body {
    zoom: 1; } }
