@import url("fonts.css");
@import url("animate.css");
@import url("materialdesignicons.css");
@-webkit-keyframes bgScale {
  0% {
    -webkit-transform: scale(1.4) rotate(0.01deg);
            transform: scale(1.4) rotate(0.01deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0.01deg);
            transform: scale(1) rotate(0.01deg);
  }
}
@keyframes bgScale {
  0% {
    -webkit-transform: scale(1.4) rotate(0.01deg);
            transform: scale(1.4) rotate(0.01deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0.01deg);
            transform: scale(1) rotate(0.01deg);
  }
}

@-webkit-keyframes widthScale {
  0% {
    width: 0;
  }
  100% {
    width: 800px;
  }
}

@keyframes widthScale {
  0% {
    width: 0;
  }
  100% {
    width: 800px;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

:root {
  --font: 'noto-sans-r', sans-serif;
  --font-l: 'noto-sans-l', sans-serif;
  --font-m: 'noto-sans-m', sans-serif;
  --font-b: 'noto-sans-b', sans-serif;
  --font-i: 'Material Design Icons';
  /* color */
  --c-blue: #2a4491;
  --c-light-blue: #3f569c;
  --c-light: #ffffff;
  --c-dark: #222222;
  --c-gray: #eeeeee;
  --c-red: #d50000;
  --c-green: #258d8c;
  --c-line: #cccccc;
  --c-bg: #f4f4f4;
}

button {
  border: 0;
  background: transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

button:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.consulting_area {
  width: 100%;
  position: relative;
}

.consulting_area > p, .consulting_area a, .consulting_area li, .consulting_area button, .consulting_area div {
  font-family: var(--font);
}

.consulting_area a:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.consulting_area button {
  cursor: pointer;
}

.consulting_area button:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.inner {
  width: 1580px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.location {
  position: relative;
  width: 1580px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}



.location > ul {
  margin-top: -60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.location > ul li {
  color: var(--c-dark);
  height: 60px;
  line-height: 60px;
  position: relative;
  z-index: 2;
  min-width: 230px;
  max-width: 100%;
  background-color: var(--c-light);
}

.location > ul li a {
  display: block;
  font-size: 18px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 60px;
}

.location > ul li.home {
  text-align: center;
  padding: 0;
  position: relative;
  min-width: 75px;
}

.location > ul li.home:after {
  content: '';
  display: block;
  position: absolute;
  top: 25px;
  right: 0;
  width: 1px;
  height: 15px;
  border-right: 1px solid var(--c-line);
}

.location > ul li.home > a {
  display: inline-block;
  width: 75px;
  height: 60px;
  text-align: center;
  position: relative;
  padding: 0;
}

.location > ul li.home > a i {
  color: var(--c-blue);
  font-size: 22px;
  position: relative;
  top: -2px;
}

.location > ul li:not(.home):after {
  content: "\F0140";
  position: absolute;
  right: 25px;
  top: -1px;
  font-family: 'Material Design Icons';
  color: var(--c-dark);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 22px;
}

.location > ul li.on {
  background-color: #fff;
}

.location > ul li.on:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.location > ul li ul {
  display: none;
  position: absolute;
  width: auto;
  top: 60px;
  background: #fff;
  white-space: nowrap;
  z-index: 100;
  min-width: 230px;
  max-width: 100%;
  padding-top: 30px;
  -webkit-box-shadow: 5px 10px 10px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.location > ul li ul > li {
  display: block;
  width: inherit;
  height: 20px;
  line-height: 20px;
  margin-bottom: 20px;
}

.location > ul li ul > li:after {
  display: none;
}

.location > ul li ul > li > a {
  display: block;
  color: #777;
  font-size: 16px;
  height: inherit;
  line-height: 100%;
  padding-left: 30px;
  padding-right: 60px;
}

.location > ul li ul > li.on a {
  color: var(--c-dark);
}

.visual_area {
  position: relative;
}

.visual {
  width: 100%;
  height: 500px;
  position: relative;
}

.visual.intro {
  background: url("../../resources/img/common/visual_intro.jpg") center center no-repeat;
}

.visual.strategy {
  background: url("../../resources/img/common/visual_strategy.jpg") center center no-repeat;
}

.visual.hr {
  background: url("../../resources/img/common/visual_hr.jpg") center center no-repeat;
}

.visual.esg {
  background: url("../../resources/img/common/visual_esg.jpg") center center no-repeat;
}

.visual.cx {
  background: url("../../resources/img/common/visual_cx.jpg") center center no-repeat;
}

.visual.project {
  background: url("../../resources/img/common/visual_project.jpg") center center no-repeat;
}

.visual.smart {
  background: url("../../resources/img/common/visual_smart.jpg") center center no-repeat;
}

.visual.energy {
  background: url("../../resources/img/common/visual_energy.jpg") center center no-repeat;
}

.visual.university {
  background: url("../../resources/img/common/visual_university.jpg") center center no-repeat;
}

.visual.data {
  background: url("../../resources/img/common/visual_data.jpg") center center no-repeat;
}

.visual.healthcare {
  background: url("../../resources/img/common/visual_healthcare.jpg") center center no-repeat;
}

.visual.government {
  background: url("../../resources/img/common/visual_government.jpg") center center no-repeat;
}

.visual.innovation {
  background: url("../../resources/img/common/visual_innovation.jpg") center center no-repeat;
}

.tab_area {
  margin: 90px 0;
  height: 100%;
}

.tab_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.tab_area ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 525px;
          flex: 0 0 525px;
  margin-left: -1px;
  border: 1px solid var(--c-line);
}

.tab_area ul li:nth-child(n+4):nth-child(-n+9) {
  margin-top: -1px;
}

.tab_area ul li a {
  display: block;
  font-size: 28px;
  color: var(--c-dark);
  font-family: var(--font-m);
  width: 100%;
  height: 98px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.tab_area ul li a span {
  display: block;
  font-size: 18px;
  margin-top: -25px;
  width: 100%;
  font-family: var(--font);
}

.tab_area ul li.on, .tab_area ul li:hover {
  border: 1px solid var(--c-blue);
}

.tab_area ul li.on a, .tab_area ul li:hover a {
  color: var(--c-light);
  background-color: var(--c-blue);
}

/* 22.09.21 */
@media all and (max-width: 1600px) {
  .tab_area {
    width: calc(100% - 60px);
    margin: 0 auto 90px;
  }
  .tab_area ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.24%;
            flex: 0 0 33.24%;
  }
}

@media all and (max-width: 1200px) {
  .tab_area ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.1%;
            flex: 0 0 33.1%;
  }
  .tab_area ul li a {
    font-size: 24px;
  }
  .tab_area ul li a span {
    font-size: 15px;
  }
}

/* // 22.09.21 */
body .text_box {
  position: absolute;
  top: 175px;
  left: 0px;
  background-color: rgba(42, 68, 145, 0.5);
  padding: 45px 40px;
  min-width: 420px;
  visibility: hidden;
  opacity: 0;
  text-align: left;
}

body .text_box p {
  color: var(--c-light);
}

body .text_box p:nth-child(1) {
  font-family: var(--font-m);
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.05em;
  margin-bottom: 30px;
}

body .text_box p:nth-child(2) {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.05em;
}

body .text_box.view {
  padding: 20px 40px;
}

body .text_box.view p {
  line-height: 100%;
}

body .text_box.view p:nth-child(1) {
  font-size: 24px;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  height: 40px;
}

body .text_box.view p:nth-child(1):after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--c-light);
}

body .text_box.view p:nth-child(2) {
  font-family: var(--font-m);
  font-size: 48px;
  letter-spacing: -0.05em;
  margin-bottom: 25px;
}

body .text_box.view p:nth-child(3) {
  font-family: var(--font);
  font-size: 24px;
  letter-spacing: -0.05em;
}

body.load .text_box {
  visibility: visible;
  opacity: 1;
  -webkit-animation: fadeInLeftBig 1.0s 0.3s both;
          animation: fadeInLeftBig 1.0s 0.3s both;
}

body.load .text_box p:nth-of-type(1) {
  -webkit-animation: fadeInLeftBig 1.0s 0.3s;
          animation: fadeInLeftBig 1.0s 0.3s;
}

body.load .text_box p:nth-of-type(2) {
  -webkit-animation: fadeInLeftBig 1.2s 0.3s;
          animation: fadeInLeftBig 1.2s 0.3s;
}

body.load .text_box p:nth-of-type(3) {
  -webkit-animation: fadeInLeftBig 1.3s 0.3s;
          animation: fadeInLeftBig 1.3s 0.3s;
}

.contents_area {
  width: 100%;
  padding: 100px 0;
}

.contents_area.view {
  padding: 100px 0 0 0;
}

.contents_area.view .a-c {
  margin: 80px auto 100px;
}

.contents_area.view .a-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 100px;
}

.contents_area.view .a-r p {
  font-size: 24px;
  color: var(--c-dark);
  line-height: 48px;
  text-indent: -0.05em;
  font-family: var(--font);
  text-align: left;
  width: 880px;
}

.contents_area p.h1 {
  font-size: 35px;
  line-height: 64px;
  letter-spacing: -0.05em;
  color: var(--c-dark);
  font-family: var(--font-b);
  margin-bottom: 40px;
  -webkit-animation: fadeInDown 1.0s 0.3s both;
          animation: fadeInDown 1.0s 0.3s both;
}

.contents_area p.h2 {
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: var(--c-dark);
  font-family: var(--font-m);
  margin: 80px 0;
  -webkit-animation: fadeInDown 1.0s 0.3s both;
          animation: fadeInDown 1.0s 0.3s both;
}

.contents_area p.h3 {
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: var(--c-dark);
  font-family: var(--font-m);
  margin-bottom: 0px;
}

.contents_area .info_area {
  -webkit-animation: fadeInDown 1.0s 0.3s both;
          animation: fadeInDown 1.0s 0.3s both;
}

.contents_area .info_area p {
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -0.05em;
  color: var(--c-dark);
  text-align: left;
  margin: 0 auto 60px;
  width: 95%;
}

.contents_area .info_area .text_more {
  display: none;
}

.contents_area .info_area .btn_text_more {
  width: 100%;
  border-top: 2px dashed #dedede;
  position: relative;
  height: 25px;
}

.contents_area .info_area .btn_text_more > * {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contents_area .info_area .btn_text_more button {
  display: block;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  border: 1px solid #dedede;
  position: relative;
}

.contents_area .info_area .btn_text_more button:after {
  content: "\F0374";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: 'Material Design Icons';
  color: var(--c-dark);
}

.contents_area .info_area .btn_text_more button:hover:after {
  content: "\F0415";
}

.contents_area .info_area .btn_text_more button.on:after {
  content: "\F0415";
}

.contents_area .info_area .btn_text_more button.on:hover:after {
  content: "\F0374";
}

.contents_area .info_area_sub p {
  font-size: 20px;
  line-height: 40px;
  letter-spacing: -0.05em;
  color: var(--c-dark);
  margin-bottom: 60px;
  text-align: left;
}

.contents_area .service_area {
  width: 1580px;
  max-width: 100%;
  margin: 0 auto;
}

.contents_area .service_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contents_area .service_area ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  position: relative;
  height: 247px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid var(--c-line);
  margin-right: -1px;
  margin-bottom: -1px;
}

.contents_area .service_area ul li a {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}

.contents_area .service_area ul li a > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contents_area .service_area ul li a div:nth-child(1) {
  opacity: 1;
  visibility: visible;
}

.contents_area .service_area ul li a div:nth-child(1) i {
  display: block;
  height: 80px;
  margin: 60px 0 30px 0;
}

.contents_area .service_area ul li a div:nth-child(1) p {
  font-size: 24px;
  color: var(--c-dark);
  font-family: var(--font-m);
}

.contents_area .service_area ul li a div:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--c-light-blue);
}

