@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: #0fa6ed;
  --color-dark: #013275;
  --color-deep: #152a47;
  --color-light: #a5c6d4;
  --color-pale: #edf2f4;
  --color-link: #eb7527;
  --color-hover: #c86828;
  --color-accent: #93bd15;
  --btn-color: #013275;
  --btn-hover: #152a47;
}

/*--------------------------------------------------------------
リンク・ボタン
---------------------------------------------------------------*/
a {
  color: var(--color-link);
  font-weight: 500;
}
a:hover {
  color: var(--color-hover);
  font-weight: inherit;
}
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;
}

/*--------------------------------------------------------------
見出し
---------------------------------------------------------------*/
#mainArticles h2, #listTopics h2 {
  background: #013275;
  background: linear-gradient(0deg, rgba(1, 50, 117, 1) 0%, rgba(107, 208, 255, 1) 100%);
  padding-right: 2%;
  padding-left: 2%;
}
#mainTopics h2, #mainArticles .article h2, .article h3, .gallery h3, .freeHtml h3 {
  background: url("/materials/178071542279601.png") top center no-repeat;
  background-size: 50px;
  padding-top: 40px;
}
#mainTopics h2:after, #mainArticles .article h2:after, .article h3:after, .gallery h3:after, .freeHtml h3:after {
  margin: 24px auto;
  background: var(--color-main);
}
.article.bg h3, .article.theme h3, .article.gray h3, .gallery.bg h3, .gallery.theme h3, .gallery.gray h3 {
  padding-top: 40px;
}
.article h4:before {
  background: var(--color-main);
}
.article h5 {
  border-left: 4px solid var(--color-dark);
}

/*--------------------------------------------------------------
汎用文字装飾
---------------------------------------------------------------*/
#mainArticles .envelope {
  background: var(--color-pale);
}
#mainArticles .envelope.text-left {
  text-align: left;
}
/*枠付きテキスト*/
.text-envelope {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 70%;
  font-size: 1.1em;
  color: #fff;
  font-weight: 500;
  line-height: 1.6 !important;
  background: var(--color-main);
  border-radius: 999px;
  margin: 0 auto;
  padding: 0.3em 1.0em;
}
@media (max-width: 960px) {
  .text-envelope {
    max-width: 100%;
    border-radius: 8px;
  }
}
/*col2 card*/
.article.col2.col-card {
  background: var(--color-pale);
}
.article.col2.col-card .article_outer {
  padding: 0.7em 1.1em;
}
.article.col2.col-card h5 {
  margin-top: 0.5em;
}

/*--------------------------------------------------------------
汎用リスト
---------------------------------------------------------------*/
ul.maru.task {
  font-size: 1.05em;
  font-weight: 500;
}
ul.maru.task li {
  margin-bottom: 0.5em;
}
ul.maru.task li:before {
  color: var(--color-light);
}
/*サービスの流れ*/
ol.serviceFlow {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2%;
  counter-reset: flow;
}
ol.serviceFlow li {
  display: flex;
  align-items: center;
  width: calc((100% - 2% * 4) / 5);
  padding: 20px;
  padding-left: 2.4em;
  border: 1px solid var(--color-main);
  position: relative;
  counter-increment: flow;
  font-weight: 600;
}
ol.serviceFlow li::before {
  content: counter(flow);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.4em;
  height: 94%;
  font-size: 1.8em;
  font-weight: 700;
  color: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
}
ol.serviceFlow li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.2em;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--color-main);
}
ol.serviceFlow li:last-child::after {
  display: none;
}
@media (max-width: 960px) {
  ol.serviceFlow {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
  }
  ol.serviceFlow li {
    width: min(100%, 480px);
  }
  ol.serviceFlow li::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid var(--color-main);
  }
  ol.serviceFlow li:last-child::after {
    display: none;
  }
}

/*--------------------------------------------------------------
pankuz
---------------------------------------------------------------*/
#pankuz p {
  padding-right: 1.0em;
}

/*--------------------------------------------------------------
title
---------------------------------------------------------------*/
#title_outer {
  width: 96%;
}
#title_body {
  display:flex;
}
#title {
  display: flex;
  width: 100%;
  padding: 15px 0; 
}
#title h1 {
  display: block;
  width: 325px;
  height: 80px;
  float: none;
  margin: 0 0 0 0;
}
#title h1 a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/materials/178032073531302.png") top left no-repeat;
  background-size: 100%;
  text-indent: -9000px;
  margin:0;
}
#title #title_outer {
  height: 75px;
  background: url("/materials/178032101949301.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
---------------------------------------------------------------*/
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: #013275;
  background: linear-gradient(0deg, rgba(1, 50, 117, 1) 0%, rgba(107, 208, 255, 1) 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);
}

/*--------------------------------------------------------------
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: #f3f3f3;
}
.contact-block::before {
  display: block;
  content: "";
  width: clamp(240px, 22vw, 400px);
  aspect-ratio: 480/ 800;
  background: url("/materials/178071794288402.png") top left no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity:0.3;
}
.contact-block::after {
  display: block;
  content: "";
  width: clamp(280px, 28vw, 500px);
  aspect-ratio: 850 / 800;
  background: url("/materials/178071794288401.png") bottom right no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity:0.3;
}
.article.full.contact-block .article_body {
  width: 60%;
  margin: 30px auto;
  padding: 40px 30px 15px 30px;
  background: rgba(255, 255, 255, 0.6);
  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: 50px;
}
.gallery.guideBtn ul.galleryGrids .comment {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 4px;
  position: static;
  margin-top: -2.0em;
  margin-bottom: 1.5em;
  font-size: 0.9em;
  color: var(--color-dark);
  font-weight: bold;
  line-height: 1.25;
  padding: 0 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;
}

/*--------------------------------------------------------------
テーブル
---------------------------------------------------------------*/
.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: 12px 18px;
}
.article table.simpleTbl th {
  width: 1%;
  background-color: #e7f1f7;
  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;
}
/*simpleTbl + price*/
.article table.simpleTbl.price th, .article table.simpleTbl.price td {
  text-align: center;
}
.article table.simpleTbl.price th {
  width: auto;
}

/*--------------------------------------------------------------
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);
}

/*-------------------------------------------------------
汎用 画像サイズ調整
-------------------------------------------------------*/
.article.img-width50 .image {
  width: 50%;
  margin: 0 auto;
}

/*-------------------------------------------------------
トップ　選ばれる理由
-------------------------------------------------------*/
ol.reason {
  display: flow-root;
  counter-reset: step;
  list-style: none;
  padding: 0;
}
ol.reason li {
  font-size: 1.0em;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  padding: 0.8em 1.0em 0.8em 4.5em;
  background: #fff;
  counter-increment: step;
  margin-bottom: 1.25em;
}
ol.reason li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.7em;
  height: 1.5em;
  border-radius: 50%;
  font-size: 2.4em;
  font-weight: 700;
  color: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
}
ol.reason li::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: linear-gradient(
        135deg,
        var(--color-main) 50%,
        #fff 50%
    );
  position: absolute;
  top: 0;
  left: 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: 260px;
    height: 56px;
  }
  /*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;
  }
  .article table.normalTbl th {
    background: #eee;
}
}

/*===================================================================
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;
}
