@charset "utf-8";
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300..900&display=swap");

/*--------------------------------------------------------------
レスポンシブ02 グリーン 1カラム
---------------------------------------------------------------*/
body {
  font-size:18px;
  color: #333;
  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: #678f2c;
  --color-dark: #2c5e29;
  --color-light: #9ecc50;
  --color-pale: #f2f7e8;
  --color-link: #fa9308;
  --color-hover: #cc6600;
  --btn-color: #fa9308;
  --btn-hover: #ff7611;
}

/*--------------------------------------------------------------
リンク・ボタン
---------------------------------------------------------------*/
a {
  color: var(--color-link);
  font-weight: 500;
}
a:hover {
  color: var(--color-hover);
  font-weight: inherit;
}
a.btn {
  color: #fff;
  font-weight: 500;
  background: var(--btn-color);
}
a.btn:hover {
  color:#fff;
  font-weight: inherit;
  background: var(--btn-hover);
}
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;
}

/*--------------------------------------------------------------
テーブル
---------------------------------------------------------------*/
.article table.simpleTbl {
  width: 100%;
  border: none;
  border-top: 1px solid #ccc;
  margin: 18px auto;
  font-size: 16px;
}
.article table.simpleTbl th, .article table.simpleTbl td {
  border: none;
  text-align: left;
  padding: 16px 18px;
}
.article table.simpleTbl th {
  width: 1%;
  background-color: var(--color-pale);
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  white-space: nowrap;
  font-weight: 500;
}
.article table.simpleTbl td {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
/*simpleTbl + border*/
.article table.simpleTbl.bordered {
  border-left: 1px solid #ccc;
}
.article table.simpleTbl.bordered th, .article table.simpleTbl.bordered td {
  border-right: 1px solid #ccc;
}

/*--------------------------------------------------------------
見出し
---------------------------------------------------------------*/
#mainArticles h2, #listTopics h2 {
  background: var(--color-main);
  padding-right: 2%;
  padding-left: 2%;
}
#mainTopics h2, .article h3, .gallery h3, .freeHtml h3 {
  line-height: 1.5;
}
#mainTopics h2:after, .article h3:after, .gallery h3:after, .freeHtml h3:after {
  background: var(--color-light);
}
.article h4:before {
  background: var(--color-light);
}
.article h5 {
  border-left: 4px solid var(--color-light);
}

/*--------------------------------------------------------------
汎用文字装飾
---------------------------------------------------------------*/
.leadCopy {
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1.6 !important;
}
.article p.solution {
  display: flow-root;
  font-size: 1.0em;
  font-weight: 500;
  line-height: 1.7;
  padding: 0.7em 1.2em;
  background: var(--color-pale);
  margin-top: 1.2em;
}
.signature {
  display: flex;
  text-align: left;
  justify-content: flex-end;
}

/*--------------------------------------------------------------
汎用リスト
---------------------------------------------------------------*/
ul.maru-plus {
  font-size: 1.05em;
}
ul.maru-plus li {
  margin-bottom: 0.3em;
}
ul.maru-plus li:before {
  content: "●";
  color: var(--color-light);
  padding-right: 0.1em;
}
.article.col2.underImg.btn-bottom,
.article.col2.underImg.btn-bottom .article_outer {
  display: flex;
}
.article.col2.underImg.btn-bottom .article_body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.article.col2.underImg.btn-bottom .image {
  margin-top: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

/*--------------------------------------------------------------
リスト
---------------------------------------------------------------*/
ul.check-plus {
  position: relative;
  padding: 0;
}
ul.check-plus li {
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 1.0em;
  padding: 15px 15px 15px 50px;
  background: #fff;
  border: 2px solid var(--color-light);
  border-radius: 8px;
}
ul.check-plus li:before {
  top: 0.5em;
  width: 0.85em;
  border-left: 4px solid #ff3300;
  border-bottom: 4px solid #ff9900;
  top: 20px;
  left: 18px;
}

/*--------------------------------------------------------------
汎用クラス
---------------------------------------------------------------*/
/*センター揃え画像サイズ調整*/
.article.image50 .image {
  max-width: 44%;
  margin: 0 auto;
}
.article.image_small .image {
  max-width: 25%;
}

/*--------------------------------------------------------------
ボタン3つ横並び
---------------------------------------------------------------*/
ul.btn-list {
  display: flex;
  gap: 1rem;
}
ul.btn-list li {
  flex: 1; /* 3つなら3等分、6つなら6等分 */
}
ul.btn-list li .btn {
  padding: 8px;
}

/*--------------------------------------------------------------
トップバナー背景
---------------------------------------------------------------*/
#mainImage {
  background: linear-gradient(
  to top,
  #f2f6ea 0%,
  #f2f6ea 50%,
  transparent 50%,
  transparent 100%);
}

