@charset "UTF-8";
/* -------------------------------------------------------------------------

		function.sass
		
		scssファイル内で使う関数を定義
		
------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------

		reset.sass
				
------------------------------------------------------------------------- */
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;
  -webkit-text-size-adjust: 100%; }

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; }

/* -------------------------------------------------------------------------

		vars.sass
		
		scssファイル内で使う変数を定義
		
------------------------------------------------------------------------- */
/* width height
------------------------------------------------- */
/* color
------------------------------------------------- */
/* $color_sub : ; */
/* text color
------------------------------------------------- */
/*$color_link : #000000;

$color_link_visited : #000000;

$color_link_hover : #9d7e52;

$color_link_active : #9d7e52;*/
/* fonts
------------------------------------------------- */
/* 装飾
------------------------------------------------- */
/* -------------------------------------------------------------------------

		util.sass
		
		案件に依存せず汎用的に使うClassを定義
		
------------------------------------------------------------------------- */
/* layout
------------------------------------------------- */
.image_text_view_l,
.image_text_view_r {
  overflow: hidden; }
  @media only screen and (max-width: 768px) {
    .image_text_view_l,
    .image_text_view_r {
      overflow: visible; } }

.image_text_view_l .img {
  float: left;
  margin-right: 50px; }
  @media only screen and (max-width: 768px) {
    .image_text_view_l .img {
      width: 100%;
      float: none;
      margin: 0 auto 20px; } }

.image_text_view_r .img {
  float: right;
  margin-left: 50px; }
  @media only screen and (max-width: 768px) {
    .image_text_view_r .img {
      width: 100%;
      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: 768px) {
    .image_text_view_l .text,
    .image_text_view_r .text {
      overflow: visible; } }

@media only screen and (max-width: 768px) {
  .image_text_view_l .text {
    margin-left: 0 !important; } }

@media only screen and (max-width: 768px) {
  .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: 768px) {
  .sp_none {
    display: none; }

  .pc_none {
    display: block; } }
/* float clear
------------------------------------------------- */
/*for modern browser*/
.clear_fix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden; }

/*for IE 5.5-7*/
.clear_fix　 {
  zoom: 　1; }

.clear_both　 {
  clear: both;
  height: 1px;
  font-size: 1px;
  text-align: center;
  line-height: 0; }

.clear　 {
  clear: both; }

/* float
------------------------------------------------- */
.float_r {
  float: right;
  display: inline; }

.float_l {
  float: left;
  display: inline; }

/* margin + padding （0から5刻みでクラスを定義 ex: mb0, mb5, mb10...）
------------------------------------------------- */
.mb0 {
  margin-bottom: 0px !important; }

.mt0 {
  margin-top: 0px !important; }

.mr0 {
  margin-right: 0px !important; }

.ml0 {
  margin-left: 0px !important; }

.mb5 {
  margin-bottom: 5px !important; }

.mt5 {
  margin-top: 5px !important; }

.mr5 {
  margin-right: 5px !important; }

.ml5 {
  margin-left: 5px !important; }

.mb10 {
  margin-bottom: 10px !important; }

.mt10 {
  margin-top: 10px !important; }

.mr10 {
  margin-right: 10px !important; }

.ml10 {
  margin-left: 10px !important; }

.mb15 {
  margin-bottom: 15px !important; }

.mt15 {
  margin-top: 15px !important; }

.mr15 {
  margin-right: 15px !important; }

.ml15 {
  margin-left: 15px !important; }

.mb20 {
  margin-bottom: 20px !important; }

.mt20 {
  margin-top: 20px !important; }

.mr20 {
  margin-right: 20px !important; }

.ml20 {
  margin-left: 20px !important; }

.mb25 {
  margin-bottom: 25px !important; }

.mt25 {
  margin-top: 25px !important; }

.mr25 {
  margin-right: 25px !important; }

.ml25 {
  margin-left: 25px !important; }

.mb30 {
  margin-bottom: 30px !important; }

.mt30 {
  margin-top: 30px !important; }

.mr30 {
  margin-right: 30px !important; }

.ml30 {
  margin-left: 30px !important; }

.mb35 {
  margin-bottom: 35px !important; }

.mt35 {
  margin-top: 35px !important; }

.mr35 {
  margin-right: 35px !important; }

.ml35 {
  margin-left: 35px !important; }

.mb40 {
  margin-bottom: 40px !important; }

.mt40 {
  margin-top: 40px !important; }

.mr40 {
  margin-right: 40px !important; }

.ml40 {
  margin-left: 40px !important; }

.mb45 {
  margin-bottom: 45px !important; }

.mt45 {
  margin-top: 45px !important; }

.mr45 {
  margin-right: 45px !important; }

.ml45 {
  margin-left: 45px !important; }

.mb50 {
  margin-bottom: 50px !important; }

.mt50 {
  margin-top: 50px !important; }

.mr50 {
  margin-right: 50px !important; }

.ml50 {
  margin-left: 50px !important; }

.mb55 {
  margin-bottom: 55px !important; }

.mt55 {
  margin-top: 55px !important; }

.mr55 {
  margin-right: 55px !important; }

.ml55 {
  margin-left: 55px !important; }

.mb60 {
  margin-bottom: 60px !important; }

.mt60 {
  margin-top: 60px !important; }

.mr60 {
  margin-right: 60px !important; }

.ml60 {
  margin-left: 60px !important; }

.mb65 {
  margin-bottom: 65px !important; }

.mt65 {
  margin-top: 65px !important; }

.mr65 {
  margin-right: 65px !important; }

.ml65 {
  margin-left: 65px !important; }

.mb70 {
  margin-bottom: 70px !important; }

.mt70 {
  margin-top: 70px !important; }

.mr70 {
  margin-right: 70px !important; }

.ml70 {
  margin-left: 70px !important; }

.mb75 {
  margin-bottom: 75px !important; }

.mt75 {
  margin-top: 75px !important; }

.mr75 {
  margin-right: 75px !important; }

.ml75 {
  margin-left: 75px !important; }

.mb80 {
  margin-bottom: 80px !important; }

.mt80 {
  margin-top: 80px !important; }

.mr80 {
  margin-right: 80px !important; }

.ml80 {
  margin-left: 80px !important; }

.pb0 {
  padding-bottom: 0px !important; }

.pt0 {
  padding-top: 0px !important; }

.pr0 {
  padding-right: 0px !important; }

.pl0 {
  padding-left: 0px !important; }

.pb5 {
  padding-bottom: 5px !important; }

.pt5 {
  padding-top: 5px !important; }

.pr5 {
  padding-right: 5px !important; }

.pl5 {
  padding-left: 5px !important; }

.pb10 {
  padding-bottom: 10px !important; }

.pt10 {
  padding-top: 10px !important; }

.pr10 {
  padding-right: 10px !important; }

.pl10 {
  padding-left: 10px !important; }

.pb15 {
  padding-bottom: 15px !important; }

.pt15 {
  padding-top: 15px !important; }

.pr15 {
  padding-right: 15px !important; }

.pl15 {
  padding-left: 15px !important; }

.pb20 {
  padding-bottom: 20px !important; }

.pt20 {
  padding-top: 20px !important; }

.pr20 {
  padding-right: 20px !important; }

.pl20 {
  padding-left: 20px !important; }

.pb25 {
  padding-bottom: 25px !important; }

.pt25 {
  padding-top: 25px !important; }

.pr25 {
  padding-right: 25px !important; }

.pl25 {
  padding-left: 25px !important; }

.pb30 {
  padding-bottom: 30px !important; }

.pt30 {
  padding-top: 30px !important; }

.pr30 {
  padding-right: 30px !important; }

.pl30 {
  padding-left: 30px !important; }

.pb35 {
  padding-bottom: 35px !important; }

.pt35 {
  padding-top: 35px !important; }

.pr35 {
  padding-right: 35px !important; }

.pl35 {
  padding-left: 35px !important; }

.pb40 {
  padding-bottom: 40px !important; }

.pt40 {
  padding-top: 40px !important; }

.pr40 {
  padding-right: 40px !important; }

.pl40 {
  padding-left: 40px !important; }

.pb45 {
  padding-bottom: 45px !important; }

.pt45 {
  padding-top: 45px !important; }

.pr45 {
  padding-right: 45px !important; }

.pl45 {
  padding-left: 45px !important; }

.pb50 {
  padding-bottom: 50px !important; }

