@charset "UTF-8";

/* ゴシック体セット */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700;900&display=swap");

body {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;

  /* 明朝体セット */
  font-family: "Noto Serif Japanese", serif;

  /* ゴシック体セット */
  font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
}

/* ==================================================
タグ
================================================== */
/* リンク
-------------------------------------------------- */
a,
a img {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

a:hover,
a:hover img {
  opacity: 0.6;
}

a[href^="tel:"] {
  color: inherit;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* 端末別表示非表示設定
-------------------------------------------------- */
@media screen and (max-width: 768px) {
  .pc-only {
    /* PCでの閲覧時にのみ表示したいコンテンツにつける */
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp-only {
    /* スマホでの閲覧時にのみ表示したいコンテンツにつける */
    display: none !important;
  }
}

/* 改行
-------------------------------------------------- */
.app-br {
  display: block;
}

/* box-sizing
-------------------------------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==================================================
テーブル
================================================== */
.styled-table01 {
  width: 100%;
  margin: 1em 0;
  line-height: 1.7;
}

.styled-table01:first-child {
  margin-top: 0;
}

.styled-table01 th,
.styled-table01 td {
  padding: 12px;
  vertical-align: top;
  text-align: left;
  border: 1px solid #ddd;
  background: #fff;
}

.styled-table01 th {
  width: 20%;
  font-weight: normal;
  background: #f7f7f7;
}

.styled-table01 thead th {
  background: #e6e6e6;
}

.styled-table01 caption {
  text-align: center;
  font-size: 20px;
}

/* ==================================================
ヘッダー
================================================== */
.global-header {
}

.header-inner {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.h_left_cont {
  position: absolute;
  left: 0;
}
.h_right_cont {
  margin-top: 50px;
  margin-left: 20px;
}
/* ロゴ */
.header-logo {
  width: 180px;
}

/* 固定設定　（ヘッダーを固定しない場合はこの項目ごと消せば固定しなくなる）
-------------------------------------------------- */
.header-fix-area-wrap {
  height: 155px; /* .header-fix-area の高さの実数地をデベロッパーツールで調べてここに入力する */
}

.header-fix-area {
  width: 100%;
  background: #fff7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  box-sizing: border-box;
}

@media screen and (max-width: 1250px) {
  .header-inner {
    display: block;
  }
  .header-nav {
    width: 58%;
    margin-left: auto;
  }
  .h_right_cont {
    margin-top: 0;
  }
  .header-nav > div > ul > li {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header-fix-area-wrap {
    height: auto;
  }

  .header-fix-area {
    position: static;
    background: none !important;
  }
  .h_left_cont {
    position: static;
  }
  .header-main-visual h2 {
    left: 0;
    right: 0;
    width: 80%;
    margin: 0 auto !important;
    top: 35%;
  }
}

/* h1
-------------------------------------------------- */
.header-description {
  width: 100%;
  padding: 0 0 20px 0;
  line-height: 1.2;
  font-size: 12px;
  font-weight: bold;
}

/* 問い合わせ
-------------------------------------------------- */
.header-contacts {
  line-height: 40px;
  display: flex;
  justify-content: flex-end;
}

.header-contacts li {
  margin: 0 0 10px 15px;
}

/* 電話番号 */
.header-contacts .tel a {
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  position: relative;
}
.header-contacts .tel a::after {
  content: "";
  background: url(../img/common/tell_icon.png) no-repeat center center;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 5px;
  left: -25px;
}

.header-contacts .tel.tel2 {
  margin-left: 35px;
}
.header-contacts .tel.tel2 a::after {
  background: url(../img/common/free.gif) no-repeat center center / contain;
}

.ml35 {
  margin-left: 35px !important;
}
/* メール */
.header-contacts .mail a {
  padding: 0px 50px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  background: linear-gradient(#ff823a, #fc5f01);
  display: flex;
  border-radius: 5px;
  border: 7px double #fff;
  font-weight: bold;
}
.header-contacts .mail a span {
  position: relative;
  padding-left: 20px;
}
.header-contacts .mail a span::before {
  content: "";
  background: url(../img/common/mail_icon.png) no-repeat center center;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  left: -10px;
}

.header-information {
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-information .header-address {
  margin-left: 20px;
}

.header-time {
  line-height: 12px;
  font-size: 12px;
}

/* スマホメニュー時 お問い合わせ関係設定
-------------------------------------------------- */
.header-contacts-sp {
  border-bottom: 0;
  padding: 20px;
}

.h_right_cont_sp .header-contacts {
  display: block;
  padding: 0 20px;
}

.h_right_cont_sp .header-contacts .tel a {
  font-size: 24px;
  padding: 20px 0;
}

/* メール */
.h_right_cont_sp .header-contacts .mail a {
  display: flex;
  align-items: center;
  margin: 0;
  height: 40px;
}

.header-information-sp {
  margin-bottom: 15px;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  margin-top: -5px;
}

.header-information-sp .header-address {
  display: flex;
}

/* グローバルナビ
-------------------------------------------------- */
.header-nav {
  /* background: #c7c7c7; */
  margin-top: 40px;
}

.header-nav > div > ul {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.header-nav > div > ul > li {
  flex-grow: 1;
  position: relative;
}

.header-nav a {
  padding: 0 20px;
  line-height: 50px;
  color: inherit;
  font-size: 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}

/* ドロップダウンメニュー
------------------------- */
.header-nav li ul {
  width: 100%;
  background: #cfcfcf;
  opacity: 0;
  transition: all 0.3s;
  position: absolute;
  top: 80%;
  z-index: 100;
  pointer-events: none;
}

.header-nav li:hover ul {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
}

/* スマホメニュー　カラー設定
------------------------- */

/* トグルの背景色 */
.um-crossBtn .um-crossBtn-basis {
  background: #000000;
}

/* 三本線の色  */
.um-crossBtn .um-crossBtn-border,
.um-crossBtn .um-crossBtn-border:before,
.um-crossBtn .um-crossBtn-border:after {
  background: #ffffff;
}

/* メニュー背景  */
.um-l-wrap .um-l-content {
  background: #ffffff;
}

/* 子要素メニュー　背景  */
.um-mianList .hasChild li {
  background: #f9f9f9;
}

/* 各メニュー　リンク色  */
.um-mianList a {
  color: #000000;
}

/* 各メニュー　ボーダー色  */
.um-mianList a:after {
  border-bottom: 1px solid #e5e5e5;
}

/* 各メニュー　ボーダー色（一番上）  */
.um-mianList .first {
  border-top: 1px solid #e5e5e5;
}

/* メインビジュアル
-------------------------------------------------- */
.header-main-visual {
  position: relative;
  margin-top: -155px;
  z-index: -9;
}
.header-main-visual div {
  height: 922px;
  /* max-height: 50vh; */
  line-height: 1.4;
  color: #fff;
  font-size: calc(1vw + 25px);
  background: url(../img/top/ky_img01.jpg) fixed top center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header-main-visual h2 {
  position: absolute;
  left: 0;
  margin-left: 5%;
}
/*--- ↓ JSありの場合は、ここに記述する ↓ ---*/
/* main-visual
-------------------------*/
.topmainbox-wrap {
  clear: both;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  position: relative;
  z-index: 100;
  /* background: #f4ecf9; */
  /* padding: 70px 0 115px; */
  margin-top: -155px;
  z-index: -9;
}
.topmainbox {
  width: 100%;
  position: relative;
  z-index: 0;
}
#slider {
  height: 100%;
  overflow: hidden;
}
.topmainbox-wrap #slider li {
  height: 947px;
  position: relative;
}
.topmainbox-wrap #slider li.main01:before,
.topmainbox-wrap #slider li.main02:before,
.topmainbox-wrap #slider li.main03:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
}
.topmainbox-wrap #slider li.main01:before {
  background: url(../img/top/ky_img01.jpg) fixed top center;
  background-size: cover;
}
.topmainbox-wrap #slider li.main02:before {
  background: url(../img/top/ky_img02.jpg) fixed top center;
  background-size: cover;
}
.topmainbox-wrap #slider li.main03:before {
  background: url(../img/top/ky_img03.jpg) fixed top center;
  background-size: cover;
}
.topmainbox-wrap .mainTxt {
  position: absolute;
  z-index: 200;
  top: 20%;
  left: 0;
  right: 0;
  width: 96%;
  max-width: 1600px;
  margin: 0 auto;
  text-align: left;
}
.topmainbox-wrap .mainTxt h2 {
  width: 100%;
}
/* スマホ
-------------------------------------------------- */
@media screen and (max-width: 768px) {
  .header-inner {
    margin: 0;
    padding: 10px;
    display: block;
  }

  .header-description,
  .header-contacts,
  .header-information,
  .header-nav {
    display: none;
  }

  .header-contacts li {
    margin: 0;
  }

  .header-main-visual div {
    height: 100vw;
    background-size: cover;
  }

  /* ロゴ */
  .header-logo {
    text-align: center;
    width: 35%;
  }

  .topmainbox-wrap #slider li {
    height: 80vw;
  }
  .topmainbox-wrap #slider li.main01:before,
  .topmainbox-wrap #slider li.main02:before,
  .topmainbox-wrap #slider li.main03:before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-size: 100%;
  }
  .topmainbox-wrap .mainTxt {
    /* position: static; */
    margin: 0 auto;
    width: 70vw;
    top: 40%;
  }
  .topmainbox-wrap .mainTxt h2 {
    width: 100%;
  }
  .bx-viewport {
    /* height: 350px !important; */
  }
}

/* ==================================================
フッター
================================================== */
.global-footer {
  background: #323030;
  color: #fff;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 20px;
    flex-direction: column;
    justify-content: center;
  }
}

