@charset "utf-8";

/* =========================================================
   IASO PHOTO GALLERY | SP <=767px
   Gallery List / Gallery Detail shared module.
   STEP 3: Gallery List SP.
========================================================= */
:root {
    --gallery-navy:#183247;
    --gallery-blue:#6e9db8;
    --gallery-text:#334652;
    --gallery-muted:#74858e;
    --gallery-line:#dbe4e9;
    --gallery-ivory:#f8f7f3;
    --gallery-sky:#f3f8fb;
    --gallery-white:#ffffff;
}

.GalleryListPage {
    position:relative;
    top:auto;
    margin:0;
    padding:0;
    color:var(--gallery-text);
    background:#fff;
    overflow:hidden;
}

.GalleryListPage *,
.GalleryListPage *::before,
.GalleryListPage *::after {
    box-sizing:border-box;
}

.GalleryInner {
    width:calc(100% - 36px);
    margin:0 auto;
}

.GalleryEyebrow {
    margin:0 0 14px;
    color:var(--gallery-blue);
    font-size:9px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.18em;
}

/* HERO -------------------------------------------------- */
.GalleryHero {
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 88% 12%,rgba(110,157,184,.085),transparent 30%),
        linear-gradient(150deg,#fbfaf7 0%,#f7fafc 52%,#eef5f8 100%);
}

.GalleryHero::before {
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(24,50,71,.02) 1px,transparent 1px),
        linear-gradient(rgba(24,50,71,.018) 1px,transparent 1px);
    background-size:54px 54px;
    mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.42) 52%,#000 100%);
    pointer-events:none;
}

.GalleryHero::after {
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:rgba(110,157,184,.17);
}

.GalleryHero__inner {
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    gap:30px;
    padding:78px 0 30px;
}

.GalleryHero__copy {
    position:relative;
    min-width:0;
    padding-left:18px;
}

.GalleryHero__copy::before {
    content:"";
    position:absolute;
    left:0;
    top:3px;
    width:1px;
    height:54px;
    background:linear-gradient(180deg,var(--gallery-blue),rgba(110,157,184,.12));
}

.GalleryHero h1 {
    margin:0;
    color:var(--gallery-navy);
    font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
    font-size:28px;
    font-weight:500;
    line-height:1.55;
    letter-spacing:.02em;
}

.GalleryHero__lead {
    margin:22px 0 0;
    color:var(--gallery-navy);
    font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
    font-size:16px;
    font-weight:500;
    line-height:1.85;
}

.GalleryHero__text {
    margin:15px 0 0;
    color:#566b76;
    font-size:13px;
    line-height:1.95;
}

.GalleryHero__meta {
    display:flex;
    flex-wrap:wrap;
    gap:8px 16px;
    margin-top:24px;
    padding-top:15px;
    border-top:1px solid rgba(110,157,184,.2);
    color:#7c8d96;
    font-size:6.5px;
    line-height:1.4;
    letter-spacing:.14em;
}

/* HERO ART --------------------------------------------- */
.GalleryHeroArt {
    position:relative;
    width:100%;
    height:292px;
    margin:0 auto;
}

.GalleryHeroArt__frame {
    position:absolute;
    border:1px solid rgba(110,157,184,.2);
}

.GalleryHeroArt__frame--back {
    top:18px;
    right:0;
    width:82%;
    height:82%;
    background:rgba(255,255,255,.25);
}

.GalleryHeroArt__frame--front {
    left:0;
    top:0;
    z-index:2;
    width:90%;
    height:88%;
    padding:24px 22px 20px;
    overflow:hidden;
    background:
        linear-gradient(150deg,rgba(255,255,255,.78),rgba(241,248,251,.56));
    border-color:rgba(255,255,255,.78);
    box-shadow:0 16px 34px rgba(24,50,71,.08);
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
}

.GalleryHeroArt__frame--front::before {
    content:"";
    position:absolute;
    right:-38px;
    top:-38px;
    width:126px;
    height:126px;
    border:1px solid rgba(110,157,184,.17);
    border-radius:50%;
}