.pt50 {
  padding-top: 50px !important; }

.pr50 {
  padding-right: 50px !important; }

.pl50 {
  padding-left: 50px !important; }

.pb55 {
  padding-bottom: 55px !important; }

.pt55 {
  padding-top: 55px !important; }

.pr55 {
  padding-right: 55px !important; }

.pl55 {
  padding-left: 55px !important; }

.pb60 {
  padding-bottom: 60px !important; }

.pt60 {
  padding-top: 60px !important; }

.pr60 {
  padding-right: 60px !important; }

.pl60 {
  padding-left: 60px !important; }

.pb65 {
  padding-bottom: 65px !important; }

.pt65 {
  padding-top: 65px !important; }

.pr65 {
  padding-right: 65px !important; }

.pl65 {
  padding-left: 65px !important; }

.pb70 {
  padding-bottom: 70px !important; }

.pt70 {
  padding-top: 70px !important; }

.pr70 {
  padding-right: 70px !important; }

.pl70 {
  padding-left: 70px !important; }

.pb75 {
  padding-bottom: 75px !important; }

.pt75 {
  padding-top: 75px !important; }

.pr75 {
  padding-right: 75px !important; }

.pl75 {
  padding-left: 75px !important; }

.pb80 {
  padding-bottom: 80px !important; }

.pt80 {
  padding-top: 80px !important; }

.pr80 {
  padding-right: 80px !important; }

.pl80 {
  padding-left: 80px !important; }

/* align
------------------------------------------------- */
.align_l {
  text-align: left !important; }

.align_r {
  text-align: right !important; }

.align_c {
  text-align: center !important; }

/* font
------------------------------------------------- */
.smaller {
  font-size: 85% !important; }

.larger {
  font-size: larger !important; }

.bold {
  font-weight: bold !important; }

/* display
------------------------------------------------- */
.block {
  display: block !important; }

.inline {
  display: inline !important; }

/* justify layout
Usage:
<ul class="just_layout">
	<li class ="just_item"></li>
</ul>
------------------------------------------------- */
.just_layout {
  text-align: justify;
  text-justify: distribute-all-lines;
  zoom: 1;
  display: block;
  line-height: 0; }
  .just_layout:after {
    line-height: 0;
    visibility: hidden;
    content: "";
    display: inline-block;
    width: 100%; }
  .just_layout .just_item {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    line-height: normal; }

* html .just_layout .just_item {
  display: 　inline;
  zoom: 　1; }

*:first-child + html .just_layout .just_item {
  display: 　inline;
  zoom: 　1; }

/* list
------------------------------------------------- */
.list_disc {
  margin-left: 　1 0.2em;
  list-style: 　disc; }

.list_square {
  margin-left: 　1 0.2em;
  list-style: 　square; }

.list_decimal {
  margin-left: 　1 0.7em;
  list-style: 　decimal; }

.list_decimal_zero {
  margin-left: 　2 0.3em;
  list-style: 　decimal-leading-zero; }

/* list style (IE8以上)
------------------------------------------------- */
/* ---- ※ ---- */
.list_asterisk > li {
  text-indent: -1.3em;
  margin-left: 1.3em; }
  .list_asterisk > li:before {
    content: "※ "; }
  .list_asterisk > li > * {
    text-indent: 0; }

/* ---- ・ ---- */
.list_dot > li {
  text-indent: -1em;
  margin-left: 1em; }
  .list_dot > li:before {
    content: "・"; }
  .list_dot > li > * {
    text-indent: 0; }

/* ---- ● ---- */
.list_circle > li {
  text-indent: -1em;
  margin-left: 1em; }
  .list_circle > li:before {
    content: "● "; }
  .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;
    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: #000000;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }
  a:hover {
    text-decoration: underline; }
    a:hover img {
      opacity: .7; }
  a.tel {
    cursor: default;
    pointer-events: none; }
    @media only screen and (max-width: 768px) {
      a.tel {
        pointer-events: auto; } }

/*img
------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease-in-out 0s;
  -ms-transition: 　none; }

/* form
------------------------------------------------- */
input[type="text"],
input[type="submit"],
textarea {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  margin: 0;
  background-color: #ffffff;
  border: 1px solid #bfbfbf;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  padding: 1% 2%;
  border-radius: 0;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .3s; }
  input[type="text"].narrow,
  input[type="submit"].narrow,
  textarea.narrow {
    width: 20%; }