/* ロゴ
-------------------------------------------------- */
.footer-logo {
  margin: 0 0 15px;
}

/* 会社概要
-------------------------------------------------- */
.footer-about {
}

.footer-about li {
  margin: 0 0 15px;
  line-height: 1.2;
}

/* 電話番号 */
.footer-about .tel {
  /* font-size: 22px; */
}

.footer-about .tel a {
  color: inherit;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
}

/* 所在地 */
.footer-about .address {
}

/* footer-nav */
.footer-nav ul {
  display: flex;
  justify-content: space-around;
  flex-flow: nowrap;
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer-nav ul {
    width: 100%;
  }
}
/* コピーライト
-------------------------------------------------- */
.footer-copyright {
  padding: 8px;
  line-height: 1.3;
  text-align: center;
  font-size: 12px;
  display: block;
  color: #717171;
  margin-top: 40px;
}

.footer-copyright a {
  color: inherit;
}

/* ==================================================
セクション
================================================== */

.section-inner {
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
  padding: 120px 0;
}

@media screen and (max-width: 768px) {
  .section-inner {
    padding: 60px 20px;
    width: 95%;
    margin: 0 auto;
  }
}

/* 見出し
-------------------------------------------------- */
.styled-title01 {
  margin: 0 0 30px;
  text-align: center;
  font-size: 35px;
  font-weight: bold;
}

