@charset "UTF-8";

/* ===================================
  Home
=================================== */

/* 詳細はこちら
----------------------------------- */
.to-details {
  position: relative;
  width: 94%;
  height: 64px;
  line-height: 64px;
  margin: 0 auto;
  display: block;
  border: solid 1px #43a8ca;
  background: rgba(67,168,202,0.1);
  border-radius: 10px;
  font-size: 1.25em; /* 20px */
  font-weight: bold;
  text-decoration: none;
  color: #43a8ca;
  text-align: center;
  display: block;
  transition: 0.3s;
}
.to-details::after {
  content: "→";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  font-size: 1.25em;
}
.to-details:hover {
  opacity: 0.7;
}

@media screen and (max-width: 480px) {
  .to-details {
    width: 100%;
  }
}

/* 防犯（監視）カメラ３つの必要性
----------------------------------- */
.necessity-unit {
  width: 94%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
}
.necessity {
  width: 33%;
  text-align: center;
}
.necessity dl {
  margin: 0;
}
.necessity dl dt {
  position: relative;
  z-index: 1;
  font-size: 2em; /* 32px */
  font-weight: bold;
  line-height: 1.0;
  padding: 1em 0 0.25em;
  background-color: #ffffff;
}
.necessity dl dd {
  position: relative;
  top: -60px;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
  border: solid 2px #000000;
  border-radius: 50%;
  margin: 0 auto;
}
.necessity dl dd span {
  font-size: 0.875em; /* 14px */
  line-height: 1.4;
  padding: 4.5em 2em 0;
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 480px) {
  .necessity-unit {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .necessity {
    width: 50%;
  }
  .necessity:last-of-type {
    margin: 0 0 60px;
  }
  .necessity dl dt {
    padding: 0.75em 0 0.25em;
  }
  .necessity dl dd {
    top: -50px;
    margin: 0 auto -50px;
  }
  .necessity dl dd span {
    padding: 4.25em 2em 0;
  }
}

@media screen and (max-width: 414px) {
  .necessity dl dt {
    font-size: 1.75em;
    padding: 0.5em 0 0.25em;
  }
  .necessity dl dd {
    top: -40px;
    width: 180px;
    height: 180px;
  }
  .necessity dl dd span {
    padding: 3.5em 2em 0;
  }
}

/* 防犯（監視）カメラ本体について
----------------------------------- */

/* 形状 */
.shape {
  width: 94%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
}
.shape > div {
  width: 30%;
}
.shape > div p {
  margin: 0;
}
.shape > div dl dt {
  font-size: 1.125em; /* 18px */
  font-weight: bold;
  text-align: center;
}
.shape > div dl dd {
  margin: 0;
  line-height: 1.5;
}

/* 分類 */
.bunrui {
  width: 94%;
  margin: 0 auto;
}
.bunrui > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 20px;
}
.bunrui > div p {
  width: 20%;
  margin: 0;
  padding: 0;
}
.bunrui > div p img {
  width: 100%;
  height: auto;
  border: solid 1px #dedede;
}
.bunrui > div dl {
  width: 77%;
  margin: 0;
}
.bunrui > div dl dt {
  font-size: 1.125em;
  font-weight: bold;
}
.bunrui > div dl dd {
  margin: 0;
  line-height: 1.5;
}

/* 種類 */
.camera-type {
  width: 94%;
  margin: 0 auto 20px;
}
.camera-type p {
  margin: 0;
}

