@charset "utf-8";
/* ============================================================
 CLIENT
============================================================ */
/* タブ選択 */
.tab-wrap {
  border: 1px solid #DEDEDE;
  border-radius: 12px;
  overflow: hidden;
}
.tab-wrap .tab-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-wrap .tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.7em;
  background: #DEDEDE;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
.tab-wrap .tab.is-active {
  background: #fff;
  color: #333;
  position: relative;
}
.tab-wrap .tab.is-active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 6%;
  width: 88%;
  height: 3px;
  background: #004588;
}
.tab-wrap .tab-cont {
  display: none;
}
.tab-wrap .tab-cont.is-show {
  display: block;
  padding: 30px 5%;
}
.tab-wrap .tab-cont.is-show > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: -10px;
  margin-left: -2%;
}
.tab-wrap .tab-cont.is-show > ul > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 10px;
  margin-left: 2%;
}
.tab-wrap .note {
  margin-top: 10px;
}
.tab-wrap .btn-wrap {
  margin-top: 20px;
}
.tab-wrap .btn {
  max-width: 380px;
  padding: 0.9em 0.3em;
}
.tab-wrap .client-type {
  margin-top: 10px;
}
.tab-wrap .type-select {
  max-width: 100%;
  padding: 1.4em 0.3em 1.4em 2em;
  border: 1px solid #DEDEDE;
  position: relative;
}
.tab-wrap .type-select:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.tab-wrap .type-select:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 10%;
  width: 65px;
  height: 74px;
}
.tab-wrap .marketer:before {
  background: url(/images/top/solution_marketer.svg) no-repeat center center;
  background-size: contain;
}
.tab-wrap .agency:before {
  background: url(/images/top/solution_agency.svg) no-repeat center center;
  background-size: contain;
}
.tab-wrap .clear {
  width: initial;
  padding: 0.5em 2em;
  font-size: 1.4rem;
  border: 2px solid #DEDEDE;
  color: #999;
  letter-spacing: 0.1em;
}
.tab-wrap .tab-cont.is-show.purpose > ul {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tab-wrap .tab-cont.is-show.purpose > ul > li {
  width: calc((100% / 3) - 2%);
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
}
.tab-wrap .checkbox-for-label {
  display: none;
}
.tab-wrap .select-item {
  width: 100%;
  display: inline-block;
  margin-right: 3%;
  padding: 0.5em 0;
  border: 1px solid #DEDEDE;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.tab-wrap .checkbox-for-label:checked + .select-item,
.tab-wrap .type-select.active {
  background: #004588;
  color: #fff;
}
.tab-wrap .checkbox-for-label:checked + .select-item {
  border: 1px solid #004588;
}
.tab-wrap .type-select.active {
  border: 2px solid #004588;
}
@media screen and (max-width: 767px) {
  .tab-wrap .tab {
    padding: 0.5em;
    font-size: 1.4rem;
  }
  .tab-wrap .tab.is-active:after {
    height: 2px;
  }
  .tab-wrap .tab-cont {
    display: none;
  }
  .tab-wrap .tab-cont.is-show {
    display: block;
    padding: 20px 5%;
  }
  .tab-wrap .tab-cont.is-show > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: -10px;
    margin-left: -2%;
  }
  .tab-wrap .tab-cont.is-show > ul > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 10px;
    margin-left: 2%;
  }
  .tab-wrap .note {
    margin-top: 0;
  }
  .tab-wrap .btn-wrap {
    margin-top: 20px;
  }
  .tab-wrap .client-type.is-show {
    margin-top: 0;
  }
  .tab-wrap .client-type.is-show > ul {
    display: block;
    margin-left: 0;
  }
  .tab-wrap .client-type.is-show > ul > li {
    margin-top: 20px;
    margin-left: 0;
  }
  .tab-wrap .type-select {
    width: 100%;
    padding: 1.4em 0.3em 1.4em 2em;
  }
  .tab-wrap .type-select:before {
    left: 10%;
    width: 55px;
    height: 60px;
  }
  .tab-wrap .clear {
    padding: 0.6em 2em;
    font-size: 1.3rem;
  }
  .tab-wrap .tab-cont.is-show.purpose > ul > li {
    width: calc((100% / 2) - 2%);
  }
  .tab-wrap .tab-cont.is-show.purpose .btn {
    max-width: 380px;
    padding: 0.9em 0.3em;
  }
  .tab-wrap .select-item {
    padding: 0.5em 0;
    font-size: 1.2rem;
  }
}
/* 記事 */
article .article-head {
  margin-top: 60px;
  margin-bottom: 60px;
}
article .article-head .company-name {
  margin-bottom: 15px;
  font-size: 2.4rem;
  line-height: 1.5;
}
article .article-head .client-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
article .article-head .client-data > dt {
  width: 55%;
}
article .article-head .client-data > dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 5%;
}
article .article-head .purpose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
article .article-head .purpose:first-of-type {
  margin-top: 10px;
}
article .article-head .purpose:last-of-type {
  margin-bottom: 24px;
}
article .article-head .purpose > dt p {
  width: 6.2em;
  padding: 0.5em 0;
  background: #004588;
  border-radius: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}
