@charset "utf-8";
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..900&display=swap");

/*--------------------------------------------------------------
レスポンシブ02 ブルー 1カラム
---------------------------------------------------------------*/
body {
  font-size:18px;
  color: #222;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #fff;
}
@media only screen and (max-width: 1200px) {
  body { font-size: 16px; }
}
@media only screen and (max-width: 600px) {
  body { font-size: 15px; }
}
@media only screen and (max-width: 450px) {
  body { font-size: 14px; }
}

/*--------------------------------------------------------------
変数・カラー定義
---------------------------------------------------------------*/
:root {
  --color-main: #556b2f;
  --color-dark: #3f5023;
  --color-deep: #293416;
  --color-light: #8b9d68;
  --color-pale: #f2f6ea;
  --color-link: #fb7527;
  --color-hover: #c86828;
  --color-accent: #e1ad01;
  --btn-color: #3f5023;
  --btn-hover: #8b9d68;
}

/*--------------------------------------------------------------
レイアウト調整
---------------------------------------------------------------*/
#mainContents {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
リンク・ボタン
---------------------------------------------------------------*/
a {
  color: var(--color-link);
  font-weight: 500;
}
a:hover {
  color: var(--color-hover);
  font-weight: 500;
}
a.btn {
  background: #fff;
  color: var(--color-main);
  border: 1px solid var(--color-main);
}
a.btn:hover {
  color: #fff;
  background: var(--color-main);
}
a.tel-link {
  font-size: 1.05em;
  font-weight: 600;
  text-decoration: none;
}
a.tel-link::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2a0";
  font-weight: bold;
  margin-right: 8px;
}

/*--------------------------------------------------------------
段落
---------------------------------------------------------------*/
.article p {
  line-height: 2.0;
  margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
汎用クラス
---------------------------------------------------------------*/
p.leadCopy {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.4;
  font-feature-settings: "palt";
  margin-bottom: 0.5em;
}
/* envelope */
#mainArticles .envelope, #mainBlogCommentForm .envelope {
  background: var(--color-pale);
}

/*--------------------------------------------------------------
見出し
---------------------------------------------------------------*/
#mainArticles h2, #listTopics h2 {
  background: #556b2f;
  background: linear-gradient(
    0deg,
  	#6f8448 0%,
  	#556b2f 50%,
  	#293416 100%
    );
  padding-right: 2%;
  padding-left: 2%;
  margin-bottom: 0;
}
#mainTopics h2:after, #mainArticles .article h2:after, .article h3:after, .gallery h3:after, .freeHtml h3:after {
  margin: 24px auto;
  background: var(--color-main);
}
.article h4 {
  color: #fff;
  background: var(--color-main);
  border: none;
}
.article h4:before {
  background: var(--color-accent);
}
.article h5 {
  border-left: 4px solid var(--color-dark);
}

/*--------------------------------------------------------------
pankuz
---------------------------------------------------------------*/
#pankuz {
  padding-right :2%;
  padding-left: 2%;
}

/*--------------------------------------------------------------
title
---------------------------------------------------------------*/
#title_outer {
  width: 96%;
}
#title_body {
  display:flex;
}
#title {
  display: flex;
  width: 100%;
  padding: 15px 0; 
}
#title h1 {
  display: block;
  width: 320px;
  height: 55px;
  float: none;
  margin: 0 0 0 0;
}
#title h1 a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/materials/178409284179001.png") top left no-repeat;
  background-size: 100%;
  text-indent: -9000px;
  margin:0;
}
#title #title_outer {
  height: 75px;
  background: url("/materials/178383369874104.png") right center no-repeat;
  background-size: 250px;
}

/*--------------------------------------------------------------
topMenu
---------------------------------------------------------------*/
#topMenu_outer .topMenu li a {
  font-size: 0.87em;
  font-weight: 400;
}
#topMenu_outer .topMenu li a:hover {
  background: var(--color-main);
}

/*--------------------------------------------------------------
topics
---------------------------------------------------------------*/
#mainTopics {
  background: var(--color-pale);
}
ul.topics li h3 a {
  color: var(--color-link);
}
ul.topics li h3 a:hover {
  color: var(--color-hover);
  font-weight: 500;
}
ul.topics li p.date {
  background: var(--color-light);
}
ul.topics li p.more a, #mainTopics .listview a {
  background: var(--btn-color);
}
ul.topics li p.more a:hover, #mainTopics .listview a:hover {
  background: var(--btn-hover);
}

