@charset "utf-8";

/* CSS Document */
* {
  box-sizing: border-box;
}

body {
  margin        : 0;
  background    : #fff;
  font-family   : noto-sans-cjk-jp, sans-serif;
  letter-spacing: 0.06em;
  color         : #222;
}

@media screen and (min-width: 1200px) {
  .document-max-size {
    /* max-width: 1450px; */
    width       : 100%;
    margin-left : auto;
    margin-right: auto;
  }

  .document-max-size .container-fluid {
    width: 100%;
  }

  .document-max-size .container-fluid>.row {
    display              : grid;
    grid-template-columns: auto 480px;
    grid-template-areas  :
      'content side';
    max-width: 1920px;
    width    : 100%;
    margin   : 0 auto;
  }

  .col-md-8 {
    grid-area: content;
  }

  .col-md-4 {
    grid-area: side;
  }

  .col-md-8 {
    width  : 100%;
    padding: 0 0 100px 0px;
  }

  .col-md-4 {
    max-width: 480px;
    width    : 100%;
    margin   : 0;
    padding  : 0;
  }

  .content-area {
    padding-right: 70px;
    max-width    : 1140px;
    margin-left  : auto;
    margin-right : auto;
    padding-left : 70px;
  }



  /* scroll */
  body {
    overflow-y: hidden;
  }

  .col-md-8 {
    position  : -webkit-sticky;
    position  : sticky;
    top       : 0;
    height    : 100vh;
    overflow-y: auto;
    overflow-y: hidden;
  }

  .col-md-8:hover {
    /* overflow-y: scroll; */
    overflow-y: overlay;
  }

  .col-md-8::-webkit-scrollbar {
    width: 10px;
  }

  .col-md-8::-webkit-scrollbar-track {
    opacity: 1;
  }

  .col-md-8::-webkit-scrollbar-thumb {
    border-radius: 10px;
    opacity      : 0;
  }

  .col-md-8:hover::-webkit-scrollbar-thumb {
    background: rgba(114, 114, 114, .5);
  }

  .col-md-8:hover::-webkit-scrollbar-thumb:hover {
    background: rgba(114, 114, 114, .7);
  }

  .col-md-8:hover::-webkit-scrollbar-thumb:active {
    background: rgba(114, 114, 114, .9);
  }
}

@-moz-document url-prefix() {
  .col-md-8 {
    overflow-y: auto;
  }
}


@media screen and (max-width: 1119px) {
  .document-max-size .container-fluid>.row {
    display              : grid;
    grid-template-columns: 100%;
    grid-template-areas  :
      'content'
      'side';
  }

  .col-md-8 {
    grid-area: content;
  }

  .col-md-4 {
    grid-area: side;
  }

  .col-md-4 {
    max-width: 100%;
    width    : 100%;
  }

  .content-area {
    margin-left : 70px;
    margin-right: 70px;
  }

  #content_area_right {
    margin-top   : 60px;
    padding-left : 70px;
    padding-right: 70px;
  }

}

@media screen and (max-width: 767px) {
  .col-md-8 {
    width: 100%;
  }

  .col-md-4 {
    margin-top: 60px;
    width     : 100%;
  }

  .col-md-8,
  .col-md-4 {
    margin-left : 0px;
    margin-right: 0px;
  }

  .content-area {
    padding     : 0 20px;
    margin-left : 0px;
    margin-right: 0px;
  }

  #content_area_right {
    padding-left : 30px;
    padding-right: 30px;
  }
}

.page-title-area h1.title {
  font-family       : 'trajan-pro-3', sans-serif;
  font-style        : normal;
  font-size         : 40px;
  font-weight       : 400;
  color             : #07507B;
  
  background-image  : url('../../assets/img/common/page-head-square.svg');
  background-repeat : no-repeat;
  height            : 115px;
  margin-top        : 60px;
  margin-bottom     : 20px;
  margin-left       : -70px;
  padding-left      : 120px !important;
  line-height       : 0.9;
}

@media screen and (max-width: 767px) {
  .page-title-area h1.title {
    background-image : url('../../assets/img/common/rectangle.svg');
    background-repeat: no-repeat;
    display          : block;
    height           : 100px;
    margin-top       : 0 !important;
    margin-left      : -20px;
    padding-top : 20px;
    padding-left: 44px !important;
    font-size   : 24px;
  }
}

