@charset "UTF-8";
/* CSS Document */
body {
  background-color: #f4eeff;
}
header {
  background-color: #a6b1e1;
}
.wrapper {
  max-width: 1440px;
  margin: 0 auto;
}
/* Body and Wrapper max-width: 700px */
@media screen and (max-width: 700px) {
  header {
    background-color: #a6b1e1;
  }
}
/* Career Profile */
.career-profile {
  background-color: #fffffe;
  margin: 120px 70px 0;
  padding: 30px 30px;
}
.career-profile__title {
  font-size: 2.8rem;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: #424874 solid 2px;
}
.career-profile__content {
  padding: 0 40px;
  display: flex;
}
.career-profile__picture {
  width: 30%;
}
.career-profile__picture img {
  width: 90%;
  height: auto;
  margin: 0 auto;
}
.career-profile__text {
  width: 70%;
}
.career-profile__history {
  display: flex;
}
.career-profile__history-subtitle {
  width: 20%;
}
.career-profile__history-subtitle p {
  margin: 20px 0 20px 20px;
  text-align: left;
  font-size: 2.0rem;
}
.career-profile__history-content p {
  margin: 20px 0 20px 20px;
  text-align: left;
  font-size: 2.0rem;
}
.career-profile__study {
  padding: 0 40px;
  margin-top: 20px;
  display: flex;
}
.career-profile__study-subtitle {
  width: 20%;
}
.career-profile__study-subtitle p {
  margin: 20px 0 20px 20px;
  text-align: left;
  font-size: 2.0rem;
}
.career-profile__study-content {
  width: 80%;
}
.career-profile__study-content p {
  margin: 20px 40px 20px 0;
  text-align: left;
  font-size: 2.0rem;
}
/* Career Profile max-width: 1024px */
@media screen and (max-width: 1024px) {
  .career-profile {
    margin: 60px 40px 0;
  }
  .career-profile__title {
    font-size: 2.6rem;
  }
  .career-profile__content {
    padding: 0 20px;
  }
  .career-profile__picture {
    width: 25%;
  }
  .career-profile__picture img {
    width: 100%;
  }
  .career-profile__history {
    display: block;
  }
  .career-profile__history-subtitle {
    width: 100%;
    text-align: left;
  }
  .career-profile__history-subtitle p {
    margin: 0 0 0 20px;
    font-weight: 600;
  }
  .career-profile__history-content p {
    margin: 0 0 20px 20px;
  }
  .career-profile__study {
    display: block;
    padding: 0 20px;
  }
  .career-profile__study-subtitle {
    width: 100%;
    text-align: left;
  }
  .career-profile__study-subtitle p {
    margin: 20px 0 0;
    font-weight: 600;
  }
  .career-profile__study-content {
    width: 100%;
    text-align: left;
  }
  .career-profile__study-content p {
    margin: 0;
  }
}
/* Career Profile max-width: 599px */
@media screen and (max-width: 599px) {
  .career-profile {
    margin: 40px 20px 0;
  }
  .career-profile__title {
    font-size: 2.0rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: #424874 solid 1px;
  }
  .career-profile__content {
    display: block;
    padding: 0;
  }
  .career-profile__picture {
    width: 100%;
  }
  .career-profile__picture img {
    width: 70%;
  }
  .career-profile__text {
    width: 100%;
    margin-top: 10px;
  }
  .career-profile__history-subtitle p {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 5px 0;
  }
  .career-profile__history-content p {
    margin: 0 0 10px 0;
    font-size: 1.6rem;
  }
  .career-profile__study {
    padding: 0;
    margin: 0;
  }
  .career-profile__study-subtitle p {
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 1.6rem;
  }
  .career-profile__study-content p {
    font-size: 1.6rem;
    margin: 0;
  }
}
/* Book Lists */
.book-lists {
  margin: 100px 70px 0;
}
.book-lists__title {
  font-size: 2.8rem;
  font-weight: 500;
}
.book-lists__background {
  margin: 50px 10px 0 0;
  padding: 30px 40px;
  background-color: #fffffe;
  box-shadow: 10px 10px 0px 0px rgb(220 214 247);
}
.book-lists__background:first-of-type {
  margin-top: 30px;
}
.book-lists__book-name {
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.book-lists__content {
  display: flex;
  margin-top: 30px;
}
.book-lists__content-image {
  width: 20%;
}
.book-lists__content-image img {
  width: 70%;
  height: auto;
  margin: 0 auto;
}
.book-lists__content-description {
  width: 80%;
  text-align: left;
  padding-top: 20px;
  padding-left: 20px;
}
.book-lists__content-description p {
  font-size: 2.0rem;
}
.book-lists__content-description p a {
  text-decoration: none;
  color: #a6b1e1;
  font-style: italic;
  border-bottom: #a6b1e1 solid 2px;
}
.book-lists__book-description {
  text-align: left;
}
.book-lists__book-description p {
  font-size: 2.0rem;
}
.book-lists__book-description p span {
  color: #a6b1e1;
}
.book-lists__supplement {
  margin-top: 40px;
  text-align: left;
}
.book-lists__supplement a {
  font-size: 2.0rem;
  text-decoration: none;
  color: #a6b1e1;
  font-style: italic;
  border-bottom: #a6b1e1 solid 2px;
}
/* Book Lists max-width: 1024px */
@media screen and (max-width: 1024px) {
  .book-lists {
    margin: 60px 40px 0;
  }
  .book-lists__title {
    font-size: 2.6rem;
  }
  .book-lists__content-image img {
    width: 90%;
  }
  .book-lists__content-description {
    padding-top: 0;
  }
}
/* Book Lists max-width: 599px */
@media screen and (max-width: 599px) {
  .book-lists {
    margin: 40px 15px 0 20px;
  }
  .book-lists__title {
    font-size: 2.0rem;
  }
  .book-lists__background {
    margin-top: 20px;
    padding: 24px 20px;
    box-shadow: 5px 5px 0px 0px rgb(220 214 247);
  }
  .book-lists__background:first-of-type {
    margin-top: 10px;
  }
  .book-lists__book-name {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .book-lists__content {
    display: block;
    margin-top: 0;
  }
  .book-lists__content-image {
    width: 100%;
  }
  .book-lists__content-image img {
    width: 30%;
  }
  .book-lists__content-description {
    width: 100%;
    margin: 6px 0 0 0;
    padding: 0;
  }
  .book-lists__content-description p {
    font-size: 1.6rem;
  }
  .book-lists__book-description p {
    font-size: 1.6rem;
  }
  .book-lists__supplement {
    margin-top: 10px;
  }
  .book-lists__supplement a {
    font-size: 1.6rem;
  }
}
/*

COLOR

base purple: #f4eeff
base white: #fffffe
main purple: #dcd6f7
main blue: #a6b1e1
accent blue: #424874

*/