@charset "UTF-8";

body {
    font-family: 'Noto Serif JP', serif;
    color: rgb(28, 20, 102);
}

.alphabet {
    font-family: 'Playfair Display', serif;
}

main {
    max-width: 1200px;
    margin: 0 auto;
}

.img-80 {
    width: 80%;
}

.section-1 {
    background-color: rgb(230, 229, 229);
    width: 100%;
}

.section-2 {
    background-color: rgb(255, 255, 255);
    width: 100%;
}

.section-3 {
    background-color: rgb(230, 229, 229);
    width: 100%;
}

.section-4 {
    background-color: rgb(255, 255, 255);
    width: 100%;
}

.absolute {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

.relative {
    position: relative;
}

.sec-box {
    width: 100%;
    display: grid;
}

.sec-box-upper {
    display: grid;
    padding: 0 0.5rem;
}

.sec-box-upper-img {
    width: 80%;
}

.sec-box-upper-desc-box {
    font-size: 1rem;
    padding: 0 0 0 0.2rem;
    color: rgb(87, 87, 87);
}

.sec-box-lower {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
    padding: 0 0.5rem;
}

.sec-box-lower-title {
    grid-column-start: 1;
    grid-column-end: span 3;
}

.sec-box-lower-img-box {
    text-align: center;
}

.sec-box-lower-img {
    width: 95%;
    border-radius: 1rem;
}

.brandname {
    font-family: "Times New Roman", serif;
}

.animbase {
    position: relative;
    width: 100%;
}

.abs-correct-0:before {
    content: "";
    display: block;
    padding-top: 60%;
}

.abs-correct-1:before {
    content: "";
    display: block;
    padding-top: 145%;
}

h2 {
    font-size: 1.5rem;
}

.h2-alphabet {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

ul {
    padding-left: 0.5rem;
}

li {
    padding: 0.5rem 0 0.2rem 2.5rem;
    line-height: 1.8rem;
    list-style: none;
    background: url(../img/icon_pen.svg) left 0 top 1.3rem no-repeat;
    background-size: 2rem auto;
}

.detail-button {
    display: block;
    width: 60%;
    padding: 0.3rem;
    margin: 1rem auto 1rem auto;
    border: dotted thin rgb(87, 87, 87);
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    color: rgb(52, 52, 134);
}

.detail-button:hover {
    background-color: rgb(209, 207, 207);
}

.detail-button-alphabet {
    font-size: 1.3rem;
}


.mini-detail-button {
    display: block;
    width: 60%;
    padding: 0.3rem;
    margin: 0.5rem auto;
    border: dotted thin rgb(87, 87, 87);
    font-size: 0.8rem;
    text-align: center;
    text-decoration: none;
    color: rgb(52, 52, 134);
}

.mini-detail-button:hover {
    background-color: rgb(209, 207, 207);
}

.mini-detail-button-alphabet {
    font-size: 1rem;
}

.menu-link a {
    color: rgb(28, 20, 102);
    text-decoration: none;
}

.category-link {
    background-color: rgb(231, 230, 230);

}

.category-link-content {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto-fill, max-content);
    justify-content: center;
    margin: 0 auto;
}

.category-link a {
    color: rgb(28, 20, 102);
    background-color: rgb(198, 235, 235);
    text-decoration: none;
    display: block;
    width: 18rem;
    margin: 5px;
}


.display-inline-md {
    display: none;
}

.display-block-md {
    display: none;
}



@media screen and (min-width: 768px) {
    .display-inline-md {
        display: inline;
    }

    .display-block-md {
        display: block;
    }

    .display-none-md {
        display: none;
    }

    h2 {
        font-size: 2.5rem;
    }

    .h2-alphabet {
        font-size: 3rem;
    }

    h3 {
        font-size: 2rem;
    }

    ul {
        padding-left: 1rem;
    }

    li {
        padding: 1rem 0 1rem 2.5rem;
        line-height: 1.8rem;
        list-style: none;
        background: url(../img/icon_pen.svg) left 0 top 1.3rem no-repeat;
        background-size: 2rem auto;
    }

    .abs-correct-0:before {
        content: "";
        display: block;
        padding-top: 30%;
    }
    
    .abs-correct-1:before {
        content: "";
        display: block;
        padding-top: 100%;
    }

    .category-link-content {
        background-color: rgb(231, 230, 230);
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: repeat(auto-fill, max-content);
        justify-content: center;
    }

    .sec-box-upper {
        display: grid;
        grid-template-columns: 4fr 6fr;
        grid-auto-flow: row;
        padding: 0 3rem;
    }

    .sec-box-upper-desc-box {
        font-size: 1.5rem;
        padding: 1rem;
        color: rgb(87, 87, 87);
    }

    .sec-box-lower {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-auto-flow: row;
        padding: 0 4rem;
    }

    .sec-box-lower-img {
        width: 70%;
        border-radius: 1rem;
    }

    .detail-button {
        display: block;
        width: 60%;
        padding: 0.3rem;
        margin: 4rem auto 0 auto;
        border: dotted thin rgb(87, 87, 87);
        font-size: 1rem;
        text-align: center;
        text-decoration: none;
        color: rgb(52, 52, 134);
    }

    .mini-detail-button {
        display: block;
        width: 60%;
        padding: 0.3rem;
        margin: 0.5rem auto;
        border: dotted thin rgb(87, 87, 87);
        font-size: 1rem;
        text-align: center;
        text-decoration: none;
        color: rgb(52, 52, 134);
    }
}




.spotlight-anim-1-1 {
    animation: 30s ease 0s infinite normal both spotlight-anime-key-1-1
}

.spotlight-anim-1-1r {
    animation: 30s ease 0s infinite normal both spotlight-anime-key-1-1r
}

.spotlight-anim-1-2 {
    animation: 30s ease 0s infinite normal both spotlight-anime-key-1-2
}

.spotlight-anim-1-2r {
    animation: 30s ease 0s infinite normal both spotlight-anime-key-1-2r
}

@keyframes spotlight-anime-key-1-1 {
    0% {
        opacity: 0;
    }

    29% {
        opacity: 0;
    }

    30% {
        clip-path: circle(0 at 50% 50%);
        opacity: 1;
    }

    35% {
        clip-path: circle(30% at 50% 50%);
        opacity: 1;
    }

    55% {
        clip-path: circle(30% at 50% 50%);
        opacity: 1;
    }

    60% {
        clip-path: circle(0 at 50% 50%);
        opacity: 1;
    }

    61% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes spotlight-anime-key-1-1r {
    0% {
        opacity: 0;
    }

    29% {
        opacity: 0;
    }

    30% {
        clip-path: circle(0 at 50% 50%);
        opacity: 1;
    }

    35% {
        clip-path: circle(32% at 50% 50%);
        opacity: 1;
    }

    55% {
        clip-path: circle(32% at 50% 50%);
        opacity: 1;
    }

    60% {
        clip-path: circle(0 at 50% 50%);
        opacity: 1;
    }

    61% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes spotlight-anime-key-1-2 {
    0% {
        opacity: 0;
    }

    64% {
        opacity: 0;
    }

    65% {
        clip-path: circle(0 at 50% 72%);
        opacity: 1;
    }

    70% {
        clip-path: circle(30% at 50% 72%);
        opacity: 1;
    }

    90% {
        clip-path: circle(30% at 50% 72%);
        opacity: 1;
    }

    95% {
        clip-path: circle(0 at 50% 72%);
        opacity: 1;
    }

    96% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes spotlight-anime-key-1-2r {
    0% {
        opacity: 0;
    }

    64% {
        opacity: 0;
    }

    65% {
        clip-path: circle(0 at 50% 72%);
        opacity: 1;
    }

    70% {
        clip-path: circle(32% at 50% 72%);
        opacity: 1;
    }

    90% {
        clip-path: circle(32% at 50% 72%);
        opacity: 1;
    }

    95% {
        clip-path: circle(0 at 50% 72%);
        opacity: 1;
    }

    96% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.fadeout1 {
    animation: 30s ease 0s infinite normal both smooth-fadeout1
}

.fadeout2 {
    animation: 30s ease 0s infinite normal both smooth-fadeout2
}

.fadeout3 {
    animation: 30s ease 0s infinite normal both smooth-fadeout3
}

.fadeout4 {
    animation: 30s ease 0s infinite normal both smooth-fadeout4
}

.fadeout5 {
    animation: 30s ease 0s infinite normal both smooth-fadeout5
}

.fadeout6 {
    animation: 30s ease 0s infinite normal both smooth-fadeout6
}

.fadeout7 {
    animation: 30s ease 0s infinite normal both smooth-fadeout7
}

.fadeout8 {
    animation: 30s ease 0s infinite normal both smooth-fadeout8
}

.fadeout9 {
    animation: 30s ease 0s infinite normal both smooth-fadeout9
}

.fadeout10 {
    animation: 30s ease 0s infinite normal both smooth-fadeout10
}

@keyframes smooth-fadeout1 {
    0% {
        opacity: 1;
    }

    10% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes smooth-fadeout2 {
    0% {
        opacity: 1;
    }

    10% {
        opacity: 1;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes smooth-fadeout3 {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes smooth-fadeout4 {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes smooth-fadeout5 {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes smooth-fadeout6 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes smooth-fadeout7 {
    0% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes smooth-fadeout8 {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes smooth-fadeout9 {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes smooth-fadeout10 {
    0% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}