input[type="text"]:focus,
textarea:focus {
  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 {
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out; }
  .animation.fast {
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -ms-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out; }
  .animation.slow {
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out; }
  .animation.cubic {
    -webkit-transition: all 0.5s;
    -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
    transition: all 0.5s;
    transition-timing-function: cubic-bezier(1, 0, 0, 1); }

/* column
------------------------------------------------- */
.left_column {
  float: left; }

.right_column {
  float: right; }

/* btn
------------------------------------------------- */
.btn_link01 a {
  display: inline-block;
  padding: 4px 35px 4px 20px;
  color: #ffffff;
  background: #9d7e52 url(../img/common/ico/ico_arrow_white.svg) no-repeat right 10px top 8px/20px auto; }
  .btn_link01 a:hover {
    background-color: #162b55;
    text-decoration: none; }

/* icon
------------------------------------------------- */
/* title
------------------------------------------------- */
.sub_ttl01 {
  font-weight: normal;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #162b55; }
  .sub_ttl01 span {
    font-size: 40px;
    font-family: "Raleway", sans-serif;
    letter-spacing: 5px; }
    @media screen and (max-width: 767px) {
      .sub_ttl01 span {
        display: block;
        line-height: 1.5; } }

.sub_ttl02 {
  font-size: 24px;
  position: relative;
  padding-left: 25px;
  margin-bottom: 30px; }
  .sub_ttl02:before {
    position: absolute;
    background: url(../img/common/ico/ico_sub_ttl02.png) no-repeat left top;
    width: 20px;
    height: 20px;
    top: 12px;
    left: 0;
    content: ""; }
  @media screen and (max-width: 767px) {
    .sub_ttl02 {
      font-size: 20px;
      margin-bottom: 20px; }
      .sub_ttl02:before {
        top: 9px; } }

.sub_ttl03 {
  text-align: center;
  color: #162b55;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 35px;
  line-height: 1.6; }
  @media screen and (max-width: 767px) {
    .sub_ttl03 {
      font-size: 24px; } }

/* 画像サムネイル
------------------------------------------------- */
.img_thumbnail .box_fig {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .img_thumbnail .box_fig figure {
    flex-basis: 310px;
    margin-bottom: 30px; }
    @media screen and (max-width: 767px) {
      .img_thumbnail .box_fig figure {
        flex-basis: calc(50% - 10px); } }
    .img_thumbnail .box_fig figure figcaption {
      font-size: 14px;
      margin-top: 10px; }

/* 
------------------------------------------------- */
.list_style01 {
  position: relative;
  background: url(../img/common/bkg/bkg_mosaic_navy.png);
  padding: 90px 0 85px; }
  @media screen and (max-width: 767px) {
    .list_style01 {
      padding: 60px 0; } }
  .list_style01:before {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    background: url(../img/common/bkg/bkg_triangle_navy.png) no-repeat left top/cover;
    width: 277px;
    height: 277px; }
  .list_style01 .inner {
    margin-bottom: 80px; }
    @media screen and (max-width: 767px) {
      .list_style01 .inner {
        margin-bottom: 60px; } }
    .list_style01 .inner:last-child {
      margin-bottom: 0; }
  .list_style01 .box_service {
    background-color: #ffffff;
    margin: 0 140px 60px 0;
    padding: 45px;
    position: relative; }
    @media screen and (max-width: 767px) {
      .list_style01 .box_service {
        margin: 0 0 60px;
        padding: 45px 30px; } }
    .list_style01 .box_service:nth-of-type(even) {
      margin: 0 0 60px 140px; }
      @media screen and (max-width: 767px) {
        .list_style01 .box_service:nth-of-type(even) {
          margin: 0 0 60px; } }
    .list_style01 .box_service:last-child {
      margin-bottom: 0; }
    .list_style01 .box_service:before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      background: url(../img/common/bkg/bkg_triangle_navy.png) no-repeat left top/cover;
      width: 41px;
      height: 41px;
      -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
      transform: scale(-1); }
    .list_style01 .box_service p {
      margin-bottom: 15px; }
      .list_style01 .box_service p:last-child {
        margin-bottom: 0; }
    .list_style01 .box_service .ttl {
      color: #162b55;
      font-weight: bold;
      margin-bottom: 15px;
      font-size: 1.2em; }
    .list_style01 .box_service.with_img {
      padding: 0; }
      .list_style01 .box_service.with_img figure {
        float: right;
        width: 310px; }
        @media screen and (max-width: 767px) {
          .list_style01 .box_service.with_img figure {
            float: none;
            width: auto;
            text-align: center;
            padding-bottom: 45px; } }
      .list_style01 .box_service.with_img .box_txt {
        float: left;
        width: calc(100% - 400px);
        padding: 45px 45px 0; }
        @media screen and (max-width: 767px) {
          .list_style01 .box_service.with_img .box_txt {
            float: none;
            width: auto;
            padding: 45px 30px; } }
    .list_style01 .box_service ul.line02 {
      float: left;
      width: 45%;
      margin-right: 5%; }
      @media screen and (max-width: 767px) {
        .list_style01 .box_service ul.line02 {
          float: none;
          width: auto;
          margin-right: 0;
          margin-bottom: 15px; }
          .list_style01 .box_service ul.line02:last-child {
            margin-bottom: 0; } }

.list_blueico li, .list_blueico dd {
  margin-left: 5px;
  margin-bottom: 15px;
  text-indent: -24px;
  padding-left: 24px;
  line-height: 1.6; }
  @media screen and (max-width: 767px) {
    .list_blueico li, .list_blueico dd {
      margin-left: 0; } }
  .list_blueico li:before, .list_blueico dd:before {
    content: "■";
    color: #162b55;
    margin-right: 10px; }
  .list_blueico li:last-child, .list_blueico dd:last-child {
    margin-bottom: 0; }
  .list_blueico li.no_ico:before, .list_blueico dd.no_ico:before {
    display: none; }

.img_magnify a {
  display: inline-block;
  position: relative; }
  .img_magnify a:after {
    position: absolute;
    content: "";
    background: #9d7e52 url(../img/service/magnify.png) no-repeat center;
    width: 37px;
    height: 37px;
    top: 10px;
    right: 10px; }

/* -------------------------------------------------------------------------

		layout.sass
		
		ヘッダー、フッター、サイドバー等のサイトの構造に関わるスタイルを定義
		
------------------------------------------------------------------------- */
/* html
------------------------------------------------- */
html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%; }

/* body
------------------------------------------------- */
body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  background-color: #fff;
  color: #000000;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 16px;
  line-height: 1.9;
  height: 100%;
  /* 画面いっぱい背景用 */
  overflow: hidden; }

header, main, .foot_contact, footer {
  min-width: 1200px; }
  @media screen and (max-width: 767px) {
    header, main, .foot_contact, footer {
      min-width: auto;
      min-width: initial; } }

/* inner page_content
------------------------------------------------- */
@media screen and (max-width: 767px) {
  .inner {
    width: 100% !important;
    box-sizing: border-box; } }
main .inner {
  width: 1000px;
  margin: 0 auto; }
  @media screen and (max-width: 767px) {
    main .inner {
      margin: 0;
      padding: 0 3%; } }

/* noscript
------------------------------------------------- */
.noscript {
  background-color: #162b55;
  padding: 　10px 0;
  text-align: 　center;
  font-weight: 　bold; }

/* header
------------------------------------------------- */
header {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 10; }
  @media screen and (max-width: 767px) {
    header {
      position: relative;
      height: auto; } }
  #home header {
    height: 200px;
    background: -moz-linear-gradient(top, white 30%, rgba(255, 255, 255, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, white 30%, rgba(255, 255, 255, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, white 30%, rgba(255, 255, 255, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
    @media screen and (max-width: 767px) {
      #home header {
        height: auto; } }

.site_id {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/common/header/bkg_logo_pc.png) no-repeat top left;
  width: 277px;
  height: 277px; }
  @media screen and (max-width: 767px) {
    .site_id {
      background: url(../img/common/header/bkg_logo_sp.png) no-repeat top left/contain;
      width: 60%; } }
  .site_id a {
    display: block;
    padding: 30px 25px; }
    @media screen and (max-width: 767px) {
      .site_id a {
        width: 33%;
        padding: 20px 8%; } }

/* gloal navi PC
------------------------------------------------- */
#gNavi {
  width: 950px;
  float: right; }
  #gNavi .dropmenu {
    *zoom: 1;
    list-style-type: none;
    width: 650px;
    display: flex;
    margin-top: 20px;
    float: left; }
    #home #gNavi .dropmenu {
      margin-top: 35px; }
    #gNavi .dropmenu:before, #gNavi .dropmenu:after {
      content: "";
      display: table; }
    #gNavi .dropmenu:after {
      clear: both; }
    #gNavi .dropmenu li {
      position: relative;
      flex-basis: 20%;
      text-align: center;
      font-weight: bold; }
      #gNavi .dropmenu li a {
        display: block;
        padding: 15px 0 11px;
        color: #000000;
        line-height: 1;
        text-decoration: none; }
        #gNavi .dropmenu li a:hover {
          color: #162b55; }
      #gNavi .dropmenu li ul {
        opacity: 0;
        top: 50%;
        visibility: hidden;
        transition: .5s;
        position: absolute;
        z-index: 9999;
        left: 0;
        border-top: 2px solid #162b55;
        border-left: 2px solid #162b55;
        border-right: 2px solid #162b55;
        width: 250px; }
        #gNavi .dropmenu li ul li {
          width: 100%; }
          #gNavi .dropmenu li ul li a {
            padding: 13px 15px;
            border-bottom: #162b55 2px solid;
            background-color: rgba(255, 255, 255, 0.85);
            text-align: center;
            line-height: 1.4; }
          #gNavi .dropmenu li ul li:hover > a {
            background-color: rgba(217, 225, 234, 0.85); }
      #gNavi .dropmenu li:hover ul {
        top: 100%;
        visibility: visible;
        opacity: 1; }
  @media only screen and (max-width: 768px) {
    #gNavi {
      display: none; } }
  #gNavi dl {
    background-color: #9d7e52;
    color: #ffffff;
    position: relative;
    width: 180px;
    padding: 10px 0 20px 55px;
    height: 50px;
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    float: right; }
    #home #gNavi dl {
      padding: 3px 0 11px 55px; }
    #gNavi dl:before {
      content: "\f095";
      font-family: FontAwesome;
      position: absolute;
      top: 0;
      left: 13px;
      font-size: 40px;
      line-height: 80px; }
      #home #gNavi dl:before {
        line-height: 64px; }
    #gNavi dl dt {
      font-size: 14px;
      flex-basis: 38px;
      align-self: flex-end; }
    #gNavi dl dd {
      font-size: 18px;
      flex-basis: calc(100% - 38px);
      align-self: flex-end; }

/* gloal navi SP ハンバーガーメニュー
------------------------------------------------- */
@media only screen and (max-width: 768px) {
  #sNavi {
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1.2;
    background-color: #fff;
    padding: 14px 15px;
    z-index: 1100; }
    #sNavi .toggle, #sNavi .toggle span {
      display: inline-block;
      transition: all .4s;
      box-sizing: border-box; }
    #sNavi .toggle {
      position: relative;
      width: 34px;
      height: 28px; }
      #sNavi .toggle span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #162b55; }
        #sNavi .toggle span:nth-of-type(1) {
          top: 0; }
        #sNavi .toggle span:nth-of-type(2) {
          top: 13px; }
        #sNavi .toggle span:nth-of-type(3) {
          bottom: 0; }
      #sNavi .toggle.active span {
        background-color: #000000; }
        #sNavi .toggle.active span:nth-of-type(1) {
          -webkit-transform: translateY(15px) rotate(-45deg);
          transform: translateY(15px) rotate(-45deg);
          top: -2px; }
        #sNavi .toggle.active span:nth-of-type(2) {
          opacity: 0; }
        #sNavi .toggle.active span:nth-of-type(3) {
          -webkit-transform: translateY(-15px) rotate(45deg);
          transform: translateY(-15px) rotate(45deg);
          bottom: -2px; }

  #bMenu {
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff; }
    #bMenu nav {
      box-sizing: border-box;
      padding: 62px 0 0 0;
      overflow: auto;
      min-height: initial !important;
      min-height: auto !important; }
      #bMenu nav ul a, #bMenu nav ul span {
        border-top: #cccccc 1px dashed;
        display: block;
        padding: 10px 0;
        color: #000000; }
      #bMenu nav ul a {
        background: url(../img/common/ico/ico_arrow_black.svg) no-repeat right 10px top 5px/35px auto;
        padding-left: 18px;
        text-decoration: underline; }
      #bMenu nav > ul > li > a, #bMenu nav ul span {
        border-top: #999 1px solid;
        padding-left: 8px; }
      #bMenu nav .box_phone {
        background-color: #9d7e52; }
      #bMenu nav dl {
        color: #ffffff;
        position: relative;
        padding: 15px 0 15px 50px;
        line-height: 1.3;
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        width: 230px;
        font-weight: bold;
        letter-spacing: 2px; }
        #bMenu nav dl:before {
          content: "\f095";
          font-family: FontAwesome;
          position: absolute;
          top: 19px;
          left: 0;
          font-size: 40px; }
        #bMenu nav dl dt {
          flex-basis: 38px;
          align-self: flex-end; }
        #bMenu nav dl dd {
          font-size: 20px;
          flex-basis: calc(100% - 38px);
          align-self: flex-end; }
          #bMenu nav dl dd a, #bMenu nav dl dd span {
            color: #ffffff; } }
