@charset "UTF-8";
/*フォントサイズを調整*/
/*--変数設定--*/
/*横幅*/
/*ブレイクポイント設定*/
/*--mixin設定--*/
/*レスポンシブル*/
/*影*/
.normal-text {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 480px) {
  .normal-text {
    font-size: 0.9em;
  }
}

.img-shadow img {
  -webkit-filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
          filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
}

#blog-bread {
  font-size: 0.9em;
  font-family: 'Noto Sans JP', sans-serif;
}

h2 {
  font-family: 'Noto Sans JP', sans-serif !important;
  letter-spacing: 0.05em;
}

/*制作事例のページリスト*/
#blog-topics-list .ccm-block-page-list-pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal {
  width: calc(95% / 2);
  max-width: 400px;
  -webkit-transform: all 0.2s;
          transform: all 0.2s;
  background-color: #fff;
  -webkit-filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
          filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
  margin: 0 auto;
  margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
  #blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal {
    margin-bottom: 25px;
  }
}

#blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal a {
  text-decoration: none;
}

#blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal a .blog-topic .ccm-block-page-list-page-entry-thumbnail {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

#blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal a .blog-topic .ccm-block-page-list-page-entry-thumbnail img {
  width: 100%;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

#blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal a .blog-topic .box {
  position: relative;
  padding: 0.5em 1.2em;
  padding-bottom: 0.8em;
  background-color: #fff;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  #blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal a .blog-topic .box {
    padding: 0.5em 0.6em;
    padding-bottom: 0.8em;
  }
}

#blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal a .blog-topic .box .topic {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-right: 0.5em;
  padding: 0.2em 0em;
  color: #8b8b8b;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 480px) {
  #blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal a .blog-topic .box .topic {
    letter-spacing: 0.02em;
    font-size: 0.75em;
  }
}

#blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal a .blog-topic .box .ccm-block-page-list-page-entry-text {
  padding-left: 0;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #222222;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 480px) {
  #blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal a .blog-topic .box .ccm-block-page-list-page-entry-text {
    font-size: 0.9em;
  }
}

#blog-topics-list .ccm-block-page-list-pages .ccm-block-page-list-page-entry-horizontal a:hover .blog-topic .ccm-block-page-list-page-entry-thumbnail img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-filter: none !important;
          filter: none !important;
}

main {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), color-stop(27%, #eef3f8), color-stop(88%, #f9fdff));
  background-image: linear-gradient(0deg, white, #eef3f8 27%, #f9fdff 88%);
}

/*特徴*/
.feature_area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  .feature_area {
    display: block;
  }
}

.feature_area .feature {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: calc(95% / 2);
  min-height: 220px;
  -webkit-filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
          filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
  padding: 60px 20px 30px 20px;
  background-color: #fcfcfc;
  margin-bottom: 70px;
}

@media screen and (max-width: 769px) {
  .feature_area .feature {
    padding: 60px 10px 30px 10px;
  }
}

@media screen and (max-width: 480px) {
  .feature_area .feature {
    max-width: 100%;
    min-height: auto;
  }
}

.feature_area .feature .num {
  position: absolute;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  color: #fcfcfc;
  top: -45px;
  left: 50%;
  font-size: 3em;
  padding: 10px 20px;
  border-radius: 50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: linear-gradient(80deg, #0284A8, #02BEC4);
}

.feature_area .feature .title {
  text-align: left;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--main-color1);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 10px;
}

.feature_area .feature .explanation {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.06;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 480px) {
  .feature_area .feature .explanation {
    font-size: 0.9em;
  }
}

#web-blog-top {
  position: relative;
  width: 100%;
  height: 200px;
  background-image: url("/application/files/8516/8171/3315/web_blog_top4.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#web-blog-top .title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #f3f3f3;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
          filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
}

#web-blog-h h1 {
  font-size: 2.2em !important;
  font-weight: 700 !important;
  line-height: 1.4;
  letter-spacing: 0.04em;
  border-bottom: 1px dotted #222222;
  color: #222222;
  font-family: 'Noto Sans JP', sans-serif !important;
}

.blog-topics {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #8b8b8b;
  font-family: 'Noto Sans JP', sans-serif;
}

.web-link a {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 0.5em 1em;
  background-color: #2985cf;
  border-radius: 20px;
  text-decoration: none;
  color: #fafafa !important;
  font-family: 'Noto Sans JP', sans-serif;
}
/*# sourceMappingURL=webpage.css.map */