@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: #111;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #fff;
  letter-spacing: 0.04em;
}
@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; }
}
#mainContents {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
変数・カラー定義
---------------------------------------------------------------*/
:root {
  --color-orange: #f28814;
  --color-pink: #ea3b82;
  --color-dark-orange: #db5138;
  --color-light: #fcc62b;
  --color-pale: #f5efe8;
  --color-link: #fd7a02;
  --color-hover: #d86801;
  --btn-color: #34abf8;
  --btn-hover: #1c6c9b;
}

/*--------------------------------------------------------------
リンク・ボタン
---------------------------------------------------------------*/
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 .article_center .image,
.article .article_right .image,
.article .article_left .image {
  margin-bottom: 2%;
}
@media only screen and (min-width: 600px) {
  .article .article_left .image, .article .article_right .image {
    max-width: 46%;
  }
}

/*--------------------------------------------------------------
ボタン3種
---------------------------------------------------------------*/
ul.btn-list-box {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.btn-list-box li {
  flex: 1;
}
ul.btn-list-box a.btn {
  display: block;
  width: 100%;
  padding: 16px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
}
ul.btn-list-box a.btn.process {
  --btn-color: #ea3b82;
  --btn-hover: #c92f70;
}
ul.btn-list-box a.btn.cases {
  --btn-color: #0f92de;
  --btn-hover: #0c79ba;
}
ul.btn-list-box a.btn.faq {
  --btn-color: #32b96a;
  --btn-hover: #289653;
}
@media screen and (max-width: 600px) {
  ul.btn-list-box {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
段落
---------------------------------------------------------------*/
.article p {
  color: #333;
  margin-bottom: 1em;
}

/*--------------------------------------------------------------
normalTbl
---------------------------------------------------------------*/
.article table.normalTbl th {
  color: var(--color-light);
}

/*--------------------------------------------------------------
リスト maru
---------------------------------------------------------------*/
ul.maru.plus {
  font-size: 1.0em;
}
ul.maru.plus li:before {
  color: var(--color-light);
}

/*--------------------------------------------------------------
見出し
---------------------------------------------------------------*/
#mainArticles h2, #listTopics h2 {
  font-size: 2em;
  font-weight: 800;
  background: radial-gradient(ellipse at center, #f6bd00 0%,#f28814 100%);
  padding: 2.2em 2%;
  padding-left: 2%;
  text-shadow: 0px 0px 2px #f28814;
}
#mainArticles div[id^="blog"] h2 {
  text-shadow: none;
}
#mainTopics h2, #mainArticles .article h2, .article h3, .gallery h3, .freeHtml h3 {
  font-size: 1.8em;
  font-weight: 700;
}
.article h4 {
  color: #FFF;
  font-size: 1.25em;
  margin: 0 0 8px;
  display: flow-root;
  padding: 16px 16px 16px 32px;
  border-radius: 2px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  background: #f08300;
  border: none;
}
.article h4::before {
  content: "";
  width: 6px;
  height: 6px;
  margin: auto 8px auto 0;
  position: absolute;
  left: 10px;
  top: 25px;
  bottom: unset;
  background: #FFF;
  box-shadow: 6px 6px 0 #FFF,0px 12px 0 #FFF;
}

/*--------------------------------------------------------------
汎用文字装飾
---------------------------------------------------------------*/
h4.catchCopy {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.6;
  display: block;
  margin: 0 0 0.5em;
  padding: 0;
  border: none;
  background: transparent;
  color: #ea3b82;
}
h4.catchCopy:before {
  display: none;
  content: none;
}
.article p.leadCopy {
  font-size: 1.33em;
  font-weight: 800;
  color: #fd7a02;
  line-height: 1.5;
}

/*-------------------------------------------------------
写真ワイド化
-------------------------------------------------------*/
/* ワイド表示共通 */
.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);
}

/*--------------------------------------------------------------
pankuz
---------------------------------------------------------------*/
#pankuz p {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 2%;
}

/*--------------------------------------------------------------
title
---------------------------------------------------------------*/
#title_outer {
  width: 96%;
}
#title_body {
  display:flex;
}
#title {
  display: flex;
  width: 100%;
  padding: 15px 0 7px; 
}
#title h1 {
  display: block;
  width: 320px;
  height: 74px;
  margin: 0 0 0 0;
  float: none;
}
#title h1 a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/materials/178427609063201.png") top left no-repeat;
  background-size: 100%;
  text-indent: -9000px;
  margin:0;
}
#title #title_outer {
  height: 75px;
  background: url("/materials/178427609063202.png") right center no-repeat;
  background-size: 300px;
}

/*--------------------------------------------------------------
topMenu
---------------------------------------------------------------*/
#wrap_body #topMenu {
  background: #fcf6f0;
}
#topMenu_outer .topMenu li a {
  font-size: 1em;
  font-weight: 600;
}
#topMenu_outer .topMenu li a:hover {
  background: var(--color-light);
}

