@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers
*/
article, aside, main, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-site-primary: #000;
  --color-site-secondary: #596064;
  --color-site-tertiary: #D6D6D6;
}

::selection {
  color: #fff;
  background-color: var(--color-site-secondary);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}
html[lang=ja] body {
  font-family: "Noto Serif JP", serif;
}
html[lang=en] body {
  font-family: "EB Garamond", "Noto Serif JP", serif;
}

body {
  font-optical-sizing: auto;
  font-size: 14px;
  line-height: 1.78;
  font-weight: 500;
  position: relative;
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
  color: var(--color-site-primary);
  text-decoration-skip: none;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}
@media print, screen and (width > 768px) {
  body {
    font-size: 18px;
  }
}
body::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/common/bg.png) no-repeat left top;
  background-size: cover;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

img {
  vertical-align: bottom;
}

@media only screen and (width <= 768px) {
  .u-use--pc {
    display: none !important;
  }
}

@media print, screen and (width > 768px) {
  .u-use--sp {
    display: none !important;
  }
}

.l-header {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  padding: 17px 20px 0 20px;
}
@media print, screen and (width > 768px) {
  .l-header {
    padding: 57px 0 0 min(3.02svw, 58px);
  }
}
.l-header.menu_open .l-header__btn__line::before {
  top: calc(50% - 1px);
  rotate: 45deg;
}
.l-header.menu_open .l-header__btn__line::after {
  bottom: 50%;
  rotate: -45deg;
}
.l-header__btn {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 46px;
  border: none;
  background-color: #000;
  column-gap: 18px;
}
@media print, screen and (width > 768px) {
  .l-header__btn {
    display: none;
  }
}
.l-header__btn__txt {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}
.l-header__btn__line {
  position: relative;
  width: 18px;
  height: 8px;
}
.l-header__btn__line::before, .l-header__btn__line::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #fff;
}
.l-header__btn__line::before {
  top: 0;
}
.l-header__btn__line::after {
  bottom: 0;
}

.l-main {
  position: relative;
  z-index: 2;
}
.l-main__inner {
  position: relative;
  z-index: 3;
  margin-top: 263px;
  padding-bottom: 1px;
  background-color: #fff;
}
.l-main__inner::before {
  position: absolute;
  top: -217px;
  left: 0;
  width: 100%;
  height: 556px;
  content: "";
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 20%, #fff 100%);
}
@media print, screen and (width > 768px) {
  .l-main__inner {
    margin-top: 1510px;
  }
  .l-main__inner::before {
    top: -1769px;
    height: 1800px;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 80%, #fff 100%);
  }
}

.l-article__inner {
  width: calc(100% - 40px);
  margin: 0 auto 80px;
}
@media print, screen and (width > 768px) {
  .l-article__inner {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}
.l-article__inner {
  container-type: inline-size;
  container-name: articleSection;
}
@media print, screen and (width > 768px) {
  .l-article__inner {
    margin-bottom: 200px;
  }
}
.l-article__section:not(:last-of-type) {
  margin-bottom: 80px;
}
@media print, screen and (width > 768px) {
  .l-article__section {
    width: min(72svw, 100%);
  }
  .l-article__section:not(:last-of-type) {
    margin-bottom: 200px;
  }
}

.l-footer {
  position: sticky;
  z-index: 3;
  top: 100svh;
  left: 0;
  width: 100%;
  padding-top: 246px;
  padding-bottom: 27px;
  background-color: #fff;
}
.l-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 206px;
  content: "";
  background: linear-gradient(#eaeaea 0%, #fff 100%);
}
@media print, screen and (width > 768px) {
  .l-footer {
    padding-top: 456px;
    padding-bottom: 117px;
  }
}
.l-footer__inner {
  margin-bottom: 194px;
}
@media print, screen and (width > 768px) {
  .l-footer__inner {
    margin-bottom: 394px;
  }
}

.c-txt {
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}
.c-txt:not(:last-child) {
  margin-bottom: 40px;
}
@media print, screen and (width > 768px) {
  .c-txt {
    font-size: 18px;
    line-height: 2.222;
  }
  .c-txt:not(:last-child) {
    margin-bottom: 50px;
  }
}

.c-link {
  position: relative;
  display: inline-block;
  padding: 0 41px 9px 0;
  text-decoration: none !important;
  color: var(--color-site-secondary);
  border-bottom: 1px solid;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}
.c-link::after {
  position: absolute;
  top: 4px;
  right: 0;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/common/icon_arrow_square.svg) no-repeat left top;
  background-size: 100%;
}
@media print, screen and (width > 768px) {
  .c-link {
    padding-right: 54px;
    padding-bottom: 10px;
    font-size: 30px;
    line-height: 1.46;
  }
  .c-link::after {
    top: 5px;
    width: 34px;
    height: 34px;
  }
}

