@charset "utf-8";

/* ========================================================
カスタムプロパティ
======================================================== */
:root {
    --main-color: #8c92bb;
    --main-color-hover: #a3a9cf;
}

/* ========================================================
共通
======================================================== */
html {
    scroll-behavior: smooth;
}
body {
    font-family:
    "Yu Mincho", "游明朝",
    "Hiragino Mincho ProN", "ヒラギノ明朝 ProN",
    "MS Mincho", "MS 明朝",
    Georgia, serif;
    font-size: 14px;
}
.space-bottom-small {
    margin-bottom: 20px;
}
.space-bottom-medium {
    margin-bottom: 30px;
}
.space-bottom-large {
    margin-bottom: 40px;
}
.inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.pc-only {
    display: none;
}
.btn {
    background-color: var(--main-color);
    color: #fff;
    display: inline-block;
    text-align: center;
}
.section {
    scroll-margin-top: 20px;
    margin-bottom: 50px;
}
.section-header {
    margin-bottom: 40px;
}
.section-title {
    margin-bottom: 15px;
}

/* ========================================================
header
======================================================== */
header {
    height: 100vh;
    text-align: center;
}
.header-inner {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.main-title {
    width: 70px;
    height: auto;
}
.logo {
    width: 225px;
    height: auto;
}

/* ========================================================
main
======================================================== */
/* ====================
nav
==================== */
nav {
    margin-bottom: 50px;
}
nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}
/* ====================
movie
==================== */
.section-sub-title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    margin-bottom: 5px;
}
.section-sub-title::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #333;
    position: absolute;
    left: 0;
    bottom: 1px;
}
.section-sub-title::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #333;
    position: absolute;
    left: 0;
    bottom: 4px;
}
/* 映画情報 */
.movie-item:not(:last-child) {
    margin-bottom: 50px;
}
.movie-title-area {
    position: relative;
}
.alphabet {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: auto;
    z-index: 10;
}
.movie-title {
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 10px;
    padding-left: 80px;
    min-height: calc(1.2em * 2);
    display: flex;
    align-items: center;
}
.movie-title span {
    font-size: 15px;
    display: contents;
}
.movie-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.movie-image img {
    width: 100%;
    height: auto;
}
.main-image-area {
    margin-bottom: 5px;
}
.trailer-btn {
    display: block;
    padding: 8px 16px;
    background-color: #000;
    text-align: center;
    color: #fff;
    text-decoration: none;
}
.movie-text-top {
    margin-bottom: 20px;
}
.movie-text-main {
    font-size: 17px;
    margin-bottom: 10px;
}
.movie-text-sub {
    margin-bottom: 10px;
}
.movie-text-extra-top {
    text-decoration: underline;
    text-underline-offset: 5px;
    font-size: 16px;
}
.credits-table {
    width: auto;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.credits-table td:nth-child(1) {
    white-space: nowrap;
    padding-right: 10px;
}
.movie-details {
    margin-bottom: 25px;
}
.movie-copyrights {
    font-size: 12px;
    margin-bottom: 30px;
}
.movie-text-extra-bottom {
    margin-bottom: 5px;
    font-size: 15px;
}
.btn-reserve {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 10px;
}

/* ====================
schedule
==================== */
.schedule-table-wrapper {
    position: relative;
}
.schedule-table-area {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ccc;
}
.schedule-table {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
}
.schedule-table thead {
    display: none;
}
.schedule-table tbody {
    display: block;
}
.schedule-table tbody tr {
    display: block;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
}
.schedule-table th,
.schedule-table td {
    text-align: left;
    padding: 7px 0;
}
.schedule-table th {
    font-weight: 400;
    color: #757575;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.schedule-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: #fff;
}
.schedule-table td[data-title]::before {
    content: attr(data-title);
    font-weight: 400;
    font-size: 14px;
    color: #757575;
}
.schedule-table td[data-title="Date"] {
    font-weight: bold;
    font-size: 16px;
}
.schedule-btn {
    padding: 7px 10px;
}
.date-start {
    border-top: 1px solid #e0e0e0;
}
.date-start + .date-odd,
.date-odd + .date-odd,
.date-start + .date-even,
.date-even + .date-even {
    border-top: none;
}
.date-start:not(:first-child):not(.first-visible-date) {
    margin-top: 30px;
}
/* スクロールヒント */
#scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
    z-index: 10;
    opacity: 1;
    animation: floatUpDown 1.6s ease-in-out infinite;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    visibility: visible;
}
#scroll-hint span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #adadad;;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    color: #666;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}
#scroll-hint.hidden {
    opacity: 0;
    visibility: hidden;
}
@keyframes floatUpDown {
    0%,  100% { transform: translateY(0px); }
    50%        { transform: translateY(-5px); }
}

