@charset "UTF-8";
/* ==========================================================================
   Page ID: 6880 (品質管理ページ) SCSSスタイル
   ========================================================================== */
@keyframes quality-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.quality-page-wrapper {
  font-family: "Noto Sans JP", sans-serif;
  color: #111827;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}
.quality-page-wrapper .pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .quality-page-wrapper .pc-only {
    display: block;
  }
}

.quality-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.quality-section {
  padding: 100px 0;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.quality-hero {
  position: relative;
  z-index: 1;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  background-color: #111;
  overflow: hidden;
}
.quality-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/quality_h_03.avif");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  animation: quality-zoom 20s infinite alternate;
}
.quality-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.6));
}
.quality-hero__content {
  position: relative;
  z-index: 10;
  padding: 0 20px;
}
.quality-hero__sub {
  font-weight: bold;
  letter-spacing: 0.3em;
  color: #c40e18;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.quality-hero__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 32px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .quality-hero__title {
    font-size: 2.5rem;
  }
}
.quality-hero__title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .quality-hero__title {
    font-size: 3.5rem;
  }
}
.quality-hero__line {
  width: 60px;
  height: 2px;
  background-color: #c40e18;
  margin: 0 auto 32px;
}
.quality-hero__desc {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .quality-hero__desc {
    font-size: 1.125rem;
  }
}

.quality-concept__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .quality-concept__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}
.quality-concept__text, .quality-concept__img {
  flex: 1;
}
.quality-concept__layout {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 32px;
}
.quality-concept__vertical {
  display: block;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #9ca3af;
  border-left: 1px solid #e5e7eb;
  padding-top: 16px;
  height: 250px;
}
.quality-concept__body p {
  color: #4b5563;
  line-height: 2;
  margin-bottom: 24px;
  text-align: justify;
}

.quality-section-sub-title {
  color: #c40e18;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.quality-section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  color: #111827;
  line-height: 1.5;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .quality-section-title {
    font-size: 2.2rem;
  }
}

.quality-img-frame {
  position: relative;
}
.quality-img-frame::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid #c40e18;
  z-index: 0;
}
.quality-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quality-promises {
  background-color: #f8f8f8;
}

.quality-header-center {
  text-align: center;
  margin-bottom: 64px;
}

.quality-main-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.quality-sub-heading {
  color: #4b5563;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.quality-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .quality-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quality-card {
  background: #ffffff;
  padding: 40px 32px;
  border-top: 4px solid #c40e18;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quality-card:first-of-type h3 {
  margin-bottom: 0;
}
.quality-card:first-of-type small {
  font-size: 14px;
}
.quality-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.quality-card__icon {
  color: #c40e18;
  margin-bottom: 24px;
}
.quality-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.quality-card__sub {
  font-size: 0.75rem;
  font-weight: bold;
  color: #c40e18;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.5;
}
.quality-card__desc {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.75;
}

.quality-workflow__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .quality-workflow__header {
    flex-direction: row;
  }
}
.quality-workflow__desc {
  color: #4b5563;
  font-size: 0.875rem;
  text-align: right;
  margin-top: 16px;
}

.quality-steps {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.quality-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .quality-step {
    flex-direction: row;
    gap: 80px;
  }
}
@media screen and (min-width: 992px) {
  .quality-step--reverse {
    flex-direction: row-reverse;
  }
}
.quality-step__img {
  flex: 1;
  width: 100%;
  position: relative;
}
.quality-step__img img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.quality-step__img::before {
  content: "";
  position: absolute;
  top: 24px;
  right: -24px;
  width: 100%;
  height: 100%;
  background-color: #f3f4f6;
  z-index: 0;
  transition: transform 0.5s ease;
}
.quality-step:hover .quality-step__img::before {
  transform: scale(1.02);
}
.quality-step--reverse .quality-step__img::before {
  right: auto;
  left: -24px;
}
.quality-step__num {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background-color: #c40e18;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  padding: 16px 24px;
  z-index: 20;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.quality-step__content {
  flex: 1;
  width: 100%;
}
.quality-step__content h4 {
  color: #9ca3af;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.quality-step__content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  margin-bottom: 24px;
}
.quality-step__content ul {
  list-style: none;
  padding: 0;
}
.quality-step__content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: #111827;
}
.quality-step__content ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #c40e18;
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
}
.quality-step__lead {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 32px;
  border-left: 2px solid #c40e18;
  padding-left: 16px;
}