/*--------------------------------------------------------------
footer
---------------------------------------------------------------*/
#footer {
  background: #013275;
  background: linear-gradient(
    180deg,
  	#6f8448 0%,
  	#556b2f 50%,
  	#293416 100%
    );
}
#footer_body .copyright {
  font-size: 14px;
  font-weight: 400;
  background: transparent;
}

/*--------------------------------------------------------------
footer menu
---------------------------------------------------------------*/
#footer_body .topMenu li a,
#footer_body .services li a {
  background: transparent;
  border-bottom: 1px solid transparent;
  position: relative;
  text-decoration: none;
}
#footer_body .topMenu li a::after,
#footer_body .services li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.4s cubic-bezier(.4, 0, .2, 1);
}
#footer_body .topMenu li a:hover,
#footer_body .services li a:hover {
  background: transparent;
  border-bottom-color: transparent;
}
#footer_body .topMenu li a:hover::after,
#footer_body .services li a:hover::after {
  width: 100%;
}

/*--------------------------------------------------------------
sideContents
---------------------------------------------------------------*/
.sideContents ul li a:hover, .sideContents dt a:hover {
  color: inherit;
  background: var(--color-pale);
}

/*--------------------------------------------------------------
normalTbl
---------------------------------------------------------------*/
.article table.normalTbl {
  font-size: 1.0em;
  border: none;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  margin: 30px 0;
}
.article table.normalTbl td, .article table.normalTbl th {
  border: none;
  border-bottom: 1px solid #555;
}
.article table.normalTbl tr:last-child td, .article table.normalTbl tr:last-child th {
  border-bottom: none;
}
.article table.normalTbl td {
  padding-left: 30px;
}
.article table.normalTbl th {
  width: auto;
  min-width: 25%;
  color: var(--color-main);
  background: transparent;
  position: relative;
}
.article table.normalTbl th::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: #555;
  position: absolute;
  top: 15%;
  right: 0;
}

/*--------------------------------------------------------------
GoogleMap
---------------------------------------------------------------*/
.gmap-wrap {
  height: 0;
  overflow: hidden;
  /*padding-bottom: 75%;*/ /*4:3*/
  padding-bottom: 56.25%; /*16:9*/
  position: relative;
}
.gmap-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/*-------------------------------------------------------
お問い合わせセクション
-------------------------------------------------------*/
.article.full.contact-block {
  text-align: center;
  position: relative;
  background: url("/materials/178390761462501.jpg") center no-repeat;
  background-size: cover;
  margin-bottom: 0;
}
.article.full.contact-block .article_body {
  width: 60%;
  max-width: 1024px;
  margin: 30px auto;
  padding: 40px 30px 15px 30px;
  background: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 999;
}
.article.full.contact-block h3 {
  margin-top: 0;
}
.article.contact-block p {
  line-height: 1.7;
  margin-bottom: 0.5em;
}
.contact-block p.tel-num {
  margin-bottom: 0;
}
.contact-block a.tel-link {
  font-size: 2.4em;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.2;
}
.contact-block a.tel-link::before {
  font-size: 80%;
  display: inline-block;
  transform: rotate(-25deg)  translateY(-4px);
}

/*-------------------------------------------------------
お問い合わせメールフォームボタン
-------------------------------------------------------*/
a.btn-mailform {
  font-size: 1.1em;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
  background: var(--btn-color);
  text-align: center;
  display: flow-root;
  border-radius: 6px;
  padding: 12px;
  text-decoration: none;
  width: 100%;
  margin: 30px auto 20px;
}
a.btn-mailform::before {
  font-family:"Font Awesome 5 Free";
  content:"\f0e0";
  font-size:140%;
  color:#fff;
  font-weight:bold;
  line-height:1.0;
  margin-right:10px;
  display:inline-block;
  vertical-align:middle;
  transform:translateY(-2px);
}
a.btn-mailform::after {
  font-family:"Font Awesome 5 Free";
  content:"\f105";
  color:#fff;
  font-weight:bold;
  margin-left:10px;
}
a.btn-mailform:hover {
  color: #fff;
  background: var(--btn-hover);
}