.styled-title02 {
  margin: 0 0 15px;
  padding: 8px;
  line-height: 1.3;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background: #ffb400;
}

/* tc01
-------------------------------------------------- */
#tc01-greeting {
  background: url(../img/top/greeting_bg.jpg) no-repeat center / cover;
  z-index: -2;
  color: #fff;
}
#tc01-greeting h3 {
  font-size: 50px;
  text-align: left;
  position: relative;
  z-index: 1;
}
#tc01-greeting h3::before {
  content: "";
  background: url(../img/top/greeting_h2_icon.png) no-repeat center center;
  width: 193px;
  height: 150px;
  position: absolute;
  top: -40px;
  left: -100px;
  z-index: -1;
}
#tc01-greeting h3 span {
  font-size: 24px;
  opacity: 0.5;
  text-transform: uppercase;
  margin-left: 10px;
}
#tc01-greeting p {
  width: 55%;
  margin-left: 0;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* tc02
-------------------------------------------------- */
#tc02-worries {
  background: url(../img/top/worries_bg.jpg) no-repeat center / cover;
  z-index: -2;
  color: #141414;
}
#tc02-worries .section-inner {
  padding: 100px 0;
}
#tc02-worries li {
  width: 33.3%;
  padding: 0 20px;
}
#tc02-worries h4 {
  color: #fff;
  font-size: 25px;
  background: url(../img/top/worries-bgg.png) no-repeat center / cover;
  text-align: center;
  font-weight: bold;
  padding: 20px 0;
}
#tc02-worries h4 img {
  display: block;
  margin: 0 auto;
  padding-bottom: 10px;
}
#tc02-worries li div {
  background-color: #fff;
  padding: 30px;
  position: relative;
}
#tc02-worries li div::before {
  content: "";
  background: url(../img/top/w_arow.png) no-repeat center center;
  width: 34px;
  height: 30px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#tc02-worries p {
  font-size: 14px;
  text-align: left;
  margin-top: 1rem;
  line-height: 1.5rem;
}
#tc02-worries p.worries-strong {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  letter-spacing: -1px;
  margin-top: 0;
  line-height: 2.5rem;
}

