@charset "utf-8";

h2 {
  font-size: 50px;
  text-align: center;
}

.profSection {
  padding-top: 60px;
  margin-top: -60px;
  margin-bottom: 80px;
  padding-bottom: 80px;
}



/* 全体 */
.profDiv {
  display: grid;
  grid-template-columns: 1fr 4fr;
}

/* サイドバーの設定 */
.side_content {
  position: sticky;
  top: 200px;
  scroll-padding-top: 200px;

  h2 {
    margin: 50px;

    img {
      height: 50px;
    }
  }


}

/* メインコンテンツの設定 */
.mainDiv {
  text-align: center;
  margin: 0 auto;
}

/* トップページプロフィール */
.aboutProfile {

  margin-top: 60px;
  width: 1000px;
  height: 600px;
  /* border: solid 0.1px #000; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  .switch_image {
    width: 95%;
    height: 100%;
    object-fit: cover;

    img {
      width: 95%;
      height: 100%;
      object-fit: cover;
      border-radius: 60% 40% 28% 72% / 58% 30% 70% 42%;
      margin-left: 0px;

    }
  }

  .switch_image {
    position: relative;
  }

  .switch_image img {
    transition: opacity 0.5s;
  }

  .switch_image:hover img:first-of-type {
    opacity: 0;
  }

  .switch_image img:last-of-type {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
  }

  .switch_image:hover img:last-of-type {
    opacity: 1;
  }

  .aboutContant {
    margin-left: 40px;
    width: 50%;

    h2 {
      text-align: left;
    }

    p {
      font-size: 17px;
      margin-top: 40px;
      text-align: left;
    }
  }
}

/* 経歴について */
.careerProfile {
  width: 1000px;
  margin-top: 60px;

  .entry {
    display: flex;

    .title {
      width: 20%;
      text-align: center;
      margin: auto 20px auto 0;

    }

    .titleNext {
      width: 20%;
      text-align: center;
      margin: auto 20px auto 0;
      text-decoration-line: underline;
      font-weight: bold;
    }

    .body {
      padding: 40px;
      width: 80%;
      text-align: left;
      font-size: 20px;
    }

    .bodyNext {
      padding: 40px;
      width: 80%;
      text-align: left;
      font-size: 20px;

      font-weight: bold;
    }

    .border {
      margin-left: 0 auto;
      border: solid 3px #000000;
    }

    .circle {
      margin: auto -18px;
      width: 30px;
      height: 30px;
      line-height: 20px;
      background-color: gray;
      border-radius: 50%;
      color: #000;
      text-align: center;
    }
  }
}

.hobbyProfile {
  width: 1000px;
  margin-top: 60px;
}

.conceptDetailSec {
  border: solid 1px #000;
  box-shadow: 10px 5px 5px gray;
  display: grid;
  grid-template-rows: 360px;
  grid-template-columns: 50% 50%;
  margin: 40px;
  overflow: hidden;

  img {
    object-fit: cover;
    width: 100%;
    height: 100%;

  }

  h3 {
    margin-top: 15%;
    font-size: 26px;
    font-weight: bold;
  }

  p {
    padding: 40px;
    font-size: 16px;
    text-align: left;
    line-height: 150%;
  }
}

.reverse {
  grid-template-columns: 50% 50%;

  p {
    grid-column: 1/2;
    grid-row: 1/1;
  }

  img {
    grid-column: 2/2;
    grid-row: 1/1;
  }
}

/* ★グラフ設定用CSS */
#my-chart {
  padding: 100px;
}

.graphView {
  margin: 0px;
  /* display: flex; */
}

.graphs {
  margin-top: 30px;
}

.skillExTitle {
  /* color: #00146e; */
  font-size: 40px;
  /* border: solid 1px #000; */
}

.skillExContent {
  display: block;
  position: relative;
  font-size: 20px;
  text-indent: 15px;
  margin-top: 20px;
  height: 50px;
  line-height: 50px;
}

/* グラフの設定 */
.button__gradient__bg {
  overflow: hidden;
  margin: 10px 0 0 15px;
  background-color: #464646;
  opacity: 1;
  /* filter: blur(70px); */
  border-radius: 4.17em;
  width: 90%;
  height: 40px;
  /* position: absolute; */
  inset: 0%;
  color: #000;
  box-shadow: 5px 5px 10px #b2b2b2;
  /* background: linear-gradient(90deg, #68c0f0 0%, #68c0f0 70%, #464646 50%, #464646 100%); */
  text-align: left;
  border: solid 1px #000;
  position: relative;
  display: inline-block;

  border-radius: 10px;



  p {
    display: block;
    /* border: solid 1px #000; */
    padding-top: 3px;
    padding-right: 20px;
    right: 0;
    font-size: 26px;
    text-align: right;
    color: #ffffff;

  }

  .graphTitle {
    font-size: 30px;
  }


}

.gradient70 {
  background: linear-gradient(90deg, #68c0f0 0%, #68c0f0 70%, #464646 50%, #464646 100%);
  padding: 5px;
}

.gradient10 {
  background: linear-gradient(90deg, #68c0f0 10%, #68c0f0 10%, #464646 0%, #464646 100%);
  padding: 5px;
}


@media screen and (max-width:640px) {
  .onlyPC {
    display: none;
  }

  body {
    font-size: 16px;
  }

  /* トップページプロフィール */
  .aboutProfile {


    .aboutContant {
      height: 500px;
    }


    margin-top: 60px;
    width: 1000px;
    height: 600px;
    /* border: solid 0.1px #000; */



    .switch_image {
      width: 95%;
      height: 100%;
      object-fit: cover;

      img {
        width: 95%;
        height: 100%;
        object-fit: cover;
        border-radius: 60% 40% 28% 72% / 58% 30% 70% 42%;
        margin-left: 0px;

      }
    }
  }

  .aboutContant {
    margin-left: 40px;
    width: 50%;

    h2 {
      text-align: left;
    }

    p {
      font-size: 17px;
      margin-top: 40px;
      text-align: left;
    }
  }

  .profSection {
    h1 {
      span {
        left: 25%;
      }
    }
  }


}

.groupDiv {
  text-align: left;
}

.groupTitle {
  display: flex;

  p {
    font-size: 29px;
    margin-top: 16%;
  }
}

.boxlayout {
  position: relative;
  margin: 15% 0;
  padding: 0.5em 1em;
  border: solid 3px #95ccff;
  border-radius: 8px;
}

.boxlayout .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FBFAF6;
  color: #95ccff;
  font-weight: bold;

  img {
    margin-top: -80px;
  }
}

.boxlayout p {
  margin: 0;
  padding: 0;
}

.graphGroup {
  margin-top: 15%;
  margin-bottom: 5%;
}