body {
  color: var(--colorBlack);
  font-weight: 400;
}

section + section {
  margin-top: 4.9rem;
}

.strength_BTN {
  padding: 0.88em 1.412em 1.118em 2.27em;
}

@media screen and (max-width: 767px) {
  .strength_BTN {
    padding: 0.625em 2.5em 0.875em 2.5em;
  }
}

/* ページ内共通 */
.pageCulture {

  .sectionCard {
    border-radius: 30px 30px 0 30px;
    overflow: hidden;
    background: var(--colorWhite);
    display: flex;
    gap: 0;

    &.even {
      border-radius: 30px 30px 30px 0;
    }
  }

  .sectionCard__img {
    flex: 0 1 50%;
    width: 100%;
    height: inherit;
    position: relative;
    overflow: hidden;
  }

  .sectionCard__img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: cover;
  }
  
  .sectionCard__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 38rem;
  }

  .sectionCard__title {
    font-family: var(--familyZenMaruGothic);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.53846;
    position: relative;
    padding-left: 3rem;
  }

  .sectionCard__title::before {
    content: "";
    background-color: var(--colorGreen);
    width: 0.8rem;
    height: 4rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .sectionCard__text {
    font-size: 1.8rem;
    line-height: 1.833;
    letter-spacing: 0.54px;
    margin-top: 2rem;
  }

  .sectionCard__button {
    margin-top: auto;
    text-align: right;
  }

  @media screen and (max-width: 767px) {
    .container1100 {
      padding-inline: 2.5rem;
    }
    .sectionCard {
      border-radius: 20px 20px 0 20px;
      display: block;

      &.even {
        border-radius: 20px 20px 0 20px;
      }
    }

    .sectionCard__img {
      overflow: visible;
    }
    
    .sectionCard__img img {
      position: static;
      left: auto;
      top: auto;
      transform: none;
      width: 100%;
      max-width: 100%;
      height: 100%;
      object-fit: contain;
    }
    
    .sectionCard__details {
      min-height: unset;
      display: block;
    }

    .sectionCard__title {
      font-size: 2.2rem;
      line-height: 1.81818;
      padding-left: 2.1rem;
    }

    .sectionCard__title::before {
      width: 0.7rem;
      height: 3.8rem;
    }

    .sectionCard__text {
      font-size: 1.6rem;
      line-height: 1.75;
      margin-top: 1.7rem;
    }

    .sectionCard__button {
      margin-top: 1.5rem;
      text-align: center;
    }
  }
}

.sectionCard-1 .sectionCard__details {
  padding: 5rem 6.8rem 5rem 8.3rem;

  @media screen and (max-width: 767px) {
    padding: 2.1rem 2rem 3.7rem 2rem;
  }
}

.sectionCard-2 {
  flex-direction: row-reverse;
  
  .sectionCard__details {
    padding: 4.9rem 4.3rem 4.2rem 6.1rem;
  }
  
  .sectionCard__title {
    font-size: 2.2rem;
    line-height: 1.818;
  }
  
  .sectionCard__button {
    margin-top: 1.7rem;
    text-align: left;
  }
  
  @media screen and (max-width: 767px) {
    .sectionCard__details {
      padding: 2.1rem 2rem 3.7rem 2rem;
    }
    .sectionCard__title {
      font-size: 2.2rem;
      line-height: 1.81818;
    }
  }
}

.sectionCard-3 {
  .sectionCard__details {
    padding: 4.5rem 6.2rem 5.9rem 8.3rem;
  }
  
  .sectionCard__title {
    font-size: 3rem;
    line-height: 1.56667;
  }
  
  .sectionCard__button {
    margin-top: 3rem;
  }
  
  @media screen and (max-width: 767px) {
    .sectionCard__details {
      padding: 2.1rem 2rem 3.7rem 2rem;
    }
    .sectionCard__title {
      font-size: 2.2rem;
      line-height: 1.81818;
    }
  }
}

/* 背景調整 */

.pageContents .leaf-1 {
  top: 47.9rem;
}

#sectionCulture-3 {
  position: relative;
  
  @media screen and (max-width: 767px) {
    &::before {
      content: "";
      background: url(../../images/common/img_bg_right-tree.webp) no-repeat center center / contain;
      width: 16rem;
      height: 38rem;
      position: absolute;
      bottom: -31rem;
      right: 0;
      z-index: -1;
    }
  }
}