.p-logo__link {
  display: grid;
  row-gap: 30px;
  text-decoration: none !important;
}
@media print, screen and (width > 768px) {
  .p-logo__link {
    grid-template-columns: auto 1fr;
    place-items: center start;
    gap: 0 30px;
  }
  .p-logo__link:hover .p-logo__img {
    opacity: 0.7;
  }
}
.p-logo__img {
  width: 70px;
}
@media print, screen and (width > 768px) {
  .p-logo__img {
    width: 67px;
  }
}
.p-logo__inner__img {
  width: 215px;
}
@media print, screen and (width > 768px) {
  .p-logo__inner__img {
    width: 263px;
  }
}
.p-logo__txt {
  margin-top: 9px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}
@media print, screen and (width > 768px) {
  .p-logo__txt {
    font-size: 18px;
    line-height: 1.444;
    margin: 0;
  }
}
@media only screen and (width <= 768px) {
  .p-logo:not(.p-logo--top) .p-logo__inner {
    display: grid;
  }
}
@media print, screen and (width > 768px) {
  .p-logo:not(.p-logo--top) .p-logo__txt {
    margin-left: 20px;
  }
}
.p-logo--top {
  display: grid;
  row-gap: 40px;
}
@media print, screen and (width > 768px) {
  .p-logo--top {
    place-items: center start;
    gap: 111px 0;
  }
}
.p-logo--top .p-logo__inner {
  width: 83.73svw;
  margin: auto;
  text-align: right;
}
@media print, screen and (width > 768px) {
  .p-logo--top .p-logo__inner {
    width: 37.76svw;
    margin: 0 0 0 min(2.447svw, 47px);
  }
}
.p-logo--top .p-logo__inner__img {
  width: 100% !important;
}
.p-logo--top .p-logo__txt {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.46;
}
@media print, screen and (width > 768px) {
  .p-logo--top .p-logo__txt {
    margin-top: 16px;
    font-size: min(1.56svw, 30px);
  }
}
@media print, screen and (width > 768px) {
  .p-logo--top .p-logo__img {
    width: clamp(120px, 8.385svw, 161px);
  }
}
.p-logo--stamp {
  width: 195px;
  margin: 110px auto;
}
@media print, screen and (width > 768px) {
  .p-logo--stamp {
    margin-top: 260px;
    margin-bottom: 260px;
  }
}
.p-logo--stamp__img {
  width: 100%;
}
.p-logo--official {
  text-align: center;
}
.p-logo--official__link {
  display: grid;
  place-items: center;
  width: fit-content;
  margin: auto;
  text-decoration: none !important;
}
.p-logo--official__link:hover .p-logo--official__img {
  opacity: 0.7;
}
.p-logo--official__img {
  width: 212px;
  height: auto;
}
@media print, screen and (width > 768px) {
  .p-logo--official__img {
    width: 244px;
  }
}
.p-logo--official__txt {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.444;
}
@media print, screen and (width > 768px) {
  .p-logo--official__txt {
    margin-top: 18px;
    font-size: 30px;
  }
}

