@charset "utf-8";

:root{
  --header-h: 0px; 
  --anchor-offset: 0px;
  --footer-h: 0px;
  scroll-padding-top: var(--anchor-offset);
  scroll-behavior: smooth;
}

.site-nav-area{
  position: sticky;
  top: var(--header-h);
  z-index: 99;
  background: rgba(255, 255, 255, 1);
}

.template-products::after {
  height: var(--footer-h);
  content: "";
  display: block;
}

 /*product-template__media*/
.product-template__media {
  text-align: center;
  padding: 72px 15px 0;
}

.product-template__image {
  max-width: 1080px;
  width: 100%;
}

 /*page-fv*/
p.product-label {
  margin-top: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: unset;
  color: rgba(190, 0, 0, 1);
}

@media screen and (max-width: 1280px) {
  p.product-label {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.2;
  }
}

 /*site-nav*/
.site-nav-area {
  margin-top: 60px;
}
 
.site-nav {
  z-index: 90;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(153, 153, 153, 1);
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: auto;
  max-width: 1080px;
  width: 100%;
}

.site-nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.site-nav__link.active {
  color: rgba(207, 20, 43, 1);
}

.site-nav__link::after {
  content: "";
  width: 1px;
  height: 20px;
  background: rgba(153, 153, 153, 1);
}

.site-nav__item:first-child .site-nav__link::before {
  content: "";
  width: 1px;
  height: 20px;
  background: rgba(153, 153, 153, 1);
}

main {
  position: relative;
}

.site-nav.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1;
}

.site-nav.is-stop {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 90;
}

.site-nav__item,
.site-nav__link {
  min-width: 0;
}

 /*page-nav*/
.page-nav {
  margin: auto;
  padding: 30px 15px;
  max-width: 1080px;
  width: 100%;
}

.page-nav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.page-nav__link {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.page-nav__link::after {
  flex-shrink: 0;
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(/wp-content/uploads/img/business-icon-down.png);
  background-size: cover;
  background-repeat: no-repeat;
}

 /*product-summary*/
.product-summary {
  padding: 72px 15px 180px;
}

.product-summary__inner {
  margin: auto;
  max-width: 1080px;
  width: 100%;
}

.title-main {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 18px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.title-main::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: rgba(190, 0, 0, 1);
}

.title-main::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 0;
  width: 180px;
  height: 2px;
  background: rgba(217, 217, 217, 1);
}

.title-sub {
  position: relative;
  margin-bottom: 32px;
  padding-left: 17px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(0, 0, 0, 1);
}

.title-sub::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 100%;
  background: rgba(190, 0, 0, 1);
}

.product-summary__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

a.product-summary__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 16px;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(207, 20, 43, 1);
}

.product-summary__link::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/wp-content/uploads/img/red-arrow.svg") no-repeat center/contain;
}

@media screen and (max-width: 1110px) {
  .title-main {
    padding-bottom: 12px;
    font-size: 24px;
  }

  .title-sub {
    padding-left: 16px;
    font-size: 20px;
  }
}

 /*product-catalog*/
.product-catalog {
  background: #F3F3F3;
}

.product-catalog__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 62px;
  margin: auto;
  padding: 80px 40px;
  max-width: 1440px;
  width: 100%;
}

.product-catalog__title {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}

.product-catalog__title::before {
  content: "";
  width: 100px;
  height: 100px;
  background: url("/wp-content/uploads/img/document.svg") no-repeat center/contain;
}

.product-catalog__link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 56px;
  padding: 12px;
  width: 400px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(201, 201, 201, 1);
  border-radius: 4px;
}

.product-catalog__link::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url("/wp-content/uploads/img/red-arrow.svg") no-repeat center/contain;
}

.product-catalog__link:hover {
  opacity: 1;
}

@media screen and (max-width: 1110px) {
  .product-catalog__inner {
    flex-direction: column;
    padding: 56px 15px;
  }

  .product-catalog__title {
    gap: 20px;
    font-size: 20px;
  }

  .product-catalog__title::before {
    width: 60px;
    height: 60px;
  }

  .product-catalog__link {
    gap: 30px;
    width: 330px;
  }
}

 /*product-contact*/
.product-contact {
  background: rgba(207, 20, 43, 1);
}

.product-contact__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 80px 40px;
  max-width: 1440px;
  width: 100%;
}

.product-contact__title {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 255, 255, 1);
}

