html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    background: #fff;
    color: #666;
}
body{
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    overflow-x: hidden;
    width: 100vw;
}
canvas, img, video {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}
audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}
@supports (display:block) {
    svg {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }
}
a{
    color: #1e87f0;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .only-pc{
        display: none !important;
    }
}
@media screen and (min-width: 769px) {
    .only-sp{
        display: none !important;
    }
}

.breadcrumb {
    font-size: 14px;
}
.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 5vw;
}
.breadcrumb li, .breadcrumb li a {
    color: #999999;
}
.breadcrumb li:not(:last-child){
    text-decoration: underline;
}
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 0.5rem;
    content: ">";
}

/* more-btn */
.more-btn-wrapper{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.more-btn-wrapper > div{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    padding: 0;
    border: 1px solid;
    line-height: normal;
}
.more-btn-wrapper a{
    color: #3db134;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 13px 0;
    border-radius: 30px;
}
.more-btn-wrapper div{
    border-color: #3db134;
}
@media (min-width: 769px){
    .more-btn-wrapper > div{
        width: 300px;
        height: 40px;
        border-radius: 50px;
        padding: 13px 0;;
    }
    .more-btn-wrapper a{
        border-radius: 50px;
    }
}

.pager{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1093px;
    gap: 10px;
    font-size: 12px;
    overflow-x: scroll;
    /* Firefox対応 */
    scrollbar-width: none;
    /* IE・Edge旧バージョン対応 */
    -ms-overflow-style: none;
    margin: 0 auto;
}
.pager::-webkit-scrollbar {
    display: none;
  }
.pager-numbers{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.pager-number-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid #3db134;
    border-radius: 50%;
    background-color: #fff;
    color: #3db134;
}
.pager-links.current .pager-number-wrapper{
    background-color: #3db134;
    color: #ffffff;
}
.pager-prev, .pager-next{
    transform: scaleX(0.6) scaleY(2);
    color: #3db134;
}

@media (min-width: 769px) {
    .pager{
        gap: 20px;
    }
    .pager-number-wrapper{
        width: 60px;
        height: 60px;
    }
}