.p-gnav {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
}
@media only screen and (width <= 768px) {
  .p-gnav {
    width: 100svw;
    height: 100svh;
    padding-top: 110px;
    pointer-events: none;
    opacity: 0;
    background-color: rgba(89, 96, 100, 0.7);
  }
  .menu_open .p-gnav {
    pointer-events: initial;
    opacity: 1;
  }
}
@media print, screen and (width > 768px) {
  .p-gnav {
    top: 45px;
    right: min(2.864svw, 55px);
    display: grid;
    row-gap: 50px;
  }
}
.p-gnav__global {
  display: flex;
  align-items:center;
  column-gap:0.25em;
}
.p-gnav__global::before {
  content:"";
  display:block;
  margin-right:0.5em;
  width:1em;
  aspect-ratio:1;
  background:url(../images/common/icon_global.svg) no-repeat center / contain;
  order:1;
}
.p-gnav__global::after {
  content: "／";
  order:3;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.444;
  color: var(--color-site-primary);
}
.p-gnav__global.u-use--sp {
  position:fixed;
  inset:10px 135px auto auto;
}
@media only screen and (width <= 768px) {
  .p-gnav__global {
    position: absolute;
    top: 17px;
    left: 23px;
  }
}
@media print, screen and (width > 768px) {
  .p-gnav__global {
    justify-self: end;
  }
  .p-gnav__global::after {
    font-size: 16px;
    line-height: 1.4375;
  }
}
.gnav__global__item {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.444;
}

.gnav__global__item a.active {
  text-decoration:underline;
  text-underline-offset:0.5em;
}
  .gnav__global__item a:not(.active) {
  color:#7B7B7B;
}
.p-gnav__global :nth-child(1 of .gnav__global__item) { order:2;}
.p-gnav__global :nth-child(2 of .gnav__global__item) { order:4;}
@media print, screen and (width > 768px) {
  .gnav__global__item {
    font-size: 16px;
    line-height: 1.4375;
  }
}
.p-gnav__global__txt {
  font-family: "Noto Serif JP", serif;
  position: relative;
}
.p-gnav__global__txt::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-site-primary);
}
@media only screen and (width <= 768px) {
  .p-gnav__global__txt {
    color: #fff;
  }
  .p-gnav__global__txt::after {
    background-color: #fff;
  }
}
.p-gnav__global__link {
  color: var(--color-site-secondary);
  text-decoration: none !important;
}
.p-gnav__global__link:hover {
  position: relative;
}
.p-gnav__global__link:hover::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-site-secondary);
}
.p-gnav__list {
  display: grid;
  row-gap: 33px;
}
@media print, screen and (width > 768px) {
  .p-gnav__list {
    row-gap: min(2.592svh, 28px);
  }
}
.p-gnav__item {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}
@media print, screen and (width > 768px) {
  .p-gnav__item {
    text-align: right;
    font-size: clamp(14px, 0.9375svw, 18px);
  }
  .p-gnav__item:hover .p-gnav__link, .p-gnav__item.is_current .p-gnav__link {
    color: var(--color-site-secondary);
  }
  .p-gnav__item:hover .p-gnav__link::before, .p-gnav__item.is_current .p-gnav__link::before {
    position: absolute;
    bottom: -5px;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-site-secondary);
  }
  .p-gnav__item.is_current {
    pointer-events: none;
  }
}
.p-gnav__link {
  color: #fff;
  text-decoration: none !important;
}
@media print, screen and (width > 768px) {
  .p-gnav__link {
    display: inline-block;
    position: relative;
    color: var(--color-site-primary);
  }
}