/* データの保存方法 */
.method {
  width: 94%;
  margin: 0 auto;
}
.method > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 20px;
}
.method > div p {
  width: 20%;
  margin: 0;
  padding: 0;
}
.method > div p img {
  width: 100%;
  height: auto;
  border: solid 1px #cdcdcd;
}
.method > div dl {
  width: 77%;
  margin: 0;
}
.method > div dl dt {
  font-size: 1.125em; /* 18px */
  font-weight: bold;
}
.method > div dl dd {
  margin: 0;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {

  /* 形状 */
  .shape {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 40px;
    padding: 7.5px 0 0;
  }
  .shape > div {
    width: 50%;
    padding: 0 3%;
  }

  /* 分類 */
  .bunrui {
    width: 100%;
    margin: 0 0 40px;
    padding: 7.5px 0 0;
  }
  .bunrui > div {
    margin: 0 0 10px;
  }
  .bunrui > div p {
    width: 30%;
  }
  .bunrui > div dl {
    width: 67%;
  }

  /* 種類 */
  .camera-type {
    width: 100%;
    margin: 0 0 40px;
    padding: 7.5px 0 0;
  }

  /* データの保存方法 */
  .method {
    width: 100%;
    margin: 0;
    padding: 7.5px 0 0;
  }
  .method > div {
    margin: 0 0 10px;
  }
  .method > div p {
    width: 30%;
  }
  .method > div dl {
    width: 67%;
  }
}
@media screen and (max-width: 414px) {

}

/* 防犯（監視）カメラの使用目的例
----------------------------------- */
.purpose-unit {
  width: 94%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.purpose {
  width: 50%;
}
.purpose:first-of-type {
  border-right: dotted 1px #c1385f;
  padding: 0 5% 0 0;
}
.purpose:last-of-type {
  padding: 0 0 0 5%;
}
.purpose figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.purpose figure img {
  width: 50%;
}
.purpose figure figcaption {
  width: 40%;
  font-size: 1.25em; /* 20px */
  font-weight: bold;
  padding: 0 0 0 1em;
}
.purpose ul {
  width: 100%;
  margin: 0;
  padding: 0;
}
.purpose ul li {
  list-style-type: none;
  font-size: 1.125em; /* 18px */
  font-weight: bold;
  text-align: center;
  border: solid 1px #cdcdcd;
  padding: 5px 0;
  margin: 10px 0 0;
  border-radius: 10px;
}

@media screen and (max-width: 480px) {
  .purpose-unit {
    width: 100%;
  }
  .purpose figure {
    display: block;
    text-align: center;
  }
  .purpose figure img {
    width: 50%;
    margin: 0 auto -15px;
  }
  .purpose figure figcaption {
    width: 100%;
    font-size: 1.25em; /* 20px */
    padding: 0;
  }
}

/* 業種別の防犯（監視）カメラ活用例
----------------------------------- */
.industry-unit {
  width: 94%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.industry-unit dl {
  width: 50%;
  text-align: center;
}
.industry-unit dl:first-of-type {
  border-right: dotted 1px #c1385f;
  padding: 0 5% 0 0;
}
.industry-unit dl:last-of-type {
  padding: 0 0 0 5%;
}
.industry-unit dl dt span {
  font-size: 1.5em; /* 24px */
  font-weight: bold;
  line-height: 1.0;
  display: inline-block;
  padding: 0.25em 0.35em;
  border: solid 2px #cdcdcd;
  background-color: #eeeeee;
}
.industry-unit dl dd {
  margin: 0;
}

@media screen and (max-width: 480px) {
  .industry-unit {
    width: 100%;
    margin: 0 0 40px;
  }
  .industry-unit dl dt span {
    font-size: 1.35em;
  }
}

/* 防犯（監視）カメラの選び方
----------------------------------- */
.choose-unit {
  width: 94%;
  margin: 0 auto 60px;
}
.choose-intro {
  width: 50%;
  margin: 0 auto 30px;
}
.choose-intro ul {
  margin: 0;
  padding: 0;
}
.choose-intro ul li {
  list-style-type: none;
  font-weight: bold;
}
.choose-items {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.choose-items > div {
  width: 33%;
  text-align: center;
}
.choose-items > div img {
  width: 130px;
}
.choose-items > div dl {
  margin: 0;
}
.choose-items > div dl dt {
  position: relative;
  top: -15px;
  z-index: 1;
  font-size: 1.1875em; /* 19px */
  font-weight: bold;
  line-height: 1.0;
  padding: 1.5em 0 0.25em;
  background-color: #ffffff;
}
.choose-items > div dl dd {
  position: relative;
  top: -60px;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto -60px;
  border: solid 2px #000000;
  border-radius: 50%;
}
.choose-items > div dl dd span {
  font-size: 0.875em; /* 14px */
  line-height: 1.4;
  padding: 3.5em 1.5em 0;
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 480px) {
  .choose-unit {
    width: 100%;
    margin: 0 0 60px;
  }
  .choose-intro {
    width: 75%;
  }
  .choose-items {
    width: 100%;
  }
  .choose-items > div {
    width: 50%;
    margin: 0 0 20px;
  }
  .choose-items > div dl dt {
    padding: 1.5em 0 0.5em;
  }
}
@media screen and (max-width: 414px) {
  .choose-items > div dl dd {
    width: 170px;
    height: 170px;
  }
}

/* 記事リンク
----------------------------------- */
.article-link {
  margin: 100px 0 0;
}
.ctg-name {
  /*
  background-color: #f9f7f8;
  border-top: 1px dotted #c1385f;
  */
  font-weight: bold;
  padding: 0 0 0.25em 0.25em;
  border-bottom: 1px dotted #c1385f;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {}

/*834px以下*/
@media screen and (max-width: 834px) {}

/*480px以下*/
@media screen and (max-width: 480px) {}