h3 {
  position           : relative;
  padding            : 0.5rem 0 1rem;
  margin-bottom      : 30px;
  background         : linear-gradient(90deg, #0094D7 0% 50%, #07507B 50%);
  background-repeat  : no-repeat;
  background-size    : 10rem 0.2rem;
  background-position: bottom;
  text-align         : center;
  color              : #07507B;
  font-size          : 30px !important;
  font-weight        : bold;
}

@media screen and (max-width: 767px) {
  h3 {
    font-size  : 22px !important;
    font-weight: 700 !important;
  }
}



.bold {
  font-weight: bold;
}


.page-title-area h1.title:after {
  content: 'サービス資料ダウンロード';
  display: block;
  font-family: 'dnp-shuei-mincho-pr6n', serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .page-title-area h1.title:after {
    font-size: 18px;
  }
}

.service.question .ttl {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .service.question .ttl::before {
    content    : "";
    position   : absolute;
    top        : 50%;
    left       : 100%;
    margin-top : -12px;
    border     : 12px solid transparent;
    border-left: 20px solid #07507B;
  }
}

.service.question .ttl p {
  font-family: 'dnp-shuei-mincho-pr6n', serif !important;
  font-style : normal;
  font-size  : 24px;
  font-weight: 500;
  margin-top : 0;
}

.service.question .content .list ul li {
  font-weight: bold;
}


@media screen and (max-width: 767px) {
  .service.question .ttl p {
    font-size: 22px;
  }
}



.bnr::before {
  position        : absolute;
  content         : '';
  width           : 100%;
  height          : 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top             : 0;
  left            : 0;
}


.bnr {
  position         : relative;
  background-repeat: no-repeat;
  background-size  : cover;

  margin-bottom: 20px;
  padding      : 40px 30px 50px;

  display        : flex;
  justify-content: space-between;
}

@media only screen and (max-width : 767px) {
  .bnr {
    padding: 40px 20px 40px;
  }
}

.bnr.direct {
  background-image: url(../../assets/img/document/service/bnr_service_01.jpg);
}


.bnr.biz {
  background-image: url(../../assets/img/document/service/bnr_service_02.jpg);
}

.bnr.tech {
  background-image: url(../../assets/img/document/service/bnr_service_03.jpg);
}


.bnr .ttl img {
  width        : auto;
  height       : 34.85px;
  margin-bottom: 20px;
}

.bnr .ttl p {
  font-size  : 15px;
  font-weight: 500;
  line-height: 1.75;
}


.bnr>div {
  position: relative;

  width: calc(50% - 25px);
  color: #fff;
}

.bnr>div p {
  margin: 0;
}

.bnr .content p {
  font-size  : 14px;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .bnr {
    display: block;
  }

  .bnr>div {
    width: 100%;
  }

  .bnr .content p {
    margin-top: 30px;
  }
}



.attention {
  margin-top: 50px;
}

.attention ul {
  padding-left: 25px;
}

.attention ul li:not(:last-child) {
  margin-bottom: 5px;
}


/* 右カラム */
#content_area_right {
  background-color: #F5F5F5;
  padding-left    : 40px;
  padding-right   : 40px;
  overflow-x      : hidden;
}

@media screen and (max-width: 767px) {
  .form-wrapper {
    padding-left : 0px;
    padding-right: 0px;
  }

  #content_area_right {
    padding-top   : 25px;
    padding-left  : 20px;
    padding-right : 20px;
    padding-bottom: 25px;
  }

  #content_area_right h2,
  #content_area_right .sub-ttl {
    margin-left : -20px;
    margin-right: -20px;
  }
}

.description {
  font-size     : 13px;
  line-height   : 2;
  letter-spacing: 0.06em;
  margin-top    : 24px;
  margin-bottom : 27px;
}

@media screen and (max-width: 767px) {
  .description {
    margin-top: 0;
  }
}

/* content */
.text-center {
  text-align: center;
}

p.intro {
  margin-top: 0 !important;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.service {
  background-color: #F5F5F5;
  margin-bottom: 30px;
}

.service:last-child {
  margin-bottom: 0;
}

.service .ttl {
  background-color: #07507B;
  color: #fff;
  padding: 25px 30px;

  display: flex;
  align-items: center;
  gap: 25px;
}

.service .ttl img {
  /*   width: auto; */
  height: 35px;
  object-fit: contain;
  margin-bottom: 0 !important;
}

.service .ttl p {
  flex: 1;

  width: auto;
  height: auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75 !important;
  margin-bottom: 0 !important;
  margin-top: 0;
}

.service .content {
  display: flex;
  justify-content: space-between;
  gap: 30px;

  padding: 30px;
}

/* .service .content>div {
width: calc(50% - 25px);
} */
@media screen and (min-width: 768px) {

  .service .content .overview {
    max-width: calc(100% - 350px);
    width: auto;
  }

  .service .content .image {
    width: 350px;
  }

  .service .content .image img {
    width: 100%;
  }
}

.service .content .overview h4 {
  color: #727171;
  font-size: 18px !important;
  margin-top: 0 !important;
  margin-bottom: 11px !important;
  line-height: 1.2;
  font-weight: bold;
}

.service .content .overview p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-top: 14px;
}

