.category-content {
    background-color: var(--color-blue02);
}
.category-content .category__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5em;
    padding: 1.5em 0;
}
.category-content .category__list a {
    font-size: 1.2rem;
    line-height: 1em;
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    padding: .6em 1em;
    border-radius: 1.5em;
    background-color: white;
    display: block;
}
.category-content .category__list a:hover,
.category-content .category__list .current-cat a {
    background-color: var(--color-orange);
    color: white;
}
.post-content .post-card {
    display: grid;
    grid-template-columns: 1fr;
    margin: 1em 0;
}
.post-card article {
    border-bottom: 1px solid var(--color-blue01);
}
.post-card article a {
    display: grid;
    grid-template-columns: 14.8rem auto;
    column-gap: 2rem;
    margin: 3rem 0;
}
.post-card .post-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.post-card .post-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-card .post-card__txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.post-card .post-card__txt::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    position: absolute;
    right: 0;
    top: .25em;
    background: url('../images/arrow_blue.svg') no-repeat center / contain;
    transition: .3s;
}
.post-card a:hover .post-card__txt::before {
    right: -.25em;
}
.post-card .post-card__ttl {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5em;
}
.post-info {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    align-items: center;
    margin-bottom: 1em;
}
.post-info .post-info__date {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-en);
    color: var(--color-blue);
}
.post-info .post-info__cat .cat {
    font-size: 1.2rem;
    line-height: 1em;
    display: inline-block;
    line-height: 1em;
    padding: .5em 1em;
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    border-radius: 1.5em;
}
.post-header {
    margin: 4.5rem 0 2em 0;
}
.post-header .post-header__ttl {
    font-size: 2.1rem;
    font-weight: 700;
    margin-top: 1em;
    color: var(--color-blue);
}
.post-content > .post {
    border-bottom: 1px solid var(--color-blue01);
    padding-bottom: 3em;
}
.post-body01,
.post-body01 .post-img {
    margin-bottom: 2em;
}
.post-body p,.post-body li {
    line-height: 2em;
}
.post-body h2,.post-body h3 {
    font-size: 1.8rem;
    line-height: 1.5em;
    margin: 1.25em 0;
    font-weight: 700;
    color: var(--color-blue);
}
.post-body h2 {
    background-color: var(--color-blue);
    color: white;
    display: block;
    padding: .5em .75em;
}
.post-body .button {
    display: inline-block;
    margin: 1.25em auto;
}
.post-body .button {
    padding-right: 3.25em;
}
.post-body h3,
.post-body h4 {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--color-blue);
}
.post-body hr {
    margin: 1.5em 0;
    background: var(--color-blue01);
    border-color: transparent;
}
.post-body iframe {
    width: 100%;
}
.post-body .iframe-map__wrap {
    margin-top: 1em;
}
.color-orange {
    color: var(--color-orange);
}
.bg-orange {
    background-color: #ffe5d9;
    color: var(--color-orange);
}
.post-content__nav:has(.post-nav) {
    margin-bottom: 3em;
}
.post-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1em 0 2em 0;
    color: var(--color-blue);
}
.wp-pagenavi {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
    margin: 0 0 3em 0;
}
.wp-pagenavi span.current,
.wp-pagenavi a.page {
    font-size: 1.4rem;
    line-height: 1em;
    font-weight: 400;
    width: 2.5em;
    height: 2.5em;
    text-align: center;
    border: 1px solid white;
    border-radius: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--color-blue);
    font-family: var(--font-en);
}
.wp-pagenavi span.current {
    background-color: var(--color-blue);
    color: white;
}
.post-nav .post-nav__previous span,
.post-nav .post-navi__next span,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    font-family: var(--font-en);
    padding-right: 1.5em;
    line-height: 1em;
    position: relative;
    margin-left: 3em;
}
.post-nav .post-nav__previous span::before,
.post-nav .post-navi__next span::before,
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
    content: "";
    display: block;
    width: .85em;
    height: .85em;
    background-image: url('../images/arrow_blue.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    transition: .3s;
}
.post-nav .post-nav__previous a:hover span::before,
.wp-pagenavi .previouspostslink:hover::before {
    left: -.25em;
}
.post-nav .post-navi__next a:hover span::before,
.wp-pagenavi .nextpostslink:hover::before {
    right: -.25em;
}
.post-nav .post-nav__previous span,
.wp-pagenavi .previouspostslink {
    padding-left: 1.5em;
    padding-right: 0;
    margin: 0 3em 0 0;
}
.post-nav .post-nav__previous span:before,
.wp-pagenavi .previouspostslink::before {
    right: auto;
    left: 0;
    transform: translateY(-50%) scaleX(-1);
    transform-origin: center;
}
.post-content__nav .post-nav__button {
    width: 21rem;
}
.post-nav__button .button {
    padding: 1.5em 1.75em 1.5em 2.5em ;
}
.post-nav__button .button::after {
    right: auto !important;
    left: 1.5em;
    background-image: url('../images/arrow_white-l.svg');
    transform: translateY(-50%) translateX(0);
    transition: transform 0.3s ease 0.5s;
}
.post-nav__button .button:hover::after {
    background-image: url('../images/arrow_blue-l.svg');
    transform: translate(-0.4em, -50%);
}
/** interview **/
.interview-lead {
    margin-right: 4em;
}
.page-heading__inner .page-heading__txt {
    position: static;
    width: auto;
}
.voice-card {
    display: grid;
    row-gap: 1.5em;
    margin: var(--space-md) 0;
}
.voice-card a {
    display: block;
}
.voice-card__ttl > span {
    font-size: 1.7rem;
    line-height: 1em;
    display: inline-block;
    letter-spacing: .1em;
    color: white;
    padding: 1em 3em .5em 2em;
    background-color: var(--color-blue);
    background-image: url('../images/bg-index.svg');
    background-repeat: no-repeat;
    background-position: right -1px top -1px;
    background-size: auto calc(100% + 3px);
}
.voice-card .voice-card__inner {
    display: grid;
    grid-template-columns: 10rem auto;
    align-items: center;
    gap: 1em;
    padding: 1em;
    border: 1px solid var(--color-blue);
    border-top: 1rem solid var(--color-blue);
}
.voice-card .voice-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}
.voice-card .voice-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.voice-card .post-staff__ttl {
    font-size: 1.4rem;
    line-height: 2.5em;
    white-space: nowrap;
}
.voice-card .post-staff__ttl span {
    padding-bottom: .5em;
    border-bottom: 2px solid var(--color-blue01);
}
.voice-card .more-link {
    text-align: right;
}
.voice-card .more-link span {
    color: var(--color-orange);
    padding-right: 1.5em;
    background-image: url('../images/arrow_orange.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1em auto;
    font-weight: 700;
    font-family: var(--font-en);
    display: inline-block;
    margin-top: .5em;
}
/** voice **/
.post-staff {
    margin-top: 4.5rem
}
.post-staff__cat {
    text-align: center;
}
.post-staff__cat .cat {
    font-size: 1.5rem;
    line-height: 1em;
    background-color: var(--color-orange);
    border: 1px solid var(--color-orange);
    color: white;
    font-weight: 700;
    display: inline-block;
    border-radius: 1.5em;
    padding: 1em 2em;
    margin: auto;
}
.post-staff__cat .cat:hover {
    background-color: white;
    color: var(--color-orange);
}
.post-staff .post-staff__ttl {
    color: var(--color-blue);
    text-align: center;
    font-weight: 700;
    padding: 1em;
    font-size: 1.9rem;
    line-height: 2em;
    position: relative;
    margin: 1.5em 0;
}
.post-staff .post-staff__ttl::before,
.post-staff .post-staff__ttl::after {
    content: "";
    display: block;
    width: 1em;
    height: 1.5em;
    position: absolute;
}
.post-staff .post-staff__ttl::before {
    border-top: 1px solid var(--color-blue);
    border-left: 1px solid var(--color-blue);
    top: 0;
    left: 0;
}
.post-staff .post-staff__ttl::after {
    border-bottom: 1px solid var(--color-blue);
    border-right: 1px solid var(--color-blue);
    bottom: 0;
    right: 0;
}
.post-staff .post-staff__info {
    text-align: center;
    margin-top: 1.5em;
}
.post-staff .post-staff__info ul {
    display: flex;
    gap: 1em;
}
.post-staff .post-staff__info ul li {
    display: inline-block;
}
.post-staff .post-staff__info ul li::before{
    color: var(--color-orange);
}
.post-staff .post-body {
    margin-top: var(--space-lg);
}
.staff-qa dl {
    margin-bottom: 2em;
}
.staff-qa dt {
    background-color: var(--color-blue);
    color: white;
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1.6em;
    padding: .5em 1.5em .5em 2.75em;
    border-radius: 2em;
    position: relative;
}
.staff-qa dt::before {
    content: "Q";
    display: block;
    aspect-ratio: 1/1;
    background-color: white;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    font-size: 1.4rem;
    font-family: var(--font-en);
    color: var(--color-orange);
    font-style: italic;
    position: absolute;
    left: 1em;
    top: 50%;
    transform: translateY(-50%);
}
.staff-qa dd {
    margin-top: 1.5em;
}
.schedule-block {
    background-color: var(--color-orange01);
    position: relative;
    z-index: 0;
    padding-top: 4rem;
    padding-bottom: 2.5em;
}
.schedule-block::after {
    content: "";
    display: block;
    background-color: var(--color-orange01);
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}
.schedule-block::before {
    content:"SCHEDULE";
    display: inline-block;
    color: white;
    position: absolute;
    top: -.5rem;
    left: -1.4rem;
    line-height: 1em;
    font-size: 7.1rem;
    font-family: var(--font-en);
    z-index: -1;
}
.post-body h3.schedule-block__ttl {
    font-size: 2.1rem;
    margin-bottom: 2em;
    margin-top: 0;
}
.schedule-block__time table {
    margin-bottom: 2.5em;
}
.schedule-block__time table th {
    font-size: 1.7rem;
    color: var(--color-blue);
    font-family: var(--font-en);
    border-bottom: 1px solid white;
    padding: 1em;
    font-style: italic;
    vertical-align: middle;
    text-align: right;
}
.schedule-block__time table td {
    border-bottom: 1px solid white;
    padding: 1em;
    vertical-align: middle;
}
.schedule-block__info dl {
    margin-top: 2.5em;
}
.schedule-block__info dl dt {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 1.9rem;
    position: relative;
    padding: 0 0 .75em 4em;
}
.schedule-block__info dl dt::before {
    content: "";
    display: block;
    width: 1.75em;
    height: 2.5em;
    background-image: url('../images/icon-flag.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    position: absolute;
    left: 1.5em;
    bottom: 0;
}
.schedule-block__info dl dd {
    background-color: var(--color-orange);
    border-radius: 1.5em;
    padding: 1.5em;
    color: white;
}
@media screen and (max-width: 767px) {
    .post-card .post-info {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: .5em;
        margin: 0;
    }
    .post-body .iframe-map__wrap iframe {
        width: 100%;
        height: 30rem;
    }
    .wp-pagenavi {
        position: relative;
        padding-top: 3em;
    }
    .wp-pagenavi .previouspostslink,
    .wp-pagenavi .nextpostslink {
        position: absolute;
        top: 0;
        left: 0;
    }
    .wp-pagenavi .nextpostslink {
        right: 0;
        left: auto;
    }
}
@media screen and (min-width: 768px) {
    .category-content .category__list {
        padding: 3em 0;
    }
    .post-content .post-card {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 10rem;
        position: relative;
    }
    .post-card article {
        position: relative;
        border: none;
    }
    .post-content .post-card article:nth-child(3n + 1)::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: calc(300% + 20rem);
        height: 1px;
        background: var(--color-blue01);
    }
    .post-card article a {
        grid-template-columns: 1fr;
        row-gap: 1.5em;
        margin: 5.5rem 0;
    }
    .post-card .post-card__txt::before {
        top: auto;
        bottom: .25em;
    }
    .post-info .post-info__date {
        font-size: 1.5rem;
    }
    .post-card__ttl {
        font-size: 1.5rem;
    }
    .post-header .post-header__ttl {
        font-size: 3.2rem;
    }
    .wp-pagenavi {
        margin: 7.2rem 0;
    }
    .wp-pagenavi span.current,
    .wp-pagenavi a.page {
        font-size: 1.6rem;
    }
    .wp-pagenavi a.page:hover {
        background-color: var(--color-blue);
        color: white;
    }
    .post-header {
        margin: 8rem 0 6.2rem 0;
    }
    .post-content > .post {
        padding-bottom: 5em;
    }
    .post-body01 {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        margin-bottom: 12rem;
    }
    .post-body01 .post-img {
        display: block;
        width: 54rem;
        margin: 0;
    }
    .post-body01 .post-body {
        display: block;
        width: 57rem;
    }
    .post-body h2,.post-body h3 {
        font-size: 2.6rem;
    }
    .post-body hr {
        margin: 3em 0;
    }
    .post-nav {
        margin: 0;
    }
    .post-content__nav:has(.post-nav) {
        position: relative;
        margin: 5em 0 7em 0;
    }
    .post-content__nav .post-nav__button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    /** interview **/
    .interview-lead {
        margin-top: 12rem;
    }
    .voice-card {
        grid-template-columns: repeat(2 ,1fr);
        gap: 3.5em;
    }
    .voice-card__ttl > span {
        font-size: 2rem;
        padding: 1em 4em .5em 2em;
    }
    .voice-card .voice-card__inner {
        grid-template-columns: 21rem auto;
        padding: 2em;
        gap: 2em;
    }
    .voice-card .post-staff__ttl {
        font-size: 1.8rem;
    }
    .voice-card .more-link {
        margin-top: 1em;
    }
    /** voice **/
    .post-staff__heading {
        display: grid;
        grid-template-columns: auto 54rem;
        column-gap: 9rem;
        row-gap: 0;
    }
    .post-staff__img {
        grid-column: 2 / 3;
        grid-row: 1 / 4;
    }
    .post-staff {
        margin-top: 8rem
    }
    .post-staff__cat {
        text-align: left;
        margin-bottom: 2em;
    }
    .post-staff__cat .cat {
        font-size: 1.7rem;
    }
    .post-staff .post-staff__ttl {
        font-size: 3.2rem;
        text-align: left;
        margin: 0;
    }
    .post-staff .post-staff__info {
        display: flex;
        gap: 2em;
    }
    .staff-qa dl {
        border-bottom: 1px solid var(--color-blue01);
        padding-bottom: 3em;
        margin-bottom: 3em;
    }
    .staff-qa dl:last-child {
        border-bottom: none;
        padding-bottom: none;
    }
    .staff-qa dt {
        font-size: 2.4rem;
        padding-left: 2.5em;
        display: inline-block;
    }
    .staff-qa dt::before {
        font-size: 1.7rem;
    }
    .schedule-block {
        display: flex;
        justify-content: space-between;
        padding-top: 6.2rem;
    }
    .schedule-block::before {
        font-size: 11.8rem;
        top: -2rem;
    }
    .schedule-block__time {
        width: 58rem;
    }
    .schedule-block__info {
        width: 54rem;
    }
    .schedule-block__time table th,
    .schedule-block__time table td {
        padding-top: 1.25em;
        padding-bottom: 1.25em;
    }
    .schedule-block__time table {
        margin-bottom: 3em;
    }
}