.GalleryHeroArt__frame--front::after {
    content:"";
    position:absolute;
    right:20px;
    bottom:20px;
    width:48px;
    height:48px;
    border:1px solid rgba(110,157,184,.16);
}

.GalleryHeroArt__kicker {
    position:relative;
    z-index:2;
    display:block;
    color:var(--gallery-blue);
    font-size:6.5px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.17em;
}

.GalleryHeroArt__word {
    position:absolute;
    left:18px;
    top:59px;
    z-index:1;
    color:rgba(24,50,71,.105);
    font-family:Georgia,"Times New Roman",serif;
    font-size:56px;
    font-weight:400;
    line-height:.9;
    letter-spacing:.01em;
    white-space:nowrap;
}

.GalleryHeroArt__axis {
    position:absolute;
    right:22px;
    top:28px;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:5px;
    color:#718690;
    font-size:5.8px;
    font-weight:600;
    line-height:1.3;
    letter-spacing:.14em;
}

.GalleryHeroArt__line {
    position:absolute;
    z-index:2;
    height:1px;
    background:linear-gradient(90deg,rgba(110,157,184,.2),rgba(110,157,184,.72));
}

.GalleryHeroArt__line--01 {
    left:22px;
    right:22px;
    top:138px;
}

.GalleryHeroArt__line--02 {
    left:22px;
    width:36%;
    top:153px;
    opacity:.55;
}

.GalleryHeroArt__edition {
    position:absolute;
    left:22px;
    right:22px;
    bottom:20px;
    z-index:2;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:12px;
}

.GalleryHeroArt__edition small {
    color:#6f838d;
    font-size:5.5px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.12em;
}

.GalleryHeroArt__edition b {
    color:rgba(110,157,184,.55);
    font-family:Georgia,"Times New Roman",serif;
    font-size:34px;
    font-weight:400;
    line-height:.85;
}

.GalleryHeroArt__caption {
    position:absolute;
    left:0;
    bottom:0;
    color:#778b95;
    font-size:5.5px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.14em;
}

/* CATEGORY NAV ----------------------------------------- */
.GalleryCategoryNav {
    border-top:1px solid var(--gallery-line);
    border-bottom:1px solid var(--gallery-line);
    background:#fff;
}

.GalleryCategoryNav__inner {
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1px;
    background:var(--gallery-line);
}

.GalleryCategoryNav__link {
    position:relative;
    min-height:66px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:9px;
    padding:14px 14px;
    color:var(--gallery-navy);
    background:#fff;
    text-decoration:none;
}

.GalleryCategoryNav__link span {
    color:var(--gallery-blue);
    font-family:Georgia,"Times New Roman",serif;
    font-size:9px;
    line-height:1;
}

.GalleryCategoryNav__link strong {
    font-size:11px;
    font-weight:500;
    line-height:1.5;
}

.GalleryCategoryNav__link::after {
    content:"";
    position:absolute;
    left:14px;
    right:14px;
    bottom:0;
    height:1px;
    background:transparent;
}

.GalleryCategoryNav__link.is-active {
    background:#fafdfe;
}

.GalleryCategoryNav__link.is-active span {
    color:#4f859f;
}

.GalleryCategoryNav__link.is-active::after {
    background:var(--gallery-blue);
}

/* ARCHIVE ---------------------------------------------- */
.GalleryArchive {
    padding:70px 0 78px;
    background:#fff;
}

.GalleryArchive__head {
    margin-bottom:36px;
    display:block;
}

.GalleryArchive__head h2 {
    margin:0;
    color:var(--gallery-navy);
    font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
    font-size:27px;
    font-weight:500;
    line-height:1.65;
    letter-spacing:.02em;
}

.GalleryArchive__head > p {
    margin:16px 0 0;
    padding:0;
    color:var(--gallery-muted);
    font-size:13px;
    line-height:1.9;
}

/* GRID -------------------------------------------------- */
.GalleryGrid,
.GalleryGrid--single,
.GalleryGrid--double,
.GalleryGrid--triple,
.GalleryGrid--editorial {
    display:grid;
    grid-template-columns:1fr;
    gap:48px;
    max-width:none;
    margin:0;
}