/* tc03
-------------------------------------------------- */
#tc03-contact {
  background: url(../img/top/contact_bg.png) no-repeat center / cover;
}
#tc03-contact .section-inner {
  padding-right: 0;
  padding-left: 0;
  padding-top: 40px;
  text-align: center;
}
/* tc04
-------------------------------------------------- */
#tc04-strength {
  background: url(../img/top/strength_ttl_bg.jpg) no-repeat center / cover;
}
#tc04-strength .section-inner {
  padding: 80px 0;
}

#tc04-strength h4 {
  text-align: center;
}

#tc04-strength p {
  color: #fff;
  font-size: 24px;
  text-align: center;
  font-weight: lighter;
  margin-top: 2rem;
}
.btn01 {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  background: linear-gradient(#ff823a, #fc5f01);
  border-radius: 5px;
  border: 7px double #fff;
  font-weight: bold;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin-top: 4rem;
}
.btn01 a {
  display: block;
  height: 69px;
  line-height: 69px;
}
/* tc05
-------------------------------------------------- */
#tc05-flow .section-inner {
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.w_50 {
  width: 50% !important;
}

#tc05-flow .flow-img img {
  width: 100%;
}
#tc05-flow .flow-text {
  padding: 25px 30px 20px;
}
#tc05-flow .flow-text h4 {
  font-size: 36px;
  font-weight: bold;
  padding-left: 80px;
}
#tc05-flow .flow-text p {
  font-size: 1rem;
  line-height: 1.8rem;
  margin-top: 12px;
}

#tc05-flow .flow-title {
  position: relative;
}
#tc05-flow .flow-content__num {
  width: 70px;
  height: 70px;
  background: linear-gradient(#fdc556, #f4a100);
  border-radius: 5px;
  border: 7px double #fff;
  position: relative;
  position: absolute;
  top: -5px;
}
#tc05-flow .flow-content__num span {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* tc06
-------------------------------------------------- */
#tc06-bnr {
  background: url(../img/top/wall_pt.png) no-repeat center / cover;
}
#tc06-bnr .section-inner {
  max-width: 1080px;
  padding: 100px 0;
}

#tc06-bnr .flex {
  text-align: center;
  justify-content: center;
}
#tc06-bnr .flex a {
  width: 50%;
  font-weight: 1rem;
  font-weight: bold;
}

/* tc07
-------------------------------------------------- */

#tc07-recruit h3 {
  background: url(../img/top/worries-bgg.png) no-repeat center center / cover;
  font-size: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 80px 0;
  margin-bottom: 0;
}

#tc07-recruit h3 span {
  font-size: 24px;
  opacity: 0.5;
  text-transform: uppercase;
  display: block;
}

#tc07-recruit .flex img {
  width: 50%;
  padding: 10px;
}
#tc07-recruit a {
  margin-top: 2rem;
  display: block;
  text-align: center;
}

/* tc08
-------------------------------------------------- */