.p-jumbotron__title {
  width: calc(100% - 40px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__title {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}
.p-jumbotron__title {
  display: grid;
  padding-top: 310px;
  padding-bottom: 50px;
  font-weight: 500;
  row-gap: 9px;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__title {
    padding-top: min(22.916svw, 440px);
    padding-bottom: min(25svw, 300px);
    row-gap: 17px;
  }
}
.p-jumbotron__main {
  font-size: 30px;
  line-height: 1.4666;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__main {
    font-size: min(6.836svw, 70px);
    font-weight: 400;
  }
}
.p-jumbotron__sub {
  color: var(--color-site-secondary);
  font-size: 14px;
  line-height: 1.42;
  letter-spacing: 0.3em;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__sub {
    font-size: 22px;
  }
}
.p-jumbotron--top {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 960px;
  padding: 0 20px 44px;
}
@media only screen and (width <= 768px) {
  .p-jumbotron--top {
    display: grid;
    min-height: 630px;
    place-items: end center;
  }
}
.p-jumbotron--top__inner {
  width: 100%;
  text-align: right;
}
@media print, screen and (width > 768px) {
  .p-jumbotron--top__inner {
    position: fixed;
    right: min(2.291svw, 44px);
    bottom: min(2.083svw, 40px);
    width: min(48.281svw, 927px);
  }
}
.p-jumbotron--top__img {
  width: 100%;
}
@media print, screen and (width > 768px) {
  .p-jumbotron--top__img {
    object-fit: cover;
    object-position: center;
    /* height: 53.333svh; */
    height:50svh;
  }
}
@media print, screen and (width > 768px) and (height < 810px) {
  .p-jumbotron--top__img {
    height: 41svh;
  }
}
.p-jumbotron--top__txt {
  font-family: "Noto Serif JP", serif;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.46;
}
@media print, screen and (width > 768px) {
  .p-jumbotron--top__txt {
    margin-top: 11px;
    font-size: 18px;
    line-height: 1.44;
  }
}
.p-jumbotron--top__txt__en {
  font-family: "EB Garamond", "Noto Serif JP", serif;
}
.p-jumbotron--top__scroll {
  position: absolute;
  bottom: -114px;
  left: 20px;
  width: 33px;
  height: 198px;
}
@media print, screen and (width > 768px) {
  .p-jumbotron--top__scroll {
    bottom: -83px;
    left: min(5.572svw, 107px);
    width: 87px;
    height: 444px;
  }
}
.p-jumbotron--top__scroll__txt {
  font-family: "Noto Serif JP", serif;
  margin-left: 15px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  writing-mode: vertical-lr;
}
@media print, screen and (width > 768px) {
  .p-jumbotron--top__scroll__txt {
    margin-left: 55px;
    letter-spacing: 0.2em;
    font-size: clamp(16px, 1.041svw, 20px);
  }
}
.p-jumbotron--top__scroll__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #707070;
}
.p-jumbotron--top__scroll__line::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 43px;
  content: "";
  animation: animation 2s infinite;
  background-color: #fff;
  translate: -50% 0;
}
@keyframes animation {
  0% {
    top: 0;
  }
  100% {
    top: calc(100% - 43px);
  }
}
@media print, screen and (width > 768px) {
  .p-jumbotron--top__scroll__line::before {
    width: 3px;
    height: 97px;
  }
  @keyframes animation {
    0% {
      top: 0;
    }
    100% {
      top: calc(100% - 97px);
    }
  }
}

.p-table {
  width: 100%;
}
@media only screen and (width <= 768px) {
  .p-table {
    display: block;
  }
  .p-table * {
    display: block;
    width: 100%;
  }
}
.p-table__tr:not(:last-child) .p-table__td {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--color-site-tertiary);
}
@media print, screen and (width > 768px) {
  .p-table__tr:not(:first-child) .p-table__th, .p-table__tr:not(:first-child) .p-table__td {
    padding-top: 24px;
  }
  .p-table__tr:not(:last-child) .p-table__td {
    margin-bottom: 0;
  }
  .p-table__tr:not(:last-child) .p-table__th {
    border-bottom: 1px solid var(--color-site-tertiary);
  }
}
.p-table__th, .p-table__td {
  text-align: left;
  vertical-align: top;
  padding-bottom: 24px;
}
.p-table__th {
  font-size: 15px;
  font-weight: 400;
}
@media only screen and (width <= 768px) {
  .p-table__th {
    padding-bottom: 5px;
  }
}
@media print, screen and (width > 768px) {
  .p-table__th {
    font-size: 18px;
  }
}
.p-table__td {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}
@media print, screen and (width > 768px) {
  .p-table__td {
    font-size: 18px;
    line-height: 2.22;
  }
}
.p-table__small {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.785;
}
.p-table__news {
  width: fit-content;
  display: block;
  margin-top: 22px;
}
@media only screen and (width <= 768px) {
  .p-table__news {
    margin: 30px auto 0;
    margin-top: 30px;
  }
}

