@charset "utf-8";

.profile__img,
.works__text--area img,
.footer__sns--icon {
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.4));
}

.footer__sns--top,
.footer__sns--bottom,
.profile__name {
  -webkit-text-stroke: 5px var(--primary--white);
  paint-order: stroke fill;
} 

.profile__contents {
  width: 100%;
}

.profile__area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
  margin-top: 60px;
}

.profile {
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px 0;
}

.profile__img {
  width: 100%;
  max-width: 250px;
  border-radius: 50%;
  }

.profile__name {
  color: var(--primary--black);
  paint-order: stroke fill;
  font-family: "Zen Maru Gothic";
  font-size: clamp(1.25rem, 1.074rem + 0.75vw, 1.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.profile__text {
  max-width: 900px;
  background-color: var(--primary--darkviolet);
  padding: 5.9%;
  border-radius: 10px;
  font-weight: 400;
  font-size: clamp(1rem, 0.736rem + 1.13vw, 1.75rem);
}

.ls__narrow--profile {
  letter-spacing: -2px;
}

@media screen and (min-width: 769px) {
  .profile__area {
  flex-direction:unset;
  align-items: center;
  gap: 50px;
  margin-top: 120px;
}
.profile__img {
    width: 250px;
    height: 250px;
}

.profile {
  width: 36%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px 0;
}

  .profile__text {
  width: 100%;
  height: auto;
  background-color: var(--primary--darkviolet);
  padding: 30px;
  border-radius: 10px;
  font-weight: 400;
  font-size: clamp(1rem, 0.736rem + 1.13vw, 1.75rem);
}
  .sp__br{
    display: none;
  }
}

.works__area {
  display: inline-block;
  background-color: var(--primary--green);
  width: 100%;
  text-align: center;
  padding: 5.9%;
  border-radius: 10px;
  position: relative;
  margin-top: 60px;
}

.works__title {
font-style: normal;
font-weight: 700;
line-height: 1;
font-size: clamp(1rem, 0.56rem + 1.88vw, 2.25rem);
}

.works__text--area {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 30px;
  text-align: left;
}

.works__text {
  display: block;
  font-weight: 400;
  font-size: clamp(1rem, 0.736rem + 1.13vw, 1.75rem);
}

.works__text:nth-of-type(5) {
  display: flex;
  align-items: center;
}

.time__column {
  display: flex;
  flex-direction: column;
}

.year:first-of-type:after {
  display: block;
  margin-inline: auto;
  content: '';
  width: 2px;
  height: 20px;
  border-radius: 10px;
  background-color: var(--primary--white);
}

.works__detail {
  margin-left: 1em;
}

.no__space {
  letter-spacing: -8px;
}

.character {
  width: 20%;
  max-width: 150px;
  animation: shake 2s infinite;
}

.character__left {
  position: absolute;
  top: -60px;
  left: 0;
  transform: rotate(-7.412deg);
}

.character__right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.footer__sns--images {
  margin-bottom: -30px;
}

@media screen and (min-width: 769px) {
  .works__area {
  padding: 3.3%;
  margin-top: 120px;
  }

  .character__left {
  position: absolute;
  top: auto;
  bottom: 10px;
  left: 3%;
  transform: rotate(-7.412deg);
  }

  .character__right {
    right: 41px;
  }
  .footer__sns--images {
    margin-bottom: -36px;
  }
}