#tc08-blog {
  background: url(../img/top/blog_bg.jpg) fixed center;
}
#tc08-blog h3 {
  font-size: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#tc08-blog h3 span {
  font-size: 24px;
  opacity: 0.5;
  text-transform: uppercase;
  display: block;
}
#tc08-blog ul {
  clear: both;
}
#tc08-blog li {
  margin-top: 50px;
  width: 23%;
  margin-left: 1.3rem;
  /* max-width: 250px; */
}
#tc08-blog li a img {
  width: 100%;
}
#tc08-blog li dl {
  text-align: left;
  font-size: 15px;
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
}
#tc08-blog li dt {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#tc08-blog li dt span {
  color: #666666;
  display: block;
  margin-bottom: 5px;
}
#tc08-blog li dd {
  margin-top: 10px;
  overflow: hidden;
  line-height: 20px;
  font-size: 13px;
  color: #777777;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* tc09
-------------------------------------------------- */
#tc09-company .section-inner {
  max-width: 1080px;
  padding: 80px 0;
}
#tc09-company h3 {
  background: url(../img/top/worries-bgg.png) no-repeat center center / cover;
  font-size: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 80px 0;
  margin-bottom: 0;
}

#tc09-company h3 span {
  font-size: 24px;
  opacity: 0.5;
  text-transform: uppercase;
  display: block;
}

#tc09-company .table-wraper {
  background: #f4f4f4;
  padding: 50px;
  border-bottom: 4px solid #ccc;
  border-right: 4px solid #ccc;
}

#tc09-company .styled-table01 th,
#tc09-company .styled-table01 td {
  background: none;
  border: none;
  font-size: 1rem;
}
#tc09-company .styled-table01 th {
  font-weight: bold;
}

.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
}