.product-contact__title::before {
  content: "";
  width: 100px;
  height: 100px;
  background: url("/wp-content/uploads/img/white-mail.svg") no-repeat center/contain;
}

.product-contact__link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 94px;
  padding: 14px;
  width: 400px;
  height: 72px;
  background: #FFF;
  border: 1px solid rgba(201, 201, 201, 1);
  border-radius: 4px;
}

.product-contact__link::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url("/wp-content/uploads/img/red-arrow.svg") no-repeat center/contain;
}

.product-contact__link:hover {
  opacity: 1;
}

.product-contact__link span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: 0.046em;
  color: rgba(207, 20, 43, 1);
}

.product-contact__link span::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("/wp-content/uploads/img/red-mail.svg") no-repeat center/contain;
}

@media screen and (max-width: 1110px) {
  .product-contact__inner {
    flex-direction: column;
    gap: 62px;
    padding: 56px 15px;
  }

  .product-contact__title {
    gap: 20px;
    font-size: 20px;
  }

  .product-contact__title::before {
    width: 60px;
    height: 60px;
  }

  .product-contact__link {
    justify-content: center;
    gap: 20px;
    width: 330px;
  }
}

 /*panel*/
 .panel-area {
  display: flex;
  gap: 16px;
  margin: auto;
  max-width: 1080px;
  width: 100%;
}

.panel {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.panel__title {
  margin: 0;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.14;
  color: rgba(255, 255, 255, 1);
  background: #BE0000;
}

.panel__body {
  flex-grow: 1;
  padding: 16px;
  border: 1px solid rgba(190, 0, 0, 1);
}

.panel__lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(190, 0, 0, 1);
}

.panel__text {
  font-weight: 400;
  line-height: 1.4;
}

.panel__text--md {
  font-size: 16px;
}

.panel__text--sm {
  font-size: 14px;
}

.flow--horizontal {
  gap: 32px;
}

.panel.panel--small {
  width: 378px;
  flex: auto;
}

.panel.panel--large {
  width: 670px;
  flex: auto;
}

.panel__list {
  padding-left: 40px;
  list-style: disc;
}

.panel__definition {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.panel__definition dt {
  flex-shrink: 0;
}

.panel__definition dt::after {
  content: ":";
  position: relative;
  top: -2px;
  left: 6px;
}

@media screen and (max-width: 1110px) {
  .panel-area {
    flex-direction: column;
    align-items: center;
  }

  .panel {
    width: 100%;
  }

  .panel__definition {
    flex-direction: column;
    gap: 0px;
  }
}

 /*infobar*/
.infobar-area {
  margin: auto;
  max-width: 1080px;
  width: 100%;
}

.infobar {
  display: flex;
}

.infobar__title {
  padding: 8px 16px;
  width: 20%;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.26;
  color: rgba(255, 255, 255, 1);
  background: rgba(190, 0, 0, 1);
}

.infobar__body {
  padding: 6px 16px;
  width: 80%;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  border: 1px solid rgba(190, 0, 0, 1);
}

@media screen and (max-width: 1110px) {
  .infobar {
    flex-direction: column;
    align-items: center;
  }

  .infobar__title {
    width: 100%;
  }

  .infobar__body {
    width: 100%;
  }
}

 /*flow*/
.flow--horizontal > :first-child {
  position: relative;
}

.flow--horizontal > :first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -27px;
  width: 18px;
  height: 40px;
  background: url("/wp-content/uploads/img/flow-arrow-green.svg") no-repeat center/contain;
  transform: translateY(-50%);
}

.flow--vertical {
  position: relative;
  margin-bottom: 32px;
}

.flow--vertical::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -36px;
  margin: auto;
  width: 18px;
  height: 40px;
  background: url("/wp-content/uploads/img/flow-arrow-green.svg") no-repeat center/contain;
  transform: rotate(90deg);
}

@media screen and (max-width: 1110px) {
  .flow--horizontal > :first-child::after {
    top: auto;
    right: 0;
    left: 0;
    bottom: -36px;
    margin: auto;
    transform: rotate(90deg) translateY(0);
  }
}

 /*note*/
.note__list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.note__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

/* *1, *2...（番号あり） */
.note__list--asterisk {
  counter-reset: note;
}

.note__list--asterisk .note__item {
  counter-increment: note;
}

.note__list--asterisk .note__item::before {
  content: "*" counter(note);
  font-size: 12px;
  line-height: 2;
}

/* ※（番号なし） */
.note__list--mark .note__item::before {
  content: "※";
  font-size: 12px;
  line-height: 2;
}

