.p-post__contents {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.p-post__content {
    width: calc(100%*853/1240);
}

.p-post__side {
    width: calc(100%*320/1240);
}

.p-post__side--head {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
}

.p-post__side--head.--02 {
    margin-top: 45px;
    padding-top: 45px;
    border-top: #acacac solid 1px;
}

.p-post__side--keywords {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.p-post__side--keyword {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    padding: 2px 10px 3px;
    border-radius: 6px;
    background: #E4DDCB;
}

.p-post__side--keywordLink {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.p-post__side--keywordLink p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.p-post__side--keywordLink figure {
    display: flex;
    width: 13px;
    transform: translate(0, 1px);
}

.p-post__side--list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.c-post__btn--back {
    width: 100%;
    max-width: 277px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .07em;
    background-color: #303135;
    border-radius: 10px;
}

@media screen and (max-width: 900px) {
    .p-post__contents {
        display: block;
    }

    .p-post__content {
        width: 100%;
    }

    .p-post__side {
        width: 100%;
        margin-top: 45px;
    }

    .p-post__side--head.--02 {
        margin-top: 30px;
        padding-top: 30px;
    }
}

/*===========================================================================*/
/*  single  */
/*===========================================================================*/
.p-single {
    padding-top: 80px;
    padding-bottom: 191px;
}

.p-single__cotents {
    position: relative;
    padding: 50px 40px 40px;
    z-index: 2;
    margin-top: 20px;
    font-family: "Noto Sans JP", sans-serif;
}
.p-single__cotents::before {
    background-color: #fff;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    width: 100%;
    transform: translate(-50%, 0);
    border-radius: 30px;
    z-index: -1;
}

.p-single__infos {
    display: flex;
    align-items: flex-start;
}

.p-single__date {
    width: 112px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .08em;
    padding-top: 3px;
}

.p-single__tags {
    width: calc(100% - 112px);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.p-single__tag {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.7;
    padding: 2px 10px;
    border-radius: 6px;
    background: #E4DDCB;
}

.p-single__head {
    margin-top: 15px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.6;
}

.p-single__thumb {
    margin-top: 15px;
    border-radius: 20px;
    overflow: hidden;
}

.p-single__index {
    margin-top: 32px;
    border-radius: 20px;
    border: #ddd solid 1px;
}

.p-single__index--heads {
    padding: 25px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-single__index--head {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}

.p-single__index--arrow {
    cursor: pointer;
    width: 28px;
    transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-single__index--arrow.js-active {
    transform: rotate(180deg);
}

.p-single__index--content {
    padding: 25px 35px 35px;
    border-top: #ddd solid 1px;
}

.p-single__index--content>ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-single__index--content>ul>li>a {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    text-decoration: underline;
}

.p-single__index--content>ul>li>ul {
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-single__index--content>ul>li>ul>li {
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.p-single__index--content>ul>li>ul>li::before {
    content: '・';
    left: 0;
    position: absolute;
    top: 0;
}

.p-single__index--content>ul>li>ul>li>a {
    text-decoration: underline;
}

.p-single__content {
    margin-top: 30px;
}

#post-content span {
    display: inline;
}

#post-content img {
    width: auto;
    max-width: 100%;
    margin: 20px 0;
}

#post-content p {
    margin: 18px 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 2;
}

#post-content strong {
    font-weight: 900;
}

#post-content .u-underline {
    background-image: linear-gradient(to right, #FFE294 0%, #FFE294 100%);
    background-repeat: no-repeat;
    background-size: 100% 8px;
    background-position: 0 100%;
}

#post-content h2 {
    margin: 45px 0 27px;
    padding-bottom: 27px;
    border-bottom: #acacac solid 1px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.6;
}

#post-content h3 {
    margin: 30px 0 18px;
    padding-left: 16px;
    position: relative;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
}
#post-content h3::before {
    background-color: #45c0a8;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 4px;
    border-radius: 100vh;
}

#post-content h4 {
    margin: 30px 0 18px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
}

.p-single__recommend {
    margin: 40px 0;
}

.p-single__recommend--head {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}

.p-single__recommend--link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    width: 100%;
    padding: 12px 30px 12px 12px;
    border-radius: 20px;
    border: 1px solid #DED9CB;
    background: #EDE7D7;
    margin-top: 10px;
}

.p-single__recommend--img {
    width: 225px;
    overflow: hidden;
    border-radius: 10px;
}

.p-single__recommend--img img {
    margin: 0 !important;
    width: 100% !important;
}

.p-single__recommend--txts {
    width: calc(100% - 250px);
}

.p-single__recommend--infos {
    display: flex;
    align-items: flex-start;
}

.p-single__recommend--date {
    width: 112px;
    padding-top: 2px;
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: .08em !important;
}