.contents_area .service_area ul li a div:nth-child(2) p {
  color: var(--c-light);
}

.contents_area .service_area ul li a div:nth-child(2) p:nth-child(1) {
  font-size: 24px;
  letter-spacing: -0.05em;
  height: 38px;
  position: relative;
  display: inline-block;
  margin: 35px 0 30px;
}

.contents_area .service_area ul li a div:nth-child(2) p:nth-child(1):after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--c-light);
  height: 2px;
  width: 100%;
}

.contents_area .service_area ul li a div:nth-child(2) p:nth-child(2) {
  font-size: 18px;
  letter-spacing: -0.05em;
  line-height: 28px;
  margin-bottom: 20px;
}

.contents_area .service_area ul li a div:nth-child(2) button {
  border-radius: 30px;
  width: 128px;
  height: 38px;
  font-size: 16px;
  letter-spacing: -0.05em;
  background-color: transparent;
  border: 1px solid var(--c-light);
  color: var(--c-light);
}

.contents_area .service_area ul li a div:nth-child(2) button:hover {
  background-color: var(--c-light);
  color: var(--c-light-blue);
}

.contents_area .service_area ul li:hover a div:nth-child(1) {
  opacity: 0;
  visibility: hidden;
}

.contents_area .service_area ul li:hover a div:nth-child(2) {
  opacity: 1;
  visibility: visible;
}

