@charset "UTF-8";
:root {
  --headerHeight: 120px;
  --flexMargin: 40px;
  --paddingSection: 64px;
}
@media screen and (max-width: 961px) {
  :root {
    --headerHeight: 80px;
    --flexMargin: 16px;
    --paddingSection: 40px;
  }
}

/*========== 子ページ ==========*/
/*==========
子ページ共通
==========*/
.child_body {
  min-height: 75vh;
  padding-top: 40px;
  padding-bottom: 120px;
}

#child_mv {
  background: center/cover url("../img/child/child_mv.jpg") no-repeat;
  height: 200px;
}
#child_mv .flex_box {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
#child_mv .title_01 {
  margin-top: 0.75em;
}

#breadcrumb {
  background-color: #fff;
  padding: 1em 0;
}

.list_breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.list_breadcrumb > * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875em;
  color: #00557f;    
}
.list_breadcrumb > *:not(:last-of-type)::after {
  content: "";
  width: 10px;
  height: 10px;
  background: center/contain url("../img/common/icon_arrow.svg") no-repeat;
  display: block;
  margin-right: 10px;
  margin-left: 10px;
}

.child_bg {
  background: center bottom/cover url("../img/child/child_bg.jpg") no-repeat;
}

/*==========
企業情報ページ
==========*/
#company .child_body {
  padding-top: 0;
  padding-bottom: 0;
}

#company_about {
  padding-top: 80px;
  padding-bottom: 80px;
}
#company_about .bg_white {
  background-color: #fff;
  padding: 64px 24px;
  border-radius: 20px;
}
@media screen and (max-width: 961px) {
  #company_about .bg_white {
    padding: 40px 24px;
  }
}

.company_block {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.company_block > * {
  width: 50%;
}
.company_block .img_area {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.company_block .text_area {
  padding: 40px;
  position: relative;
  z-index: 1;
}
.company_block .text_area .text {
  margin-top: 1em;
}
.company_block .text_area::after {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #f5faff;
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
}
.company_block:nth-of-type(odd) .img_area {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}
.company_block:nth-of-type(odd) .text_area {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  padding-right: 0;
}
.company_block:nth-of-type(odd) .text_area::after {
  border-radius: 0 0 0 40px;
  left: calc(-100% + 164px);
}
.company_block:nth-of-type(even) .img_area {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.company_block:nth-of-type(even) .text_area {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
  padding-left: 0;
}
.company_block:nth-of-type(even) .text_area::after {
  border-radius: 0 0 40px 0;
  right: calc(-100% + 164px);
}
@media screen and (max-width: 961px) {
  .company_block > * {
    width: 100%;
  }
  .company_block:nth-of-type(odd) .img_area, .company_block:nth-of-type(even) .img_area {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    width: 100%;
    min-height: 160px;
    position: relative;
  }
  .company_block:nth-of-type(odd) .img_area img, .company_block:nth-of-type(even) .img_area img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .company_block:nth-of-type(odd) .text_area, .company_block:nth-of-type(even) .text_area {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-top: -64px;
    padding: 80px 0 40px;
  }
  .company_block:nth-of-type(odd) .text_area::after, .company_block:nth-of-type(even) .text_area::after {
    border-radius: 0;
    left: -24px;
  }
}

/*==========
各種イベント情報
==========*/
#event #contents {
  padding-top: 80px;
  padding-bottom: 80px;
}
#event #contents .bg_white {
  background-color: #fff;
  padding: 40px 24px;
  border-radius: 20px;
}
@media screen and (max-width: 961px) {
  #event #contents {
    padding-top: 40px;
  }
  #event #contents .bg_white {
    padding: 40px 24px;
  }
}
#event .tab_area {
  padding: 0 24px;
}
@media screen and (max-width: 961px) {
  #event .tab_area {
    padding: 0;
  }
}
#event .month {
  padding-top: var(--headerHeight);
  margin-top: calc(var(--headerHeight) * -1);
}
#event .dl_01 {
  border-bottom: none;
}
#event .dl_01 dt {
  width: 160px;
}
#event .dl_01 dd {
  width: calc(100% - 160px);
}
#event .dl_01 .label {
  border-top: none;
  background-color: #fff;
  padding: 9px 12px;
}
#event .dl_01 .label span {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.325em;
  font-size: 0.875em;
  font-weight: 500;
  border-radius: 5px;
}
#event .dl_01 .title {
  border-top: none;
  padding: 9px 0px;
  font-size: 1.125em;
  font-weight: 700;
}
#event .dl_01 .title a {
  color: #005CB9;
}
#event .dl_01 .title a:hover {
  color: #00557f;
}
#event .dl_01 .title a[target=_blank]::after {
  content: "";
  width: 0.94444444em;
  height: 0.94444444em;
  background: center/contain url("../img/common/icon_blank.svg") no-repeat;
  display: inline-block;
  margin-left: 0.5em;
}
#event .dl_01 dd {
  font-weight: 500;
}
@media screen and (max-width: 961px) {
  #event .dl_01 {
    display: block;
  }
  #event .dl_01 dt,