/* topicpath
------------------------------------------------- */
.topicpath {
  width: 1000px;
  margin: 10px auto 80px;
  font-size: 14px; }
  @media only screen and (max-width: 768px) {
    .topicpath {
      display: none; } }
  .topicpath li {
    line-height: 1;
    display: inline-block;
    letter-spacing: 1px; }
    .topicpath li:before {
      content: "丨";
      padding: 0 5px; }
    .topicpath li:first-child:before {
      content: "";
      padding: 0; }

/* 問い合わせ共通部分
------------------------------------------------- */
.contact_info {
  display: flex;
  font-weight: bold;
  justify-content: center;
  margin-bottom: 50px; }
  @media screen and (max-width: 767px) {
    .contact_info {
      display: block; } }
  .contact_info dl {
    flex-basis: 290px;
    position: relative;
    color: #162b55;
    padding-left: 54px;
    line-height: 1.3; }
    @media screen and (max-width: 767px) {
      .contact_info dl {
        width: 252px;
        margin: 0 auto 25px;
        padding-left: 48px; } }
    .contact_info dl:before {
      font-family: FontAwesome;
      font-size: 34px;
      position: absolute;
      top: 0;
      left: 0;
      content: "\f095";
      width: 54px;
      height: 54px;
      line-height: 54px;
      background-color: #ffffff; }
      @media screen and (max-width: 767px) {
        .contact_info dl:before {
          width: 48px;
          height: 48px;
          line-height: 48px;
          margin-top: 5px; } }
    .contact_info dl dt {
      float: left;
      clear: left;
      width: 60px;
      font-size: 20px; }
    .contact_info dl dd {
      float: left;
      width: calc(100% - 60px);
      font-size: 24px;
      text-align: left; }
      .contact_info dl dd span, .contact_info dl dd a {
        color: #9d7e52; }
  .contact_info .btn_foot_contact {
    flex-basis: 310px; }
    @media screen and (max-width: 767px) {
      .contact_info .btn_foot_contact {
        width: 300px;
        margin: 0 auto; } }
    .contact_info .btn_foot_contact a {
      position: relative;
      display: block;
      box-sizing: border-box;
      height: 54px;
      line-height: 54px;
      font-size: 18px;
      color: #ffffff;
      background-color: #9d7e52;
      letter-spacing: 1px; }
      @media screen and (max-width: 320px) {
        .contact_info .btn_foot_contact a {
          font-size: 16px; } }
      .contact_info .btn_foot_contact a:before, .contact_info .btn_foot_contact a:after {
        content: "";
        position: absolute;
        background: url(../img/common/buttons/bkg_btn_contact.png);
        width: 54px;
        height: 54px;
        top: 0;
        left: 0;
        -webkit-transition: all 0.2s ease-in-out 0s;
        -o-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s; }
      .contact_info .btn_foot_contact a:after {
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
        -webkit-transform: scale(-1);
        -ms-transform: scale(-1);
        transform: scale(-1); }
      .contact_info .btn_foot_contact a:hover {
        text-decoration: none;
        background-color: #1d3970; }
        .contact_info .btn_foot_contact a:hover:before, .contact_info .btn_foot_contact a:hover:after {
          background-image: url(../img/common/buttons/bkg_btn_contact_hover.png); }
      .contact_info .btn_foot_contact a span {
        z-index: 99; }
        .contact_info .btn_foot_contact a span i {
          font-size: 20px;
          margin-right: 4px; }

/* footer お問い合わせ
------------------------------------------------- */
.foot_contact {
  padding: 50px 0 20px;
  text-align: center;
  background-color: #eeeeee; }
  .foot_contact .inner {
    width: 1000px;
    margin: 0 auto; }
    @media screen and (max-width: 767px) {
      .foot_contact .inner {
        padding: 0 3%; } }
    .foot_contact .inner h2 {
      font-size: 24px;
      margin-bottom: 15px;
      line-height: 1.6; }
      @media screen and (max-width: 767px) {
        .foot_contact .inner h2 {
          font-size: 18px;
          text-align: left; } }

.foot_nav {
  font-size: 14px;
  line-height: 21px; }
  .foot_nav > li {
    display: inline-block; }
    .foot_nav > li:before {
      content: "／";
      font-size: 20px;
      color: #959595; }
    .foot_nav > li a {
      padding: 0 9px; }
      .foot_nav > li a:hover {
        color: #9d7e52;
        text-decoration: none; }
    .foot_nav > li span {
      display: inline-block;
      background: url(../img/common/footer/bkg_footer_02.png) no-repeat left top;
      color: #ffffff;
      position: relative;
      padding-left: 16px;
      height: 21px;
      margin-right: 10px; }
      .foot_nav > li span:after {
        position: absolute;
        top: 0;
        right: -17px;
        content: "";
        background: url(../img/common/footer/bkg_footer_03.png) no-repeat left top;
        width: 17px;
        height: 21px; }
    .foot_nav > li ul {
      display: inline-block; }
      .foot_nav > li ul li {
        display: inline-block; }
    .foot_nav > li:last-child:after {
      content: "／";
      font-size: 20px;
      color: #959595; }
  @media screen and (max-width: 767px) {
    .foot_nav {
      display: none; } }

/* footer
------------------------------------------------- */
footer {
  padding: 25px 0;
  text-align: center; }
  footer p {
    margin-bottom: 5px;
    font-weight: bold; }
    footer p:nth-child(2) {
      margin-bottom: 15px; }
  footer .copyright {
    font-size: 12px;
    font-weight: normal; }

/* page_top
------------------------------------------------- */
.page_top {
  position: fixed;
  right: 15px;
  bottom: 15px; }
  .page_top a {
    display: block; }
    .page_top a:hover img {
      filter: alpha(opacity=70);
      -moz-opacity: 0.70;
      opacity: 0.70; }

/* middle_contact
------------------------------------------------- */
.middle_contact {
  background: url(../img/common/bkg/bkg_middle_contact.png) no-repeat center top/cover;
  padding: 90px 0; }
  .middle_contact .box_middle_contact {
    width: 800px;
    margin: 0 auto;
    background-color: #eeeeee;
    text-align: center;
    padding: 35px 0;
    position: relative; }
    @media screen and (max-width: 767px) {
      .middle_contact .box_middle_contact {
        width: auto;
        margin: 0 3%; } }
    .middle_contact .box_middle_contact:before {
      position: absolute;
      margin: 10px;
      width: calc(100% - 22px);
      height: calc(100% - 22px);
      content: "";
      border: #ffffff 1px solid;
      top: 0;
      left: 0; }
    .middle_contact .box_middle_contact .contact_info {
      margin-bottom: 0; }
      @media screen and (max-width: 320px) {
        .middle_contact .box_middle_contact .contact_info dl {
          width: 210px;
          padding-left: 48px; }
          .middle_contact .box_middle_contact .contact_info dl:before {
            margin-top: 0; }
          .middle_contact .box_middle_contact .contact_info dl dt {
            font-size: 18px;
            width: 55px; }
          .middle_contact .box_middle_contact .contact_info dl dd {
            font-size: 20px;
            width: calc(100% - 55px); } }
      .middle_contact .box_middle_contact .contact_info dl.only_nara dt, .middle_contact .box_middle_contact .contact_info dl.only_nara dd {
        float: none;
        width: auto;
        text-align: left;
        margin-left: 10px; }
      @media screen and (max-width: 320px) {
        .middle_contact .box_middle_contact .contact_info .btn_foot_contact {
          width: 260px; } }
    .middle_contact .box_middle_contact h2 {
      font-size: 24px;
      margin-bottom: 15px;
      line-height: 1.6; }
      @media screen and (max-width: 767px) {
        .middle_contact .box_middle_contact h2 {
          font-size: 18px;
          margin: 0 20px 15px; } }
    .middle_contact .box_middle_contact .box_txt {
      font-weight: bold;
      font-size: 20px; }
      @media screen and (max-width: 767px) {
        .middle_contact .box_middle_contact .box_txt {
          font-size: 16px;
          padding: 0 10%;
          text-align: left; } }

/* -------------------------------------------------------------------------

		contents.sass
		
		各ページ固有のスタイルを定義
		
------------------------------------------------------------------------- */
/* 全ページメインビジュアル
------------------------------------------------- */
.mainvisual {
  height: 240px;
  margin-top: 80px; }
  @media screen and (max-width: 767px) {
    .mainvisual {
      height: 240px;
      padding-top: 60px;
      margin-top: 0;
      margin-bottom: 50px; } }
  .mainvisual h1 {
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    padding-top: 100px;
    color: #ffffff;
    font-size: 34px;
    letter-spacing: 4px; }
    @media screen and (max-width: 767px) {
      .mainvisual h1 {
        padding-top: 80px;
        font-size: 24px; } }
  .mainvisual#about {
    background: url(../img/about/bkg_ttl_about.png) no-repeat center top/cover; }
  .mainvisual#service01 {
    background: url(../img/service/bkg_ttl_service01.png) no-repeat center top/cover; }
  .mainvisual#recruit {
    background: url(../img/recruit/bkg_ttl_recruit.png) no-repeat center top/cover; }
  .mainvisual#contact {
    background: url(../img/contact/bkg_ttl_contact.png) no-repeat center top/cover; }
  @media screen and (max-width: 767px) {
    .mainvisual.medical h1 {
      padding: 100px 120px 50px;
      font-size: 22px;
      line-height: 1.6; } }
  @media screen and (max-width: 479px) {
    .mainvisual.medical h1 {
      padding: 90px 16vw 50px; } }
  #home .mainvisual {
    background: url(../img/index/top_main.png) no-repeat center bottom/cover;
    height: 100vh;
    padding-top: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    @media screen and (max-width: 767px) {
      #home .mainvisual {
        height: 300px;
        justify-content: flex-end;
        align-items: flex-end;
        margin-bottom: 0; } }
    #home .mainvisual h1 {
      font-size: 40px;
      color: #162b55;
      height: 59px;
      position: relative;
      background-color: #ffffff;
      background-image: none;
      padding: 10px 1px 0;
      line-height: 1; }
      @media screen and (max-width: 767px) {
        #home .mainvisual h1 {
          height: 98px;
          padding: 18px 15% 0 0;
          font-size: 22px;
          line-height: 1.5;
          margin-bottom: 50px;
          letter-spacing: 2px; } }
      @media screen and (max-width: 479px) {
        #home .mainvisual h1 {
          padding: 18px 2% 0 0; } }
      #home .mainvisual h1:before, #home .mainvisual h1:after {
        position: absolute;
        content: "";
        background: url(../img/index/bkg_top_maintxt_pc.png);
        width: 59px;
        height: 59px;
        top: 0;
        left: -59px; }
        @media screen and (max-width: 767px) {
          #home .mainvisual h1:before, #home .mainvisual h1:after {
            background: url(../img/index/bkg_top_maintxt_sp.png) no-repeat top left/cover;
            width: 95px;
            height: 98px;
            left: -95px; } }
      #home .mainvisual h1:after {
        left: auto;
        right: -59px;
        -webkit-transform: scale(-1);
        -ms-transform: scale(-1);
        transform: scale(-1); }
        @media screen and (max-width: 767px) {
          #home .mainvisual h1:after {
            display: none; } }
      #home .mainvisual h1 span {
        color: #9d7e52; }
    #home .mainvisual p {
      position: absolute;
      font-size: 12px;
      color: #ffffff;
      width: 100%;
      text-align: center;
      bottom: -25px;
      letter-spacing: 3px;
      height: 72px;
      background: url(../img/index/scroll_top_main.png) no-repeat center bottom; }
      @media screen and (max-width: 767px) {
        #home .mainvisual p {
          display: none; } }

