@charset 'UTF-8';

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

*
{
    margin: 0;
}

html,
body
{
    height: 100%;
}

body
{
    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg
{
    max-width: 100%;
}

input,
button,
textarea,
select
{
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6
{
    overflow-wrap: break-word;
}

#root,
#__next
{
    isolation: isolate;
}

html
{
    font-size: 2.6666666667vw;

    scroll-padding-top: 5.4rem;
}

:root,
html,
body
{
    width: 100%;
    height: auto;

    color: #000;
    background: #fff;

    -webkit-print-color-adjust: exact;
}

body
{
    font-family: 'Noto Sans JP', 'Yu Gothic Medium', 'Yu Gothic', YuGothic, 游ゴシック体, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 1.4rem;
    font-size: max(1.4rem, 13px);
    font-weight: 400;
    line-height: 1.8;

    overflow-x: hidden;

    letter-spacing: .025em;

    background: url(../images/common/page-bg.jpg) 0 0/contain repeat;
    background-attachment: fixed;
}

img
{
    max-width: 100%;
    height: auto;

    vertical-align: bottom;
}

ul,
ol
{
    padding: 0;
}

li
{
    list-style-type: none;
}

a
{
    transition: opacity .35s;
    text-decoration: none;

    color: #000;
}

a:focus
{
    opacity: .7;
}

.ua-ie a:hover
{
    opacity: .7;
}

a:hover
{
    color: #000;
}

table
{
    border-collapse: collapse;
}

input[type=submit],
input[type=button]
{
    -webkit-box-sizing: content-box;
            box-sizing: border-box;

    cursor: pointer;

    border: none;
    border-radius: 0;

    -webkit-appearance: button;
            appearance: button;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration
{
    display: none;
}

input[type=submit]:focus,
input[type=button]:focus
{
    outline-offset: -2px;
}

button
{
    padding: 0;

    cursor: pointer;

    border: none;
    background-color: transparent;

    -webkit-appearance: none;
            appearance: none;
}

fieldset
{
    min-width: 0;
    margin: 0;
    padding: 0;

    border: 0;
}

td,
th
{
    text-align: left;
}

figcaption
{
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;

    margin-top: .5em;

    text-align: center;
}

.sp-only
{
    display: block !important;
}

.tab-pc-only
{
    display: none !important;
}

.pc-only
{
    display: none !important;
}

.carousel
{
    position: relative;

    box-sizing: border-box;
}

.carousel *,
.carousel *:before,
.carousel *:after
{
    box-sizing: inherit;
}

.carousel.is-draggable
{
    cursor: move;
    cursor: grab;
}

.carousel.is-dragging
{
    cursor: move;
    cursor: grabbing;
}

.carousel__viewport
{
    position: relative;

    overflow: hidden;

    max-width: 100%;
    max-height: 100%;
}

.carousel__track
{
    display: flex;
}

.carousel__slide
{
    position: relative;

    overflow-x: hidden;
    overflow-y: auto;

    width: var(--carousel-slide-width, 60%);
    max-width: 100%;
    padding: 1rem;

    flex: 0 0 auto;
    overscroll-behavior: contain;
}

.has-dots
{
    margin-bottom: calc(.5rem + 22px);
}

.carousel__dots
{
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    left: 0;

    display: flex;

    margin: 0 auto;
    padding: 0;

    list-style: none;

    -webkit-user-select: none;
            user-select: none;

    justify-content: center;
}

.carousel__dots .carousel__dot
{
    position: relative;

    display: block;

    width: 22px;
    height: 22px;
    margin: 0;
    padding: 0;

    cursor: pointer;
}

.carousel__dots .carousel__dot:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 8px;
    height: 8px;

    content: '';
    transition: opacity .15s ease-in-out;
    transform: translate(-50%, -50%);

    opacity: .25;
    border-radius: 50%;
    background-color: currentColor;
}

.carousel__dots .carousel__dot.is-selected:after
{
    opacity: 1;
}

.carousel__button
{
    display: flex;

    width: var(--carousel-button-width, 48px);
    height: var(--carousel-button-height, 48px);
    padding: 0;

    cursor: pointer;
    transition: opacity .15s ease;
    pointer-events: all;

    color: var(--carousel-button-color, currentColor);
    border: 0;
    border-radius: var(--carousel-button-border-radius, 50%);
    background: var(--carousel-button-bg, transparent);
    box-shadow: var(--carousel-button-shadow, none);

    justify-content: center;
    align-items: center;
}

.carousel__button.is-prev,
.carousel__button.is-next
{
    position: absolute;
    top: 50%;

    transform: translateY(-50%);
}

.carousel__button.is-prev
{
    left: 10px;
}

.carousel__button.is-next
{
    right: 10px;
}

.carousel__button[disabled]
{
    cursor: default;

    opacity: .3;
}

.carousel__button svg
{
    width: var(--carousel-button-svg-width, 50%);
    height: var(--carousel-button-svg-height, 50%);

    pointer-events: none;

    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    filter: var(--carousel-button-svg-filter, none);
}

html.with-fancybox
{
    scroll-behavior: auto;
}

body.compensate-for-scrollbar
{
    overflow: hidden !important;

    touch-action: none;
}

.fancybox__container
{
    position: fixed;
    z-index: 1050;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    box-sizing: border-box;
    margin: 0;
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);

    transform-origin: top left;

    color: var(--fancybox-color, #fff);
    outline: none;

    direction: ltr;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .4));
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after
{
    box-sizing: inherit;
}

.fancybox__container :focus
{
    outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus
{
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, .94));
}

.fancybox__backdrop
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: var(--fancybox-bg, rgba(24, 24, 27, .92));
}

.fancybox__carousel
{
    position: relative;
    z-index: 10;

    height: 100%;
    min-height: 0;

    flex: 1 1 auto;
}

.fancybox__carousel.has-dots
{
    margin-bottom: calc(.5rem + 22px);
}

.fancybox__viewport
{
    position: relative;

    overflow: visible;

    width: 100%;
    height: 100%;

    cursor: default;
}

.fancybox__track
{
    display: flex;

    height: 100%;
}

.fancybox__slide
{
    position: relative;

    display: flex;
    overflow: auto;
    flex-direction: column;

    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px 8px;

    outline: 0;

    flex: 0 0 auto;
    overscroll-behavior: contain;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px;
}

.fancybox__slide::before,
.fancybox__slide::after
{
    margin: auto;

    content: '';

    flex: 0 0 0;
}

.fancybox__content
{
    position: relative;
    z-index: 20;

    display: flex;
    flex-direction: column;

    margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
    padding: 36px;

    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);

    align-self: center;
}

.fancybox__content :focus:not(.carousel__button.is-close)
{
    outline: thin dotted;
    box-shadow: none;
}

