@charset "utf-8";
/* =========================================================================================
PAGE HEADER
=========================================================================================*/
.page-header {
    min-height: 200px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 20px;
    margin-bottom: 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.page-header::before,
.page-header::after {
    content: "";
    aspect-ratio: 1 / 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    mix-blend-mode: soft-light;
    position: absolute;
    z-index: -1;
}
.page-header::before {
    width: 15%;
    max-width: 260px;
    background-image: url(../images/common/object_gear_s.svg);
    left: -5%;
    bottom: 20%;
}
.page-header::after {
    width: 40%;
    max-width: 530px;
    background-image: url(../images/common/object_gear_l.svg);
    top: 50%;
    right: -5%;
    translate: 0 -50%;
}
.page-header .page-title {
    color: #fff;
    text-align: center;
    font-weight: var(--bold-font-weight);
    letter-spacing: 0.025em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}
.page-header .page-title .jp {
    font-size: clamp(1.778rem, calc(1.403rem + 1.798vw), 2.222rem); /* min: 32px, max: 40px */
    line-height: 1.4;
    margin: 0;
}
.page-header .page-title .en {
    font-size: 1rem;
    line-height: 1;
}

@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
    .page-header {
        min-height: 150px;
    }
}

/* =========================================================================================
LAYOUT
=========================================================================================*/
#main .bg-white {
    width: 90vw;
    min-width: 375px;
    background: #fff;
    margin: 0 auto;
}
.entry-content section:nth-of-type(1) /*ページの一番最初のsection*/ {
    padding-top: 75px;
}
.entry-content section:nth-last-of-type(1) /*ページの一番最最後のsection*/ {
    padding-bottom: 200px;
}
@media only screen and (max-width: 820px) {
    .entry-content section:nth-of-type(1) {
        padding-top: 50px;
    }
    .entry-content section:nth-last-of-type(1) {
        padding-bottom: 150px;
    }
}
@media only screen and (max-width: 468px) {
    .entry-content section:nth-of-type(1) {
        padding-top: 25px;
    }
    .entry-content section:nth-last-of-type(1) {
        padding-bottom: 100px;
    }
}

/*font*/
.unbounded {
    font-family: "Unbounded", sans-serif;
}

/* =========================================================================================
Exhibitor / Search
=========================================================================================*/
section.exhibitor-list {
    padding-top: 50px;
}
section.exhibitor-list .exhibitor-title {
    font-size: clamp(1.875rem, calc(1.348rem + 2.247vw), 2.5rem); /* min: 30px, max: 40px */
    text-align: center;
    width: 80%;
    max-width: 370px;
    background: url(../images/page/exhibitor/exhibitor-title_bg.svg) no-repeat center bottom /
        contain;
    padding-bottom: 0.5em;
    margin: auto;
}
/*検索ボックス*/
#search-area {
    padding-block: 50px;
}
#search-area .exhibitor-cat-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 20px;
}
#search-area .exhibitor-cat-list li a {
    color: var(--green);
    font-size: 0.85em;
    text-align: center;
    font-weight: var(--bold-font-weight);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green);
    padding: 0.5em;
    border-radius: 10px;
}
#search-area .exhibitor-cat-list li a:hover {
    color: #fff;
    background: var(--green);
    text-decoration: none;
}
#search-area form {
    display: grid;
    grid-template-columns: 1fr 40px;
    gap: 5%;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: auto;
}
#search-area input[type="text"] {
    background-color: #fff;
    border: 1px solid var(--green);
    border-radius: 10px;
    padding: 0.25em 0.5em;
    transition: 0.5s;
}
#search-area input[type="submit"] {
    color: #fff;
    padding: 0;
    margin: 0;
    background: var(--green) url(../images/common/icon_search.svg) no-repeat center;
    background-size: 50%;
    width: 40px;
    min-width: auto;
    aspect-ratio: 1 / 1;
    border-radius: 100px;
    text-indent: -9999px;
}
#search-area input[type="submit"]:hover {
    opacity: 0.8;
    transition: 0.3s;
}
#search-area .exhibitor-cat-list.search-day {
    margin-inline: auto;
}
#search-area .box .image {
    width: 80%;
    max-width: 500px;
    margin: 30px auto 0;
}
@media only screen and (max-width: 820px) {
    #search-area .exhibitor-cat-list {
        grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    }
    #search-area .exhibitor-cat-list.search-day {
        max-width: 400px;
        grid-template-columns: repeat(1, 1fr);
    }
}
@media only screen and (max-width: 468px) {
    #search-area {
        padding-block: 25px 50px;
    }
    #search-area .exhibitor-cat-list {
        gap: 10px !important;
    }
    #search-area .box .image {
        margin-top: 10px;
    }
}