_:-ms-input-placeholder, :root #home .mainvisual h1 {
  padding: 15px 1px 0; }

@media screen and (max-width: 767px) {
  _:-ms-input-placeholder, :root #home .mainvisual h1 {
    padding: 18px 15% 0 0; } }
/* home - トップページ
------------------------------------------------- */
#top_service01 {
  background: url(../img/index/bkg_top_service01.png) no-repeat center top/cover;
  color: #ffffff;
  padding: 90px 0 85px; }
  @media screen and (max-width: 767px) {
    #top_service01 {
      background: #162b55 url(../img/index/bkg_top_service01.png) no-repeat center bottom;
      padding: 60px 0; } }
  #top_service01 .inner {
    display: flex; }
    @media screen and (max-width: 767px) {
      #top_service01 .inner {
        display: block; } }
    #top_service01 .inner .box_txt {
      flex-basis: calc(50% - 30px);
      margin-right: 30px; }
      @media screen and (max-width: 767px) {
        #top_service01 .inner .box_txt {
          margin-right: 0;
          margin-bottom: 30px; } }
      #top_service01 .inner .box_txt .sub_ttl01 {
        color: #ffffff; }
      #top_service01 .inner .box_txt .ttl {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 1.6;
        font-weight: bold; }
    #top_service01 .inner figure {
      flex-basis: 50%; }
      @media screen and (max-width: 767px) {
        #top_service01 .inner figure {
          text-align: center; } }

#top_service02 {
  padding: 90px 0 85px; }
  @media screen and (max-width: 767px) {
    #top_service02 {
      padding: 60px 0; } }
  #top_service02 .box_service .nmbr {
    position: absolute;
    top: -27px;
    right: 16px;
    background: url(../img/index/ico_top_service_pc.png) no-repeat left bottom;
    width: 174px;
    height: 134px;
    text-align: right;
    font-size: 72px;
    font-family: "Noto Sans Japanese";
    line-height: 1;
    font-weight: 100;
    font-style: italic; }
    @media screen and (max-width: 767px) {
      #top_service02 .box_service .nmbr {
        background: url(../img/index/ico_top_service_sp.png) no-repeat left bottom;
        width: 205px;
        height: 69px;
        font-size: 75px;
        top: -25px; } }
    @media screen and (max-width: 479px) {
      #top_service02 .box_service .nmbr {
        background-size: 67% auto;
        width: 120px;
        height: 55px;
        font-size: 60px;
        top: -23px; } }
  #top_service02 .box_service h3 {
    color: #162b55;
    font-size: 28px;
    margin-bottom: 5px; }
    @media screen and (max-width: 767px) {
      #top_service02 .box_service h3 {
        font-size: 22px; } }
  #top_service02 .box_service .ttl {
    font-weight: bold;
    margin-bottom: 5px; }
  #top_service02 .box_service .btn_link01 {
    position: absolute;
    bottom: -10px;
    right: 55px; }
    @media screen and (max-width: 767px) {
      #top_service02 .box_service .btn_link01 {
        text-align: center;
        right: auto;
        width: calc(100% - 90px); } }

#top_about {
  background: url(../img/index/bkg_top_about.png) no-repeat left bottom;
  padding: 90px 0 85px; }
  @media screen and (max-width: 767px) {
    #top_about {
      background-size: auto 280px;
      padding-bottom: 250px;
      padding: 50px 0 190px; } }
  #top_about .inner {
    box-sizing: border-box;
    padding-left: 470px; }
    @media screen and (max-width: 767px) {
      #top_about .inner {
        padding: 0 3%; } }
    #top_about .inner p {
      background-color: rgba(255, 255, 255, 0.7); }
      @media screen and (max-width: 767px) {
        #top_about .inner p {
          background-color: transparent; } }
    #top_about .inner .ttl {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 5px; }
    #top_about .inner .btn_link01 {
      background-color: transparent;
      margin-top: 30px; }
      @media screen and (max-width: 767px) {
        #top_about .inner .btn_link01 {
          text-align: center; } }
      #top_about .inner .btn_link01 a {
        border-bottom: #503a1c 1px solid; }
        #top_about .inner .btn_link01 a:hover {
          border-bottom-color: #101f3d; }