#event .dl_01 dd {
    width: 100%;
    padding: 0.625em 0;
  }
  #event .dl_01 .label {
    width: auto;
    padding-left: 0;
    padding-bottom: 0;
    float: left;
  }
  #event .dl_01 .label span {
    width: auto;
    display: inline-block;
    font-size: 0.875em;
  }
  #event .dl_01 .title {
    width: auto;
    border-top: none;
    font-size: 1em;
    line-height: 1.25;
  }
  #event .dl_01 .time {
    font-size: 1em;
  }
}
#event .item {
  border-top: 2px solid #00557F;
}
#event .item:first-of-type {
  margin-top: 16px;
}
#event .item:last-of-type {
  border-bottom: 2px solid #00557F;
  margin-bottom: 40px;
}
@media screen and (max-width: 961px) {
  #event .item:first-of-type {
    margin-top: 8px;
  }
}
#event .nothing {
  padding: 2em;
  margin-top: 1em;
}
#event .training {
  color: #fff;
  background-color: #005CB9;
}
#event .training::after {
  background-color: #fff;
}
#event .seminar {
  color: #fff;
  background-color: #28847B;
}
#event .seminar::after {
  background-color: #fff;
}
#event .exhibition {
  color: #fff;
  background-color: #7C13AF;
}
#event .exhibition::after {
  background-color: #fff;
}

