@charset "UFT-8";

/*カーソル合わせたときの色*/
a:link {
  color: #707070;}
a:visited {
  color:#4E4C4C ;
}
a:hover {
  color: #007F89;
}
a: active {
  color: #007F89;
}
a{
  text-decoration: none;
}
a{
  transition: color 0.5s;
}


/*上固定バー　背景*/
.page_header {
  position: fixed;
  top: 0;
  width: 85%;
  right: 0;
  height: 100px;
  background: white;
}

/*上ナビゲーション*/

.container_main_nav {

  position:fixed;
  top: 2vh;
  width:76%;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color:;
}
.container_main_tag {
  width:90%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.container_snsandlag_tag {
  width:10%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.nav_label {
  font-size: 20px;
  line-height: 1.5;
  color: #707070;
  font-family: "source-han-sans-japanese", sans-serif;
 font-weight: 700;
 font-style: normal;
}

/*カーソル合わせたときの色*/
.nav_label:link {
  color: #707070;}
.nav_label:visited {
  color:#4E4C4C ;
}
.nav_label:hover {
  color: #007F89;
}
.nav_label: active {
  color: #007F89;
}
.nav_label{
  text-decoration: none;
}
.nav_label{
  transition: color 0.5s;
}
/*title*/

.title{
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
}
.title p{
  margin: 0em 0px;
}
.title_base {
 font-size: 40px;
 font-family: "source-han-sans-japanese", sans-serif;
font-weight: 700;
font-style: normal;
}

.title_color {
 font-size: 40px;
 color:#007F89;
 font-family: "source-han-sans-japanese", sans-serif;
font-weight: 700;
font-style: normal;
}


/*全体配置*/
.profile {
  display: flex;
  flex-direction: column;
  width:75%;
  height: auto;
  left: 12.5%;
  position: relative;
  top: 15vh;
}
.profile_contents {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}

.container1 {
  width: 15%;
}
.container1_item {
  display :flex;
  flex-direction: column;
  align-content: space-around;
  position: relative;
  text-align: center;
}
.container1 img {
  height:40vh;
  width: 100%;
  object-fit: cover;
}

.container2 {
  width: 68%;
}

/*フォントサイズ指定*/
.profile li {
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
 font-weight: normal;
 font-style: normal;
}
h1 {
  border-bottom: 3px solid #007F89;
  font-size: 20px;
  font-family: "source-han-sans-japanese", sans-serif;
 font-weight: 700;
 font-style: normal;
}
#name_kanji {
  font-size: 25px;
  font-family: "source-han-sans-japanese", sans-serif;
 font-weight: 700;
 font-style: normal;
}
#name_hiragana {
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
 font-weight: normal;
 font-style: normal;
}

/*footer*/
footer {
position: relative;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
bottom: 0;
}
footer p {
 color: #707070;
  font-size: 15px;
}






/*重ね順の整理*/
.document_container　{
  z-index: -1;
}
.page_header {
  z-index: 3;
}


/*MOBILE SIZE*/
@media (max-width: 900px) {
  /*titleの大きさ変更*/
.page_header {
    height: 20vh;
  }
.title {
  display: flex;
  flex-direction: row;
}
.title_color {
   font-size: 15px;
 }
.title_base {
   font-size: 15px;
  }

  /*ナビゲーションの大きさや位置変更*/
.nav_label {
  font-size: 10px;
}
.container_main_nav {
  width: 90%;
  right:5%;
}
.page_header {
    width: 100%
  }

  .container_main_tag {
    width:70%;
    justify-content: space-around;
    position:fixed;
    top: 15vh;
  }

  .container_snsandlag_tag {
    position:fixed;
    right: 0;
    width:30%;
    display: flex;
    justify-content: space-around;
  }

  .profile {  /*プロフィールの位置変更*/
    width:90%;
    left: 5%;
    top: 20vh;
  }
  .profile_contents {  /*プロフィールを２カラムから1カラムへ*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .container1 {/*プロフィール写真フレーム幅変更*/
    width: 100%;
  }
  .container1 img {/*プロフィール写真大きさ等変更*/
    height:40vh;
    width: 100%;
    object-fit: scale-down;
  }
  .container2 {/*テキストフレーム幅変更*/
    width: 90%;
      left: 5%;
  }
section {
  width: 90%;
    left: 5%;
}
h1 {/*見出しフォントサイズ変更*/
  border-bottom: 2px solid #007F89;
  font-size: 15px;
}
.profile li {/*テキストフォントサイズ変更*/
  font-size: 10px;
}
footer {/*フッター_サイズ変更*/
padding: 1px 0;
}
footer p {
  font-size: 10px;
}
