/* header style */
header {
    width: 70%;
    max-width: 1500px;
    padding: 2rem 0 1rem;
    border-bottom: 2px solid #000;
    background: #fff;
    z-index: 999;
}
header.archive-header img {
    width: 60%;
    margin-bottom: 1.5rem;
}
/* main style */
main {
    width: 70%;
    max-width: 1500px;
    padding: 13rem 0rem 5rem;
}
.csr_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.csr_list > li {
    width: 100%;
}
.csr_list > li:not(:last-child) {
margin-bottom: 5rem;
}
.text_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.text_wrap > span {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.text_wrap > h3 {
    font-size: 1rem;
    line-height: 1.5;
}
.img_wrap {
    margin-top: 1.1rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.img_wrap.list {
    height: 16rem;
}
.img_wrap > img {
    width: 50%;
}
.img_wrap > img.w30 {
    width: 20%;
}
.img_wrap > img.h100 {
    height: 100%;
    width: auto;
}


/* 別パターン */
.pattern02 .csr_list > li {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.pattern02 .csr_list > li:not(:last-child) {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #000;
}
/* .pattern02 .csr_list > li.smimg > .img_wrap{
    padding-bottom: 5rem;
} */
.pattern02 .text_wrap {
    width: 62%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.pattern02 .text_wrap > span {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.pattern02 .text_wrap > h3 {
    font-size: 1rem;
    line-height: 1.5;
}
.pattern02 .img_wrap {
    width: 35%;
    margin-top: 0;
}
.pattern02 .img_wrap > img {
    width: 100%;
}
.pattern02 .more_text {
    box-sizing: border-box;
    padding: 1rem 2rem;
    border: 1px solid #000;
    border-radius: 2rem;
    position: absolute;
    right: 0;
    bottom: 3rem;
    transition: all 0.3s;
}
.pattern02 .more_text > span {
    font-size: 1rem;
}
.more_text:hover {
    background: #000;
}
.more_text:hover > span {
    color: #fff;
}
.pattern02 .csr_list > li:last-child .more_text {
    bottom: 0;
}

/* スマホ */
@media (max-width: 768px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
    /* base style */
    html {
        /* 768pxの時に15px */
        font-size: 2.3vw;
    }
    body {
        width: 100%;
    }
    /* header style */
    header {
        width: 90%;
        max-width: 750px;
        border-bottom: 1px solid #000;
    }
    /* main style */
    main {
        width: 90%;
        max-width: 750px;
        padding: 15rem 0rem 5rem;
    }
    .text_wrap > span {
        font-size: 1.5rem;
    }
    .text_wrap > h3 {
        font-size: 1.8rem;
        line-height: 1.5;
    }
    .img_wrap {
        margin-top: 1.1rem;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }
    .img_wrap.list {
        height: 10rem;
    }
    .img_wrap > img.w30 {
        width: 25%;
    }
    .img_wrap > img.h100 {
        height: 100%;
        width: auto;
    }


    /* 別パターン */
    .pattern02 .csr_list > li {
        flex-direction: column;
        justify-content: inherit;
        padding-bottom: 5rem;
    }
    .pattern02 .csr_list > li:not(:last-child) {
        margin-bottom: 3rem;
        padding-bottom: 5rem;
        border-bottom: 1px solid #000;
    }
    .pattern02 .text_wrap {
        width: 100%;
        margin-top: 2rem;
    }
    .pattern02 .text_wrap > span {
        font-size: 1.5rem;
    }
    .pattern02 .text_wrap > h3 {
        font-size: 1.8rem;
    }
    .pattern02 .img_wrap {
        width: 100%;
        margin-top: 0;
    }
    .pattern02 .more_text {
        padding: 1rem 3rem;
        bottom: 2rem;
    }
    .pattern02 .more_text > span {
        font-size: 1.2rem;
    }
    .more_text:hover {
        background: transparent;
    }
    .more_text:hover > span {
        color: #000;
    }
    .pattern02 .csr_list > li:last-child .more_text {
        bottom: 2rem;
    }
    /* cta style */
    .cta {
        bottom: 5rem;
        left: 0.5rem;
    }
    .cta a {
        font-size: 1rem;
    }
    .cta a::before,
    .cta a::after {
        font-size: 1rem;
        left: -0.2rem;
    }
}