.GalleryGrid--editorial .GalleryCard,
.GalleryGrid--editorial .GalleryCard--featured,
.GalleryGrid--editorial .GalleryCard--wide {
    grid-column:auto;
}

/* CARD -------------------------------------------------- */
.GalleryCard {
    min-width:0;
}

.GalleryCard__link {
    display:block;
    color:inherit;
    text-decoration:none;
}

.GalleryCard__figure {
    margin:0;
}

.GalleryCard__image {
    position:relative;
    overflow:hidden;
    background:#eef4f6;
}

.GalleryCard__image::after {
    content:"";
    position:absolute;
    inset:0;
    border:1px solid rgba(24,50,71,.055);
    pointer-events:none;
}

.GalleryCard__image img,
.GalleryGrid--single .GalleryCard__image img,
.GalleryGrid--double .GalleryCard__image img,
.GalleryCard--featured .GalleryCard__image img,
.GalleryCard--wide .GalleryCard__image img,
.GalleryGrid--editorial .GalleryCard__image img {
    display:block;
    width:100%;
    aspect-ratio:16/11;
    object-fit:cover;
}

.GalleryCard__index {
    position:absolute;
    left:12px;
    top:12px;
    min-width:30px;
    height:30px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.78);
    border-radius:50%;
    color:#fff;
    background:rgba(24,50,71,.24);
    -webkit-backdrop-filter:blur(6px);
    backdrop-filter:blur(6px);
    font-family:Georgia,"Times New Roman",serif;
    font-size:8.5px;
    line-height:1;
}

.GalleryCard__hover {
    display:none;
}

.GalleryCard__caption {
    padding-top:16px;
}

.GalleryCard__category {
    display:block;
    color:var(--gallery-blue);
    font-size:7.5px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.13em;
}

.GalleryCard h3,
.GalleryCard--featured h3,
.GalleryCard--wide h3 {
    margin:9px 0 0;
    color:var(--gallery-navy);
    font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
    font-size:18px;
    font-weight:500;
    line-height:1.68;
    letter-spacing:.02em;
}

.GalleryCard__view {
    display:inline-block;
    margin-top:10px;
    color:#8a9aa2;
    font-size:6.8px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.15em;
}

/* EMPTY ------------------------------------------------- */
.GalleryArchive__empty {
    padding:50px 0;
    border-top:1px solid var(--gallery-line);
    border-bottom:1px solid var(--gallery-line);
    text-align:center;
}

.GalleryArchive__empty p {
    margin:0;
    color:var(--gallery-muted);
    font-size:13px;
    line-height:1.9;
}

.GalleryArchive__empty a {
    display:inline-block;
    margin-top:16px;
    color:var(--gallery-navy);
    font-size:11px;
    text-underline-offset:4px;
}

/* CLOSING ---------------------------------------------- */
.GalleryClosing {
    padding:82px 0 88px;
    background:var(--gallery-navy);
    text-align:center;
}

.GalleryClosing .GalleryEyebrow {
    color:#9bc1d4;
}

.GalleryClosing h2 {
    margin:0;
    color:#fff;
    font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
    font-size:28px;
    font-weight:500;
    line-height:1.7;
    letter-spacing:.02em;
}

.GalleryClosing__inner > p:not(.GalleryEyebrow) {
    margin:22px auto 0;
    color:#cbd8df;
    font-size:13px;
    line-height:1.95;
}

.GalleryClosing__actions {
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:30px;
}

.GalleryClosing__actions .iaso-button {
    width:100%;
}

/* SMALL SP --------------------------------------------- */
@media screen and (max-width:390px) {
    .GalleryInner {
        width:calc(100% - 32px);
    }

    .GalleryHero__inner {
        padding-top:82px;
    }

    .GalleryHero h1 {
        font-size:26px;
    }

    .GalleryHero__lead {
        font-size:15px;
    }

    .GalleryHero__text {
        font-size:12.5px;
    }

    .GalleryHeroArt {
        height:272px;
    }

    .GalleryHeroArt__word {
        font-size:51px;
    }

    .GalleryCategoryNav__link {
        min-height:64px;
        padding:13px 12px;
    }

    .GalleryCategoryNav__link::after {
        left:12px;
        right:12px;
    }

    .GalleryArchive {
        padding:64px 0 72px;
    }

    .GalleryArchive__head h2 {
        font-size:26px;
    }

    .GalleryGrid {
        gap:44px;
    }

    .GalleryCard h3,
    .GalleryCard--featured h3,
    .GalleryCard--wide h3 {
        font-size:17px;
    }
}