.p-single__recommend--tags {
    width: calc(100% - 112px);
    margin: 0 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.7 !important;
    letter-spacing: 0 !important;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.p-single__recommend--tags span {
    padding: 2px 10px;
    background-color: #fff;
    border-radius: 6px;
}

.p-single__recommend--head02 {
    margin: 9px 0 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.p-single__lower {
    padding-top: 80px;
}

.p-single__lower--head {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .12em;
}

.p-single__lower--list {
    margin-top: 30px;
    display: flex;
    gap: 40px;
}

.p-single__lower--list li {
    width: calc(100%/3 - 80px/3);
}

.p-single__lower--btn {
    margin-top: 70px;
    text-align: center;
}

@media screen and (max-width: 900px) {
    .p-single {
        padding-top: 35px;
        padding-bottom: 94px;
    }

    .p-single__cotents {
        position: relative;
        padding: 35px 0 50px;
        z-index: 2;
    }
    .p-single__cotents::before {
        width: 100vw;
    }

    .p-single__date {
        width: 94px;
        font-size: 14px;
        padding-top: 6px;
    }

    .p-single__tags {
        width: calc(100% - 94px);
        gap: 5px;
    }

    .p-single__head {
        margin-top: 12px;
        font-size: 20px;
    }

    .p-single__thumb {
        margin-top: 18px;
        border-radius: 10px;
    }

    .p-single__index {
        margin-top: 25px;
        border-radius: 10px;
    }

    .p-single__index--heads {
        padding: 15px 22px;
    }

    .p-single__index--head {
        font-size: 15px;
    }

    .p-single__index--arrow {
        width: 24px;
    }

    .p-single__index--content {
        padding: 16px 22px 25px;
    }

    .p-single__index--content>ul {
        gap: 12px;
    }

    .p-single__index--content>ul>li>a {
        font-size: 15px;
    }

    .p-single__index--content>ul>li>ul>li {
        padding-left: 13px;
        font-size: 13px;
    }

    .p-single__content {
        margin-top: 25px;
    }

    #post-content p {
        margin: 10px 0;
    }

    #post-content h2 {
        margin: 35px 0 15px;
        padding-bottom: 15px;
        font-size: 22px;
    }

    #post-content h3 {
        margin: 20px 0 15px;
        font-size: 18px;
    }

    #post-content h4 {
        margin: 20px 0 15px;
        font-size: 18px;
    }

    .p-single__recommend {
        margin: 35px 0;
    }

    .p-single__recommend--head {
        font-size: 16px;
    }

    .p-single__recommend--link {
        flex-direction: column;
        gap: 10px;
        padding: 12px 12px 20px;
        border-radius: 13px;
    }

    .p-single__recommend--img {
        width: 100%;
        border-radius: 8px;
    }

    .p-single__recommend--txts {
        width: 100%;
        padding: 0 8px;
    }

    .p-single__recommend--date {
        width: 80px;
        padding-top: 5px;
        font-size: 12px !important;
    }

    .p-single__recommend--tags {
        gap: 5px;
        width: calc(100% - 80px);
        font-size: 10px !important;
    }

    .p-single__recommend--tags span {
        padding: 2px 10px;
    }

    .p-single__recommend--head02 {
        margin: 6px 0 0 !important;
        font-size: 16px !important;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .p-single__lower {
        padding-top: 30px;
        margin-top: 30px;
        position: relative;
        border-top: #acacac solid 1px;
    }

    .p-single__lower--head {
        font-size: 22px;
        letter-spacing: 0;
    }

    .p-single__lower--list {
        margin-top: 20px;
        flex-direction: column;
        gap: 25px;
    }

    .p-single__lower--list li {
        width: 100%;
    }

    .p-single__lower--btn {
        margin-top: 35px;
    }
}

/*===========================================================================*/
/*  archive  */
/*===========================================================================*/
.p-archive {
    margin-top: 60px;
    padding-bottom: 191px;
}

.p-archive__inner {
    padding-top: 60px;
    position: relative;
}

.p-archive__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.p-archive__list li {
    width: calc(100%/3 - 80px/3);
}

.p-pagination {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.p-pagination__prev,
.p-pagination__next,
.p-pagination__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: #B2B7BE solid 1px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition: background-color .6s 0s cubic-bezier(.44,.14,.09,1.02), border-color .6s 0s cubic-bezier(.44,.14,.09,1.02), color .6s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-pagination__prev svg,
.p-pagination__next svg {
    stroke: #6a6a6a;
    transition: stroke .6s 0s cubic-bezier(.44,.14,.09,1.02);
}

span.p-pagination__num {
    color: #fff;
    background-color: #45c0a8;
    border-color: #45c0a8;
}

.p-pagination__dot {
    color: #a3a3a3;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.p-archive__lower--btn {
    text-align: center;
    margin-top: 60px;
}

@media screen and (min-width: 901px) {
    .p-pagination__prev:hover,
    .p-pagination__next:hover,
    a.p-pagination__num:hover {
        color: #fff;
        background-color: #45c0a8;
        border-color: #45c0a8;
    }

    .p-pagination__prev:hover svg,
    .p-pagination__next:hover svg {
        stroke: #fff;
    }
}

@media screen and (max-width: 900px) {
    .p-archive {
        margin-top: 30px;
        padding-bottom: 94px;
    }

    .p-archive__inner {
        padding-top: 40px;
    }
    .p-archive__inner::before {
        width: calc(100vw - 40px);
    }

    .p-archive__list {
        gap: 25px;
    }

    .p-archive__list li {
        width: 100%;
    }

    .p-pagination {
        margin-top: 60px;
    }

    .p-archive__lower--btn {
        margin-top: 40px;
    }
}

figure.p-single__thumb {
    max-height: 400px;
}
figure.p-single__thumb img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}