.contents_area .article_area article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 100px;
}

.contents_area .article_area article .img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 790px;
  background-color: #ddd;
  height: 420px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

.contents_area .article_area article .img:hover {
  background-color: var(--c-blue);
}

.contents_area .article_area article .img:hover img {
  opacity: 0;
}

.contents_area .article_area article .img:hover p:first-of-type {
  opacity: 0;
}

.contents_area .article_area article .img:hover p:first-of-type i {
  opacity: 0;
  visibility: hidden;
  width: 0;
  margin-left: 0;
}

.contents_area .article_area article .img:hover p:nth-of-type(2) {
  opacity: 1;
  visibility: visible;
  height: auto;
  font-size: 18px;
  width: 80%;
  text-align: left;
}

.contents_area .article_area article .img:hover button {
  margin-top: 120px;
}

.contents_area .article_area article .img:hover button:hover {
  background: var(--c-light);
  border: 2px solid var(--c-light);
  color: var(--c-blue);
}

.contents_area .article_area article .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contents_area .article_area article .img p {
  position: relative;
  letter-spacing: -0.05em;
  color: var(--c-light);
  line-height: 1.5;
  font-family: var(--font);
  width: 100%;
  font-size: 16px;
  word-break: keep-all;
}

.contents_area .article_area article .img p:first-of-type {
  font-size: 42px;
  font-family: var(--font-b);
  margin-bottom: 10px;
  line-height: 1.2;
}