/* ====================
about
==================== */
/* 映画館までの道程 */
.google-map {
    width: 100%;
    height: 400px;
    border: none;
    margin-bottom: 20px;
}
.address-area {
    margin-bottom: 20px;
}
.address {
    font-size: 16px;
}
.speech-bubble-area {
    text-align: center;
}
.speech-bubble-area img {
    width: 60%;
    max-width: 311px;
    height: auto;
}
/* 料金と年間パス */
.price-area dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.price-area dt {
    width: 50%;
}
.price-area dd {
    width: 50%;
}
.price-area dt:first-child,
.price-area dd:first-child {
    margin-bottom: 10px;
}
.price-area dl + p {
    margin-bottom: 45px;
}
.members-card-area {
    text-align: center;
}
.members-card-area img {
    width: 80%;
    max-width: 242px;
    height: auto;
    transform: rotate(10deg);
    transform-origin: center center;
}
/* 施設について */
.facility-image-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.facility-image-group {
    display: contents;
}
.facility-image-area img {
    width: 100%;
    height: auto;
}
.menu {
    margin-bottom: 30px;
}
.menu-title {
    font-size: 13px;
    margin-bottom: 12px;
}
.menu dl {
    display: flex;
    flex-wrap: wrap;
}
.menu dt {
    width: 50%;
}
.menu dt:not(:last-child) {
    margin-bottom: 10px;
}
.menu dd {
    width: 50%;
}
.okuizumi {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #333333;
}
.okuizumi p {
    margin-bottom: 10px;
}
.okuizumi p {
    margin-bottom: 10px;
}
.illust-area {
    text-align: center;
}
.to-instagram-okuizumi img {
    width: 35%;
    height: auto;
}
.to-instagram-lcq img {
    width: 50%;
    height: auto;
}