.quality-airtight {
  background-color: #f8f8f8;
}
.quality-airtight__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.quality-airtight__content {
  text-align: left;
}
.quality-airtight__content p {
  color: #4b5563;
  line-height: 2;
  margin-bottom: 24px;
  text-align: justify;
}
.quality-airtight__spec {
  margin-top: 32px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  display: inline-block;
  border-left: 4px solid #c40e18;
}
.quality-airtight .quality-spec-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.quality-airtight .quality-spec-label {
  font-weight: bold;
  font-size: 0.9rem;
}
.quality-airtight .quality-spec-value {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #c40e18;
  line-height: 1;
}
.quality-airtight .quality-spec-unit {
  font-size: 0.9rem;
  color: #4b5563;
}
.quality-airtight .quality-spec-note {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0;
}
.quality-airtight__gallery {
  width: auto;
  margin: 40px auto 0;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .quality-airtight__gallery {
    width: 85%;
  }
}
.quality-airtight .quality-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 992px) {
  .quality-airtight .quality-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.quality-airtight .quality-gallery-item {
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.quality-airtight .quality-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 992px) {
  .quality-airtight .quality-gallery-item:nth-child(3) {
    grid-column: 1/-1;
  }
}
.quality-airtight .quality-gallery-item:nth-child(3) .quality-gallery-img {
  aspect-ratio: auto;
}
.quality-airtight .quality-gallery-item:nth-child(3) .quality-gallery-img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}
.quality-airtight .quality-gallery-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: #ffffff;
}
.quality-airtight .quality-gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quality-airtight .quality-gallery-text h4 {
  font-size: 1rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 8px;
  border-bottom: 2px solid #c40e18;
  display: inline-block;
  padding-bottom: 4px;
}
.quality-airtight .quality-gallery-text p {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.6;
}

.quality-report {
  background-color: #1a1a1a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.quality-report__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background-color: #c40e18;
  opacity: 0.1;
  transform: skewX(-12deg);
  transform-origin: top right;
}
.quality-report__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .quality-report__inner {
    flex-direction: row;
    gap: 80px;
  }
}
.quality-report__text, .quality-report__book {
  flex: 1;
}
.quality-report__title {
  font-family: "Noto Serif JP", serif;
  font-size: 7.5vw;
  line-height: 1.4;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .quality-report__title {
    font-size: 2.25rem;
  }
}
.quality-report__text p {
  color: #d1d5db;
  line-height: 2;
  margin-bottom: 32px;
  text-align: justify;
}

.book-mockup {
  position: relative;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
  cursor: pointer;
  max-width: 400px;
  margin: 0 auto;
}
.book-mockup:hover {
  transform: rotate(0deg);
}

.book-cover {
  border: 1px solid #e5e7eb;
  background-color: #fcfcfc;
  padding: 24px;
  color: #111827;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
}

.book-header {
  text-align: center;
  border-bottom: 3px double #d1d5db;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.book-title-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
}
@media screen and (min-width: 992px) {
  .book-title-ja {
    font-size: 1.5rem;
  }
}

.book-title-en {
  font-size: 0.75rem;
  color: #4b5563;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-grow: inherit;
}
@media screen and (min-width: 768px) {
  .book-grid {
    flex-grow: 1;
  }
}

.book-photo {
  background-color: #e5e7eb;
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 1;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.book-mockup:hover .book-photo {
  filter: grayscale(0%);
}

.book-footer {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .book-footer {
    margin-top: 20px;
  }
}
.book-footer p {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 0.875rem;
}

.book-logo-mark {
  color: #c40e18;
  margin-bottom: 8px;
  display: inline-block;
}

.book-badge {
  position: absolute;
  top: 38px;
  left: -20px;
  background-color: #c40e18;
  color: #ffffff;
  font-size: 0.5rem;
  font-weight: bold;
  padding: 4px 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 992px) {
  .book-badge {
    position: absolute;
    top: 40px;
    left: -12px;
    font-size: 0.65rem;
  }
}/*# sourceMappingURL=quality.css.map */