@charset "utf-8";

.works__item {
  position: relative;
  padding-bottom: 120px;
}
.works__item:last-of-type {
  padding-bottom: 0;
}
.works__item + .works__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  width: 100vw;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}
.works__item + .works__item {
  padding-top: 100px;
}

.about-title {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.about-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #7B6D3D;
  border-radius: 50%;
  flex-shrink: 0;
}

.about__box + .about__box {
  margin-top: 80px;
}

.about__wrap {
  margin-top: 55px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .about__wrap {
    flex-direction: row;
    gap: min(calc(60 / 1366 * 100vw), 60px);
  }
  .about__wrap02 {
    flex-direction: row-reverse;
  }
}

.about__img {
  aspect-ratio: 462 / 443;
  width: min(100%, 550px);
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .about__img {
 	width: min(calc(462 / 1366 * 100vw), 462px);
  }
}

.schedule__wrap {
      margin-top: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 21px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .schedule__wrap {
 	margin-top: 50px;
  }
}

.timeline-line {
  position: absolute;
  background: #ADADAD;
  width: 1px;
  transform-origin: top left;
  z-index: -1;
}

.schedule__boxes {
  display: flex;
  align-items: center;
  gap: 30px;
}
.schedule__time {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 75px;
  flex-shrink: 0;
  justify-content: space-between;
}
.schedule__time::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #7B6D3D;
  border-radius: 50%;
}

.schedule__box {
  background: #fff;
padding: 25px 33px 20px 27px;
}

.personality__wrap {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 57px;
}
@media screen and (min-width: 800px) {
  .personality__wrap {
    flex-direction: row;
    max-width: 990px;
  }
}

.personality__item {
  flex: 1;
}
.personality__item:first-of-type {
  position: relative;
}

@media screen and (min-width: 800px) {
  .personality__item:first-of-type::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    width: 1px;
    height: 100%;
    top: 0;
    right: -27px;
  }
}

.personality__boxes {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.skill__box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 25px 20px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .skill__box {
    gap: 35px;
    padding: 25px 25px 25px 35px;
    height: 164px;
  }
}

.skill__img {
  width: 63px;
  height: auto;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .skill__img {
    width: 83px;
    height: 83px;
  }
}

.work__box {
  border-radius: 5px;
  overflow: hidden;
}
.work__box-title {
  background: #B7AD9A;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: calc(32.4 / 16);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 23px 13px;
}
.work__box-title::before {
  content: "";
  width: 4px;
  height: 22px;
  background: #fff;
}
.work__box-tags {
  padding: 25px 16px 17px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
      gap: 12px 15px;
}
.work__box-text {
      padding: 14px 25px 17px;
}
.work__box-tag {
  background: rgba(236, 235, 232, 0.8);
  border-radius: 14px;
  padding: 5px 7px;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
}



@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1366px;
    height: inherit;
    padding: 0 60px;
    margin: 0 auto;
  }
}