@charset "UTF-8";

/*------------------------------------------------------------
  Utility
------------------------------------------------------------*/
.u-dsp-pc {
  display: block;
} 

.u-dsp-sp {
  display: none;
} 

@media screen and (max-width: 768px) {
  .u-dsp-pc {
    display: none;
  } 

  .u-dsp-sp {
    display: block;
  } 
}

/*------------------------------------------------------------
  Component
------------------------------------------------------------*/
.c-button {
  display: inline-block;
  padding: 16px 30px;
  border: 1px solid #444444;
  border-radius: 40px;
  color: #000000;
  text-decoration: none;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: #fff;
}

.c-button.is-gray {
  background-color: #f5f5f5;
}

.c-button.is-pdf {
  position: relative;
}

.c-button.is-pdf::after {
  content: "";
  background: url(../img/index/icon_pdf.gif) no-repeat center center / contain;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
}

@media (any-hover: hover) and (pointer: fine) {
  .c-button:hover {
    background: #444444;
    color: #ffffff;
  }
}

/* Component Responsive */
@media screen and (max-width: 768px) {
  .c-button {
    font-size: 16px;
    padding: 12px 20px;
  }

  .c-button.is-pdf::after {
    margin-bottom: -3px;
  }
}

/*------------------------------------------------------------
  MV Section
------------------------------------------------------------*/
.p-llt__mv {
  position: relative;
}

.p-llt__mv-heading {
  position: absolute;
  bottom: 82px;
  right: 111px;
  color: #fff;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 39.5px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-llt__mv-img {
  height: calc(100vh - 100px);
  margin-top: 43px;
}

.p-llt__mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-llt-contents {
  max-width: 1370px;
  margin: 0 auto;
  padding: 143px 20px 0;
  position: relative;
}

.p-llt-contents::after {
  content: "";
  display: block;
  width: 17%;
  height: 90%;
  max-height: 2800px;
  background-image: url("../img/index/contents_bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  z-index: -1;
}

/* MV Section Responsive */
@media screen and (max-width: 767px) {
  .p-llt__mv-img {
    height: 591px;
  }

  .p-llt__mv-heading {
    position: absolute;
    bottom: 20px;
    right: 10px;
    color: #fff;
    text-align: right;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .p-llt__mv-heading img {
    width: 48px;
    height: auto;
    object-fit: contain;
  }

  .p-llt-contents {
    padding: 80px 15px 0;
  }
}

@media screen and (max-width: 539px) {
  .p-llt__mv-img {
    height: 375px;
  }
}

/*------------------------------------------------------------
  About Section
------------------------------------------------------------*/
.p-llt-about__title {
  text-align: center;
}

.p-llt-about__title h2 {
  font-family: "Kozuka Mincho Pro", serif;
  font-size: 60px;
  font-weight: normal;
  color: #444;
  line-height: 39.5px;
}

.p-llt-about__title p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: normal;
  color: #000;
  line-height: 39.5px;
  margin-top: 28px;
}

.p-llt-about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 30px 50px;
  margin-top: 50px;
}

.p-llt-about__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / -1;
  gap: 20px;
}

.p-llt-about__item h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  color: #444;
  line-height: 40px;
  margin: 0;
  align-self: center;
}

.p-llt-about__image {
  width: 100%;
}

.p-llt-about__image img {
  width: 100%;
  object-fit: contain;
}

.p-llt-about__item p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #444;
  line-height: 32px;
  margin: 0;
  text-align: left;
}

.p-llt-about__item p span {
  font-size: 13px;
  display: block;
}

/* 本文＋注釈リストを3行目の1セルに収める（subgrid の子は h3 / 画像 / 本文ブロックの3つに揃える） */
.p-llt-about__text .caution-list2 {
  margin: 12px 0;
  padding: 0 0 0 1em;
  list-style: none;
}

/* ぶら下げ：※行頭／改行後は本文頭で揃える */
.p-llt-about__text .caution-list2 > li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  margin: 0 0 0.5em;
  text-indent: -1em;
}

.p-llt-about__text .caution-list2 > li:last-child {
  margin-bottom: 0;
}

