@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: "Roboto Condensed", "Noto Sans JP", sans-serif,
    "ヒラギノ角ゴ 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: 250px;
  height: auto;
  margin-left: 20px;
}
header .hd-logo.invert {
  display: none;
}
header .header-nav {
  align-items: stretch;
}
header .header-nav li {
  margin-right: 35px;
  display: flex;
  align-items: center;
}
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 (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%;
}
.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 {
  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: 1500px;
  margin: 0 auto;
}

@media screen and (max-width: 1500px) {
  footer .inner {
    width: 90%;
    margin: 0 auto;
  }
}

footer .link-list-first li {
  margin-right: 20px;
}
footer .link-list-second__parent {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 769px) and (max-width: 1500px) {
  footer .link-list-second__parent {
    display: flex;
    gap: 50px;
  }
}
footer .link-list-second {
  margin-top: 20px;
  flex-wrap: nowrap;
}
footer .link-list-second:first-of-type {
  width: 78%;
}
footer .link-list-second:nth-of-type(2) {
  width: 20%;
}

@media screen and (max-width: 769px) {
  footer .link-list-second__parent {
    display: block;
  }
  footer .link-list-second:first-of-type {
    width: 100%;
  }
  footer .link-list-second:nth-of-type(2) {
    width: 100%;
  }
  footer .link-list-second ul:first-of-type {
    border-right: none;
  }
}

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%;
    overflow-x: hidden;
  }
  .outer {
    min-width: 1280px;
    width: 100%;
  }
  footer a:hover {
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  /* ------------------------------------------------------------- */
  /* 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: 200px;
    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 li:nth-of-type(5) .btn {
    margin-top: 80px;
  }
  .sp-nav-wrap nav li:nth-of-type(6) .btn {
    margin-top: 20px;
  }
  .sp-nav-wrap nav .btn {
    margin-bottom: 0;
  }

  /* ------------------------------------------------------------- */
  /* inquiry                                                       */
  /* ------------------------------------------------------------- */
  .inquiry {
    padding: 80px 0;
    background-position: right 25% center;
  }
  .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%;
    height: auto;
  }
  .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:nth-of-type(3),
  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 (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 (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 (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 (max-width: 767px) {
  .archiveDoc__key {
    padding: 0;
  }
}
@media (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 (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 (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 (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 (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 (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 (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 (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 (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;
  }
}

.p-industry {
  padding-bottom: 5rem;
}

@media screen and (max-width: 769px) {
  .p-industry {
    padding-bottom: 4rem;
  }
}

.p-industry.c-bg--or {
  background-color: #f3f1e5;
}

.p-industry .l-container-l {
  padding: 0 5vw;
}

.p-industry-box {
  padding: 5rem 0 0;
}

@media screen and (max-width: 769px) {
  .p-industry-box {
    padding: 4rem 0 0;
  }
}

.c-title-h2-nomal {
  margin-bottom: 3rem;
  color: #0268b6;
  font-weight: 400;
  font-size: clamp(32px, 2.5vw, 45px);
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .c-title-h2-nomal {
    font-size: 26px;
  }
}

.c-list-bnr {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 2px;
  max-width: 1720px;
  margin: 0 auto;
}
.c-list-bnr li {
  width: calc((100% - 2px) / 2);
}
.c-list-bnr li a {
  display: block;
  width: 100%;
  aspect-ratio: 860 / 320;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}
.c-list-bnr li a figure {
  text-align: center;
}

.c-list-bnr li a img {
  min-height: 100%;
  max-width: 860px;
  min-width: 100%;
  transition: 0.5s;
  width: auto;
}
.c-list-bnr li a:hover img {
  transform: scale(1.2, 1.2);
}
.c-list-bnr__ttl {
  position: absolute;
  top: 2rem;
  left: 3rem;
  font-weight: 200;
  font-size: clamp(22px, 2vw, 45px);
  font-family: "Roboto Condensed", sans-serif;
}
.c-list-bnr__ttl span {
  display: block;
  font-weight: 500;
  font-size: clamp(18px, 1.25vw, 25px);
}
.c-list-bnr__txt {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 50%;
  font-size: clamp(14px, 0.8333vw, 16px);
  line-height: 1.5;
}

.c-text-lead {
  padding: 3rem 0;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.7777777778;
  text-align: center;
}
.c-text-lead-s {
  padding: 0 0 3rem 0;
  font-weight: 400;
  font-size: clamp(14px, 0.8333vw, 16px);
  line-height: 1.75;
  text-align: center;
}
.c-text-lead-l {
  padding: 3rem 0;
  font-weight: 500;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 2;
  text-align: center;
}
.c-text-nt {
  padding-top: 4rem;
  font-size: clamp(22px, 2vw, 45px);
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-weight: 300;
}
.c-text-cs {
  font-size: clamp(18px, 1.25vw, 25px);
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-weight: 300;
}

@media screen and (max-width: 769px) {
  .c-list-bnr li {
    width: 100%;
    max-height: none;
  }
  .c-list-bnr li a {
    aspect-ratio: auto;
  }
  .c-list-bnr li a img {
    display: none;
  }
  .c-list-bnr li:nth-child(1) a {
    height: 250px;
    background: url(../img/industry/bnr__001.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .c-list-bnr li:nth-child(2) a {
    height: 250px;
    background: url(../img/industry/bnr__002.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .c-list-bnr li:nth-child(3) a {
    height: 250px;
    background: url(../img/industry/bnr__003.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .c-list-bnr li:nth-child(4) a {
    height: 250px;
    background: url(../img/industry/bnr__004.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .c-list-bnr li:nth-child(5) a {
    height: 250px;
    background: url(../img/industry/bnr__005.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .c-list-bnr li:nth-child(6) a {
    height: 250px;
    background: url(../img/industry/bnr__006.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .c-list-bnr__summary p {
    padding: 0 0 3rem 0;
    font-size: clamp(16px, 0.8333vw, 18px);
    line-height: 1.75;
    text-align: center;
  }
}

/* header改修 */
header .header-nav li {
  position: relative;
}
/* header .header-nav li:hover .header-sub {
  display: block;
} */

.header-sub {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
}
.header-nav .menu-parent:hover {
  cursor: pointer;
}

.header-sub a {
  display: block;
  margin-bottom: 2px;
  padding: 5px 15px;
  background-color: #0268b6;
  color: #fff !important;
  text-align: center;
}

.header-nav .header-sub .header-sub-item {
  margin-right: 0;
  display: block;
}

.header-sub-sp {
  display: block;
  width: 100%;
  margin-top: 2rem;
}

.header-sub-sp a {
  margin-bottom: 1rem !important;
  padding-left: 2rem;
}

.sp-nav-inner {
  width: 80%;
  margin: 0 auto;
}

.sp-nav-wrap nav a,
.sp-nav-wrap nav li {
  display: block;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  margin-bottom: 45px;
}

/* aタグなし */
header .header-nav li {
  color: #fff;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

header.invert .header-nav li {
  color: #000;
}

@media screen and (max-width: 1000px) {
  header .header-nav li {
    margin-right: 15px;
  }
  header .header-nav li a {
    font-size: 14px;
  }

  header .hd-logo {
    width: 180px;
  }
}

/* フッター */
/* footer .link-list-second ul:first-of-type {
	width: 5rem;
}

@media screen and (max-width: 769px) {
	footer .link-list-second ul:first-of-type {
		width: 100%;
	}
}

footer .link-list-second ul:nth-of-type(n+2) {
	width: calc((100% - 5rem) / 2);
}

@media screen and (max-width: 769px) {
	footer .link-list-second ul:nth-of-type(n+2) {
		width: 100%;
	}
} */

@media screen and (max-width: 769px) {
  .footer-link-sub {
    display: none; /* 初期状態で非表示 */
  }

  .footer-link-sub li {
    width: 100% !important;
    border-bottom: none !important;
  }

  .menu-parent {
    position: relative;
    width: 100% !important;
  }

  /* .menu-parentに::after擬似要素を追加 */
  .menu-parent::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; /* スムーズに回転させる */
  }

  /* .menu-parentにopenクラスがついたときにアイコンを回転 */
  .menu-parent.open::after {
    transform: rotate(180deg); /* 180度回転 */
  }
}

/* aタグなし*/
footer li {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

/* 250819_エネルギーソリューションページ作成*/
.tac {
  text-align: center !important;
}
