/* breadcrumb */
.breadcrumb {
    display: flex;
    margin: 0;
    padding: min(.5em, 2vw);
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: rgba(255, 255, 255, .8);
}

.breadcrumb li {
    display: inline-block;
    font-size: .75em;
    line-height: 1.4;
    letter-spacing: 0;
}

.breadcrumb li a {
    display: inline-block;
    padding: .5em min(1em, 4vw) .5em min(1em, 2.5vw);
    color: #222;
    position: relative;
}

.breadcrumb li a::after {
    content: '';
    display: inline-block;
    width: .5em;
    height: .5em;

    border-top: 1px solid #999;
    border-right: 1px solid #999;

    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);

}

.breadcrumb li .current {
    display: inline-block;
    padding: .5em 1em;
    color: #999;
}


/*=========================================================

    archive

=========================================================*/

/* archive header */
.archive-header {
    padding: 4em 1.5em;
    text-align: center;
}

.archive-header .title {
    font-size: min(2.6em, 8vw);
    letter-spacing: .05em;
    text-indent: .05em;
    color: var(--main_color);
    font-family: var(--en), sans-serif;
}

.post-archive-header .sub-title {
    display: inline-block;
    margin-top: .5em;
    font-size: min(1.2em, 3.8vw);
    letter-spacing: .075em;
    text-indent: .075em;
    position: relative;
    text-align: center;
    padding: 0;
}

.post-archive-header .sub-title::before,
.post-archive-header .sub-title::after {
    content: '';
    display: block;
    width: 1.5em;
    height: 0;
    border-bottom: 1px solid #222;
    position: absolute;
    top: 50%;
}

@media (max-width:767.9px) {

    .post-archive-header .sub-title::before,
    .post-archive-header .sub-title::after {
        width: 1em;
    }
}

.post-archive-header .sub-title::before {
    left: -2.5em;
}

.post-archive-header .sub-title::after {
    right: -2.5em;
}

@media (max-width:767.9px) {

    .post-archive-header .sub-title::before {
        left: -2em;
    }

    .post-archive-header .sub-title::after {
        right: -2em;
    }
}

.post-archive-header .category_image {
    width: 240px;
    margin: 1.5em auto 1em;
}

.post-archive-header p {
    margin-top: 1em;
    font-size: min(.95em, 3.6vw);
    line-height: 2;
    letter-spacing: .1em;
}

.search .archive-header .title {
    letter-spacing: .05em;
    text-indent: .05em;
}

/* archive entry */
.archive .entry-list {
    padding: 0 min(2em, 3vw) min(4em, 15vw);
}

@media (max-width:967.9px) {
    .archive .entry-list {
        max-width: 92vw;
        padding: 0 0 min(4em, 15vw);
    }
}

.archive .entry-list .entry {
    border: solid 1px #ccc;
    transition: all .3s ease;
}