.tab_category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-bottom: 4px;
}
.tab_category > * {
  font-size: 1.125em;
  font-weight: 700;
  width: 180px;
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px 2px;
  border-radius: 10px 10px 0 0;
  color: #005CB9;
  background-color: #fff;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  cursor: pointer;
  -webkit-transition: padding-bottom 0.5s, margin-bottom 0.5s;
  transition: padding-bottom 0.5s, margin-bottom 0.5s;
}
.tab_category > *::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0%;
  height: 4px;
  background-color: #005CB9;
  border-radius: 2px;
  opacity: 0.2;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.tab_category > *.active {
  padding-bottom: 4px;
  margin-bottom: -4px;
}
.tab_category > *.active::after {
  width: 60%;
}
@media screen and (max-width: 961px) {
  .tab_category {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tab_category > * {
    font-size: 1em;
    /* width: calc(50% - 8px); */
    width: calc(100% / 3 - 8px);
    margin: 4px;
    border-radius: 8px;
  }
  .tab_category > *.active {
    padding-bottom: 0px;
    margin-bottom: 4px;
  }
  .tab_category > *.active::after {
    width: 60%;
  }
}

.tab_year {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: 700;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  background-color: #F5FAFF;
  color: #00557F;
}
.tab_year > * {
  width: 160px;
  padding: 13px;
  text-align: center;
}
.tab_year > *:not(.disable) {
  cursor: pointer;
  position: relative;
}
.tab_year > *:not(.disable)::after {
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2210%22%20viewBox%3D%220%200%206%2010%22%3E%3Cpath%20d%3D%22M5%2C6%2C0%2C1.377%2C1.489%2C0%2C5%2C3.246%2C8.511%2C0%2C10%2C1.377Z%22%20transform%3D%22translate(0%2010)%20rotate(-90)%22%20fill%3D%22%2300557F%22%2F%3E%3C%2Fsvg%3E");
  width: 6px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.5em;
}
.tab_year > *:not(:last-of-type) {
  border-right: 1px solid #E2E2E2;
}
.tab_year > *.active {
  background-color: #00557F;
  color: #fff;
}
.tab_year > *.active::after {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2210%22%20viewBox%3D%220%200%206%2010%22%3E%3Cpath%20d%3D%22M5%2C6%2C0%2C1.377%2C1.489%2C0%2C5%2C3.246%2C8.511%2C0%2C10%2C1.377Z%22%20transform%3D%22translate(0%2010)%20rotate(-90)%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (max-width: 961px) {
  .tab_year > * {
    /* width: 50%; */
    width: calc(100% / 3);
  }
}

.anchor_month {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 14px 20px;
  margin-bottom: 24px;
  font-weight: 700;
  color: #00557F;
}
.anchor_month > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 1px dashed #E2E2E2;
  border-left: 1px dashed #E2E2E2;
  margin-right: -1px;
}
.anchor_month > * a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.anchor_month > * a::after {
  content: "";
  width: 6px;
  height: 10px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2210%22%20viewBox%3D%220%200%206%2010%22%3E%3Cpath%20d%3D%22M5%2C6%2C0%2C1.377%2C1.489%2C0%2C5%2C3.246%2C8.511%2C0%2C10%2C1.377Z%22%20transform%3D%22translate(0%2010)%20rotate(-90)%22%20fill%3D%22%2300557F%22%2F%3E%3C%2Fsvg%3E");
  display: block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-left: 0.5em;
}
.anchor_month > *.disable {
  pointer-events: none;
  color: #939598;
}
.anchor_month > *.disable a::after {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2210%22%20viewBox%3D%220%200%206%2010%22%3E%3Cpath%20d%3D%22M5%2C6%2C0%2C1.377%2C1.489%2C0%2C5%2C3.246%2C8.511%2C0%2C10%2C1.377Z%22%20transform%3D%22translate(0%2010)%20rotate(-90)%22%20fill%3D%22%23939598%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (max-width: 961px) {
  .anchor_month > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 4em;
    margin-bottom: 0.5em;
  }
}

/*==========
お問い合わせページ
==========*/
#contact .contents {
  border-radius: 20px;
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 64px;
}
@media screen and (max-width: 961px) {
  #contact .child_body .container,
#contact .child_body .inner {
    padding-left: 12px;
    padding-right: 12px;
  }
  #contact .contents {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.list_progress {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
.list_progress > * {
  height: 60px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #939598;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
}
.list_progress > *:not(:last-of-type) {
  margin-right: 5px;
}
.list_progress > *.active {
  background-color: #005cb9;
}
.list_progress > *:first-of-type {
  border-radius: 10px 0px 0px 10px;
}
.list_progress > *:last-of-type {
  border-radius: 0px 10px 10px 0px;
}
@media screen and (max-width: 961px) {
  .list_progress > * {
    font-size: 1.125em;
    height: 40px;
  }
}

