@charset "utf-8";

/*　画像入りヘッダーの設定
================================================================================*/
.main-header {
  background: url(../images/presentations/Firstview-Presentation.webp);
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  display: flex;
  align-items: center
}
.main-header h2 {
  width: 100%;
  font-size: 4.5vw;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 10px #000000;
  text-align: center;
  font-style: italic;
}



/*　全体設定
================================================================================*/
html {
  scroll-behavior: smooth;
}
.Presentations {
  padding-left: 40px;
  padding-right: 40px;
}
.Area {
  display: none;
}
.Area.domestic-conference.show {
  display: block;
}
.Area.international-conference.show {
  display: block;
}
.Area.award.show {
  display: block;
}
.Area.attended-conference.show {
  display: block;
}
.Area-inner {
  display: flex;
  justify-content: center;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.List {
  width: 1000px;
  line-height: 1.5;
}
.List h3 {
  font-size: 32px;
  color: #93c80e;
  margin-left: 20px;
  margin-bottom: 5px;
}
.List ul {
  background-color: #f7f7f7;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  margin-bottom: 100px;
  max-width: 100%;
}
.List li {
  max-width: 1000px;
  padding: 20px;
  border-top: 1px solid #e0dada;
  max-width: 100%;
}
.List li:last-child:last-child {
  border-bottom: 1px solid #e0dada;
}
.List p {
  margin-right: 50px;
  width: 100%;
}
.List img {
  display: inline-block;
  width: 150px;
  border: solid 1px #000000;
}
.List a {
  display: inline-block;
  color: #93c80e;
}
.List a:hover {
  opacity: 0.3;
  transition-duration: 0.3s;
}
.topic {
  color: #f92a2a;
}



/*　国内学会/国際学会/受賞/参加学会の設定
================================================================================*/
/* 国内学会/国際学会/受賞/参加学会タブの共通設定 ---------- */
.Presentations-buttons {
  display: flex;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
}
.Presentations-buttons  h3 {
  margin-left: 5px;
}
/* 国内学会/国際学会/受賞/参加学会タブの共通設定 ---------- */

/* 国内学会タブの設定 ---------- */
#domestic-conference-button.selected::after {
  content: '';
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 5px;
  background-color: #93c80e;
}
/* マウスオーバー設定 */
#domestic-conference-button:hover {
  color: #93c80e;
  cursor: pointer;
  transition-duration: 0.3s;
}
#domestic-conference-button.selected:hover {
  color: #000000;
  cursor: default;
}
/* 国内学会タブの設定 ---------- */

/* 国際学会タブの設定 ---------- */
#international-conference-button.selected::after {
  content: '';
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 5px;
  background-color: #93c80e;
}
/* マウスオーバー設定 */
#international-conference-button:hover {
  color: #93c80e;
  cursor: pointer;
  transition-duration: 0.3s;
}
#international-conference-button.selected:hover {
  color: #000000;
  cursor: default;
}
/* 国際学会タブの設定 ---------- */

/* 受賞タブの設定 ---------- */
#award-button.selected::after {
  content: '';
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 5px;
  background-color: #93c80e;
}
/* マウスオーバー設定 */
#award-button:hover {
  color: #93c80e;
  cursor: pointer;
  transition-duration: 0.3s;
}
#award-button.selected:hover {
  color: #000000;
  cursor: default;
}
/* 受賞タブの設定 ---------- */

/* 参加学会タブの設定 ---------- */
#attended-conference-button.selected::after {
  content: '';
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 5px;
  background-color: #93c80e;
}
/* マウスオーバー設定 */
#attended-conference-button:hover {
  color: #93c80e;
  cursor: pointer;
  transition-duration: 0.3s;
}
#attended-conference-button.selected:hover {
  color: #000000;
  cursor: default;
}
/* 参加学会タブの設定 ---------- */

