@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: 20px;
	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: multiply;
	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
=========================================================================================*/
.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;
	}
}

/* =========================================================================================
COMPANY
=========================================================================================*/
/*greeting*/
body.company .greeting .flex-box {
	display: flex;
	flex-wrap: nowrap;
	gap: 50px;
}
body.company .greeting .flex-box .photo {
	text-align: center;
	max-width: 300px;
	min-width: 200px;
}
body.company .greeting .flex-box .message {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
body.company .greeting .flex-box .message .signature {
	margin-top: 1em;
}
body.company .greeting .flex-box .message .post {
	text-align: right;
}
body.company .greeting .flex-box .message .name {
	text-align: right;
	font-size: 1.5em;
}

@media only screen and (max-width: 820px) {
	body.company .greeting .flex-box {
		flex-wrap: wrap;
		justify-content: center;
	}
	body.company .greeting .flex-box .item {
		width: 100% !important;
	}
}
@media only screen and (max-width: 468px) {
}

/*overview*/
body.company .overview table {
	width: 100%;
	max-width: 900px;
	margin: auto;
	border-spacing: 0;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
body.company .overview th,
body.company .overview td {
	text-align: left;
	padding: 1em;
	border-bottom: 1px solid #ccc;
}
body.company .overview th {
	background: #ddd;
	width: 200px;
}
body.company .overview .file-list li + li {
	margin-top: 0.5em;
}
body.company .overview .file-list li a[target="_blank"] {
	padding-right: 1.5em;
	background: url(../images/common/icon_file.svg) no-repeat right;
	background-size: 1em;
}
@media only screen and (max-width: 820px) {
	body.company .overview th,
	body.company .overview td {
		display: block;
	}
	body.company .overview th {
		width: 100%;
	}
}
@media only screen and (max-width: 468px) {
}

/*access*/
body.company .access .flex-box {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-around;
}
body.company .access .flex-box + .flex-box {
	margin-top: 100px;
}
body.company .access .flex-box .map {
	width: calc(100% - 400px);
}
body.company .access .flex-box .map iframe {
	width: 100% !important;
	max-height: 400px !important;
}

@media only screen and (max-width: 820px) {
	body.company .access .flex-box {
		flex-direction: column-reverse;
		gap: 10px;
	}
	body.company .access .flex-box .item {
		width: 100% !important;
	}
	body.company .access .flex-box .map iframe {
		max-height: 300px !important;
	}
}
@media only screen and (max-width: 468px) {
}

/*history*/
body.company .history .history-block {
	position: relative;
	padding-left: 50px;
	width: 100%;
	max-width: 900px;
	margin: auto;
}
body.company .history .history-block::before {
	content: "";
	position: absolute;
	width: 3px;
	height: 100%;
	background: #ccc;
	top: 20px;
	left: 25px;
}
body.company .history .history-block dl {
	display: flex;
	justify-content: left;
	gap: 30px;
	align-items: start;
}
body.company .history .history-block dl + dl {
	margin-top: 50px;
}
body.company .history .history-block dt {
	font-size: 2em;
	font-weight: bold;
	line-height: 1;
	white-space: nowrap;
	position: relative;
}
body.company .history .history-block dt::before {
	content: "";
	position: absolute;
	width: 20px;
	aspect-ratio: 1 / 1;
	background: #ccc;
	top: 7px;
	left: -33px;
	border-radius: 50%;
}

@media only screen and (max-width: 820px) {
	body.company .history .history-block dl {
		flex-direction: column;
		gap: 15px;
	}
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
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) {
}

/* =========================================================================================
SINGLE-CUSTOM
=========================================================================================*/
/*slider-area*/
body.single .slider-area {
	padding-bottom: 0;
}
body.single .slide-contents {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}
body.single .slider-main .swiper-wrapper,
body.single .slider-thumbnail .swiper-wrapper {
	overflow: hidden;
	width: 100%;
}
body.single .slider-main .swiper-slide img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
}
body.single .slider-thumbnail .swiper-wrapper {
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: start;
}
body.single .slider-thumbnail .swiper-slide {
	width: auto; /*表示数と余白はcommon.jsで管理*/
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.5s;
}
body.single .slider-thumbnail .swiper-slide img {
	width: 100%;
	aspect-ratio: 2 / 1;
	object-fit: cover;
	object-position: center;
}
body.single .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
	opacity: 1;
}

@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) {
}

/* =========================================================================================
Exhibitor / Search
=========================================================================================*/
/*検索ボックス*/
section#search-area {
	padding-block: 50px;
}
section#search-area .exhibitor-cat-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}
section#search-area .exhibitor-cat-list li a {
	font-size: 0.85em;
	text-align: center;
	border: 1px solid var(--green);
	padding: 0.5em;
	border-radius: 10px;
	display: block;
}
section#search-area .exhibitor-cat-list li a:hover {
	color: #fff;
	background: var(--green);
	text-decoration: none;
}
section#search-area .exhibitor-cat-list.search-name {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: left;
	gap: 0.75em;
}
section#search-area .exhibitor-cat-list.search-name li a {
	padding: 0.5em 0.75em;
}
section#search-area form {
	display: grid;
	grid-template-columns: 1fr 40px;
	gap: 5%;
	align-items: center;
	width: 100%;
	max-width: 600px;
	margin: auto;
}
section#search-area input[type="text"] {
	background-color: #fff;
	border: 1px solid var(--green);
	border-radius: 10px;
	padding: 0.25em 0.5em;
	transition: 0.5s;
}
section#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;
}
section#search-area input[type="submit"]:hover {
	opacity: 0.8;
	transition: 0.3s;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
	section#search-area .exhibitor-cat-list {
		gap: 10px !important;
	}
}

/**************  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;
	}
}

/* =========================================================================================
  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;
	}
}
