@charset "UTF-8";

/* -------------------------------------------

column-summary

------------------------------------------- */
.column-summary h1 {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.5;
}
.column-summary h2 {
  font-weight: bold;
  font-size: 1.8rem;
}
.column-summary > div {
  display: flex;
  /* align-items: center; */
  margin: 1rem 0 2rem 0;
}
.column-summary .date {
  margin-right: 2rem;
  font-weight: bold;
  padding-bottom: 0.15rem;
}
.column-summary > div ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .column-summary > div ul {
    gap: 0.5rem;
  }
}
/* .column-summary > div ul li:not(:last-child) {
  margin-right: 1rem;
} */
.column-summary > div ul li {
  background: var(--red);
  color: #fff;
  border-radius: 0.3rem;
  padding: 0.5rem 2rem 0.65em 2rem;
  line-height: 1;
  font-size: 1rem;
}
.interview .column-summary > div ul li {
  background: var(--blue-1);
}
.column-summary p {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .column-summary figure {
    width: calc(100% + 4rem);
    margin-left: -2rem;
  }
}

/* -------------------------------------------

column-index

------------------------------------------- */
#toc_container {
  margin: 3rem 0;
  position: relative;
  padding: 0 0 3rem 0;
}
#toc_container::before {
  content: "";
  width: 95%;
  height: 100%;
  background: #f7f7f7;
  position: absolute;
  left: 2.5%;
  top: 0;
}
@media screen and (max-width: 768px) {
  #toc_container::before {
    width: calc(100% + 4rem);
    height: calc(100% - 2rem);
    left: -2rem;
    top: 2rem;
  }
}
#toc_container > * {
  position: relative;
  z-index: 10;
}
.toc_title {
  font-family: var(--font-shippori);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
  padding: 0 !important;
}
.interview .toc_title {
  color: var(--blue-1);
}
@media screen and (max-width: 768px) {
  .toc_title {
    font-size: 3.2rem;
  }
}
.toc_list {
  margin-left: 7rem;
}
.toc_list li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.toc_number {
  margin-right: 0.5rem;
  color: var(--pink);
}
.interview .toc_number {
  color: var(--blue-1);
}
@media screen and (max-width: 768px) {
  .toc_list {
    margin-left: 1.5rem;
  }
  .toc_number {
    margin-right: 1rem;
    font-size: 2.4rem;
  }
}

.column-contents .toc_list {
  margin-top: 0;
  padding-left: 0;
  gap: 0;
}

.column-contents .toc_list li {
  padding-left: 0;
}
.column-contents .toc_list li::before {
  display: none;
}
/* .column-index {
    margin: 3rem 0;
    position: relative;
    padding: 0 0 3rem 0;
}
.column-index::before {
    content: "";
    width: 95%;
    height: 100%;
    background: #f7f7f7;
    position: absolute;
    left: 2.5%;
    top: 0;
}
@media screen and (max-width: 768px) {
    .column-index::before {
        width: calc(100% + 4rem);
        height: calc(100% - 2rem);
        left: -2rem;
        top: 2rem;
    }
} 
.column-index > * {
    position: relative;
    z-index: 10;
} */
/* ---- h3 ---- */
/* .column-index h3 {
    display: flex;
    align-items: flex-end;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.column-index h3 .en {
    font-family: var(--font-shippori);
    font-size: 2.8rem;
    color: var(--pink);
}
.interview .column-index h3 .en {
    color: var(--blue-1);
}
.column-index h3 .jp {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    margin-left: 1rem;
}
@media screen and (max-width: 768px) {
    .column-index h3 .en {
        font-size: 3.2rem;
    }
} */
/* ---- ul ---- */
/* .column-index ul {
    margin-left: 7rem;
}
.column-index ul li {
    list-style: decimal;
}
.column-index ul li:not(:last-child) {
    margin-bottom: 0.8rem;
}
.column-index ul li::marker {
    color: var(--pink);
}
.interview .column-index ul li::marker {
    color: var(--blue-1);
}
@media screen and (max-width: 768px) {
    .column-index ul {
        margin-left: 3.5rem;
    }
    .column-index ul li::marker {
        color: var(--pink);
        font-size: 2.4rem;
        font-weight: 500;
    }
} */

/* -------------------------------------------

column-contents

------------------------------------------- */
.column-contents {
  margin-bottom: 5rem;
}
.column-contents h2 {
  background: var(--red);
  color: #fff;
  border-radius: 0.4rem;
  padding: 1.5rem 2.5rem 1.65rem 2.5rem;
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.column-contents h3 {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem 2.5rem 1rem 2.5rem;
  background: #f6f6f6;
  position: relative;
}
.column-contents h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.75rem;
  height: 100%;
  background: var(--red);
}
.interview .column-contents h2 {
  background: var(--blue-1);
}
.interview .column-contents h3::before {
  background: var(--blue-1);
}
.column-contents p {
  margin-top: 1.5rem;
  padding: 0 2.5rem;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .column-contents p {
    padding: 0;
  }
}