.form_area .row_btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.form_area .row_btn > * {
  margin: 0 20px;
}
@media screen and (max-width: 961px) {
  .form_area .row_btn {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .form_area .row_btn > *:not(:last-of-type) {
    margin-bottom: 1.5em;
  }
}

.list_form {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.list_form dt,
.list_form dd {
  margin-bottom: 4px;
}
.list_form dt {
  width: 224px;
  background-color: #edf6fa;
  padding: 10px 0px 10px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.list_form dt label {
  margin-right: 6px;
  margin-bottom: 5px;
  display: block;
}
.list_form dt::after {
  content: "任意";
  font-size: 0.875em;
  color: #939598;
  border: 1px solid #939598;
  padding: 0.072em 0.572em;
  border-radius: 4px;
}
.list_form dt.required::after {
  content: "必須";
  color: #b40008;
  border-color: #b40008;
}
.list_form dd {
  width: calc(100% - 224px);
  padding-left: 24px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.list_form .row_tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.list_form input,
.list_form textarea {
  font-size: 1em;
  width: 100%;
  padding: 0.8125em 1em;
  border: 1px solid #dddddd;
  border-radius: 5px;
}
.list_form input::-webkit-input-placeholder, .list_form textarea::-webkit-input-placeholder {
  color: #bbbbbb;
}
.list_form input::-moz-placeholder, .list_form textarea::-moz-placeholder {
  color: #bbbbbb;
}
.list_form input:-ms-input-placeholder, .list_form textarea:-ms-input-placeholder {
  color: #bbbbbb;
}
.list_form input::-ms-input-placeholder, .list_form textarea::-ms-input-placeholder {
  color: #bbbbbb;
}
.list_form input::placeholder,
.list_form textarea::placeholder {
  color: #bbbbbb;
}
.list_form input.tel,
.list_form textarea.tel {
  max-width: 160px;
}
@media screen and (max-width: 961px) {
  .list_form dt,
.list_form dd {
    width: 100%;
  }
  .list_form dd {
    padding-left: 0;
  }
}

.privacy_box {
  margin-bottom: 24px;
  border: 1px solid #dddddd;
  padding: 40px;
  height: 260px;
  overflow: auto;
}
.privacy_box .title {
  font-size: 1.5em;
  font-weight: 700;
  color: #005cb9;
  margin-bottom: 0.75em;
}
.privacy_box .text + .text {
  margin-top: 1em;
}
@media screen and (max-width: 961px) {
  .privacy_box {
    padding: 40px 24px;
  }
  .privacy_box .title {
    font-size: 1.25em;
  }
}

.check_wrap {
  margin-bottom: 64px;
  text-align: center;
}
.check_wrap label,
.check_wrap input[type=checkbox] {
  cursor: pointer;
}
.check_wrap input[type=checkbox] {
  -webkit-transform: scale(1.75);
          transform: scale(1.75);
  margin-right: 1em;
}

.confirm {
  display: none;
}

#company .child_bg .jpn{
}

#company .child_bg .en{
	margin-top: 50px;
}

.company-inner--wrapper {
  padding: 1px 24px 24px;
    background-color: #f5faff;
    border-radius: 20px;
    .dl_01 dt {
      width: 160px;
    }
    .dl_01 dd {
      width: calc(100% - 160px);
    }
    .dl_01 dd,.dl_01 dt {
      font-size: 0.875em;
      padding: 14px 20px;
    }
    p {
      font-size: 0.875em;
    }
    .fs_14 {
      font-size: 0.8em;
    }
}

/*==========
ニュースリリースページ
==========*/

.news_download_area img{
    padding-top: 40px;
    display: block;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}
.news_download_title{
    margin-top: 1em;
    text-align: center;
    font-weight: 700;
    color: #00557f;
}
.news_download_area .btn_02{
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
    max-width: 320px;
}

.news_link {
  color: #005CB9;
  text-decoration: underline;
  transform: color 0.5s;
}

.news_link:hover {
  color: #00557f;
}
.news_link[target=_blank]::after {
  content: "";
  width: 0.94444444em;
  height: 0.94444444em;
  background: center/contain url("../img/common/icon_blank.svg") no-repeat;
  display: inline-block;
  margin-left: 0.5em;
}


/* company */

#company_intro {
  h3.tagline {
    margin-top: 2rem;
    font-size: 1.8em;
    font-weight: 700;
    color: #275cb9;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
  }
    .company_block  {
      .text_area {
      .text {
        font-size: 1.2em;
        line-height: 1.8;
        margin-bottom: 2rem;
      }
      .sub-text {
          font-size: 0.875em;
      }
      }
      
  }
}