/*-------------------------------------------------------
tipics
-------------------------------------------------------*/
ul.topics li h3 a {
  color: var(--color-link);
}
ul.topics li p.date {
  background: var(--color-pink);
}
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, #footer_body .topMenu li a, #footer_body .services li a, #footer_body .copyright {
  background: var(--color-orange);
}

/*-------------------------------------------------------
お問い合わせセクション
-------------------------------------------------------*/
.sideContactSection {
  width: 100vw;
  text-align: center;
  margin-left: calc(50% - 50vw);
  background: url("/materials/178437685990201.jpg") no-repeat center;
  background-size: cover;
  padding: 50px 4%;
}
.sideContactSection_inner {
  width: 92%;
  max-width: 1024px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  padding: 30px;
  border-radius: 12px;
}
.sideContactSection h3 {
  margin-top: 0;
  padding-bottom: 0;
}
.sideContactSection p.contact-tel {
  margin-bottom: 0;
}
.sideContactSection a.tel-link {
  font-size: 2em;
  font-weight: 900;
  color: var(--btn-color);
}
.sideContactSection a.tel-link::before {
  font-size: 80%;
  display: inline-block;
  transform: rotate(-25deg)  translateY(-4px);
}

/*-------------------------------------------------------
お問い合わせメールフォームボタン
-------------------------------------------------------*/
p.btn-wrap {
  margin-top: 20px;
}
a.btn-mailform {
  font-size: 1.1em;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
  background: var(--color-pink);
  text-align: center;
  display: inline-block;
  border-radius: 6px;
  padding: 12px 24px;
  text-decoration: none;
  width: auto;
  margin: 0 auto 20px;
}
a.btn-mailform:hover {
  background: var(--color-dark-orange);
}
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-orange);
}

/*-------------------------------------------------------
freeHtml　会社概要
-------------------------------------------------------*/
.sideContents {
  padding-top: 0;
}
.freeHtml {
  margin-top: 0;
}
#sideCompany {
  width: 100%;
  margin: 0;
  padding: 0;
}
#sideCompany .sideCompany_inner {
  display: block;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 60px 4%;
}
#sideCompany h2.logomark {
  width: 200px;
  height: 140px;
  background: url("/materials/178437577464801.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.0em 0.5em;
  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: 12px 16px;
  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;
}

/*--------------------------------------------------------------
サイト案内
---------------------------------------------------------------*/
.gallery.guideBtn {
  margin-bottom: 70px;
}
.gallery.guideBtn h3 {
  padding-bottom: 0;
}
.gallery.guideBtn .gallery_grid3 li.galleryGrid {
  width: 32%;
  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: 30px;
}
.gallery.guideBtn ul.galleryGrids .comment {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92%, 240px);
  height: 32px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 0.9em;
  color: var(--color-dark-orange);
  font-weight: bold;
  line-height: 1.25;
  background: var(--color-blk);
  padding: 0 8px 0 16px;
  pointer-events: none;
  border: 1px solid #111;
  border-radius: 999px;
}
.gallery.guideBtn ul.galleryGrids .comment::after {
  font-size:1.0em;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  color: var(--color-dark-orange);
  font-weight: bold;
  margin-left: 6px;
}

/*--------------------------------------------------------------
お困りではありませんか？
---------------------------------------------------------------*/
ul.check.worries {
  font-size: 1.0rem;
}
ul.check li:before {
  width: 0.8em;
  top: 0.5em;
}
ul.check li {
  padding-bottom: 0.3em;
  border-bottom: 2px dashed var(--color-orange);
  margin-bottom: 0.5em;
}
.article p.solutions {
  font-size: 1.05em;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  padding: 0.8em 1.2em;
  background: var(--color-pink);
  border-radius: 8px;
  position: relative;
  margin-top: 50px;
}
.article p.solutions::before {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-size: 80px;
  color: #fcc62b;
  line-height: 1;
  text-align:center;
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

ul.strongpoint li h4 {
  color: #fff;
  padding: 0.5em 0.8em;
  border: none;
}
ul.strongpoint li h4:before {
  display: none;
}
ul.strongpoint li:nth-child(1) h4 {
  background: #32b96a;
}
ul.strongpoint li:nth-child(2) h4 {
  background: #ef8818;
}
ul.strongpoint li:nth-child(3) h4 {
  background: #8a5fd3;
}
ul.strongpoint li:nth-child(4) h4 {
  background: #ea3b82;
}
ul.strongpoint li:nth-child(5) h4 {
  background: #0f92de;
}

/*--------------------------------------------------------------
イベントアイコン
---------------------------------------------------------------*/
.gallery.cat_icon ul.galleryImages li {
  flex-basis: calc(100% / 7);
}

/*--------------------------------------------------------------
お問い合わせ方法アイコン
---------------------------------------------------------------*/
.article.contact-method.mbplus {
  margin-bottom: 70px;
}
.article.contact-method .image {
  max-width: 120px;
}
.article.contact-method h5 {
  margin-top: 15px;
}
.article.contact-method p {
  display: flow-root;
}
.article.contact-method a.tel-link {
  font-size: 1.5em;
}

/*--------------------------------------------------------------
FAQ
---------------------------------------------------------------*/
ul.faq {
  font-size: 18px;
  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-orange);
  content: "Q";
}
ul.faq li.ans::before {
  background-color: var(--color-pink);
  content: "A";
}

