@charset "UTF-8";
/* ========================================
   弊社の強み - Strength Page Styles
   ======================================== */
.strength-page {
  max-width: 1080px;
  margin: 0 auto;
}

/* ── Sub Navigation ── */
.strength-sub-nav {
  display: flex;
  justify-content: center;
  -moz-column-gap: 2em;
       column-gap: 2em;
  padding: 15px 0;
  font-size: 1.5rem;
}
.strength-sub-nav a {
  position: relative;
  padding: 5px 0;
  color: #231815;
  text-decoration: none;
  transition: color 0.3s;
}
.strength-sub-nav a:hover {
  color: #9e9278;
}
.strength-sub-nav a.active::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 0;
  width: calc(100% + 6px);
  height: 1px;
  background-color: #231815;
}
@media (min-width: 769px) {
  .strength-sub-nav {
    font-size: 1.8rem;
    padding: 20px 0;
  }
}

/* ── Hero Banner ── */
.strength-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 15px 40px;
  text-align: center;
}
.strength-hero .hero-label {
  font-size: 1.4rem;
  font-weight: 400;
  color: #9e9278;
  margin-bottom: 15px;
}
.strength-hero .hero-title {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.strength-hero .hero-desc {
  margin-top: 25px;
  font-size: 1.4rem;
  line-height: 2;
  max-width: 680px;
}
@media (min-width: 769px) {
  .strength-hero {
    padding: 50px 20px 60px;
  }
  .strength-hero .hero-label {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .strength-hero .hero-title {
    font-size: 4rem;
  }
  .strength-hero .hero-desc {
    margin-top: 30px;
    font-size: 1.6rem;
  }
}

/* ── 3 Strength Cards Section (Wave Background) ── */
.strength-cards-section {
  position: relative;
  background-color: #f5ede1;
  padding: 50px 15px 60px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.strength-cards-section .wave-svg {
  position: absolute;
  left: 0;
  width: 100%;
  color: #fff;
}
.strength-cards-section .wave-svg-top {
  top: -1px;
  height: 50px;
}
.strength-cards-section .wave-svg-bottom {
  bottom: -1px;
  height: 50px;
}
@media (min-width: 769px) {
  .strength-cards-section {
    padding: 70px 20px 80px;
  }
  .strength-cards-section .wave-svg-top {
    height: 80px;
  }
  .strength-cards-section .wave-svg-bottom {
    height: 80px;
  }
}

.strength-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 10px;
}
@media (min-width: 769px) {
  .strength-cards-grid {
    gap: 30px;
    padding: 60px 0;
  }
}

.strength-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  padding: 15px 10px;
  text-align: center;
}
.strength-card .card-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #d5cfc3;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 500;
  color: #9e9278;
  margin-bottom: 6px;
}
.strength-card .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.strength-card .card-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 8px;
  flex: 1;
  display: flex;
  align-items: center;
}
.strength-card .card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 12px 3px;
  border: 1px solid #9e9278;
  border-radius: 99em;
  font-size: 1rem;
  background-color: #9e9278;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.strength-card .card-link::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-top: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.strength-card .card-link:hover {
  background-color: rgb(132.0905172414, 120.349137931, 94.9094827586);
  color: #fff;
}
@media (min-width: 769px) {
  .strength-card {
    width: 300px;
    height: 300px;
    padding: 40px 25px 30px;
    border-radius: 300px;
    aspect-ratio: auto;
  }
  .strength-card .card-number {
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .strength-card .card-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  .strength-card .card-desc {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 25px;
    display: block;
  }
  .strength-card .card-link {
    padding: 10px 30px 7px;
    font-size: 1.4rem;
  }
  .strength-card .card-link::after {
    width: 7px;
    height: 7px;
    margin-top: 3px;
  }
}

/* ── Numbers Section ── */
.strength-numbers {
  padding: 50px 15px;
  text-align: center;
}
.strength-numbers .numbers-title {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 20px;
  position: relative;
}
.strength-numbers .numbers-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #9e9278;
}
@media (min-width: 769px) {
  .strength-numbers {
    padding: 80px 20px;
  }
  .strength-numbers .numbers-title {
    font-size: 3rem;
    padding-bottom: 25px;
  }
  .strength-numbers .numbers-title::after {
    width: 50px;
  }
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 50px;
  }
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
}
.number-item .number-value {
  font-size: 4rem;
  font-weight: 300;
  color: #9e9278;
  line-height: 1.2;
}
.number-item .number-value .number-big {
  font-size: 5.5rem;
  font-weight: 300;
}
.number-item .number-unit {
  font-size: 1.8rem;
  font-weight: 400;
  color: #9e9278;
  margin-top: 2px;
}
.number-item .number-label {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
  margin-top: 10px;
}
@media (min-width: 769px) {
  .number-item {
    padding: 25px 20px;
    border-right: 1px solid #d5cfc3;
  }
  .number-item:last-child {
    border-right: none;
  }
  .number-item:first-child {
    border-left: 1px solid #d5cfc3;
  }
  .number-item .number-value .number-big {
    font-size: 7rem;
  }
  .number-item .number-unit {
    font-size: 2rem;
  }
  .number-item .number-label {
    font-size: 1.5rem;
    margin-top: 12px;
  }
}

