@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@500&family=Rampart+One&display=swap&text=VRCHECKPOINT123');

/* header */

.main-header {
    width: 100%;
    position: relative;
    background-color: #f8f8f8;
    height: 33vw;
    overflow: hidden;
}

@media screen and (max-width:767px) {
    .main-header {
        height: 63vw;
    }
}

.title-wrp {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    z-index: 2;
    text-align: center;
}

.title-wrp img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .title-wrp {
        width: 80%;
    }
}

.main-img-wrp {
    width: 100%;
    height: 33vw;
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
}

@media screen and (max-width: 767px) {
    .main-img-wrp {
        width: 100%;
        height: 63vw;
    }
}

.main-img-wrp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-img-wrp img.cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 767px) {

    .main-img-wrp img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.madori-illust {
    width: 80%;
    max-width: 700px;
    margin: -14em auto 2em;
}

@media screen and (max-width: 767px) {
    .madori-illust {
        margin: -8em auto 2em;
    }
}

.lead-wrp {
    text-align: center;
    padding: min(5em, 13vw) 1.5em min(4em, 10vw);
}

.lead-wrp p {
    margin-top: 1em;
    font-weight: bold;
    font-size: min(2rem, 4vw);
}

.lead-wrp .serif-title {
    display: inline-block;
    white-space: none;
    font-size: min(1.6em, 5vw);
    line-height: 1.5;
    padding: 0 1em;
    position: relative;
}

@media screen and (max-width:767px) {
    .lead-wrp .serif-title {
        position: relative;
        margin-bottom: 1em;
    }
}

.lead-wrp .serif-title::before,
.lead-wrp .serif-title::after {
    content: '';
    width: 2px;
    height: 120%;
    background-color: #222;
    position: absolute;
    top: 0;
}

.lead-wrp .serif-title::before {
    left: 0;
    rotate: -35deg;
}

.lead-wrp .serif-title::after {
    right: 0;
    rotate: 35deg;
}

.lead-wrp .note-wrp {
    margin-top: 2em;
}

.lead-wrp .note-wrp .note {
    display: inline-block;
    text-align: left;
    font-size: min(.8em, 3vw);
}

.about-point-wrp {
    padding: 1em 1.5em;
    border: 1px solid #ccc;
    width: fit-content;
    margin: 2em auto;
    border-radius: 5px;
}

p.about-point {
    background-image: url(/_assets/contents/img/icon-point-get.svg);
    background-repeat: no-repeat;
    background-size: 3em 3em;
    background-position: left top;
    padding: 1em;
    padding-left: 4em;
    text-align: left;
    font-size: min(1em, 3.5vw);
    margin: 0;
}

/* article list wrp */
.madori .tag-wrp {
    display: flex;
    flex-wrap: wrap;
    gap: .35em;
}

.madori .tag-list-wrp .tag-wrp {
    justify-content: center;
    max-width: 980px;
    margin: 0 auto 2em;
}

.madori .tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, .9);
    border: 2px solid;
    border-radius: 4px;
    padding: .35em .75em;
    font-size: min(.9em, 2.5vw);
    font-weight: bold;
}

.list-title {
    width: 100%;
    max-width: 1200px;
    margin: 4em auto 1.5em;
    font-size: min(2rem, 4vw);
    position: relative;
    border-bottom: 1px solid;
}

.list-title:first-child {

    margin: 0 auto 1.5em;
}

.article-list-wrp {
    padding: 5em 1.5em;
    background-color: #f9f9f9;
}

.article-list {
    display: grid;
    width: 100%;
    max-width: 1200px;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 1.5em;
    margin-bottom: 1.5em;
}

@media screen and (max-width:640px) {
    .article-list {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
    }
}

.bannerlink a {
    /* display: none; */
}

.article-list-wrp li.bannerlink {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 0;
}

.article-list-wrp li.new {
    overflow: hidden;
}

.article-list-wrp li.new::before {
    content: ' NEW';
    display: block;
    width: 8.5em;
    height: 8.5em;
    padding: .4em;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 1.24rem;
    font-weight: bold;
    color: #fff;
    background: var(--color-red);
    z-index: 5;
}