/*--------------------------------------------------------------
pankuz
---------------------------------------------------------------*/
#pankuz {
  width: 100vw;
  padding: 16px 12px;
  background: #f2f6ea;
}
#pankuz p {
  max-width: 1024px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
title
---------------------------------------------------------------*/
#title_outer {
  width: 96%;
}
#title_body {
  display:flex;
}
#title {
  display: flex;
  width: 100%;
  padding: 15px 0 7px; 
}
#title h1 {
  display: block;
  width: 240px;
  height: 80px;
  margin: 0 0 0 0;
  float: none;
}
#title h1 a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/materials/178148689296801.png") top left no-repeat;
  background-size: 100%;
  text-indent: -9000px;
  margin:0;
}
#title #title_outer {
  height: 80px;
  background: url("/materials/178148752458001.png") right center no-repeat;
  background-size: 280px;
}

/*--------------------------------------------------------------
topMenu
---------------------------------------------------------------*/
#topMenu_outer .topMenu li a {
  font-size: 0.87em;
  font-weight: 400;
}
#topMenu_outer .topMenu li a:hover {
  background: var(--color-light);
}

/*--------------------------------------------------------------
topics
---------------------------------------------------------------*/
ul.topics li h3 a {
  color: var(--color-link);
}
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: var(--color-main);
}
#footer_body .copyright {
  background: var(--color-main);
}

/*--------------------------------------------------------------
footer menu
---------------------------------------------------------------*/
#footer_body .topMenu li a, #footer_body .services li a {
  background: transparent;
  border-bottom: 1px solid transparent;
}
#footer_body .topMenu li a:hover, #footer_body .services li a:hover {
  background: transparent;
  border-bottom: 1px dashed #fff;
}

/*--------------------------------------------------------------
sideContents
---------------------------------------------------------------*/
.sideContents ul li a:hover, .sideContents dt a:hover {
  color: inherit;
  background: var(--color-pale);
}

/*-------------------------------------------------------
freeHtml　会社概要
-------------------------------------------------------*/
.sideContents {
  padding-top: 0;
}
.freeHtml {
  margin-top: 0;
}
#sideCompany {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 50px;
  padding: 30px;
  background: var(--color-pale);
}
#sideCompany .sideCompany_inner {
  display: block;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 60px 4%;
  background: #fff;
  border-radius: 12px;
}
#sideCompany h2.logomark {
  width: 280px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 280 / 93;
  background: url("/materials/178148689296801.png") no-repeat;
  margin: 0 auto 35px;
  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;
  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-light);
}
#sideCompany td {
  width: 70%;
  min-height: 3.0em;
  vertical-align: middle;
  font-size: 1.0em;
  line-height: 1.25;
  padding:1.25em 1.0em;
  font-weight: normal;
  margin-bottom: 1.0em;
  border: none;
  border-bottom: 1px dotted var(--color-light);
}
#sideCompany a.link-btn {
  font-size: 1.0em;
  color: #fff;
  font-weight: 400;
  background: var(--btn-color);
  width: 100%;
  max-width: 450px;
  margin: 30px auto 0 auto;
  padding: 8px 16px;
  border-radius: 2px;
  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;
}

/*--------------------------------------------------------------
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%;
}

/*-------------------------------------------------------
お問い合わせセクション
-------------------------------------------------------*/
.contact-block {
  text-align: center;
}
.contact-block h4 {
  font-size: 1.2em;
  font-weight: 700;
  color: #222;
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-block p {
  line-height: 1.7;
}
.contact-block p.tel-num {
  margin-bottom: 0;
}
.contact-block a.tel-link {
  font-size: 2.4em;
  font-weight: 700;
  color: var(--color-main);
}
.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(--color-deep);
  text-align: center;
  display: flow-root;
  border-radius: 6px;
  padding: 12px;
  text-decoration: none;
  width: 100%;
  margin: 0 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(--color-dark);
}

/*--------------------------------------------------------------
サイト案内
---------------------------------------------------------------*/
.gallery.guideBtn .gallery_grid3 li.galleryGrid {
  width: 32%;
  background: #e7f1f7;
  margin: 0 0.5% 15px;
  border-radius: 6px;
}
.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: 50px;
}
.gallery.guideBtn ul.galleryGrids .comment {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 40px);
  height: 50px;
  border-radius: 4px;
  position: absolute;
  left: 20px;
  bottom: 0;
  font-size: 0.9em;
  color: var(--color-dark);
  font-weight: bold;
  line-height: 1.25;
  background: var(--color-blk);
  padding: 0 8px;
  pointer-events: none;
}
.gallery.guideBtn ul.galleryGrids .comment::after {
  font-size:1.0em;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  color: var(--color-dark);
  font-weight: bold;
  margin-left: 6px;
}