/*** 色展開 ***/
.exhibitor-list .post-list.row li {
    padding: 0;
}
.exhibitor-list .post-list.row li .booth {
    color: #fff;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    background: var(--gray-color);
    padding: 0 5px;
}
.exhibitor-list .post-list.row li .booth .booth-number {
    font-size: clamp(1.25rem, calc(1.039rem + 0.899vw), 1.5rem); /* min: 20px, max: 24px */
    white-space: nowrap;
    line-height: 1;
    translate: 0 -0.1em;
}
.exhibitor-list .post-list.row li .booth .place {
    font-size: small;
    padding-block: 5px;
}
.exhibitor-list .post-list.row li .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding: 10px 20px 20px;
}
/*機械・装置・加工技術*/
#search-area .exhibitor-cat-list li a.industry {
    color: #02a2e1;
    border-color: #02a2e1;
}
#search-area .exhibitor-cat-list li a.industry:hover {
    color: #fff;
    background: #02a2e1;
}
.exhibitor-list .post-list.row li.industry {
    border-color: #a5e2fa;
}
.exhibitor-list .post-list.row li.industry .booth {
    background: #a5e2fa;
}
.exhibitor-list .post-list.row li.industry .cat a {
    color: #fff;
    background: #02a2e1;
}
.exhibitor-list .post-list.row li.industry .title a {
    color: #02a2e1;
}

/*IOT・デジタル・通信*/
#search-area .exhibitor-cat-list li a.digital {
    color: #eb6ca3;
    border-color: #eb6ca3;
}
#search-area .exhibitor-cat-list li a.digital:hover {
    color: #fff;
    background: #eb6ca3;
}
.exhibitor-list .post-list.row li.digital {
    border-color: #ffcee3;
}
.exhibitor-list .post-list.row li.digital .booth {
    background: #ffcee3;
}
.exhibitor-list .post-list.row li.digital .cat a {
    color: #fff;
    background: #eb6ca3;
}
.exhibitor-list .post-list.row li.digital .title a {
    color: #eb6ca3;
}
/*防災・アウトドア*/
#search-area .exhibitor-cat-list li a.dp-oa {
    color: #d53c14;
    border-color: #d53c14;
}
#search-area .exhibitor-cat-list li a.dp-oa:hover {
    color: #fff;
    background: #d53c14;
}
.exhibitor-list .post-list.row li.dp-oa {
    border-color: #ffbca9;
}
.exhibitor-list .post-list.row li.dp-oa .booth {
    background: #ffbca9;
}
.exhibitor-list .post-list.row li.dp-oa .cat a {
    color: #fff;
    background: #d53c14;
}
.exhibitor-list .post-list.row li.dp-oa .title a {
    color: #d53c14;
}
/*インテリア・ギフト・生活雑貨*/
#search-area .exhibitor-cat-list li a.lifestyle {
    color: #6eb92b;
    border-color: #6eb92b;
}
#search-area .exhibitor-cat-list li a.lifestyle:hover {
    color: #fff;
    background: #6eb92b;
}
.exhibitor-list .post-list.row li.lifestyle {
    border-color: #b1e880;
}
.exhibitor-list .post-list.row li.lifestyle .booth {
    background: #b1e880;
}
.exhibitor-list .post-list.row li.lifestyle .cat a {
    color: #fff;
    background: #6eb92b;
}
.exhibitor-list .post-list.row li.lifestyle .title a {
    color: #6eb92b;
}
/*その他製造業*/
#search-area .exhibitor-cat-list li a.others {
    color: #246e30;
    border-color: #246e30;
}
#search-area .exhibitor-cat-list li a.others:hover {
    color: #fff;
    background: #246e30;
}
.exhibitor-list .post-list.row li.others {
    border-color: #4d8b57;
}
.exhibitor-list .post-list.row li.others .booth {
    background: #4d8b57;
}
.exhibitor-list .post-list.row li.others .cat a {
    color: #fff;
    background: #246e30;
}
.exhibitor-list .post-list.row li.others .title a {
    color: #246e30;
}
/*教育機関*/
#search-area .exhibitor-cat-list li a.dev-biz {
    color: #ee8000;
    border-color: #ee8000;
}
#search-area .exhibitor-cat-list li a.dev-biz:hover {
    color: #fff;
    background: #ee8000;
}
.exhibitor-list .post-list.row li.dev-biz {
    border-color: #fcb461;
}
.exhibitor-list .post-list.row li.dev-biz .booth {
    background: #fcb461;
}
.exhibitor-list .post-list.row li.dev-biz .cat a {
    color: #fff;
    background: #ee8000;
}
.exhibitor-list .post-list.row li.dev-biz .title a {
    color: #ee8000;
}