/* 国内学会/国際学会/受賞/参加学会へのリンクサイドメニューの設定 ---------- */
.Links {
  margin-top: 26px;
  position: sticky;
  top: 30px;
  margin-left: 20px;
}
.Links h4 {
  font-size: 20px;
  margin-bottom: 5px;
}
.Links-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 18px;
  line-height: 1.5;
}
.Links-inner::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #2C2E2C;
}
.Links-inner::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #2C2E2C;
}
.TOPLINK {
  width: 100%;
  height: 40px;
  text-align: center;
  padding-top: 6px;
}
.Links-inner ul {
  display: grid;
  grid-template-columns: repeat(2, 80px);
  align-items: center;
  text-align: center;
}
.Links-inner li {
  height: 40px;
}
/* マウスオーバー設定 */
.Links-inner li:hover:first-child {
  border-bottom: 0px;
}
.Links-inner a:hover {
  color: #93c80e;
  font-size: 20px;
  font-weight: bold;
}
/* 国内学会/国際学会/受賞/参加学会へのリンクサイドメニューの設定 ---------- */





/*　================================================================================
スマホ・タブレット設定
================================================================================　*/
@media (max-width: 800px) {
  .site-menu ul li:nth-child(4) {
    color:#93c80e;
    font-weight: bold;
  }
  .site-menu ul li:nth-child(4)::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color:#93c80e;
    margin-top: 5px;
    margin-left: 0%;
    visibility: visible;
  }
  .site-menu-en ul li:nth-child(3) {
    color:#93c80e;
    font-weight: bold;
  }
  .site-menu-en ul li:nth-child(3)::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color:#93c80e;
    margin-top: 5px;
    margin-left: 0%;
    visibility: visible;
  }  

  /*　画像入りヘッダーの設定
  ================================================================================*/
  .main-header {
    height: 30vh;
    margin-bottom: 50px;
  }
  .main-header h2 {
    font-size: 6.5vw;
  }


  /*　全体設定
  ================================================================================*/
  .Presentations {
    padding-left: 10px;
    padding-right: 10px;
  }
  .List h3 {
    font-size: 24px;
    margin-left: 10px;
    margin-bottom: 5px;
  }
  .List ul {
    padding: 20px;
    margin-bottom: 50px;
  }
  .List li {
    padding: 20px;
    text-align: justify;
  }
  .List p {
    margin-right: 30px;
  }

  /*　国内学会/国際学会/受賞/参加学会の設定
  ================================================================================*/
  /* 国内学会/国際学会/受賞/参加学会タブの共通設定 ---------- */
  .Presentations-buttons {
    font-size: 16px;
    width: fit-content;
  }
  .Presentations-buttons  h3 {
    margin-left: 5px;
  }
  /* 国内学会/国際学会/受賞/参加学会タブの共通設定 ---------- */

  /* 国内学会タブの設定 ---------- */
  #domestic-conference-button.selected::after {
    height: 5px;
    margin-top: 5px;
  }
  /* 国内学会タブの設定 ---------- */

  /* 国際学会タブの設定 ---------- */
  #international-conference-button.selected::after {
    height: 5px;
    margin-top: 5px;
  }
  /* 国際学会タブの設定 ---------- */

  /* 受賞タブの設定 ---------- */
  #award-button.selected::after {
    height: 5px;
    margin-top: 5px;
  }
  /* 受賞タブの設定 ---------- */

  /* 参加学会タブの設定 ---------- */
  #attended-conference-button.selected::after {
    height: 5px;
    margin-top: 5px;
  }
  /* 参加学会タブの設定 ---------- */

  /* 国内学会/国際学会/受賞/参加学会へのリンクサイドメニューの設定 ---------- */
  .Links {
    margin-top: 31px;
    top: 30px;
    margin-left: 10px;
    display: none;
  }
  .Links h4 {
    font-size: 16px;
    margin-bottom: 10px;
    display: none;
  }
  .Links-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }
  .TOPLINK {
    width: 100%;
    height: 40px;
    text-align: center;
    padding-top: 6px;
    display: none;
  }
  .Links-inner ul {
    grid-template-columns: repeat(1, 70px);
  }
  .Links-inner li {
    height: 25px;
  }
  .Links-inner a:hover {
    font-size: 16px;
  }
  /* 国内学会/国際学会/受賞/参加学会へのリンクサイドメニューの設定 ---------- */
}