/* =========================================================
   GALLERY DETAIL | SP <=767px
   PC / TB FIX design translated for smartphone.
========================================================= */
.GalleryDetailPage {
    position:relative;
    top:auto;
    margin:0;
    padding:0;
    color:var(--gallery-text);
    background:#fff;
    overflow:hidden;
}

.GalleryDetailPage *,
.GalleryDetailPage *::before,
.GalleryDetailPage *::after {
    box-sizing:border-box;
}

/* DETAIL HERO ------------------------------------------ */
.GalleryDetailHero {
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 88% 10%,rgba(110,157,184,.085),transparent 30%),
        linear-gradient(150deg,#fbfaf7 0%,#f7fafc 52%,#eef5f8 100%);
}

.GalleryDetailHero::before {
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(24,50,71,.02) 1px,transparent 1px),
        linear-gradient(rgba(24,50,71,.018) 1px,transparent 1px);
    background-size:54px 54px;
    mask-image:linear-gradient(180deg,#000 0%,rgba(0,0,0,.24) 48%,transparent 100%);
    pointer-events:none;
}

.GalleryDetailHero__inner {
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    gap:32px;
    padding:78px 0 34px;
}

.GalleryDetailHero__copy {
    position:relative;
    min-width:0;
    padding-left:18px;
}

.GalleryDetailHero__copy::before {
    content:"";
    position:absolute;
    left:0;
    top:2px;
    width:1px;
    height:58px;
    background:linear-gradient(180deg,var(--gallery-blue),rgba(110,157,184,.1));
}

.GalleryDetailHero__category {
    margin:0 0 12px;
    color:#7b8d96;
    font-size:7px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.16em;
}

.GalleryDetailHero h1 {
    margin:0;
    color:var(--gallery-navy);
    font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
    font-size:28px;
    font-weight:500;
    line-height:1.55;
    letter-spacing:.02em;
}

.GalleryDetailHero__text {
    margin:21px 0 0;
    color:#566b76;
    font-size:13px;
    line-height:1.95;
}

.GalleryDetailHero__meta {
    display:flex;
    flex-wrap:wrap;
    gap:8px 16px;
    margin-top:23px;
    padding-top:15px;
    border-top:1px solid rgba(110,157,184,.2);
    color:#7c8d96;
    font-size:6.5px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.14em;
}

.GalleryDetailHero__visual {
    position:relative;
    width:100%;
    padding:13px 14px 0 0;
}

.GalleryDetailHero__visual::before {
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:84%;
    height:88%;
    border:1px solid rgba(110,157,184,.19);
    background:rgba(255,255,255,.24);
}

.GalleryDetailHero__figure {
    position:relative;
    z-index:1;
    margin:0;
    overflow:hidden;
    background:#eaf1f4;
    box-shadow:0 16px 34px rgba(24,50,71,.09);
}

.GalleryDetailHero__figure::after {
    content:"";
    position:absolute;
    inset:0;
    border:1px solid rgba(255,255,255,.5);
    pointer-events:none;
}

.GalleryDetailHero__figure img {
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:4/5;
    object-fit:cover;
}

.GalleryDetailHero__figure figcaption {
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:16px;
    padding:38px 16px 14px;
    color:#fff;
    background:linear-gradient(180deg,transparent,rgba(12,32,46,.46));
}

.GalleryDetailHero__figure figcaption span {
    font-size:6px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.15em;
}

.GalleryDetailHero__figure figcaption b {
    font-family:Georgia,"Times New Roman",serif;
    font-size:28px;
    font-weight:400;
    line-height:.8;
}

.GalleryDetailHero__placeholder {
    position:relative;
    z-index:1;
    min-height:390px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:28px 24px;
    border:1px solid rgba(110,157,184,.2);
    background:rgba(255,255,255,.5);
}

