.l-article {
  margin-top: 6rem;
  margin-bottom: 12rem;
  border-top: 1px solid var(--color-black);
}

.l-article_wrapper {
  max-width: 85rem;
  margin: 0 auto;
  word-break: break-all;
}

html[lang=en] .l-article_wrapper {
  word-break: normal;
  overflow-wrap: anywhere;
}

.l-article_kv {
  display: grid;
  position: relative;
  grid-template-columns: 50.6rem auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 136.6rem;
  margin-top: 6rem;
  overflow: hidden;
  gap: 0 9.6rem;
}

.l-article_kv_img {
  aspect-ratio: 1/1;
  width: 50.6rem;
  height: 50.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-article_kv_img_wrapper {
  aspect-ratio: 1/1;
  width: 50.6rem;
  height: 50.6rem;
  overflow: hidden;
  scale: 1.05;
  opacity: 0;
}

.l-article_kv_img_wrapper .swiper-slide {
  overflow: hidden;
}

.l-article_kv_item {
  display: grid;
  gap: 1rem;
}

.l-article_kv_ttl {
  margin-top: 1rem;
}

.l-article_profile {
  margin-top: 6rem;
}

.l-article_profile>*:first-child {
  margin-top: 0;
}

.l-article_profile p {
  margin-top: 1.7em;
  font-size: 1.8rem;
  line-height: 1.8;
}

.l-article_profile h3 {
  margin-top: 6rem;
  font-size: 3.6rem;
  line-height: 1.3;
  font-family: "BIZ UDPMincho",serif;
  letter-spacing: .04em;
}

.l-article_profile h4 {
  margin-top: 6rem;
  font-size: 2.6rem;
  line-height: 1.5;
  font-family: "BIZ UDPMincho",serif;
}

.l-article_profile h5 {
  margin-top: 6rem;
  font-size: 2rem;
  line-height: 1.5;
  font-family: "BIZ UDPMincho",serif;
}

.l-article_profile a {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: color var(--duration) var(--easing);
  transition: color var(--duration) var(--easing);
}

.l-article_update {
  margin-top: 4rem;
  text-align: right;
}

.l-article_gallery_slider_btn {
  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;
  height: 3.6rem;
  -webkit-transition: opacity var(--duration) var(--easing);
  transition: opacity var(--duration) var(--easing);
}

.l-article_gallery_slider_btn.is-prev {
  rotate: 180deg;
}

.l-article_gallery_slider_btn svg {
  width: 100%;
}

.l-article_gallery_slider_btn_wrapper {
  display: grid;
  grid-template-columns: 3.6rem 3.6rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 85rem;
  margin-top: 4rem;
  gap: 0 2rem;
}

.l-article_gallery_slider_btn_wrapper.is-hide {
  display: none;
}

.l-article_gallery_item {
  aspect-ratio: 1/1;
  width: 31rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-article_gallery_items {
  width: calc(85rem + (100% - 85rem)/2);
  margin: 6rem 0 0 auto;
}

.l-article_gallery_items.is-noslide .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3rem;
}

.l-article_gallery_item_img {
  aspect-ratio: 1/1;
  width: 31rem;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.l-article_gallery_item_img .is-kv {
  scale: 1.05;
}

.l-article_gallery_item_img .is-kv_wrapper {
  overflow: hidden;
  scale: 1.05;
  opacity: 0;
}

.l-article_gallery_item_img .is-kv_wrapper .swiper-slide {
  overflow: hidden;
}

.l-article_gallery_item_img_wrapper {
  -webkit-transition: -webkit-transform var(--duration) var(--easing);
  transition: -webkit-transform var(--duration) var(--easing);
  transition: transform var(--duration) var(--easing);
  transition: transform var(--duration) var(--easing), -webkit-transform var(--duration) var(--easing);
}

.l-article_gallery_item_btn_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.2rem;
}

.l-article_btn {
  --btn-width: 32.4rem;
  margin: 6rem auto 0;
}

.l-article_modal {
  visibility: hidden;
  z-index: 8889;
  position: fixed;
  inset: 0;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity var(--duration) var(--easing),visibility var(--duration) var(--easing);
  transition: opacity var(--duration) var(--easing),visibility var(--duration) var(--easing);
}

.l-article_modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.l-article_modal_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  cursor: pointer;
}