/* ==================================================
sub
================================================== */
.alignL {
  text-align: left !important;
}
.alignR {
  text-align: right !important;
}
.alignC {
  text-align: center !important;
}
.bg-w {
  background-color: white;
}
.pl-1rem {
  padding-left: 1rem;
}
.m0a {
  margin: 0 auto;
}
.w_20 {
  width: 20% !important;
}
.w_25 {
  width: 24% !important;
}
.w_30 {
  width: 28% !important;
}
.w_40 {
  width: 38% !important;
}
.w_50 {
  width: 48%;
}
.w_60 {
  width: 60% !important;
}
.w_70 {
  width: 70% !important;
}
.w_80 {
  width: 80%;
}
.w_90 {
  width: 90%;
}
.w_100 {
  width: 100% !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mt2rem {
  margin-top: 2rem !important;
}
.mt5rem {
  margin-top: 5rem !important;
}

.subcon {
  margin-bottom: 3rem;
}
/* section */
.subcon section {
  max-width: 1110px;
  width: 96%;
  margin: 0 auto;
}
/* h2 */
.submainbox-wrap {
  margin-top: -155px;
}
.submainbox {
  background: url(../img/top/wall_pt.png) no-repeat center;
  background-size: cover;
  padding: 14rem 0 8rem;
}
.submain-txt {
  max-width: 1400px;
  margin: 0 auto;
}
.submainbox-wrap .submainbox .submain-txt h2 {
  font-size: 82px;
  line-height: 1.5em;
  font-weight: bold;
  color: #222;
  text-align: center;
}
.submainbox-wrap .submainbox .submain-txt h2 span {
  text-transform: uppercase;
  display: block;
  font-size: 24px;
  font-style: normal;
  line-height: 1.5em;
  font-weight: bold;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* h3 */
.subcon h3 {
  font-size: 1.85rem;
  text-align: left;
  margin-top: 5rem;
  line-height: 1em;
  font-weight: bold;
  position: relative;
  padding-bottom: 0 !important;
  padding-left: 15px;
}
.subcon h3::before {
  content: "";
  background: url(../img/common/h3.png) no-repeat center center;
  width: 5px;
  height: 40px;
  position: absolute;
  top: -5px;
  left: 0;
}

/* h4 */
.subcon h4 {
  text-align: center;
}
.subcon h4 span {
  font-size: 1.5rem;
  margin-top: 3rem;
  font-weight: normal;
  border-bottom: 5px solid #2e7f45;
}

/* p */
.subcon p {
  font-size: 1rem;
  margin-top: 2rem;
}

/* Bread_crumb_List */
.bread_crumb_list {
  text-align: left;
  margin: 20px 0 28px 0;
}
.bread_crumb {
  /* max-width: 1080px; */
  margin: 0 auto 0;
}
.bread_crumb li {
  display: inline;
  font-size: 13px;
}
.bread_crumb li:after {
  content: "\003e";
  padding-left: 0.35rem;
  margin-right: 0.075rem;
  color: #000;
}
.bread_crumb li:last-child:after {
  content: "";
}
.bread_crumb li a {
  color: #2e7f45;
}
.bread_crumb li a:hover {
  text-decoration: underline;
}
.bread_crumb li.current:after {
  content: "";
}

/* blog */
.subcon #tc08-blog {
  background: none;
}
.article-list {
  border-top: 1px dashed #dcdcdc;
}
.article-list-item {
  padding: 22px 20px;
  border-bottom: 1px dashed #dcdcdc;
  text-align: left;
}
.article-list-item time {
  width: 6em;
}
.article-list-item a {
  flex: 1;
  margin-left: 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.wp-pagenavi {
  clear: both;
  text-align: center;
  margin-top: 80px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  color: #444;
  padding: 5px 12px;
  margin: 0 1px;
  font-size: 1em;
  white-space: nowrap;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-align: center;
  text-decoration: none;
}
.wp-pagenavi span.current {
  color: #fff;
  border-color: #2e7f45;
  background-color: #2e7f45;
}
.wp-pagenavi a:hover {
  color: #fff;
  border-color: #2e7f45;
  background-color: #2e7f45;
}

/* blog detail */
.article-detail-heading {
  font-size: 16px;
  line-height: 1.4;
}
.article-detail-title {
  margin-top: 8px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #dcdcdc;
}
.article-detail-title h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  border: none;
  /* padding-top: 0; */
  margin-top: 0;
}
.article-detail-content {
  margin-top: 40px;
}
.article-detail-content h1 {
  font-size: 1.6rem;
  margin-bottom: 0.625em;
  position: relative;
  padding-left: 0.625em;
  line-height: 1.15;
  text-align: left;
}
.article-detail-content h1:before {
  content: "";
  position: absolute;
  background: #2e7f45;
  width: 6px;
  height: 100%;
  left: 0;
  top: 0;
}
.article-detail-content p {
  margin-bottom: 2.5em;
  text-align: left;
}
.article-detail-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.625em;
  line-height: 1.2;
  color: #2e7f45;
  text-align: left;
  font-weight: 400;
}
.article-detail-content h3 {
  font-size: 1.4rem;
  color: #444;
  font-weight: bold;
  padding: 0 0 0.15em;
  margin-bottom: 0.625em;
  line-height: 1.2;
  border-bottom: none;
  background: none !important;
  text-align: left;
}
.pagelink {
  margin: 70px auto 30px;
  max-width: 196px;
  width: 100%;
  position: relative;
}
.pagelink li.oldpage {
  width: 33px;
  position: absolute;
  left: 0;
  top: 0;
}
.pagelink li a {
  color: #444;
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 2px 12px;
  display: block;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagelink li a:hover {
  opacity: 1;
  background: #2e7f45;
  border-color: #2e7f45;
  color: #fff;
  text-decoration: none;
}
.pagelink li.listlink {
  width: 120px;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -60px;
}

.pagelink li.newpage {
  margin-right: 0px;
  width: 33px;
  position: absolute;
  right: 0;
  top: 0;
}
.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

/* pager */
ul.pagenation {
  margin: 60px 0 0 0;
  text-align: center;
  letter-spacing: 0;
  width: auto;
  min-width: 0;
  border: none;
  padding: 0;
  background: none;
}
ul.pagenation li {
  width: 36px;
  height: 36px;
  display: inline-block;
  margin: 4px;
  line-height: 34px;
  border-bottom: none;
  padding: 0px;
  background: none;
}
ul.pagenation li.current span {
  width: 36px;
  height: 36px;
  display: block;
  color: #fff;
  background: #2e7f45;
  border: #000 solid 1px;
  text-decoration: none;
  float: none;
}
ul.pagenation--information li.current span {
  background: #2e7f45;
  border-color: #2e7f45;
}
ul.pagenation li a {
  width: 36px;
  height: 36px;
  display: block;
  color: #000;
  background: none;
  background: #fff;
  border: #000 solid 1px;
  text-decoration: none;
  float: none;
}
ul.pagenation--information li a {
  color: #2e7f45;
  border-color: #2e7f45;
}
ul.pagenation li a:hover {
  color: #fff;
  background: #000;
  text-decoration: none;
}
ul.pagenation--information li a:hover {
  background: #2e7f45;
}
.back-btn {
  max-width: 200px;
  margin: 60px auto 0;
}
.back-btn a {
  display: block;
  text-align: center;
  color: #000;
  background: #fff;
  padding: 10px;
  line-height: 1.4;
  border: #000 solid 1px;
}
.back-btn--information a {
  color: #2e7f45;
  border-color: #2e7f45;
}
.back-btn a:hover {
  background: #000;
  color: #fff;
}
.back-btn--information a:hover {
  background: #2e7f45;
}
.detail-info__time {
  font-size: 18px;
}
.detail-info__title {
  font-size: 24px;
  border-bottom: solid 3px #dadada;
  margin: 0 0 32px;
}

/* flow */

.flow-wrap {
  position: relative;
  text-align: left;
  margin-top: 2rem;
}
.subcon .flow-content {
  position: relative;
}
.subcon .flow-content:not(:last-of-type):before {
  content: "";
  position: absolute;
  left: 55px;
  top: 0;
  border: 1px dashed #c1c7c5;
  height: 100%;
  width: 1px;
}
.subcon .flow-content:not(:last-of-type) {
  padding-bottom: 70px;
}
.subcon .flow-content__num {
  width: 110px;
  height: 110px;
  background: linear-gradient(#fdc556, #f4a100);
  border-radius: 5px;
  border: 7px double #fff;
  position: relative;
}
.subcon .flow-content__num span {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.subcon .flow-content-box {
  background: #f7f7f7;
  flex: 1;
  padding: 36px;
  margin-left: 40px;
  position: relative;
}
.subcon .flow-content-box:before {
  content: "";
  position: absolute;
  top: 60px;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #f7f7f7;
}
.subcon .flow-content-text {
  flex: 1;
  margin-right: 32px;
}
.subcon .flow-content-text__title {
  font-size: 28px !important;
  font-weight: bold;
  color: #2e7f45;
  margin-bottom: 0.625em;
  line-height: 1.15;
  padding-bottom: 6px;
  border-bottom: 1px dashed #c1c7c5;
  margin-top: 0 !important;
}
.subcon .flow-content-text__text {
  line-height: 1.6;
  margin-top: 20px;
}
.subcon .flow-content-text dl dt {
  font-size: 16px;
  margin-top: 2rem;
}
.subcon .flow-content-text dl dd p {
  margin-top: 5px;
  font-size: 40px;
  font-weight: bold;
}
.subcon .flow-content-figure {
  width: 30%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.subcon .flow-content-figure img {
  width: 100%;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.flex-st .flow-content-figure {
  width: 45%;
}

.img-content img {
  margin-top: 2rem;
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: 0% 10%;
}

.subcon .flow-content-text .btn_contact {
  width: auto;
}
.subcon .flow-content-text .btn_contact a {
  display: block;
  text-align: center !important;
  font-size: 16px;
}

.subcon .styled-table01 {
  margin-top: 2rem;
}

.subcon .gmap {
  margin-top: 3rem;
}

/* top tc05-flow */
@media screen and (min-width: 1580px) {
  #tc05-flow .flow-text {
    height: 10%;
    margin: auto;
    padding: 0 50px;
  }
}
/* @media screen and (max-width: 1490px) {
  #tc05-flow .flow-img {
    height: 465px;
    margin: auto;
  }
} */

.tel img {
  width: 30px;
}