@media (max-width:767px) {
    .archive .entry-list .entry {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .archive .entry-list .thumb-wrp {
        width: 30%;
        padding: 1em;
    }

    .archive .entry-list .thumb-wrp .thumb {
        padding-bottom: 100%;
    }

    .archive .entry-list .entry-meta-wrp {
        width: 70%;
    }

    .archive .entry-list .entry-meta-wrp,
    .news-list .entry-meta-wrp {
        padding: 1em;
    }
}

.archive .entry-list .entry .entry-title {
    font-size: min(.9em, 3.5vw);
    letter-spacing: .05em;
    display: block;
    margin-top: 0;
}

/* news archive */
.entry-list .entry p.cat {
    display: inline-block;
    padding: .2em .5em;
    font-size: min(.75em, 3.34vw);
    letter-spacing: .05em;
    color: var(--main_subcolor);
    transition: all .3s;
    border: solid 1px #aaa;
}

.post-type-archive-news .entry-list .entry p.cat.notice {
    color: var(--color_red);
    border: solid 1px var(--color_red);
}


/*=========================================================

    single

=========================================================*/

.single-inner {
    padding: 4em 0 2em;
    max-width: 1900px;
    margin: 0 auto;
    transition: all .3s;
}

@media (max-width:1440px) {
    .single-inner {
        margin: 0 0 0 auto;
    }

    @media (max-width:1200px) {
        .single-inner {
            /*             margin: 0 auto; */
            padding: 3em 0 0;
        }

        @media (max-width:767.9px) {
            .single-inner {
                padding: 0;
            }
        }
    }
}

/* single left area wrp =================================================*/
.single-inner .category-wrp {
    width: 15%;
    transition: transform .5s .1s ease;
}

@media screen and (max-width:1200px) {
    .single-inner .category-wrp {
        width: 20%;
    }
}

@media screen and (max-width:767.9px) {
    .single-inner .category-wrp {
        width: 100%;
    }
}

.single-inner .category-wrp .category-wrp-inner {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 2em;
    padding: 0 1em 4em;
    position: sticky;
    top: 100px;
}

@media screen and (max-width:767.9px) {
    .single-inner .category-wrp .category-wrp-inner {
        max-width: 100%;
        margin: 0;
        padding: .25em 1em .5em;
        display: flex;
        align-items: center;
        gap: 1em;
        background-color: #ebf5f7;
    }
}

@media screen and (max-width:767.9px) {
    .single-news .single-inner .category-wrp {
        display: none;
    }
}

.single-inner .category-wrp .category-wrp-inner .category_image {
    width: 90%;
    aspect-ratio: 3/2;
    margin: -1em auto .5em;
    position: relative;
}

@media screen and (max-width:767.9px) {
    .single-inner .category-wrp .category-wrp-inner .category_image {
        width: min(150px, 30%);
        margin: 0;
    }
}

.single-inner .category-wrp .category-wrp-inner .category_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.single-inner .category-wrp .category-wrp-inner .category_image.category_image-news {
    width: 100px;
    height: 100px;
    background-color: var(--orange);
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto 1em;
    padding: 10px;
}

.single-inner .category-wrp .category-wrp-inner .category_image.category_image-news img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}

.single-inner .category-wrp .category-wrp-inner .current-category {
    text-align: center;
}

@media screen and (max-width:767.9px) {
    .single-inner .category-wrp .category-wrp-inner .current-category {
        text-align: left;
    }
}

.single-inner .category-wrp .category-wrp-inner .current-category .cate-title {
    font-family: var(--en), sans-serif;
    font-size: min(1.5em, 6vw);
    letter-spacing: .01em;
}

.single-inner .category-wrp .category-wrp-inner .current-category .cate-title-jp {
    font-size: min(12px, 3.5vw);
    line-height: 1.6;
    padding: .5em 0 1em;
}

@media screen and (max-width:767.9px) {
    .single-inner .category-wrp .category-wrp-inner .current-category .cate-title-jp {
        padding: 0;
    }

    .single-inner .category-wrp .category-wrp-inner .current-category .cate-title-jp br {
        display: none;
    }
}

.single-inner .category-wrp .category-wrp-inner .category-list {
    margin-top: 3em;
    padding: 0 1em;
    text-align: left;
}

.single-inner .category-wrp .category-wrp-inner .category-list:first-child {
    margin-top: 0;
}

.single-inner .category-wrp .category-wrp-inner .category-list li {
    margin: 1.5em 0;
    padding-left: 2.5em;
    position: relative;
}

.single-inner .category-wrp .category-wrp-inner .category-list li a {
    color: var(--main_color);
    transition: color .3s ease;
}

.single-inner .category-wrp .category-wrp-inner .category-list li a:hover {
    color: var(--orange);
}

.single-inner .category-wrp .category-wrp-inner .category-list li .icon {
    display: inline-block;
    width: 1.5em;
    position: absolute;
    left: 0;
}

/* news category */
.news .single-inner .category-wrp .category-wrp-inner .category-list li {
    padding-left: 1.25em;
}

