@charset "UTF-8";

#contents {
  position: relative;
}
.profile_back {
  position: absolute;
  width: 400px;
  height: 100vh;
  background: url("../images/profile/profile_back.png") 0 bottom no-repeat;
  background-size: 100%;
  top: 20%;
  right: 0;
  z-index: 0;
  opacity: 0.6;
  transition: .3s;
}
.profile_back.fixed {
  position: fixed;
  top: auto;
  bottom: 0;
}
#profile_main {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 90px;
}
#profile_main .photo {
  width: 25%;
}
#profile_main .text {
  width: 70%;
  text-align: left;
}
#profile_main .profession {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  line-height: 1;
}
#profile_main .name {
  font-size: 28px;
  letter-spacing: 0.2em;
  font-weight: normal;
  margin-bottom: 50px;
  line-height: 1;
  font-family: 'Noto Serif JP', serif;
}
#profile_main .outline {
  font-size: 14px;
  line-height: 2.5;
}
#profile_biography {
  background: #E2E2E2;
  padding: 50px 0;
  text-align: left;
}
#profile_biography h2 {
  line-height: 1;
  font-size: 20px;
  letter-spacing: 0.3em;
  font-weight: normal;
  margin-bottom: 40px;
}
#profile_biography ul {
  position: relative;
  z-index: 2;
}
#profile_biography ul li {
  display: flex;
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 14px;
}
#profile_biography ul li .date {
  border-right: #C0C0C0 1px solid;
  margin-right: 10px;
  flex-basis: 160px;
  flex-shrink:0;
}
#profile_biography ul li .text {
  flex:1;
}

@media screen and (max-width:740px) {
  .profile_back {
    width: 260px;
    top: 10%;
    opacity: 0.2;
  }
  #profile_main {
    display: block;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #profile_main .photo {
    margin: 0 auto;
    margin-bottom: 50px;
    width: 260px;
  }
  #profile_main .text {
    width: 100%;
  }
  #profile_biography ul li {
    display: block;
    margin-bottom: 15px;
  }
  #profile_biography ul li .date {
    display: inline-block;
    padding-right: 10px;
    font-size: 12px;
  }
}
@media screen and (max-width:414px) {
  #profile_main .photo {
    width: 70%;
  }
}