/*PUBLICATIONページcss*/
html{
  height: 100%;
}
body{
  background-color:#ffffff;
  //font-family: "BIZ UDPGothic", sans-serif;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 5px;
}
#wrapper{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.P_main{
  margin-top:106px;
  display: flex;
}
.P_contents{
  width:100vw;
}

/*PUBLICATION画像*/
.P_contents1{
  width: 100vw;
  height:400px;
  background-image:url("../image/publication.png");
  background-size: cover;
  background-position: 0 70%;
}
.P_subcontents_mask{
  height:100%;
  background: rgba(255, 255, 255, 0.25);
}
.P_subcontents_title{
  color: #000000;
  font-size: 50px;
  padding-top: 150px;
  text-align: center;
}

/*見出し*/
.hl_font{
  font-size: 20px;
  text-align: center;
}
.hl_font h2 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color:#000;
}
.hl_font h2 a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  background: #000;
  opacity: 0.25;
  transition: .3s;
}
.hl_font h2 a:hover::after {
  bottom: -1px;
  opacity: 1;
  visibility: visible;
}
.gakkai h2 a::after{
  opacity: 0.0;
}
.gakkai h2 a:hover::after{
  opacity: 0.0;
}

/*学会発表内容*/
.acd-check{
  display: none;
}
.acd-label{
  background: #005BAC;
  color: #fff;
  display: block;
  margin-bottom: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 60px;
  padding-left: 60px;
  position: relative;
  text-align: center;
  height: 30px;
}
.acd-label:after{
  background: #005BAC;
  box-sizing: border-box;
  content: '\f067';
  display: block;
  font-family: "Font Awesome 5 Free";
  height: 50px;
  padding: 10px 20px;
  position: absolute;
  right: 10px;
  top: 0px;
}
.acd-content{
  border: 1px solid #333;
  height: 0;
  padding: 0 10px;
  display: none;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
}
.acd-check:checked + .acd-label:after{
  content: '\f068';
}
.acd-check:checked + .acd-label + .acd-content{
  height: auto;
  padding: 10px;
  display: block;
}
.P_bold{
  color: #990000;
  text-shadow:
  0.2px 0.2px 0,
  0.2px -0.2px 0px,
  -0.2px 0.2px 0,
  -0.2px -0.2px 0px,
  0.2px 0px 0px,
  0px 0.2px 0px,
  -0.2px 0px 0px,
  0px -0.2px 0px;
  letter-spacing: 1px;
}
/*パンくずリスト*/
.breadcrumb{
  width : 100%;
  color: #000;
  text-align: left;
  height: 25px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #ffffff;
}
.breadcrumb a{
  color: #000;
  text-decoration: none;
}

/*ウィンドウサイズ別の指定*/
@media screen and (max-width:1000px){
  /*画面サイズが1000px以下の場合に適用*/
  .P_main{
    margin-top:62px;
  }
}
@media screen and (max-width:628px){
  /*画面サイズが628px以下の場合に適用*/
  .P_main{
    margin-top:114px;
  }
}