@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.2em;
  list-style: disc;
}

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

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

.list_decimal_zero {
  margin-left: 2.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 {
  text-decoration: underline;
  color: #DC491E;
}
a.img_hover:hover img {
  opacity: 0.7;
}
a.tel {
  cursor: default;
  pointer-events: none;
  display: inline-block;
}
@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;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/*img
------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  height: auto;
  max-width: 100%;
  -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;
  -ms-transition: 　none;
}

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

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

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

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

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

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

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

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

.right_column {
  float: right;
}

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

.pagenavi {
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .pagenavi {
    width: 94%;
  }
}
.pagenavi li {
  width: 33%;
  float: left;
}
@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: -0.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 {
  background-color: transparent;
  display: block;
  border: none;
}
.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 {
  text-align: center;
  color: #fff;
  padding: 13px 20px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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 {
  content: "";
  width: 100%;
  height: 100%;
  border: #293843 2px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.btn.navy:hover a, .btn.navy:hover input {
  background-color: transparent;
  color: #293843;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.btn.navy:hover::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  z-index: 0;
}
.btn.orange {
  position: relative;
}
.btn.orange a, .btn.orange input {
  background-color: #DC491E;
}
.btn.orange::before {
  content: "";
  width: 100%;
  height: 100%;
  border: #DC491E 2px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.btn.orange:hover {
  background-color: #fff;
}
.btn.orange:hover a, .btn.orange:hover input {
  background-color: transparent;
  color: #DC491E;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.btn.orange:hover::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  z-index: 0;
}
.btn.arrow_r {
  position: relative;
}
.btn.arrow_r i {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1;
  font-size: 1.7rem;
  margin-right: 0;
}

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

.border_title, body.blog article.post_single .contents h1, body.voice .post_single .contents h1,
body.single .contents h1,
body.blog .contents h1 {
  border-top: #DC491E 2px solid;
  border-bottom: #D0D0D0 1px solid;
  color: #DC491E;
  font-size: 2rem;
  padding: 8px 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 480px) {
  .border_title, body.blog article.post_single .contents h1, body.voice .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 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 4rem;
}
body.single .contents h2::after, body.single .contents h2::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}
body.single .contents h2::before {
  margin-right: 0.3em;
}
body.single .contents h2::before {
  content: "\f0da";
  color: #DC491E;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.1;
  vertical-align: middle;
}
body.single .contents h3 {
  text-indent: -1em;
  padding-left: 1em;
  font-weight: 500;
}
body.single .contents h3::before {
  content: "";
  background-color: #DC491E;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
body.single .contents h3 > * {
  text-indent: 0;
}

/* icon
------------------------------------------------- */
.icon::after, body.blog article.post_single .contents h2::after, body.voice .post_single .contents h2::after, .pagenavi li.prevpostslink a::after, .pagenavi li.nextpostslink a::after, .pagenavi li.list a::after, .icon::before, body.blog article.post_single .contents h2::before, body.voice .post_single .contents h2::before, .pagenavi li.prevpostslink a::before, .pagenavi li.nextpostslink a::before, .pagenavi li.list a::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}
.icon::before, body.blog article.post_single .contents h2::before, body.voice .post_single .contents h2::before, .pagenavi li.prevpostslink a::before, .pagenavi li.nextpostslink a::before, .pagenavi li.list a::before {
  margin-right: 0.3em;
}
.icon.arrow_r_01::before, body.blog article.post_single .contents h2.arrow_r_01::before, body.voice .post_single .contents h2.arrow_r_01::before, .pagenavi li.prevpostslink a.arrow_r_01::before, .pagenavi li.list a.arrow_r_01::before, .pagenavi li.nextpostslink a::before {
  content: "\f105";
  color: #DC491E;
  font-weight: bold;
}
.icon.arrow_r_02, body.blog article.post_single .contents h2, body.voice .post_single .contents h2, .pagenavi li.prevpostslink a.arrow_r_02, .pagenavi li.nextpostslink a.arrow_r_02, .pagenavi li.list a.arrow_r_02 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.icon.arrow_r_02::before, body.blog article.post_single .contents h2::before, body.voice .post_single .contents h2::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 {
  content: "\f0da";
  color: #DC491E;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.1;
  vertical-align: middle;
}
.icon.arrow_l_01::before, body.blog article.post_single .contents h2.arrow_l_01::before, body.voice .post_single .contents h2.arrow_l_01::before, .pagenavi li.nextpostslink a.arrow_l_01::before, .pagenavi li.list a.arrow_l_01::before, .pagenavi li.prevpostslink a::before {
  content: "\f104";
  color: #DC491E;
}
.icon.list::before, body.blog article.post_single .contents h2.list::before, body.voice .post_single .contents h2.list::before, .pagenavi li.prevpostslink a.list::before, .pagenavi li.nextpostslink a.list::before, .pagenavi li.list a::before {
  content: "\f0ca";
}

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

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

