

.article-wrap {
    margin: 12rem auto 0;
    padding: 0 12rem;
    position: relative;
    max-width: 130rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
}
.article {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
}
.article > *:first-child {
    margin-top: 0;
}
.article .iframe-video {
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    aspect-ratio: 16/9;
}
.article .iframe-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}


.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    margin-top: 3.6rem;
    color: inherit;
    font-weight: 100;
}
.article h1 {
    font-size: 3.6rem;
    line-height: 1;
}
.article h2 {
    font-size: 3.2rem;
    line-height: 1.1;
}
.article h3 {
    font-size: 2.8rem;
    line-height: 1.2;
}
.article h4 {
    font-size: 2.4rem;
    line-height: 1.2;
}
.article h5 {
    font-size: 2rem;
    line-height: 1.3;
}
.article h6 {
    font-size: 1.6rem;
    line-height: 1.3;
}
.article > p {
    line-height: 1.5;
}
.article ul,
.article ol {
    padding-left: 2.4rem;
}
.article > ul,
.article > ol {

}
.article ul li,
.article ol li {
    list-style-type: inherit;
    list-style-position: outside;
    line-height: 1.5;
}
.article ul li {
    list-style-type: disc;
}
.article ol li {
    list-style-type: decimal;
}


.article a {
    text-decoration: underline;
}




.article img {
    display: block;
    max-width: 100%;
    height: auto;
}


.article .gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: .6rem;
    width: 100%;
}
.article .gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 100%;
    border-radius: .8rem;
}
.article .gallery-columns-1 {
    grid-template-columns: repeat(2, 1fr);
}
.article .gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}
.article .gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}
.article .gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}
.article .gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}
.article .gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}
.article .gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}
.article .gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}
.article .gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}
.article .gallery-icon {
    display: block;
    width: 100%;
    height: 100%;
}
.article dt.gallery-icon a.swipebox {
    position: relative;
    display: block;
    overflow: hidden;
    background: #000;
    width: 100%;
    height: 100%;
}
.article dl.gallery-item a.swipebox:hover img {
    opacity: .7;
}
.article dl.gallery-item img {
    transition: .3s;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
}
.article dd.wp-caption-text.gallery-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    color: #fff;
    padding: 1.2rem 1.2rem 1.2rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
    pointer-events: none;
}
.article .gallery.gallery-size-full dl.gallery-item {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.article .gallery.gallery-size-full dt.gallery-icon {

}
.article .gallery.gallery-size-full a.swipebox {
    display: block;
    background: #000;
}
.article .gallery.gallery-size-full img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}







