@charset "utf-8";
@import url("//fonts.googleapis.com/css2?family=Noto+Snas+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: #053DF6;
  --color-dark: #002060;
  --color-light: #00BEFD;
  --color-pale: #f0f7f7;
  --color-link: #FE7802;
  --color-hover: #FED200;
  --color-accent: #FE7802;
  --color-lime: #97E501;
  --btn-color: #97E501;
  --btn-hover: #02B424;
}

/*--------------------------------------------------------------
リンク・ボタン
---------------------------------------------------------------*/
a {
  color: var(--color-link);
  font-weight: 500;
}
a:hover {
  color: var(--color-hover);
  font-weight: inherit;
}
a.btn {
  background: var(--btn-color);
}
a.btn:hover {
  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;
}

/*--------------------------------------------------------------
normalTbl
---------------------------------------------------------------*/
.article table.normalTbl th {
  border-bottom: 1px solid #ccc;
  background: var(--color-pale);
}

/*--------------------------------------------------------------
見出し
---------------------------------------------------------------*/
#mainArticles h2, #listTopics h2 {
  background: linear-gradient(to bottom, #053DF6, #002060);
  margin-bottom: 30px;
  padding-right: 2%;
  padding-left: 2%;
}
#mainTopics h2:after, .article h3:after, .gallery h3:after, .freeHtml h3:after {
  width: 2.4em;
  height: 1px;
  background: var(--color-dark);
}
#mainTopics h2, #mainArticles .article h2, .article h3, .gallery h3, .freeHtml h3 {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.6;
}
.article h4 {
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1.5;
  border: none;
  border-radius: 0;
  padding: 16px 0;
}
.article h4:before {
  width: 5.0em;
  height: 2px;
  background: var(--color-main);
  top: unset;
  bottom: 0;
}
.article h5 {
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  border-left: 3px solid var(--color-dark);
}

/*--------------------------------------------------------------
汎用文字装飾
---------------------------------------------------------------*/
p.leadCopy {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}
p.signature {
  display: flex;
  justify-content: flex-end;
  font-weight: 600;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 0;
}
p.envelope {
  font-size: 1.05em;
  font-weight: 600;
  line-height: 1.6;
}

/*--------------------------------------------------------------
リスト
---------------------------------------------------------------*/
ul.simple-list {
  font-size: 1.0em;
  font-weight: 600;
  margin: 0.5em 0;
  padding-left: 0;
  list-style: none;
}
ul.simple-list li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.3em;
}
ul.simple-list li::before {
  content: "●";
  position: absolute;
  top: 1.25em;
  left: 0.5em;
  font-size: 0.45em;
  line-height: 1;
}

/*--------------------------------------------------------------
pankuz
---------------------------------------------------------------*/
#pankuz {
  width: 100%;
  padding: 4px 12px;
  background: #FED200;
  color: #222;
}
#pankuz_body {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
#pankuz p {
  margin: 10px 0;
}
#pankuz a {
  color: #222;
}

/*--------------------------------------------------------------
title
---------------------------------------------------------------*/
#title_outer {
  width: 96%;
}
#title_body {
  display:flex;
}
#title {
  display: flex;
  width: 100%;
  padding: 20px 0 5px 0; 
}
#title h1 {
  display: block;
  width: 170px;
  height: 140px;
  margin: 0 0 0 0;
  float: none;
}
#title h1 a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/materials/178649030658801.png") top left no-repeat;
  background-size: 100%;
  text-indent: -9000px;
  margin:0;
}
#title #title_outer {
  height: 140px;
  background: transparent;
  justify-content: center;
}