/* voice_list
------------------------------------------------- */
.voice_list {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 480px) {
  .voice_list {
    display: block;
  }
}
.voice_list .post {
  -ms-flex-preferred-size: 328px;
      flex-basis: 328px;
  margin-right: 40px;
  margin-bottom: 25px;
  float: left;
  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 {
  text-align: center;
  font-size: 1.8rem;
  border-bottom: #DC491E 3px solid;
  margin: 0 6px 15px;
  padding: 0 0 5px;
}
@media only screen and (max-width: 480px) {
  .voice_list .voice_comp {
    font-size: 1.6rem;
  }
}
.voice_list figure.logo {
  margin: 0 0 12px;
  height: 40px;
  text-align: center;
  padding-top: 20px;
}
.voice_list figure.logo img {
  max-height: 100%;
  width: auto;
}
.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 {
  font-size: 1.3rem;
  padding: 10px 6px;
}
.voice_list h1 {
  font-size: 1.6rem;
  padding: 0 6px 20px;
  display: block;
  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 {
  width: 200px;
  height: 200px;
  margin: 0 auto 15px;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .lawyer_list .thumb_lawyer figure {
    width: 140px;
    height: 140px;
  }
}
.lawyer_list .thumb_lawyer figure a img {
  border-radius: 50%;
}
.lawyer_list .thumb_lawyer .sns {
  margin-top: -35px;
  width: 100%;
  position: relative;
  z-index: 10;
}
.lawyer_list .thumb_lawyer .sns li {
  display: inline-block;
  border: #fff 2px solid;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  margin-right: 3px;
}
.lawyer_list .thumb_lawyer .sns li a {
  display: block;
}
.lawyer_list .thumb_lawyer .sns li i {
  color: #fff;
  margin-right: 0;
}
.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 {
  width: 230px;
  float: left;
  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 {
  font-size: 1.2rem;
  color: #999;
  font-weight: bold;
  margin-bottom: 10px;
}
.lawyer_list .post dt b {
  color: #DC491E;
  font-size: 2rem;
  display: block;
}
@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: 0.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 {
  width: 24%;
  margin-right: 4px;
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .pnavi li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2px;
  }
}
.pnavi a {
  display: block;
  background-color: #F8DCD4;
  text-align: center;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.4;
  display: table;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .pnavi a {
    text-align: left;
  }
}
.pnavi a::before {
  content: "\f107";
  color: #fff;
  font-size: 2rem;
  background-color: #E8896D;
  width: 20px;
  text-align: center;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
  float: left;
  line-height: 4.7;
}
.pnavi a span {
  position: relative;
  z-index: 2;
  padding: 15px 0;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
@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 {
  color: #fff;
  padding: 0 0.2em;
  display: inline-block;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .news_cat {
    font-size: 0.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: 0.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 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.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 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.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: 1rem;
  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: 0.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: 3rem;
  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: 2rem;
}
.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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f4f4f4;
  min-height: 140px;
  line-height: 1.7;
  padding: 40px 0;
}
@media only screen and (max-width: 480px) {
  .page_content .mainvisual {
    min-height: 60px;
    padding: 20px 3%;
  }
}
.page_content .mainvisual h2 {
  font-size: 1.6rem;
  width: 1040px;
  max-width: 100%;
  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, body.coverage .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;
}
.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);
  -ms-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);
  -ms-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: 0.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: 0.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.privacy, body.flow, body.price {
  /* plink */
  /* box */
}
body.service .plink, body.privacy .plink, body.flow .plink, body.price .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.privacy .plink, body.flow .plink, body.price .plink {
    width: 100%;
  }
}
body.service .plink a, body.privacy .plink a, body.flow .plink a, body.price .plink a {
  display: block;
  position: relative;
  padding: 10px;
}
@media only screen and (max-width: 480px) {
  body.service .plink a, body.privacy .plink a, body.flow .plink a, body.price .plink a {
    padding: 8px;
  }
}
body.service .plink a::before, body.privacy .plink a::before, body.flow .plink a::before, body.price .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.privacy .plink a:hover, body.flow .plink a:hover, body.price .plink a:hover {
  background-color: #fdf6f4;
  text-decoration: none;
}
body.service .plink a:hover::before, body.privacy .plink a:hover::before, body.flow .plink a:hover::before, body.price .plink a:hover::before {
  border-width: 0 0 28px 28px;
}
@media only screen and (max-width: 480px) {
  body.service .plink .img, body.privacy .plink .img, body.flow .plink .img, body.price .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.privacy .plink .img img, body.flow .plink .img img, body.price .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.privacy .plink .text, body.flow .plink .text, body.price .plink .text {
    overflow: hidden;
  }
}
body.service .plink dt, body.privacy .plink dt, body.flow .plink dt, body.price .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.privacy .plink dt, body.flow .plink dt, body.price .plink dt {
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 480px) {
  body.service .plink dd, body.privacy .plink dd, body.flow .plink dd, body.price .plink dd {
    font-size: 1.2rem;
  }
}
body.service .box, body.privacy .box, body.flow .box, body.price .box {
  margin-bottom: 60px;
  /* related */
}
@media only screen and (max-width: 480px) {
  body.service .box, body.privacy .box, body.flow .box, body.price .box {
    margin-bottom: 40px;
  }
}
body.service .box p, body.privacy .box p, body.flow .box p, body.price .box p {
  margin-bottom: 1em;
}
body.service .box .related, body.privacy .box .related, body.flow .box .related, body.price .box .related {
  margin-top: 35px;
}
body.service .box .related li, body.privacy .box .related li, body.flow .box .related li, body.price .box .related li {
  display: inline-block;
  width: 400px;
  margin-right: 20px;
}
@media only screen and (max-width: 480px) {
  body.service .box .related li, body.privacy .box .related li, body.flow .box .related li, body.price .box .related li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
body.service .box .related li:last-child, body.privacy .box .related li:last-child, body.flow .box .related li:last-child, body.price .box .related li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 480px) {
  body.service .box .related li:last-child, body.privacy .box .related li:last-child, body.flow .box .related li:last-child, body.price .box .related li:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  body.service .box:last-child, body.privacy .box:last-child, body.flow .box:last-child, body.price .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: 0.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: 0.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: 0.8px;
  }
}
body.recruit .number_title {
  position: relative;
  margin-bottom: 2rem;
  color: #DC491E;
  font-size: 1.8rem;
  letter-spacing: 0.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 body.blog article.post_single .contents h2, body.blog article.post_single .contents body.recruit h2, 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 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
body.recruit .icon.arrow_r_02 span, body.recruit body.blog article.post_single .contents h2 span, body.blog article.post_single .contents body.recruit h2 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 {
  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.blog article.post_single .contents h1, body.coverage body.blog article.post_single .contents h1, body.blog article.post_single .contents body.contact h1, body.blog article.post_single .contents body.coverage h1, body.contact body.voice .post_single .contents h1, body.coverage body.voice .post_single .contents h1, body.voice .post_single .contents body.contact h1, body.voice .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: 0.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: 0.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%, rgb(248, 220, 212)));
  background: -o-linear-gradient(transparent 50%, rgb(248, 220, 212) 0%);
  background: linear-gradient(transparent 50%, rgb(248, 220, 212) 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: 0.9;
  -webkit-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: 0.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: 0.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: 0.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%;
  }
}

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

		print.sass

		印刷用のスタイルを定義

------------------------------------------------------------------------- */
@media print {
  /* IE zoom
  ------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7;
  }
  /* for IE7 */
  * + html body {
    zoom: 1;
  }
}