/*--------------------------------------------------------------
サイト案内
---------------------------------------------------------------*/
.gallery.guideBtn .gallery_grid3 ul.galleryGrids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 2%;
  height: auto !important;
}
.gallery.guideBtn .gallery_grid3 ul.galleryGrids li.galleryGrid {
  background: #e7f1f7;
  border-radius: 6px;
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: auto;
  margin: 0;
}
.gallery.guideBtn .gallery_grid li.galleryGrid .galleryGrid_outer {
  padding: 0 5px;
}
.gallery.guideBtn .gallery_grid li.galleryGrid .image {
  max-width: 96%;
  margin: 12px auto 0 auto;
}
.gallery.guideBtn .gallery_grid li.galleryGrid .image a {
  display: block;
  padding-bottom: 60px;
}
.gallery.guideBtn ul.galleryGrids .comment {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 2px solid var(--color-dark);
  border-radius: 6px;
  position: static;
  margin: -2.5em 12px 1.5em 12px;
  font-size: 1.1em;
  color: var(--color-dark);
  font-weight: bold;
  line-height: 1.25;
  padding: 12px 8px;
  pointer-events: none;
}
.gallery.guideBtn ul.galleryGrids .comment::after {
  font-size:1.0em;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: bold;
  margin-left: 6px;
}

/*-------------------------------------------------------
freeHtml　会社概要
-------------------------------------------------------*/
.freeHtml {
  margin-top: 0;
}
#sideCompany {
  width: 100vw;
  background: #fff;
  margin: 0 calc(50% - 50vw) 50px;
  padding: 0;
}
#sideCompany .sideCompany_inner {
  display: block;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 65px 4%;
}
#sideCompany h2.logomark {
  width: 200px;
  height: 96px;
  background: url("/materials/178383369874103.png") no-repeat;
  margin: 0 auto 30px;
  padding: 0;
  background-size: 100%;
  display: block;
  overflow: hidden;
  text-indent: 110%;
  white-space: nowrap;
}
#sideCompany table {
  width: 100%;
  margin: 0 auto 40px;
  font-size: 0.9em;
}
#sideCompany th {
  width: 27%;
  min-height: 3.0em;
  text-align: center;
  vertical-align: middle;
  font-size: 1.0em;
  color: #222;
  font-weight: 500;
  line-height: 1.25;
  padding:1.25em 1.0em;
  margin-right: 3%;
  margin-bottom: 1.0em;
  border-top: none;
  border-bottom: 1px solid var(--color-main);
}
#sideCompany td {
  width: 70%;
  min-height: 3.0em;
  vertical-align: middle;
  font-size: 1.0em;
  color: #222;
  line-height: 1.25;
  padding:1.25em 1.0em;
  font-weight: normal;
  margin-bottom: 1.0em;
  border: none;
  border-bottom: 1px solid #ccc;
}
#sideCompany a.link-btn {
  font-size: 1.0em;
  color: #fff;
  font-weight: 400;
  background: var(--btn-color);
  width: 80%;
  max-width: 450px;
  margin: 30px auto 0 auto;
  padding: 12px 16px;
  border: 1px solid #fff;
  border-radius: 4px;
  display: block;
  text-align: center;
  text-decoration: none;
}
#sideCompany a.link-btn:hover {
  color: #fff;
  background: var(--btn-hover);
}
#sideCompany a.link-btn span::after {
  font-family: "Font Awesome 5 Free";
  content:"\f105";
  font-size:1.0em;
  color: inherit;
  font-weight: bold;
  margin-left: 6px;
}
#sideCompany a.tel-link {
  font-size: 1.25em;
}

/*-------------------------------------------------------
リスト check ベース
-------------------------------------------------------*/
ul.check {
  display: flex;
  flex-direction: column;
  padding-left: 2em;
  list-style: none;
}
ul.check li {
  position: relative;
  font-weight: bold;
  font-size: 110%;
  line-height: 1.5;
  padding: 0.25em 0;
  display: block;
}
ul.check li:before {
  display: block;
  content: "";
  position: absolute;
  top: 0.6em;
  left: -1.5em;
  width: 0.8em;
  height: 0.6em;
  border-left: 5px solid #c71c1c;
  border-bottom: 5px solid #e1ad01;
  transform: rotate(-45deg);
}
/* こんなお悩みありませんか？ */
ul.check.worries {
  padding-left: 0;
}
ul.check.worries li {
  margin-bottom: 0.5em;
  padding: 0.5em 1.0em 0.5em 2.5em;
  background: var(--color-pale);
  border-radius: 6px;
}
ul.check.worries li:before {
  left: 1.0em;
}
/* 真誠建設の強み */
ul.check.features {
  padding-left: 0;
}
ul.check.features li {
  margin-bottom: 0.5em;
  padding: 0.5em 1.0em 0.5em 2.5em;
  background: var(--color-pale);
  border-radius: 6px;
}
ul.check.features li:before {
  left: 1.0em;
}
/* 事業内容 */
ul.check.business {
  padding-left: 0;
}
ul.check.business li {
  margin-bottom: 0.5em;
  padding: 0.5em 1.0em 0.5em 2.5em;
  background: var(--color-pale);
  border-radius: 6px;
}
ul.check.business li:before {
  left: 1.0em;
}

