@charset "UTF-8";

/* ------------------------------------------------------------- */
/* layout / parts                                                */
/* ------------------------------------------------------------- */
html * {
  visibility: hidden;
}
html.wf-active * {
  visibility: visible;
}
html.wf-loading {
  transition: all 0.3s ease;
}
html.wf-active {
  opacity: 1;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  color: #000;
  background: #fff;
  line-height: 2;
  letter-spacing: 0;
  line-height: 1.2;
}
body.lock {
  overflow: hidden;
}

.outer {
  width: 100%;
}
.inner {
  margin: 0 auto;
}

/*-----------------画像--------------------*/
img.fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
img.fit-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain;";
}
figure img {
  width: 100%;
}
/*-----------------flex--------------------*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex.nowrap {
  flex-wrap: nowrap;
}
.flex.right {
  justify-content: flex-end;
}
.flex.center {
  justify-content: center;
}
.flex.left {
  justify-content: flex-start;
}
.flex.vertical {
  flex-direction: column;
  align-items: flex-start;
}
.flex.al-center {
  align-items: center;
}
.v-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-----------------Link--------------------*/
a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a.btn {
  display: block;
}

/*-----------------parts--------------------*/
.btn {
  position: relative;
  width: 340px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  color: #0268b6;
  background-color: #fff;
  border: 1px solid #0268b6;
  border-radius: 30px;
  text-align: center;
  letter-spacing: 0.05em;
}
.btn::after {
  content: "";
  position: absolute;
  width: 7.5px;
  height: 12.5px;
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
  background-image: url(../img/icon-more-blue@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.btn:hover {
  color: #fff;
  background-color: #0268b6;
  border: 1px solid #fff;
}
.btn:hover::after {
  background-image: url(../img/icon-arrow@2x.png);
}
.btn.invert {
  color: #fff;
  background-color: #0268b6;
}
.btn.invert::after {
  background-image: url(../img/icon-arrow@2x.png);
}
.btn.invert:hover {
  background-color: #04b7bd;
  border: 1px solid #04b7bd;
}
.btn.contact::before,
.btn.downloads::before {
  content: "";
  position: relative;
  transform: translateX(-100%);
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
.btn.contact::before {
  height: 14px;
  width: 16px;
  top: 1px;
  background-image: url(../img/icon-contact@2x.png);
}
.btn.downloads::before {
  height: 18px;
  width: 14px;
  top: 2px;
  background-image: url(../img/icon-download@2x.png);
}

.btn-more a {
  display: block;
}
.btn-more img {
  width: 41px;
  height: auto;
}
.btn--bdr-white {
  border: 1px solid #ffffff;
}
.link-detail {
  position: relative;
  color: #0268b6;
  transition: all 0.3s ease;
}
.link-detail::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 12px;
  background-image: url(../img/icon-more-blue@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 17px;
}
.link-detail:hover {
  opacity: 0.7;
}

h2 {
  font-size: 50px;
  font-weight: 300;
  color: #0268b6;
  text-align: center;
  letter-spacing: 0.05em;
}
h2 + p {
  text-align: center;
}

/* ------------------------------------------------------------- */
/* header                                                        */
/* ------------------------------------------------------------- */
header {
  width: 100%;
}
header .inner {
  position: fixed;
  z-index: 98;
  width: 100%;
  align-items: center;
  height: 80px;
}
header .hd-logo {
  width: 320px;
  height: auto;
  margin-left: 20px;
}
header .hd-logo.invert {
  display: none;
}
header .header-nav {
  align-items: center;
}
header .header-nav li {
  margin-right: 35px;
}
header .header-nav li:nth-last-of-type(1) {
  margin-right: 0;
}
header .header-nav li:nth-last-of-type(2) {
  margin-right: 1px;
}
header .header-nav a {
  color: #fff;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
header .header-nav a:hover {
  opacity: 0.7;
}
header .header-nav a.hd-btn {
  display: block;
  width: 80px;
  height: 80px;
  background-color: #0268b6;
  font-size: 12px;
  padding-top: 50px;
  letter-spacing: 0;
  text-align: center;
  background-repeat: no-repeat;
  background-position-x: center;
}
header .header-nav a.hd-btn.dld {
  background-image: url(../img/icon-download@2x.png);
  background-position-y: 20px;
  background-size: 15px auto;
}
header .header-nav a.hd-btn.cta {
  background-image: url(../img/icon-contact@2x.png);
  background-position-y: 22px;
  background-size: 15px auto;
}
header.invert .inner {
  background-color: #fff;
}
header.invert .hd-logo.invert {
  display: block;
}
header.invert .hd-logo {
  display: none;
}
header.invert .header-nav a {
  color: #000;
}
header.invert .header-nav a.hd-btn {
  color: #fff;
}

/* ------------------------------------------------------------- */
/* inquiry                                                       */
/* ------------------------------------------------------------- */
.inquiry {
  padding: 55px 0;
  background-image: url(../img/bg-contact@2x-100.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.inquiry h2 {
  color: #fff;
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.inquiry .btns {
  margin-top: 45px;
}
.inquiry .btns .btn {
  height: 80px;
  line-height: 80px;
  border-radius: 40px;
  margin: 0 10px;
  font-size: 20px;
}
.btn.contact::before,
.btn.downloads::before {
  content: "";
  position: relative;
  transform: translateX(-100%);
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
.btn.contact::before {
  height: 14px;
  width: 16px;
  top: 1px;
  background-image: url(../img/icon-contact@2x.png);
}
.btn.downloads::before {
  height: 18px;
  width: 14px;
  top: 2px;
  background-image: url(../img/icon-download@2x.png);
}

/* ------------------------------------------------------------- */
/* solution                                                      */
/* ------------------------------------------------------------- */
.solution {
  padding: 75px 0 50px;
  background-color: #f3f1e5;
}
.solution .inner {
  width: 1040px;
}
.solution h2 {
  color: #000;
  font-size: 30px;
}
.solution .solution-list {
  margin-top: 80px;
}
.aicameraPage .solution .solution-list {
  justify-content: center;
}
.solution .solution-list {
  justify-content: flex-start;
}
.solution .solution-list li {
  width: 33.3333%;
  padding: 0 37px 50px;
  position: relative;
  /* border-right: 1px solid rgba(0, 0, 0, 0.15); */
}
.aicameraPage .solution .solution-list li {
  /*flex: 1;*/
}
@media screen and (max-width: 768px) and (min-width: 0px) {
  .aicameraPage .solution .solution-list {
    justify-content: space-between;
  }
}

/* .solution .solution-list li:nth-of-type(-n+3) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
} */
.solution .solution-list li:nth-of-type(3n) {
  border-right: none;
}
.solution .solution-list li:nth-of-type(n + 4) {
  margin-top: 40px;
}
/* .solution .solution-list li:nth-of-type(-n+2)::after {
	content: "";
	position: absolute;
	right: -40px;
	bottom: -40px;
	display: block;
	width: 80px;
	height: 80px;
	background-color: #F3F1E5;
	z-index: 1;
} */
.solution .solution-list a > img {
  margin: 0 auto;
  width: 100%;
  flex-shrink: 0;
}
.solution .solution-list strong {
  display: block;
  width: 100%;
  /*text-align: center;*/
  margin-top: 30px;
  font-size: 20px;
  color: #0268b6;
}
.solution .solution-list li:nth-of-type(1) strong {
  letter-spacing: -0.1em;
}
.solution .solution-list p {
  width: 100%;
  margin-top: 15px;
  /* min-height: 90px; */
  color: #454545;
  line-height: 1.5;
}
.solution .solution-list a:hover p {
  color: #0268b6;
}
.solution .solution-list .btn-more {
  margin: 30px auto 0;
}
.solution .btn {
  margin: 60px auto 0;
}

/* ------------------------------------------------------------- */
/* footer                                                        */
/* ------------------------------------------------------------- */
footer {
  background-color: #000;
  padding: 40px 0;
}
footer a {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
footer .inner {
  width: 1040px;
  margin: 0 auto;
}
footer .link-list-first li {
  margin-right: 20px;
}
footer .link-list-second {
  margin-top: 20px;
  flex-wrap: nowrap;
}
footer .link-list-second ul {
  padding: 0 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
footer .link-list-second ul:first-of-type {
  padding-left: 0;
}
footer .link-list-second ul:last-of-type {
  border-right: 0;
  padding-right: 0;
}
footer .link-list-second ul li {
  margin-bottom: 15px;
}
footer .logo {
  display: block;
  width: 100%;
  margin-top: 45px;
  margin-bottom: 15px;
}
footer .logo img {
  display: block;
  height: 18px;
  width: auto;
  margin: 0 0 0 auto;
}
footer .link-list-last a {
  margin-right: 20px;
}
footer .cr {
  color: #fff;
  opacity: 0.6;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ------------------------------------------------------------- */
/* page                                                          */
/* ------------------------------------------------------------- */
.page .mv {
  padding-top: 80px;
  position: relative;
}
.page .mv .outer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 640px;
  height: calc(100vh - 80px);
}
.page .mv h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  width: 100%;
  letter-spacing: 0.05em;
}
.page .mv h1 span {
  display: block;
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 300;
}
.page .mv h1 strong {
  font-size: 50px;
  font-weight: bold;
}
.page .mv h1 small {
  display: block;
  margin-top: 40px;
  font-size: 20px;
}
.page .breadcrumb {
  padding: 19px;
  position: relative;
  z-index: 1;
}
.page .breadcrumb li {
  font-weight: 300;
  color: #fff;
}
.page .breadcrumb li a {
  position: relative;
  color: #fff;
}
.page .breadcrumb li a::after {
  content: "/";
  margin: 0 1em;
}
@media screen and (max-width: 767px) {
  .page .mv h1 {
    letter-spacing: 0.05em;
  }
  .page.dp .breadcrumb {
    padding-top: 5px;
  }
}

@media all and (-ms-high-contrast: none) {
}

@media (min-width: 769px) {
  body {
    min-width: 1280px;
    width: 100%;
  }
  .outer {
    min-width: 1280px;
  }
  footer a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  /* ------------------------------------------------------------- */
  /* layout / parts                                                */
  /* ------------------------------------------------------------- */
  .hide-sp,
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }

  /*-----------------parts--------------------*/
  .btn {
    /* position: relative;
		width: 340px;
		height: 60px;
		line-height: 60px;
		font-size: 20px;
		color: #0268B6;
		background-color: #fff;
		border: 1px solid #0268B6;
		border-radius: 30px;
		text-align: center;
		letter-spacing: 0.05em; */
    width: 80%;
    font-size: 16px;
  }
  .btn::after {
    /* content: "";
		position: absolute;
		width: 7.5px;
		height: 12.5px;
		top: 50%;
		right: 38px;
		transform: translateY(-50%);
		background-image: url(../img/icon-more-blue@2x.png);
		background-repeat: no-repeat;
		background-size: contain;
		transition: all .3s ease; */
  }
  .btn:hover {
    /* color: #fff;
		background-color: #0268B6; */
  }
  .btn:hover::after {
    /* background-image: url(../img/icon-arrow@2x.png); */
  }
  .btn.invert {
    /* color: #fff;
		background-color: #0268B6; */
  }
  .btn.invert::after {
    /* background-image: url(../img/icon-arrow@2x.png); */
  }
  .btn.invert:hover {
    /* background-color: #04B7BD;
		border: 1px solid #04B7BD; */
  }

  .btn-more a {
    /* display: block; */
  }
  .btn-more img {
    /* width: 41px;
		height: auto; */
  }

  h2 {
    /* font-size: 50px;
		font-weight: 300;
		color: #0268B6;
		text-align: center; */
    font-size: 36px;
  }
  h2 + p {
    /* text-align: center; */
  }
  .sp-dots {
    display: flex !important;
    justify-content: center;
  }
  .sp-dots li {
    width: 40px;
    height: 3px;
    margin: 0 5px;
    background-color: #cfcfcf;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .sp-dots li.slick-active {
    background-color: #0268b6;
  }
  .sp-dots li button {
    color: #cfcfcf;
  }
  .sp-dots li.slick-active button {
    color: #0268b6;
  }

  .custom-scroll::-webkit-scrollbar {
    height: 3px;
  }
  .custom-scroll::-webkit-scrollbar-track {
    background-color: #cccccc;
    height: 3px;
  }
  .custom-scroll::-webkit-scrollbar-thumb {
    background-color: #0268b6;
  }

  /* ------------------------------------------------------------- */
  /* header                                                        */
  /* ------------------------------------------------------------- */
  header .inner {
    height: 50px;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
  }
  header .hd-logo {
    width: 250px;
    margin-left: 0;
  }
  header .header-right {
    display: none;
  }
  header .header-nav a {
    color: #fff;
  }
  /* ----- SP Menu ----- */
  .btn-menu {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    top: 0;
    transition: 0.3s;
    z-index: 99;
    background-color: #0268b6;
  }
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
  }
  .menu-trigger span {
    position: absolute;
    left: 23%;
    width: 55%;
    height: 3px;
    background-color: #fff;
    /* border-radius: 4px; */
  }
  .menu-trigger span:nth-of-type(1) {
    top: 13px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 23px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 13px;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(11px) rotate(-315deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(315deg);
  }

  .sp-nav-wrap nav {
    transition: all 0.3s ease;
    transform: translateX(100%);
  }
  .sp-nav-wrap nav.active {
    transform: translateX(0);
  }

  .sp-nav-wrap nav {
    position: fixed;
    z-index: 97;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .sp-nav-wrap .sp-nav {
    width: 100%;
    margin: 0 auto;
  }
  .sp-nav-wrap nav a {
    display: block;
    color: #fff;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    margin-bottom: 45px;
  }
  .sp-nav-wrap nav li:nth-of-type(6) .btn {
    margin-top: 80px;
  }
  .sp-nav-wrap nav li:nth-of-type(7) .btn {
    margin-top: 20px;
  }
  .sp-nav-wrap nav .btn {
    margin-bottom: 0;
  }

  /* ------------------------------------------------------------- */
  /* inquiry                                                       */
  /* ------------------------------------------------------------- */
  .inquiry {
    padding: 80px 0;
  }
  .inquiry h2 {
    font-size: 24px;
    line-height: 1.7;
  }
  .inquiry .btns {
    margin-top: 25px;
  }
  .inquiry .btns .downloads {
    margin-top: 20px;
  }

  .solution {
    padding: 40px 0;
  }
  .solution .inner {
    width: 90%;
  }
  .solution h2 {
    font-size: 24px;
  }
  .solution .solution-list {
    margin-top: 40px;
  }
  .solution .solution-list li {
    width: 100%;
    padding: 0;
    padding-bottom: 40px;
  }
  .solution .solution-list li:nth-of-type(odd) {
    /* border-right: 1px solid rgba(0, 0, 0, 0.15); */
    /* padding-right: 5vw; */
  }
  .solution .solution-list li:nth-of-type(even) {
    border-right: none;
    /* padding-left: 5vw; */
  }
  .solution .solution-list li:nth-of-type(-n + 4) {
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.15); */
  }
  .solution .solution-list li:nth-of-type(n + 3) {
    margin-top: 20px;
  }
  .solution .solution-list li:nth-of-type(n + 4) {
    margin-top: 20px;
  }
  .solution .solution-list li:nth-of-type(-n + 2)::after {
    content: none;
  }
  .solution .solution-list li:nth-of-type(odd)::after {
    content: "";
    display: block;
    width: 2px;
    height: 20px;
    position: absolute;
    right: -1px;
    bottom: 0;
    background-color: #f3f1e5;
  }
  .solution .solution-list a > img {
    width: 100%;
  }
  .solution .solution-list strong {
    font-size: 18px;
  }
  /* .solution .solution-list p {
		min-height: 45vw;
	} */
  .solution .btn {
    margin-top: 20px;
  }

  /* ------------------------------------------------------------- */
  /* footer                                                        */
  /* ------------------------------------------------------------- */
  footer {
    padding-top: 20px;
    padding-bottom: 25px;
    position: relative;
    overflow: hidden;
  }
  footer .inner {
    width: 90%;
  }
  footer .link-list-first.left {
    justify-content: space-between;
  }
  footer .link-list-first li {
    width: 47%;
    margin-right: 0;
    line-height: 2.3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  footer .link-list-second {
    flex-wrap: wrap;
    margin-top: 0;
  }
  footer .link-list-second ul {
    padding: 0;
    width: 100%;
    border-right: none;
  }
  footer .link-list-second ul:nth-of-type(1),
  footer .link-list-second ul:nth-of-type(2),
  footer .link-list-second ul:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  footer .link-list-second ul:nth-of-type(n + 2) {
    display: none;
  }
  footer a.toggle-footer {
    position: relative;
    display: block;
    width: 100%;
    line-height: 37px;
  }
  footer a.toggle-footer::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 0;
    width: 19px;
    height: 100%;
    background-image: url(../img/icon-toggle@2x.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all 0.3s ease;
  }
  footer a.toggle-footer.open::after {
    transform: rotate(180deg);
  }
  footer .link-list-second ul li {
    line-height: 2.3;
    margin-bottom: 0;
  }
  footer .logo {
    position: absolute;
    bottom: 63px;
    left: 50%;
    transform: translateX(-50%);
  }
  footer .logo img {
    margin: 0 auto;
    height: 19px;
  }
  footer .link-list-last {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 37px 0 80px;
  }
  footer .link-list-last a {
    margin: 0 12px;
  }
  footer .cr {
    width: 100%;
    text-align: center;
  }

  /* ------------------------------------------------------------- */
  /* page                                                          */
  /* ------------------------------------------------------------- */
  .page .mv {
    padding-top: 50px;
  }
  .page .mv .outer {
    min-height: auto;
    height: calc(61vw + 50px);
  }
  .page .mv h1 {
    top: 55%;
  }
  .page .mv h1 span {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .page .mv h1 strong {
    font-size: 30px;
  }
  .page .mv h1 small {
    margin-top: 15px;
    font-size: 17px;
  }
  .page .breadcrumb {
    font-size: 12px;
  }
}

.archiveDoc {
  position: relative;
}
.archiveDoc::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 360px;
  background: url("/digital/asset/img/case/bg_shadow02.png") repeat-y left 0;
  background-size: 100% auto;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .archiveDoc::before {
    content: none;
  }
}
.archiveDoc::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url("/digital/asset/img/case/bg_shadow03.png") repeat-x 50% bottom;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .archiveDoc::after {
    content: none;
  }
}
.archiveDoc__spbg,
.archiveDoc__pcbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: no-repeat 50% 0;
  background-size: 100% auto;
  z-index: 10;
}
.archiveDoc__pcbg {
  display: block;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .archiveDoc__pcbg {
    display: none;
  }
}
.archiveDoc__spbg {
  padding-top: 43.75%;
}
@media (min-width: 768px) {
  .archiveDoc__spbg {
    display: none;
  }
}
.archiveDoc__key {
  position: relative;
  max-width: 1500px;
  margin: 0 auto 40px auto;
  padding: 0 50px;
  overflow: hidden;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .archiveDoc__key {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .archiveDoc__key::before {
    content: "";
    display: block;
    padding-top: 43.75%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.archiveDoc__key__img {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 36.60322%;
  max-width: 500px;
  background-repeat: no-repeat;
  background-position: 50% bottom;
  background-size: contain;
  z-index: 10;
}
.archiveDoc__key__img::before {
  content: "";
  display: block;
  padding-top: 62%;
}
@media screen and (max-width: 767px) {
  .archiveDoc__key__img {
    bottom: auto;
    right: 4%;
    width: 44%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.archiveDoc__key__in {
  position: relative;
  display: table;
  width: 100%;
  height: 360px;
  box-sizing: border-box;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .archiveDoc__key__in {
    display: block;
    width: auto;
    height: auto;
    padding: 25px 15px;
    background: #000;
  }
}
.archiveDoc__key__in2 {
  display: table-cell;
  position: relative;
  vertical-align: middle;
  padding: 0 55px 0 185px;
}
@media screen and (max-width: 767px) {
  .archiveDoc__key__in2 {
    display: block;
    padding: 0 0 0 78px;
  }
}
.archiveDoc__key__label {
  position: absolute;
  display: table;
  top: 50%;
  left: 0;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: #57bc3b;
  margin-top: -82.5px;
}
.archiveDoc__key__label > p {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-size: 1.85714rem;
  font-weight: 700;
  line-height: 1.15385;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .archiveDoc__key__label {
    width: 70px;
    height: 70px;
    margin-top: -35px;
  }
  .archiveDoc__key__label p {
    font-size: 1rem;
  }
}
.archiveDoc__key__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-align: left;
}
.archiveDoc__key__title span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .archiveDoc__key__title {
    font-size: 1.53846rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
}
.archiveDoc__key__sub {
  margin-top: 10px;
  color: #fff;
  font-family: "Montserrat", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    "游ゴシック体", "Yu Gothic", "YuGothic", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.42857rem;
  line-height: 1.4;
  letter-spacing: 1.5px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .archiveDoc__key__sub {
    margin-top: 8px;
    font-size: 0.76923rem;
    letter-spacing: 1px;
  }
}
.archiveDoc__key__copy {
  margin-top: 20px;
  color: #fff;
  font-family: "Montserrat", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    "游ゴシック体", "Yu Gothic", "YuGothic", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  .archiveDoc__key__copy br {
    display: none;
  }
}

.mktoForm .mktoLabel {
  padding-bottom: 10px;
}

.footer {
  position: relative;
  padding: 0 50px;
  height: auto;
  margin: 40px auto 0;
  background: #fff;
}
.footer a {
  color: #000;
  font-size: 14px;
}
.footer .footer_under {
  position: relative;
  max-width: 1040px;
  height: 160px;
  margin: 0 auto;
  padding: 0;
}
.footer .footer__nav {
  position: absolute;
  left: 180px;
  top: 58px;
  font-size: 14px;
  line-height: 1.4;
}
.footer .footer__nav > li {
  display: inline-block;
  margin-left: 35px;
}
.footer .footer__nav > li:first-child {
  margin-left: 0;
}
.footer .footer__nav__link--window {
  padding-right: 18px;
  display: inline-block;
  position: relative;
  transition: color 250ms ease-out;
}
.footer .footer__nav__link__icon {
  display: block;
  position: absolute;
  right: 0;
  top: 6px;
  width: 8px;
  height: 6px;
  margin: 0 0 2px 2px;
  background: #000;
  transition: color 250ms ease-out;
}
.footer .footer__nav__link__icon::before,
.footer .footer__nav__link__icon::after {
  content: "";
  display: block;
  position: absolute;
  background: #000;
  transition: color 250ms ease-out;
}
.footer .footer__nav__link__icon::before {
  left: -2px;
  top: 3px;
  width: 1px;
  height: 5px;
}
.footer .footer__nav__link__icon::after {
  left: -2px;
  top: 7px;
  width: 7px;
  height: 1px;
}
.footer .footer__logo {
  display: block;
  position: absolute;
  left: 0;
  top: 58px;
  width: 112px;
  height: 19px;
  background: url(/digital/asset/img/logo_toppan01.svg) no-repeat;
  background-size: contain;
}
.footer .footer__copyright {
  position: absolute;
  left: 0;
  top: 93px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 0;
    margin-top: 0;
  }
  .footer .footer_under {
    height: auto;
    padding: 30px 15px;
  }
  .footer .footer__nav {
    position: static;
    margin-top: 25px;
    font-size: 1rem;
    text-align: center;
  }
  .footer .footer__nav > li {
    margin-left: 25px;
  }
  .footer .footer__logo {
    position: static;
    width: 87px;
    height: 15px;
    margin: 25px auto 0;
  }
  .footer .footer__copyright {
    position: static;
    margin-top: 20px;
    font-size: 0.841615rem;
    text-align: center;
  }
}

footer .link-list-second {
  display: grid;
  grid-template-columns: 76px 1fr 1fr 1fr;
}
@media screen and (max-width: 767px) {
  footer .link-list-second {
    grid-template-columns: 1fr;
  }
}

:root header .p-header__mega-trigger {
  font-weight: 700;
}
#top.contactPage.formPage .box_scroll span, .formPage .box_scroll strong {
  font-size: 1.92rem !important;
}
.page.contents-top.contactPage .mv {
  padding-top: 0;
}
/* :root main {
  margin-top: calc(var(--unit) * 120 + var(--bx-header-height));
}
:root main#topcont {
  margin-top: 0;
}
:root main .p-aboutus-feature {
  padding: calc(100 * var(--unit)) 1.5rem 6rem;
}
:root .page404 {
  margin-top: calc(var(--unit) * 120 + var(--bx-header-height));
} */
#top.page.contents-top .mv {
  padding-top: 0!important;
}
#top.page.new-service {
  margin-top: calc(var(--unit) * 120 + var(--bx-header-height))!important;
}
#top.page.recruit main {
  margin-top: calc(var(--unit) * 120 + var(--bx-header-height))!important;
}
#crosstalk.recruit main {
  margin-top: calc(var(--unit) * 120 + var(--bx-header-height))!important;
}
#column.recruit main {
  margin-top: calc(var(--unit) * 120 + var(--bx-header-height))!important;
}
#recruit2020_interview {
  padding-top: calc(var(--unit) * 120 + var(--bx-header-height))!important;
}
#top.page.contents-top {
  margin-top: calc(var(--unit) * 120 + var(--bx-header-height))!important;
}
#top.page.contents-detail {
  margin-top: calc(var(--unit) * 120 + var(--bx-header-height))!important;
}
.p-bx-header {
  z-index: 100;
  position: fixed;
  top: calc(var(--unit) * 120);
  left: 0;
  width: 100%;
  height: calc(60 * var(--unit));
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #000000;
  color: #ffffff;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
.p-bx-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: calc(24 * var(--unit));
}
.p-bx-header__logo {
  font-size: calc(24 * var(--unit));
  letter-spacing: 0.05em;
}
.p-bx-header__logo a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}
.p-bx-header__nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.p-bx-header__list {
  display: flex;
  align-items: center;
  height: 100%;
}
.p-bx-header__item {
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  /* PC: アイテム間の縦線（パイプ） */
}
.p-bx-header__item:not(:last-child)::after {
  display: block;
  width: 1px;
  height: calc(25.5 * var(--unit));
  margin: 0 calc(35 * var(--unit));
  background-color: rgba(255, 255, 255, 0.3);
  content: "";
}
.p-bx-header__item--has-sub.is-active .p-bx-header__sub-list {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.p-bx-header__link {
  color: #ffffff !important;
  font-weight: bold;
  font-size: calc(20 * var(--unit));
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.p-bx-header__link:hover {
  opacity: 0.7;
}
.p-bx-header__sub-list {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: calc(-35 * var(--unit));
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: calc(200 * var(--unit));
  padding: calc(12 * var(--unit)) 0;
  transform: translateY(calc(10 * var(--unit)));
  border-radius: 0 0 calc(8 * var(--unit)) calc(8 * var(--unit));
  background-color: #ffffff !important;
  box-shadow: 0 calc(8 * var(--unit)) calc(16 * var(--unit)) rgba(0, 0, 0, 0.15);
  font-size: calc(16 * var(--unit));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.p-bx-header__sub-list::before {
  position: absolute;
  top: calc(-20 * var(--unit));
  left: 0;
  width: 100%;
  height: calc(20 * var(--unit));
  content: "";
}
.p-bx-header__sub-item {
  width: 100%;
}
.p-bx-header__sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(10 * var(--unit)) calc(24 * var(--unit));
  color: #000000 !important;
  font-weight: bold;
  font-size: calc(16 * var(--unit));
  text-decoration: none;
  transition: background-color 0.2s;
}
.p-bx-header__sub-link::after {
  display: inline-block;
  width: calc(5 * var(--unit));
  height: calc(5 * var(--unit));
  margin-left: calc(16 * var(--unit));
  transform: rotate(45deg);
  border-top: calc(2 * var(--unit)) solid #000000 !important;
  border-right: calc(2 * var(--unit)) solid #000000 !important;
  content: "";
}
.p-bx-header__sub-link:hover {
  background-color: #f5f5f5 !important;
}
.p-bx-header__cta {
  height: 100%;
  margin-left: calc(35 * var(--unit));
}
.p-bx-header__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 calc(24 * var(--unit));
  background-color: #7030a0 !important;
  color: #ffffff !important;
  font-weight: bold;
  font-size: calc(20 * var(--unit));
  text-decoration: none;
  transition: background-color 0.3s;
}
.p-bx-header__cta-btn:hover {
  background-color: #5a2781;
}
#action-wrap {
  display: none!important;
}