/* ※1〜3 付き行のみ（※のみの行は上記の -1em のまま） */
.p-llt-about__text .caution-list2 > li.caution-list2__item--numbered {
  padding-left: 1.5em;
  text-indent: -2.2em;
}

/* 抗ウイルス性能注記の見出しのみ */
.p-llt-about__item p.p-llt-about__antivirus-note {
  font-size: 14px;
}

/* About Section Responsive */
@media screen and (max-width: 767px) {
  .p-llt-about__title h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .p-llt-about__title p {
    font-size: 16px;
    line-height: 1.5;
  }

  .p-llt-about__grid {
    display: block;
  }

  .p-llt-about__item {
    display: block;
  }

  .p-llt-about__item + .p-llt-about__item {
    margin-top: 32px;
  }

  .p-llt-about__item h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 8px;
  }

  .p-llt-about__item p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 8px;
  }

  .p-llt-about__image {
    margin-top: 8px;
  }
}

/*------------------------------------------------------------
  Concept Section
------------------------------------------------------------*/
.p-llt-concept {
  margin-top: 120px;
}

.p-llt-concept__title {
  text-align: center;
  margin-bottom: 80px;
}

.p-llt-concept__title h2 {
  font-family: "Kozuka Mincho Pro", serif;
  font-size: 60px;
  font-weight: normal;
  color: #444;
  line-height: 39.5px;
  margin: 0 0 25px 0;
}

.p-llt-concept__title p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: normal;
  color: #000;
  line-height: 39.5px;
  margin: 0;
}

.p-llt-concept__content {
  display: flex;
  align-items: center;
  gap: 3%;
  max-width: 1160px;
  margin: 0 auto;
}

.p-llt-concept__left {
  width: 62%;
}

.p-llt-concept__left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-llt-concept__feature-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  color: #5970a7;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #5970a7;
}

.p-llt-concept__specs {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.p-llt-concept__right {
  width: 35%;
}

.p-llt-concept__sizes {
  margin-top: 64px;
}

.p-llt-concept__sizes-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  color: #5970a7;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #5970a7;
}

.p-llt-concept__size {
  display: flex;
  justify-content: center;
  width: 100%;
}

.p-llt-concept__size img {
  max-width: 406px;
  width: 100%;
  object-fit: contain;
}

/* Concept Section Responsive */
@media screen and (max-width: 767px) {
  .p-llt-concept {
    margin-top: 80px;
  }

  .p-llt-concept__title {
    margin-bottom: 50px;
  }

  .p-llt-concept__title h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .p-llt-concept__title p {
    font-size: 16px;
    line-height: 1.5;
  }

  .p-llt-concept__content {
    flex-direction: column;
    gap: 60px;
  }

  .p-llt-concept__left,
  .p-llt-concept__right {
    width: 100%;
  }

  .p-llt-concept__feature-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .p-llt-concept__sizes-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

/*------------------------------------------------------------
  Feature Detail Section
------------------------------------------------------------*/
.p-llt-feature {
  max-width: 1100px;
  margin: 120px auto 0;
}

.p-llt-feature__container {
  display: grid;
  grid-template-columns: calc(50% - 30px) calc(50% - 30px);
  grid-template-rows: auto auto;
  gap: 40px 60px;
  margin-top: 40px;
}

/* Grid配置 */
.p-llt-feature__intro {
  grid-column: 1;
  grid-row: 1;
}

.p-llt-feature__intro-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.p-llt-feature__chemical {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.p-llt-feature__cigarette {
  grid-column: 1;
  grid-row: 2;
}

.p-llt-feature__rubber {
  grid-column: 2;
  grid-row: 2;
}

/* 商品紹介エリア */
.p-llt-feature__intro-text {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #444;
  line-height: 1.5;
}

.p-llt-feature__product-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: bold;
  color: #444;
  line-height: 40px;
  margin: 30px 0 0 0;
}

.p-llt-feature__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #444;
  line-height: 32px;
  margin: 30px 0 0 0;
}

.p-llt-feature__button {
  margin-top: 40px;
}

