/* LESS Document */
/* LESS Document */
header {
  position: absolute;
}
@media (width <= 1023px) {
  header {
    position: static;
    margin-bottom: 30vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  .sticky
+++++++++++++++++++++++++++++++++++++++++++ */
.sticky {
  position: sticky;
  top: 20px;
}
@media (width <= 1023px) {
  .sticky {
    position: static;
  }
}
.sticky nav {
  max-height: 100vh;
  overflow-y: scroll;
}
.sticky nav::-webkit-scrollbar {
  width: 4px;
  display: none;
}
/*+++++++++++++++++++++++++++++++++++++++++++
  #detail_contents
+++++++++++++++++++++++++++++++++++++++++++ */
#detail_contents {
  display: grid;
  grid-template-columns: 410px 1fr;
  grid-template-areas: "left right";
  gap: 90px;
  align-items: stretch;
}
@media (width <= 1023px) {
  #detail_contents {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    flex-direction: column;
    gap: 40px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  article
+++++++++++++++++++++++++++++++++++++++++++ */
article {
  grid-area: right;
  padding: 0 0 130px;
  overflow: hidden;
  flex: 1;
}
@media (width <= 1023px) {
  article {
    padding-bottom: 50px;
  }
}
article .article_header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: flex-end;
  min-height: 414px;
  margin: 0 0 130px;
  padding: 0 674px 0 0;
}
@media (width <= 1439px) {
  article .article_header {
    padding: 414px 0 0;
  }
}
@media (width <= 1023px) {
  article .article_header {
    min-height: 0;
    padding-top: 0;
  }
}
article .article_header_img {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: flex-end;
  max-width: 674px;
  height: 414px;
  order: 1;
  position: absolute;
  top: 0;
  right: 0;
}
@media (width <= 1439px) {
  article .article_header_img {
    width: calc(100vw - 560px);
  }
}
@media (width <= 1023px) {
  article .article_header_img {
    width: calc(100vw - 220px);
    height: 30vw;
  }
}
article .article_header_img::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/bg_dots.svg);
  position: absolute;
  bottom: -50px;
  left: -105px;
  z-index: -1;
}
@media (width <= 1023px) {
  article .article_header_img::after {
    bottom: -5vw;
    left: -5vw;
  }
}
article .article_header_img img {
  width: 674px;
  height: 414px;
  object-fit: cover;
  object-position: center -105px;
}
@media (width <= 1439px) {
  article .article_header_img img {
    object-position: center center;
  }
}
@media (width <= 1023px) {
  article .article_header_img img {
    width: 100%;
    height: 100%;
    object-position: center 75%;
  }
}
article .article_header_title {
  padding: 0 60px 0 0;
  font-size: 4rem;
}
@media (width <= 1023px) {
  article .article_header_title {
    padding: 0 20px;
    font-size: 7.2vw;
  }
}
article .article_header_title_num {
  display: inline-block;
  background: #FFFFF8;
  font-size: 2.4rem;
  font-weight: 500;
}
@media (width <= 1439px) {
  article .article_header_title_num {
    padding: 0 10px;
  }
}
@media (width <= 1023px) {
  article .article_header_title_num {
    font-size: 4.8vw;
    padding: 0;
  }
}
article .article_header_title p {
  font-size: 2.4rem;
  font-weight: bold;
}
@media (width <= 1023px) {
  article .article_header_title p {
    font-size: 4.8vw;
  }
}
article .article_header_title p::before,
article .article_header_title p::after {
  content: ' ─ ';
}
article hr {
  width: 100%;
  height: 28px;
  margin: 100px 0;
  background: url(../img/bg_triangle_3.svg) no-repeat 0 center;
  border: none;
}
@media (width <= 1023px) {
  article hr {
    margin: 50px 0;
  }
}
article section {
  max-width: 1080px;
  padding: 100px 0;
}
@media (width <= 1023px) {
  article section {
    padding: 50px 0;
  }
}
article section h2 {
  margin: 0 0 55px;
  font-size: 3.6rem;
  font-weight: 500;
  position: relative;
}
@media (width <= 1023px) {
  article section h2 {
    font-size: 6.4vw;
  }
}
article section h2::before {
  content: '';
  display: block;
  width: 100%;
  height: 18px;
  background: url(../img/bg_dots.svg);
  position: absolute;
  bottom: 2rem;
}
@media (width <= 1023px) {
  article section h2::before {
    font-size: 4vw;
    bottom: 4vw;
  }
}
article section h2 span {
  padding: 0 2rem 0 0;
  background: #FFFFF8;
  position: relative;
  z-index: 1;
}
article section figure {
  max-width: max-content;
  margin: 0 auto 60px;
  position: relative;
}
article section figure::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/bg_dots.svg);
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}
article section:has(+ .figcaption) {
  margin-bottom: 30px;
}
article section .figcaption {
  font-size: 2rem;
  text-align: center;
}
article .pageLink {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 90px;
  margin-top: 4em;
}
@media (width <= 1023px) {
  article .pageLink {
    gap: 0 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
article .pageLink_prev,
article .pageLink_top,
article .pageLink_next {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 176px;
  font-size: 2rem;
  color: #675F4F;
  text-decoration: none;
  border-top: #C9812E 1px solid;
  border-bottom: #C9812E 1px solid;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  article .pageLink_prev:hover,
  article .pageLink_top:hover,
  article .pageLink_next:hover {
    color: #C9812E;
  }
}
@media (hover: none) {
  article .pageLink_prev:active,
  article .pageLink_top:active,
  article .pageLink_next:active {
    color: #C9812E;
  }
}
@media (width <= 1023px) {
  article .pageLink_prev,
  article .pageLink_top,
  article .pageLink_next {
    font-size: 4vw;
  }
}
article .pageLink_prev .pageLink_num,
article .pageLink_top .pageLink_num,
article .pageLink_next .pageLink_num {
  display: block;
  font-size: 1.6rem;
}
article .pageLink_prev::before,
article .pageLink_top::before,
article .pageLink_next::before {
  display: inline-block;
  color: #C9812E;
  font-size: 1.6rem;
  background: #FFFFF8;
  position: absolute;
  bottom: -1em;
}
article .pageLink_prev {
  grid-column: 1;
}
@media (width <= 1023px) {
  article .pageLink_prev {
    grid-row: 2;
    border-top: none;
  }
}
article .pageLink_prev::before {
  content: '前の記事へ';
  padding-right: 15px;
  left: 0;
}
article .pageLink_top {
  grid-column: 2;
  justify-self: center;
  align-items: center;
  color: #C9812E;
}
@media (hover: hover) and (pointer: fine) {
  article .pageLink_top:hover {
    color: #675F4F;
  }
}
@media (hover: none) {
  article .pageLink_top:active {
    color: #675F4F;
  }
}
@media (width <= 1023px) {
  article .pageLink_top {
    grid-row: 1;
    grid-column: 1 / 3;
  }
}
article .pageLink_next {
  grid-column: 3;
  justify-self: end;
}
@media (width <= 1023px) {
  article .pageLink_next {
    grid-column: 2;
    grid-row: 2;
    border-top: none;
  }
}
article .pageLink_next::before {
  content: '次の記事へ';
  padding-left: 15px;
  right: 0;
}
/*+++++++++++++++++++++++++++++++++++++++++++

+++++++++++++++++++++++++++++++++++++++++++ */