@media screen and (max-width: 767px) {
  p.intro {
    line-height: 1.75;
    margin-bottom: 30px;
  }

  .service .ttl {
    padding: 20px;

    display: block;
  }

  .service .ttl img {
    height: 25px;
    margin-bottom: 15px !important;
  }

  .service .content {
    display: block;
    padding: 20px;
  }

  .service .content>div {
    width: 100%;
  }

  .service .content .image {
    text-align: center;
  }

  .service .content .image img {
    max-width: 350px;
    width: 100%;
    margin: 10px auto 0;
  }

  .service .content .overview h4 {
    margin-bottom: 9px !important;
  }

  .service .content .overview p {
    line-height: 1.75;
  }
}



@media only screen and (min-width : 1200px) {

  /* sticky **/
  .sticky {
    position  : -webkit-sticky;
    position  : sticky;
    top       : 0;
    height    : 100vh;
    overflow-y: hidden;
  }

  .sticky__inner {
    width: 400px;
  }

  .sticky:hover {
    /* overflow-y: scroll; */
    overflow-y: overlay;
  }

  .sticky::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
  }

  .sticky::-webkit-scrollbar-track {
    opacity: 1;
  }

  .sticky::-webkit-scrollbar-thumb {
    border-radius: 10px;
    opacity: 0;
  }

  .sticky:hover::-webkit-scrollbar-thumb {
    background: rgba(114, 114, 114, .5);
  }

  .sticky:hover::-webkit-scrollbar-thumb:hover {
    background: rgba(114, 114, 114, .7);
  }

  .sticky:hover::-webkit-scrollbar-thumb:active {
    background: rgba(114, 114, 114, .9);
  }
}

@-moz-document url-prefix() {
  .sticky {
    overflow-y: auto;
  }
}

/* header */
.header-area {
  height: 80px;
  padding: 20px 0px;
  padding-left: 40px;
  position: relative;
}

.header-area:before {
  content         : '';
  display         : block;
  width           : 100vw;
  background-color: #EBEBEB;
  height          : 1px;
  position        : absolute;
  bottom          : 0;
  right           : 0;
}

@media screen and (max-width: 1119px) {
  .header-area {
    width        : 100%;
    height       : 60px;
    padding      : 15px 40px;
    border-bottom: 1px solid #EBEBEB;
  }

  .header-area:before {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .header-area {
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header-area p {
  margin: 0;
}

.header-area .header-top {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.header-area .header-top .logo {
  display    : flex;
  align-items: center;
  gap        : 12px;
}

.header-area .header-top .logo p {
  color      : #222;
  font-size  : 16px;
  font-weight: 500;
}

.header-area .header-top .logo img {
  max-width: 130px;
}

.header-area .header-top .info {
  display      : flex;
  align-items  : center;
  gap          : 10px;
  padding-right: 40px;
}

.header-area .header-top .info .tel {
  font-family   : 'trajan-pro-3', sans-serif;
  font-style    : normal;
  font-size     : 22px;
  font-weight   : 400;
  line-height   : 1.818;
  letter-spacing: 0.05em;
  color         : #000;
}

.header-area .header-top .info span {
  font-family   : noto-sans-cjk-jp, sans-serif;
  font-size     : 11px;
  line-height   : 1.3;
  letter-spacing: 0.06em;
  color         : #222;
}

@media screen and (max-width: 1119px) {
  .header-area .header-top .info {
    display: none;
  }
}


/* footer */
.footer .info .p-mark {
  display      : flex;
  align-items  : center;
  gap          : 15px;
  margin-top   : 20px;
  margin-bottom: 20px;
}

.footer .info .p-mark .logo img {
  width : 53px;
  height: auto;
}

.footer .info .p-mark .description {
  margin        : 0;
  font-size     : 12px;
  font-weight   : 500;
  line-height   : 1.666;
  letter-spacing: 0.06em;
}

.company-logo {
  text-align : center;
  border-top : 1px solid #EBEBEB;
  padding-top: 15px;
}

.company-logo img {
  max-width: 150px;
  width    : 100%;
  height   : auto;
}

.copyright-text {
  margin-bottom : 15px;
  text-align    : center;
  font-size     : 12px;
  color         : #888888;
  line-height   : 2;
  letter-spacing: 0.03em;
}

p.intro span.intro-no {
  font-size  : 18px;
  font-weight: bold;
  padding-top: 0px;
  color      : #07507B;
}