@charset "utf-8";

a:link {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}
a:visited {
    color: #000;
    text-decoration: none;
}
a:hover {
    color: #000;
    text-decoration: none;
}
a:active {
    color: #000;
    text-decoration: none;
}
body {
    font-feature-settings: 'palt';
    font-family: 'Noto Sans JP', sans-serif;
}

.is-pc {
    display: block;
}
.is-sp {
    display: none;
}
@media screen and (max-width:750px) {
    .is-pc {
        display: none;
    }
    .is-sp {
        display: block;
    }
}


/* --------------------------------------------------

Header

-------------------------------------------------- */
.header {
    display: flex;
    align-items: center;
    min-height: 60px;
}
.header__corp {
    padding-left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1;
}


/* --------------------------------------------------

Global

-------------------------------------------------- */
#global {
    display: none;
    opacity: 0;
    align-items: top;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    transition: 0.3s;
    overflow: auto;
}
#global.is-active {
    display: flex;
    opacity: 1;
    z-index: 1000;
}
#global a:link {
    color: #fff;
}
#global a:hover {
    color: #00DBB2 !important;
}
@media screen and (max-width:750px) {
    #global a:hover {
        color: #fff !important;
    }
}
#global a:visited {
    color: #fff;
}
#global a:active {
    color: #fff;
}
.global__wrap {
    width: calc( 800/1200*100vw );
    padding: 100px 20px 0 20px;
    color: #fff;
    text-align: center;
}
@media screen and (max-width:750px) {
    .global__wrap {
        width: 100%;
        padding: 100px calc(40 / 750 * 100vw) 0 calc(40 / 750 * 100vw);
        color: #fff;
        text-align: center;
    }
}
.global__tags + .global__tags {
    padding: 100px 0;
}
@media screen and (max-width:750px) {
    .global__tags + .global__tags {
        padding: calc(150 / 750 * 100vw) 0;
    }
}
.global__tags--title {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: 60px;
    font-weight: 100;
    letter-spacing: 0.04em;
}
@media screen and (max-width:750px) {
    .global__tags--title {
        font-size: calc(100 / 750 * 100vw);
    }
}
.global__tags--list {
    margin: 0;
    padding: 0;
    font-size: 0;
    list-style: none;
}
.global__tags--item {
    display: inline-block;
    margin-top: 20px;
    padding: 0 1em;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.12em;
}
@media screen and (max-width:750px) {
    .global__tags--item {
        margin-top: calc(40 / 750 * 100vw);
        font-size: calc(28 / 750 * 100vw);
    }
}
/* グローバルメニュー用ボタン */
#global__btn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    background-color: #000;
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
#global__btn:hover::after {
    box-shadow: -13px 0 0 #fff,13px 0 0 #fff,-13px -13px 0 #fff,0 -13px 0 #fff,13px -13px 0 #fff,-13px 13px 0 #fff, 0 13px 0 #fff,13px 13px 0 #fff;
}

#global__btn::after {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    background: #fff;
    display: block;
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    box-shadow: -11px 0 0 #fff,11px 0 0 #fff,-11px -11px 0 #fff,0 -11px 0 #fff,11px -11px 0 #fff,-11px 11px 0 #fff, 0 11px 0 #fff,11px 11px 0 #fff;
    transition: 0.3s;
}
#global__btn::before {
    position: absolute;
    content: '';
    box-shadow: none;
    width: 30px;
    height: 3px;
    left: 10px;
    top: 30px;
    background: #000;
    transform: rotateZ(0);
    transition: 0.3s;

}

#global__btn.is-active {
    background-color: #fff;
}
#global__btn.is-active::before {
    display: block;
    box-shadow: none;
    width: 30px;
    height: 3px;
    left: 15px;
    top: 30px;
    background: #000;
    transform: rotateZ(-45deg);

}
#global__btn.is-active::after {
    box-shadow: none;
    width: 30px;
    height: 3px;
    left: 15px;
    top: 30px;
    background: #000;
    transform: rotateZ(45deg);
}

/* --------------------------------------------------

Pagination

-------------------------------------------------- */
.pagination {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 100px 0;
    max-width: 1000px;
    list-style: none;
}
@media screen and (max-width:1200px) {
    .pagination {
        margin: 0 calc(100/1200*100vw);
    }
}
@media screen and (max-width:750px) {
    .pagination {
        margin: 0 calc(40/750*100vw);
        padding: calc(100/750*100vw) 0;
    }
}
.pagination__btn {
    position: relative;
    color: #000;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    letter-spacing: 0.07em;
}
@media screen and (max-width:750px) {
    .pagination__btn {
        font-size: calc(40/750*100vw);
        letter-spacing: 0.07em;
    }
}
.pagination__btn:not(:has(a)) {
    opacity: 0.3;
}

