@charset "UTF-8";
/* CSS Document */


/* ベース用背景色CSS */
.gray_bg{
	background-color:#efefef;
	padding:20px 20px;
	border-radius: 10px;
}
.pink_bg{
	background-color:#FFDEEE;
	padding:20px 20px;
	border-radius: 10px;
}
.blue_bg{
	background-color:#DDFFFF;
	padding:20px 20px;
	border-radius: 10px;
}
.white_bg{
	background-color:#ffff;
	padding:20px 20px;
	border-radius: 10px;
}


/* 対談用CSS */
.entry-talk-box {
  border-collapse: separate;
  /*border-spacing: 15px 2px;*/
  display: table;
  margin: 30px 0;
  table-layout: fixed;
  width: 100%;
}
.entry-talk-img {
  display: table-cell;
  vertical-align: top;
  width: 100px;
}
.entry-talk-img img {
  border-radius: 50%;
  width: 100px;
}
.entry-talk-txt {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  border-radius: 8px;
  display: table-cell;
  padding: 10px;
  position: relative;
}
.entry-talk-txt-left:after {
  content: '';
  position: absolute;
  border-right: 12px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  left: -12px;
  top: 40px;
}
.entry-talk-txt-right:after {
  content: '';
  position: absolute;
  border-left: 12px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  right: -12px;
  top: 40px;
}
.entry-talk-txt p {
  line-height: 1.4;
  margin: 0;
}


/* スケジュール用CSS */
.time-schedule {
  /*min-width: 400px;
  max-width: 400px;*/
  list-style: none;
  margin: 0 auto 0 3.5em;
  padding-left: 20px;
  border-left: 6px solid #da490e;
  box-sizing: border-box;
}

@media screen and (max-width:750px){
  .time-schedule {
    padding-left: 14px;
  }
}

.time-schedule li {
  width: 100%;
  margin: 0 0;
  padding: 5px 0;
  position: relative;
}

.time-schedule span.time {
  width: 5em;
  display: inline-block;
  margin-left: -8em;
  padding: 0 0 5px;
  margin-top: 15px;
  vertical-align: top;
  position: relative;
  text-align: right;
  box-sizing: border-box;
}

.time-schedule span.time::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0;
  background: #da490e;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.time-schedule .sch_box {
  display: inline-block;
  width: 100%;
  margin-left: 30px;
  padding: 15px 10px 15px 10px;
  vertical-align: middle;
  background: #efefef;
  box-sizing: border-box;
  border-radius: 6px;
}

.time-schedule .sch_title {
  font-size: 16px;
  font-weight: 700;
}

.time-schedule .sch_tx {
  font-size: 14px;
  font-weight: normal;
}

/* 目次用CSS */
.toc {
  margin-bottom: 30px;
  border: 2px solid #000000;
  border-radius: 3px;
}

.toc div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 10px 0;
  background-color: #000000;
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
}

.toc div::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 5px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3.8%2017.2h-3c-.5%200-.8.4-.8.8v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8v-3c-.1-.4-.4-.8-.8-.8zm0-15h-3c-.5%200-.8.4-.8.8v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8V3c-.1-.4-.4-.8-.8-.8zm0%207.6h-3c-.5%200-.8.3-.8.7v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8v-3c-.1-.4-.4-.7-.8-.7zM23.2%2018h-15c-.4%200-.8.3-.8.8v1.5c0%20.4.3.8.8.8h15c.4%200%20.8-.3.8-.8v-1.5c0-.5-.3-.8-.8-.8zm0-15h-15c-.4%200-.7.3-.7.8v1.5c0%20.4.3.7.7.7h15c.5%200%20.8-.3.8-.8V3.8c0-.5-.3-.8-.8-.8zm0%207.5h-15c-.4%200-.8.3-.8.8v1.5c0%20.4.3.8.8.8h15c.4%200%20.8-.3.8-.8v-1.5c0-.5-.3-.8-.8-.8z%22%2F%3E%3C%2Fsvg%3E');
  content: '';
}

.toc ol {
  list-style-type: disc;
  margin: 0;
  overflow: hidden;
}

.toc > ol {
  padding: 1em 1em 1em 3em;
}

.toc ol ol {
  margin-top: 5px;
  padding-left: 1.1em;
}

.toc li {
  padding: 5px 0;
  font-weight: 600;
}

.toc ol ol li {
  font-weight: 500;
  font-size: .9em;
}

.toc a {
  text-decoration: none;
}

/* 引用符CSS */

blockquote {
  position: relative;
  padding: 60px 15px 20px 15px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}
blockquote:before{
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 3px;
  content: "“";
  color: #cfcfcf;
  font-size: 90px;
  line-height: 1;
}
blockquote p {
  padding:0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}