@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;
}
/*attention*/
dl.attention {
    color: #fff;
    width: 100%;
    background: #ff0000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 1.5em;
    margin: 0 0 30px 0;
}
dl.attention dt {
    font-size: clamp(1.25rem, calc(1.039rem + 0.899vw), 1.5rem); /* min: 20px, max: 24px */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
dl.attention dt small {
    font-size: clamp(0.75rem, calc(0.645rem + 0.449vw), 0.875rem); /* min: 12px, max: 14px */
}
dl.attention dd ul {
    margin-top: 0.5em;
}

/*event-link-area*/
section.event-link-area {
    padding-top: 0;
}
div.event-link-area {
    padding-top: 15vh;
}
.event-link-area h2 {
    text-align: center;
    margin-bottom: 1em;
    translate: 0;
}
.event-link-area .inner {
    max-width: var(--main-contents-width) !important;
}
.event-link-area .parts-event-list .box {
    gap: 30px 5%;
}

/* =========================================================================================
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;
}
section.exhibitor-list .recruit-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/recruit/recruit-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;
}

/* =========================================================================================
Exhibitor - recruit / Search
=========================================================================================*/
body.recruit .page-header {
    min-height: auto;
    background: transparent;
}
body.recruit .page-header::before,
body.recruit .page-header::after {
    display: none;
}
body.recruit .page-header .page-title {
    color: var(--base-font-color);
    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;
    padding: 0.75em;
    margin: 0;
}
body.recruit .page-header .page-title .jp {
    font-size: clamp(1.5rem, calc(1.079rem + 1.798vw), 2rem); /* min: 24px, max: 32px */
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 1;
}
body.recruit .page-header .page-title .jp::before {
    content: "";
    width: 130%;
    max-width: 370px;
    aspect-ratio: 370 / 40;
    background: url(../images/page/exhibitor/recruit/recruit-title_bg.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -49% 0;
    z-index: -1;
}
body.recruit .page-header .page-title .en {
    font-size: 1rem;
    line-height: 1;
}
body.recruit section.exhibitor-list {
    padding-top: 0 !important;
}

/* =========================================================================================
Exhibitor - Single
=========================================================================================*/

/**************  single / page-header ***********************/
body.single-exhibitor .page-header {
    background: transparent;
}
body.single-exhibitor .page-header::before,
body.single-exhibitor .page-header::after {
    display: none;
}
body.single-exhibitor .page-header .page-title {
    text-align: center;
    font-weight: var(--bold-font-weight);
    letter-spacing: 0.025em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
}
body.single-exhibitor .page-header .page-title .jp {
    color: #fff;
    font-size: clamp(1.5rem, calc(1.079rem + 1.798vw), 2rem); /* min: 24px, max: 32px */
    line-height: 1.4;
    min-width: 40%;
    background: #8ed3ef;
    border: 2px solid #49b5e0;
    padding: 0.375em 1em;
    margin: 0;
    position: relative;
    z-index: 1;
}
body.single-exhibitor .page-header .page-title .jp::before,
body.single-exhibitor .page-header .page-title .jp::after {
    content: "";
    width: 345px;
    aspect-ratio: 345 / 40;
    background: url(../images/page/exhibitor/object_corner.svg) no-repeat center / contain;
    position: absolute;
    z-index: 5;
}
.page-header .page-title .jp::before {
    top: 0;
    left: 0;
    translate: -89% -40%;
}
.page-header .page-title .jp::after {
    right: 0;
    bottom: 0;
    translate: 89% 40%;
    transform: scale(-1, -1);
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/**************  single / entry-content ***********************/
body.single-exhibitor .entry-content section {
    padding-block: 0 50px;
}
body.single-exhibitor .entry-content .box + .box {
    margin-top: 50px;
}
body.single-exhibitor .entry-content h2.mid-exhibitor {
    font-size: clamp(1rem, calc(0.895rem + 0.449vw), 1.125rem); /* min: 16px, max: 18px */
    font-weight: var(--normal-font-weight);
    line-height: 1.5;
    width: fit-content;
    background: #a8e7ff;
    padding: 0.25em 0.5em;
    margin-bottom: 0.5em;
    position: relative;
    z-index: 1;
}
body.single-exhibitor .entry-content h2.mid-exhibitor::after {
    content: "";
    height: 100%;
    aspect-ratio: 40 / 26;
    background: url(../images/page/exhibitor/mid-bg.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 0;
    translate: 95% -50%;
    z-index: -1;
}
body.single-exhibitor .entry-content p.company-name {
    font-size: clamp(1.25rem, calc(1.039rem + 0.899vw), 1.5rem); /* min: 20px, max: 24px */
}
body.single-exhibitor .entry-content .box .link a[target="_blank"] {
    font-size: clamp(1rem, calc(0.895rem + 0.449vw), 1.125rem); /* min: 16px, max: 18px */
    background: url(../images/common/icon_window.svg) no-repeat right;
    background-size: 1.25em;
    padding-right: 1.5em;
}
body.single-exhibitor .entry-content p.icon {
    font-size: clamp(0.75rem, calc(0.645rem + 0.449vw), 0.875rem); /* min: 12px, max: 14px */
    line-height: 1.7;
}
body.single-exhibitor .entry-content p.icon a {
    text-decoration: none;
}
body.single-exhibitor .entry-content p.product-title {
    font-size: clamp(1.25rem, calc(1.039rem + 0.899vw), 1.5rem); /* min: 20px, max: 24px */
}
body.single-exhibitor .entry-content p.description {
    font-size: clamp(1.125rem, calc(1.02rem + 0.449vw), 1.25rem); /* min: 18px, max: 20px */
}
@media only screen and (max-width: 820px) {
}
@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: 320px;
}
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: 320 / 180;
    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;
    }
}

/*recruit*/
body.single-exhibitor #recruit-info {
    padding-top: 100px;
    line-height: 1.5;
}
body.single-exhibitor #recruit-info .mid-recruit {
    text-align: center;
    letter-spacing: 0.025em;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, #fff 0%, #fff calc(100% - 3px), #91dafc calc(100% - 3px), #91dafc 100%);
    justify-content: center;
    margin: 0 0 50px 0;
}
body.single-exhibitor #recruit-info .mid-recruit .company-name {
    font-size: clamp(0.875rem, calc(0.77rem + 0.449vw), 1rem); /* min: 14px, max: 16px */
    font-weight: var(--normal-font-weight);
    background: #fff;
    padding: 5px 10px;
    position: relative;
    z-index: 5;
    translate: 0 10px;
}
body.single-exhibitor #recruit-info .mid-recruit b {
    font-size: clamp(1.5rem, calc(1.079rem + 1.798vw), 2rem); /* min: 24px, max: 32px */
    white-space: nowrap;
    background: #fff;
    font-weight: var(--bold-font-weight);
    line-height: 1.4;
    padding-inline: 100px;
    margin: 0;
    position: relative;
    z-index: 1;
    translate: 0 10px;
}
body.single-exhibitor #recruit-info .mid-recruit b::before,
body.single-exhibitor #recruit-info .mid-recruit b::after {
    content: "";
    width: 103px;
    aspect-ratio: 103 / 48;
    background: url(../images/page/exhibitor/object_side.svg) no-repeat center / contain;
    position: absolute;
    z-index: 5;
}
body.single-exhibitor #recruit-info .mid-recruit b::before {
    bottom: 0;
    left: 0;
    translate: -5px -10px;
}
body.single-exhibitor #recruit-info .mid-recruit b::after {
    bottom: 0;
    right: 0;
    translate: 5px -10px;
    transform: scale(-1, 1);
}
body.single-exhibitor #recruit-info th,
body.single-exhibitor #recruit-info td {
    background: none;
    border-bottom: 1px dashed #02a2e1;
    padding-block: 1.5em;
}
body.single-exhibitor #recruit-info th {
    color: #02a2e1;
    text-align: left;
    width: 300px;
    padding-left: 0;
}
body.single-exhibitor #recruit-info td ul {
    display: flex;
    flex-wrap: wrap;
}
body.single-exhibitor #recruit-info td ul li::after {
    content: "∕";
}
body.single-exhibitor #recruit-info td ul li:last-child:after {
    display: none;
}
body.single-exhibitor #recruit-info td ul.features {
    gap: 0.5em 1em;
}
body.single-exhibitor #recruit-info td ul.features li {
    font-size: clamp(0.875rem, calc(0.77rem + 0.449vw), 1rem); /* min: 14px, max: 16px */
    border: 1px solid #02a2e1;
    border-radius: 50px;
    padding: 0.25em 0.75em;
}
body.single-exhibitor #recruit-info td ul.features li::after {
    display: none;
}
body.single-exhibitor #recruit-info .metric {
    min-height: 265px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: url(../images/page/exhibitor/metric_bg.png) no-repeat center / 100% 100%;
    padding: 30px;
    margin-top: 75px;
}
body.single-exhibitor #recruit-info .metric h3 {
    font-size: clamp(1.25rem, calc(1.039rem + 0.899vw), 1.5rem); /* min: 20px, max: 24px */
    margin-bottom: 1em;
}
body.single-exhibitor #recruit-info .metric strong {
    font-size: clamp(1rem, calc(0.85rem + 0.64vw), 1.25rem); /* min: 16px, max: 20px */
    width: 100%;
    max-width: 725px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15%;
}
body.single-exhibitor #recruit-info .metric strong span {
    text-align: center;
}
body.single-exhibitor #recruit-info .metric .detail-image {
    width: 80%;
    max-width: 550px;
}
body.single-exhibitor #recruit-info #video-area {
    margin-top: 100px;
}
@media only screen and (max-width: 820px) {
    body.single-exhibitor #recruit-info th,
    body.single-exhibitor #recruit-info td {
        display: block;
        width: 100%;
        padding-inline: 0;
    }
    body.single-exhibitor #recruit-info th {
        padding-bottom: 0;
        border-bottom: none;
    }
    body.single-exhibitor #recruit-info td {
        padding-top: 0.5em;
    }
    body.single-exhibitor #recruit-info .metric {
        min-height: auto;
        margin-top: 50px;
    }
}
@media only screen and (max-width: 468px) {
    body.single-exhibitor #recruit-info .metric {
        padding-inline: 20px;
    }
    body.single-exhibitor #recruit-info .metric strong span {
        max-width: 110px;
    }
    body.single-exhibitor #recruit-info .metric .detail-image {
        width: 90%;
    }
}
/* =========================================================================================
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;
    }
}