/*--------------------------------------------------------------
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: none;
}
ul.topics li {
  background: var(--color-pale);
}
ul.topics li h3 a {
  color: var(--color-link);
}
ul.topics li h3 a:hover {
  color: var(--color-main);
}
ul.topics li p.date {
  background: var(--color-main);
}
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-dark);
}
#footer_body .copyright {
  background: var(--color-dark);
}

/*--------------------------------------------------------------
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 #sideServices h2:before, .sideContents #sideBlogCategories h2:before, .sideContents #sideBlogDates h2:before, .sideContents #sideMobile h2:before {
  background: var(--color-main);
}
.sideContents ul li a:hover, .sideContents dt a:hover {
  background: var(--color-pale);
  color: #094160;
}
.sideContents ul li a:before, .sideContents dt a:before {
  color: var(--color-main);
}

/*-------------------------------------------------------
写真ワイド化
-------------------------------------------------------*/
/* ワイド表示共通 */
.article.img-wide .image {
  height: 400px;
  overflow: hidden;
}
.article.img-wide .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article.img-wide-top .image,
.article.img-wide-center .image,
.article.img-wide-bottom .image,
.article.img-wide-left .image,
.article.img-wide-right .image {
  height: 400px;
  overflow: hidden;
}
.article.img-wide-top .image img,
.article.img-wide-center .image img,
.article.img-wide-bottom .image img,
.article.img-wide-left .image img,
.article.img-wide-right .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article.img-wide-top .image img {
  object-position: center top;
}
.article.img-wide-center .image img {
  object-position: center center;
}
.article.img-wide-bottom .image img {
  object-position: center bottom;
}
.article.img-wide-left .image img {
  object-position: left center;
}
.article.img-wide-right .image img {
  object-position: right center;
}
/* 右側画像 → 右画面端まで */
.article.img-wide .article_right .image {
  width: calc(44% + (100vw - 1024px) / 2);
  max-width: none;
  margin-right: calc((1024px - 100vw) / 2);
}
/* 左側画像 → 左画面端まで */
.article.img-wide .article_left .image {
  width: calc(44% + (100vw - 1024px) / 2);
  max-width: none;
  margin-left: calc((1024px - 100vw) / 2);
}

/*--------------------------------------------------------------
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 {
  background: linear-gradient(rgb(255 255 255 / 20%), rgb(255 255 255 / 20%)), url("/materials/178661352775901.jpg") no-repeat center;
  background-size: cover;
  padding-bottom: 50px;
  margin-bottom: 0;
}
.article.full.contact-block .article_body {
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  margin-top: 50px;
  padding: 15px 30px 30px 30px;
  border-radius: 12px;
}
.article.full.contact-block h3 {
  margin-top: 0;
  padding-bottom: 0;
}
.contact-block p.catchCopy {
  font-size: 1.7em;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}
.contact-block a.link-btn {
  display: block;
  width: 80%;
  height: auto;
  margin: 1.0em auto;
  padding: 1em;
  background: var(--color-main);
  border-radius: 8px;
  color: #fff;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}
.contact-block a.link-btn:hover {
  background: var(--color-dark);
}
.contact-block a.link-btn::after {
  font-size:1.0em;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: bold;
  margin-left: 6px;
}

/*-------------------------------------------------------
お問い合わせフォーム配色
-------------------------------------------------------*/
#mainArticles form, #mainBlogCommentForm form {
  background: #d7e6ee;
}
#mainArticles table.contactTable tr th, #mainBlogCommentForm table.contactTable tr th {
  background: #d7e6ee;
}
#mainArticles table.contactTable tr td, #mainBlogCommentForm table.contactTable tr td {
  background: var(--color-pale);
}
#mainArticles table.contactTable input.button, #mainBlogCommentForm table.contactTable input.button {
  background: var(--color-dark);
}

/*-------------------------------------------------------
リスト 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 #FE7802;
  border-bottom: 5px solid #FED200;
  transform: rotate(-45deg);
}
ul.check.service {
  padding-left: 0;
}
ul.check.service li {
  margin-bottom: 0.5em;
  padding: 0.5em 1.0em 0.5em 2.5em;
  background: var(--color-pale);
  border-radius: 6px;
}
ul.check.service li:before {
  left: 1.0em;
}

/*-------------------------------------------------------
ロゴについて
-------------------------------------------------------*/
.article.about_logomark .article_center .image {
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
}