.GalleryDetailHero__placeholder span {
    color:var(--gallery-blue);
    font-size:7px;
    font-weight:600;
    letter-spacing:.18em;
}

.GalleryDetailHero__placeholder strong {
    color:rgba(24,50,71,.13);
    font-family:Georgia,"Times New Roman",serif;
    font-size:54px;
    font-weight:400;
    line-height:.88;
}

/* VISUAL STORY ----------------------------------------- */
.GalleryDetailStory {
    padding:70px 0 78px;
    background:#fff;
}

.GalleryDetailStory__head {
    display:block;
    margin-bottom:38px;
}

.GalleryDetailStory__head h2 {
    margin:0;
    color:var(--gallery-navy);
    font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
    font-size:27px;
    font-weight:500;
    line-height:1.65;
    letter-spacing:.02em;
}

.GalleryDetailStory__head > p {
    margin:16px 0 0;
    padding:0;
    color:var(--gallery-muted);
    font-size:13px;
    line-height:1.9;
}

.GalleryDetailStory__grid {
    display:grid;
    grid-template-columns:1fr;
    gap:48px;
}

.GalleryDetailMedia,
.GalleryDetailMedia--wide,
.GalleryDetailMedia--offset {
    grid-column:auto;
    width:100%;
    margin:0;
}

.GalleryDetailMedia__image {
    position:relative;
    overflow:hidden;
    background:#eef4f6;
}

.GalleryDetailMedia__image::after {
    content:"";
    position:absolute;
    inset:0;
    border:1px solid rgba(24,50,71,.055);
    pointer-events:none;
}

.GalleryDetailMedia__image img,
.GalleryDetailMedia:not(.GalleryDetailMedia--wide):not(.GalleryDetailMedia--offset) .GalleryDetailMedia__image img,
.GalleryDetailMedia--wide .GalleryDetailMedia__image img,
.GalleryDetailMedia--offset .GalleryDetailMedia__image img {
    display:block;
    width:100%;
    height:auto;
    max-height:none;
    aspect-ratio:4/5;
    object-fit:cover;
}

.GalleryDetailMedia:nth-child(3n+1) .GalleryDetailMedia__image img {
    aspect-ratio:16/11;
}

.GalleryDetailMedia figcaption {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding-top:11px;
    color:#87979f;
}

.GalleryDetailMedia figcaption span {
    color:var(--gallery-blue);
    font-family:Georgia,"Times New Roman",serif;
    font-size:9.5px;
}

.GalleryDetailMedia figcaption small {
    font-size:6px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.14em;
}