/*--------------------------------------------------------------
記事背景
---------------------------------------------------------------*/
div[class*="bk_color_"].article,
div[class*="bk_color_"].gallery {
  margin-bottom: 0;
  padding: 40px 4%;
}
.article.bk_color_gray, .gallery.bk_color_gray {
  background: #f7f8f9;
}
.article.bk_color_pink, .gallery.bk_color_pink {
  background: #fff3f3;
}
.article.bk_color_orange, .gallery.bk_color_orange {
	background: #feeedd;
}
.article.bk_color_beige, .gallery.bk_color_beige {
	background: #f7f6f3;
}
.article.bg_color_brown, .gallery.bg_color_brown {
	background: #f9f7f6;
}
.article.bk_color_yellow, .gallery.bk_color_yellow {
  background: #fdfdf4;
}
.article.bk_color_blue, .gallery.bk_color_blue {
  background: #f0f6fc;
}
.article.bk_color_green, .gallery.bk_color_green {
  background: #f0f9f6;
}
.article.bk_color_cyan, .gallery.bk_color_cyan {
  background: #f0fcfc;
}
.article.bk_color_white, .gallery.bk_color_white {
  background: #fcfcfd;
}
.article.bk_color_dot, .gallery.bk_color_dot {
  background-image: radial-gradient(#f6f3f3 1px, transparent 1px), radial-gradient(#eeeee3 1px, #fff 1px);
  background-size: 4px 4px;
  background-position: 0 0,2px 2px;
  margin-bottom: 0;
}

/*サイト案内*/
#mainArticles .siteGuide {
  margin-bottom: 0;
}
#mainArticles .siteGuide .gallery_grid li.galleryGrid .galleryGrid_outer {
  padding: 0 16px 16px;
}
#mainArticles .siteGuide .gallery_grid li.galleryGrid .image {
  max-width: 100%;
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  background: #FFF;
}
#mainArticles .siteGuide .gallery_grid li.galleryGrid .image img {
  transition: 0.5s all;
  width: 100%;
}
#mainArticles .siteGuide .gallery_grid li.galleryGrid .image a:hover img {
  transform: scale(1.05, 1.05);
  transition: 0.5s all;
  opacity: 1;
}
#mainArticles .siteGuide .gallery_grid li.galleryGrid .comment {
  text-align: center;
  line-height: 1.5;
  background: #f28814;
  padding: 4px 0 6px;
  color: #FFF;
  font-size: 0.9em;
}

/*イベントアイコン*/
#mainArticles .cat_icon .gallery_grid li.galleryGrid .image {
  max-width: 150px;
  margin: auto;
}

/*流れ*/
.article.guidance-flow {
  position: relative;
  padding: 40px;
  margin: 40px auto;
  overflow: visible;
  background: #fcf6f0;
}
.article.guidance-flow::after {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 100%;
  border-top: 40px solid #fcf6f0;
  border-right: 60px solid transparent;
  border-left: 60px solid transparent;
}
.article.guidance-flow.last::after {
  content: none;
  border: none;
}
.article.guidance-flow h5::first-letter {
  font-size: 130%;
  font-style: italic;
  margin-right: 5px;
}




/*======================================================
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;
  }
}

/*======================================================
600px
======================================================*/
@media only screen and (max-width: 600px) {
  /*title*/
  #title {
    padding: 0 0 5px 0;
  }
  #title #title_outer {
    height: 70px;
    background: none;
  }
  #title h1 {
    width: 70vw;
    max-width: 300px;
    height: auto;
    aspect-ratio: 30 / 7;
    padding: 0;
  }
  /*toggle*/
  #toggle {
    right: 4px;
    top: 8px;
  }
  .active #toggle {
    background-color: #999;
  }
  /*ワイド画像*/
  .article.img-wide .image {
    height: auto;
  }
  /*-------------------------------------------------------
  画面下部固定のリンクパーツ
  -------------------------------------------------------*/
  #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-pink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 48px;
    height: 100%;
  }
  /* ボタンサイズ分の画面下部余白 */
  #wrap {
    margin-bottom: 50px;
  }
}

/*-------------------------------------------------------
recaptcha バッジ非表示
-------------------------------------------------------*/
.recaptcha_policy {
  padding: 0;
  margin: 20px 0 40px;
  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;
}
