/* background css */
.after-none::after {
  display: none;
}
main:has(.strengths-wrap) {
  padding-bottom: 0;
}
main:has(.strengths-wrap) + .footer::before {
  display: none;
}
.strengths-wrap > .default-content {
  margin-top: 0;
}

/* ----------------------- */
/* style.css */
/* ----------------------- */
.strengths-wrap {
  background: var(--Umios_Blue);
  margin-top: -1px;
}
.strengths-wrap > .default-content {
  padding: 80px 0 100px;
}
.strengths-wrap > .default-content * {
  color: var(--Umios_White);
}
.strengths-h1-lead {
  max-width: 560px;
}
.strengths-item {
  position: relative;
  display: grid;
	grid-template-columns: 90px 0.88fr 1.12fr;
  gap: 32px;
}
.strengths-item::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 90px;
  width: 1px;
  height: 100%;
  background: var(--dark_blue2);
}
.strengths-item:first-child::before {
  top: auto;
  bottom: -32px;
}
.strengths-item:nth-child(2)::before{
  height: calc(100% + 32px);
}
.strengths-item:nth-child(3)::before {
  height: calc(100% + 60px);
} 
.strengths-item:nth-child(4)::before {
  content: none;
} 
.strengths-item + .strengths-item {
  margin-top: 32px;
}
.strengths-number {
  position: relative;
  color: var(--Umios_green)!important;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  height: fit-content;
}
.strengths-number::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: var(--Umios_green);
  z-index: 1;
}
.strengths-text-box {
  position: relative;
}
.strengths-title {
  font-size: 4.4rem;
  font-weight: 300;
  line-height: 1.2;
}
/* movie */
.strengths-wrap .movie-control {
  justify-content: flex-start;
  margin: -52px 0 0 8px;
  padding-bottom: 12px;
}
.strengths-wrap .video-player {
  aspect-ratio: auto;
}

@media screen and (max-width: 769px) {
  .strengths-wrap > .default-content {
    padding: 16px 0 80px;
  }
  .strengths-item {
    grid-template-columns: 36px 1fr;
    gap: 24px;
  }
  .strengths-item::before {
    left: 37px;
  }
  .strengths-item:first-child::before {
    bottom: -60px;
    height: calc(100% + 46px);
  }
  .strengths-item:nth-child(2)::before{
    height: calc(100% + 60px);
  }
  .strengths-item + .strengths-item {
    margin-top: 50px;
  }
  .strengths-title {
    grid-column: 1;
  }
  .movie-container {
    grid-column: 2;
    grid-row: 1; 
  }
  .movie-content {
    border-radius: 10px;
  }
  .strengths-wrap .movie-control {
    margin: -40px 0 0 0;
    padding-bottom: 0;
  }
  .strengths-text-box {
    grid-column: 2;
    grid-row: 2; 
  }
  .strengths-number {
    font-size: 2rem;
  }
  .strengths-title {
    font-size: 2.6rem;
  }

}


/* ----------------------- */
/* Modal */
/* ----------------------- */
.strengths-modal {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0,0,0,0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  /* animation */
  transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
}
.strengths-modal-content {
  background-color: var(--Umios_White);
  padding: 100px 54px 100px 64px;
  width: 100%;
  max-width: 645px;
  height: auto;
  min-height: 100%;
  box-sizing: border-box;
  transform: translateX(100%);
  box-sizing: border-box;
  /* animation */
  transition: transform 0.6s cubic-bezier(0.25,0.8,0.25,1), opacity 0.3s ease;
}
/* modal open */
.strengths-modal.is-active {
  background-color: rgba(0,0,0,0.1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* animation */
  transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0s;
}
.strengths-modal.is-active .strengths-modal-content {
  transform: translateX(0);
  opacity: 1;
}
/* modal content */
.strengths-modal-img {
  display: flex;
  align-items: center;
  height: 118px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 6px;
}
.strengths-text-link {
  color: var(--Umios_Blue);
  text-decoration: underline;
}
.strengths-text-link:hover {
  color: var(--Umios_Blue);
  text-decoration: none;
}
/* btn open */
.strengths-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 14px;
}
.strengths-btn:focus-visible {
  outline: 2px solid var(--Umios_White);
  outline-offset: 2px;
}
.strengths-btn img {
  width: 54px;
  height: 54px;
  transition: transform 0.3s ease;
}
.strengths-btn:hover img {
  transform: rotate(-45deg);
}

/* modal close */
.modal-close-wrap{
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal-close {
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  &:hover {
    transform: scale(1.1);
      &::before,
      &::after {
      width: 22px;
      }
      &::before {
        transform: rotate(0deg);
      }
      &::after {
        transform: rotate(0deg);
        opacity: 0;
      }
  }
  &::before, 
  &::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #0042BC;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  &::before {
    transform: rotate(45deg);
  } 
  &::after {
    transform: rotate(-45deg); 
  }
}
.strengths-modal .default-list:not(.normal-dots) li:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 769px) {
  .strengths-modal-content {
    padding: 90px 20px 100px 20px;
    max-width: 85%;
  }
  .modal-close-wrap {
    top: 0;
    right: 0;
  }
  .strengths-btn img {
    width: 30px;
    height: 30px;
  }
}


.movie-control .control-btn.ui-text{
  text-shadow: 0px 0px 3px rgba(0, 0, 0, .6);
}