/*---------------
service
---------------*/

.symptoms-section {
  display: flex;
  width: 100%;
  background: linear-gradient(to bottom, rgba(166, 146, 96, 0.2) 0%, rgba(166, 146, 96, 0) 100%);
}

.symptoms-content {
  width: 50%;
  padding: 100px 120px;
  display: flex;
  flex-direction: column;
}

.symptoms-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  margin-bottom: 54px;
}

.symptoms-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-dark);
  margin-bottom: 40px;
}

.symptoms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.symptoms-list li {
  background-color: var(--color-white);
  border-radius: 50px;
  padding: 24px 50px;
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.5;
}

.symptoms-image {
  width: 50%;
}

.symptoms-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .symptoms-section {
      flex-direction: column-reverse;
  }
  
  .symptoms-content {
      width: 100%;
      padding: 34px 20px 40px;
  }

  .symptoms-image {
      width: 100%;
      height: 100vw;
  }

  .symptoms-title {
      font-size: 24px;
      text-align: left;
      margin-bottom: 28px;
  }

  .symptoms-desc {
      font-size: 18px;
      margin-bottom: 30px;
  }

  .symptoms-list {
      gap: 24px;
  }

  .symptoms-list li {
      padding: 20px 50px;
      box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
  }

  .sp-only {
      display: block; 
  }
}

.point-section {
    display: flex;
    width: 100%;
    background-color: var(--color-bg);
    overflow: hidden;
}

.point-visual {
    width: 50%;
    position: relative;
}

.point-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.point-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(244, 244, 244, 0) 0%, rgba(244, 244, 244, 0.8) 60%, rgba(244, 244, 244, 1) 100%);
}

.point-title-block {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    z-index: 2;
}

.point-content {
    width: 50%;
    padding: 100px 10% 100px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 82px;
    z-index: 1;
}

.point-item-title {
  font-size: 20px;
  color: var(--color-dark);
  line-height: 1.4;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.point-item-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-dark);
  margin: 0;
}

@media screen and (max-width: 768px) {
  .point-section {
      flex-direction: column;
  }

  .point-visual {
      width: 100%;
      height: 400px;
  }

  .point-gradient {
      background: linear-gradient(to bottom, rgba(244, 244, 244, 0) 0%, rgba(244, 244, 244, 0.7) 60%, rgba(244, 244, 244, 1) 100%);
  }

  .point-title-block {
      top: auto;
      bottom: 0;
      right: auto;
      left: 0;
      transform: none;
      padding: 0 20px 20px;
  }

  .point-jp {
      font-size: 28px;
  }

  .point-content {
      width: 100%;
      padding: 20px 20px 60px;
      gap: 40px;
  }

  .point-item-title {
      font-size: 18px;
  }
}

.treatment{
  background-color: var(--color-white);
  padding: 100px var(--gutter);
}

.treatment__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.treatment__header {
  margin-bottom: 60px;
}

.treatment__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.treatment__item {
  display: flex;
  align-items: stretch;
  background-color: var(--color-white);
  gap: 16px;
}

.treatment__item-img {
  flex: 0 0 320px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.treatment__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.treatment__item-body {
  flex: 1;
  background: linear-gradient(to right, rgba(166, 146, 96, 0.2) 0%, rgba(166, 146, 96, 0) 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.treatment__item-title {
  font-size: 24px;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.5;
  position: relative;
}

.treatment__item-text {
  font-size: 18px;
  color: var(--color-dark);
  line-height: 1.5;
  text-align: justify;
}

.treatment__item-text small {
  display: block;
  margin-top: 10px;
  font-size: 0.85em;
  color: var(--color-text-sub);
}

@media screen and (max-width: 768px) {
  .treatment {
      padding: 60px 20px;
  }

  .treatment__header {
	  margin-bottom: 40px;
	}

  .treatment__list {
      gap: 28px;
  }

  .treatment__item {
      flex-direction: column;
      gap: 8px;
  }

  .treatment__item-img {
      flex: 0 0 auto;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: var(--radius-md);
  }

  .treatment__item-body {
      padding: 25px 20px;
  }

  .treatment__item-title {
      font-size: 18px;
      margin-bottom: 12px;
  }

  .treatment__item-text {
      font-size: 16px;
      line-height: 1.6;
  }
}

@media (hover: hover) {
  .treatment__item:hover .treatment__item-img img {
      transform: scale(1.05);
  }
}




