@charset "UTF-8";
.ly_column {
  width: min(100%, 1156px);
  margin-inline: auto;
  padding-inline: 16px;
  gap: 20px;
  padding-block: 60px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 7%;
}
@media screen and (width <= 768px) {
  .ly_column {
    gap: 48px;
    grid-template-columns: 1fr;
  }
}

.ly_column_wrap {
  margin-top: 143px;
}
@media screen and (width <= 1300px) {
  .ly_column_wrap {
    margin-top: 78px;
  }
}

.ly_column__main {
  margin: 0;
}

/* 記事一覧 */
.co-list {
  display: grid;
  grid-template-columns: repeat(2, 348px);
  gap: 44px;
}

.co-list__article {
  border-radius: 9px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 7px 0 rgba(15, 0, 0, 0.2);
          box-shadow: 0 0 7px 0 rgba(15, 0, 0, 0.2);
  padding: 24px;
  display: grid;
}

.co-list__link {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 24px;
}

.co-list__img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 300/184;
  margin: 0;
}

.co-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.co-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.co-list__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.co-list__date {
  font-size: 14px;
  line-height: 1.5;
}

.co-list__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}

.co-list__excerpt {
  font-size: 18px;
  line-height: 1.5;
}

.co-list__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.co-list__category {
  border-radius: 4px;
  border: 1px solid #A70A0A;
  padding: 8px 12px;
  color: #A70A0A;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  font-family: var(--ff-eg);
  color: #99A9B0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.page-numbers {
  background-repeat: no-repeat;
  background-position: center center;
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.page-numbers {
  border-radius: 4px;
  border: 1px solid #DDD;
}

.page-numbers.current {
  border-radius: 4px;
  border: 1px solid var(--accent, #A70A0A);
  background: var(--accent, #A70A0A);
  opacity: 1;
  color: #fff;
}

.page-numbers.prev {
  background-image: url(../images/column/arrow-prev.svg);
}

.page-numbers.next {
  background-image: url(../images/column/arrow-next.svg);
}

/* シングルページ */
/* サイドバー */
.side_column[data-slug=column] {
  width: 300px;
  margin-inline: auto;
}

.side_column__item {
  border-radius: 8px;
  border: 1px solid var(--gray-line, #DDD);
  background: var(--White, #FFF);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.side_column__title {
  font-family: "Noto Serif JP";
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 16px;
  color: #000;
  border-bottom: 1px solid #DDD;
}

.side_column__categoryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}

.side_column__categoryItem {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.side_column__categoryLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 4px;
  border: 1px solid var(--accent, #A70A0A);
  padding: 8px 12px;
  color: #a70a0a;
  font-size: 16px;
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  .side_column__categoryLink:hover {
    background-color: #A70A0A;
    color: #fff;
    opacity: 1;
  }
}

.side_column__keywordList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.side_column__keywordLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}

.side_banner {
  position: static;
}

.co_single__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (width <= 768px) {
  .co_single__head {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
}

.co_single__date {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (width <= 768px) {
  .co_single__date {
    grid-row-start: 2;
    align-self: center;
  }
}

.co_single__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid #DDD;
  color: #000;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (width <= 768px) {
  .co_single__title {
    font-size: 28px;
    grid-column: 1/3;
  }
}

.co_single__categoryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (width <= 768px) {
  .co_single__categoryList {
    grid-row-start: 2;
  }
}

.co_single__category {
  color: var(--accent, #A70A0A);
  font-size: 16px;
  font-weight: 400;
  border-radius: 4px;
  border: 1px solid currentColor;
  padding: 8px 12px;
  line-height: 1;
}

.co_single__keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-inline: 8px;
}
@media screen and (width <= 768px) {
  .co_single__keyword {
    grid-column: span 2/span 2;
  }
}

.co_single__keywordItem {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
}

.co_single__content {
  margin-top: 60px;
}
@media screen and (width <= 768px) {
  .co_single__content {
    margin-top: 48px;
  }
}
.co_single__content #ez-toc-container {
  width: 100%;
  padding: 20px;
  bottom: 1px solid #ddd;
  background-color: #fff;
  color: #000;
}
.co_single__content #ez-toc-container .ez-toc-title {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
  display: block;
}
.co_single__content #ez-toc-container .ez-toc-title-toggle {
  display: none;
}
.co_single__content #ez-toc-container nav {
  margin-top: 16px;
}
.co_single__content #ez-toc-container .ez-toc-link {
  color: inherit;
  line-height: 1.8;
  font-weight: 400;
}
.co_single__content #ez-toc-container .ez-toc-link::before {
  font-family: "Noto Sans JP", sans-serif;
}
@media (hover: hover) and (pointer: fine) {
  .co_single__content #ez-toc-container .ez-toc-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.co_single__content h2 {
  margin-block: 60px 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 18px;
  border-bottom: 1px solid #A70A0A;
  color: #000;
}
.co_single__content h2 .ez-toc-section {
  display: block;
}
@media screen and (width <= 768px) {
  .co_single__content h2 {
    -webkit-margin-before: 48px;
            margin-block-start: 48px;
    font-size: 24px;
  }
}
.co_single__content h3 {
  border-left: 3px solid var(--main, #C9AF63);
  background: var(--bg, #F3EFE1);
  padding: 14px 14px 14px 18px;
  color: var(--black, #000);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin-block: 50px 20px;
  letter-spacing: normal;
}
@media screen and (width <= 768px) {
  .co_single__content h3 {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}
.co_single__content h4 {
  color: var(--accent, #A70A0A);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  border-bottom: none;
  margin-block: 40px 20px;
}
@media screen and (width <= 768px) {
  .co_single__content h4 {
    -webkit-margin-before: 32px;
            margin-block-start: 32px;
  }
}
.co_single__content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
}
.co_single__content a {
  color: #4173d9;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.co_single__content img {
  width: 100%;
}
.co_single__content ul {
  gap: 8px;
  margin: 0 0 20px 0;
}
.co_single__content ul li {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  list-style: none;
  position: relative;
  padding-top: 0;
}
.co_single__content ul li::before {
  content: "";
  width: 15px;
  aspect-ratio: 1;
  background: transparent url(../images/column/icon-list.svg) no-repeat center center/contain;
  position: absolute;
  left: -1.5em;
  top: 8px;
}

.co_single__pagination {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 185px 94px 185px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 768px) {
  .co_single__pagination {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 48px 26px;
  }
}

.co_single__paginationLink {
  padding: 14px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  font-size: 18px;
  border-radius: 56px;
  background: var(--main, #C9AF63);
}
@media (hover: hover) and (pointer: fine) {
  .co_single__paginationLink {
    -webkit-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
  }
  .co_single__paginationLink:hover {
    color: #fff;
    opacity: 0.7;
  }
}

.co_single__pagination__return {
  color: var(--black, #000);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (width <= 768px) {
  .co_single__pagination__return {
    grid-row: 2/3;
    align-self: center;
    grid-column: 1/3;
    text-align: center;
    text-decoration: underline;
  }
}

.co-single__share {
  padding: 16px 30px;
  border-radius: 8px;
  border: 1px solid var(--gray-line, #DDD);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (width <= 768px) {
  .co-single__share {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.co-single__shareBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.co-single__shareBtn--text {
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--black, #000);
  color: var(--black, #000);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  .co-single__shareBtn--text:hover {
    opacity: 0.7;
  }
}

.co-single__shareText {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

.co-single__shareList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 768px) {
  .co-single__shareList {
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .ly_column {
    gap: 60px;
  }
  .co-list {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .side_column[data-slug=column] {
    width: 100%;
  }
}
.copy-toast {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #C9AF63;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
.copy-toast::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #C9AF63;
}

.bnr_link {
  color: #4173d9;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.bnr_link:hover {
  opacity: 0.5;
  color: #4173d9;
}