/* セクションヘッダー */
.p-llt-feature__section-header {
  background: #3472a1;
  height: 35px;
  display: flex;
  align-items: center;
  padding: 8px;
  margin: 0 0 20px 0;
}

.p-llt-feature__section-number {
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 2.5px;
  margin-right: 12px;
}

.p-llt-feature__section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 30px;
}

.p-llt-feature__patent {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-left: 8px;
}

.p-llt-feature__section-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #000;
  line-height: 1.65;
  margin: 0 0 20px 0;
}

/* 耐薬品性テーブル */
.p-llt-feature__chemical-table {
  margin-top: 20px;
}

.p-llt-table {
  max-width: 420px;
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

.p-llt-table__header {
  background: #889195;
  color: #fff;
  font-weight: normal;
  text-align: center;
  padding: 6px 12px;
  border: 1px solid #727272;
  line-height: 1.5;
}

.p-llt-table__header:first-child {
  width: 140px;
  border-left: none;
}

.p-llt-table__header:nth-child(2) {
  max-width: 200px;
}

.p-llt-table__header:last-child {
  max-width: 80px;
}

.p-llt-table__cell {
  background: #fff;
  color: #000;
  font-weight: normal;
  text-align: center;
  padding: 6px 12px;
  border: 1px solid #727272;
  border-left: none;
  line-height: 1.5;
  vertical-align: middle;
}

.p-llt-feature__test-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #000;
  line-height: 1.5;
  margin-top: 20px;
}

/* テスト共通スタイル */
.p-llt-feature__test-title {
  color: #050505;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  margin: 20px 0 0 0;
}

.p-llt-feature__test-title::before {
  content: "■";
  color: #5970a7;
  margin-right: 2px;
}

.p-llt-feature__test-method {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #000;
  line-height: 1.65;
  margin: 10px 0 20px 0;
}