.fancybox__caption
{
    line-height: 1.375;

    visibility: visible;

    max-width: 100%;
    margin: 0;
    padding: 1rem 0 0 0;

    cursor: auto;

    color: var(--fancybox-color, currentColor);

    align-self: center;
    flex-shrink: 0;
    overflow-wrap: anywhere;
}

.is-loading .fancybox__caption
{
    visibility: hidden;
}

.fancybox__container > .carousel__dots
{
    top: 100%;

    color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button
{
    z-index: 40;
}

.fancybox__nav .carousel__button.is-next
{
    right: 8px;
}

.fancybox__nav .carousel__button.is-prev
{
    left: 8px;
}

.carousel__button.is-close
{
    position: absolute;
    z-index: 40;
    top: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: 8px;
    right: calc(env(safe-area-inset-right, 0px) + 8px);
}

.fancybox__content > .carousel__button.is-close
{
    position: absolute;
    top: -40px;
    right: 0;

    color: var(--fancybox-color, #fff);
}

.fancybox__no-click,
.fancybox__no-click button
{
    pointer-events: none;
}

.fancybox__spinner
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 50px;
    height: 50px;

    transform: translate(-50%, -50%);

    color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner
{
    z-index: 1053;

    cursor: pointer;
}

.fancybox__spinner svg
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;
    margin: auto;

    transform-origin: center center;
    animation: fancybox-rotate 2s linear infinite;
}

.fancybox__spinner svg circle
{
    animation: fancybox-dash 1.5s ease-in-out infinite;

    fill: none;
    stroke-width: 2.75;
    stroke-miterlimit: 10;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke: currentColor;
}

@keyframes fancybox-rotate
{
    100%
    {
        transform: rotate(360deg);
    }
}

@keyframes fancybox-dash
{
    0%
    {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50%
    {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100%
    {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav,
.carousel__dots,
.carousel__button.is-close
{
    opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav,
.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,
.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close
{
    animation: .15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .carousel__button.is-close
{
    animation: .15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn
{
    animation: .15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut
{
    animation: .1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp
{
    animation: .2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown
{
    animation: .15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp
{
    animation: .15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown
{
    animation: .15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn
{
    from
    {
        opacity: 0;
    }

    to
    {
        opacity: 1;
    }
}

@keyframes fancybox-fadeOut
{
    to
    {
        opacity: 0;
    }
}

@keyframes fancybox-zoomInUp
{
    from
    {
        transform: scale(.97) translate3d(0, 16px, 0);

        opacity: 0;
    }

    to
    {
        transform: scale(1) translate3d(0, 0, 0);

        opacity: 1;
    }
}

@keyframes fancybox-zoomOutDown
{
    to
    {
        transform: scale(.97) translate3d(0, 16px, 0);

        opacity: 0;
    }
}

@keyframes fancybox-throwOutUp
{
    to
    {
        transform: translate3d(0, -30%, 0);

        opacity: 0;
    }
}

@keyframes fancybox-throwOutDown
{
    to
    {
        transform: translate3d(0, 30%, 0);

        opacity: 0;
    }
}

.fancybox__carousel .carousel__slide
{
    scrollbar-width: thin;
    scrollbar-color: #ccc rgba(255, 255, 255, .1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar
{
    width: 8px;
    height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track
{
    background-color: rgba(255, 255, 255, .1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb
{
    border-radius: 2px;
    background-color: #ccc;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, .2);
}

.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content
{
    cursor: move;
    cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content
{
    cursor: move;
    cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content
{
    cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content
{
    cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content
{
    cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content
{
    cursor: move;
    cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content
{
    cursor: move;
    cursor: grabbing;
}

.fancybox__image
{
    -webkit-user-select: none;
            user-select: none;
    transition: none;
    transform-origin: 0 0;
}

.has-image .fancybox__content
{
    min-height: 1px;
    padding: 0;

    background: rgba(0, 0, 0, 0);
}

.is-closing .has-image .fancybox__content
{
    overflow: visible;
}

.has-image[data-image-fit=contain]
{
    overflow: visible;

    touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content
{
    flex-direction: row;

    flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image
{
    max-width: 100%;
    max-height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}

.has-image[data-image-fit=contain-w]
{
    overflow-x: hidden;
    overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content
{
    min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image
{
    max-width: 100%;
    height: auto;
}

.has-image[data-image-fit=cover]
{
    overflow: visible;

    touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content
{
    width: 100%;
    height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image
{
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
       object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content
{
    overflow: visible;

    max-width: 100%;
    min-height: 1px;

    flex-shrink: 1;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content
{
    width: 100%;
    height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content
{
    width: 960px;
    max-width: 100%;
    height: 540px;
    max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content
{
    padding: 0;

    color: #fff;
    background: rgba(24, 24, 27, .9);
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content
{
    background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe
{
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
    background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder
{
    position: absolute;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;

    white-space: nowrap;

    border-width: 0;
}

.fancybox__thumbs
{
    position: relative;

    padding: 0 3px;

    opacity: var(--fancybox-opacity, 1);

    flex: 0 0 auto;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs
{
    animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs
{
    opacity: 0;
}

.fancybox__thumbs .carousel__slide
{
    display: flex;
    overflow: visible;

    box-sizing: content-box;
    width: var(--fancybox-thumbs-width, 96px);
    margin: 0;
    padding: 8px 3px;

    cursor: pointer;

    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    content: '';
    transition: opacity .15s ease;

    opacity: 0;
    border-width: 5px;
    border-style: solid;
    border-color: var(--fancybox-accent-color, rgba(34, 213, 233, .96));
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after
{
    opacity: .92;
}

.fancybox__thumbs .carousel__slide > *
{
    -webkit-user-select: none;
            user-select: none;
    pointer-events: none;
}

.fancybox__thumb
{
    position: relative;

    width: 100%;
    padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));

    border-radius: var(--fancybox-thumbs-border-radius, 4px);
    background-color: rgba(255, 255, 255, .1);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.fancybox__toolbar
{
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;

    display: flex;

    padding: 0;

    opacity: var(--fancybox-opacity, 1);
    background: linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, .006) 8.1%, hsla(0deg, 0%, 0%, .021) 15.5%, hsla(0deg, 0%, 0%, .046) 22.5%, hsla(0deg, 0%, 0%, .077) 29%, hsla(0deg, 0%, 0%, .114) 35.3%, hsla(0deg, 0%, 0%, .155) 41.2%, hsla(0deg, 0%, 0%, .198) 47.1%, hsla(0deg, 0%, 0%, .242) 52.9%, hsla(0deg, 0%, 0%, .285) 58.8%, hsla(0deg, 0%, 0%, .326) 64.7%, hsla(0deg, 0%, 0%, .363) 71%, hsla(0deg, 0%, 0%, .394) 77.5%, hsla(0deg, 0%, 0%, .419) 84.5%, hsla(0deg, 0%, 0%, .434) 91.9%, hsla(0deg, 0%, 0%, .44) 100%);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .4));

    touch-action: none;
    justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar
{
    animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar
{
    opacity: 0;
}

.fancybox__toolbar__items
{
    display: flex;
}

.fancybox__toolbar__items--left
{
    margin-right: auto;
}

.fancybox__toolbar__items--center
{
    position: absolute;
    left: 50%;

    transform: translateX(-50%);
}

.fancybox__toolbar__items--right
{
    margin-left: auto;
}

.fancybox__counter
{
    font-size: 17px;
    line-height: var(--carousel-button-height, 48px);

    min-width: 72px;
    padding: 0 10px;

    text-align: center;

    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress
{
    position: absolute;
    z-index: 30;
    top: 0;
    right: 0;
    left: 0;

    height: 3px;

    -webkit-user-select: none;
            user-select: none;
    transition-timing-function: linear;
    transition-property: transform;
    transform: scaleX(0);
    transform-origin: 0;

    background: var(--fancybox-accent-color, rgba(34, 213, 233, .96));
}

.fancybox__container:fullscreen::backdrop
{
    opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2)
{
    display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1)
{
    display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2)
{
    display: block;
}

.fancybox__button--slideshow g:nth-child(2)
{
    display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1)
{
    display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2)
{
    display: block;
}

.l-footer
{
    margin-top: auto;
    padding: 3.6rem 0 1.5rem;
}

.l-footer__link
{
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;

    text-align: right;
}

.l-footer__link > a
{
    line-height: 1;

    display: inline-flex;

    color: #c00;

    align-items: center;
}

.l-footer__link-text
{
    display: inline-block;

    padding: 0 .4rem;

    text-align: center;
    text-decoration: underline;

    text-underline-offset: .6rem;
}

.l-footer__link-icon
{
    margin-left: .6rem;
}

.l-hamburger
{
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;

    display: block;
    overflow: hidden;

    width: 5.4rem;
    height: 5.4rem;

    color: inherit;
}

.l-hamburger--index .l-hamburger__icon span
{
    background: rgba(255, 255, 255, .5);
}

.l-hamburger::before
{
    position: absolute;

    margin: auto;

    content: '';
    transition: opacity .25s;

    opacity: 0;
    background: rgba(255, 255, 255, .9);

    inset: 0;
}

.l-hamburger.is-change::before
{
    opacity: 1;
}

.l-hamburger__icon
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 2.5rem;
    height: 1.4rem;

    transition: left .35s ease;
    transform: translate(-50%, -50%);
}

.l-hamburger__icon span
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: .2rem;
    min-height: 2px;

    transition: .35s ease-in-out;

    background: #000;
}

.l-hamburger__icon span:nth-child(1)
{
    z-index: 1002;
    top: 0;
}

.is-open .l-hamburger__icon span:nth-child(1)
{
    top: 50%;

    transform: rotate(45deg);
}

.l-hamburger__icon span:nth-child(2)
{
    z-index: 1004;
    top: 50%;
}

.is-open .l-hamburger__icon span:nth-child(2)
{
    opacity: 0;
}

.l-hamburger__icon span:nth-child(3)
{
    z-index: 1004;
    top: 100%;
}

.is-open .l-hamburger__icon span:nth-child(3)
{
    top: 50%;

    transform: rotate(-45deg);
}

.trigger-observer
{
    position: absolute;
    top: 17.5rem;

    width: 1px;
    height: 1px;

    background: transparent;
}

.l-header
{
    position: absolute;
    top: 0;
    left: 0;
}

.l-header--index .l-header__logo
{
    display: none;
}

.l-header--index .l-header__body
{
    color: #fff;
    background: rgba(0, 0, 0, .9);
}

.l-header__container
{
    width: 100%;
    padding: 2rem 0 0 2rem;
}

.l-header__logo
{
    font-size: 1rem;

    position: relative;
    z-index: 1;

    flex-shrink: 0;
}

.l-header__logo img
{
    width: auto;
    height: 13rem;
}

.l-header__body
{
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    overflow-y: auto;

    width: 100%;
    max-height: 100svh;
    padding-bottom: 6.2rem;

    transition: opacity .45s ease;
    pointer-events: none;

    opacity: 0;
    background: rgba(255, 255, 255, .9);
}

.l-header__body.is-open
{
    pointer-events: auto;

    opacity: 1;
}

.l-main
{
    display: flex;
    flex-direction: column;

    min-height: 100svh;
    padding-top: 15rem;
}

.l-nav
{
    transition: transform .45s ease;
    transform: translateY(1rem);
}

.is-open .l-nav
{
    transition-delay: .05s;
    transform: translateY(0);
}

.l-nav__list
{
    padding: 9rem 6rem;
}

.l-nav__item
{
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 1.3rem;
    font-size: max(1.3rem, 12px);
    font-weight: 500;
}

.l-nav__item + .l-nav__item
{
    margin-top: 3.5rem;
}

.l-nav__item a
{
    transition: opacity .35s;

    color: inherit;
}

.l-nav__item a:focus
{
    opacity: .7;
}

.ua-ie .l-nav__item a:hover
{
    opacity: .7;
}

.l-nav__side
{
    display: flex;

    padding: 0 6rem;

    justify-content: space-between;
}

.l-nav__side-item
{
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 1.3rem;
    font-size: max(1.3rem, 12px);
    font-weight: 500;
}

.l-nav__side-item > a
{
    position: relative;

    padding-bottom: .8rem;

    color: inherit;
}

.l-nav__side-item > a::after
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    content: '';

    background: currentColor;
}

.l-wrapper
{
    position: relative;

    width: 100%;
}

.c-box
{
    margin-top: 3rem;
    padding: 3rem 2.4rem;

    background: rgba(255, 255, 255, .6);
}

.c-box + .c-box
{
    margin-top: 1.5rem;
}

.c-box:first-child
{
    margin-top: 0;
}

.c-box a
{
    text-decoration: underline;

    color: #630;

    text-underline-offset: .6rem;
}

.c-box a:hover
{
    text-decoration: underline;

    opacity: .8;
}

.c-container
{
    width: 100%;
    padding: 0 1.5rem;
}

.c-content
{
    padding-top: 2.5rem;
}

.c-content > :first-child
{
    margin-top: 0;
}

.c-floating-image
{
    overflow: hidden;

    margin-top: 3em;
    margin-bottom: 1.5em;
}

.c-floating-image::after
{
    display: block;
    clear: both;

    content: '';
}

.c-floating-image figure,
.c-floating-image img
{
    text-align: center;
}

.c-floating-image .left
{
    margin-bottom: 1.5em;
}

.c-floating-image .right
{
    margin-bottom: 1.5em;
}

.c-floating-image .c-text:first-of-type
{
    margin-top: 1.5em;
}

.c-list-text > li
{
    display: flex;

    align-items: baseline;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
}

.c-list-text > li::before
{
    display: inline-block;

    width: .8rem;
    height: 1rem;

    content: '';

    background: #630;

    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.c-list-text > li + li
{
    margin-top: 1.2rem;
}

.c-list-text a
{
    text-decoration: underline;

    color: #630;

    text-underline-offset: .6rem;
}

.c-note
{
    line-height: 1.8;

    margin-top: 1em;
    padding: .8em 1em;

    color: #fff;
    background: #ba2212;
}

.c-note:first-child
{
    margin-top: 0;
}

.c-page-title
{
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;

    display: flex;

    height: 6rem;
    margin-top: -6rem;
    margin-left: 11rem;
    padding: .5em 0;

    color: #630;
    border-top: 3px solid #630;

    align-items: center;
}

.c-pagination
{
    display: flex;

    margin: 3rem auto 0;

    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem .6rem;
}

.c-pagination li
{
    line-height: 1.4;

    text-align: center;
}

.c-pagination li + li
{
    padding-left: .6rem;

    border-left: 1px solid #630;
}

.c-pagination li a
{
    padding: 0 .5em;

    text-decoration: underline;

    color: #630;
}

.c-pagination li a:hover
{
    opacity: .7;
}

.c-pagination li a[href='']
{
    pointer-events: none;

    opacity: .7;
}

.c-pagination li a.is-current
{
    font-weight: 700;

    text-decoration: none;
    pointer-events: none;

    color: #000;
}

.c-row-block
{
    display: flex;

    margin-top: 1.5em;
    margin-bottom: 1.5em;

    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5em 2rem;
}

.c-row-block__col
{
    width: 100%;

    text-align: center;
}

.c-row-block img
{
    border: 3px solid #fff;
}

.c-row-block a
{
    text-decoration: underline;

    color: #630;

    text-underline-offset: .2rem;
}

.c-row-block .c-text
{
    text-align: left;
}

.c-table
{
    line-height: 1.7;

    margin-top: 3rem;
}

.c-table:first-child
{
    margin-top: 0;
}

.c-table__title
{
    font-weight: 700;

    padding: .4rem 1.2rem;

    color: #fff;
    background: #630;
}

.c-table__body
{
    padding: 1rem 1.2rem;

    background: url(../images/common/bg_white.png);
}

.c-text
{
    margin-top: .3em;

    text-indent: 1em;
}

.c-text:first-child
{
    margin-top: 0;
}

.c-text > img
{
    margin-left: -1em;
}

.c-text + .c-text
{
    margin-top: 1.5em;
}

.c-title-primary
{
    font-size: 1.8rem;
    font-size: 1.8rem;
    font-size: max(1.8rem, 16px);
    font-weight: 700;
    line-height: 1.5;

    margin-top: 2.3em;
    margin-bottom: 1.6rem;
    padding: .2em .5em .3em;

    color: #fff;
    border-radius: 3px;
    background: url(../images/common/title_bg_01.png);
}

.c-title-secondary
{
    font-size: 1.6rem;
    font-size: 1.6rem;
    font-size: max(1.6rem, 14px);
    font-weight: 700;
    line-height: 1.5;

    margin-top: 1.8em;
    margin-bottom: 1em;

    color: #630;
}

.c-title-tertiary
{
    font-size: 1.4rem;
    font-size: 1.4rem;
    font-size: max(1.4rem, 13px);
    font-weight: 700;
    line-height: 1.5;

    display: flex;

    margin-top: 1.5em;
    margin-bottom: 1em;
    padding-bottom: .5em;

    border-bottom: 1px dotted #7a4714;

    -moz-column-gap: .5em;
         column-gap: .5em;
}

.c-title-tertiary::before
{
    display: inline-block;

    width: .5rem;
    height: .7rem;
    margin-top: .5em;

    content: '';

    background: #630;

    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.p-flow
{
    max-width: 32.6rem;
    margin-top: 2em;

    margin-inline: auto;
}

.p-flow__item
{
    display: flex;
    flex-direction: column;

    align-items: center;
}

.p-flow__item + .p-flow__item
{
    margin-top: 2rem;
}

.p-flow__item::after
{
    display: block;

    width: 2.8rem;
    height: 1.8rem;
    margin-top: 2rem;

    content: '';

    background: #630;

    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.p-flow__item:last-child::after
{
    display: none;
}

.p-flow__item-image
{
    text-align: center;
}

.p-flow__item-image img
{
    border: 3px solid #fff;
}

.p-flow__item-body
{
    margin-top: .8rem;
    padding: 1rem 1.4rem;

    background: url(../images/common/bg_white.png);
}

.p-flow__item-title
{
    font-weight: 700;

    padding-bottom: .3em;

    color: #630;
    border-bottom: 1px dotted #630;
}

.p-flow__item-text
{
    margin-top: 1em;
}

.p-gallery
{
    display: flex;

    margin-top: 1.5em;
    padding: 1rem;

    background: url(../images/common/bg_white.png);

    flex-wrap: wrap;
    gap: 1rem;
}

.p-gallery__item
{
    display: flex;

    width: calc(33.333% - .6667rem);

    align-items: center;
    justify-content: center;
}

.p-gallery__item-link
{
    cursor: zoom-in;
}

.p-gallery__item-link:hover .p-gallery__item-image img
{
    border-color: #c00;
}

.p-gallery__item-image
{
    text-align: center;
}

.p-gallery__item-image img
{
    padding: 2px;

    border: 1px solid #ccc;
}

.p-gallery__item-title
{
    margin-top: .4em;

    text-align: center;
}

.p-gallery--poster .p-gallery__item
{
    flex-direction: column;

    width: calc(50% - .5rem);

    justify-content: flex-start;
}

.p-hanabi__message
{
    font-family: 'Noto Serif JP', sans-serif;

    margin: 1.5em 0;
    padding: 2.4rem;

    background: url(../images/common/bg_white.png);
}

.p-index-kv
{
    position: relative;
    z-index: 1;

    width: 100%;
    min-height: 100svh;
    padding: 5.4rem 0 4.5rem;
}

.p-index-kv__container
{
    padding: 0 1.5rem;
}

.p-index-kv__nav
{
    display: none;
}

.p-index-kv__nav-item--contact
{
    font-size: 1.3rem;
    font-size: max(1.3rem, 12px);

    margin-top: auto;
}

.p-index-kv__nav-item--contact a
{
    text-decoration: underline;

    text-underline-offset: 1rem;
}

.p-index-kv__nav-item a
{
    color: #fff;
}

.p-index-kv__title
{
    width: 15rem;
    margin: 0 auto;

    animation: fadeIn 2s forwards;
    pointer-events: none;

    opacity: 0;
}

.p-index-kv__side
{
    margin-top: 4rem;
}

.p-index-kv__youtube
{
    max-width: 700px;

    margin-inline: auto;
}

.p-index-kv__youtube-container
{
    width: 100%;

    aspect-ratio: 16/9;
}

.p-index-kv__youtube-container iframe
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}

.p-index-kv__youtube-text
{
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 500;

    margin-top: .5em;

    color: #fff;
}

.p-index-kv__banner
{
    margin-top: 3rem;

    text-align: center;

    padding-inline: 4rem;
}

.p-index-kv__banner img
{
    width: 24rem;
}

.p-index-kv__news
{
    width: 100%;
    max-width: 60rem;
    margin: 2.6rem -1.5rem 0 auto;
    padding-left: 2.5rem;
}

.p-index-kv__poster
{
    margin-top: 2.5rem;
}

.p-index-kv__slider
{
    position: fixed;
    z-index: -1;

    background: #000;

    inset: 0;
}

@keyframes fadeIn
{
    0%
    {
        opacity: 0;
    }

    100%
    {
        opacity: 1;
    }
}

.p-index-news
{
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 500;

    padding: 2rem 3rem;

    color: #fff;
    background: rgba(4, 5, 6, .5);
}

.p-index-news__item
{
    padding-bottom: 1.6rem;

    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.p-index-news__item-date
{
    font-size: 1.2rem;
    font-size: max(1.2rem, 11px);

    letter-spacing: .2em;
}

.p-index-news__item-title
{
    margin-top: .5em;
}

.p-index-news__btn
{
    font-size: 1.2rem;
    font-size: max(1.2rem, 11px);

    display: block;

    margin-top: 1.6rem;

    text-align: right;
    letter-spacing: .1em;
}

.p-index-news__btn-text
{
    display: inline-flex;

    align-items: center;
}

.p-index-news__btn-text::before
{
    display: inline-block;

    width: .5rem;
    height: .7rem;
    margin-right: .6rem;

    content: '';

    background: #fff;

    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.p-index-news a
{
    color: inherit;
}

.p-index-poster
{
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 500;

    display: flex;
    flex-direction: column;

    color: #fff;

    align-items: center;
}

.p-index-poster__image
{
    max-width: 18rem;

    margin-inline: auto;
}

.p-index-poster__body
{
    padding-top: 2.6rem;
}

.p-index-poster__title
{
    font-size: 1.3rem;
    font-size: 1.3rem;
    font-size: max(1.3rem, 12px);

    text-align: center;
}

.p-index-poster__title a
{
    text-decoration: underline;

    color: inherit;

    text-underline-offset: .6rem;
}

.p-index-poster__btn
{
    font-size: 1.2rem;
    font-size: 1.2rem;
    font-size: max(1.2rem, 11px);
    line-height: 1.739;

    display: flex;

    width: 15rem;
    height: 6.5rem;
    margin-top: 2.2rem;

    text-align: center;

    color: inherit;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 6px;

    align-items: center;
    justify-content: center;
}

.p-index-poster__btn:hover
{
    opacity: .8;
    color: inherit;
}

.p-index-slider
{
    position: fixed;

    pointer-events: none;

    background: #000;

    inset: 0;
}

.p-index-slider__item
{
    position: absolute;

    margin: 0;

    transition: opacity 2.5s ease;

    opacity: 0;

    inset: 0;
}

.p-index-slider__item img
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    transform: translate(-50%, -50%);

    -o-object-fit: cover;
       object-fit: cover;
}

.p-index-slider__item--contain-bottom img
{
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom center;
       object-position: bottom center;
}

#p-index
{
    background: #000;
}

#p-index .l-main
{
    padding-top: 0;
}

.p-library-nav
{
    position: sticky;
    z-index: 100;
    top: -2px;
    left: 0;

    width: 100%;
    padding-top: 2px;

    transition: width .25s;
}

.p-library-nav.is-stuck
{
    width: calc(100% - 3.9rem);
}

.p-library-nav.is-stuck::before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1.5rem;

    width: 1.5rem;

    content: '';

    background: rgba(255, 255, 255, .9);
}

.p-library-nav__list
{
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;

    height: 5.4rem;
    padding: 1rem 2rem;

    white-space: nowrap;

    background: rgba(255, 255, 255, .8);

    align-items: center;
}

.p-library-nav__list::-webkit-scrollbar
{
    display: none;
}

.is-stuck .p-library-nav__list
{
    background: rgba(255, 255, 255, .9);
}

.p-library-nav__list > li
{
    line-height: 1.4;

    padding: 0 1rem;

    border-left: 1px solid #630;
}

.p-library-nav__list > li:last-child
{
    border-right: 1px solid #630;
}

.p-library-nav__list a
{
    text-decoration: underline;

    color: #630;
}

.p-library-nav__list a:hover
{
    opacity: .7;
}

.p-library-nav__list a.is-current
{
    text-decoration: none;
    pointer-events: none;

    color: #000;
}

#p-library .fancybox__thumbs .carousel__slide .fancybox__thumb::after
{
    border-width: 2px;
    border-color: #fff;
}

.p-library__movie
{
    position: relative;

    margin-top: 1.5em;

    aspect-ratio: 16/9;
}

.p-library__movie iframe,
.p-library__movie video
{
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
       object-fit: cover;
}

.p-message__illust
{
    display: none;
}

.p-message__box
{
    margin-top: 0;
}

.p-message__notes
{
    line-height: 1.7;
}

.p-message__notes li
{
    padding-left: 1em;

    text-indent: -1em;
}

.p-novel__bg1
{
    background: url(../images/novel/bg_nadesiko.png) center center no-repeat fixed;
}

.p-novel__bg2
{
    background: url(../images/novel/bg_ookarakuri.png) center center no-repeat fixed;
}

.p-schedule
{
    line-height: 1.7;
}

.p-schedule__title
{
    font-weight: 700;

    padding: .4rem 1.2rem;

    color: #fff;
    background: #630;
}

.p-schedule__body
{
    padding: 1rem 1.2rem;

    background: url(../images/common/bg_white.png);
}

.p-schedule__body + .p-schedule__title
{
    margin-top: 1rem;
}

.p-schedule__detail
{
    display: flex;

    align-items: flex-start;
    flex-wrap: wrap;
}

.p-schedule__detail dt
{
    display: flex;

    width: 6em;
    padding-right: .6rem;

    flex-shrink: 0;
    -moz-column-gap: .6rem;
         column-gap: .6rem;
}

.p-schedule__detail dt::after
{
    display: block;

    height: 1px;
    margin-top: .8em;

    content: '';

    border-top: 1px dotted #7a4714;

    flex-grow: 1;
}

.p-schedule__detail dd
{
    width: calc(100% - 6em);
}

.u-text-xs
{
    font-size: 1rem;
}

.u-text-sm
{
    font-size: 1.2rem;
}

.u-text-base
{
    font-size: 1.4rem;
}

.u-text-lg
{
    font-size: 1.6rem;
}

.u-text-xl
{
    font-size: 1.8rem;
}

.u-text-2xl
{
    font-size: 2.2rem;
}

.u-text-3xl
{
    font-size: 2.8rem;
}

.u-text-4xl
{
    font-size: 3.4rem;
}

.u-text-5xl
{
    font-size: 4.6rem;
}

.u-text-6xl
{
    font-size: 6.2rem;
}

.u-italic
{
    font-style: italic;
}

.u-not-italic
{
    font-style: normal;
}

.u-font-light
{
    font-weight: 300;
}

.u-font-normal
{
    font-weight: 400;
}

.u-font-medium
{
    font-weight: 500;
}

.u-font-semibold
{
    font-weight: 600;
}

.u-font-bold
{
    font-weight: 700;
}

.u-text-left
{
    text-align: left;
}

.u-text-center
{
    text-align: center;
}

.u-text-right
{
    text-align: right;
}

.u-text-justify
{
    text-align: justify;
}

.u-text-transparent
{
    color: transparent;
}

.u-text-current
{
    color: currentColor;
}

.u-text-black
{
    color: #222;
}

.u-text-white
{
    color: #fff;
}

.u-text-gray
{
    color: #888;
}

.u-text-red
{
    color: #c00;
}

.u-text-blue
{
    color: #00c;
}

.u-bg-black
{
    background-color: #222;
}

.u-bg-white
{
    background-color: #fff;
}

.u-bg-gray-100
{
    background-color: #f4f4f4;
}

.u-bg-gray-200
{
    background-color: #e8e8e8;
}

.u-bg-gray-300
{
    background-color: #d2d2d2;
}

.u-bg-gray-400
{
    background-color: #bcbcbc;
}

.u-bg-gray-500
{
    background-color: #a6a6a6;
}

.u-bg-gray-600
{
    background-color: #909090;
}

.u-bg-gray-700
{
    background-color: #7a7a7a;
}

.u-bg-gray-800
{
    background-color: #646464;
}

.u-bg-gray-900
{
    background-color: #383838;
}

.u-bg-red-100
{
    background-color: #fff5f5;
}

.u-bg-red-200
{
    background-color: #fed7d7;
}

.u-bg-red-300
{
    background-color: #feb2b2;
}

.u-bg-red-400
{
    background-color: #fc8181;
}

.u-bg-red-500
{
    background-color: #f56565;
}

.u-bg-red-600
{
    background-color: #e53e3e;
}

.u-bg-red-700
{
    background-color: #c53030;
}

.u-bg-red-800
{
    background-color: #9b2c2c;
}

.u-bg-red-900
{
    background-color: #742a2a;
}

.u-underline
{
    text-decoration: underline;
}

.u-line-through
{
    text-decoration: line-through;
}

.u-no-underline
{
    text-decoration: none;
}

.u-align-baseline
{
    vertical-align: baseline;
}

.u-align-top
{
    vertical-align: top;
}

.u-align-middle
{
    vertical-align: middle;
}

.u-align-bottom
{
    vertical-align: bottom;
}

.u-align-text-top
{
    vertical-align: text-top;
}

.u-align-text-bottom
{
    vertical-align: text-bottom;
}

.u-opacity-0
{
    opacity: 0;
}

.u-opacity-25
{
    opacity: .25;
}

.u-opacity-50
{
    opacity: .5;
}

.u-opacity-75
{
    opacity: .75;
}

.u-opacity-100
{
    opacity: 1;
}

@media only screen and (min-width: 560px)
{
    figcaption
    {
        font-size: 1.4rem;
        font-size: max(1.4rem, 13px);
    }

    .sp-only
    {
        display: none !important;
    }

    .tab-pc-only
    {
        display: block !important;
    }

    .indent1
    {
        display: inline-block;

        text-indent: 1em;
    }

    .indent2
    {
        display: inline-block;

        text-indent: 2em;
    }

    .indent3
    {
        display: inline-block;

        text-indent: 3em;
    }

    .indent4
    {
        display: inline-block;

        text-indent: 4em;
    }

    .indent5
    {
        display: inline-block;

        text-indent: 5em;
    }

    .indent6
    {
        display: inline-block;

        text-indent: 6em;
    }

    .indent7
    {
        display: inline-block;

        text-indent: 7em;
    }

    .indent8
    {
        display: inline-block;

        text-indent: 8em;
    }

    .indent9
    {
        display: inline-block;

        text-indent: 9em;
    }

    .indent10
    {
        display: inline-block;

        text-indent: 10em;
    }

    .indent11
    {
        display: inline-block;

        text-indent: 11em;
    }

    .indent12
    {
        display: inline-block;

        text-indent: 12em;
    }

    .indent13
    {
        display: inline-block;

        text-indent: 13em;
    }

    .indent14
    {
        display: inline-block;

        text-indent: 14em;
    }

    .indent15
    {
        display: inline-block;

        text-indent: 15em;
    }

    .indent16
    {
        display: inline-block;

        text-indent: 16em;
    }

    .indent17
    {
        display: inline-block;

        text-indent: 17em;
    }

    .indent18
    {
        display: inline-block;

        text-indent: 18em;
    }

    .indent19
    {
        display: inline-block;

        text-indent: 19em;
    }

    .indent20
    {
        display: inline-block;

        text-indent: 20em;
    }

    .indent21
    {
        display: inline-block;

        text-indent: 21em;
    }

    .indent22
    {
        display: inline-block;

        text-indent: 22em;
    }

    .indent23
    {
        display: inline-block;

        text-indent: 23em;
    }

    .indent24
    {
        display: inline-block;

        text-indent: 24em;
    }

    .indent25
    {
        display: inline-block;

        text-indent: 25em;
    }

    .indent26
    {
        display: inline-block;

        text-indent: 26em;
    }

    .indent27
    {
        display: inline-block;

        text-indent: 27em;
    }

    .indent28
    {
        display: inline-block;

        text-indent: 28em;
    }

    .indent29
    {
        display: inline-block;

        text-indent: 29em;
    }

    .indent30
    {
        display: inline-block;

        text-indent: 30em;
    }

    .l-hamburger.is-change::before
    {
        display: none;
    }

    .c-box
    {
        padding: 4rem 3rem 3rem;
    }

    .c-box + .c-box
    {
        margin-top: 2rem;
    }

    .c-content
    {
        padding-top: 5rem;
    }

    .c-floating-image .left
    {
        float: left;

        margin-right: 2rem;
    }

    .c-floating-image .right
    {
        float: right;

        margin-left: 2rem;
    }

    .c-floating-image .c-text:first-of-type
    {
        margin-top: 0;
    }

    .c-pagination
    {
        margin-top: 6rem;
    }

    .c-row-block
    {
        gap: 4rem 3rem;
    }

    .c-row-block__col
    {
        width: calc(50% - 1.5rem);
    }

    .c-table
    {
        display: flex;

        flex-wrap: wrap;
    }

    .c-table__title
    {
        width: 15em;
        padding: 1.8rem 2rem;

        border-bottom: 1px dotted #ccc;
    }

    .c-table__body
    {
        width: calc(100% - 15em);
        padding: 1.8rem 2rem;

        border-bottom: 1px dotted #bababa;
    }

    .c-title-primary
    {
        padding: .3em .6em;
    }

    .p-flow
    {
        max-width: 100%;
    }

    .p-flow__item
    {
        flex-direction: row;

        flex-wrap: wrap;
        align-items: initial;
        justify-content: center;
        gap: 3rem 2rem;
    }

    .p-flow__item + .p-flow__item
    {
        margin-top: 3rem;
    }

    .p-flow__item::after
    {
        margin-top: 0;
    }

    .p-flow__item-image
    {
        width: 32rem;
    }

    .p-flow__item-body
    {
        width: calc(100% - 35rem);
        margin-top: 0;
        padding: 1.5rem;

        flex-grow: 1;
    }

    .p-flow__item-title
    {
        padding-bottom: .2em;
    }

    .p-gallery
    {
        padding: 0;

        gap: 0;
    }

    .p-gallery::after
    {
        content: '';

        border-top: 1px dotted #630;

        flex-grow: 1;
    }

    .p-gallery__item
    {
        width: 25%;
        padding: 1rem;

        border-right: 1px dotted #630;
    }

    .p-gallery__item:nth-child(4n)
    {
        border-right: none;
    }

    .p-gallery__item:nth-child(n+5)
    {
        border-top: 1px dotted #630;
    }

    .p-gallery--poster .p-gallery__item
    {
        width: 33.333%;
    }

    .p-gallery--poster .p-gallery__item:nth-child(3n)
    {
        border-right: none;
    }

    .p-gallery--poster .p-gallery__item:nth-child(4n)
    {
        border-right: 1px dotted #630;
    }

    .p-gallery--poster .p-gallery__item:nth-child(n+4)
    {
        border-top: 1px dotted #630;
    }

    .p-hanabi__message
    {
        padding: 3rem;
    }

    .p-index-kv__banner
    {
        display: flex;

        margin-top: 4rem;

        justify-content: flex-end;
        gap: 2rem;
    }

    .p-index-kv__news
    {
        margin-top: 4rem;
    }

    .p-index-kv__poster
    {
        width: 40rem;
        margin: 4rem 0 0 auto;
    }

    .p-index-poster
    {
        flex-direction: row;

        align-items: initial;
        -moz-column-gap: 2rem;
             column-gap: 2rem;
    }

    .p-index-poster__image
    {
        max-width: 16rem;
    }

    .p-index-poster__body
    {
        display: flex;
        flex-direction: column;

        padding-top: 5rem;

        flex-grow: 1;
    }

    .p-index-poster__title
    {
        text-align: left;
    }

    .p-index-poster__title a
    {
        text-underline-offset: 1rem;
    }

    .p-index-poster__btn
    {
        line-height: 1.8333;

        width: 16rem;
        height: 8rem;
        margin-top: auto;
    }

    .p-index-slider__item--contain-bottom img
    {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
    }

    .p-library-nav
    {
        position: relative;
        top: 0;

        padding-top: 0;
    }

    .p-library-nav.is-stuck
    {
        width: 100%;
    }

    .p-library-nav.is-stuck::before
    {
        display: none;
    }

    .p-library-nav__list
    {
        overflow: auto;

        height: auto;
        padding: 2rem;

        white-space: initial;

        flex-wrap: wrap;
        row-gap: 1rem;
    }

    .p-message__illust
    {
        display: block;

        width: 20%;

        flex-shrink: 0;
    }

    .p-message__illust img
    {
        border: none;
    }

    .p-message__box
    {
        width: calc(80% - 3rem);
        padding: 2rem;
    }

    .p-schedule
    {
        display: flex;

        margin-top: 1.5em;

        flex-wrap: wrap;
    }

    .p-schedule__title
    {
        width: 8em;
        padding: 1.8rem 2rem;

        text-align: right;

        border-bottom: 1px dotted #ccc;
    }

    .p-schedule__body
    {
        width: calc(100% - 8em);
        padding: 1.8rem 2rem;

        border-bottom: 1px dotted #bababa;
    }

    .p-schedule__body + .p-schedule__title
    {
        margin-top: 0;
    }

    .p-schedule__detail dt
    {
        width: 8.6em;
        padding-right: 1rem;

        -moz-column-gap: .8rem;
             column-gap: .8rem;
    }

    .p-schedule__detail dd
    {
        width: calc(100% - 8.6em);
    }
}

@media only screen and (min-width: 960px)
{
    html
    {
        font-size: .9345794393vw;
    }

    body
    {
        letter-spacing: .05em;
    }

    .pc-only
    {
        display: block !important;
    }

    .l-footer
    {
        padding: 9rem 0 20px;
    }

    .l-footer .c-container
    {
        max-width: 100%;
        padding: 0 20px;
    }

    .l-hamburger
    {
        display: none;
    }

    .l-header
    {
        position: fixed;

        overflow-y: auto;

        width: 280px;
        height: 100vh;
        max-height: 100vh;
        padding-right: 20px;

        background: rgba(255, 255, 255, .3);
    }

    .l-header--index
    {
        display: none;
    }

    .l-header__container
    {
        padding: 45px 30px;

        background: rgba(255, 255, 255, .3);
    }

    .l-header__logo
    {
        text-align: center;
    }

    .l-header__logo img
    {
        height: 275px;
    }

    .l-header__body
    {
        position: relative;

        display: block;
        overflow: visible;

        margin-top: 30px;

        pointer-events: auto;

        opacity: 1;
        border-top: 1px solid rgba(0, 0, 0, .2);
        background: transparent;
    }

    .l-main
    {
        padding-top: 7rem;
        padding-left: 280px;
    }

    .l-nav
    {
        transform: translate(0);
    }

    .l-nav__list
    {
        padding: 40px 10px 76px;
    }

    .l-nav__item
    {
        font-size: 13px;
        font-weight: 500;

        display: flex;
    }

    .l-nav__item::before
    {
        display: block;

        width: 8px;
        height: 8px;
        margin-top: .85em;
        margin-right: 12px;

        content: '';

        border-radius: 50%;
        background: #630;
    }

    .l-nav__item + .l-nav__item
    {
        margin-top: 20px;
    }

    .l-nav__item--home
    {
        display: none;
    }

    .l-nav__item--home + .l-nav__item
    {
        margin-top: 0;
    }

    .l-nav__item a
    {
        height: auto;
        padding: .2em 0;

        color: #000;
    }

    .l-nav__side
    {
        position: relative;

        display: block;

        padding: 0 10px 94px;
    }

    .l-nav__side-item
    {
        font-size: 13px;
    }

    .l-nav__info
    {
        position: absolute;
        bottom: 0;
        left: -40px;
    }

    .l-nav__info a
    {
        display: flex;

        width: 160px;
        height: 40px;
        padding-bottom: 0;

        color: #fff;
        background: #000;

        align-items: center;
        justify-content: center;
    }

    .l-nav__info a::before
    {
        display: inline-block;

        width: 5px;
        height: 7px;
        margin-right: 10px;

        content: '';

        background: #fff;

        -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
                clip-path: polygon(0 0, 0% 100%, 100% 50%);
    }

    .l-nav__info a:after
    {
        display: none;
    }

    .c-container
    {
        line-height: 2.2;

        max-width: 790px;
        padding: 0 70px;
    }

    .c-page-title
    {
        font-size: 3rem;
        font-size: max(3rem, 26px);

        display: block;

        height: auto;
        margin: 0;
        padding: 3rem 0 0;

        border-width: 5px;
    }

    .p-index-kv
    {
        max-height: 1100px;
        padding: 0 0 8rem 35rem;
    }

    .p-index-kv__container
    {
        display: flex;
        flex-direction: column;

        height: 100%;
        padding: 0;

        justify-content: flex-end;
    }

    .p-index-kv__nav
    {
        font-family: 'Noto Serif JP', sans-serif;
        font-weight: 500;

        position: absolute;
        z-index: 1;
        top: 10rem;
        left: 0;

        display: flex;
        flex-direction: column;

        width: 35rem;
        height: calc(100vh - 20rem);
        min-height: 600px;
        max-height: calc(1100px - 20rem);
        padding: 14rem 2rem 8rem 10rem;

        border-right: 1px solid rgba(255, 255, 255, .15);

        row-gap: 4rem;
    }

    .p-index-kv__title
    {
        position: absolute;
        top: 22.4rem;
        right: 0;
        left: 0;

        width: 25.1rem;
        margin: auto;
    }

    .p-index-kv__side
    {
        display: flex;
        flex-direction: column;

        max-width: 40rem;
        min-height: calc(100vh - 10rem);
        margin: 0 0 0 auto;
        padding-top: 5rem;

        justify-content: flex-end;
    }

    .p-index-kv__news
    {
        max-width: 40rem;
        margin: 4rem 0 0 auto;
        padding-left: 0;
    }

    .p-index-news
    {
        padding: 0;

        background: transparent;
    }

    .p-index-news__item-date
    {
        padding-left: .8rem;
    }

    .p-index-news__item-title
    {
        padding-right: 1em;
        padding-left: .8rem;
    }

    .p-index-news__btn
    {
        padding-left: .8rem;

        text-align: left;
    }

    #p-index .l-main
    {
        padding-left: 0;
    }

    .p-novel__bg1
    {
        position: relative;
        z-index: 1;

        background: none;
    }

    .p-novel__bg1::before
    {
        position: fixed;
        z-index: -1;
        top: 0;
        left: 280px;

        width: 100%;
        max-width: 790px;
        height: 100%;

        content: '';

        background: url(../images/novel/bg_nadesiko.png) center/contain no-repeat;
    }

    .p-novel__bg2
    {
        position: relative;
        z-index: 1;

        background: none;
    }

    .p-novel__bg2::before
    {
        position: fixed;
        z-index: -1;
        top: 0;
        left: 280px;

        width: 100%;
        max-width: 790px;
        height: 100%;

        content: '';

        background: url(../images/novel/bg_ookarakuri.png) center/contain no-repeat;
    }
}

@media all and (min-width: 1024px)
{
    .fancybox__container
    {
        --carousel-button-width: 48px;
        --carousel-button-height: 48px;
        --carousel-button-svg-width: 27px;
        --carousel-button-svg-height: 27px;
    }

    .fancybox__slide
    {
        padding: 64px 100px;
    }

    .fancybox__nav .carousel__button.is-next
    {
        right: 40px;
    }

    .fancybox__nav .carousel__button.is-prev
    {
        left: 40px;
    }

    .carousel__button.is-close
    {
        right: 40px;
    }

    .fancybox__toolbar
    {
        padding: 8px;
    }
}

@media only screen and (min-width: 1170px)
{
    html
    {
        font-size: 62.5%;
    }
}

@media (max-width: 640px)
{
    .fancybox__toolbar__items--center:not(:last-child)
    {
        display: none;
    }
}

@media only screen and (max-width: 959px) and (min-width: 560px)
{
    html
    {
        font-size: 1.0416666667vw;
    }

    .l-footer
    {
        padding: 4rem 0 2rem;
    }

    .l-hamburger
    {
        width: 70px;
        height: 70px;
    }

    .l-hamburger__icon
    {
        width: 32px;
        height: 22px;
    }

    .l-header__container
    {
        padding: 3rem 0 0 5rem;
    }

    .l-header__logo img
    {
        height: 20rem;
    }

    .l-header__body
    {
        padding-bottom: 10rem;
    }

    .l-main
    {
        padding-top: 23rem;
    }

    .l-nav__list
    {
        padding: 12rem 12vw 8rem;
    }

    .l-nav__item
    {
        font-size: 16px;
    }

    .l-nav__item a
    {
        height: 78px;
    }

    .l-nav__side
    {
        padding: 0 12vw;
    }

    .c-container
    {
        padding: 0 7.5vw;
    }

    .c-page-title
    {
        font-size: 2.8rem;
        font-size: max(2.8rem, 24px);

        height: 10rem;
        margin-top: -10rem;
        margin-left: 14rem;
    }

    .p-index-kv
    {
        padding: 10rem 0 6rem;
    }

    .p-index-kv__title
    {
        width: 25.1rem;
    }

    .p-index-kv__side
    {
        margin-top: 12rem;
    }
}

@media only screen and (min-width: 960px) and (max-width: 1170px)
{
    .p-index-kv
    {
        padding-left: 28rem;
    }

    .p-index-kv__nav
    {
        width: 28rem;
        padding-left: 6rem;
    }

    .p-index-kv__news
    {
        max-width: 32rem;
    }

    .p-index-kv__poster
    {
        width: 32rem;
        padding-right: 2rem;
    }

    .p-index-poster__body
    {
        padding-top: 3rem;
    }
}

@media (hover: hover) and (pointer: fine)
{
    a:hover
    {
        opacity: .7;
    }

    .l-nav__item a:hover
    {
        opacity: .7;
    }
}

@media print
{
    .c-container
    {
        padding: 0;
    }
}