.contents_area .article_area article .img p:first-of-type i {
  display: inline-block;
  vertical-align: middle;
  color: var(--c-light);
  font-size: 28px;
  margin-left: 10px;
  width: auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contents_area .article_area article .img p:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.contents_area .article_area article .img p span {
  display: block;
  width: 100%;
  font-size: 22px;
  font-family: var(--font);
  letter-spacing: -0.025em;
}

.contents_area .article_area article .img button {
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  width: 330px;
  height: 50px;
  line-height: 48px;
  border-radius: 25px;
  background: transparent;
  border: 2px solid var(--c-light);
  font-size: 18px;
  color: var(--c-light);
}

.contents_area .article_area article .img button:hover {
  background: var(--c-blue);
  border: 2px solid var(--c-blue);
}

.contents_area .article_area article .text {
  width: 700px;
}

.contents_area .article_area article .text p {
  font-size: 16px;
  letter-spacing: -0.05em;
  color: var(--c-dark);
  line-height: 28px;
  text-align: left;
}

.contents_area .article_area .bracket {
  position: relative;
  margin: 0 auto;
  width: 700px;
  height: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contents_area .article_area .bracket:before, .contents_area .article_area .bracket:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  height: 390px;
  width: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 15px solid var(--c-gray);
}

.contents_area .article_area .bracket:before {
  left: 0px;
  border-right: 0;
}

.contents_area .article_area .bracket:after {
  right: 0px;
  border-left: 0;
}

.contents_area .article_area .bracket ul {
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contents_area .article_area .bracket ul + ul {
  margin-left: -25px;
}

.contents_area .article_area .bracket ul li {
  display: block;
  width: 100%;
  font-size: 19px;
  line-height: 120%;
  letter-spacing: -0.05em;
  color: var(--c-dark);
  text-align: left;
  position: relative;
  padding-left: 20px;
}

.contents_area .article_area .bracket ul li:not(:last-child) {
  margin-bottom: 10px;
}

.contents_area .article_area .bracket ul li:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  width: 5px;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--c-blue);
}

.contents_area .article_area .bracket ul li.strong {
  padding-left: 0;
  font-family: var(--font-b);
  margin: 10px 0 5px -20px;
}

.contents_area .article_area .bracket ul li.strong:before {
  display: none;
}

.contents_area .article_area .bracket.at-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 120px;
}

.contents_area .article_area .bracket.at-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 50px;
}

.contents_area .article_area .link_area {
  margin-top: -80px;
  text-align: left;
  margin-bottom: 100px;
}

.contents_area .article_area .link_area a {
  color: var(--c-blue);
  font-size: 16px;
}

.contents_area .article_area .link_area i {
  font-size: 22px;
  display: inline-block;
  margin-left: 5px;
  color: var(--c-blue);
}

.contents_area .banner_area {
  background: url(../img/contents/biz_banner.jpg) no-repeat center center;
  width: 100%;
  height: 300px;
  background-size: auto 300px;
  position: relative;
}

.contents_area .banner_area button {
  width: 200px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid var(--c-light);
  font-size: 18px;
  color: var(--c-light);
  position: absolute;
  top: 200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contents_area .banner_area button:hover {
  background-color: var(--c-light);
  color: var(--c-dark);
}

.contents_area .people_area {
  background-color: var(--c-bg);
  padding: 60px 0;
  width: 100%;
  text-align: center;
}

.contents_area .people_area p.h2 {
  margin: 60px 0 30px 0;
}

.contents_area .people_area > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 1650px;
  max-width: 100%;
  margin: 0 auto;
}

.contents_area .people_area > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  height: 500px;
  padding: 0 20px;
  margin: 30px 35px;
  background-color: var(--c-light);
  border-top: 5px solid #ddd;
}

.contents_area .people_area > ul > li div {
  height: 310px;
}

.contents_area .people_area > ul > li div .img {
  background-color: var(--c-bg);
  margin: 30px auto 10px;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 100%;
}

.contents_area .people_area > ul > li div .img img {
  width: 150px;
  height: 150px;
}

.contents_area .people_area > ul > li div p {
  color: var(--c-dark);
  line-height: 100%;
  letter-spacing: -0.05em;
  position: relative;
}

.contents_area .people_area > ul > li div p:nth-child(2) {
  font-size: 22px;
  margin-bottom: 5px;
}