/* 比較結果 */
.p-llt-feature__comparison {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.p-llt-feature__comparison-item {
  width: 250px;
}

.p-llt-feature__comparison-image {
  width: 100%;
  height: 150px;
  margin-bottom: 16px;
}

.p-llt-feature__comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-llt-feature__comparison-text {
  text-align: center;
}

.p-llt-feature__comparison-result {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.p-llt-feature__comparison-product {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #5970a7;
  line-height: 1.5;
  margin: 0;
}

.p-llt-feature__comparison-item:last-child .p-llt-feature__comparison-product {
  color: #000;
  font-weight: 500;
}

/* Feature Detail Section Responsive */
@media screen and (max-width: 767px) {
  .p-llt-feature {
    margin-top: 80px;
  }

  .p-llt-feature__container {
    display: block;
  }

  .p-llt-feature__intro-content {
    display: block;
  }

  .p-llt-feature__intro-text {
    font-size: 20px;
    line-height: 1.4;
  }

  .p-llt-feature__product-name {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 20px;
  }

  .p-llt-feature__description {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
  }

  .p-llt-feature__chemical-img {
    width: 100%;
  }

  .p-llt-feature__chemical-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .p-llt-feature__button {
    margin-top: 30px;
    text-align: center;
  }

  .p-llt-feature__section-header {
    padding: 0 15px;
    height: 40px;
  }

  .p-llt-feature__section-number {
    font-size: 20px;
    margin-right: 20px;
  }

  .p-llt-feature__section-title {
    font-size: 18px;
  }

  .p-llt-feature__patent {
    font-size: 14px;
  }

  .p-llt-table {
    width: 100%;
    font-size: 12px;
  }

  .p-llt-table__header,
  .p-llt-table__cell {
    padding: 4px 8px;
  }

  .p-llt-feature__comparison {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .p-llt-feature__comparison-item {
    width: 280px;
    max-width: 100%;
  }

  .p-llt-feature__comparison-image {
    height: 180px;
  }

  .p-llt-feature__chemical {
    margin-top: 40px;
  }

  .p-llt-feature__cigarette {
    margin-top: 40px;
  }

  .p-llt-feature__rubber {
    margin-top: 40px;
  }
}

/*------------------------------------------------------------
  Line Up Section
------------------------------------------------------------*/
.p-llt-lineup {
  margin-top: 120px;
  position: relative;
  z-index: 0;
}

.p-llt-lineup__title {
  text-align: center;
}

.p-llt-lineup__title h2 {
  font-family: "Kozuka Mincho Pro", serif;
  font-size: 60px;
  font-weight: normal;
  color: #444;
  line-height: 39.5px;
}

.p-llt-lineup__content {
  position: relative;
  height: 400px;
  max-width: 1200px;
  margin: 60px auto 0;
  background: #5970a7;
  gap: 24px;
  z-index: 1;
}

.p-llt-lineup__image {
  position: absolute;
  bottom: 0;
  right: 38px;
  width: 59%;
  height: 90%;
  z-index: -1;
}

.p-llt-lineup__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.p-llt-lineup__text {
  color: #fff;
  padding: 80px 0 0 80px;
}

.p-llt-lineup__text h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 46px;
  font-weight: 500;
  color: #fff;
  line-height: 60px;
  margin: 0 0 40px 0;
}

.p-llt-lineup__button {
  margin-top: 28px;
}

/* Line Up Section Responsive */
@media screen and (max-width: 767px) {
  .p-llt-lineup {
    margin-top: 80px;
  }

  .p-llt-lineup__title h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .p-llt-lineup__text {
    padding: 40px 20px 0;
  }

  .p-llt-lineup__text h3 {
    font-size: 28px;
    text-align: center;
    line-height: 1.3;
  }

  .p-llt-lineup__button {
    text-align: center;
  }

  .p-llt-lineup__button span {
    font-size: 18px;
  }

  .p-llt-lineup__image {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    height: 40%;
    object-fit: contain;
    object-position: bottom;
  }
}

/*------------------------------------------------------------
  CTA Section
------------------------------------------------------------*/
.p-llt-cta {
  margin-top: 100px;
  padding-bottom: 154px;
}

.p-llt-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1020px;
  margin: 0 auto;
}

.p-llt-cta__item {
  background: #7c7c7c;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.p-llt-cta__item a {
  display: contents;
  color: inherit;
}

@media (any-hover: hover) and (pointer: fine) {
  .p-llt-cta__item:hover {
    background: #666;
  }
}

.p-llt-cta__item--digital,
.p-llt-cta__item--simulation {
  height: 200px;
}

.p-llt-cta__item--price,
.p-llt-cta__item--sample {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-llt-cta__item--price .p-llt-cta__title::before {
  content: "";
  display: inline-block;
  vertical-align: sub;
  margin-right: 16px;
  width: 21.5px;
  height: 22.5px;
  background: url(../img/index/price_icon.svg) no-repeat center center / contain;
}

.p-llt-cta__item--sample .p-llt-cta__title::before {
  content: "";
  display: inline-block;
  vertical-align: sub;
  margin-right: 16px;
  width: 22px;
  height: 23px;
  background: url(../img/index/sample_icon.svg) no-repeat center center /
    contain;
}

.p-llt-cta__item-image {
  height: 160px;
}

.p-llt-cta__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-llt-cta__item-icon {
  flex: 0 0 30px;
  font-size: 24px;
  text-align: center;
}

.p-llt-cta__item-content {
  flex: 1;
  position: relative;
}

.p-llt-cta__item-content::after {
  content: "";
  width: 12px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/index/arrow_right_white.svg) no-repeat center center /
    contain;
}

.p-llt-cta__label {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 30px;
}

.p-llt-cta__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.p-llt-cta__arrow {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: bold;
}

/* CTA Section Responsive */
@media screen and (max-width: 767px) {
  .p-llt-cta__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .p-llt-cta__item {
    padding: 15px;
    gap: 15px;
  }

  .p-llt-cta__item--digital,
  .p-llt-cta__item--simulation {
    height: auto;
    min-height: 120px;
  }

  .p-llt-cta__item--price,
  .p-llt-cta__item--sample {
    height: 60px;
  }

  .p-llt-cta__item-image {
    flex: 0 0 80px;
    height: 100px;
  }

  .p-llt-cta__label {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
  }

  .p-llt-cta__title {
    font-size: 16px;
    line-height: 1.4;
  }
}