@charset "UTF-8";
/*--------------------------------------------------
変数定義
--------------------------------------------------*/
/*--------------------------------------------------
map型(key: value)でブレークポイントを定義する。
--------------------------------------------------*/
/*------------------------------
プログラムページリンクボタン
--------------------------------*/
.link_button_block {
  margin: 40px 0;
  padding-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #D2D2D2;
}

.button_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/*------------------------------
プログラムページトップのタグ
--------------------------------*/
.page_link_block ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  transition: 0.3s;
  margin: 0;
  padding: 0;
}
.page_link_block ul li {
  margin: 0 5px 10px;
  padding: 0;
  background-color: #24592C;
}
.page_link_block ul li:hover {
  background-color: #0EB998;
}
.page_link_block ul li a {
  color: #fff;
  padding: 4px 34px 4px 15px;
  text-decoration: none;
  font-weight: 400;
  display: block;
  position: relative;
  z-index: 0;
}
.page_link_block ul li a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 12px;
  top: calc(50% - 4px);
}

.anchor {
  padding-top: 70px;
  margin-top: -70px;
}

/*-----------------------------------
プログラム　日時　時間　場所　表示
-------------------------------------*/
.date_place {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.6rem;
  text-align: right;
  width: 100%;
  border-bottom: 1px dashed #8D8D8D;
}

/*-----------------------------------
プログラム　司会　演者
-------------------------------------*/
.program_data {
  padding: 0 0 0 2em;
  margin-bottom: 40px;
}

.program_data dl {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.program_data dt + dd {
  width: 80px;
}

.program_data dt + dd.alphabet_word {
  width: 100px;
}

.program_data dt + dd.alphabet_word2 {
  width: 140px;
}

.program_data dl dd:nth-child(3) {
  margin-left: 1em;
  text-align: justify;
  flex: 1;
  max-width: 540px;
}

.program_data dt {
  width: 96px;
  height: 24px;
  background-color: #24592C;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: white;
  line-height: 18px;
  padding: 4px 16px;
  text-align-last: justify;
}

.program_data dt.dt_none {
  background-color: transparent;
}

@media screen and (max-width: 850px) {
  /*_850px以下はの設定*/
  .program_data {
    padding: 0;
  }

  .program_data dl {
    display: block;
  }

  .program_data dt {
    width: 96px;
    height: 24px;
    background-color: #24592C;
    display: block;
    font-size: 16px;
    color: white;
    line-height: 18px;
    padding: 4px 16px;
    text-align-last: justify;
    margin-bottom: 10px;
  }

  .program_data dt.dt_none {
    background-color: transparent;
  }

  .program_data dd {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .program_data dl dd:nth-child(3) {
    margin-left: 0;
    width: auto;
  }
}
/*テキスト長体*/
.program_data dt .text_condensed-5-7 {
  font-size: 9px;
  transform: scale(1, 2.2);
}

/*演題タイトル*/
.endai_title {
  font-size: 1.8rem;
  font-weight: 500;
}

/*-----------------------------------
司会のことば
-------------------------------------*/
.shikai_tab {
  display: block;
  width: 144px;
  height: 36px;
  background-color: #BF6F6F;
  color: white;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 36px;
  padding-left: 10px;
  cursor: pointer;
  position: relative;
  margin-bottom: 40px;
}

.shikai_tab::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: white;
  top: 17px;
  right: 10px;
}

.shikai_tab::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: white;
  top: 17px;
  right: 10px;
  transform: rotate(90deg);
  transition: all .3s;
}

@media (hover: hover) {
  .shikai_tab:hover, .shikai_tab_open:hover {
    background-color: #C84343;
  }
}
@media (hover: none) {
  .shikai_tab:active, .shikai_tab_open:active {
    background-color: #C84343;
  }
}
.shikai_tab_open {
  display: block;
  width: 144px;
  height: 36px;
  background-color: #C84343;
  color: white;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 36px;
  padding-left: 10px;
  cursor: pointer;
  position: relative;
}

.shikai_tab_open::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: white;
  top: 17px;
  right: 10px;
}

.shikai_tab_open::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: white;
  top: 17px;
  right: 10px;
  transform: rotate(0deg);
  transition: all .3s ease;
}

.shikai_content {
  border: 1px solid #C84343;
  margin-bottom: 40px;
  padding: 2em;
  background-color: rgba(230, 230, 230, 0.5);
}

.shikai_content.display_off {
  line-height: 0;
  opacity: 0;
  padding: 0 20px;
  visibility: hidden;
  transition: line-height .3s ease-out, opacity .1s linear, visibility .1s linear;
}

.shikai_content.display_on {
  line-height: 1.8;
  opacity: 1;
  padding: 20px;
  visibility: visible;
  transition: line-height .3s ease-out, opacity .1s linear .1s, visibility .1s linear .1s;
}

/*-----------------------------------
プログラム　公募タグ
-------------------------------------*/
.program_tag1 {
  margin-left: 20px;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: 400;
  color: white;
  background-color: #1700A6;
  border-radius: 5px;
}

.underText {
  font-size: 0.7em;
  position: relative;
  top: 0px;
}

/*-----------------------------------
プログラム　アイコン設定
-------------------------------------*/
.program_icon {
  position: relative;
  width: 18px;
  height: 18px;
  top: 3px;
  filter: brightness(0) saturate(100%) invert(73%) sepia(61%) saturate(6477%) hue-rotate(134deg) brightness(100%) contrast(89%);
}

/*-----------------------------------
プログラム　演者の概要
-------------------------------------*/
.main_point {
  display: block;
  margin-bottom: 30px;
  width: 100%;
  padding-left: 136px;
}
.main_point p.inner {
  width: 100%;
  border: 2px solid #D6B52D;
  border-radius: 4px;
  background-color: #FFFEFB;
  padding: 10px;
  text-align: justify;
  font-size: 14px;
  line-height: 1.5em;
  color: #0F3961;
}
@media screen and (max-width: 420px) {
  .main_point {
    padding-left: 0;
    margin-bottom: 0;
  }
}
