/* CSS Document */ /*profile*/
/*=======================
 profile
=======================*/
/*sp*/
.profile picture { /*中央よせ*/
  display: grid;
  justify-items: center;
}
.profile-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.h3 {
  font-size: 1.25em;
  font-weight: 400;
}
.profile__p {
  line-height: calc(32 / 14); /*フォントサイズ14px、行間32px*/
  padding-top: 20px;
}
/*pc*/
@media (min-width : 768px) {
  .profile__container {
    display: flex;
    align-items: flex-start;
    gap: 2vw;
  }
}
/*=======================
 h2
=======================*/
.career h2, .skills h2 {
  margin: 0;
  line-height: 1;
}
.career__h2_sub, .skills__h2_sub {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #8c8c8c;
  padding-bottom: clamp(10px, 5%, 40px);
}
/*=======================
  Career タイムライン
=======================*/
.timeline {
  list-style: none;
}
.timeline > li {
  overflow: hidden;
  margin: 0;
  position: relative;
}
.timeline-content h3 {
  color: #D7C4A5;
  font-weight: 400;
}
.timeline-content p {
  font-size: 13px;
}
/*sp*/
.timeline-date {
  width: 70px;
  float: left;
  margin-top: 15px;
}
.timeline-content {
  float: left;
  border-left: 3px #D7C4A5 solid;
  padding: 15px 0 30px 15px;
  margin: 0 0 0 15px;
  width: 90%;
}
/*
.timeline-content:before {
  content: '';
  width: 12px;
  height: 12px;
  background: #8c8c8c;
  position: absolute;
  left: 66px;
  top: 23px;
  border-radius: 100%;
}
*/
/*pc*/
@media (min-width : 768px) {
  .timeline-date {
    width: 110px;
  }
  .timeline-content {
    width: 75%;
    float: left;
    border-left: 3px #D7C4A5 solid;
    padding: 15px 0 30px 30px;
    margin: 0;
  }
  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #D7C4A5;
    position: absolute;
    left: 105.5px;
    top: 24px;
    border-radius: 100%;
  }
}
/*=======================
 Skills
=======================*/
.skills__container {
  margin-bottom: 60px;
  width: 100%;
}
.skills__container p {
  border-top: solid 1px #8c8c8c;
  padding: 0 0 10px 0;
}
.skills__icon_wrapper {
  display: flex;
  gap: 2vw;
}
.skills__icon_wrapper img {
  width: 40px;
}
.skills__container h3 {
  font-size: 18px;
  color: #D7C4A5;
}
.underline {
  border-bottom: solid 1px #333;
  margin: 0 0 20px;
}
.skills__a {
  display: block;
  text-align: center;
  margin: 60px auto 0;
  border: solid 1px #D7C4A5;
  width: 60%;
}
/*pc*/
@media (min-width : 768px) {
  .skills__display {
    display: flex;
    gap: 10%;
  }
  .skills__kadai {
    text-align: center;
  }
}