/*西部*/
#search-area .exhibitor-cat-list li a.west {
    color: #ee8000;
    border-color: #ee8000;
}
#search-area .exhibitor-cat-list li a.west:hover {
    color: #fff;
    background: #ee8000;
}
/*中部*/
#search-area .exhibitor-cat-list li a.central {
    color: #eb6ca3;
    border-color: #eb6ca3;
}
#search-area .exhibitor-cat-list li a.central:hover {
    color: #fff;
    background: #eb6ca3;
}
/*東部*/
#search-area .exhibitor-cat-list li a.east {
    color: #6eb92b;
    border-color: #6eb92b;
}
#search-area .exhibitor-cat-list li a.east:hover {
    color: #fff;
    background: #6eb92b;
}

/**************  single / page-header ***********************/
body.single-exhibitor .page-header .inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /*padding-right: 150px;*/
    position: relative;
}
body.single-exhibitor .page-header .page-title {
    color: var(--main-color);
    font-size: clamp(0.889rem, calc(0.702rem + 0.899vw), 1.111rem); /* min: 16px, max: 20px */
    line-height: 1.4;
    align-items: start;
    justify-content: left;
    width: fit-content;
    background: #fff;
    padding: 0.375em 15px;
}
body.single-exhibitor .page-header .product-title {
    color: #fff;
    font-size: clamp(1.333rem, calc(0.491rem + 4.045vw), 2.333rem); /* min: 24px, max: 42px */
    font-weight: var(--bold-font-weight);
    line-height: 1.4;
    margin-bottom: 0.25em;
}
body.single-exhibitor .page-header .icon {
    font-size: 0.9em;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: left;
    gap: 0 0.5em;
}
body.single-exhibitor .page-header .icon a:hover {
    color: #fff;
    text-decoration: none;
}
body.single-exhibitor .page-header .booth-area {
    font-size: 0.9em;
    width: 25%;
    max-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    padding: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
    z-index: 5;
}
body.single-exhibitor .page-header .booth-area .number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
body.single-exhibitor .page-header .booth-area .number small {
    display: block;
    font-size: 0.75em;
}
body.single-exhibitor .page-header .booth-area .number b {
    font-size: clamp(1.667rem, calc(-0.112rem + 8.539vw), 3.778rem); /* min: 30px, max: 68px */
    font-weight: var(--black-font-weight);
    line-height: 1;
}
body.single-exhibitor .page-header .booth-area .map {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
body.single-exhibitor .page-header .booth-area .map a {
    color: #fff;
    font-size: 0.7em;
    text-align: center;
    display: block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 0.25em 0.5em;
}
body.single-exhibitor .page-header .booth-area .map a:hover {
    color: var(--main-color);
    text-decoration: none;
    background: #fff;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/**************  single / entry-conten ***********************/
body.single-exhibitor .entry-content section {
    padding-block: 75px;
}
body.single-exhibitor .entry-content .box + .box {
    margin-top: 50px;
}
body.single-exhibitor .entry-content .box .link a[target="_blank"] {
    padding-right: 1.5em;
    background: url(../images/common/icon_window.svg) no-repeat right;
    background-size: 1.25em;
}

@media only screen and (max-width: 820px) {
    body.single-exhibitor .entry-content section {
        padding-block: 50px;
    }
}
@media only screen and (max-width: 468px) {
}

/*pamphlet*/
body.single-exhibitor .pamphlet {
    display: flex;
    justify-content: left;
    padding-top: 0.5em;
}
body.single-exhibitor .pamphlet > li + li {
    margin-left: 0.3rem;
}
body.single-exhibitor .pamphlet > li .icon-pamphlet {
    display: inline-block;
    background-image: url(../images/common/icon-pamphlet.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    font-size: 1.1rem;
    font-weight: var(--black-font-weight);
    color: var(--base-font-color);
    line-height: 1;
    padding: 1rem 1rem 0.5rem;
}
body.single-exhibitor .pamphlet > li .icon-pamphlet img {
    max-width: 225px;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*image-list*/
body.single-exhibitor .box.image-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    align-items: start;
    gap: 30px 5%;
}
body.single-exhibitor .box.image-list li:only-child {
    max-width: 480px;
}
body.single-exhibitor .box.image-list li {
    display: block;
    position: relative;
}
body.single-exhibitor .box.image-list li::after {
    content: "";
    width: 34px;
    aspect-ratio: 1 / 1;
    background: url(../images/common/icon_zoom.svg) no-repeat center;
    background-size: contain;
    border-radius: 100px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 1;
    transition: 0.3s;
}
body.single-exhibitor .box.image-list li:hover::after {
    transform: scale(1.2);
    opacity: 1;
}
body.single-exhibitor .box.image-list li img {
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

@media only screen and (max-width: 820px) {
    body.single-exhibitor .box.image-list ul {
        gap: 30px;
    }
}
@media only screen and (max-width: 468px) {
    body.single-exhibitor .box.image-list ul {
        gap: 20px;
    }
}

/*video*/
body.single-exhibitor .box.video-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: start;
    gap: 30px 5%;
}
body.single-exhibitor .box.video-box .video-frame-inner {
    width: 100%;
    aspect-ratio: 16 / 9;
}
body.single-exhibitor .box.video-box .video-frame-inner:only-child {
    max-width: 480px;
}
body.single-exhibitor .box.video-box .video-frame-inner iframe {
    width: 100%;
    height: 100%;
}
@media only screen and (max-width: 820px) {
    body.single-exhibitor .box.video-box {
        gap: 30px;
    }
}
@media only screen and (max-width: 468px) {
    body.single-exhibitor .box.video-box {
        gap: 20px;
    }
}

/* =========================================================================================
CONTACT
=========================================================================================*/
body.contact #main .inner {
    max-width: var(--small-contents-width);
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
404
=========================================================================================*/
body.error404 .entry-header {
    text-align: center;
    padding: 40px 20px;
    margin: 0;
}
body.error404 .error-message {
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}
body.error404 .error-message p img {
    margin: 0 auto 50px;
    max-width: 300px;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
  Modal
  =========================================================================================*/
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 40px;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 375px;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
}
.modal-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    margin: auto;
}
.modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
    pointer-events: all;
}
.modal-content {
    display: block;
    width: fit-content;
    max-width: 1280px;
    animation: zoom 0.5s;
    position: relative;
}
@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
.modal-content figure {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.75em;
}
.modal-content figure img {
    width: fit-content;
    max-height: 80vh;
    border: 5px solid #fff;
}
.modal-content figure figcaption {
    color: #fff;
    font-size: 0.9em;
}
.close {
    color: var(--main-color);
    font-size: 1em;
    font-weight: bold;
    line-height: 1;
    text-indent: -9999px;
    cursor: pointer;
    user-select: none;
    width: 50px;
    aspect-ratio: 1 / 1;
    background: url(../images/common/icon_close.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 10;
    transition: 0.3s;
}
.close:hover {
    transform: scale(1.2);
}
@media only screen and (max-width: 768px) {
    .modal-wrapper {
        width: 95%;
    }
    .modal {
        padding: 30px;
    }
    .close {
        width: 40px;
        top: -20px;
        right: -20px;
    }
}
@media only screen and (max-width: 576px) {
    .modal-wrapper {
        width: 100%;
    }
    .modal {
        padding: 20px;
    }
    .close {
        width: 30px;
        top: -15px;
        right: -15px;
    }
}