.btn-top a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #000000;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
}  
.btn-top a:hover::after {
    transform: scale(1, 1);
}
@media screen and (max-width:750px) {
    .btn-top a:hover::after {
        transform: scale(0, 0);
    }
}
.btn-top a:hover::after {
    visibility: visible;
    bottom: -2px;
    opacity: 1;
}
.pagination__btn:has(a):hover::before {
    width: 30px;
}
@media screen and (max-width:750px) {
    .pagination__btn:has(a):hover::before {
        width: calc( 80/750*100vw );
    }
}
.pagination__btn:has(a):hover::after {
    width: 8px;
    height: 8px;
}
@media screen and (max-width:750px) {
    .pagination__btn:has(a):hover::after {
        width: 5px;
        height: 5px;
    }
}
.btn-prev::before, .btn-prev::after, 
.btn-next::before, .btn-next::after {
    display: block;
    position: absolute;
    content: '';
    background-color: #000;
}
.pagination__btn::before {
    top: 50%;
    width: 50px;
    height: 1px;
    transform: translateY(-50%);
    transition: 0.3s;
}
@media screen and (max-width:750px) {
    .pagination__btn::before {
        width: calc( 80/750*100vw );
    }
}
.pagination__btn::after {
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    transition: 0.3s;
    transform: translateY(-50%);
}
.pagination__btn.disabled::before, .pagination__btn.disabled::after {
    display: none;
}
.btn-prev {
    padding-left: 3em;
}
@media screen and (max-width:750px) {
    .btn-prev {
        padding-left: 2.3em;
    }
}
.btn-prev::before {
    left: 0;
}
.btn-prev::after {
    left: 0;
}
.btn-next {
    padding-right: 3em;
}
@media screen and (max-width:750px) {
    .btn-next {
        padding-right: 2.3em;
    }
}
.btn-next::before {
    right: 0;
}
.btn-next::after {
    right: 0;
}


/* --------------------------------------------------

User

-------------------------------------------------- */
.footer__user {
    margin: 150px 0 0 0;
    padding: 50px 0;
    background-color: #efefef;
}
@media screen and (max-width:750px) {
    .footer__user {
        margin-top: calc( 120/750*100vw );
        padding: calc( 80/750*100vw ) 0;
    }
}
.footer__user--list {
    margin: 0 auto;
    padding: 0;
    max-width: 1000px;
    list-style-type: none;
}
@media screen and (max-width:1200px) {
    .footer__user--list {
        margin: 0 calc( 100/1200*100vw );
    }
}
.footer__user--btn {
    display: block;
    padding-top: 10px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-align: right;
}
@media screen and (max-width:750px) {
    .footer__user--btn {
        padding-top: calc( 20/750*100vw );
        font-size: calc( 24/750*100vw );
    }
}
.footer__user--btn + .footer__user--btn {
	padding-top: 0.5em;
}
@media screen and (max-width:750px) {
    .footer__user--btn + .footer__user--btn {
        padding-top: 1em;
    }
}
.footer__user--btn a {
    position: relative;
}
.footer__user--btn a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #000000;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}  
.footer__user--btn a:hover::after {
    transform: scale(1, 1);
}


/* --------------------------------------------------

Footer

-------------------------------------------------- */
.footer {
    padding: 50px 0 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.07em;
    text-align: center;
}
.footer__user--btn + .footer__user--btn {
    padding-top: 0.5em;
}
@media screen and (max-width:750px) {
    .footer__user--btn + .footer__user--btn {
        padding-top: 1em;
    }
}
.scroll__top {
    cursor: pointer;
}
.scroll__top::after {
    display: inline-block;
    content: '';
    border-right: 8px solid transparent;
    border-bottom: 20px solid #000;
    border-left: 8px solid transparent; 
    transition: 0.3s;
}
.scroll__top:hover::after {
    transform: translateY(-10px);
}
@media screen and (max-width:750px) {
    .scroll__top:hover::after {
        transform: translateY(0);
    }
}
small {
    display: block;
    padding-top: 30px;
}
@media screen and (max-width:750px) {
    small {
        padding-top: calc( 60/750*100vw );
    }
}