#top_recruit {
  position: relative; }
  @media screen and (max-width: 767px) {
    #top_recruit {
      background: url(../img/index/bkg_top_recruit_sp.png) no-repeat;
      padding: 60px 0; } }
  #top_recruit figure img {
    width: 100%; }
  #top_recruit h2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 351px;
    padding: 80px 129px 0 0;
    background: url(../img/index/bkg_top_recruit_pc.png) no-repeat;
    color: #ffffff;
    text-align: center; }
    @media screen and (max-width: 767px) {
      #top_recruit h2 {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        padding: 0 3%;
        background-image: none;
        color: #9d7e52;
        text-align: left; } }
    #top_recruit h2 span {
      display: block; }
  #top_recruit .box_txt {
    position: absolute;
    top: 128px;
    left: 48%;
    background-color: rgba(255, 255, 255, 0.88);
    padding: 35px 0 35px 40px;
    width: 490px; }
    @media screen and (max-width: 767px) {
      #top_recruit .box_txt {
        position: relative;
        top: auto;
        left: auto;
        background-color: transparent;
        width: auto;
        padding: 0 3%; } }
    #top_recruit .box_txt .ttl {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 5px; }
    #top_recruit .box_txt .btn_link01 {
      margin: 30px 0 0;
      text-align: center;
      width: calc(100% - 70px); }
      @media screen and (max-width: 767px) {
        #top_recruit .box_txt .btn_link01 {
          width: auto;
          margin: 30px 0; } }
      #top_recruit .box_txt .btn_link01 a {
        border-bottom: #503a1c 1px solid; }
        #top_recruit .box_txt .btn_link01 a:hover {
          border-bottom-color: #101f3d; }

/* 法人案内
------------------------------------------------- */
#about_office {
  padding: 0 0 85px; }
  @media screen and (max-width: 767px) {
    #about_office {
      padding: 0 0 50px; } }
  @media screen and (max-width: 767px) {
    #about_office .inner:first-child {
      border-bottom: #bfbfbf 1px solid; } }
  #about_office dl {
    display: flex;
    border-bottom: #bfbfbf 1px solid;
    margin-bottom: 60px; }
    @media screen and (max-width: 767px) {
      #about_office dl {
        display: block;
        border-bottom: none;
        margin-bottom: 50px; } }
    #about_office dl dt {
      flex-basis: 199px;
      border-right: #bfbfbf 1px solid; }
      @media screen and (max-width: 767px) {
        #about_office dl dt {
          border-right: none; } }
    #about_office dl dd {
      flex-basis: calc(100% - 200px); }
      #about_office dl dd table {
        width: calc(100% - 55px);
        margin-left: 55px; }
        @media screen and (max-width: 767px) {
          #about_office dl dd table {
            width: 100%;
            margin-left: 0; } }
        #about_office dl dd table th, #about_office dl dd table td {
          text-align: left;
          border-bottom: #bfbfbf 1px solid;
          padding: 15px 0; }
          @media screen and (max-width: 767px) {
            #about_office dl dd table th, #about_office dl dd table td {
              display: block;
              padding: 0 0 15px; } }
        #about_office dl dd table th {
          width: 140px; }
          @media screen and (max-width: 767px) {
            #about_office dl dd table th {
              width: auto;
              border-bottom: none;
              padding: 10px 0 5px; } }
        #about_office dl dd table tr:last-child th, #about_office dl dd table tr:last-child td {
          border-bottom: none; }
  @media screen and (max-width: 767px) {
    #about_office .inner:nth-child(2) dl {
      margin-top: 50px; } }

#about_access {
  padding: 90px 0 85px;
  background-color: #e2e8f0; }
  @media screen and (max-width: 767px) {
    #about_access {
      padding: 60px 0; } }
  #about_access .box_access {
    display: flex;
    background-color: #ffffff; }
    @media screen and (max-width: 767px) {
      #about_access .box_access {
        display: block; } }
    #about_access .box_access .box_txt {
      flex-basis: 50%;
      position: relative; }
      #about_access .box_access .box_txt:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        background: url(../img/common/bkg/bkg_triangle_navy.png) no-repeat left top/cover;
        width: 41px;
        height: 41px;
        -webkit-transform: scale(-1);
        -ms-transform: scale(-1);
        transform: scale(-1); }
      #about_access .box_access .box_txt dl {
        padding: 55px 35px 0 45px; }
        @media screen and (max-width: 767px) {
          #about_access .box_access .box_txt dl {
            padding: 30px 4%; } }
        #about_access .box_access .box_txt dl dt {
          color: #162b55;
          font-size: 18px;
          font-weight: bold;
          margin-bottom: 10px; }
        #about_access .box_access .box_txt dl dd:nth-child(3) {
          color: #9d7e52;
          font-weight: bold;
          margin-top: 10px; }
    #about_access .box_access figure {
      flex-basis: 50%; }
      @media screen and (max-width: 767px) {
        #about_access .box_access figure {
          padding: 0 4% 30px; } }
  #about_access .iframe_content {
    position: relative;
    width: 100%;
    padding: 320px 0 0 0;
    margin-bottom: 40px; }
    #about_access .iframe_content iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

#about_officeimg {
  padding: 90px 0 85px; }
  @media screen and (max-width: 767px) {
    #about_officeimg {
      padding: 60px 0; } }

.img_thumbnail#about_officeimg .box_fig, .img_thumbnail#recruit_02 .box_fig {
  margin-bottom: 70px; }
  @media screen and (max-width: 767px) {
    .img_thumbnail#about_officeimg .box_fig, .img_thumbnail#recruit_02 .box_fig {
      display: block;
      text-align: center; } }
  .img_thumbnail#about_officeimg .box_fig figure, .img_thumbnail#recruit_02 .box_fig figure {
    flex-basis: 350px;
    margin-right: -25px;
    padding-top: 30px;
    position: relative; }
    @media screen and (max-width: 767px) {
      .img_thumbnail#about_officeimg .box_fig figure, .img_thumbnail#recruit_02 .box_fig figure {
        margin-right: 0;
        margin-bottom: 10px; } }
    .img_thumbnail#about_officeimg .box_fig figure:nth-child(3n), .img_thumbnail#recruit_02 .box_fig figure:nth-child(3n) {
      margin-right: 0; }
    .img_thumbnail#about_officeimg .box_fig figure:first-child, .img_thumbnail#recruit_02 .box_fig figure:first-child {
      background: url(../img/about/bkg_officeimg01.png) no-repeat left top; }
    .img_thumbnail#about_officeimg .box_fig figure:nth-child(4), .img_thumbnail#about_officeimg .box_fig figure:nth-child(5), .img_thumbnail#about_officeimg .box_fig figure:nth-child(6), .img_thumbnail#recruit_02 .box_fig figure:nth-child(4), .img_thumbnail#recruit_02 .box_fig figure:nth-child(5), .img_thumbnail#recruit_02 .box_fig figure:nth-child(6) {
      text-align: right; }
      @media screen and (max-width: 767px) {
        .img_thumbnail#about_officeimg .box_fig figure:nth-child(4), .img_thumbnail#about_officeimg .box_fig figure:nth-child(5), .img_thumbnail#about_officeimg .box_fig figure:nth-child(6), .img_thumbnail#recruit_02 .box_fig figure:nth-child(4), .img_thumbnail#recruit_02 .box_fig figure:nth-child(5), .img_thumbnail#recruit_02 .box_fig figure:nth-child(6) {
          text-align: center; } }
    .img_thumbnail#about_officeimg .box_fig figure:nth-child(3):after, .img_thumbnail#recruit_02 .box_fig figure:nth-child(3):after {
      position: absolute;
      content: "";
      background-image: url(../img/about/bkg_officeimg01.png);
      top: 95px;
      right: 0;
      width: 273px;
      height: 152px;
      -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
      transform: scaleY(-1);
      z-index: -1; }
      @media screen and (max-width: 767px) {
        .img_thumbnail#about_officeimg .box_fig figure:nth-child(3):after, .img_thumbnail#recruit_02 .box_fig figure:nth-child(3):after {
          top: auto;
          bottom: 2em; } }
    .img_thumbnail#about_officeimg .box_fig figure:nth-child(4):after, .img_thumbnail#recruit_02 .box_fig figure:nth-child(4):after {
      position: absolute;
      content: "";
      background-image: url(../img/about/bkg_officeimg02.png);
      top: 57px;
      left: 0;
      width: 343px;
      height: 191px;
      -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
      transform: scaleY(-1);
      z-index: -1; }
      @media screen and (max-width: 767px) {
        .img_thumbnail#about_officeimg .box_fig figure:nth-child(4):after, .img_thumbnail#recruit_02 .box_fig figure:nth-child(4):after {
          top: auto;
          bottom: 2em; } }
    .img_thumbnail#about_officeimg .box_fig figure:nth-child(6), .img_thumbnail#recruit_02 .box_fig figure:nth-child(6) {
      background: url(../img/about/bkg_officeimg02.png) no-repeat right top; }
    .img_thumbnail#about_officeimg .box_fig figure figcaption, .img_thumbnail#recruit_02 .box_fig figure figcaption {
      display: inline-block;
      text-align: left; }
      @media screen and (max-width: 767px) {
        .img_thumbnail#about_officeimg .box_fig figure figcaption, .img_thumbnail#recruit_02 .box_fig figure figcaption {
          text-align: center; } }
  .img_thumbnail#about_officeimg .box_fig.nomg, .img_thumbnail#recruit_02 .box_fig.nomg {
    margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      .img_thumbnail#about_officeimg .box_fig.nomg figure:nth-child(3):after, .img_thumbnail#recruit_02 .box_fig.nomg figure:nth-child(3):after {
        bottom: 3.5em; } }