/* DETAIL NAVIGATION ------------------------------------ */
.GalleryDetailNavigation {
    padding:64px 0 72px;
    border-top:1px solid #d5e0e6;
    background:linear-gradient(180deg,#faf9f6 0%,#f7f7f3 100%);
}

.GalleryDetailNavigation__top {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:20px;
    padding-bottom:17px;
    border-bottom:1px solid rgba(24,50,71,.11);
}

.GalleryDetailNavigation__top .GalleryEyebrow {
    margin:0;
}

.GalleryDetailNavigation__back {
    display:inline-flex;
    min-height:38px;
    flex:0 0 auto;
    align-items:center;
    gap:8px;
    padding:0 13px;
    border:1px solid rgba(24,50,71,.20);
    border-radius:999px;
    color:var(--gallery-navy);
    background:#fff;
    text-decoration:none;
    box-shadow:0 6px 16px rgba(24,50,71,.04);
}

.GalleryDetailNavigation__back span {
    color:#5e91ac;
    font-size:13px;
    font-weight:600;
}

.GalleryDetailNavigation__back strong {
    color:var(--gallery-navy);
    font-size:6.8px;
    font-weight:700;
    line-height:1;
    letter-spacing:.12em;
}

.GalleryDetailNavigation__grid {
    display:grid;
    grid-template-columns:1fr;
    gap:1px;
    overflow:hidden;
    background:#cedbe2;
    border:1px solid #cedbe2;
    box-shadow:0 10px 24px rgba(24,50,71,.045);
}

.GalleryDetailNavigation__item,
.GalleryDetailNavigation__item--next {
    position:relative;
    min-height:126px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:24px 58px 24px 22px;
    color:var(--gallery-navy);
    background:#fff;
    text-align:left;
    text-decoration:none;
}

.GalleryDetailNavigation__item small {
    margin-bottom:9px;
    color:#5f91ad;
    font-size:6.5px;
    font-weight:700;
    line-height:1.4;
    letter-spacing:.15em;
}

.GalleryDetailNavigation__item strong {
    max-width:calc(100% - 4px);
    font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
    font-size:16px;
    font-weight:500;
    line-height:1.65;
    letter-spacing:.02em;
}

.GalleryDetailNavigation__item > span,
.GalleryDetailNavigation__item--next > span {
    position:absolute;
    left:auto;
    right:18px;
    top:50%;
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border:1px solid rgba(110,157,184,.30);
    border-radius:50%;
    color:#4f819c;
    background:#f5fafc;
    font-size:15px;
    font-weight:600;
    transform:translateY(-50%);
}

/* EMPTY ------------------------------------------------- */
.GalleryDetailEmpty {
    min-height:520px;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at 82% 18%,rgba(110,157,184,.09),transparent 30%),
        linear-gradient(135deg,#fbfaf7,#eef5f8);
}

.GalleryDetailEmpty__inner {
    padding:88px 0;
    text-align:center;
}

.GalleryDetailEmpty h1 {
    margin:0;
    color:var(--gallery-navy);
    font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
    font-size:28px;
    font-weight:500;
    line-height:1.65;
    letter-spacing:.02em;
}

.GalleryDetailEmpty__inner > p:not(.GalleryEyebrow) {
    margin:20px 0 28px;
    color:var(--gallery-muted);
    font-size:13px;
    line-height:1.95;
}

/* Closing buttons: preserve contrast on dark background. */
.GalleryClosing__actions .iaso-button {
    width:100%;
}

.GalleryClosing__actions .iaso-button--primary,
.GalleryClosing__actions .iaso-button--primary:visited {
    color:#fff;
    background:#6e9db8;
    border-color:#6e9db8;
    box-shadow:0 9px 22px rgba(0,0,0,.09);
}

.GalleryClosing__actions .iaso-button--secondary,
.GalleryClosing__actions .iaso-button--secondary:visited {
    color:#fff;
    background:transparent;
    border-color:rgba(255,255,255,.56);
}

/* SMALL SP DETAIL -------------------------------------- */
@media screen and (max-width:390px) {
    .GalleryDetailHero__inner {
        padding-top:82px;
    }

    .GalleryDetailHero h1 {
        font-size:26px;
    }

    .GalleryDetailHero__text {
        font-size:12.5px;
    }

    .GalleryDetailHero__figure img {
        aspect-ratio:4/5.2;
    }

    .GalleryDetailHero__placeholder {
        min-height:370px;
    }

    .GalleryDetailHero__placeholder strong {
        font-size:50px;
    }

    .GalleryDetailStory {
        padding:64px 0 72px;
    }

    .GalleryDetailStory__head h2 {
        font-size:26px;
    }

    .GalleryDetailStory__grid {
        gap:44px;
    }

    .GalleryDetailNavigation {
        padding:58px 0 66px;
    }

    .GalleryDetailNavigation__top {
        gap:10px;
    }

    .GalleryDetailNavigation__back {
        min-height:36px;
        padding:0 11px;
    }

    .GalleryDetailNavigation__back strong {
        font-size:6.3px;
    }

    .GalleryDetailNavigation__item,
    .GalleryDetailNavigation__item--next {
        min-height:120px;
        padding:22px 54px 22px 19px;
    }

    .GalleryDetailNavigation__item strong {
        font-size:15px;
    }

    .GalleryDetailNavigation__item > span,
    .GalleryDetailNavigation__item--next > span {
        right:16px;
        width:32px;
        height:32px;
        font-size:14px;
    }

    .GalleryDetailEmpty {
        min-height:550px;
    }

    .GalleryDetailEmpty h1 {
        font-size:26px;
    }
}