.contents_area .people_area > ul > li div p:nth-child(3) {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.contents_area .people_area > ul > li div p:nth-child(4), .contents_area .people_area > ul > li div p:nth-child(5) {
  font-size: 15px;
  color: #000;
  margin-bottom: 10px;
}

.contents_area .people_area > ul > li div i {
  display: inline-block;
  color: var(--c-blue);
  font-size: 18px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.contents_area .people_area > ul > li div i.mdi-phone {
  top: -1px;
  font-size: 15px;
}

.contents_area .people_area > ul > li div button {
  border: 2px solid var(--c-blue);
  background-color: var(--c-light);
  width: 100px;
  height: 30px;
  border-radius: 15px;
  font-size: 14px;
  color: var(--c-blue);
}

.contents_area .people_area > ul > li div button:hover {
  border: 2px solid var(--c-blue);
  background-color: var(--c-blue);
  color: var(--c-light);
}

.contents_area .people_area > ul > li ul {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px dashed #dedede;
}

.contents_area .people_area > ul > li ul li {
  position: relative;
  line-height: 140%;
  color: var(--c-dark);
  display: block;
  font-size: 15px;
  margin: 0 auto 5px;
  width: 90%;
  text-align: left;
}

.contents_area .service_link_area {
  width: 100%;
  margin-bottom: 100px;
}

.contents_area .service_link_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contents_area .service_link_area ul li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 158px;
          flex: 0 0 158px;
}

.contents_area .service_link_area ul li a {
  display: inline-block;
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 100%;
}

.contents_area .service_link_area ul li a i {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 98px;
  height: 98px;
  border: 1px solid var(--c-line);
  border-radius: 100%;
}

.contents_area .service_link_area ul li a:hover i {
  color: var(--c-light);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 1px solid var(--c-blue);
}

.contents_area .service_link_area ul li p {
  font-size: 20px;
  color: var(--c-dark);
  font-family: var(--font-m);
  margin-top: 15px;
}

.contents_area .service_link_area ul li.ico_strategy a i {
  background: var(--c-light) url(../img/common/ico_strategy.png) no-repeat center center;
  background-size: 40px auto;
}

.contents_area .service_link_area ul li.ico_strategy a:hover i {
  background: var(--c-blue) url(../img/common/ico_strategy_hover.png) no-repeat center center;
  background-size: 40px auto;
}

.contents_area .service_link_area ul li.ico_hr a i {
  background: var(--c-light) url(../img/common/ico_hr.png) no-repeat center center;
  background-size: 45px auto;
}

.contents_area .service_link_area ul li.ico_hr a:hover i {
  background: var(--c-blue) url(../img/common/ico_hr_hover.png) no-repeat center center;
  background-size: 45px auto;
}

.contents_area .service_link_area ul li.ico_esg a i {
  background: var(--c-light) url(../img/common/ico_esg.png) no-repeat center center;
  background-size: 46px auto;
}

.contents_area .service_link_area ul li.ico_esg a:hover i {
  background: var(--c-blue) url(../img/common/ico_esg_hover.png) no-repeat center center;
  background-size: 46px auto;
}

.contents_area .service_link_area ul li.ico_cx a i {
  background: var(--c-light) url(../img/common/ico_cx.png) no-repeat center center;
  background-size: 47px auto;
}

.contents_area .service_link_area ul li.ico_cx a:hover i {
  background: var(--c-blue) url(../img/common/ico_cx_hover.png) no-repeat center center;
  background-size: 47px auto;
}

.contents_area .service_link_area ul li.ico_project a i {
  background: var(--c-light) url(../img/common/ico_project.png) no-repeat center center;
  background-size: 53px auto;
}

.contents_area .service_link_area ul li.ico_project a:hover i {
  background: var(--c-blue) url(../img/common/ico_project_hover.png) no-repeat center center;
  background-size: 53px auto;
}

.contents_area .service_link_area ul li.ico_smart a i {
  background: var(--c-light) url(../img/common/ico_smart.png) no-repeat center center;
  background-size: 63px auto;
}

.contents_area .service_link_area ul li.ico_smart a:hover i {
  background: var(--c-blue) url(../img/common/ico_smart_hover.png) no-repeat center center;
  background-size: 63px auto;
}

.contents_area .service_link_area ul li.ico_energy a i {
  background: var(--c-light) url(../img/common/ico_energy.png) no-repeat center center;
  background-size: 50px auto;
}

.contents_area .service_link_area ul li.ico_energy a:hover i {
  background: var(--c-blue) url(../img/common/ico_energy_hover.png) no-repeat center center;
  background-size: 50px auto;
}

.contents_area .service_link_area ul li.ico_data a i {
  background: var(--c-light) url(../img/common/ico_data.png) no-repeat center center;
  background-size: 52px auto;
}

.contents_area .service_link_area ul li.ico_data a:hover i {
  background: var(--c-blue) url(../img/common/ico_data_hover.png) no-repeat center center;
  background-size: 52px auto;
}

.contents_area .service_link_area ul li.ico_university a i {
  background: var(--c-light) url(../img/common/ico_university.png) no-repeat center center;
  background-size: 63px auto;
}

.contents_area .service_link_area ul li.ico_university a:hover i {
  background: var(--c-blue) url(../img/common/ico_university_hover.png) no-repeat center center;
  background-size: 63px auto;
}

.contents_area .service_link_area ul li.ico_healthcare a i {
  background: var(--c-light) url(../img/common/ico_healthcare.png) no-repeat center center;
  background-size: 53px auto;
}

.contents_area .service_link_area ul li.ico_healthcare a:hover i {
  background: var(--c-blue) url(../img/common/ico_healthcare_hover.png) no-repeat center center;
  background-size: 53px auto;
}

.contents_area .contact_area {
  width: 100%;
  height: 300px;
  background: url(../img/common/contact_banner.jpg) no-repeat center center;
  background-size: 100% 300px;
  position: relative;
}

.contents_area .contact_area .contact_banner {
  width: 1580px;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.contents_area .contact_area .contact_banner p {
  color: var(--c-light);
  letter-spacing: -0.05em;
  list-style: 100%;
}

.contents_area .contact_area .contact_banner p:nth-child(1) {
  font-family: var(--font-m);
  font-size: 36px;
  margin-bottom: 20px;
}

.contents_area .contact_area .contact_banner p:nth-child(2) {
  font-size: 24px;
}

.contents_area .contact_area .contact_banner button.btn {
  width: 200px;
  height: 50px;
  border-radius: 25px;
  background: transparent;
  border: 2px solid var(--c-light);
  font-size: 18px;
  color: var(--c-light);
  margin-top: 40px;
}

.contents_area .contact_area .contact_banner button.btn:hover {
  background: var(--c-light);
  color: var(--c-dark);
}

.contents_area .contact_area .contact_banner button.btn_home {
  width: 130px;
  height: 130px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 100%;
  background: var(--c-light) url(../img/common/ico_home.png) no-repeat center top 18px;
  background-size: 70px auto;
}

.contents_area .contact_area .contact_banner button.btn_home:hover {
  background: var(--c-blue) url(../img/common/ico_home_hover.png) no-repeat center top 18px;
  background-size: 70px auto;
}

.contents_area .contact_area .contact_banner button.btn_home:hover p {
  color: var(--c-light);
}

.contents_area .contact_area .contact_banner button.btn_home p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--c-dark);
  font-size: 15px;
  margin-top: 35px;
  line-height: 100%;
}