.news .single-inner .category-wrp .category-wrp-inner .category-list li::before {
    content: '';
    display: block;
    width: .5em;
    height: .5em;
    border-radius: 50%;
    background-color: var(--orange);
    position: absolute;
    left: 0;
    top: .3em;
}

/* single article area =================================================*/
.single-article-wrp {
    width: 60%;
}

@media (max-width:1200px) {
    .single-article-wrp {
        width: 80%;
    }
}

@media (max-width:767.9px) {
    .single-article-wrp {
        width: 100%;
    }
}

.single-article-inner {
    max-width: 770px;
    margin: 0 auto;
    padding: 1em 2em 5em;
}

@media (max-width:767.9px) {
    .single-article-inner {
        padding: 3em min(2em, 5vw);

    }
}

.single-article-inner h2 {
    margin: 0 0 2em;
    padding: 0;
    line-height: 1.7;
}

@media (max-width:767.9px) {
    .single-article-inner h2 {
        margin: 0 0 1.5em;
    }
}

/* single related area wrapper ==============================================*/
.related-wrp {
    width: 25%;
}

@media (max-width:1200px) {
    .related-wrp {
        width: 100%;
        margin: 0 auto;
        background-color: #fafafa;
    }
}

.related-wrp-inner {
    max-width: 300px;
    padding: 1em;
    margin-right: auto;
    position: sticky;
    top: 100px;
}

@media (max-width:1200px) {
    .related-wrp-inner {
        max-width: 92%;
        margin: 0 auto;
        padding: 3em 0;
    }
}

.related-wrp .related-title {
    font-size: .95em;
    color: var(--main_color);
}

@media (max-width:1200px) {
    .related-wrp .related-title {
        margin-bottom: 2em !important;
    }
}

.related-wrp .related-list {
    --repeat-length: 1;
    --repeat-rowgap: 0;
    --repeat-columngap: 0;
}

@media (max-width:1200px) {
    .related-wrp .related-list {
        --repeat-length: 4;
        --repeat-rowgap: 0;
        --repeat-columngap: 0;
    }

    @media (max-width:980px) {
        .related-wrp .related-list {
            --repeat-length: 2;
        }
    }

    @media (max-width:980px) and (min-width: 600.1px) {
        .related-wrp .related-list {
            --repeat-rowgap: 2em;
            --repeat-columngap: 0;
        }
    }

    @media (max-width:600px) {
        .related-wrp .related-list {
            --repeat-length: 1;
        }
    }
}

.related-wrp .related-list .entry {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 1.5em 0;
    gap: 1em 8%;
}

.related-wrp .related-list .entry:last-child {
    border-bottom: none;
}

@media (min-width:1200.1px) {
    .related-wrp .related-list .entry {
        width: 100%;
    }
}

@media (max-width:1200px) {
    .related-wrp .related-list .entry {
        width: calc(100% / var(--repeat-length));
    }
}

@media (max-width:1200px) and (min-width: 980.1px) {
    .related-wrp .related-list .entry {
        padding: 1em 1.5em;
        border-right: 1px solid #ddd;
        border-bottom: none;
    }

    .related-wrp .related-list .entry:last-child {
        border-right: none;
    }
}

@media (max-width:980px) and (min-width: 600.1px) {
    .related-wrp .related-list .entry {
        padding: 0 1.5em;
        border-left: 1px solid #ddd;
        border-bottom: none;
    }
}

.related-wrp .entry .date-wrp {
    font-size: 14.5px;
}

.related-wrp .related-list .entry .thumb-wrp {
    width: 25%;
    margin-top: .2em;
    position: relative;
}

.related-wrp .related-list .entry .thumb-wrp .thumb {
    border-radius: 4px;
}

.related-wrp .related-list .entry .thumb-wrp .new {
    padding: .3em .6em .3em .75em;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    border-radius: 0 0 3px 0;
}

.related-wrp .related-list .entry .entry-meta-wrp {
    width: 68%;
    margin: 0;
    padding: 0;
}

