@charset "UTF-8";
/* 5つの強みグリッド */
.about-features-grid-5 {
  background-color: #fff;
}

.about-feature-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.about-feature-icon-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.about-feature-icon-emerald {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.about-feature-icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.about-feature-icon-orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.about-feature-link {
  display: inline-block;
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.8rem;
  transition: color 0.3s ease;
}

.about-feature-link:hover {
  color: #059669;
  text-decoration: underline;
}

/* 詳細セクション共通 */
.about-detail-section {
  padding: 2rem 0;
}

.about-detail-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.about-detail-title i {
  color: #5BA8C9;
  margin-right: 0.5rem;
}

.about-detail-intro {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* 院内技工室の写真 */
.about-lab-image-container {
  margin: 2rem 0;
  text-align: center;
}

.about-lab-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-lab-image-caption {
  margin-top: 1rem;
  color: #6b7280;
  font-size: 0.95rem;
  font-style: italic;
}

/* 院内技工のメリット */
.about-detail-merits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-detail-merit-item {
  background: #f0f8ff;
  border-left: 4px solid #5BA8C9;
  padding: 1.5rem;
  border-radius: 8px;
}

.about-detail-merit-number {
  width: 40px;
  height: 40px;
  background: #5BA8C9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.about-detail-merit-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.about-detail-merit-text {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* 衛生管理セクション */
.about-hygiene-section {
  background: #f9fafb;
  padding: 4rem 0;
}

/* 滅菌機器グリッド（写真付き） */
.about-sterilization-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-sterilization-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-sterilization-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.about-sterilization-photo {
  width: 100%;
  height: auto;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.about-sterilization-content {
  padding: 1rem;
}

.about-sterilization-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #5BA8C9, #4a90aa);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-sterilization-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.about-sterilization-text {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1rem;
}

/* 画像なしのアイテム */
.about-sterilization-item-no-image {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.about-sterilization-item-no-image .about-sterilization-content {
  padding: 2rem;
}

.about-hygiene-environment {
  background: white;
  border-radius: 12px;
  padding: 2rem;
}

.about-hygiene-environment-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.about-hygiene-environment-grid {
  display: grid;
  gap: 1.5rem;
}

.about-hygiene-environment-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f0f8ff;
  border-radius: 8px;
}

.about-hygiene-environment-item i {
  font-size: 2rem;
  color: #5BA8C9;
  flex-shrink: 0;
}

.about-hygiene-environment-item h5 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.about-hygiene-environment-item p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* 医療機器セクション */
.about-equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-equipment-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-equipment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-equipment-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.about-equipment-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.about-equipment-text {
  color: #6b7280;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.about-equipment-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* 院内ギャラリー */
.about-gallery-section {
  background: white;
  padding: 4rem 0;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-gallery-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-gallery-image {
  width: 100%;
  height: 200px;
  background: #f3f4f6;
  overflow: hidden;
}

.about-gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f8ff, #e0f2fe);
  color: #5BA8C9;
}

.about-gallery-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.about-gallery-placeholder p {
  font-weight: 500;
  margin: 0;
}

.about-gallery-caption {
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #4b5563;
}

@media (max-width: 768px) {
  .about-features-grid-5 {
    grid-template-columns: 1fr;
  }
  .about-detail-merits {
    grid-template-columns: 1fr;
  }
  .about-sterilization-item {
    grid-template-columns: 1fr;
  }
  .about-equipment-grid,
.about-gallery-grid {
    grid-template-columns: 1fr;
  }
}
.about-feature-card {
  flex-direction: row;
  background-color: #fff;
  border-top: 4px dotted #f9f9f9;
  border-bottom: 4px dotted #f9f9f9;
  border-radius: 0;
  gap: 2rem;
}
@media (max-width: 768px) {
  .about-feature-card {
    flex-direction: column;
    gap: 1rem;
  }
}
.about-feature-card + .about-feature-card {
  border-top: none;
}

.about-feature-title {
  aspect-ratio: 1/1;
  width: 25%;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border-radius: 100%;
  gap: 0.7rem;
  padding: 1rem 1rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .about-feature-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.about-feature-title .num {
  border-bottom: 1px solid;
}

.about-feature-description {
  text-align: left;
}

.about-policy-ttl {
  display: flex;
  gap: 1.5rem;
  border-bottom: 2px solid #1f6f5a;
  padding-bottom: 1.2rem;
  margin-bottom: 3.5rem;
  position: relative;
}
.about-policy-ttl:before {
  position: absolute;
  content: "";
  --b: 15px;
  /* control the border thickness */
  width: 2.5rem;
  aspect-ratio: 1;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%, 100% 0, calc(100% - var(--b)) var(--b), calc(100% - var(--b)) calc(100% - var(--b) / tan(22.5deg)), calc(var(--b) / tan(22.5deg)) var(--b), calc(100% - var(--b)) var(--b));
          clip-path: polygon(100% 0, 0 0, 100% 100%, 100% 0, calc(100% - var(--b)) var(--b), calc(100% - var(--b)) calc(100% - var(--b) / tan(22.5deg)), calc(var(--b) / tan(22.5deg)) var(--b), calc(100% - var(--b)) var(--b));
  background: #fff;
  bottom: 0;
  transform: translateY(100%);
  border-left: 1px solid;
  border-right: 2px solid #1f6f5a;
  left: 40px;
}
.about-policy-ttl:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 3.5rem;
  background-color: #1f6f5a;
  transform: rotate(-47deg) translateY(100%);
  bottom: -10px;
  left: 20px;
}

.about-policy-number {
  display: inline-block;
  background-color: transparent;
  color: #1f6f5a;
  width: auto;
  height: auto;
  font-size: 1.25rem;
}

.about-policy-text-title {
  margin-bottom: 0;
}

.line {
  position: relative;
}

/* HTML: <div class="triangle"></div> */
.about-policy-box {
  margin-top: 3rem;
  margin-bottom: 3rem;
}/*# sourceMappingURL=about.css.map */