/*--------------------------------------------------------------
5つの強み
---------------------------------------------------------------*/
.article.strong-point .image {
  max-width: 18%;
}
.article.strong-point table {
  width: auto;
  border: none;
  border-collapse: separate;
  border-spacing: 5px;
}
.article.strong-point table th {
  border: none;
  vertical-align: top;
  padding: 0;
}
.article.strong-point table td {
  width: 100%;
  border: none;
  text-align: left;
  vertical-align: top;
  padding: 15px 20px;
  background: var(--color-pale);
  border-radius: 8px;
}
.article.strong-point table th {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-main);
  border-radius: 50%;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.article.strong-point table h4 {
  color: var(--color-main);
  border: none;
  margin: 0.2em 0;
  padding: 0;
  background: transparent;
}
.article.strong-point table h4:before {
  display: none;
}
.article.strong-point table p {
  line-height: 1.7;
  margin-bottom: 0.5em;
}

/*-------------------------------------------------------
お問い合わせバナー
-------------------------------------------------------*/
.gallery.contact-block .image {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

/*-------------------------------------------------------
料金プラン カード
-------------------------------------------------------*/
.article.col3.card-plan {
  display: flex;
  border: 1px solid #ccc;
  border-top: 4px solid var(--color-light);
  padding: 1.5rem 1.5rem;
}
.article.col3.card-plan .article_outer {
  display: flex;
  flex: 1;
}
.article.col3.card-plan .article_body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.article.col3.card-plan h5 {
  margin: 0 0 1em 0;
  padding: 0.5em 0;
  border: none;
  border-bottom: 1px solid #ccc;
}
.article.col3.card-plan p.price {
  font-size: 1.25em;
  font-weight: 600;
  text-align: center;
  margin: 0 0 0.5em 0;
}
.article.col3.card-plan p.price strong {
  font-size: 170%;
  font-weight: 700;
}
.article.col3.card-plan a.btn {
  font-size:0.9em;
  margin-top: auto;
}
.article.col3.card-plan p {
  font-size: 0.85em;
  line-height: 1.7;
  margin-bottom:0.5em;
}
.article.col3.card-plan ul {
  font-size: 0.9em !important;
  margin-left: 0.5em;
  margin-bottom: 1em;
}

/*--------------------------------------------------------------
FAQ
---------------------------------------------------------------*/
ul.faq {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
ul.faq li.qus,
ul.faq li.ans {
  position: relative;
  display: block;
  margin: 0;
  line-height: 1.6;
  padding-left: 44px;
}
ul.faq li.qus {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px dotted #555;
}
ul.faq li.ans {
  margin-bottom: 0;
}
/* 四角 */
ul.faq li.qus::before,
ul.faq li.ans::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  margin: 0;
}
ul.faq li.qus::before {
  background: var(--color-main);
}
ul.faq li.ans::before {
  background: var(--color-light);
}
/* 文字ベース */
ul.faq li.qus::after,
ul.faq li.ans::after {
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 32px;
  height: 32px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  z-index: 1;
}
/* Q */
ul.faq li.qus::after {
  content: "Q";
  font-size: 1.1em;
  line-height: 32px;
  transform: translateY(-5px);
}
/* A */
ul.faq li.ans::after {
  content: "A";
  font-size: 0.9em;
  line-height: 32px;
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
4つの価値観
---------------------------------------------------------------*/
.values {
  list-style: none;
  margin: 2em 0;
  padding: 0;
  counter-reset: value;
}
.values li {
  position: relative;
  padding: 1.5em 1.5em 1.5em 5.5em;
  margin-bottom: 1.5em;
  background: #f8f8f8;
  border-radius: 8px;
}
.values li::before {
  counter-increment: value;
  content: counter(value);
  position: absolute;
  top: 1.5em;
  left: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-main);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 6px;
}
.values h5 {
  margin: 0 0 0.4em;
  font-size: 1.2rem;
  font-weight: 700;
  padding-left: 0;
  border: none;
}
.values p {
  margin: 0;
  line-height: 1.8;
  color: #444;
}

/*--------------------------------------------------------------
ビジョンフロー
---------------------------------------------------------------*/
.vison-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  counter-reset: flow;
  margin: 2em 0;
  padding: 0;
}
.vison-flow li {
  position: relative;
  counter-increment: flow;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 0 1em;
  margin-right: 2em;
  background: #f5f5f5;
  border: 2px solid var(--color-main);
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  flex: 1 1 4em;
}
.vison-flow li::before {
  content: counter(flow);
  position: absolute;
  top: -0.6em;
  left: -0.6em;
  width: 1.8em;
  height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-main);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
}
.vison-flow li::after {
  content: "＞";
  position: absolute;
  top: 50%;
  right: -1.6em;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-main);
}
.vison-flow li:last-child {
  margin-right: 0;
}
.vison-flow li:last-child::after {
  content: none;
}