.article-list-wrp li .thumb {
    padding: 1em;
    background-color: #eff3f5;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-list-wrp li.wooden .thumb {
    background-color: #e7ede9;
}


.article-list-wrp li .thumb figure {
    display: block;
    width: 45%;
    margin: 0 auto;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.article-list-wrp li .thumb.holizon figure {
    width: 70%;
}


.article-list-wrp li .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.article-list-wrp li .meta {
    padding: 1.5em;
}

.article-list-wrp li .type {
    display: inline-block;
    font-size: min(.9em, 3vw);
    position: relative;
    margin: 0 0 .75em;
    background-color: #0b75c2;
    color: #fff;
    padding: .35em 1em;
    border-radius: 2em;
}

.article-list-wrp li.wooden .type {
    background-color: #23a95b;
}

.article-list-wrp li .title {
    display: block;
    font-size: min(1.8rem, 4vw);
    position: relative;
    margin: 0 0 .2em;
    color: #0b75c2;
}

.article-list-wrp li.wooden .title {
    color: #23a95b;
}

.article-list-wrp li .plan-title {
    display: block;
    font-size: min(2.2rem, 4.5vw);
    margin: 0 0 .5em;
}


.madori .article-list-wrp li .tag {
    font-size: min(1rem, 3vw);
}


/*point get note */

.point-get-note-wrp {
    display: block;
    width: 100%;
    text-align: center;
    margin: 2em auto;
    padding: 0 1em;
}

.point-get-note-wrp .point-get-note {
    display: inline-block;
    width: auto;
    max-width: 600px;
}


/*book*/

.backtotop {
    position: fixed;
    top: 7px;
    left: 10px;
    z-index: 9999;
    display: inline-block;
    background-color: #0b75c2;
    color: #fff;
    font-size: .8em;
    line-height: 1;
    padding: .9em 1.5em .75em 2em;
    position: relative;
    border-radius: 3px;
    transition: all .3s ease;
}

.backtotop::before {
    content: '';
    position: absolute;
    top: calc(50% - .3em);
    left: .75em;
    width: .5em;
    height: .5em;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: rotate(-45deg);
}

.backtotop:hover {
    background-color: #222;
}

.bannerlink-open {
    text-decoration: none;
    color: #222;
    position: relative;
    display: block;
}

.bannerlink-open::after {
    content: '';
    display: block;
    width: 1.5em;
    height: 1.5em;
    border-top: 1px solid;
    border-right: 1px solid;
    position: absolute;
    bottom: 2em;
    right: 1em;
    transform: rotate(45deg);
}




/* fix ebook default style */

@media screen and (max-width:767px) {
    ._pageHintRectClass {
        display: none !important;
    }
}

/* point get window*/
#getpoint .l-header {
    display: none;
}

#getpoint .l-footer {
    display: none;
}

#getpoint .p-header__navi-sp {
    display: none !important;
}

.page-point-get-wrp {
    width: 100%;
    padding: 0;
}

.load-getpoint-wrp {
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: #fff;
    width: 94%;
    max-width: 600px;
    min-height: 340px;
    height: auto;
    z-index: 999;
    transform: translate(-50%, -50%);
    overflow: hidden;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    /* border: 8px solid var(--color-green); */
}

@media screen and (max-width:767px) {
    .load-getpoint-wrp {
        min-height: 240px;
    }
}

.load-getpoint-wrp .loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.load-getpoint-wrp .closebtn {
    position: absolute;
    top: 1em;
    right: 1em;
    z-index: 999;
    width: 1.5em;
    height: 1.5em;
    cursor: pointer;
}

.load-getpoint-wrp .closebtn::before,
.load-getpoint-wrp .closebtn::after {
    content: '';
    width: 141%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.load-getpoint-wrp .closebtn::before {
    rotate: 45deg;
    border-top: 1px solid;
    transform-origin: left top;

}

.load-getpoint-wrp .closebtn::after {
    rotate: -45deg;
    border-bottom: 1px solid;
    transform-origin: left bottom;

}