.column-contents ul {
  margin-top: 2rem;
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .column-contents ul {
    padding-left: 0;
  }
}

.column-contents ul li {
  padding-left: 1.5rem;
  position: relative;
}

.column-contents ul li::before {
  content: "";
  position: absolute;
  top: 0.875rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--red);
}

.column-contents ol {
  margin-top: 2rem;
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .column-contents ol {
    padding-left: 0;
  }
}

.column-contents ol li {
  /* font-weight: 700; */
  position: relative;
}
@media screen and (max-width: 768px) {
  .column-contents ol li {
    padding-left: 0;
  }
}

.column-contents ol + p {
    margin-top: 0.5rem;
}

.column-contents table {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* -------------------------------------------

column-writer

------------------------------------------- */
.column-writer {
  background: #fbf6f6;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.interview .column-writer {
  background: var(--bg-blue);
}
@media screen and (max-width: 768px) {
  .column-writer {
    margin-bottom: 4rem;
  }
}
/* ---- h3 ---- */
.column-writer h3 {
  background: var(--pink);
  color: #fff;
  font-weight: 500;
  border-radius: 0.4rem;
  line-height: 1;
  padding: 0 0 0.18rem 0.3rem;
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 14.5rem;
  position: relative;
  top: -1.5rem;
  position: relative;
  font-size: 1.2rem;
}
.column-writer h3::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-top: 1rem solid var(--pink);
  position: absolute;
  left: 2.5rem;
  bottom: -0.9rem;
}
.interview .column-writer h3 {
  background: var(--blue-1);
}
.interview .column-writer h3::before {
  border-top: 1rem solid var(--blue-1);
}
@media screen and (max-width: 768px) {
  .column-writer h3 {
    padding: 0 0 0.18rem 0.2rem;
    height: 3.6rem;
    width: 18.5rem;
    top: -1.8rem;
    font-size: 1.6rem;
  }
}
.column-writer > div {
  display: flex;
  align-items: center;
  padding: 0 4rem;
}
@media screen and (max-width: 768px) {
  .column-writer > div {
    padding: 0 2rem;
  }
}
.column-writer > div figure {
  width: 9rem;
}
.column-writer > div figure img {
  height: 9rem;
  border-radius: 50%;
  object-fit: cover;
}
.column-writer > div dl {
  width: calc(100% - 9rem);
  padding-left: 2rem;
}
.column-writer > div dt {
  font-weight: bold;
  margin-bottom: 1rem;
}
.column-writer > div dd {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .column-writer > div dt {
    font-size: 1.6rem;
  }
}

/* -------------------------------------------

column-link

------------------------------------------- */
.column-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .column-link {
    flex-direction: column;
    margin-bottom: 6rem;
  }
}
/* ---- sns ---- */
.column-sns {
  display: flex;
}
.column-sns li:not(:last-child) {
  margin-right: 3rem;
}
.column-sns li {
  width: 2.5rem;
}
@media screen and (max-width: 768px) {
  .column-sns {
    margin-bottom: 3rem;
  }
  .column-sns li {
    width: 4rem;
  }
}
/* ---- pager ---- */
.column-pager {
  display: flex;
}
.column-pager > a:not(:last-of-type) {
  margin-right: 2rem;
}
.column-pager > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brown);
}
.column-pager > a img {
  width: 4rem;
  margin-bottom: 0.5rem;
  box-shadow: 0.4rem 0.4rem 0.5rem rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .column-pager > a:not(:last-of-type) {
    margin-right: 4rem;
  }
  .column-pager > a {
    font-size: 1rem;
  }
  .column-pager > a img {
    width: 5rem;
  }
}

/* -------------------------------------------

関連記事

------------------------------------------- */
.article-relation {
  position: relative;
}
.article-relation::before {
  content: "";
  width: 110%;
  height: calc(100% + 3rem);
  background: #fbf6f6;
  position: absolute;
  left: calc((100% - 96rem) / 2);
  bottom: -6rem;
}
.interview .article-relation::before {
  background: var(--bg-blue);
}
.article-relation .ttl-wrap {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .article-relation::before {
    content: "";
    width: calc(100% + 4rem);
    height: 100%;
    background: #fbf6f6;
    position: absolute;
    left: -2rem;
    bottom: -4rem;
  }
}