.l-article_modal_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 82.9rem;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.l-article_modal_body.is-vertical {
  max-width: 57.3rem;
  max-height: calc(100vh - 17rem);
}

.l-article_modal_close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: absolute;
  top: -2.2rem;
  right: -2.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 7.6rem;
  height: 7.6rem;
  border: solid 1px var(--color-black);
  background: var(--color-white);
  cursor: pointer;
  -webkit-transition: border var(--duration) var(--easing);
  transition: border var(--duration) var(--easing);
}

.l-article_modal_close svg {
  width: 1.8rem;
  height: 1.8rem;
}

.l-article_modal_close svg path {
  -webkit-transition: stroke var(--duration) var(--easing);
  transition: stroke var(--duration) var(--easing);
}

.l-article_modal_img {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-height: calc(100vh - 17rem);
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-article_modal_caption {
  padding: 2rem 3rem;
  background: var(--color-white);
  white-space: pre-line;
  word-break: break-all;
}

html[lang=en] .l-article_modal_caption {
  word-break: normal;
  overflow-wrap: anywhere;
}

.l-article_modal_caption.is-none {
  display: none;
}

@media screen and (max-width: 48em) {
  .l-article {
    margin-top: 4rem;
    margin-bottom: 6rem;
  }
  .l-article_wrapper {
    padding: 0 2rem;
  }
  .l-article_kv {
    grid-template-columns: 1fr;
    margin-top: 4rem;
    gap: 2rem;
  }
  .l-article_kv_img {
    width: 100%;
    height: 100%;
  }
  .l-article_kv_img_wrapper {
    width: 100%;
    height: 100%;
  }
  .l-article_kv_item {
    gap: .5rem;
  }
  .l-article_kv_ttl {
    margin-top: .5rem;
  }
  .l-article_profile {
    margin-top: 2rem;
  }
  .l-article_profile p {
    font-size: 1.6rem;
  }
  .l-article_profile h3 {
    margin-top: 4rem;
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .l-article_profile h4 {
    margin-top: 4rem;
    font-size: 2rem;
  }
  .l-article_profile h5 {
    margin-top: 4rem;
    font-size: 1.8rem;
  }
  .l-article_update {
    margin-top: 2rem;
  }
  .l-article_gallery_slider_btn_wrapper {
    grid-template-columns: 2.4rem 2.4rem;
    margin-top: 2rem;
  }
  .l-article_gallery_item {
    width: 14.8rem;
  }
  .l-article_gallery_items {
    width: calc(100% - 2rem);
    margin: 4rem 0 0 auto;
  }
  .l-article_gallery_items.is-noslide .swiper-wrapper {
    gap: 0 3.3rem;
  }
  .l-article_gallery_item_img {
    width: 14.8rem;
  }
  .l-article_gallery_item_btn_wrapper {
    gap: 0 2.4rem;
  }
  .l-article_btn {
    margin-top: 4rem;
    padding: 2.4rem 2rem;
    --btn-width: calc(100% - 4rem);
  }
  .l-article_modal_body {
    width: calc(100% - 4rem);
  }
  .l-article_modal_body.is-vertical {
    width: calc(100% - 4rem);
    max-height: initial;
  }
  .l-article_modal_close {
    top: -1rem;
    right: -1rem;
    width: 3.1rem;
    height: 3.1rem;
  }
  .l-article_modal_close svg {
    width: .7rem;
    height: .7rem;
  }
  .l-article_modal_caption {
    padding: 1rem 2rem;
  }
}

@media (hover: hover) {
  .l-article_profile a:hover {
    color: var(--color-red);
  }
  .l-article_gallery_slider_btn:hover {
    opacity: .5;
  }
  .l-article_gallery_item:hover .l-article_gallery_item_img_wrapper {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .l-article_btn:hover {
    color: var(--color-red);
  }
  .l-article_modal_close:hover {
    border: solid 1px var(--color-red);
  }
  .l-article_modal_close:hover path {
    stroke: var(--color-red);
  }
}