/*--------------------------------------------------------------
会員規程
---------------------------------------------------------------*/
.article.rules h5 {
  font-size: 1.05em;
}
.article.rules p {
  font-size: 0.9em;
}
.article.rules ol {
  font-size: 0.9em;
  padding-left: 1.5em;
}
.article.rules ol li {
  list-style: decimal;
}

/*--------------------------------------------------------------
管理内容の詳細
---------------------------------------------------------------*/
.article.col3.management .article_body {
  padding: 10px;
}

/*--------------------------------------------------------------
画面下部固定のリンクパーツ（PCでは非表示・SPのみ600pxで表示）
---------------------------------------------------------------*/
.bottom-link {
  display: none;
}

/*======================================================
1024px
======================================================*/
@media only screen and (max-width: 1024px) {
}

/*======================================================
800px
======================================================*/
@media only screen and (max-width: 800px) {
  .values li {
      padding: 1.25em 1.25em 1.25em 4.5em;
  }
  .values li::before {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.25rem;
    left: 1em;
    top: 1em;
  }
  /*ビジョン*/
  .vison-flow {
    flex-direction: column;
    align-items: stretch;
  }
  .vison-flow li {
    margin: 0 0 2em;
    min-height: 60px;
  }
  .vison-flow li::after {
    content: "▼";
    right: 50%;
    top: auto;
    bottom: -1.5em;
    transform: translateX(50%);
  }
  .vison-flow li:last-child {
    margin-bottom: 0;
  }
}

/*======================================================
600px
======================================================*/
@media only screen and (max-width: 600px) {
  /*title*/
  #title {
    padding: 0;
  }
  #title #title_outer {
    background: none;
  }
  #title h1 {
    width: 180px;
    height: 60px;
    padding: 0;
  }
  /*toggle*/
  #toggle, .active #toggle {
    background-color: var(--color-main);
  }
  /*mainImage*/
  #wrap_body #mainImage {
    margin-top: -4vw;
  }
  /*見出し*/
  #mainArticles h2, #listTopics h2 {
    font-size: 1.5em;
  }
  /*法人概要テーブル 1カラム化*/
  #sideCompany table,
  #sideCompany tbody,
  #sideCompany tr,
  #sideCompany th,
  #sideCompany td {
    display: block;
    width: 100%;
  }
  #sideCompany th {
    text-align: left;
    margin-right: 0;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0.5em;
  }
  #sideCompany td {
    padding-top: 0;
  }
  /*法人概要（simpleTbl）テーブル 1カラム化*/
  .article table.simpleTbl,
  .article table.simpleTbl tbody,
  .article table.simpleTbl tr,
  .article table.simpleTbl th,
  .article table.simpleTbl td {
    display: block;
    width: 100%;
  }
  .article table.simpleTbl th {
    white-space: normal;
    border-right: none;
    padding-bottom: 8px;
  }
  .article table.simpleTbl td {
    padding-top: 8px;
  }
  .article table.simpleTbl.bordered th,
  .article table.simpleTbl.bordered td {
    border-right: none;
  }
  /*ボタン3つ横並び → 縦一列に変更*/
  ul.btn-list {
    flex-direction: column;
  }
  /*5つの強み*/
  .article.strong-point .image {
    max-width: 50%;
  }
  /*お問い合わせバナー*/
  .gallery.contact-block .gallery_grid2 li {
    width: 100%;
  }
  .gallery.contact-block .galleryGrid_body {
    padding: 0 5%;
  }
  /*-------------------------------------------------------
  画面下部固定のリンクパーツ
  -------------------------------------------------------*/
  /* 画面下部固定のリンクパーツ */
  .bottom-link {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    width: 100%;
  }
  .bottom-link__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 56px;
    padding: 8px 12px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
  }
  .bottom-link__item--tel {
    background: var(--color-dark);
  }
  .bottom-link__item--line {
    background: #00b900;
  }
  .bottom-link__item i {
    flex-shrink: 0;
    font-size: 2rem;
  }
  .bottom-link__item span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .bottom-link__item small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
  }
  .bottom-link__item:hover {
    opacity: 0.9;
  }
  .bottom-link__item--tel span {
    font-size: 1.1rem;
  }
  .bottom-link__item .fa-phone {
    font-size: 1.5em;
    transform: rotate(110deg);
  }
  /* ボタンサイズ分の画面下部余白 */
  #wrap {
    margin-bottom: 45px;
  }
}

/*===================================================================
480px以下
===================================================================*/
@media only screen and (max-width: 480px) {
}

/*-------------------------------------------------------
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;
}
