@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;
  }
}


/*------------------------------------------------------------
  Swiper
------------------------------------------------------------*/
.swiper-container {
  height: 100%;
}

.swiper-slide {
  height: 100%;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-control {
  position: absolute;
  left: 50%;
  bottom: -40px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  transform: translateX(-50%);
}

.swiper-pagination {
  position: static !important;
}

.swiper-pagination.is-posfix {
  text-align: right;
}

.swiper-pagination-bullet {
  background: #f5f5f5 !important;
  opacity: 1 !important;
  margin-inline: 12px !important;
}

.swiper-pagination-bullet-active {
  background: #d9d9d9 !important;
}

.stopbtn-main {
  cursor: pointer;
  z-index: 100;
  background: #fff;
  border: 1px solid #333;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  text-align: center;
  line-height: 17px;
  opacity: 0.85;
  color: #333;
  display: flex;
  justify-content: center;
}

.stopbtn-main:hover {
  opacity: 1;
}

.stopbtn-main.stop:before {
  display: block;
  content: "=";
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 12px;
  font-weight: bold;
  margin-top: 1px;
  margin-left: 1px;
}

.stopbtn-main.start:before {
  content: "▶";
  font-size: 10px;
  margin-left: 2px;
}

/* Swiper Responsive */
@media screen and (max-width: 1366px) {
  .swiper-control {
    padding-right: 10px;
  }
}

@media screen and (max-width: 1098px) {
  .swiper-control {
    display: none;
  }
}

/*------------------------------------------------------------
  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;
  }
}

/*------------------------------------------------------------
  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-slider {
  height: calc(100vh - 100px);
  margin-top: 43px;
}

/* MV Section Responsive */
@media screen and (max-width: 767px) {
  .p-llt__mv-slider {
    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;
  }
}

@media screen and (max-width: 539px) {
  .p-llt__mv-slider {
    height: 375px;
  }
}

/*------------------------------------------------------------
  Contents
------------------------------------------------------------*/
.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;
}

/* Contents Responsive */
@media screen and (max-width: 767px) {
  .p-llt-contents {
    padding: 80px 15px 0;
  }
}

/*------------------------------------------------------------
  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: #a68340;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #a68340;
}

.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: #a68340;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #a68340;
}

.p-llt-concept__size {
  display: flex;
  justify-content: center;
  width: 100%;
}

.p-llt-concept__size img {
  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;
  }
}

/*------------------------------------------------------------
  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: #a68340;
  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;
  }
}

/*------------------------------------------------------------
  Pattern Section
------------------------------------------------------------*/
.p-llt-pattern {
  margin-top: 24px;
}

.p-llt-pattern__content {
  background: #FBF8F3;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 0;
}

.p-llt-pattern__content-left {
  width: 50%;
  padding: 20px 0px 20px 70px;
}

.p-llt-pattern__content-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: -1;
  width: 50%;
  height: 100%;
}

.p-llt-pattern__content-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.p-llt-pattern__title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #444;
}

.p-llt-pattern__title p:first-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: normal;
  color: #444;
}

.p-llt-pattern__title .p-llt-pattern__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #444;
  margin-top: 12px;
}

.p-llt-pattern__button {
  margin-top: 24px;
}

.p-llt-pattern__button .c-button {
  border-radius: 30px;
  padding: 12px 30px;
  box-sizing: border-box;
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
}

/* Pattern Section Responsive */
@media screen and (max-width: 767px) {
  .p-llt-pattern__content {
    display: block;
    height: auto;
    text-align: center;
    padding: 40px 20px 0;
  }

  .p-llt-pattern__content-left {
    width: 100%;
    padding: 0;
  }
  
  .p-llt-pattern__content-right {
    position: static;
    transform: translateY(0);
    width: 100%;
    margin-top: 24px;
  }

  .p-llt-pattern__title h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 8px;
  }

  .p-llt-pattern__title p:first-of-type {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 8px;
  }

  .p-llt-pattern__title .p-llt-pattern__lead {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 8px;
  }

  .p-llt-pattern__button {
    margin-top: 24px;
  }

  .p-llt-pattern__button .c-button {
    padding: 16px 20px;
  }
}

/*------------------------------------------------------------
  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;
  }
}