@charset "UTF-8";

/*------------------------------------------------------------
  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;
  }
}

/*------------------------------------------------------------
  MV Section
------------------------------------------------------------*/
.p-llt__mv {
  padding-top: 40px;
}

.p-llt__mv-sub-heading {
  color: #444;
  text-align: center;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 40px;
}

.p-llt__mv-logo {
  width: 140px;
  height: 95px;
  margin: 35px auto 0;
  display: block;
}

.p-llt__mv-logo img {
  display: block;
  margin: 0 auto;
}

.p-llt__mv-heading {
  color: #444;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 39.5px;
  margin-top: 35px;
}

.p-llt__mv-heading .is-sp {
  display: none;
}

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

/* MV Section Responsive */
@media screen and (max-width: 767px) {
  .p-llt__mv-sub-heading {
    font-size: 18px;
    line-height: 1.5;
    padding-inline: 20px;
  }

  .p-llt__mv-heading {
    font-size: 36px;
    line-height: 1.2;
    margin-top: 20px;
    padding-inline: 20px;
  }

  .p-llt__mv-heading .is-sp {
    display: block;
  }

  .p-llt__mv-slider {
    height: 591px;
  }
}

@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;
}

/* 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;
}

/* 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;
  }
}

/*------------------------------------------------------------
  Features Section
------------------------------------------------------------*/
.p-llt-features {
  margin-top: 90px;
}

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

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

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

.p-llt-features__point + .p-llt-features__point {
  margin-top: 113px;
}

.p-llt-features__point-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.p-llt-features__point-content.reverse {
  flex-direction: row-reverse;
}

.p-llt-features__point-image {
  flex: 0 0 520px;
}

.p-llt-features__point-image img {
  width: 100%;
  height: auto;
}

.p-llt-features__point-text {
  flex: 1;
}

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

.p-llt-features__point-text .point-num {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

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

.p-llt-features__comparison,
.p-llt-features__structure {
  margin-top: 10px;
}

.p-llt-features__comparison img,
.p-llt-features__structure img {
  width: 100%;
  height: auto;
}

.p-llt-features__certifications {
  display: flex;
  gap: 30px;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 10px;
  margin-top: 38px;
}

.p-llt-features__cert-item {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.p-llt-features__cert-icon {
  flex-shrink: 0;
}

.p-llt-features__cert-item:nth-of-type(1) .p-llt-features__cert-icon {
  height: 98px;
}

.p-llt-features__cert-item:nth-of-type(2) .p-llt-features__cert-icon {
  height: 87px;
}

.p-llt-features__cert-item:nth-of-type(3) .p-llt-features__cert-icon {
  height: 29px;
}

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

.p-llt-features__cert-item p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #444;
  line-height: 18px;
  margin: 0;
}

.p-llt-features__cert-item p span {
  font-size: 10px;
  display: block;
}

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

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

  .p-llt-features__title h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

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

  .p-llt-features__point {
    margin-bottom: 60px;
  }

  .p-llt-features__point-content,
  .p-llt-features__point-content.reverse {
    flex-direction: column;
    gap: 30px;
  }

  .p-llt-features__point-image {
    flex: none;
    width: 100%;
  }

  .p-llt-features__point-text {
    flex: none;
    padding-top: 0;
  }

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

  .p-llt-features__point-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .p-llt-features__certifications {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }

  .p-llt-features__cert-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .p-llt-features__cert-icon {
    flex: none;
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }
}

/*------------------------------------------------------------
  Products Section
------------------------------------------------------------*/
.p-llt-products {
  margin-top: 100px;
}

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

.p-llt-products__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-products__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-products__grid {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 100px) / 3));
  gap: 50px;
  margin-top: 48px;
}

.p-llt-products__item {
}

.p-llt-products__item-tag {
  width: 180px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}

.product-premium .p-llt-products__item-tag {
  background: #5a7a59;
}

.product-functional .p-llt-products__item-tag {
  background: #5970a7;
}

.product-basic .p-llt-products__item-tag {
  background: #a68340;
}

.p-llt-products__item-image {
  width: 100%;
  overflow: hidden;
}

.p-llt-products__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-llt-products__item a:hover .p-llt-products__item-image img {
  transform: scale(1.05);
}

.p-llt-products__item a:hover .p-llt-products__item-content {
  opacity: 0.7;
}

.p-llt-products__item-content {
  margin-top: 12px;
  opacity: 1;
  transition: opacity 0.3s ease;
}


.p-llt-products__item-content h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: normal;
  color: #444;
  line-height: 2;
}

.p-llt-products__item-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #444;
  line-height: 2;
}

.p-llt-products__spec {
  background: #fff;
  margin-top: 40px;
}

.p-llt-products__spec-header {
  padding: 4px;
  text-align: center;
}

.product-premium .p-llt-products__spec-header {
  background: #e8f2e8;
}

.product-functional .p-llt-products__spec-header {
  background: #e7ebf5;
}

.product-basic .p-llt-products__spec-header {
  background: #fdf3de;
}

.p-llt-products__spec-header h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 39.5px;
  margin: 0;
}

.product-premium .p-llt-products__spec-header h4 {
  color: #5a7a59;
}

.product-functional .p-llt-products__spec-header h4 {
  color: #5970a7;
}

.product-basic .p-llt-products__spec-header h4 {
  color: #a68340;
}

.p-llt-products__spec-thickness {
  text-align: center;
}

.p-llt-products__spec-thickness h5 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  line-height: 39.5px;
  margin-top: 8px;
}

.thickness-value {
  border-block: 1px solid #9a9a9b;
  margin-top: 8px;
  padding-block: 8px;
}

.thickness-value .number {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 39.5px;
}

.thickness-value .unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: bold;
  line-height: 39.5px;
}

.product-premium .thickness-value {
  color: #5a7a59;
}

.product-functional .thickness-value {
  color: #5970a7;
}

.product-basic .thickness-value {
  color: #a68340;
}

.p-llt-products__spec-sizes {
  padding: 24px 15px;
  text-align: center;
}

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

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

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

  .p-llt-products__title h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

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

  .p-llt-products__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .p-llt-products__item-image {
    width: 100%;
    height: 200px;
  }

  .p-llt-products__item-content h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .p-llt-products__item-content p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/*------------------------------------------------------------
  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;
  }
}