@charset "UTF-8";
/*
	-----------------------------------
	v1.0
	Last Updated: 2019-10-02
	-----------------------------------
	[Updated]
	v1.0		2019-10-02
	-----------------------------------

*/
/* ------------------------------
　　ベース
------------------------------ */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #ffffff;
  color: #000000;
  font-size: 62.5%;
  width: 100%; }

body {
  width: 100%; }
  @media print, screen and (min-width: 768px) {
    body {
      min-width: 980px; } }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

/*デフォルトリンクカラー*/
a {
  color: #1a0dab;
  text-decoration: none; }
  a:link {
    color: #1a0dab; }
  a:visited {
    color: #660099; }
  a:active, a:hover, a:focus {
    text-decoration: underline; }

/* FireFox リンク選択時の点線を消す */
a:link,
a:visited,
a:active,
a:hover {
  overflow: hidden;
  outline: none; }

/*border-boxを全ての要素に適用*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

figure {
  padding: 0;
  margin: 0; }

/* ------------------------------
　　クリアフィックス
------------------------------ */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }
.clearfix:after {
  clear: both; }

/* ------------------------------
　　非表示設定
------------------------------ */
.hide-all {
  display: none !important; }

.hide-text {
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  list-style-type: none;
  height: 0;
  overflow: hidden; }

@media (max-width: 767px) {
  .hide-sp {
    display: none !important; } }
@media print, screen and (min-width: 768px) {
  .hide-pc {
    display: none !important; } }
/* ------------------------------
　　wrap
------------------------------ */
.wrap:before, .wrap:after {
  content: " ";
  display: table; }
.wrap:after {
  clear: both; }

/* ------------------------------
　　フォント
------------------------------ */
/*.ff-gen-min {
	@include ff-gen-min;
}
.ff-gen-min-ch {
	@include ff-gen-min-ch;
}
.ff-gen-min-kr {
	@include ff-gen-min-kr;
}*/
/* ------------------------------
　　カラー
------------------------------ */
.color-red {
  color: #e5151f; }

/*.color-green {
	color: $color-green;
}*/
/* ------------------------------
　　テキストレイアウト
------------------------------ */
/*テキストの左寄せ*/
.text-left {
  text-align: left !important; }

/*テキストのセンタリンク*/
.text-center {
  text-align: center !important; }

@media print, screen and (min-width: 768px) {
  .text-center-pc {
    text-align: center !important; } }

/*テキストの右寄せ*/
.text-right {
  text-align: right !important; }

/* ------------------------------
　　マージン
------------------------------ */
/*下マージン*/
.mb1e {
  margin-bottom: 1em !important; }

/* ------------------------------
　　googlemap
------------------------------ */
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 0 0 30px; }
  @media (max-width: 767px) {
    .ggmap {
      margin: 0 0 20px; } }

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* ------------------------------
　　youtube
------------------------------ */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%; }

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%; }

/* ------------------------------
　　ヘッダー
------------------------------ */
.header {
  background: #fff; }
  .home .header {
    background: url(../images/header.jpg) no-repeat center 0;
    background-size: cover;
    height: 760px; }
    @media (max-width: 767px) {
      .home .header {
        height: 110vw; } }

@media print, screen and (min-width: 768px) {
  .header-inner {
    background: #fff; } }

.header-inner2 {
  margin: auto;
  padding: 1px 0;
  position: relative; }
  @media print, screen and (min-width: 768px) {
    .header-inner2 {
      width: 980px;
      height: 104px; } }
  @media (max-width: 767px) {
    .header-inner2 {
      height: 62px; } }

/*ロゴ*/
.header-logo-item {
  width: 259px;
  margin: 0;
  position: absolute;
  top: 33px;
  left: 20px; }
  @media (max-width: 767px) {
    .header-logo-item {
      width: 195px;
      top: 18px;
      left: 14px; } }

/*SP用メニューボタン*/
.header-menu-btn {
  background: #153793;
  width: 40px;
  height: 40px;
  margin: 0;
  position: absolute;
  top: 11px;
  right: 10px;
  z-index: 99999; }
  .header-menu-btn.kotei {
    position: fixed;
    top: 11px;
    right: 10px; }
  .header-menu-btn .menu-trigger,
  .header-menu-btn .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box; }
  .header-menu-btn .menu-trigger {
    position: relative;
    width: 40px;
    height: 40px; }
  .header-menu-btn .menu-trigger span {
    position: absolute;
    left: 11px;
    width: 20px;
    height: 2px;
    background-color: #ffffff; }
  .header-menu-btn .menu-trigger span:nth-of-type(1) {
    top: 13px; }
  .header-menu-btn .menu-trigger span:nth-of-type(2) {
    top: 19px; }
  .header-menu-btn .menu-trigger span:nth-of-type(3) {
    top: 25px; }
  .header-menu-btn .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg); }
  .header-menu-btn .menu-trigger.active span:nth-of-type(2) {
    opacity: 0; }
  .header-menu-btn .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg); }

/*PC＆SP隠れるメニュー*/
@media (max-width: 767px) {
  .header-sp-menu {
    background: #fff;
    width: 100%;
    height: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all .4s;
    opacity: 0;
    overflow: scroll; }
    .header-sp-menu.active {
      opacity: 1;
      height: 100vh; } }

