@charset "UTF-8";

/*------------------------------------------------------------
  Foundation
------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #444444;
  line-height: 1.6;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/*------------------------------------------------------------
  Swiper
------------------------------------------------------------*/
.p-swiper-wrapper {
  position: relative;
}

.p-emt-stone .swiper-slide {
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-control {
  margin-top: 10px;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding-right: 80px;
  width: 100%;
}

.swiper-pagination {
  position: static !important;
}

.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: 767px) {
  .p-swiper-wrapper {
    height: 591px;
  }
}

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

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

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

.c-button.is-pdf {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

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

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

/*------------------------------------------------------------
  Project - Contents
------------------------------------------------------------*/
.p-emt__contents {
  padding-top: 56px;
  position: relative;
}

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

/*------------------------------------------------------------
  Project - Main Visual
------------------------------------------------------------*/
.p-emt__mv {
  height: calc(100vh - 100px);
}

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

/* Main Visual Responsive */
@media screen and (max-width: 768px) {
  .p-emt__mv {
    height: 400px;
  }
}

/*------------------------------------------------------------
  Project - Slider
------------------------------------------------------------*/
.p-emt__slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
  width: 100%;
  padding-right: 20px;
}

.p-emt__slider--reverse {
  justify-content: flex-end;
  margin-top: 39px;
  padding-right: 0;
  padding-left: 20px;
}

.p-emt__slider--reverse .swiper-container {
  order: 2;
}

.p-emt__slider--reverse .p-emt__slider-info {
  order: 1;
}

.p-emt__slider .swiper-container {
  margin: 0;
  width: 56%;
  padding-bottom: 40px;
  overflow: hidden;
}

.p-emt__slider .swiper-control {
  justify-content: center;
  align-items: center;
}

.p-emt__slider .swiper-pagination {
  align-items: center;
}

.p-emt__slider-info {
  text-align: center;
}

.p-emt__slider-title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #444444;
  text-align: center;
  margin: 0 0 24px 0;
  line-height: 39.5px;
  white-space: nowrap;
}

.p-emt__slider-button {
  margin-top: 24px;
}

/* Slider Responsive */
@media screen and (max-width: 768px) {
  .p-emt__slider {
    display: block;
    padding: 0;
  }

  .swiper-control {
    justify-content: center;
  }

  .p-emt__slider .swiper-container {
    width: 100%;
  }

  .p-emt__slider-info {
    margin-top: 16px;
  }

  .p-emt__slider + .p-emt__slider {
    margin-top: 64px;
  }

  .p-emt__slider-title {
    font-size: 24px;
  }
}

/*------------------------------------------------------------
  Project - Function
------------------------------------------------------------*/
.p-emt__function {
  max-width: 1300px;
  margin: 110.8px auto 0;
  padding-inline: 20px;
}

.p-emt__function-title {
  max-width: 326.2px;
  margin: 0 auto;
}

.p-emt__function-subtitle {
  color: #000;
  text-align: center;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 39.5px;
  margin-top: 40px;
}

/* Function Responsive */
@media screen and (max-width: 768px) {
  .p-emt__function-subtitle {
    font-size: 20px;
  }
}

/*------------------------------------------------------------
  Project - New Points
------------------------------------------------------------*/
.p-emt__new-points {
  margin-top: 96px;
}

.p-emt__new-point {
  display: flex;
  align-items: flex-start;
  gap: 44.3px;
  margin: 0 auto;
}

.p-emt__new-point + .p-emt__new-point {
  margin-top: 125px;
}


.p-emt__new-point-img {
  width: 53%;
}

.p-emt__new-point-img img {
  width: 100%;
}

.p-emt__new-point-content {
  width: 47%;
}

.p-emt__new-point-title {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #635f86;
  line-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-emt__new-point:nth-of-type(1) .p-emt__new-point-title::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 36px;
  background-image: url("../img/index/new_point_01_icon.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.p-emt__new-point:nth-of-type(2) .p-emt__new-point-title::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 42px;
  background-image: url("../img/index/new_point_02_icon.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.p-emt__new-point:nth-of-type(3) .p-emt__new-point-title::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 39px;
  background-image: url("../img/index/new_point_03_icon.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.p-emt__new-point-lead {
  color: #444;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 32px;
}

.p-emt__new-point-text {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #444444;
  line-height: 32px;
  margin-top: 27px;
}

.p-emt__new-point-note {
  color: #444;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
}

.p-emt__new-point-buttons {
  margin-top: 46px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-emt__new-point-buttons .c-button {
  display: inline-block;
  width: fit-content;
}

.p-emt__new-point-buttons .c-button .is-sp {
  display: none;
}

/* New Points Responsive */
@media screen and (max-width: 768px) {
  .p-emt__new-points {
    margin-top: 64px;
  }

  .p-emt__new-point {
    display: block;
  }

  .p-emt__new-point + .p-emt__new-point {
    margin-top: 64px;
  }

  .p-emt__new-point-img {
    width: 100%;
    margin-top: 8px;
  }

  .p-emt__new-point-content {
    width: 100%;
    margin-top: 8px;
  }

  .p-emt__new-point-title {
    font-size: 22px;
  }

  .p-emt__new-point-text {
    font-size: 16px;
    margin-top: 16px;
  }

  .p-emt__new-point-buttons {
    gap: 16px;
    margin-top: 24px;
  }

  .p-emt__new-point-buttons .c-button .is-sp {
    display: block;
  }
}

/*------------------------------------------------------------
  Project - Recycle
------------------------------------------------------------*/
.p-emt__recycle {
  max-width: 1300px;
  margin: 90px auto 0;
  padding: 0 20px 98px;
}

.p-emt__recycle-title {
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 60px;
}

.p-emt__recycle-lead {
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 2px;
}

.p-emt__recycle-img {
  margin-top: 24px;
}

/* 認証マーク説明 */
.p-emt__certification {
  margin-top: 33px;
}

.p-emt__certification-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.p-emt__certification-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  width: calc(50% - 40px);
}

.p-emt__certification-logo {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-emt__certification-logo img {
  width: 100%;
  height: auto;
}

.p-emt__certification-text {
  flex: 1;
}

.p-emt__certification-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #444444;
  line-height: 1.75;
  margin: 0;
}


.p-emt__recycle-note-list {
  margin-top: 34px;
}

.p-emt__recycle-note-item {
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}

.p-emt__recycle-button {
  margin-top: 70px;
  text-align: center;
}

.p-emt__recycle-button .c-button {
  max-width: 540px;
  width: 100%;
  padding: 32px;
  box-sizing: border-box;
  border-radius: 100px;
}

/* Recycle Responsive */
@media screen and (max-width: 768px) {
  .p-emt__certification-container {
    flex-direction: column;
    gap: 32px;
  }

  .p-emt__certification-item {
    width: 100%;
    gap: 16px;
  }

  .p-emt__certification-logo {
    width: 60px;
  }

  .p-emt__certification-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .p-emt__recycle-button .c-button {
    max-width: 300px;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 100px;
    font-size: 16px;
    line-height: 24px;
  }
}