/* ====================
archive
==================== */
.archive-btn {
    display: block;
    padding: 8px 16px;
    background-color: #000;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

/* ====================
footer
==================== */
footer {
    text-align: center;
}
footer .inner {
    display: contents;
}
.contact-area {
    background-color: var(--main-color);
    text-align: center;
    padding: 30px 0;
}
.contact-link {
    color: #fff;
}
.privacy-policy-link {
    margin-top: 30px;
}
.copyright {
    margin: 30px 0;
}

/* ========================================================
アーカイブ
======================================================== */
.archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
    /* position:relative / height は JS が付与 */
}
.archive-item {
    box-sizing: border-box;
}
.archive-item > img,
.archive-item > .vertically > img {
    display: block;
    width: 100%;
    height: auto;
}
/* 縦長画像 */
.vertically {
    width: 100%;/* JSが設定するアイテム幅（230px）に追従 */
    height: 320px;
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.vertically img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ========================================================
プライバシーポリシー
======================================================== */
.privacy .section-sub-title {
    margin-bottom: 20px;
}
.privacy .section-sub-title + p {
    line-height: 1.9;
}
.privacy-policy {
    width: 100%;
}
.privacy-article {
    margin-bottom: 30px;
}
.privacy-article-title {
    font-size: 14px;
    font-weight: bold;
    padding: 8px 12px;
    margin-bottom: 14px;
    border-left: 4px solid var(--main-color);
}
.privacy-article-body {
    line-height: 1.9;
    margin-bottom: 10px;
}
.privacy-list {
    counter-reset: privacy-list-counter;
}
.privacy-list > li {
    position: relative;
    padding-left: 2em;
    line-height: 1.9;
    margin-bottom: 5px;
    counter-increment: privacy-list-counter;
}
.privacy-list > li::before {
    content: counter(privacy-list-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    min-width: 1.8em;
}
.privacy-list--nested {
    margin: 8px 0 4px 1em;
    counter-reset: privacy-nested1-counter;
}
.privacy-list--nested > li {
    padding-left: 2em;
    counter-increment: privacy-nested1-counter;
}
.privacy-list--nested > li::before {
    content: counter(privacy-nested1-counter) ".";
    font-weight: bold;
    min-width: 1.8em;
}
.privacy-list--nested2 {
    margin: 6px 0 4px 1em;
    counter-reset: privacy-nested2-counter;
}
.privacy-list--nested2 > li {
    padding-left: 2em;
    counter-increment: privacy-nested2-counter;
}
.privacy-list--nested2 > li::before {
    content: counter(privacy-nested2-counter) ".";
    font-weight: bold;
    font-size: inherit;
    top: 0;
    min-width: 1.8em;
}
.privacy-numbered-list {
    counter-reset: privacy-clause-counter;
}
.privacy-numbered-list > li {
    position: relative;
    padding-left: 2em;
    line-height: 1.9;
    margin-bottom: 10px;
    counter-increment: privacy-clause-counter;
}
.privacy-numbered-list > li::before {
    content: counter(privacy-clause-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    min-width: 1.8em;
}
.privacy-contact-row {
    display: flex;
    gap: 0;
    padding: 7px 0;
}
.privacy-contact-label {
    min-width: 70px;
    font-size: 13px;
    flex-shrink: 0;
}
.privacy-contact-label::after {
    content: "：";
}
.privacy-contact-value {
    flex: 1;
}
.privacy-closing {
    text-align: right;
    margin-top: 24px;
    font-size: 13px;
}


/* =====================================================================
@media print, screen and (min-width: 1000px)
===================================================================== */
@media print, screen and (min-width: 1000px) {

    /* ========================================================
    共通
    ======================================================== */
    body {
        font-size: 16px;
    }
    .space-bottom-small {
        margin-bottom: 30px;
    }
    .space-bottom-medium {
        margin-bottom: 40px;
    }
    .space-bottom-large {
        margin-bottom: 50px;
    }
    .pc-only {
        display: inline;
    }
    .section {
        scroll-margin-top: 50px;
        margin-bottom: 120px;
        position: relative;
    }
    .section .inner {
        position: relative;
        width: 100%;
    }
    .section-header {
        margin-bottom: 65px;
    }
    .section-title {
        font-size: 22px;
    }
    .text-link {
        color: transparent;
        background: linear-gradient(to right, var(--main-color) 50%, #000 50%) 100%;
        background-clip: text;
        background-size: 200% 100%;
        transition: background-position 0.3s;
    }
    .text-link:hover {
        background-position: 0 100%;
    }

    /* ========================================================
    header
    ======================================================== */
    .header-inner {
        gap: 95px;
    }
    .main-title {
        width: 70px;
    }
    .logo {
        width: 280px;
    }

    /* ========================================================
    main
    ======================================================== */
    /* ====================
    nav
    ==================== */
    nav {
        margin-bottom: 80px;
    }
    nav ul {
        gap: 30px;
    }
    /* ====================
    movie
    ==================== */
    #movie .section-header {
        margin-bottom: 120px;
    }
    .section-sub-title {
        font-size: 40px;
        letter-spacing: 6px;
        margin-bottom: 10px;
    }
    .section-sub-title + p {
        font-size: 18px;
    }
    .movie-item:not(:last-child) {
        margin-bottom: 130px;
    }
    .alphabet-a {
        width: 186px;
        top: -34px;
        left: -30px;
    }
    .alphabet-b {
        width: 164px;
        top: -25px;
        left: -20px;
    }
    .alphabet-c {
        width: 163px;
        top: -18px;
        left: -16px;
    }
    .alphabet-d {
        width: 208px;
        top: -17px;
        left: -40px;
    }
    .movie-title {
        font-size: 38px;
        line-height: 1.4;
        letter-spacing: 6px;
        margin-bottom: 30px;
        padding-left: 216px;
        min-height: calc(1.4em * 2);
    }
    .movie-title:has(span) {
        min-height: calc(1.2em * 2);
        line-height: 1.2;
    }
    .movie-title span {
        font-size: 26px;
    }
    .movie-info {
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
    }
    .movie-image {
        width: 450px;
    }
    .main-image-area {
        width: 450px;
        height: 600px;
        margin-bottom: 10px;
        background-color: #e6e6e6;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .movie-image a {
        transition: opacity 0.3s;
    }
    .movie-image a:hover {
        opacity: 0.7;
    }
    .main-image-area img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }
    .trailer-btn {
        font-size: 20px;
    }
    .movie-text {
        width: 520px;
    }
    .movie-text-top {
        margin-bottom: 30px;
    }
    .movie-text-main {
        font-size: 22px;
        margin-bottom:  30px;
    }
    .movie-text-sub {
        margin-bottom: 20px;
    }
    .credits-table td,
    .movie-details li {
        font-size: 14px;
    }
    .movie-copyrights {
        font-size: 13px;
    }
    .movie-text-extra-bottom {
        font-size: 16px;
    }
    .btn-reserve {
        font-size: 18px;
        padding: 12px 0;
        transition: opacity 0.3s;
    }
    .btn-reserve:hover {
        opacity: 0.8;
    }

    /* ====================
    schedule
    ==================== */
    .schedule-table-area {
        max-height: 600px;
    }
    .schedule-table th {
        position: sticky;
        top: 0;
        z-index: 10;
        background-color: #fff;
    }
    .schedule-table th:last-child {
        text-align: center;
        width: 200px;
    }
    .schedule-table > thead {
        display: table-header-group;
    }
    .schedule-table > tbody {
        display: table-row-group;
    }
    .schedule-table > tbody > tr {
        display: table-row;
        border: none;
    }
    .schedule-table th,
    .schedule-table td {
        padding: 22px 20px;
    }
    .schedule-table td {
        display: table-cell;
        padding: 12px 20px;
    }
    .schedule-table td[data-title="Day-of-week"],
    .schedule-table td[data-title="Reserve"] {
        text-align: center;
    }
    .schedule-table td[data-title]::before {
        display: none;
    }
    .schedule-table td {
        background-color: #f6f6f6;
    }
    .schedule-table tr.date-even td {
        background-color: #fbfbfb;
    }
    .schedule-table tr:hover td {
        background-color: #e2e2e2;
    }
    .schedule-table tr:not(.date-start) td[data-title="Date"],
    .schedule-table tr:not(.date-start) td[data-title="Day-of-week"] {
        color: transparent;
    }
    .schedule-btn {
        padding: 10px;
        transition: opacity 0.3s;
    }
    .schedule-btn:hover {
        opacity: 0.8;
    }
    /* スクロールヒント */
    #scroll-hint {
        bottom: 50px;
    }
    #scroll-hint span {
        border-radius: 50px;
        padding: 10px 20px;
        font-size: 15px;
    }

    /* ====================
    about
    ==================== */
    /* 映画館までの道程 */
    .map-area {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }
    .google-map {
        flex: 1;
        margin-bottom: 0;
    }
    .address-area {
        margin-bottom: 5px;
    }
    .address {
        font-size: 21px;
        letter-spacing: 3px;
        margin-top: 5px;
    }
    .speech-bubble-area img {
        width: 311px;
        transition: transform 0.2s ease;
    }
    .speech-bubble-area img:hover {
        transform: translateY(-6px);
    }
    /* 料金と年間パス */
    .price-area {
        position: relative;
    }
    .price-area dl {
        margin-bottom: 10px;
        font-size: 24px;
        letter-spacing: 3px;
    }
    .price-area dt {
        width: 30%;
    }
    .price-area dd {
        width: 70%;
    }
    .price-area dt:first-child,
    .price-area dd:first-child {
        margin-bottom: 15px;
    }
    .price-area dl + p {
        margin-bottom: 0;
        font-size: 18px;
        letter-spacing: 4px;
    }
    .members-card-area {
        position: absolute;
        top: -80px;
        left: 466px;
    }
    .members-card-area img {
        width: 262px;
    }
    /* 施設について */
    .facility-image-area {
        margin-bottom: 55px;
    }
    .facility-image-group {
        display: flex;
        justify-content: space-between;
    }
    .facility-image-group img {
        width: 490px;
    }
    .menu {
        margin-bottom: 40px;
    }
    .menu-title {
        font-size: 17px;
        margin-bottom: 15px;
        letter-spacing: 3px;
    }
    .menu dl {
        font-size: 24px;
        letter-spacing: 3px;
    }
    .menu dt {
        width: 40%;
    }
    .menu dt:not(:last-child) {
        margin-bottom: 13px;
    }
    .menu dd {
        width: 60%;
    }
    .okuizumi {
        display: inline-flex;
        flex-direction: row;
        gap: 40px;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .okuizumi p {
        margin-bottom: 15px;
        font-size: 20px;
        letter-spacing: 3px;
        line-height: 1.8;
    }
    .okuizumi .text-link {
        font-size: 17px;
        letter-spacing: 2px;
    }
    .to-instagram-okuizumi img {
        width: 170px;
        transition: transform 0.2s ease;
    }
    .to-instagram-okuizumi img:hover {
        transform: rotate(-4deg);
    }
    .to-instagram-lcq {
        position: absolute;
        bottom: -145px;
        right: 65px;
    }
    .to-instagram-lcq img {
        width: 356px;
        transition: transform 0.2s ease;
    }
    .to-instagram-lcq img:hover {
        transform: rotate(4deg);
    }

    /* ====================
    archive
    ==================== */
    .archive-item > .vertically > img {
        height: 100%;
        /* width: auto; */
        max-width: 320px;
    }
    .archive-btn {
        display: inline-block;
        font-size: 20px;
        padding: 8px 40px;
        transition: opacity 0.3s;
    }
    .archive-btn:hover {
        opacity: 0.7;
    }

    /* ====================
    footer
    ==================== */
    footer .inner {
        display: block;
        text-align: left;
    }
    .contact-area {
        padding: 40px 0;
    }
    .contact-link {
        color: transparent;
        background: linear-gradient(to right,  #000 50%, #ffffff 50%) 100%;
        background-clip: text;
        background-size: 200% 100%;
        transition: background-position 0.3s;
    }
    .contact-link:hover {
        background-position: 0 100%;
    }
    .copyright-area {
        display: flex;
        justify-content: space-between;
        width: 1000px;
        margin: 40px auto 60px;
    }
    .privacy-policy-link,
    .copyright  {
        margin: 0;
        font-size: 14px;
        display: inline-block;
        flex-basis: 50%;
    }
    .privacy-policy-link {
        order: 2;
        text-align: right;
    }
    .copyright {
        order: 1;
        text-align: left;
    }

    /* ========================================================
    プライバシーポリシー
    ======================================================== */
    .privacy .section-sub-title {
        margin-bottom: 30px;
    }
    .privacy .section-sub-title + p {
        line-height: 1.8;
    }
    .privacy-article {
        margin-bottom: 50px;
    }
    .privacy-article-title {
        font-size: 17px;
        padding: 10px 16px;
        margin-bottom: 18px;
        border-left-width: 5px;
    }
    .privacy-article-body {
        line-height: 2;
        margin-bottom: 12px;
    }
    .privacy-list > li {
        font-size: 15px;
        line-height: 2;
        margin-bottom: 6px;
    }
    .privacy-list--nested {
        margin-left: 1.5em;
    }
    .privacy-list--nested > li {
        font-size: 15px;
    }
    .privacy-list--nested2 {
        margin-left: 1.5em;
    }
    .privacy-list--nested2 > li {
        font-size: 15px;
    }
    .privacy-numbered-list > li {
        font-size: 15px;
        line-height: 2;
        margin-bottom: 12px;
    }
    .privacy-contact {
        margin-top: 20px;
    }
    .privacy-contact-row {
        padding: 10px 0;
    }
    .privacy-contact-label {
        min-width: 90px;
        font-size: 15px;
    }
    .privacy-contact-value {
        font-size: 15px;
    }
    .privacy-closing {
        font-size: 14px;
    }

}