/*トップページ専用アイキャッチ*/
.header-eyecatch {
  display: none; }
  .home .header-eyecatch {
    display: block; }
    @media print, screen and (min-width: 768px) {
      .home .header-eyecatch {
        padding: 58px 0 0;
        margin: 0 0 30px; } }
    @media (max-width: 767px) {
      .home .header-eyecatch {
        padding: 22px 0 0;
        margin: 0 0 30px; } }
    .home .header-eyecatch .header-eyecatch-inner {
      width: 100%; }
      @media print, screen and (min-width: 768px) {
        .home .header-eyecatch .header-eyecatch-inner .header-eyecatch-image {
          width: 850px;
          height: 464px;
          margin: 0 45px; } }
      @media (max-width: 767px) {
        .home .header-eyecatch .header-eyecatch-inner .header-eyecatch-image {
          width: 100vw; } }
      .home .header-eyecatch .header-eyecatch-inner .arrow {
        font-size: 0;
        line-height: 0;
        text-indent: -9999px;
        width: 28px;
        height: 57px;
        position: absolute;
        top: 202px;
        z-index: 1000;
        background: #f00;
        cursor: pointer; }
      .home .header-eyecatch .header-eyecatch-inner .arrow.prev {
        background: url(../images/eyecatch/prev.png) no-repeat 0 0;
        background-size: cover;
        left: calc(50% - 480px); }
      .home .header-eyecatch .header-eyecatch-inner .arrow.next {
        background: url(../images/eyecatch/next.png) no-repeat 0 0;
        background-size: cover;
        right: calc(50% - 480px); }
      .home .header-eyecatch .header-eyecatch-inner .slick-dots {
        text-align: center;
        padding: 0; }
        .home .header-eyecatch .header-eyecatch-inner .slick-dots li {
          display: inline-block;
          width: 12px;
          margin: 0 4px;
          padding: 0; }
          .home .header-eyecatch .header-eyecatch-inner .slick-dots li button {
            font-size: 0;
            line-height: 0;
            position: relative;
            text-indent: -9999px;
            border: 0;
            outline: none;
            cursor: pointer; }
            .home .header-eyecatch .header-eyecatch-inner .slick-dots li button:before {
              content: '●';
              color: #fff;
              font-size: 12px;
              text-indent: 0px;
              position: absolute;
              top: 0;
              left: 0; }
          .home .header-eyecatch .header-eyecatch-inner .slick-dots li.slick-active button:before {
            color: #e5151f; }

/*トップページ専用キャッチ*/
.header-catch {
  display: none; }
  .home .header-catch {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 4rem;
    text-align: center; }
    @media (max-width: 767px) {
      .home .header-catch {
        font-size: 2rem;
        font-weight: bold; } }

/* ------------------------------
　　グローバルナビゲーション
------------------------------ */
/*グルーバルナビ*/
.gnav-list {
  font-size: 0;
  padding: 0 20px 0 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  list-style: none; }

.gnav-list li {
  list-style: none;
  padding: 0;
  margin: 0; }

a.gnav-list-item {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.5;
  height: 104px;
  padding: 0 26px; }
  a.gnav-list-item:hover {
    background: #153793;
    color: #fff;
    text-decoration: none; }

/*PC版サブメニュー*/
.global-header-sub {
  display: none;
  background-color: rgba(21, 55, 147, 0.9);
  width: 100%;
  min-width: 980px;
  position: absolute;
  top: 104px;
  left: 0;
  z-index: 9999; }

.global-header-sub-inner {
  width: 960px;
  margin: auto;
  padding: 22px 10px 22px 10px; }

.global-header-sub-inner2 {
  margin: 0 0 0 24px; }

/*デフォルトリンクリスト*/
.global-header-sub ul {
  padding: 0; }
  .global-header-sub ul li {
    list-style: none;
    color: #fff;
    font-size: 1.4rem;
    line-height: 30px;
    padding: 0 1em 0 15px; }
    .global-header-sub ul li:before {
      content: '\f105';
      font-family: fontAwesome;
      font-size: 1.2rem;
      margin: 0 7px 0 0; }
    .global-header-sub ul li.no-icon:before {
      content: ''; }
    .global-header-sub ul li a {
      color: #fff; }
    .global-header-sub ul li ul li {
      padding-right: 0;
      margin-left: 10px; }

.global-header-sub-inner2 > ul {
  display: flex; }

.global-header-sub-work .global-header-sub-inner2 > ul {
  justify-content: space-between; }

/*SP用メニュー*/
.gnav-list-sp {
  list-style: none;
  margin: 62px 0 0;
  padding: 0 0 40px; }
  .gnav-list-sp li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    text-align: center; }
    .gnav-list-sp li .gnav-list-sp-item {
      display: block;
      color: #153793;
      line-height: 60px;
      text-decoration: none;
      height: 60px; }
      .gnav-list-sp li .gnav-list-sp-item.plus {
        color: #153793;
        position: relative; }
        .gnav-list-sp li .gnav-list-sp-item.plus:before {
          content: '';
          position: absolute;
          top: 30px;
          right: 25px;
          width: 10px;
          height: 1px;
          background-color: currentColor; }
        .gnav-list-sp li .gnav-list-sp-item.plus:after {
          content: '';
          position: absolute;
          top: 30px;
          right: 25px;
          width: 10px;
          height: 1px;
          background-color: currentColor;
          -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }
      .gnav-list-sp li .gnav-list-sp-item.minus {
        background: #153793;
        color: #fff;
        position: relative; }
        .gnav-list-sp li .gnav-list-sp-item.minus:before {
          content: '';
          position: absolute;
          top: 30px;
          right: 25px;
          width: 10px;
          height: 1px;
          background-color: currentColor; }
    .gnav-list-sp li ul {
      display: none;
      list-style: none;
      margin: 0;
      padding: 0; }
      .gnav-list-sp li ul li a {
        display: block;
        background: #f4f4f4;
        color: #000;
        font-size: 1.4rem;
        line-height: 60px;
        text-align: left;
        height: 60px;
        padding: 0 0 0 40px;
        border-bottom: 1px solid #c1c1c1;
        position: relative; }
        .gnav-list-sp li ul li a:after {
          content: '\f105';
          font-family: fontAwesome;
          position: absolute;
          top: 0px;
          right: 26px; }

/* ------------------------------
　　トピックパス
------------------------------ */
.topicpath {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 980px;
  margin: 0 auto 30px;
  padding: 12px 20px 10px; }
  @media (max-width: 767px) {
    .topicpath {
      margin: 0 auto 25px; } }

.topicpath ol {
  list-style: none;
  margin: 0;
  padding: 0; }
  .topicpath ol:before, .topicpath ol:after {
    content: " ";
    display: table; }
  .topicpath ol:after {
    clear: both; }

.topicpath li {
  float: left;
  padding: 0 20px 0 0; }
  .topicpath li:before {
    content: '\f105';
    font-family: fontAwesome;
    position: relative;
    left: -8px; }
  .topicpath li:first-child:before {
    content: none; }

.topicpath li a {
  color: #000; }
  .topicpath li a:visited, .topicpath li a:focus, .topicpath li a:active {
    color: #000; }

/* ------------------------------
　　コンテンツ
------------------------------ */
.content {
  margin: auto; }
  @media print, screen and (min-width: 768px) {
    .content {
      width: 980px;
      padding: 0 20px; } }
  @media (max-width: 767px) {
    .content {
      width: 93.75vw; } }

/*コンテンツ基本設定*/
.content .box {
  margin-bottom: 14rem; }
  @media (max-width: 767px) {
    .content .box {
      margin-bottom: 7rem; } }
.content p {
  font-size: 1.6rem;
  line-height: 1.875;
  margin: 0 0 1em; }
.content .catch {
  color: #153793;
  font-size: 2.4rem;
  margin: 1em 0; }
  @media (max-width: 767px) {
    .content .catch {
      font-size: 1.8rem; } }
.content .last {
  margin-bottom: 5rem; }
.content .last2 {
  margin-bottom: 10rem; }
.content .halfway {
  margin-bottom: 0; }

/*building-box*/
.building-box {
  margin: 40px 0; }
  @media (max-width: 767px) {
    .building-box {
      margin: 20px 0 30px; } }
  @media print, screen and (min-width: 768px) {
    .building-box .building-box-left {
      float: left;
      width: 240px; } }
  @media print, screen and (min-width: 768px) {
    .building-box .building-box-right {
      float: right;
      width: 680px; } }
  .building-box .building-box-right dl {
    font-size: 1.6rem;
    line-height: 1.875;
    padding: 0;
    margin: 0 0 20px; }
    .building-box .building-box-right dl:before, .building-box .building-box-right dl:after {
      content: " ";
      display: table; }
    .building-box .building-box-right dl:after {
      clear: both; }
    @media (max-width: 767px) {
      .building-box .building-box-right dl {
        margin: 8px 0 20px; } }
    .building-box .building-box-right dl dt {
      color: #153793;
      padding: 0;
      margin: 0; }
      @media print, screen and (min-width: 768px) {
        .building-box .building-box-right dl dt {
          float: left;
          width: 85px; } }
    .building-box .building-box-right dl dd {
      padding: 0;
      margin: 0; }
      @media print, screen and (min-width: 768px) {
        .building-box .building-box-right dl dd {
          float: left;
          width: 595px; } }

/*comment-box*/
.comment-box {
  background: #dfe5f8;
  padding: 30px 50px;
  margin: 0 0 20px; }
  @media (max-width: 767px) {
    .comment-box {
      padding: 15px 25px; } }

/*bukken-boxスライダー*/
@media print, screen and (min-width: 768px) {
  .content .bukken-box .bukken-photo-box {
    width: 450px; } }
.content .bukken-box .bukken-photo-box .slick-slide:focus {
  outline: none; }
.content .bukken-box .bukken-photo-box .slick-dots {
  margin-top: 0px;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  .content .bukken-box .bukken-photo-box .slick-dots li {
    list-style: none;
    display: block;
    width: 94px;
    padding: 0 20px 0 0;
    margin: 20px 0 0; }
    @media (max-width: 767px) {
      .content .bukken-box .bukken-photo-box .slick-dots li {
        width: 19.53125vw;
        padding: 0 3.90625vw 0 0; } }
    .content .bukken-box .bukken-photo-box .slick-dots li:nth-child(5n) {
      width: 74px;
      padding: 0; }
      @media (max-width: 767px) {
        .content .bukken-box .bukken-photo-box .slick-dots li:nth-child(5n) {
          width: 15.625vw; } }
    .content .bukken-box .bukken-photo-box .slick-dots li img {
      opacity: 0.5;
      width: 100%;
      height: auto; }
    .content .bukken-box .bukken-photo-box .slick-dots li.slick-active img {
      opacity: 1; }

/* ------------------------------
　　フッター
------------------------------ */
.footer .footer-top {
  background: #f4f4f4; }
  @media print, screen and (min-width: 768px) {
    .footer .footer-top .footer-top-inner {
      width: 980px;
      height: 56px;
      margin: auto; } }
  .footer .footer-top .footer-top-inner address {
    font-size: 1.4rem;
    font-style: normal;
    line-height: 56px;
    text-align: center;
    margin: 0;
    padding: 0; }
    @media (max-width: 767px) {
      .footer .footer-top .footer-top-inner address {
        font-size: 1.2rem;
        line-height: 1.8;
        padding: 18px 0; } }
.footer .footer-bottom {
  background: #3b3b3b; }
  .footer .footer-bottom .footer-bottom-inner {
    text-align: center; }
    @media print, screen and (min-width: 768px) {
      .footer .footer-bottom .footer-bottom-inner {
        width: 980px;
        height: 116px;
        margin: auto; } }
    .footer .footer-bottom .footer-bottom-inner small {
      color: #fff;
      font-size: 1.4rem;
      line-height: 116px; }
      @media (max-width: 767px) {
        .footer .footer-bottom .footer-bottom-inner small {
          font-size: 1.2rem;
          line-height: 70px; } }

/* ------------------------------
　　フッターナビゲーション
------------------------------ */
.sp-footer-menu a:hover {
  text-decoration: none; }

.sp-footer-menu01 {
  margin: 0; }
  .sp-footer-menu01 a {
    display: block;
    background: #153793;
    color: #fff;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 60px;
    height: 60px;
    padding: 0 10px; }
    .sp-footer-menu01 a::after {
      content: '\f105';
      color: #e5151f;
      font-family: fontAwesome;
      margin: 0 0 0 5px; }

.sp-footer-menu02 {
  list-style: none;
  margin: 0;
  padding: 0; }
  .sp-footer-menu02 a {
    display: block;
    background: #f4f4f4;
    color: #000;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 60px;
    height: 60px;
    padding: 0 10px;
    border-bottom: 1px solid #b4b4b4; }
    .sp-footer-menu02 a::after {
      content: '\f105';
      color: #000;
      font-family: fontAwesome;
      margin: 0 0 0 5px; }

.sp-footer-menu03 {
  background: #f4f4f4;
  color: #153793;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 60px;
  height: 60px;
  padding: 0 10px;
  margin: 0;
  border-bottom: 1px solid #b4b4b4; }

.sp-footer-menu04 {
  list-style: none;
  margin: 0;
  padding: 0; }
  .sp-footer-menu04 a {
    display: block;
    background: #f4f4f4;
    color: #000;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 60px;
    height: 60px;
    padding: 0 10px 0 20px;
    border-bottom: 1px solid #b4b4b4; }
    .sp-footer-menu04 a::before {
      content: '\f0da';
      color: #153793;
      font-family: fontAwesome;
      margin: 0 6px; }

/* ------------------------------
　　ページアップ
------------------------------ */
.pageup {
  margin: 0; }
  .pageup a {
    display: block;
    background: #3b3b3b;
    font-size: 0rem;
    text-indent: -9999px;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    bottom: 30px;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s; }
    @media (max-width: 767px) {
      .pageup a {
        width: 40px;
        height: 40px;
        right: 10px;
        bottom: 20px; } }
    .pageup a::before {
      content: '\f106';
      font-family: fontAwesome;
      color: #fff;
      font-size: 4rem;
      text-indent: 0px;
      position: absolute;
      top: 1px;
      left: 12px; }
      @media (max-width: 767px) {
        .pageup a::before {
          font-size: 2.6rem;
          top: 5px; } }
    .pageup a:hover {
      opacity: 0.7; }

/* ------------------------------
　　ページタイトル
------------------------------ */
.page-title-box {
  width: 100%;
  height: 430px; }
  @media (max-width: 767px) {
    .page-title-box {
      height: 62.5vw; } }
  .category-sample .page-title-box {
    background: url(../sample/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .category-sample .page-title-box {
        background: url(../sample/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .category-company_profile .page-title-box {
    background: url(../company_profile/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .category-company_profile .page-title-box {
        background: url(../company_profile/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .philosophy-index .page-title-box {
    background: url(../company_profile/philosophy/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .philosophy-index .page-title-box {
        background: url(../company_profile/philosophy/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .outline-index .page-title-box {
    background: url(../company_profile/outline/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .outline-index .page-title-box {
        background: url(../company_profile/outline/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .history-index .page-title-box {
    background: url(../company_profile/history/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .history-index .page-title-box {
        background: url(../company_profile/history/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .organization_chart-index .page-title-box {
    background: url(../company_profile/organization_chart/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .organization_chart-index .page-title-box {
        background: url(../company_profile/organization_chart/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .work-index .page-title-box {
    background: url(../work/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .work-index .page-title-box {
        background: url(../work/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .brokerage-index .page-title-box {
    background: url(../work/brokerage/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .brokerage-index .page-title-box {
        background: url(../work/brokerage/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .consulting-index .page-title-box {
    background: url(../work/consulting/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .consulting-index .page-title-box {
        background: url(../work/consulting/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .appraisal-index .page-title-box {
    background: url(../work/appraisal/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .appraisal-index .page-title-box {
        background: url(../work/appraisal/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .construction-index .page-title-box {
    background: url(../work/construction/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .construction-index .page-title-box {
        background: url(../work/construction/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .rental_apartments-index .page-title-box {
    background: url(../work/rental_apartments/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .rental_apartments-index .page-title-box {
        background: url(../work/rental_apartments/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .office_building-index .page-title-box {
    background: url(../work/office_building/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .office_building-index .page-title-box {
        background: url(../work/office_building/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .category-recruit .page-title-box {
    background: url(../recruit/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .category-recruit .page-title-box {
        background: url(../recruit/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .category-privacy_policy .page-title-box {
    background: url(../privacy_policy/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .category-privacy_policy .page-title-box {
        background: url(../privacy_policy/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }
  .category-form .page-title-box {
    background: url(../form/images/page-title_pc.jpg) no-repeat center center;
    background-size: cover; }
    @media (max-width: 767px) {
      .category-form .page-title-box {
        background: url(../form/images/page-title_sp.jpg) no-repeat center center;
        background-size: cover; } }

.page-title {
  font-size: 3.6rem;
  font-weight: normal;
  text-align: center;
  width: 980px;
  margin: auto;
  position: relative; }
  @media print, screen and (min-width: 768px) {
    .page-title {
      padding-top: 180px; } }
  @media (max-width: 767px) {
    .page-title {
      font-size: 2rem;
      line-height: 62.5vw;
      width: 100%;
      height: 62.5vw; } }
  .page-title::before {
    content: "";
    background: #e5151f;
    width: 48px;
    height: 3px;
    position: absolute;
    top: 245px;
    left: calc(50% - 24px); }
    @media (max-width: 767px) {
      .page-title::before {
        width: 28px;
        height: 2;
        top: 40vw;
        left: calc(50% - 14px); } }
  @media (max-width: 767px) {
    .recruit_privacy-index .page-title, .form-thanks .page-title {
      line-height: 1.875;
      padding-top: 14.0625vw; } }

/* ------------------------------
　　テーブル
------------------------------ */
/*ノーマルテーブル*/
.nomal-table {
  min-width: 100%;
  font-size: 1.6rem;
  line-height: 1.875;
  border-collapse: collapse;
  box-sizing: border-box;
  margin: 0 0 20px; }

.nomal-table > tbody > tr > th, .nomal-table > tbody > tr > td {
  text-align: left;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  box-sizing: border-box; }
  @media (max-width: 767px) {
    .nomal-table > tbody > tr > th, .nomal-table > tbody > tr > td {
      display: block;
      border-bottom: none;
      border-right: none; } }

@media print, screen and (min-width: 768px) {
  .nomal-table > tbody > tr:last-child > th, .nomal-table > tbody > tr:last-child > td {
    border-bottom: none; } }

.nomal-table > tbody > tr > th {
  background: #dfe5f8;
  font-weight: normal;
  vertical-align: top;
  padding: 16px 23px; }
  @media (max-width: 767px) {
    .nomal-table > tbody > tr > th {
      width: 100%;
      padding: 10px;
      border-bottom: 2px solid #fff; } }

.nomal-table > tbody > tr > td {
  background: #f4f4f4;
  padding: 16px 23px; }
  @media print, screen and (min-width: 768px) {
    .nomal-table > tbody > tr > td:last-child {
      border-right: none; } }
  @media (max-width: 767px) {
    .nomal-table > tbody > tr > td {
      width: 100%;
      padding: 10px;
      border-bottom: 2px solid #fff; } }

/*ラベルを使った上見出しに対応したテーブル＠イベント等で使用*/
table.label-table {
  font-size: 1.6rem;
  line-height: 1.875;
  width: 100%;
  border-collapse: collapse;
  box-sizing: border-box;
  margin: 0 0 20px; }

@media (max-width: 767px) {
  table.label-table thead {
    display: none; } }

table.label-table thead th {
  background: #b1c0e8;
  font-weight: normal;
  text-align: left;
  padding: 16px 23px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff; }

table.label-table thead th:last-child {
  border-right: none; }

table.label-table tbody td {
  background: #f4f4f4;
  padding: 16px 23px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff; }
  @media (max-width: 767px) {
    table.label-table tbody td {
      display: block;
      border-right: none; } }

table.label-table tbody tr td:first-child {
  background: #dfe5f8; }

@media print, screen and (min-width: 768px) {
  table.label-table tbody tr td:last-child {
    border-right: none; } }
@media (max-width: 767px) {
  table.label-table tbody tr td:last-child {
    border-bottom: none;
    margin: 0 0 20px; } }

@media print, screen and (min-width: 768px) {
  table.label-table tbody tr:last-child td {
    border-bottom: none; } }

@media (max-width: 767px) {
  table.label-table tbody tr:last-child td:last-child {
    margin: 0; } }

@media (max-width: 767px) {
  table.label-table tbody td::before {
    content: attr(label);
    clear: both;
    font-weight: bold;
    display: block; } }

/* ------------------------------
　　テーブルの微調整用スタイル
------------------------------ */
/*幅の調整*/
@media print, screen and (min-width: 768px) {
  .nomal-table .w4e,
  .label-table .w4e {
    width: calc(24px + 4em + 24px); } }
@media print, screen and (min-width: 768px) {
  .nomal-table .w8e,
  .label-table .w8e {
    width: calc(24px + 8em + 24px); } }
@media print, screen and (min-width: 768px) {
  .nomal-table .w17e,
  .label-table .w17e {
    width: calc(24px + 17em + 24px); } }

/*改行禁止*/
@media print, screen and (min-width: 768px) {
  .no-wrap-pc {
    white-space: nowrap; } }

/* ------------------------------
　　リスト
------------------------------ */
/*ノーマルリスト*/
ul.list-style01 {
  list-style: none;
  font-size: 1.6rem;
  line-height: 1.875;
  margin: 0 0 1em 2em;
  padding: 0; }
  ul.list-style01 li {
    position: relative; }
    ul.list-style01 li:before {
      content: '\f0da';
      color: #153793;
      font-family: fontAwesome;
      position: absolute;
      top: 0;
      left: -1em; }

/*三角リスト（インライン）*/
/*
ul.list-style02 {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;

  @include sp {
    margin: 0 0 20px;
  }

  li {
    display: inline;
    line-height: 1.75;
    padding: 0 30px 0 1em;
    position: relative;

    @include sp {
      padding: 0 30px 0 0.5em;
    }

    &:before {
      content: " \f0da";
      font-family: FontAwesome;
      color: $color-green;
      position: absolute;
      top: -1px;
      left: 0.5em;

      @include sp {
        left: 0;
      }
    }
  }
}

/*丸の中に三角リスト*/
/*
ul.list-style03 {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;

  @include sp {
    margin: 0 0 20px;
  }

  li {
    line-height: 1.75;
    padding: 0 0 0 2em;
    position: relative;

    @include sp {
      padding: 0 0 0 25px;
    }

    &:before {
      content: " \f111";
      font-family: FontAwesome;
      @include font-size(28);
      color: $color-green;
      position: absolute;
      top: -10px;
      left: 0;

      @include sp {
        @include font-size(20);
        top: -2px;
        left: 0;
      }
    }
    &:after {
      content: " \f0da";
      font-family: FontAwesome;
      color: #fff;
      position: absolute;
      top: 0;
      left: 10px;

      @include sp {
        @include font-size(12);
        top: 5px;
        left: 7px;
      }
    }
  }
}


/*スタイルなしリスト*/
/*
ul.list-style-none {
  list-style: none;
  line-height: 1.5;
  padding: 0;
  margin: 0 0 20px;

  @include sp {
    @include font-size(14);
  }
}
*/
/* ------------------------------
　　数字リスト
------------------------------ */
/*数字リスト*/
ol.list-suji-style01 {
  font-size: 1.6rem;
  line-height: 1.875;
  margin: 0 0 1em 2em;
  padding: 0; }

/*※＆上下のボーダー付き*/
/*
ol.list-suji-style02 {
  list-style: none;
  margin: 0 0 30px 3.5em;
  padding: 0;


  @include sp {
    margin: 0 0 20px 3.5em;
  }

  > li {
    counter-increment: cnt;

    &:before {
      content: "※ " counter(cnt);
      display:inline-block;
      margin-left:-3em;
      width: 3em;
    }
  }
}






/*丸括弧付き数字リスト*/
ol.list-suji-style02 {
  list-style-type: none;
  font-size: 1.6rem;
  line-height: 1.875;
  margin: 0 0 1em 2.5em;
  padding: 0; }
  ol.list-suji-style02 > li {
    counter-increment: cnt; }
    ol.list-suji-style02 > li:before {
      content: "( " counter(cnt) " ) ";
      display: inline-block;
      margin-left: -2em;
      width: 2em; }

/*隅付き括弧付き数字リスト　下マージンなし*/
/*
ol.list-suji-style03 {
  list-style-type: none;
  margin: 0 0 20px 3.5em;
  padding: 0;

  @include sp {
    margin: 0 0 15px 3.5em;
  }

  > li {
    counter-increment: cnt3;

    &:before {
      content: "【 " counter(cnt3) " 】 ";
      display:inline-block;
      margin-left:-3em;
      width: 3em;

      @include sp {
        margin-left:-3.5em;
      width: 3.5em;
      }
    }
  }
}
*/
/*カタカナリスト*/
/*ol.list-suji-style04 {
  list-style: katakana;
  margin: 0 0 20px 2em;
  padding: 0;

  @include sp {
    margin: 0 0 15px 2em;
  }

  > li {
    margin: 0;
  }
}
*/
/* ------------------------------
　　見出し
------------------------------ */
/*見出し1 hedding01*/
.hedding01 {
  background: #153793;
  color: #fff;
  font-size: 2.6rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.5;
  padding: 24px;
  margin: 0 0 50px; }
  @media (max-width: 767px) {
    .hedding01 {
      font-size: 1.6rem;
      padding: 15px 10px;
      margin: 0 0 30px; } }

.hedding01-icon01::before {
  content: '';
  display: inline-block;
  background: url(../images/hedding/hedding01-icon01.png) no-repeat 0 0;
  background-size: cover;
  width: 76px;
  height: 48px;
  vertical-align: middle;
  margin-right: 16px; }
  @media (max-width: 767px) {
    .hedding01-icon01::before {
      width: 38px;
      height: 24px;
      margin-right: 8px; } }

.hedding01-icon02::before {
  content: '';
  display: inline-block;
  background: url(../images/hedding/hedding01-icon02.png) no-repeat 0 0;
  background-size: cover;
  width: 70px;
  height: 46px;
  vertical-align: middle;
  margin-right: 19px; }
  @media (max-width: 767px) {
    .hedding01-icon02::before {
      width: 35px;
      height: 23px;
      margin-right: 10px; } }

.hedding01-icon03::before {
  content: '';
  display: inline-block;
  background: url(../images/hedding/hedding01-icon03.png) no-repeat 0 0;
  background-size: cover;
  width: 50px;
  height: 52px;
  vertical-align: middle;
  margin-right: 25px; }
  @media (max-width: 767px) {
    .hedding01-icon03::before {
      width: 25px;
      height: 26px;
      margin-right: 12px; } }

.hedding01-icon04::before {
  content: '';
  display: inline-block;
  background: url(../images/hedding/hedding01-icon04.png) no-repeat 0 0;
  background-size: cover;
  width: 56px;
  height: 56px;
  vertical-align: middle;
  margin-right: 22px; }
  @media (max-width: 767px) {
    .hedding01-icon04::before {
      width: 28px;
      height: 28px;
      margin-right: 11px; } }

/*見出し2 hedding02*/
.hedding02 {
  background: url(../images/hedding/hedding02.png) no-repeat 3px 3px;
  background-size: 13px auto;
  color: #153793;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.5;
  border-bottom: 1px solid #b4b4b4;
  padding: 0 0 15px 24px;
  margin: 0 0 12px; }
  @media (max-width: 767px) {
    .hedding02 {
      background-size: 13px auto;
      padding: 0 0 10px 18px; } }

/*見出し3 hedding03*/
.hedding03 {
  background: #dfe5f8;
  font-size: 1.8rem;
  font-weight: normal;
  border-bottom: 3px solid #153793;
  padding: 10px 25px;
  margin: 0 0 20px; }
  @media (max-width: 767px) {
    .hedding03 {
      font-size: 1.6rem;
      border-bottom: 2px solid #153793;
      padding: 10px 18px;
      margin: 0 0 14px; } }

/*見出し4 hedding04*/
/*見出し5 hedding05*/
/*見出し6 hedding06*/
/* ------------------------------
　　ボタン
------------------------------ */
.btn01 {
  list-style: none;
  margin: 0;
  padding: 0; }
  .btn01 li {
    margin: 0 0 5rem;
    padding: 0; }
    .btn01 li a {
      display: block;
      color: #000;
      font-size: 1.6rem;
      line-height: calc(66px - 5px);
      text-align: center;
      width: 360px;
      height: 66px;
      border-top: 1px solid #153793;
      border-right: 1px solid #153793;
      border-bottom: 4px solid #153793;
      border-left: 1px solid #153793;
      margin: auto; }
      @media (max-width: 767px) {
        .btn01 li a {
          font-size: 1.4rem;
          line-height: calc(50px - 5px);
          width: 84.375vw;
          height: 50px; } }
      .btn01 li a::after {
        content: '\f105';
        color: #e5151f;
        font-family: fontAwesome;
        margin: 0 0 0 5px; }
      .btn01 li a:hover {
        border-bottom: 1px solid #153793;
        text-decoration: none;
        position: relative;
        top: 3px; }

.btn02 {
  list-style: none;
  margin: 0;
  padding: 0; }
  .btn02 li {
    margin: 0;
    padding: 0; }
    .btn02 li a {
      display: block;
      background: #fff;
      color: #000;
      font-size: 1.6rem;
      line-height: calc(40px - 5px);
      text-align: center;
      width: 170px;
      height: 40px;
      border-top: 1px solid #153793;
      border-right: 1px solid #153793;
      border-bottom: 4px solid #153793;
      border-left: 1px solid #153793; }
      @media (max-width: 767px) {
        .btn02 li a {
          font-size: 1.4rem;
          line-height: calc(50px - 5px);
          width: 84.375vw;
          height: 50px;
          margin: auto; } }
      .btn02 li a::after {
        content: '\f105';
        color: #e5151f;
        font-family: fontAwesome;
        margin: 0 0 0 5px; }
      .btn02 li a:hover {
        border-bottom: 1px solid #153793;
        text-decoration: none;
        position: relative;
        top: 3px; }

.btn03 {
  list-style: none;
  margin: 0;
  padding: 0; }
  .btn03 li {
    margin: 0 0 5rem;
    padding: 0; }
    .btn03 li a {
      display: block;
      color: #000;
      font-size: 1.6rem;
      line-height: 1.5;
      text-align: center;
      width: 360px;
      height: 86px;
      border-top: 1px solid #153793;
      border-right: 1px solid #153793;
      border-bottom: 4px solid #153793;
      border-left: 1px solid #153793;
      margin: auto;
      padding: 1em 0; }
      @media (max-width: 767px) {
        .btn03 li a {
          font-size: 1.4rem;
          width: 84.375vw;
          height: 70px; } }
      .btn03 li a::after {
        content: '\f105';
        color: #e5151f;
        font-family: fontAwesome;
        margin: 0 0 0 5px; }
      .btn03 li a:hover {
        border-bottom: 1px solid #153793;
        text-decoration: none;
        position: relative;
        top: 3px; }

.btn04 {
  list-style: none;
  margin: 0;
  padding: 0; }
  .btn04 li {
    margin: 0 0 5rem;
    padding: 0; }
    .btn04 li a {
      display: block;
      background: #153793;
      color: #fff;
      font-size: 1.6rem;
      line-height: calc(66px - 5px);
      text-align: center;
      width: 360px;
      height: 66px;
      border-top: 1px solid #153793;
      border-right: 1px solid #153793;
      border-bottom: 1px solid #153793;
      border-left: 1px solid #153793;
      margin: auto; }
      @media (max-width: 767px) {
        .btn04 li a {
          font-size: 1.4rem;
          line-height: calc(50px - 5px);
          width: 84.375vw;
          height: 50px; } }
      .btn04 li a::after {
        content: '\f105';
        color: #fff;
        font-family: fontAwesome;
        margin: 0 0 0 5px; }
      .btn04 li a:hover {
        border-bottom: 1px solid #153793;
        text-decoration: none;
        position: relative;
        top: 3px; }

.btn05 {
  list-style: none;
  margin: 0;
  padding: 0; }
  .btn05 li {
    margin: 0 0 5rem;
    padding: 0; }
    .btn05 li a {
      display: block;
      color: #000;
      font-size: 1.6rem;
      line-height: calc(66px - 5px);
      text-align: center;
      width: 360px;
      height: 66px;
      border-top: 1px solid #dfe5f8;
      border-right: 1px solid #dfe5f8;
      border-bottom: 4px solid #dfe5f8;
      border-left: 1px solid #dfe5f8;
      margin: auto; }
      @media (max-width: 767px) {
        .btn05 li a {
          font-size: 1.4rem;
          line-height: calc(50px - 5px);
          width: 84.375vw;
          height: 50px; } }
      .btn05 li a::after {
        content: '\f105';
        color: #e5151f;
        font-family: fontAwesome;
        margin: 0 0 0 5px; }
      .btn05 li a:hover {
        border-bottom: 1px solid #dfe5f8;
        text-decoration: none;
        position: relative;
        top: 3px; }

/* ------------------------------
　　カラム
------------------------------ */
@media print, screen and (min-width: 768px) {
  .column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; } }

@media print, screen and (min-width: 768px) {
  .column-end {
    align-items: flex-end; } }

/*column2*/
@media print, screen and (min-width: 768px) {
  .column2 {
    flex-basis: 450px; } }
@media (max-width: 767px) {
  .column2 {
    margin: 0 0 20px; } }

/* ------------------------------
  アクセスマップ
------------------------------ */
.accsee-map {
  margin: 0 0 60px; }
  @media (max-width: 767px) {
    .accsee-map {
      position: relative;
      /*padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;*/
      height: 90.625vw;
      margin: 0 0 30px; }
      .accsee-map iframe, .accsee-map object, .accsee-map embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; } }

/* ------------------------------
  トップページ専用
------------------------------ */
.home-content {
  margin: auto; }
  @media print, screen and (min-width: 768px) {
    .home-content {
      width: 980px;
      padding: 0 20px; } }
  @media (max-width: 767px) {
    .home-content {
      width: 93.75vw; } }

/*トピックス*/
@media print, screen and (min-width: 768px) {
  .home-content .topics {
    display: flex;
    padding: 50px 0 80px; } }
@media (max-width: 767px) {
  .home-content .topics {
    padding: 22px 0 40px; } }
.home-content .topics .topics-left {
  background: url(../images/topics-bg.png) no-repeat 0 0;
  color: #153793; }
  @media print, screen and (min-width: 768px) {
    .home-content .topics .topics-left {
      width: 175px;
      min-height: 90px;
      padding: 19px 0 0 44px; } }
  @media (max-width: 767px) {
    .home-content .topics .topics-left {
      background-size: 65px;
      text-align: center;
      width: 130px;
      min-height: 65px;
      margin: 0 auto 20px;
      padding: 10px 0 0 0; } }
  .home-content .topics .topics-left .topics-title-en {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-size: 3.2rem;
    margin: 0 0 3px; }
    @media (max-width: 767px) {
      .home-content .topics .topics-left .topics-title-en {
        font-size: 2.4rem;
        margin: 0; } }
  .home-content .topics .topics-left .topics-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0; }
    @media (max-width: 767px) {
      .home-content .topics .topics-left .topics-title {
        font-size: 1.2rem; } }
@media print, screen and (min-width: 768px) {
  .home-content .topics .topics-right {
    flex: 1; } }
.home-content .topics .topics-right table {
  width: 100%;
  border-collapse: collapse;
  box-sizing: border-box; }
  .home-content .topics .topics-right table tr th, .home-content .topics .topics-right table tr td {
    line-height: 1.5;
    border-bottom: 1px solid #bfbfbf; }
    @media (max-width: 767px) {
      .home-content .topics .topics-right table tr th, .home-content .topics .topics-right table tr td {
        display: block; } }
  .home-content .topics .topics-right table tr th {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    color: #153793;
    text-align: left; }
    @media print, screen and (min-width: 768px) {
      .home-content .topics .topics-right table tr th {
        font-size: 1.8rem;
        width: 125px;
        padding: 14px 20px; } }
    @media (max-width: 767px) {
      .home-content .topics .topics-right table tr th {
        font-size: 1.5rem;
        width: 100%;
        padding: 12px 5px 3px;
        border-bottom: none; } }
  @media print, screen and (min-width: 768px) {
    .home-content .topics .topics-right table tr td {
      font-size: 1.6rem;
      padding: 14px 0; } }
  @media (max-width: 767px) {
    .home-content .topics .topics-right table tr td {
      font-size: 1.4rem;
      padding: 0 5px 12px; } }
  .home-content .topics .topics-right table tr td a {
    color: #000; }

/* ------------------------------
  会社情報ページ専用
------------------------------ */
.company_profile-index .company_profile-catch {
  font-size: 2.4rem;
  text-align: center;
  margin: 0 0 50px; }
  @media (max-width: 767px) {
    .company_profile-index .company_profile-catch {
      font-size: 1.6rem;
      margin: 0 0 26px; } }

/*box*/
.company_profile-index .company_profile-box-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .company_profile-index .company_profile-box-area .company_profile-box {
    border: 1px solid #b4b4b4; }
    @media print, screen and (min-width: 768px) {
      .company_profile-index .company_profile-box-area .company_profile-box {
        width: 455px;
        margin: 0 0 30px; } }
    @media (max-width: 767px) {
      .company_profile-index .company_profile-box-area .company_profile-box {
        margin: 0 0 12px; } }
    .company_profile-index .company_profile-box-area .company_profile-box a {
      display: flex;
      flex-wrap: wrap;
      -webkit-transition-duration: 0.2s;
      transition-duration: 0.2s; }
      .company_profile-index .company_profile-box-area .company_profile-box a:hover {
        opacity: 0.7;
        text-decoration: none; }
      .company_profile-index .company_profile-box-area .company_profile-box a h2 {
        background: #153793;
        color: #fff;
        font-size: 2rem;
        font-weight: normal;
        line-height: 1.5;
        width: 100%;
        padding: 10px 20px 10px 50px;
        margin: 0;
        position: relative; }
        @media (max-width: 767px) {
          .company_profile-index .company_profile-box-area .company_profile-box a h2 {
            font-size: 1.4rem;
            padding: 8px 10px 8px 25px; } }
        .company_profile-index .company_profile-box-area .company_profile-box a h2::before {
          content: '\f105';
          color: #e5151f;
          font-size: 3.2rem;
          font-family: fontAwesome;
          margin: 0;
          position: absolute;
          top: 1px;
          left: 20px; }
          @media (max-width: 767px) {
            .company_profile-index .company_profile-box-area .company_profile-box a h2::before {
              font-size: 2.1rem;
              top: 2px;
              left: 10px; } }
      @media print, screen and (min-width: 768px) {
        .company_profile-index .company_profile-box-area .company_profile-box a .company_profile-box-left {
          width: 257px;
          padding: 16px; } }
      @media (max-width: 767px) {
        .company_profile-index .company_profile-box-area .company_profile-box a .company_profile-box-left {
          flex: 1;
          padding: 12px; } }
      .company_profile-index .company_profile-box-area .company_profile-box a .company_profile-box-left p {
        color: #000000;
        font-size: 1.4rem; }
        @media (max-width: 767px) {
          .company_profile-index .company_profile-box-area .company_profile-box a .company_profile-box-left p {
            font-size: 1.3rem;
            line-height: 1.4;
            margin: 0; } }
      .company_profile-index .company_profile-box-area .company_profile-box a .company_profile-box-right {
        width: 196px; }
        @media (max-width: 767px) {
          .company_profile-index .company_profile-box-area .company_profile-box a .company_profile-box-right {
            width: 147px; } }
        .company_profile-index .company_profile-box-area .company_profile-box a .company_profile-box-right img {
          width: 196px;
          height: 125px;
          object-fit: cover; }
          @media (max-width: 767px) {
            .company_profile-index .company_profile-box-area .company_profile-box a .company_profile-box-right img {
              width: 147px;
              height: 115px; } }

/* ------------------------------
  経営理念ページ専用
------------------------------ */
.philosophy-index .philosophy-text01 {
  color: #153793;
  font-size: 2.4rem;
  text-align: center; }
  @media (max-width: 767px) {
    .philosophy-index .philosophy-text01 {
      font-size: 1.8rem; } }
@media print, screen and (min-width: 768px) {
  .philosophy-index .philosophy-text02 {
    text-align: center; } }

/* ------------------------------
  業務案内ページ専用
------------------------------ */
.work-index .work-catch {
  font-size: 2.4rem;
  text-align: center;
  margin: 0 0 50px; }
  @media (max-width: 767px) {
    .work-index .work-catch {
      font-size: 1.6rem;
      margin: 0 0 26px; } }

/*box*/
.work-index .work-box-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .work-index .work-box-area .work-box {
    border: 1px solid #b4b4b4; }
    @media print, screen and (min-width: 768px) {
      .work-index .work-box-area .work-box {
        width: 455px;
        margin: 0 0 30px; } }
    @media (max-width: 767px) {
      .work-index .work-box-area .work-box {
        margin: 0 0 12px; } }
    .work-index .work-box-area .work-box a {
      display: flex;
      flex-wrap: wrap;
      -webkit-transition-duration: 0.2s;
      transition-duration: 0.2s; }
      .work-index .work-box-area .work-box a:hover {
        opacity: 0.7;
        text-decoration: none; }
      .work-index .work-box-area .work-box a h2 {
        background: #153793;
        color: #fff;
        font-size: 2rem;
        font-weight: normal;
        line-height: 1.5;
        width: 100%;
        padding: 10px 20px 10px 50px;
        margin: 0;
        position: relative; }
        @media (max-width: 767px) {
          .work-index .work-box-area .work-box a h2 {
            font-size: 1.4rem;
            padding: 8px 10px 8px 25px; } }
        .work-index .work-box-area .work-box a h2::before {
          content: '\f105';
          color: #e5151f;
          font-size: 3.2rem;
          font-family: fontAwesome;
          margin: 0;
          position: absolute;
          top: 1px;
          left: 20px; }
          @media (max-width: 767px) {
            .work-index .work-box-area .work-box a h2::before {
              font-size: 2.1rem;
              top: 2px;
              left: 10px; } }
      @media print, screen and (min-width: 768px) {
        .work-index .work-box-area .work-box a .work-box-left {
          width: 257px;
          padding: 17px; } }
      @media (max-width: 767px) {
        .work-index .work-box-area .work-box a .work-box-left {
          flex: 1;
          padding: 12px; } }
      .work-index .work-box-area .work-box a .work-box-left p {
        color: #000000;
        font-size: 1.4rem; }
        @media (max-width: 767px) {
          .work-index .work-box-area .work-box a .work-box-left p {
            font-size: 1.3rem;
            line-height: 1.4;
            margin: 0; } }
      .work-index .work-box-area .work-box a .work-box-right {
        width: 196px; }
        @media (max-width: 767px) {
          .work-index .work-box-area .work-box a .work-box-right {
            width: 147px; } }
        .work-index .work-box-area .work-box a .work-box-right img {
          width: 196px;
          height: 125px;
          object-fit: cover; }
          @media (max-width: 767px) {
            .work-index .work-box-area .work-box a .work-box-right img {
              width: 147px;
              height: 115px; } }