#top.page.new-base footer h2 {
  margin-bottom: 0;
}

@media screen and (max-width: 767.98px)  {
  /* :root main {
    margin-top: calc(var(--unit) * 60 + var(--bx-header-height));
  }
  :root main#topcont {
    margin-top: calc(var(--unit) * 60 + var(--bx-header-height));
  }
  :root .page404 {
    margin-top: calc(var(--unit) * 60 + var(--bx-header-height));
  } */
  .page.contents-top.contactPage .mv {
    padding-top: 0;
  }
  #top.page.new-service {
    margin-top: calc(var(--unit) * 60 + var(--bx-header-height))!important;
  }
  #top.page.recruit main {
    margin-top: calc(var(--unit) * 60 + var(--bx-header-height))!important;
  }
  #crosstalk.recruit main {
    margin-top: calc(var(--unit) * 60 + var(--bx-header-height))!important;
  }
  #column.recruit main {
    margin-top: calc(var(--unit) * 60 + var(--bx-header-height))!important;
  }
  #recruit2020_interview {
    padding-top: calc(var(--unit) * 60 + var(--bx-header-height))!important;
  }
  #top.page.contents-top {
    margin-top: calc(var(--unit) * 60 + var(--bx-header-height))!important;
  }
  #top.page.contents-detail {
    margin-top: calc(var(--unit) * 60 + var(--bx-header-height))!important;
  }
  #top.page.contents-top .mv {
    padding-top: 0!important;
  }
  .p-bx-header {
    top: calc(var(--unit) * 60);
    height: auto;
    border-bottom: none;
    background-color: #000000;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .p-bx-header__container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  .p-bx-header__logo {
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s, visibility 0.4s;
  }
  .p-bx-header__nav {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .p-bx-header__list {
    visibility: visible;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    height: auto;
    margin-bottom: 0 !important;
    padding: calc(16 * var(--unit)) calc(4 * var(--unit)) !important;
    padding: 0 !important;
    gap: calc(2 * var(--unit)) calc(5 * var(--unit));
    gap: 0 !important;
    border-top: 0.2rem solid rgba(255, 255, 255, 0.3) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    line-height: 1.2;
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s, visibility 0.4s;
  }
  .p-bx-header__item:not(:last-child)::after {
    display: none;
  }
  .p-bx-header__item {
    justify-content: center;
    height: auto;
    border-bottom: 0.2rem solid rgba(255, 255, 255, 0.3);
  }
  .p-bx-header__item:nth-child(1), .p-bx-header__item:nth-child(4) {
    width: 28%;
    border-right: 0.2rem solid rgba(255, 255, 255, 0.3);
  }
  .p-bx-header__item:nth-child(2), .p-bx-header__item:nth-child(5) {
    width: 32%;
    border-right: 0.2rem solid rgba(255, 255, 255, 0.3);
  }
  .p-bx-header__item:nth-child(3), .p-bx-header__item:nth-child(6) {
    width: 40%;
  }
  .p-bx-header__item--has-sub {
    width: 100% !important;
    border-bottom: none;
  }
  .p-bx-header__item--has-sub > .p-bx-header__link {
    display: none;
  }
  .p-bx-header__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: calc(5 * var(--unit)) 0;
    font-size: calc(16 * var(--unit)) !important;
  }
  .p-bx-header__sub-list {
    display: flex;
    visibility: visible;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    min-width: auto;
    padding: 0;
    transform: none;
    background-color: transparent !important;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
  }
  .p-bx-header__sub-list::before {
    display: none;
  }
  .p-bx-header__sub-item {
    width: auto;
    padding: calc(5 * var(--unit)) 0;
  }
  .p-bx-header__sub-item:nth-child(2n-1) {
    padding-right: calc(40 * var(--unit));
    border-right: 0.2rem solid rgba(255, 255, 255, 0.3);
  }
  .p-bx-header__sub-item:nth-child(2n) {
    padding-left: calc(40 * var(--unit));
  }
  .p-bx-header__sub-link:hover {
    background-color: transparent !important;
    opacity: 0.7;
  }
  .p-bx-header__sub-link {
    padding: 0;
    color: #ffffff !important;
    font-size: calc(16 * var(--unit));
  }
  .p-bx-header__sub-link::after {
    display: none;
  }
  .p-bx-header__cta {
    z-index: 101;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(40 * var(--unit));
    margin-left: 0;
    transform: translateY(0);
    pointer-events: auto;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .p-bx-header__cta-btn {
    width: 100%;
    font-size: calc(14 * var(--unit));
  }
  .p-bx-header.is-hidden {
    border-color: transparent;
    background-color: transparent;
    box-shadow: none;
  }
  .p-bx-header.is-hidden .p-bx-header__logo,
  .p-bx-header.is-hidden .p-bx-header__list {
    visibility: hidden;
    transform: translateY(-110%);
    opacity: 0;
  }
}