.p-intro {
  position: relative;
  z-index: 4;
  container-type: inline-size;
  container-name: introBase;
  width: 79.466svw;
  margin: auto;
  padding-top: 17px;
}
@media print, screen and (width > 768px) {
  .p-intro {
    width: min(79.166svw, 1480px);
    padding-top: 68px;
  }
}
@media print, screen and (width > 768px) {
  .p-intro__inner {
    width: 36.689cqw;
  }
}
.p-intro__hd {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.42;
}
@media print, screen and (width > 768px) {
  .p-intro__hd {
    margin-bottom: 4.391cqw;
    font-size: 3.378cqw;
    line-height: 1.44;
  }
}
.p-intro__txt {
  margin-bottom: 45px;
  font-size: 15px;
  font-weight: 600;
  line-height: 2.333;
}
@media print, screen and (width > 768px) {
  .p-intro__txt {
    margin-bottom: 95px;
    font-size: max(12px, 1.351cqw);
    line-height: 2.75;
  }
}

.p-art {
  position: relative;
  width: 89.333svw;
  margin: auto;
}
@media print, screen and (width > 768px) {
  .p-art {
    width: 670px;
  }
}
.p-art__box {
  width: 100%;
  margin: auto;
}
.p-art__box:not(:last-of-type) {
  margin-bottom: 55px;
}
@media print, screen and (width > 768px) {
  .p-art__box:not(:last-of-type) {
    margin-bottom: 150px;
  }
}
.p-art__box--03 {
  width: 69.6svw;
}
@media print, screen and (width > 768px) {
  .p-art__box--03 {
    width: 521px;
  }
}
.p-art__img {
  width: 100%;
}
.p-art__caption {
  display: block;
  position: relative;
  padding: 30px 0 10px;
  text-align: center;
  font-size: 13px;
  line-height: 1.46;
}
.p-art__caption::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(#efefef 0%, #fff 100%);
}
@media print, screen and (width > 768px) {
  .p-art__caption {
    padding-top: 28px;
    padding-bottom: 56px;
    font-size: 20px;
  }
}
.p-art__txt {
  position: relative;
  z-index: 2;
  font-weight: 400;
}
.p-art__txt__en {
  font-family: "EB Garamond", "Noto Serif JP", serif;
  font-size: 16px;
}
@media print, screen and (width > 768px) {
  .p-art__txt__en {
    font-size: 18px;
  }
}
.p-art__link {
  margin-top: 84px;
  text-align: center;
}
@media print, screen and (width > 768px) {
  .p-art__link {
    margin-top: 177px;
  }
}

.p-about {
  padding: 24px;
  background-color: #fff;
}
@media print, screen and (width > 768px) {
  .p-about {
    padding: 4.16cqw;
  }
}
.p-about__hd {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}
@media print, screen and (width > 768px) {
  .p-about__hd {
    margin-bottom: 36px;
    font-size: 20px;
    line-height: 1.65;
  }
}
.p-about__txt {
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}
@media print, screen and (width > 768px) {
  .p-about__txt {
    line-height: 2.3;
  }
}

@media print, screen and (width > 768px) {
  .p-collection {
    width: 600px;
  }
}
.p-collection__content {
  display: grid;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-site-tertiary);
  grid-template-columns: 1fr auto;
  place-items: center start;
}
.p-collection__name {
  font-size: 15px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .p-collection__name {
    font-size: 18px;
  }
}
.p-collection__small {
  font-size: 14px;
}
.p-collection__number {
  text-align: right;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.866;
}
@media print, screen and (width > 768px) {
  .p-collection__number {
    font-size: 18px;
  }
}
.p-collection__caption {
  text-align: right;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0;
}
@media print, screen and (width > 768px) {
  .p-collection__caption {
    font-size: 18px;
    font-weight: 500;
  }
}

.p-copyright {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.8;
}
@media print, screen and (width > 768px) {
  .p-copyright {
    font-size: 15px;
  }
}