/* 表パーツ */
.scrollbox {
  max-width: 100%;
  width: 1080px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
 
.data-table {
  border-collapse: collapse;
  width: 1080px;
  table-layout: fixed;
}

.data-table__header,
.data-table__cell {
  text-align: left;
  vertical-align: top;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  border: 1px solid rgba(153, 153, 153, 1);
  -webkit-text-size-adjust: none;
}

.data-table__head.darkgray .data-table__header {
  padding: 16px;
  background: rgba(201, 201, 201, 1);
}

.data-table__header {
  background: rgba(222, 222, 222, 1);
  -webkit-text-size-adjust: none;
}

.table-list {
  padding-left: 20px;
  list-style: disc;
}

 /*共通*/
.badge {
  display: inline-block;
  text-align: center;
  width: 68px;
  height: 21px;
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
}

.badge--accent {
  color: rgba(207, 20, 43, 1);
  background: rgba(255, 255, 255, 1);
}

.badge--inverse {
  color: rgba(255, 255, 255, 1);
  background: rgba(207, 20, 43, 1);
}

.super {
  vertical-align: super;
  font-size: 12px;
}

.panel__text--sm .super {
  font-size: 10px;
}

 /*overview*/
.ldtr-overview {
  padding: 72px 15px 180px;
  margin: auto;
  max-width: 1110px;
  width: 100%;
}

 /*overview intro*/
.ldtr-overview-intro__content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.ldtr-overview-intro__text {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.ldtr-overview-intro__image {
  width: 290px;
}

@media screen and (max-width: 1110px) {
  .ldtr-overview-intro__content {
    flex-direction: column;
    align-items: center;
  }
}

 /*overview movie*/
.ldtr-overview-movie {
  margin-top: 32px;
}

.ldtr-overview-movie__media {
  max-width: 1080px;
  width: 100%;
}

.ldtr-overview-movie__icon {
  position: relative;
}

.ldtr-overview-movie__icon {
  max-width: 1080px;
  width: 100%;
}

.ldtr-overview-movie__icon::after {
  content:"";
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:80px;
  height:80px;
  background:url("/wp-content/uploads/img/play-btn.svg") no-repeat center/contain;
  pointer-events:none;
  opacity:0;
  z-index:2;
}

.ldtr-overview-movie__icon.is-paused::after {
  opacity:1;
}

.ldtr-overview-movie__icon {
  cursor:pointer;
}

 /*overview feature*/
.ldtr-overview-feature {
  margin-top: 32px;
}

 /*overview example*/
.ldtr-overview-example {
  margin-top: 32px;
}

.ldtr-overview-example__list {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 8px;
}

.ldtr-overview-example__item {
  flex: 1;
}

.ldtr-overview-example__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.ldtr-overview-example__image {
  width: 524px;
}

@media screen and (max-width: 1110px) {
  .ldtr-overview-example__list {
    flex-direction: column;
    align-items: center;
  }
}

 /*case*/
.ldtr-case {
  padding: 72px 15px 180px;
  margin: auto;
  max-width: 1110px;
  width: 100%;
}

.ldtr-case__list {
  display: flex;
  flex-wrap: wrap; 
  gap: 16px;
}

.ldtr-case__item {
  padding: 20px 16px;
  width: 532px;
  border: 1px solid rgba(222, 222, 222, 1);
}

.ldtr-case__media {
  width: 100%;
  cursor: pointer;
}

.ldtr-case__title {
  margin: 20px auto 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.ldtr-case__text {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

a.ldtr-case__link {
  display: block;
  text-align: center;
  margin: auto;
  width: 300px;
  height: 48px;
  font-size: 20px;
  font-weight: 700;
  line-height: 48px;
  color: rgba(255, 255, 255, 1);
  background: rgba(190, 0, 0, 1);
  border-radius: 8px;
}

@media screen and (max-width: 1110px) {
  .ldtr-case__list {
    flex-direction: column;
    align-items: center;
  }

  .ldtr-case__item {
    max-width: 100%;
  }
}

 /*application*/
.ldtr-application {
  padding: 72px 15px 180px;
  margin: auto;
  max-width: 1110px;
  width: 100%;
}

.ldtr-application-intro__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.ldtr-application-intro__example {
  margin-top: 32px;
}

.ldtr-application-value {
  margin-top: 72px;
}

.ldtr-application-value .panel__lead {
  margin-bottom: 16px;
}

.ldtr-application-environment {
  margin-top: 72px;
}

.ldtr-application-environment .panel__lead {
  margin-bottom: 16px;
}

.ldtr-application-environment .panel__image {
  margin-bottom: 16px;
}

.ldtr-application-environment .panel__text {
  margin-bottom: 10px;
}

.panel__definition.panel__definition--thermal {
  font-size: 14px;
}

.ldtr-application-environment__note {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

@media screen and (max-width: 1110px) {
  .ldtr-application-value .panel {
    max-width: 350px;
  }

  .ldtr-application-environment .panel {
    max-width: 532px;
  }
}

 /*technology*/
.ldtr-technology {
  padding: 72px 15px 180px;
  margin: auto;
  max-width: 1110px;
  width: 100%;
}

.ldtr-technology-lightfastness__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.ldtr-technology-lightfastness__structure {
  margin-top: 32px;
}

.ldtr-technology-lightfastness__structure .title-sub {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ldtr-technology-lightfastness__structure .panel__image {
  margin-bottom: 8px;
}

.ldtr-technology-lightfastness__structure .panel__text + .panel__text {
  margin-top: 14px;
}

.ldtr-technology-lightfastness__structure .note__list {
  margin-top: 24px;
}

.ldtr-technology-durability {
  margin-top: 72px;
}

.ldtr-technology-durability__figures {
  display: flex;
  gap: 32px;
}

.ldtr-technology-durability__figure {
  position: relative;
  max-width: 496px;
}

.ldtr-technology-durability__figure:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -27px;
  width: 18px;
  height: 40px;
  background: url("/wp-content/uploads/img/flow-arrow-gray.svg") no-repeat center/contain;
  transform: translateY(-50%);
}

.ldtr-technology-durability__comparison {
  margin-top: 40px;
}

.panel__image--baseline {
  display: block;
  margin: 16px auto 0;
  width: 264px;
}

.panel__comparison {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.ldtr-technology-durability__comparison .panel--large .panel__title {
  display: flex;
  align-items: center;
  gap: 4px;
}

.panel__image--figure {
  width: 234px;
}

.panel__comparison-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.ldtr-technology-durability__comparison .data-table {
  width: 332px;
}

.ldtr-technology-durability__comparison .badge.badge--inverse {
  display: block;
  margin: 8px auto 0;
  font-weight: 350;
}

.ldtr-technology-durability__comparison .note__list {
  margin-top: 24px;
}

@media screen and (max-width: 1110px) {
  .ldtr-technology-lightfastness .panel {
    max-width: 532px;
  }

  .ldtr-technology-durability__figures {
    flex-direction: column;
    align-items: center;
  }

  .ldtr-technology-durability__figure:first-child::after {
    top: auto;
    right: 0;
    left: 0;
    bottom: -36px;
    margin: auto;
    transform: rotate(90deg) translateY(0);
  }

  .ldtr-technology-durability__comparison .panel {
    max-width: 100%;
  }

  .ldtr-technology-durability__comparison .badge.badge--accent {
    flex-shrink: 0;
  }

  .panel__list {
    padding-left: 20px;
  }

  .panel__comparison {
    flex-direction: column;
    align-items: center;
  }

  .ldtr-technology-durability__comparison .data-table {
    max-width: 332px;
    width: 100%;
  }
}

 /*spec*/
.ldtr-spec {
  padding: 72px 15px 180px;
  margin: auto;
  max-width: 1110px;
  width: 100%;
}

.ldtr-spec-appearance .scrollbox {
  margin-top: 24px;
}

.ldtr-spec-appearance .scrollbox .panel-area {
  width: 1080px;
}

.panel__image--marker {
  display: block;
  margin: 8px auto;
  width: 586px;
}

.panel__media-overview {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  width: 976px;
}

.panel__image--media {
  width: 292px;
}

.data-table.data-table--size {
  width: 666px;
}

.panel__table-label {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.data-table.data-table--performance {
  margin: 8px 0 0;
  width: 976px;
}

.ldtr-spec-specification {
  margin-top: 72px;
}

.ldtr-spec-specification .scrollbox {
  width: 1008px;
}

.ldtr-spec-specification .data-table {
  width: 1008px;
}

.ldtr-spec-specification__media {
  margin-top: 40px;
}

.ldtr-spec-specification__marker .note__list.note__list--asterisk {
  margin-top: 24px;
}

.ldtr-spec-specification__list {
  margin-top: 24px;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  list-style: disc;
}