.-column .page__title:has(figure) {
  margin-bottom: 22rem;
}

.-column .page__title__block {
  padding-right: 34rem;
}
@media screen and (width <= 900px) {
  .-column .page__title__block {
    padding-right: 2rem;
  }
}

.column__block {
  width: 100%;
  padding-right: 34rem;
}
@media screen and (width <= 900px) {
  .column__block {
    padding-right: 2rem;
  }
}

.-column-top .page__title + .column__block:has(.column__slide) {
  margin-top: -11.5rem;
}
@media screen and (width <= 900px) {
  .-column-top .page__title + .column__block:has(.column__slide) {
    margin-top: 2rem;
  }
}

.column__body {
  width: 100%;
}

.column__title__block {
  position: relative;
  margin-bottom: 5rem;
  padding-top: 3rem;
}

.column__title__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.column__title__info .-date {
  color: #A39F98;
  margin-right: 3rem;
}

.column__title__info > a {
  text-decoration: none;
}

.column__title__info .-tag {
  margin-right: 1rem;
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.column__title__info .-tag::before {
  content: "# ";
  font-size: 1.5rem;
  color: #DE6E6B;
}

.column__title__info .-tag:hover {
  opacity: 0.7;
}

.column__title__text {
  margin-bottom: 3rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: #333333;
  line-height: 4rem;
}

.column__title__img {
  position: absolute;
  width: 100%;
  height: 28rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.column__toc {
  margin-bottom: 5rem;
  padding: 3rem 4rem;
  background-color: #F7F5ED;
  border-radius: 2rem;
}

.column__toc__title {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.column__toc__list {
  counter-reset: number 0;
}

.column__toc__item {
  margin-bottom: 0.8rem;
}

.column__toc__item:last-child {
  margin-bottom: 0;
}

.column__toc__item a::before {
  counter-increment: number 1;
  content: counter(number) ".";
}

.column__box {
  margin-bottom: 7rem;
  overflow: hidden;
}

.column__box figure.-left, .column__box figure.-right {
  width: 25rem;
  height: 17.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (width <= 767px) {
  .column__box figure.-left, .column__box figure.-right {
    width: 100%;
    height: auto;
    aspect-ratio: 10/7;
  }
}

.column__box figure.-left img, .column__box figure.-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.column__box figure.-left {
  margin: 0 3rem 3rem 0;
  float: left;
}
@media screen and (width <= 767px) {
  .column__box figure.-left {
    float: none;
    margin: 0 0 2rem;
  }
}

.column__box figure.-right {
  margin: 0 0 3rem 3rem;
  float: right;
}
@media screen and (width <= 767px) {
  .column__box figure.-right {
    float: none;
    margin: 0 0 2rem;
  }
}

.column__box__title {
  margin-bottom: 2rem;
  border-bottom: dotted 0.3rem #C7AA76;
  font-size: 2.2rem;
  font-weight: 700;
  color: #8B6035;
}

.column__box__img__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.5rem;
}

.column__box__img__item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 63rem;
  border-radius: 1.5rem;
  aspect-ratio: 250/175;
  overflow: hidden;
}

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

.btn__area {
  padding-top: 3rem;
  border-top: dashed 0.1rem #8A8A8A;
  text-align: center;
}

.btn--color.-return {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.btn--color.-return::after {
  rotate: 180deg;
}

.column__nav {
  position: absolute;
  right: max(50vw - 56rem, 2rem);
  top: 13.8rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26.6rem;
  height: calc(100% - 30rem);
  padding: 2.5rem 2rem;
  background-color: #EFEBDD;
  overflow-y: auto;
}
@media screen and (width <= 900px) {
  .column__nav {
    position: static;
    width: 100vw;
    height: auto;
    margin-top: 4rem;
    margin-inline: calc(50% - 50vw);
    padding-inline: calc(50vw - 50%);
  }
}
.column__nav .btn--border.-default {
  width: 100%;
  margin-top: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.column__nav .btn--border.-default::after {
  margin-left: 0;
}

.column__nav__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #333;
}

.column__nav__title::before {
  content: "";
  display: block;
  height: 1.9rem;
  background-repeat: no-repeat;
  position: 0 0;
  background-size: contain;
}

.column__nav__title.-tag::before {
  width: 2.4rem;
  background-image: url(../images/column/icon_tag.svg);
}

.column__nav__title.-popularity::before {
  width: 2rem;
  background-image: url(../images/column/icon_popularity.svg);
}

.column__nav__tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.8rem 0.5rem;
  margin-bottom: 3rem;
}

.column__nav__tab__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 2.9rem;
  padding: 0 1.1rem;
  border: 0.1rem solid #E3E1DC;
  border-radius: calc(infinity * 1px);
  background-color: #fff;
  font-size: 1.3rem;
  color: #333333;
  text-decoration: none;
  -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
.column__nav__tab__item:hover {
  border-color: #DE6E6B;
  background-color: #DE6E6B;
  color: #fff;
}
.column__nav__tab__item:hover::before {
  color: #fff;
}
.column__nav__tab__item.-current {
  border-color: #DE6E6B;
  background-color: #DE6E6B;
  color: #fff;
}
.column__nav__tab__item.-current::before {
  color: #fff;
}

.column__nav__tab__item::before {
  content: "#";
  margin-right: 0.3rem;
  font-size: 1.5rem;
  color: #DE6E6B;
}

.column__nav__popularity__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: #333;
  line-height: 1.8rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.column__nav__popularity__item:hover {
  opacity: 0.7;
}

.column__nav__popularity__item:last-child {
  margin-bottom: 0;
}

.column__nav__popularity__item figure {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 8rem;
  height: 5.4rem;
  border: 0.1rem solid #E3E1DC;
  border-radius: 0.5rem;
  overflow: hidden;
}

.column__nav__popularity__item figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.column__nav__popularity__item a {
  color: #333;
  text-decoration: none;
}

.column__slide {
  width: calc(100% + 2.5rem);
  margin-top: -11.5rem;
  margin-left: -2.5rem;
  padding-left: 2.5rem;
  padding-bottom: 6rem;
  overflow: hidden;
}
@media screen and (width <= 900px) {
  .column__slide {
    width: calc(100% + 4rem);
    margin-top: -5.5rem;
    margin-left: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.column__slide .splide__arrow {
  width: 5rem;
  height: 5rem;
  background: none;
}
@media screen and (width <= 767px) {
  .column__slide .splide__arrow {
    width: 3rem;
    height: 3rem;
  }
}

.column__slide .splide__arrow::before, .column__slide .splide__arrow::after {
  width: 100%;
  height: 100%;
  background-image: url(../images/column/arrow_slide.svg);
}

.column__slide .splide__arrow.-prev {
  left: 0;
}
@media screen and (width <= 767px) {
  .column__slide .splide__arrow.-prev {
    top: 13rem;
    left: 0.5rem;
  }
}

.column__slide .splide__arrow.-next {
  right: min(25.2rem, 28.75% + 1.6rem);
}
@media screen and (767px < width <= 900px) {
  .column__slide .splide__arrow.-next {
    left: 51.4rem;
    right: auto;
  }
}
@media screen and (width <= 767px) {
  .column__slide .splide__arrow.-next {
    top: 13rem;
    right: 0.5rem;
  }
}

.column__slide .splide__track {
  overflow: visible;
}

.column__slide__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.7rem;
  width: 100%;
  text-decoration: none;
}
@media screen and (width <= 767px) {
  .column__slide__item {
    display: block;
  }
}

.column__slide__img {
  display: block;
  width: 65.375%;
  border-radius: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (width <= 767px) {
  .column__slide__img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }
}
.column__slide__img:hover {
  opacity: 0.7;
}

.column__slide__img figure {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}

.column__slide__text {
  width: 23rem;
  overflow: hidden;
}
@media screen and (767px < width <= 900px) {
  .column__slide__text {
    width: auto;
  }
}
@media screen and (width <= 767px) {
  .column__slide__text {
    width: 100%;
  }
}
.column__slide__text a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.column__slide__text a:hover {
  opacity: 0.7;
}

.column__slide__text .ttl {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.column__slide__text .txt {
  font-size: 1.4rem;
  font-weight: 400;
  color: #3D3C3B;
  line-height: 1.725;
}

.column__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 9rem;
}
@media screen and (width <= 767px) {
  .column__list {
    gap: 2rem;
  }
}

.column__list__item {
  width: calc((100% - 6.2rem) / 3);
}
@media screen and (width <= 767px) {
  .column__list__item {
    width: calc((100% - 2rem) / 2);
  }
}

.column__list__item__body {
  color: #333;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.column__list__item__body:hover {
  opacity: 0.7;
}

.column__list__item__body figure {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 1.6rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.1);
}

.column__list__item__body .-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 2rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #A39F98;
}

.column__list__item__body .-new::before {
  content: "NEW";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 2rem;
  margin-right: 1rem;
  padding: 0 0.7rem;
  background-color: #ED0000;
  font-size: 1.2rem;
  color: #fff;
}

.column__list__item__body .-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}