/*-------------------------------------------------------
サービス開始までの流れ
-------------------------------------------------------*/
.article.service-flow {
  position: relative;
}
.article.service-flow:has(+ .article.service-flow)::after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-size: 48px;
  font-weight: 900;
  color: var(--color-accent);
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
}
.article.service-flow h4 {
  font-size: 1.35em;
  padding: 0.5em 0;
  border-bottom: 2px dotted #ccc;
}
.article.service-flow h4:before {
  display: none;
}
.article.service-flow h4 span.flow-num {
  font-size: 2.0em;
  color: var(--color-lime);
}
.article.service-flow p.contract {
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
  text-align:center;
  padding:0.7em;
  background: var(--color-light);
}

/*--------------------------------------------------------------
FAQ
---------------------------------------------------------------*/
ul.faq {
  font-size: 1.0em;
  padding: 0;
  border-bottom:1px dotted #666;
}
ul.faq li.qus ,
ul.faq li.ans {
  display: block;
  line-height: 1.6;
  margin-left: 48px;
  margin-bottom: 30px;
  padding-left: 0;
}
ul.faq li.qus {
  font-weight: bold;
  font-size: 110%;
}
ul.faq li.qus::before ,
ul.faq li.ans::before {
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 1.0em;
  height: 32px;
  line-height: 32px;
  margin: 0 16px 0 -48px;
  text-align: center;
  width: 32px;
}
ul.faq li.qus::before {
  background-color: var(--color-main);
  content: "Q";
}
ul.faq li.ans::before {
  background-color: var(--color-accent);
  content: "A";
}

/*======================================================
1024px
======================================================*/
@media only screen and (max-width: 1024px) {
  .article.img-wide .article_right .image {
    width: auto;
    max-width: 44%;
    margin-right: auto;
  }
  .article.img-wide .article_left .image {
    width: auto;
    max-width: 44%;
    margin-left: auto;
  }
  .article.img-wide .image img {
    width: 100%;
    height: auto;
    object-fit: unset;
    object-position: unset;
  }
  .article.img-wide .article_right .image {
    width: auto;
    max-width: 100%;
    margin-right: auto;
  }
  .article.img-wide .article_left .image {
    width: auto;
    max-width: 100%;
    margin-left: auto;
  }
  .sideContents .sideMobile p {
    text-align: center;
  }
  .article .article_right .image {
    float: none;
}
  .article .article_left .image {
    float: none;
}
}

/*======================================================
600px
======================================================*/
@media only screen and (max-width: 600px) {
  /* h1 title */
  #title {
    padding: 7px 0 5px 0;
  }
  #title #title_outer {
    height: 16.67vw;
  }
  #title h1 {
    width: 20vw;
    height: 16.67vw;
  }
  /*toggle*/
  #toggle, .active #toggle {
    width: 48px;
    height: 48px;
    right: 15px;
    top: 15px;
    background-color: var(--color-main);
  }
  /*ワイド画像*/
  .article.img-wide .image {
    height: auto;
  }
  /*見出し*/
  #mainArticles h2, #listTopics h2 {
    font-size: 1.4em;
  }
  #mainTopics h2, #mainArticles .article h2, .article h3, .gallery h3, .freeHtml h3 {
    font-size: 1.4em;
  }
  /*お問い合わせセクション*/
  .contact-block p.catchCopy {
    font-size: 1.5em;
  }
  .contact-block a.link-btn {
    width: 100%;
    font-size: 1.1em;
  }
  /*-------------------------------------------------------
  画面下部固定のリンクパーツ
  -------------------------------------------------------*/
  #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: 16px;
    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: "\f0e0";
    font-size: 130%;
    font-weight: bold;
    margin-left: 8px;
    display:inline-block;
    transform: translateY(1.5px);
  }
  /* ボタンサイズ分の画面下部余白 */
  #wrap {
    margin-bottom: 50px;
  }
}

/*===================================================================
480px以下
===================================================================*/
@media only screen and (max-width: 480px) {
  /*お問い合わせセクション*/
  .contact-block a.link-btn {
    font-size: 1.0em;
  }
}

/*-------------------------------------------------------
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;
}