/* ── Detail Wave Background (ノウハウ・品質管理) ── */
.strength-detail-wave {
  position: relative;
  background-color: #f5ede1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 50px 0 60px;
}
.strength-detail-wave .wave-svg {
  position: absolute;
  left: 0;
  width: 100%;
  color: #fff;
}
.strength-detail-wave .wave-svg-top {
  top: -1px;
  height: 50px;
}
.strength-detail-wave .wave-svg-bottom {
  bottom: -1px;
  height: 50px;
}
.strength-detail-wave .strength-detail {
  padding-top: 50px;
  padding-bottom: 0;
}
.strength-detail-wave .detail-number {
  background-color: #fff;
}
.strength-detail-wave .feature-box {
  background-color: #fff;
}
@media (min-width: 769px) {
  .strength-detail-wave {
    padding: 70px 0 80px;
  }
  .strength-detail-wave .wave-svg-top {
    height: 80px;
  }
  .strength-detail-wave .wave-svg-bottom {
    height: 80px;
  }
  .strength-detail-wave .strength-detail {
    padding-top: 70px;
  }
}

/* ── Detail Background (生産体制) ── */
.strength-detail-bg {
  background-color: #fbf8f3;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 50px 0 60px;
}
.strength-detail-bg .strength-detail {
  padding-top: 0;
  padding-bottom: 0;
}
.strength-detail-bg .detail-number {
  background-color: #fff;
}
.strength-detail-bg .feature-box {
  background-color: #fff;
}
@media (min-width: 769px) {
  .strength-detail-bg {
    padding: 70px 0 80px;
  }
}

/* ── Detail Sections (1, 2, 3) ── */
.strength-detail {
  padding: 50px 15px 0;
}
.strength-detail .detail-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 500;
  color: #9e9278;
}
.strength-detail .detail-title {
  margin-top: 15px;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
}
.strength-detail .detail-subtitle {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  color: #9e9278;
}
.strength-detail .detail-content {
  margin-top: 30px;
}
.strength-detail .detail-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.strength-detail .detail-image img {
  width: 100%;
  height: auto;
  display: block;
}
.strength-detail .detail-text {
  margin-top: 20px;
}
.strength-detail .detail-text .text-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d5cfc3;
}
.strength-detail .detail-text .text-body {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #333;
}
.strength-detail .detail-text .text-body p + p {
  margin-top: 1em;
}
.strength-detail .feature-box {
  margin-top: 30px;
  padding: 25px 20px;
  background-color: #fff;
  border-radius: 10px;
}
.strength-detail .feature-box .feature-label {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.strength-detail .feature-box .feature-list {
  list-style: none;
}
.strength-detail .feature-box .feature-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 1.3rem;
  line-height: 1.7;
}
.strength-detail .feature-box .feature-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #9e9278;
  font-size: 0.8rem;
  top: 9px;
}
@media (min-width: 769px) {
  .strength-detail {
    padding: 70px 20px 0;
    max-width: 1080px;
    margin: 0 auto;
  }
  .strength-detail .detail-number {
    width: 56px;
    height: 56px;
    font-size: 2.4rem;
  }
  .strength-detail .detail-title {
    margin-top: 20px;
    font-size: 3.2rem;
  }
  .strength-detail .detail-subtitle {
    margin-top: 12px;
    font-size: 1.6rem;
  }
  .strength-detail .detail-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
  }
  .strength-detail .detail-content.reverse {
    flex-direction: row-reverse;
  }
  .strength-detail .detail-image {
    width: 42%;
    flex-shrink: 0;
  }
  .strength-detail .detail-text {
    margin-top: 0;
    flex: 1;
  }
  .strength-detail .detail-text .text-heading {
    font-size: 2.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .strength-detail .detail-text .text-body {
    font-size: 1.5rem;
    line-height: 2;
  }
  .strength-detail .feature-box {
    margin-top: 35px;
    padding: 30px;
  }
  .strength-detail .feature-box .feature-label {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .strength-detail .feature-box .feature-list li {
    padding: 7px 0 7px 22px;
    font-size: 1.4rem;
  }
  .strength-detail .feature-box .feature-list li::before {
    top: 10px;
  }
}

/* ── CTA Section ── */
.strength-cta {
  margin-top: 60px;
  padding: 50px 20px;
  background-color: #7d7460;
  text-align: center;
  border-radius: 12px;
}
.strength-cta .cta-title {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
}
.strength-cta .cta-desc {
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #fff;
}
.strength-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.strength-cta .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 54px;
  border-radius: 99em;
  font-size: 1.4rem;
  text-decoration: none;
  position: relative;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}
.strength-cta .cta-btn:hover {
  background-color: #fff;
  color: #7d7460;
}
.strength-cta .cta-btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: border-color 0.3s;
}
@media (min-width: 769px) {
  .strength-cta {
    margin-top: 80px;
    padding: 70px 20px;
  }
  .strength-cta .cta-title {
    font-size: 2.8rem;
  }
  .strength-cta .cta-desc {
    margin-top: 20px;
    font-size: 1.6rem;
  }
  .strength-cta .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }
  .strength-cta .cta-btn {
    width: 280px;
    height: 62px;
    font-size: 1.6rem;
  }
}

.strength-footer-spacer {
  height: 0;
}/*# sourceMappingURL=strength.css.map */