.related-wrp .related-list .entry-meta .entry-title {
    font-size: 13px;
    margin-top: 0;
    margin-bottom: .25em;
    letter-spacing: 0.025em;
    min-height: 0;
}

.related-wrp .related-list .entry-meta .exc {
    font-size: 11.5px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--main_color);
}

@media (max-width:767.9px) {
    .related-wrp .related-list .entry-meta .exc {
        font-size: 12px;
        margin-top: .5em;
    }
}

/* single post related (no thumbnail) */
.news .related-wrp .related-list .entry .entry-meta-wrp {
    width: 100%;
}

.postdate {
    font-family: var(--en);
    color: var(--main_color);
}

.postdate time {
    letter-spacing: .025em;
}

.related-wrp .related-list .entry p.cat {
    display: inline-block;
    margin: 0 0 1em;
    padding: .2em .5em;
    font-size: 11px;
    letter-spacing: .05em;
    color: var(--main_subcolor);
    transition: all .3s;
    border: solid 1px #aaa;
}

/* single post pickup */
.related-wrp .pickup-list {
    margin-top: 1em;
    --repeat-rowgap: 1em;
    --repeat-columngap: 1em;
}

.related-wrp .pickup-list .entry:nth-child(n + 3) {
    display: none;
}

@media (max-width:1200px) {
    .related-wrp .pickup-list {
        max-width: 100%;
        --repeat-length: 4;
        margin-top: 2em;
    }

    .related-wrp .pickup-list .entry:nth-child(n + 3) {
        display: block;
    }

    @media (max-width:600px) {
        .related-wrp .pickup-list {
            gap: .5em;
            --repeat-length: 2;
        }
    }
}

.related-wrp .pickup-list .entry-meta-wrp {
    padding: .75em .7em .3em;
}

.related-wrp .pickup-list .exc {
    display: none;
}

@media (max-width:1200px) {

    .related-wrp .pickup-list .entry-meta-wrp .entry-meta .entry-title br {
        display: none;
    }
}

/*=========================================================

    blog / news

=========================================================*/

.single .terms-list {
    margin: 0;
    padding: 0;
    gap: 1em;
}

.single .terms-list li a {
    display: inline-block;
    padding: .25em 1em;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--main_subcolor);
    position: relative;
    border: 1px solid;
    margin: 1em .5em 1em 0;
}


.single .terms-list li .icon {
    width: 2em;
    position: absolute;
    left: 0;
    top: -.1em;
}

.single .entry-title {
    display: block;
    margin: .5em 0 1em;
    font-size: min(1.5em, 5.4vw);
    letter-spacing: .05em;
}

.single .entry-lead {
    font-size: min(1.15em, 4.2vw);
    letter-spacing: .05em;
    margin-bottom: 2em;
}

@media (max-width:767.9px) {
    .single .entry-lead {
        margin-bottom: 3em;
    }
}

/* entry content */
.single .entry-content {
    margin-top: .5em;
}

.single .entry-content h2 {
    margin-bottom: 1.5em;
    font-size: min(1.15em, 4.2vw);
    color: var(--main_color);
    letter-spacing: .05em;
}

.single .entry-content h2:not(:first-child) {
    margin-top: 2em;
}

.single .entry-content p {
    margin-top: 1.5em;
    line-height: 2;
}

@media (max-width:767.9px) {
    .single .entry-content p {
        line-height: 1.7;
    }
}

.single .entry-content .entry-main-img {
    margin: 2.5em 0;
}

.single .entry-content .wp-block-columns {
    margin-top: 2.5em;
    width: 100%;
}

.single .entry-content .wp-block-columns.gap1 {
    gap: 1em !important;
}

.single .entry-content .wp-block-columns.gap2 {
    gap: 2em !important;
}

.single .entry-content .wp-block-image:not(:first-child) {
    margin-top: 1.5em;
}

.single .entry-content .wp-block-image figcaption {
    margin-top: 1em;
    font-size: min(.85em, 3.8vw);
    line-height: 1.8;
}