.img_thumbnail#recruit_02 .box_fig figure:first-child, .img_thumbnail#recruit_02 .box_fig figure:nth-child(3):after {
  background-image: url(../img/about/bkg_officeimg03.png); }

#about_vision {
  padding: 90px 0 85px;
  position: relative;
  border-top: #b0b7c5 1px solid; }
  @media screen and (max-width: 767px) {
    #about_vision {
      padding: 60px 0; } }
  #about_vision:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: url(../img/common/bkg/bkg_triangle_navy.png) no-repeat left top/cover;
    width: 41px;
    height: 41px;
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1); }
  #about_vision:after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    background: url(../img/common/bkg/bkg_triangle_navy.png) no-repeat left top/cover;
    width: 277px;
    height: 277px;
    z-index: -1; }

.box_about_vision {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 767px) {
    .box_about_vision {
      display: block; } }
  .box_about_vision .box_txt {
    flex-basis: 580px; }
    @media screen and (max-width: 767px) {
      .box_about_vision .box_txt {
        margin-bottom: 50px; } }
    .box_about_vision .box_txt p {
      margin-bottom: 20px; }
      @media screen and (max-width: 767px) {
        .box_about_vision .box_txt p {
          margin-bottom: 40px; } }
      .box_about_vision .box_txt p.ttl {
        color: #162b55;
        font-size: 20px;
        font-weight: bold; }
    .box_about_vision .box_txt dl {
      border-top: #bfbfbf 1px solid;
      border-bottom: #bfbfbf 1px solid;
      font-weight: bold;
      padding: 10px 0 20px; }
      .box_about_vision .box_txt dl dt {
        background-color: #ffffff;
        font-size: 20px;
        width: 100px;
        margin-top: -28px; }
  .box_about_vision figure {
    flex-basis: 400px; }

.about_chief01 {
  background-color: #ebe5dc;
  box-sizing: border-box;
  padding: 65px 0 60px; }
  @media screen and (max-width: 767px) {
    .about_chief01 {
      padding-bottom: 90px; } }
  .about_chief01 .inner {
    position: relative; }
    .about_chief01 .inner > p {
      width: 610px;
      margin-bottom: 35px; }
      @media screen and (max-width: 767px) {
        .about_chief01 .inner > p {
          width: auto; } }
  .about_chief01 .chief_name {
    position: relative;
    text-align: center;
    border-bottom: #bfbfbf 1px solid;
    width: 410px;
    margin: 0 auto; }
    @media screen and (max-width: 767px) {
      .about_chief01 .chief_name {
        text-align: left;
        border-bottom: none;
        width: auto;
        margin: 0; } }
    .about_chief01 .chief_name p {
      display: inline-block;
      width: 205px;
      box-sizing: border-box; }
      .about_chief01 .chief_name p:first-child {
        text-align: right;
        padding-right: 15px;
        font-size: 14px;
        line-height: 1.5; }
        @media screen and (max-width: 767px) {
          .about_chief01 .chief_name p:first-child {
            display: block;
            text-align: left;
            padding: 0;
            width: auto;
            margin-bottom: 15px; } }
      .about_chief01 .chief_name p:last-child {
        text-align: left;
        padding-left: 15px;
        font-size: 20px;
        font-weight: bold;
        line-height: 1; }
        @media screen and (max-width: 767px) {
          .about_chief01 .chief_name p:last-child {
            display: block;
            padding: 0;
            width: auto;
            line-height: 1.5; } }
    .about_chief01 .chief_name:after {
      position: absolute;
      top: 0;
      left: 50%;
      content: "";
      width: 1px;
      height: 110px;
      background-color: #bfbfbf; }
      @media screen and (max-width: 767px) {
        .about_chief01 .chief_name:after {
          display: none; } }
  .about_chief01 figure {
    position: absolute;
    bottom: -60px;
    right: 0; }
    @media screen and (max-width: 767px) {
      .about_chief01 figure {
        bottom: -90px;
        right: 3%; } }
    @media screen and (max-width: 767px) {
      .about_chief01 figure img {
        height: 190px;
        width: auto; } }

.about_chief02 {
  position: relative;
  text-align: center;
  padding-bottom: 130px; }
  @media screen and (max-width: 767px) {
    .about_chief02 {
      padding-bottom: 50px; } }
  .about_chief02 .inner {
    background-color: #ffffff;
    padding-top: 30px; }
    @media screen and (max-width: 767px) {
      .about_chief02 .inner {
        margin: 0 3%;
        width: 94% !important; } }
    .about_chief02 .inner h3 {
      display: inline-block;
      border: #bfbfbf 1px solid;
      position: relative;
      font-size: 20px;
      letter-spacing: 15px;
      padding-left: 15px; }
      .about_chief02 .inner h3:after {
        position: absolute;
        top: -31px;
        left: 50%;
        content: "";
        width: 1px;
        height: 30px;
        background-color: #bfbfbf; }
        @media screen and (max-width: 767px) {
          .about_chief02 .inner h3:after {
            display: none; } }
    .about_chief02 .inner .box_table {
      display: flex;
      justify-content: center;
      line-height: 2.2;
      margin-top: 30px; }
      @media screen and (max-width: 767px) {
        .about_chief02 .inner .box_table {
          display: block;
          line-height: 1.9; } }
      .about_chief02 .inner .box_table table {
        flex-basis: 450px;
        width: 450px;
        font-size: 14px; }
        @media screen and (max-width: 767px) {
          .about_chief02 .inner .box_table table {
            width: auto; } }
        .about_chief02 .inner .box_table table th {
          font-weight: bold;
          text-align: left;
          padding: 0 15px 0 15px;
          white-space: nowrap; }
          @media screen and (max-width: 767px) {
            .about_chief02 .inner .box_table table th {
              display: block;
              padding: 0; } }
        .about_chief02 .inner .box_table table td {
          text-align: left; }
          @media screen and (max-width: 767px) {
            .about_chief02 .inner .box_table table td {
              display: block;
              padding: 0;
              margin-bottom: 10px; } }
        .about_chief02 .inner .box_table table:first-child {
          border-right: #bfbfbf 1px solid; }
          @media screen and (max-width: 767px) {
            .about_chief02 .inner .box_table table:first-child {
              border-right: none; } }
  .about_chief02:after {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ebe5dc;
    width: 100%;
    height: 150px;
    content: "";
    z-index: -10; }

/* 業務内容 採用  
------------------------------------------------- */
.service_top, .recruit_top {
  position: relative;
  border-top: #b0b7c5 1px solid;
  padding: 65px 0 85px; }
  @media screen and (max-width: 767px) {
    .service_top, .recruit_top {
      padding: 50px 0; } }
  .service_top h2, .recruit_top h2 {
    margin-bottom: 50px; }
    @media screen and (max-width: 767px) {
      .service_top h2, .recruit_top h2 {
        margin-bottom: 40px; } }

.service_top:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: url(../img/common/bkg/bkg_triangle_navy.png) no-repeat left top/cover;
  width: 90px;
  height: 90px;
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1); }
  @media screen and (max-width: 767px) {
    .service_top:before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      background: url(../img/common/bkg/bkg_triangle_navy.png) no-repeat left top/cover;
      width: 80px;
      height: 80px;
      -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
      transform: scale(-1); } }