/* 22.09.21 */
@media all and (max-width: 1600px) {
  .contents_area .article_area {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  .contents_area .article_area article .img {
    width: inherit;
    width: calc(50% - 3%);
  }
  .contents_area .article_area article .img img {
    max-width: 100%;
    height: 420px;
  }
  .contents_area .article_area article .text {
    width: inherit;
    width: calc(50% - 3%);
  }
  .contents_area .article_area .bracket {
    width: inherit;
    width: 100%;
  }
  .contents_area .article_area .bracket ul {
    padding: 0 40px;
  }
}

/* // 22.09.21 */
.article_area .text_open {
  display: block;
  text-align: center;
  margin: 20px auto 0;
  width: 330px;
  height: 50px;
  line-height: 48px;
  border-radius: 25px;
  background: transparent;
  border: 2px solid var(--c-light);
  font-size: 18px;
  color: var(--c-light);
}

.article_area .text_open:hover {
  background: var(--c-blue);
  border: 2px solid var(--c-blue);
}

.article_area .text_open.green:hover {
  background: var(--c-green);
  border: 2px solid var(--c-green);
}

.article_area .btn_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.article_area .btn_group .btn {
  width: inherit;
  margin: inherit;
}

.article_area .btn_group .btn.down {
  width: 176px;
  height: 48px;
  border-radius: 25px;
  border: 2px solid var(--c-blue);
  background-color: var(--c-light);
  font-size: 14px;
  line-height: 120%;
  color: var(--c-blue);
  margin-right: 20px;
}

.article_area .btn_group .btn.down:hover {
  color: var(--c-light);
  border: 2px solid var(--c-blue);
  background-color: var(--c-blue);
}

.article_area .btn_group .btn.down.green {
  border: 2px solid var(--c-green);
  color: var(--c-green);
}

.article_area .btn_group .btn.down.green:hover {
  color: var(--c-light);
  border: 2px solid var(--c-green);
  background-color: var(--c-green);
}

.article_area .btn_group .btn.text_close {
  display: block;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #dedede;
  position: relative;
  position: relative;
}

.article_area .btn_group .btn.text_close:after {
  content: "\F0374";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: 'Material Design Icons';
  color: var(--c-dark);
}

.article_area .btn_group .btn.text_close:hover {
  color: var(--c-light);
  border: 1px solid var(--c-blue);
  background-color: var(--c-blue);
}

.article_area .btn_group .btn.text_close:hover:after {
  color: var(--c-light);
}

.article_area .btn_group .btn.text_close.green:hover {
  border: 1px solid var(--c-green);
  background-color: var(--c-green);
}

.article_area .text_area {
  display: none;
  width: 100%;
  margin: 20px auto 100px;
}

.article_area .text_area p, .article_area .text_area li, .article_area .text_area th, .article_area .text_area td, .article_area .text_area a {
  letter-spacing: -0.05em;
}

.article_area .text_area .tab_menu_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.article_area .text_area .tab_menu_area .tab_menu {
  margin: inherit;
  width: 300px;
}

.article_area .text_area .tab_menu_area .tab_menu li {
  position: relative;
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #fafafa;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  cursor: pointer;
  font-family: var(--font-m);
  color: #666;
  font-size: 22px;
  padding-left: 0;
  margin-bottom: 0;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.article_area .text_area .tab_menu_area .tab_menu li.active, .article_area .text_area .tab_menu_area .tab_menu li:hover, .article_area .text_area .tab_menu_area .tab_menu li:focus {
  background-color: var(--c-blue);
  color: var(--c-light);
  font-family: var(--font-b);
  border-top: 1px solid var(--c-blue);
  border-left: 1px solid var(--c-blue);
  border-right: 1px solid var(--c-blue);
  color: #fff;
}

.article_area .text_area .tab_menu_area .tab_menu li:last-child {
  border-bottom: 1px solid #eee;
}

.article_area .text_area .tab_menu_area .tab_menu li:before {
  display: none;
}

.article_area .text_area .tab_menu_area .tab_menu_container {
  border: 1px solid #ddd;
  width: calc(100% - 303px);
}

.article_area .text_area .tab_menu_area .tab_menu_container .view_box {
  padding: 20px 50px 60px;
}

.article_area .text_area .tab_menu_area .tab_menu_container .view_box .h1_text {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  margin-bottom: 50px;
}

.article_area .text_area .tab_menu_area .tab_menu_container .view_box .h1_text:before {
  content: '';
  display: block;
  position: absolute;
  top: 27px;
  left: 0;
  background-color: #fcfb9c;
  height: 10px;
  width: 100%;
}

.article_area .text_area .tab_menu_area .tab_menu_container .view_box .h1_text p {
  font-size: 28px;
  font-family: var(--font-b);
  color: var(--c-dark);
  position: relative;
  display: inline-block;
}

.article_area .text_area .tab_menu_area .tab_menu_container .view_box .h2_text {
  font-size: 24px;
  font-family: var(--font-b);
  color: var(--c-blue);
  margin-bottom: 20px;
  text-align: left;
}

.article_area .text_area .tab_menu_area .tab_menu_container .view_box .h3_text {
  font-size: 18px;
  text-align: left;
  color: var(--c-dark);
  margin-bottom: 20px;
}

.article_area .text_area .tab_menu_area .tab_menu_container .view_box .h3_text .c-main {
  color: var(--c-blue);
}

.article_area .text_area .tab_menu_area .tab_menu_container .view_box .h3_text .c-red {
  color: var(--c-red);
}

.article_area .text_area .tab_menu_area .tab_menu_container .view_box .h4_text {
  font-size: 16px;
  text-align: left;
  color: var(--c-dark);
  margin-top: 20px;
  line-height: 24px;
}

.article_area .text_area .tab_menu_area .tab_menu_container .view_box .h4_text .c-red {
  color: var(--c-red);
}

.article_area .text_area .tab_menu_area .tab_menu_container .view_box .head_text {
  font-size: 18px;
  color: var(--c-dark);
  text-align: left;
}

.article_area .text_area table.tbl {
  border-top: 2px solid var(--c-blue);
  width: 100%;
}

.article_area .text_area table.tbl th, .article_area .text_area table.tbl td {
  font-size: 18px;
  color: var(--c-dark);
  padding: 30px;
  text-align: left;
}

.article_area .text_area table.tbl th {
  font-family: var(--font-b);
}

.article_area .text_area table.tbl tr {
  border-bottom: 1px solid #ddd;
}

.article_area .text_area table.tbl td p {
  font-size: 18px;
  color: var(--c-dark);
}

.article_area .text_area table.tbl td p.c-main {
  color: var(--c-blue);
}

.article_area .text_area table.tbl td p.c-red {
  color: var(--c-red);
}

.article_area .text_area table.tbl td .mb-15 {
  margin-bottom: 15px;
}

.article_area .text_area table.tbl.line th, .article_area .text_area table.tbl.line td {
  text-align: center;
}

.article_area .text_area table.tbl.line td.a-l {
  text-align: left;
}

.article_area .text_area table.tbl.line td.a-l p {
  font-size: 16px;
  color: #666;
  position: relative;
  padding-left: 10px;
}

.article_area .text_area table.tbl.line td.a-l p:after {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 1px;
  background-color: #666;
}

.article_area .text_area table.tbl.line td.a-l p.none {
  padding-left: 0;
}

.article_area .text_area table.tbl.line td.a-l p.none:after {
  display: none;
}

.article_area .text_area table.tbl.line thead th {
  background-color: #fafafa;
}

.article_area .text_area table.tbl.line thead th:not(:last-child) {
  border-right: 1px solid #ddd;
}

.article_area .text_area table.tbl.line tbody th {
  border-right: 1px solid #ddd;
}

.article_area .text_area table.tbl.line tbody td:not(:last-child) {
  border-right: 1px solid #ddd;
}

.article_area .text_area table ul {
  margin-left: 20px;
}

.article_area .text_area table ul li {
  font-size: 18px;
  color: var(--c-dark);
  display: block;
}

.article_area .text_area .box_group_area .box_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.article_area .text_area .box_group_area .box_group:not(:last-child) {
  margin-bottom: 30px;
}

.article_area .text_area .box_group_area .box_group div {
  width: 513px;
  border: 1px solid #ddd;
  background-color: #fafafa;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
}

.article_area .text_area .box_group_area .box_group div .title {
  font-family: var(--font-m);
  font-size: 22px;
  color: var(--c-dark);
}

.article_area .text_area .box_group_area .box_group div .text {
  font-size: 18px;
  color: var(--c-dark);
  margin: 10px 0 5px;
}

.article_area .text_area .box_group_area .box_group ul {
  margin-left: 10px;
  counter-reset: list 0;
}

.article_area .text_area .box_group_area .box_group ul li {
  font-size: 16px;
  display: block;
  position: relative;
  padding-left: 15px;
}

.article_area .text_area .box_group_area .box_group ul li:before {
  counter-increment: list;
  content: counter(list) ".";
  text-align: center;
  display: block;
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

.article_area .text_area .box_group_area .box_group ul:before {
  display: none;
}

.article_area .text_area .box_group_area .box_group ul p {
  margin-left: 15px;
}

.article_area .text_area .process_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.article_area .text_area .process_area ul li {
  display: block;
  font-size: 16px;
  color: #666;
}

.article_area .text_area .process_area ul li.ico {
  display: inline-block;
  width: 104px;
  height: 104px;
  line-height: 95px;
  text-align: center;
  border: 6px solid #cae5ff;
  border-radius: 100%;
  margin-bottom: 20px;
}

.article_area .text_area .process_area ul li.ico i {
  font-size: 38px;
  color: var(--c-blue);
}

.article_area .text_area .process_area ul li.title {
  font-family: var(--font-m);
  font-size: 18px;
  color: var(--c-dark);
  margin-bottom: 15px;
}

.article_area .text_area .process_area ul li p {
  font-size: 16px;
  color: #666;
  font-family: var(--font);
}

.article_area .text_area.green .tab_menu_area .tab_menu li.active, .article_area .text_area.green .tab_menu_area .tab_menu li:hover, .article_area .text_area.green .tab_menu_area .tab_menu li:focus {
  background-color: var(--c-green);
  border-top: 1px solid var(--c-green);
  border-left: 1px solid var(--c-green);
  border-right: 1px solid var(--c-green);
}

.article_area .text_area.green .tab_menu_area .tab_menu_container .view_box .h2_text {
  color: var(--c-green);
}

.article_area .text_area.green .tab_menu_area .tab_menu_container .view_box .h3_text {
  font-size: 18px;
  text-align: left;
  color: var(--c-dark);
  margin-bottom: 20px;
}

.article_area .text_area.green .tab_menu_area .tab_menu_container .view_box .h3_text .c-main {
  color: var(--c-green);
}

.article_area .text_area.green table.tbl {
  border-top: 2px solid var(--c-green);
}

.article_area .text_area.green table.tbl td p.c-main {
  color: var(--c-green);
}

.article_area .text_area.green .process_area ul li.ico {
  border: 6px solid #bbeaea;
}

.article_area .text_area.green .process_area ul li.ico i {
  color: var(--c-green);
}

.article_area .dot_line {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.article_area .dot_line:after {
  content: '';
  display: block;
  content: '-----------------------------------------------------------------------------------------------------------------';
  position: absolute;
  top: 38px;
  left: 0%;
  height: 100%;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  letter-spacing: 0.3em;
  color: #ddd;
  font-size: 16px;
}
/*# sourceMappingURL=sub.css.map */