@charset "UTF-8";

/***************  学会関連情報 過去開催  *****************/
.evt{
  margin-top: 65px;
}

/* 上部ボタン */
.evt__switch{
  display: flex;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 60px;
}

.evtPanel{
  display: none;
}
.evtPanel.is-show{
  display: block;
}
.evt__empty{
  padding: 18px 0;
  color: #666;
  line-height: 1.7;
}

/* ===== 各ボタン ===== */

.evt__switch a{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* ← 左右余白（デザイン通り） */
  padding: 22px 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;

  /* 上下線 */
  border-top: 1px solid #9d9d9d;
  border-bottom: 1px solid #9d9d9d;

  transition: .25s;
}


/* 非アクティブ */
.evt__switch a:not(.is-active){
  background: #e9eef2;
  color: #333;
}


/* アクティブ */
.evt__switch a.is-active{
  background: #c70012;
  color: #fff;
}


/* 右矢印 */
.evt__switch a::after{
  content: "→";
  font-size: 18px;
}


/* ホバー */
.evt__switch a:hover{
  opacity: .85;
  transition: .3s;
  background: #c70012;
  color: #fff;
}

.evt__switch a::after:hover {
  color: #fff;
}

/* 年タブ（横スクロール1行固定） */
.evt__years{
  display:flex;
  align-items:center;
  margin-top: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  flex-wrap: nowrap;
  padding: 0 2px 10px;
}
.evt__years::-webkit-scrollbar{ height: 6px; }
.evt__years::-webkit-scrollbar-thumb{ background: #cfcfcf; border-radius: 999px; }
.evt__years::-webkit-scrollbar-track{ background: transparent; }

.evt__year{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 20px 40px 20px 35px!important;
  border-radius: 2px;
  line-height:1;
  flex: 0 0 auto;
}
.evt__year:hover{
  background:#c70012;
  transition:.3s;
  color: #fff;
}
.evt__year:hover .evt__tri {
  border-color: transparent transparent transparent #ffffff;
}
.evt__year .evt__yearText{
  font-weight: 700;
}
.evt__tri{
  width:0;
  height:0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #111;
  display:inline-block;
}
.evt__year.is-active{
  background:#c70012;
}
.evt__year.is-active .evt__yearText{
  color:#fff;
}
.evt__year.is-active .evt__tri{
  border-left-color:#fff;
}

/* 太い区切り線 */
.evt__bar{
  margin: 10px 0 40px;
}

/* 見出し中央 */
.evt__heading{
  display:flex;
  justify-content:center;
  margin: 10px 0 12px;
}
.evt__headingText{
  position:relative;
  font-size: 20px;
  font-weight: 800;
  padding-bottom: 14px;
}
.evt__headingText::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom: 0;
  width: 46px;
  height: 4px;
  background:#111;
  border-radius: 999px;
}

/* 一覧 */
.evt__item{
  display:flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #e6e6e6;
}
.evt__item:hover{
  background: linear-gradient(90deg, rgba(143,208,239,.08), transparent 55%);
}
.evt__date{
  width: 110px;
  color:#111;
  flex: 0 0 auto;
}
.evt__title{
  color:#111;
  line-height:1.6;
  min-width: 0;
  overflow:hidden;
  text-overflow: ellipsis;
}

/* pager */
.evt__pager{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 14px;
  margin-top: 35px;
}
.evt__pagerBtn,
.evt__pagerNum{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 28px;
  min-width: 28px;
  font-size: 13px;
}
.evt__pagerNum.is-current{
  font-weight: 800;
}
.evt__pagerBtn.is-disabled{
  opacity: .35;
  pointer-events: none;
}

/* 年度別ブロック切替 */
.evt__yearsArea{
  margin-top: 20px;
  margin-bottom: 45px;
  padding: 25px;
  background-color: #fff;
  border-radius: 15px;
}
.evtYear{ display:none; }
.evtYear.is-show{ display:block; }

/* responsive */
@media (max-width: 820px){
.evt__switch a {
    padding: 20px 26px;
    font-size: 16px;
	}
.evt__switch {
    margin: 0 auto 35px;
	}
}
@media (max-width: 767px){
  .evt__year .evt__yearText{ font-size: 14px; }
  .evt__year,
  .evt__year.is-active{
    padding: 14px 15px 14px 10px;
  }
  .evt__years{ gap: 2px; }
.evt {
    margin-top: 30px;
	}
.evt__switch {
    margin: 0 auto 25px;
	}
.evt__switch a {
    padding: 15px;
    font-size: 14.5px;
	}
}
@media (max-width: 640px){
  .evt__switchBtn{ min-width: 0; width: 48%; }
  .evt__years{ gap: 10px; }
  .evt__date{ width: 70px; font-size: 14px; }
  .evt__title{ font-size: 14px; }
}

/***************  学会関連情報 これから開催  *****************/
/* 一覧 */
.list_area{
  margin: 30px auto 45px;
  padding: 10px 25px;
  background-color: #fff;
  border-radius: 15px;
}
.list_area .list_box .item{
  display:flex;
  align-items: baseline;
  gap: 25px;
  padding: 16px 0;
  border-bottom: 1px solid #e6e6e6;
  color:#111;
  text-decoration:none;
}
.list_area .list_box .item:last-child{
  border-bottom: 0;
}
.list_area .list_box .item:hover{
  background: linear-gradient(90deg, rgba(143,208,239,.08), transparent 55%);
}
.list_area .list_box .date{
  width: 80px;
  flex: 0 0 auto;
}
.list_area .list_box .title{
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.65;
  overflow:hidden;
  text-overflow: ellipsis;
}

/* SP */
@media (max-width: 768px){
  .list_area{
    margin-bottom: 35px;
    padding: 5px 15px;
    border-radius: 10px;
  }
  .list_area .date{ font-size: 14.5px; }
  .list_area .title{ font-size: 14px; }
  .list_area .list_box .item{
    gap: 20px;
    padding: 15px 0;
  }
}

/***************  学会関連情報 詳細  *****************/
.confDetail{
  padding: 34px 18px 55px;
}
.confDetail__inner{
  max-width: 980px;
  margin: 0 auto;
}
.confDetail__head{
  margin-bottom: 30px;
}
.confDetail__title{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.35;
}
.confDetail__rule{
  position: relative;
  margin-top: 10px;
  height: 2px;
  background:#111;
}
.confDetail__date{
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  color:#111;
}
.confDetail__body{
  margin-top: 50px;
}
.confDetail__text{
  margin: 0 0 22px;
  line-height: 1.6;
  letter-spacing: .02em;
}
.confDetail__text:last-child{
  margin-bottom: 0;
}
.confDetail__text p{
  margin: 0 0 1em;
  line-height: 1.8;
}
.confDetail__text a{
  text-decoration: underline;
}
.confDetail__text a:hover{
  text-decoration: none;
}
.confDetail__text p:last-child{
  margin-bottom: 0;
}
@media (max-width: 768px){
  .confDetail{
    padding: 25px 0 0;
  }
  .confDetail__title{
    font-size: 18px;
  }
  .confDetail__date{
    font-size: 13.5px;
    margin-top: 4px;
  }
  .confDetail__text{
    font-size: 14px;
    line-height: 1.65;
  }
  .confDetail__body{
    margin-top: 35px;
  }
}



