@charset “Shift_JIS”;
/* CSS Document */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}
html {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
}
body {
  font-size: 1.6em;
  line-height: 1.6;
  color: #333;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
a {
  display: block;
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  padding-left: 0;
}
/*-------------------------
　　ヘッダー
---------------------------*/
.header-upper {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.link-nifty {
  font-size: 1.3rem;
  text-decoration: underline;
}
.link-nifty:hover {
  text-decoration: none;
}
/*-------------------------
　　MV
---------------------------*/
h1 {
  font-size: 3.0rem;
  font-weight: bold;
}
.mv-area {
  background: url("/navi/category/images/mv-bg.png");
  background-color: #b2f97a;
  padding: 30px 0;
  margin-bottom: 30px;
  text-align: center;
}
/*-------------------------
　　ボタン
---------------------------*/
.btn {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.btn-border {
  font-weight: bold;
  display: inline-block;
  padding: 10px 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  color: #f27f46;
  border-radius: 6px;
  border: 2px solid #f27f46;
  background: #fff;
}
.btn-border:hover {
  color: #fff;
  background: #f27f46;
}
.arrow-01 {
  position: relative;
  display: block;
}
.arrow-01:after {
  content: "";
  border-top: 2px solid #f27f46;
  border-right: 2px solid #f27f46;
  margin-top: -3.5px;
  height: 7px;
  width: 7px;
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: rotate(135deg);
  transform: rotate(45deg);
}
.arrow-01:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;

}
/*-------------------------
　　メインコンテンツ
---------------------------*/
.inner {
  max-width: 1000px;
  margin: 0 auto;
}
h2 {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: dotted 3px #aaaaaa;
  padding-bottom: 20px;
  margin: 30px 0 20px;
}
.service-ttl-provider:before {
  content: url("/navi/category/images/ic-provider.png");
  position: relative;
  top: 24px;
  left: 0;
  padding-right: 10px;
}
.service-ttl-security:before {
  content: url("/navi/category/images/ic-security.png");
  position: relative;
  top: 24px;
  left: 0;
  padding-right: 10px;
}
.service-ttl-media:before {
  content: url("/navi/category/images/ic-media.png");
  position: relative;
  top: 24px;
  left: 0;
  padding-right: 10px;
}
.service-ttl-corporation:before {
  content: url("/navi/category/images/ic-corporation.png");
  position: relative;
  top: 24px;
  left: 0;
  padding-right: 10px;
}
.service-ttl-life:before {
  content: url("/navi/category/images/ic-life.png");
  position: relative;
  top: 24px;
  left: 0;
  padding-right: 10px;
}
.service-ttl-community:before {
  content: url("/navi/category/images/ic-community.png");
  position: relative;
  top: 24px;
  left: 0;
  padding-right: 10px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
}
.service-list li {
  width: 33.3333%;
  padding: 10px 0 0 24px;
}
/*-----リンクアイコン-----*/
.arrow-02 {
  position: relative;
  display: flex;
  align-items: center;
}

.arrow-02 a {
  display: inline-flex;
  align-items: center;
}

li:hover {
  color: #f27f46;
  text-decoration: underline;
}
.arrow-02:hover::before {
  background: #f27f46;
}

.arrow-02 .icon {
  flex: 0 0 auto;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #333;
  border-radius: 2px;
  margin-right: 8px;
  position: relative;
}
.arrow-02 .icon::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  top: 50%;
  left: 4px;
  transform: translateY(-50%) rotate(45deg);
}

/*-------------------------
　　フッター
---------------------------*/
footer {
  background-color: #efefef;
  margin-top: 120px;
}
.footer-lower {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.footer-notes ul {
  font-size: 1.3rem;
  display: flex;
}
.footer-notes li {
  margin-left: 30px;
  text-decoration: underline;
}
.footer-notes li:hover {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
.copyright {
  background-color: #515151;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 95%;
  }
  .service-list {
    display: block;
    margin: 0 20px;
  }
  .service-list li {
    width: 100%;
  }
  .btn-gotop {
    display: none;
  }
  .footer-lower, .footer-notes ul {
    display: block;
    text-align: center;
  }
  .footer-notes li {
    margin: 0 0 8px 0;
  }
}