.tag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 1.3rem;
  margin-top: 0.5rem;
  font-size: 1.3rem;
}
.tag__list a {
  text-decoration: none;
  color: var(--color-text);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.tag__list a:hover {
  opacity: 0.7;
}

.tag__list span::before {
  content: "# ";
  font-size: 1.5rem;
  color: #DE6E6B;
}

.pagination .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  padding-top: 4rem;
  border-top: 0.1rem dashed #8A8A8A;
}
@media screen and (width <= 767px) {
  .pagination .wp-pagenavi {
    gap: 0.6rem;
  }
}
.pagination .wp-pagenavi > span, .pagination .wp-pagenavi > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 4rem;
  height: 4rem;
  padding: 0 1.5rem;
  border: 0.1rem solid #8B6035;
  text-decoration: none;
  font-size: 1.5rem;
}
@media screen and (width <= 767px) {
  .pagination .wp-pagenavi > span, .pagination .wp-pagenavi > a {
    width: 3.5rem;
    min-width: auto;
    height: 3.5rem;
    padding: 0 0.5em;
    font-size: 1.3rem;
  }
}
.pagination .wp-pagenavi > a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.pagination .wp-pagenavi > a:hover {
  opacity: 0.7;
}
.pagination .wp-pagenavi .current {
  background-color: #8B6035;
  color: #fff;
}
.pagination .wp-pagenavi .previouspostslink {
  margin-right: 2rem;
}
@media screen and (width <= 767px) {
  .pagination .wp-pagenavi .previouspostslink {
    margin-right: 1rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 6rem;
  }
  .pagination .wp-pagenavi .previouspostslink::before {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.15rem solid #8B6035;
    border-left: 0.15rem solid #8B6035;
    -webkit-transform: translateX(0.2rem) rotate(-45deg);
            transform: translateX(0.2rem) rotate(-45deg);
  }
}
.pagination .wp-pagenavi .nextpostslink {
  margin-left: 2rem;
}
@media screen and (width <= 767px) {
  .pagination .wp-pagenavi .nextpostslink {
    margin-left: 1rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 6rem;
  }
  .pagination .wp-pagenavi .nextpostslink::before {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.15rem solid #8B6035;
    border-right: 0.15rem solid #8B6035;
    -webkit-transform: translateX(-0.2rem) rotate(45deg);
            transform: translateX(-0.2rem) rotate(45deg);
  }
}

.tag__title {
  margin-top: 1.8rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: #333333;
}

.column__box__content {
  overflow: hidden;
  margin-top: 1.8rem;
}