@charset "UTF-8";
/* 2023.11 リニューアルに伴い新規追加 */
/* ---------------------------
 * ALL Width
 * --------------------------- */
.mod-media .mod-media__item .media__grid {
display: grid;
      row-gap: 20px;
      grid-template-areas:
        "thumbnail heading toggleBtn"
        ". details details";
}
      .col__imageLink {
        grid-area: thumbnail;
      }
      .col__head {
        grid-area: heading;
}
.mod-media {
  border-bottom: 1px solid #efefef;
}
.media__toggle__trigger {
  grid-area: toggleBtn;
  align-self: center;
}
        .col__head__title {
margin: 0;
          font-size: 24px;
        }
        .col__head__writer {
          margin-bottom: 0;
                  }
            .col__details {
        grid-area: details;
}
.col__details .mod-tableC {
            margin: 0;
background-color: #fff;
}
.col__image {
  padding: 15px;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #C4C3C4;
  }
.col__image img {
  height: 100%;
  width: auto;
}
.col__image .col__image__figure {
    position: relative;
display: inline-block;
    height: 100%;
  }
  .col__image .col__image__figure::before {
position: absolute;
    left: 0;
    bottom: -2px;
    display: block;
    content: '';
width: 100%;
    height: 2px;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.13);
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.13);
    opacity: .9;
    z-index: 1;
  }
  /* .col__image .col__image__figure::after {
    position: absolute;
    left: 2%;
    bottom: -5px;
    display: block;
    content: '';
    width: 96%;
    height: 3px;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.23);
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.23);
    opacity: .6;
    z-index: 2;
  } */
.media__toggle__trigger {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 5px;
  padding: 10px;
  border: 1px solid #000;
  color: #D9D9D9;
  font-size: 14px;
  background-color: #000;
transition: none;
}
.media__toggle__trigger:link,
.media__toggle__trigger:visited {
  color: #fff;
}
.media__toggle__trigger::before {
  content: '\e61a';
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  margin-right: 5px;
  font-size: 18px;
  color: #fff;
}
.media__toggle__trigger:hover {
  text-decoration: none;
  color: #000;
  background-color: #fff;
  &::before {
    color: #000;
  }
}
.media__toggle__trigger.is-active {
  border-color: #D9D9D9;
  background-color: #fff;
}
.media__toggle__trigger.is-active:link,
.media__toggle__trigger.is-active:visited {
  color: #D9D9D9;
}
.media__toggle__trigger.is-active::before {
  content: '\e622';
  color: #D9D9D9;
}
.media__toggle__trigger.is-active:hover {
  color: #000;
  border-color: #000;
  &::before {
    color: #000;
  }
}
.col__head__link {
  font-size: 14px;
}
/* .col__head__link:link,
.col__head__link:visited {
  color: #000;
} */
.col__head__link::before {
  content: '\e649';
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  margin-right: 5px;
  font-size: 12px;
}
.col__details table,
.col__details table tr th,
.col__details table tr td {
  border-color: #C4C3C4;
}
.col__details table tr th,
.col__details table tr td {
  padding: 10px 0;
  font-size: 12px;
}
.col__details table tr td a {
  color: #008bbe;
}
.col__details table tr td a::before {
  display: none;
}
@media print, screen and (min-width: 720px) {
  /* ---------------------------
 * PC
 * --------------------------- */
.mod-media .mod-media__item .media__grid {
        grid-template-columns: 100px 1fr auto;
    column-gap: 32px;
}
.col__head__writer {
        margin-right: 20px;
        display: inline-block;
      }
    }
  
@media screen and (max-width: 719px) {
  /* ---------------------------
 * SmartPhone
 * --------------------------- */
.mod-media .mod-media__item {
    margin-block: 40px;
  }
  .mod-media .mod-media__item .media__grid {
    grid-template-areas:
    "thumbnail heading"
    "details details"
    "toggleBtn toggleBtn";
    grid-template-columns: 90px 1fr;
    column-gap: 10px;
    margin-bottom: 20px;
    }
    .col__image {
      width: 90px;
      height: 90px;
      padding: 10px;
    }
    .col__head__title {
      font-size: 16px;
    }
    .col__head__writer {
            font-size: 14px;
    }
  .col__details .mod-tableC th {
        padding-block: 10px;
        padding-left: 0;
min-width: 100px;
      }
      .col__details .mod-tableC td {
        padding-block: 10px;
        padding-right: 0;
      }
      .media__toggle__trigger {
        justify-content: center;
        width: 80%;
        max-width: 256px;
        margin-inline: auto;
        padding: 10px 5px;
      }
    }
  
@media screen and (max-width: 374px) {
  /* ---------------------------
 * SmartPhone 374px 以下
 * --------------------------- */
}
