@charset "utf-8";
/***************************************************
メインコンテンツ専用CSS
  filename : body_contents_list.css;
***************************************************/

.con_list_group_title{
  display:flex;
  position:relative;
  align-items: center;
  border-top: 1px solid #ddd;
  padding-left: 20px;
}
.con_list_group:first-child .con_list_group_title{
  border-top:none;
}
.con_list_group_title:after{
  position:absolute;
  content:'';
  width:18px;
  height:9px;
  top:50%;
  right:20px;
  background:url(../../images/main/arrow.png)no-repeat;
  background-size:contain;
  transform:translateY(-50%);
  opacity:0.5;
  transition:0.3s;
}
.open .con_list_group_title:after{
  transform:translateY(-50%)rotateX(-180deg);
  transition:0.3s;
}
@media screen and (max-width:540px){
  .con_list_group_title{
    padding-left: 4px;
  }
  .con_list_group_title:after{
    right:4px;
  }
}

.con_list_group_title p{
  position: relative;
  z-index:1;
}
.con_list_group_title p:before{
  position: absolute;
  content: '';
  background: url(../../images/main/icon_book.png)no-repeat;
  background-size: contain;
  width: 60px;
  height: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
}
.con_list_group:last-child .con_list_group_title p:before{
  background: url(../../images/main/icon_pre.png)no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
}
@media screen and (max-width:540px){
  .con_list_group_title p:before{
    width: 40px;
    height: 30px;
  }
  .con_list_group:last-child .con_list_group_title p:before{
    width: 40px;
    height: 40px;
  }
}
.con_list_group_title h2{
  margin:24px;
  font-size:22px;
  font-weight:normal;
  color:var(--app-basic-txt);
  width: 72%;
}

.con_list .con_list_group_item .ListBox dl.clmDetail{
  padding:0px;
  border-bottom:none;
}
.ListBox.ListType3 .ListTSgle dd.title_area{
  padding: 0px;
}
.ListBox.ListType3 .ListTSgle dd.title_area h2.ListMainTitle a{
    padding:20px 30px;
    background: #F7F7F7;
    border-radius: 8px;
}

@media screen and (max-width:540px){

  .con_list_group_title p{
    padding:8px 8px;
    font-size:12px;
  }
  .con_list_group_title h2{
    margin:24px 24px 24px 8px;
    font-size:16px;
    font-weight:bold;
  }

}

.con_list_group_item{
  height:0px;
  padding:0px;
  transition:0.4s;
}
.open .con_list_group_item{
  height: fit-content;
  max-height: 300px;
  overflow: auto;
  scrollbar-width: none;
  transition:0.5s;
  padding:16px 1px;
}

@media screen and (max-width:540px){
  /* .con_list_group_item{
    padding:8px 1px;
  }
  .open .con_list_group_item{
    padding:1px;
  } */
}

.con_list .conListArea{
  display:none;
}
.con_list .open .conListArea{
  display:block;
}

.ListTSgle dd.title_area h2.ListMainTitle a{
  display: block;
  margin: 0px 40px;
  color: #000;
  font-size:18px;
  font-weight:bold;
}
h2.ListMainTitle a:hover{
  opacity:0.75;
}
@media screen and (max-width:540px){
  .ListTSgle dd.title_area h2.ListMainTitle a{
    margin: 8px 24px;
    font-size:14px;
    font-weight:bold;
  }
}
h2.ListMainTitle{
  margin :auto;
}

.ListBox.ListType3.liwbg01 dl.clmDetail{
  border: none;
  box-shadow: none;
  position: relative;
  padding: 0px;
}
.ListBox.ListType3.liwbg01 dl.clmDetail:after{
  position:absolute;
  content:'';
  width:36px;
  height:18px;
  top:50%;
  right:20px;
  background:url(../../images/main/arrow2.png)no-repeat;
  background-size:contain;
  transform:translateY(-50%)rotate(180deg);
  opacity:0.5;
  transition:0.3s;
}
.ListBox.ListType3.liwbg01 dl.clmDetail a{
  background: #F7F7F7;
  margin: 8px auto;
}
.ListBox.ListType3 .ListTSgle dd.title_area h2.ListMainTitle a{
  margin: 0;
}

/* ロック中のコンテンツ(リンクなし・pタグ)をアンロック済みと同じ帯デザインで表示 */
/* dl.clmDetail.lock:after はチェックボックスの矢印を消すため body_contents.css で display:none 済み。
   ロックアイコンは p:after 側に付与する(main_list.php の .con_list_group_item .lock p:after と同じ手法)。 */
.ListBox.ListType3.liwbg01 dl.clmDetail.lock h2.ListMainTitle p{
  display: block;
  position: relative;
  padding: 20px 30px;
  margin: 8px auto;
  background: #F7F7F7;
  border-radius: 8px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.ListBox.ListType3.liwbg01 dl.clmDetail.lock h2.ListMainTitle p:after{
  content: "";
  width: 23px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(../../images/main/icon-lock.png) no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width:540px){
  .ListBox.ListType3.liwbg01 dl.clmDetail.lock h2.ListMainTitle p{
    margin: 8px 24px;
    font-size: 14px;
  }
}


.con_list_group_item .lock p {
  background-color: #808080;
  height: 72px;
  padding: 0px 40px;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
}

.con_list_group_item .lock a {
  color: #7AD64B;
  text-decoration: underline;
}

.con_list_group_item .lock p:after {
  content: "";
  width: 23px;
  height: auto;
  aspect-ratio: 90/117;
  background: url(../../images/main/icon-lock.png) no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  position: absolute;
  right: 40px;
}

@media screen and (max-width:540px){
  .con_list_group_item .lock p {
    height: 56px;
    padding: 0px 20px;
    margin: 0;
    font-size: 13px;
  }
  
  .con_list_group_item .lock p:after {
    width: 16px;
    margin-bottom: 4px;
    right: 24px;
  }
}

@media screen and (min-width:1000px){
  .con_list .no_output .no_img::before{
    content: "面談後アウトプット完了でロックが解除されます";
    font-size: 16px;
    font-weight: normal;
    color: #ddd;
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
  }
}

.con_faq.archive .con_list_001 section.mainTi {
    padding: 0 0 12px;
    margin: 0 6px 16px;
    border-bottom: 1px solid #acacac;
}

.con_faq.archive .con_list_001 .BtM a {
    margin: 20px  auto 50px;
}

.con_det.CateGrpNo_6 .articleBox {
  width: 80%;
}
@media screen and (max-width:800px){
  .con_det.CateGrpNo_6 .articleBox {
    width: 100%;
  }
}