html {
    font-size: 62.5%;
}

.media_pc {
    display: block !important;
}

.media_sp {
    display: none !important;
}

body {
    width: 100%;
    background-color: #fcfcfc;
    font-family: "Noto Sans JP", sans-serif;
    color: #333333;
}

img {
    max-width: 100%;
}

p {
    font-size: 16px;
}

a {
    display: contents;
}

.topicpath_wrap {
    width: 100%;
    background-color: #ffffff;
}

ul.topicpath {
    display: block;
}

ul.topicpath li.home {
    background: none;
    padding: 0 10px 0 0;
}

ul.topicpath li.home a {
    text-decoration: none;
}

ul.topicpath:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

section {
    margin: 0 0 15rem;
    /* background-color: #eeeeee; */
    border-radius: 20px;
    max-width: 96rem;
    margin: 10rem auto 0 auto;
    font-family: "Baskervville", serif;
}

.content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.left_content img {
    width: 100%;
    max-width: 70rem;

}

.right_content {
    width: 60%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.right_content img {

    width: 100%;

}

.title {
    max-width: 96rem;
    margin: 0 auto;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.8;
}

.explaination {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 2rem 0 4rem;
}

.mono {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    max-width: 60rem;
    margin: 0 auto;
}

.viewmore {
    max-width: 96rem;
    margin: 3rem auto 0 auto;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.8;
}

.allitems {
    font-family: "Baskervville", serif;
    max-width: 96rem;
    margin: 9rem auto 9rem auto;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.8;
}

/*左からフェードイン*/
.fade-in-left {
    opacity: 0;
    animation: fadein-left 1.5s 0 ease-out forwards;
}

@keyframes fadein-left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/*右からフェードイン*/
.fade-in-right {
    opacity: 0;
    animation: fadein-right 1.5s 0 ease-out forwards;
}

@keyframes fadein-right {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (min-width: 769px) {
    .explaination {
        font-size: 18px;
    }

    .mono_name {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    body {
        max-width: 100%;
        background-color: #ffffff;
        font-size: 14px;
    }

    .media_pc {
        display: none !important;
    }

    .media_sp {
        display: block !important;
    }


    .content {
        flex-direction: column-reverse;
    }

    .right_content {
        width: 90%;
    }

    .left_content{
        width: 90%;
    }

    .explaination {
        font-size: 16px;
    }

    

    .mono {
        flex-direction: column;
    }

    .right_content img {

        width: 30rem;

    }

}