/*-------------------------------------------------------
事業内容
-------------------------------------------------------*/
/* 導入部 */
.article.full.business_intro {
  height: 600px;
  background: url("/materials/178390892295001.jpg") bottom center no-repeat;
  background-size: cover;
}
.article.full.business_intro .article_body {
  width: 700px;
  height: auto;
  margin: 50px auto 0 calc(50vw - 512px);
  padding: 40px 40px;
  background: rgba(255, 255, 255, 0.85);
}

/*-------------------------------------------------------
採用情報
-------------------------------------------------------*/
.article.full.recruit {
  background: url("/materials/178392249380301.png") center no-repeat;
  background-size: cover;
}
.article.full.recruit .article_outer {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article.full.recruit .article_body {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  padding: 30px 30px 0 30px;
  border-radius: 12px;
}
.article.full.recruit a.btn {
  font-size: 115%;
}
/* 導入部 */
.article.full.recruit_intro {
  height: 600px;
  background: url("/materials/178391622464101.jpg") top center no-repeat;
  background-size: cover;
}
.article.full.recruit_intro .article_body {
  width: 700px;
  height: auto;
  margin: 50px calc(50vw - 512px) 0 auto;
  padding: 40px 40px;
  background: rgba(255, 255, 255, 0.85);
}
/* 採用情報フロー */
ul.recruit-flow {
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
ul.recruit-flow li {
  position: relative;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  border: 1px solid #ccc;
  background: #fff;
}
ul.recruit-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-top: 1rem solid #556b2f;
}
ul.recruit-flow li span {
  display: inline-block;
  margin-right: 0.4em;
  color: #556b2f;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1;
}
ul.recruit-flow li:last-child {
  margin-bottom: 0;
}

/*-------------------------------------------------------
1200px以下
-------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
}

/*======================================================
800px
======================================================*/
@media only screen and (max-width: 800px) {
  .article.full.contact-block .article_body {
    width: 100%;
  }
}

/*======================================================
600px
======================================================*/
@media only screen and (max-width: 600px) {
  /*title*/
  #title {
    padding: 7px 0;
  }
  #title #title_outer {
    height: 56px;
    background: none;
  }
  #title h1 {
    width: 240px;
    height: 50px;
  }
  /*toggle*/
  #toggle, .active #toggle {
    background-color: var(--color-main);
  }
  /*見出し*/
  #mainArticles h2, #listTopics h2 {
    font-size: 1.5em;
  }
  /*-------------------------------------------------------
  画面下部固定のリンクパーツ
  -------------------------------------------------------*/
  #bottomLink{
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
    height: 50px;
    overflow: hidden;
    border-top: 1px solid #fff;
  }
  #bottomLink a {
    display: block;
    padding: 0;
    color: #fff;
    background: var(--color-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    line-height: 48px;
    height: 100%;
  }
  #bottomLink a span {
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
  }
  #bottomLink a span::after {
    font-family: "Font Awesome 5 Free";
    content: "\f2a0";
    font-size: 120%;
    font-weight: bold;
    margin-right: 7px;
    margin-left: 7px;
    display:inline-block;
    transform: rotate(-30deg);
  }
  /* ボタンサイズ分の画面下部余白 */
  #wrap {
    margin-bottom: 50px;
  }
}

/*===================================================================
480px以下
===================================================================*/
@media only screen and (max-width: 480px) {
  .gallery.guideBtn .gallery_grid3 ul.galleryGrids {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/*-------------------------------------------------------
recaptcha バッジ非表示
-------------------------------------------------------*/
.recaptcha_policy {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 11px !important;
  color: #444 !important;
}
.recaptcha_policy a {
  font-size: 11px !important;
  color: #111 !important;
}
.grecaptcha-badge { visibility: hidden; }

/*--------------------------------------------------------------
編集画面
---------------------------------------------------------------*/
.ams-build .freeHtml_body {
    min-height: 40px;
}