article .article-head .purpose > dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1em;
  line-height: 1.5;
}
article .article-head .position,
article .article-head .staff-name {
  line-height: 1.6;
  font-weight: 500;
}
article .article-head .position {
  margin-top: 10px;
}
article .article-head .staff-name {
  margin-top: 5px;
}
article .article-main .cont-ttl {
  margin-top: 120px;
}
article .article-main .cont-ttl + h2 {
  margin-top: 60px;
}
article .point {
  margin: 60px 0;
  padding: 50px;
  border-radius: 12px;
  background: #F9F9F9;
}
article .point ul {
  margin-top: 40px;
  padding: 40px 40px 0 40px;
  background: #fff;
  border-radius: 12px;
}
article .point p {
  margin-top: 0;
}
article .point dd {
  padding: 15px 10px 40px 10px;
  line-height: 1.8;
}
article .point-ttl {
  margin-bottom: 10px;
  padding-left: 50px;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
}
article .point-ttl:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 36px;
  background: url(/images/client/icon_point.svg) no-repeat center center;
  background-size: contain;
}
article .point-sub-ttl {
  padding-left: 10px;
  position: relative;
}
article .point-sub-ttl span {
  display: inline-block;
  width: 7.8em;
  padding: 0.4em 0;
  font-weight: 500;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  background: #004588;
  position: relative;
  z-index: 1;
  text-align: center;
  white-space: nowrap;
}
article .point-sub-ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #DEDEDE;
  z-index: 0;
}
article .point-lead-ttl {
  margin-bottom: 10px;
  font-weight: 500;
  color: #004588;
}
article .article-foot .client-data {
  margin-top: 80px;
  padding: 50px;
  border-radius: 12px;
  background: #F9F9F9;
  position: relative;
}
article .article-foot .client-data > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
article .article-foot .client-data > dl > dt {
  width: 37.5%;
}
article .article-foot .client-data > dl > dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 6%;
}
article .article-foot .client-data-ttl {
  position: absolute;
  top: -0.5em;
  right: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
article .article-foot .company-name {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
article .article-foot .company-name > dt {
  width: 70px;
}
article .article-foot .company-name > dd {
  margin-left: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
article .article-foot .business-type {
  margin: 20px 0 15px 0;
  line-height: 1.6;
}
article .article-foot .business-type span {
  color: #333;
}
article .article-foot a {
  color: #004588;
}
article .cs-comment {
  margin-top: 60px;
  padding: 30px;
  background: #F4F7FA;
  border-radius: 12px;
  position: relative;
}
article .cs-comment > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
article .cs-comment > dl > dt {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  overflow: hidden;
}
article .cs-comment > dl > dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}
article .cs-comment-ttl {
  position: absolute;
  top: -1.2em;
}
article .cs-comment-ttl p {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #707070;
  font-weight: 500;
  line-height: 1;
}
article .cs-comment-ttl p:before {
  content: "";
  position: absolute;
  left: 55px;
  bottom: -10px;
  border-top: 10px solid #F4F7FA;
  border-left: 8px solid transparent;
  z-index: 1;
}
article .cs-comment-ttl p:after {
  content: "";
  position: absolute;
  left: 54px;
  bottom: -10px;
  border-top: 10px solid #707070;
  border-left: 8px solid transparent;
  z-index: 0;
}
article .cs-comment-sub-ttl {
  margin: 10px 0;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  article .article-head {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DEDEDE;
  }
  article .article-head .company-name {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  article .article-head .client-data {
    display: block;
  }
  article .article-head .client-data > dt {
    width: 100%;
  }
  article .article-head .client-data > dd {
    margin-top: 20px;
    margin-left: 0;
  }
  article .article-head .purpose {
    display: block;
  }
  article .article-head .purpose > dd {
    margin: 0.5em 1em 0 1em;
  }
  article .article-main .cont-ttl {
    margin-top: 60px;
  }
  article .article-main .cont-ttl + h2 {
    margin-top: 30px;
  }
  article .point {
    margin: 30px 0;
    padding: 20px;
  }
  article .point ul {
    margin-top: 20px;
    padding: 20px 20px 0 20px;
  }
  article .point p {
    margin-top: 0;
  }
  article .point dd {
    padding: 10px 0 20px 0;
  }
  article .point-ttl {
    padding-left: 30px;
    font-size: 1.6rem;
  }
  article .point-ttl:after {
    top: 2px;
    width: 28px;
    height: 26px;
  }
  article .point-sub-ttl {
    padding-left: 5px;
  }
  article .point-sub-ttl span {
    font-size: 1.5rem;
  }
  article .article-foot .client-data {
    margin-top: 70px;
    padding: 20px;
    border-radius: 12px;
  }
  article .article-foot .client-data > dl {
    display: block;
  }
  article .article-foot .client-data > dl > dt {
    width: 100%;
  }
  article .article-foot .client-data > dl > dd {
    margin-top: 15px;
    margin-left: 0;
  }
  article .article-foot .client-data-ttl {
    top: -0.8em;
    right: 10px;
    padding-bottom: 5px;
    font-size: 1.8rem;
  }
  article .article-foot .company-name {
    margin-bottom: 10px;
  }
  article .article-foot .company-name > dt {
    width: 50px;
  }
  article .article-foot .company-name > dd {
    margin-left: 10px;
    font-size: 1.4rem;
  }
  article .article-foot .business-type {
    margin: 15px 0 10px 0;
  }
  article .cs-comment {
    margin-top: 40px;
    padding: 30px 20px 20px 20px;
    text-align: center;
  }
  article .cs-comment > dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  article .cs-comment > dl > dt,
  article .cs-comment > dl > dd {
    text-align: left;
  }
  article .cs-comment > dl > dt {
    width: 100px;
    height: 100px;
  }
  article .cs-comment > dl > dd {
    margin-top: 10px;
    margin-left: 0;
  }
  article .cs-comment-ttl {
    width: 100%;
    display: inline-block;
    left: 0;
  }
  article .cs-comment-ttl p:before {
    left: calc(50% - 5px);
  }
  article .cs-comment-ttl p:after {
    left: calc(50% - 6px);
  }
}