.recruit_top:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: url(../img/common/bkg/bkg_triangle_brown.png) no-repeat left top/cover;
  width: 90px;
  height: 90px;
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1); }
  @media screen and (max-width: 767px) {
    .recruit_top:before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      background: url(../img/common/bkg/bkg_triangle_brown.png) no-repeat left top/cover;
      width: 80px;
      height: 80px;
      -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
      transform: scale(-1); } }

.box_service_top {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 767px) {
    .box_service_top {
      display: block; } }
  .box_service_top .box_txt {
    flex-basis: 580px; }
    @media screen and (max-width: 767px) {
      .box_service_top .box_txt {
        margin-bottom: 40px; } }
    .box_service_top .box_txt p {
      margin-bottom: 15px; }
  .box_service_top figure {
    flex-basis: 400px;
    text-align: center; }

@media screen and (max-width: 767px) {
  .recruit_top .sub_ttl03 {
    font-size: 20px; } }
.recruit_top p, .recruit_top figure {
  text-align: center; }
  @media screen and (max-width: 767px) {
    .recruit_top p, .recruit_top figure {
      text-align: left; } }
.recruit_top p {
  margin-bottom: 50px; }

#recruit_01 {
  background: url(../img/common/bkg/bkg_mosaic_brown.png);
  padding: 90px 0 85px;
  position: relative;
  z-index: -2; }
  @media screen and (max-width: 767px) {
    #recruit_01 {
      padding: 60px 0; } }
  #recruit_01:before {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    background: url(../img/common/bkg/bkg_triangle_brown.png) no-repeat left top/cover;
    width: 277px;
    height: 277px;
    z-index: -1; }
  #recruit_01 table {
    width: 100%;
    border-top: #d8cbba 1px solid; }
    #recruit_01 table th, #recruit_01 table td {
      text-align: left;
      border-bottom: #d8cbba 1px solid;
      padding: 20px 0 20px 35px;
      background-color: #ffffff;
      box-sizing: border-box; }
      @media screen and (max-width: 767px) {
        #recruit_01 table th, #recruit_01 table td {
          display: block;
          padding: 10px 15px; } }
    #recruit_01 table th {
      width: 250px;
      background-color: #dfd5c6;
      color: #594d3c; }
      @media screen and (max-width: 767px) {
        #recruit_01 table th {
          width: auto;
          border-bottom: none; } }

#recruit_02 {
  background: url(../img/common/bkg/bkg_mosaic_brown.png);
  padding: 90px 0 85px;
  position: relative;
  z-index: -2; }
  @media screen and (max-width: 767px) {
    #recruit_02 {
      padding: 60px 0; } }
  #recruit_02 .txt {
    text-align: center;
    font-size: 24px;
    margin-bottom: 35px; }
    @media screen and (max-width: 767px) {
      #recruit_02 .txt {
        font-size: 20px;
        padding: 0 3%; } }

#recruit_03 {
  padding: 90px 0 85px;
  position: relative; }
  @media screen and (max-width: 767px) {
    #recruit_03 {
      padding: 60px 0; } }
  #recruit_03:before {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    background: url(../img/common/bkg/bkg_triangle_brown.png) no-repeat left top/cover;
    width: 277px;
    height: 277px;
    z-index: -1; }
  #recruit_03 .box_message {
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 767px) {
      #recruit_03 .box_message {
        display: block; } }
    #recruit_03 .box_message .box_txt {
      flex-basis: 580px; }
      @media screen and (max-width: 767px) {
        #recruit_03 .box_message .box_txt {
          margin-bottom: 40px; } }
      #recruit_03 .box_message .box_txt p {
        margin-bottom: 15px; }
    #recruit_03 .box_message figure {
      flex-basis: 400px;
      text-align: center; }
      #recruit_03 .box_message figure figcaption {
        text-align: right;
        font-size: 14px;
        font-weight: bold;
        margin-top: 5px; }
        #recruit_03 .box_message figure figcaption span {
          display: block;
          font-size: 20px; }

/* お問い合わせ
------------------------------------------------- */
#form_contact {
  position: relative;
  border-top: #b0b7c5 1px solid;
  padding: 65px 0 85px; }
  @media screen and (max-width: 767px) {
    #form_contact {
      padding: 50px 0; } }
  #form_contact:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: url(../img/common/bkg/bkg_triangle_brown.png) no-repeat left top/cover;
    width: 90px;
    height: 90px;
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1); }
    @media screen and (max-width: 767px) {
      #form_contact:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        background: url(../img/common/bkg/bkg_triangle_brown.png) no-repeat left top/cover;
        width: 80px;
        height: 80px;
        -webkit-transform: scale(-1);
        -ms-transform: scale(-1);
        transform: scale(-1); } }
  #form_contact p {
    margin-bottom: 40px; }
    @media screen and (max-width: 767px) {
      #form_contact p {
        text-align: center; } }
  #form_contact .box_policy {
    border: #cccccc 1px solid;
    padding: 40px 35px; }
    #form_contact .box_policy h3 {
      margin-bottom: 20px; }
    #form_contact .box_policy p {
      margin-bottom: 0; }
      @media screen and (max-width: 767px) {
        #form_contact .box_policy p {
          text-align: left; } }

table.table_inquiry {
  margin-bottom: 50px;
  width: 100%;
  border-top: #bfbfbf 1px solid; }
  table.table_inquiry th {
    border-bottom: #bfbfbf 1px solid;
    border-right: #bfbfbf 1px solid;
    padding: 25px 68px 20px 0;
    width: 28%;
    position: relative;
    text-align: left; }
    @media screen and (max-width: 767px) {
      table.table_inquiry th {
        display: block;
        border: none;
        padding: 14px 3% 0;
        width: auto; } }
    table.table_inquiry th span {
      position: absolute;
      top: 25px;
      right: 15px;
      display: block;
      text-align: center;
      color: #fff;
      background-color: #000;
      width: 50px;
      font-size: 14px;
      padding: 3px 0; }
      @media screen and (max-width: 767px) {
        table.table_inquiry th span {
          position: relative;
          display: inline-block;
          top: auto;
          right: auto;
          margin-left: 10px; } }
  table.table_inquiry td {
    border-bottom: #bfbfbf 1px solid;
    padding: 17px 3% 15px 3%;
    vertical-align: middle; }
    @media screen and (max-width: 767px) {
      table.table_inquiry td {
        display: block; } }
  table.table_inquiry label {
    display: block; }
  table.table_inquiry input[type="checkbox"] {
    margin-right: 10px; }
  table.table_inquiry input:valid, table.table_inquiry textarea:valid {
    border: 1px solid #aaa; }
  table.table_inquiry input:invalid, table.table_inquiry textarea:invalid {
    border: 1px solid #FF0000; }
  table.table_inquiry input.zip {
    width: 115px;
    margin: 0 10px 20px 0; }

.box_submit {
  text-align: center;
  margin-bottom: 40px; }
  .box_submit input, .box_submit a {
    display: inline-block;
    width: 300px;
    height: 54px;
    color: #ffffff;
    line-height: 54px;
    margin: 0 20px;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    background-color: #9d7e52;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    @media screen and (max-width: 767px) {
      .box_submit input, .box_submit a {
        margin: 0 10px 15px;
        width: 280px; } }
    @media screen and (max-width: 320px) {
      .box_submit input, .box_submit a {
        margin: 0 0 15px;
        width: 100%; } }
    .box_submit input:hover, .box_submit a:hover {
      background-color: #162b55; }

/* -------------------------------------------------------------------------

		print.sass
		
		印刷用のスタイルを定義
		
------------------------------------------------------------------------- */
@media print {
  /* IE zoom
  ------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7; }

  /* for IE7 */
  * + html body {
    zoom: 1; } }