.single .entry-content iframe {
    width: 100%;
    margin-top: 2.5em;
}

/* link in single page */
.single .entry-content p a:not(.cat) {
    color: var(--main_subcolor);
    text-decoration: underline;
    transition: all .3s;
}

.single .entry-content p a:not(.cat):hover {
    /* color: var(--main_color); */
    color: #fff;
}

/* youtube */
.is-provider-youtube iframe {
    margin-left: auto;
    margin-right: auto;
}

.wp-embed-aspect-16-9 {
    margin-bottom: 2em;
}

.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 54%;
    position: relative;
}

.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.wp-embed-aspect-16-9.frame iframe {
    border: 1px solid #ccc;
}

/* table default */
.wp-block-table thead {
    border-bottom: 2px solid;
}

.wp-block-table th,
.wp-block-table td {
    padding: 1em 0;
    font-weight: normal;
}

.wp-block-table table {
    margin-bottom: 1em;
}

/* data */
.data-wrp.location-data {
    margin-top: min(4em, 8vw);
    padding: min(2.5em, 8vw) min(2.5em, 6vw);
    background-color: #f5f5f0;
}

.single .data-wrp .data-title {
    padding-left: 1.8em;
    font-size: min(1.2em, 4vw);
    color: var(--main-color);
    font-weight: bold;
    position: relative;
}

.single .data-wrp .data-title .icon {
    width: 1em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-30%);
}

/* tag list */
.entry-tag-wrp {
    margin-top: 2em;
}

.entry-tag-wrp .tag-list {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
}

.entry-tag-wrp .tag-list li a {
    display: inline-block;
    padding: .3em .5em;
    color: var(--orange);
    font-size: min(.8em, 3vw);
    border: 1px solid;
    border-radius: 3px;
}

.entry-tag-wrp .tag-list li a:hover {
    color: #1a1a1a;
    border: 1px solid;
}

.search .index-wrp {
    padding-bottom: 4em;
}

/* news beer page */
/* .beer-wrp .wp-block-columns {
    width: 48%;
} */

/* company */
.page.message,
.page.company {
    background-color: #f9f9f4;
}

.page.message .pagetitle-wrp,
.page.company .pagetitle-wrp {
    text-align: center;
    padding: 4em 1em;
}

.company table {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 3em;
    font-size: .9em;
}

.company table tr {
    border-bottom: 1px solid #ccc;
}

.company table td {
    padding: 1.5em 0;
    text-align: left;
    border: none;
}

.company table td:first-child {
    padding-right: 2.5em;
    white-space: nowrap;
    /* font-size: 1.2em; */
}

.company table a {
    color: #ea6b2f;
}

.company table .branch {
    position: relative;
}

.company table .branch:not(:first-child) {
    padding-top: 1em;
}

.company table .branch:not(:last-child) {
    padding-bottom: 1em;
    border-bottom: 1px solid #ccc;
}

.company table .branch-name {
    font-weight: 500;
    font-size: 1.1em;
    display: block;
    margin-bottom: .5em;
}

.company table address {
    font-style: normal;
}

.company table .gmap {
    display: block;
    width: 7em;
    padding: .5em 0 .7em;
    background-color: #ea6b2f;
    color: #fff !important;
    font-size: .9em;
    text-align: center;
    line-height: 1;
    border-radius: 3px;
    transition: all .3s ease;
}

@media screen and (min-width:768px) {
    .company table .gmap {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
}

.company table .gmap:hover {
    background-color: #222;
}

.company .overseas-branches li {
    padding-right: 1em;
    padding-bottom: .25em;
    width: 32%;
}

.company .bank li::before {
    content: '';
    display: inline-block;
    width: .3em;
    height: .3em;
    border: 3px solid #ccc;
    border-radius: 100%;
    margin-right: .5em;
}

@media screen and (max-width:767px) {
    .company .overseas-branches li {
        width: 47%;
    }

    .company table .gmap {
        margin: 1em 0;
    }
}