@charset "utf-8";

/** --------------------------------------------------------------------------
** css
 * ------------------------------------------------------------------------ */
/*全体*/
ul {
	padding: 0;
}

ul li {
	padding: 0;
	list-style: none;
}

ul.style-disc li {
	list-style: disc;
}

/** --------------------------------------------------------------------------
	* main
	* form
	* asset_menu
	* asset_list
	* download-box
	* inquiry
 * -------------------------------------------------------------------------- */
.webasset {}

/* main */
.webasset .main {
	padding: 40px 60px;
	border-radius: 3px;
	background-color: #fff;
}

.search_box {
	margin-bottom: 20px;
	border: 4px solid #cccccc;
}

.search_box div:nth-child(2):before {
	content: " ";
	padding-right: 1rem;
	border-left: 1px solid #ccc;
}

.search_box div:nth-child(3) {
	padding-right: 0;
}

.search_box div.col-2 {
	padding-right: 0;
}

/*form*/
/* select */
.search_box .custom {
	padding: 0;
	overflow: hidden;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background-color: white;
/*	border-radius: 10px;*/
}

.search_box .custom>select {
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	width: 100%;
	padding: 0.6em 2.4em 0.6em 0.6em;
	font-size: 1rem;
	color: #212529;
	-webkit-text-fill-color: #212529;
}
.search_box .custom>select option {
	color: #212529;
}
.search_box .custom:after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 1.8em;
	display: block;
	content: "";
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGFBMVEUAAAAZJCYWISIYIyQYIiUWIiIYIyQYIiXh0rToAAAACHRSTlMA/hTRqiinvwFkb0sAAABCSURBVHjajchBDsAgDAPBOJDw/x+XVN0icQGfPGs3i+2GEqeiLCXWLENzvdzrDfP2ls/NjfKbgimYglfBq2Dm+LwHguMA235EdKYAAAAASUVORK5CYII=") center no-repeat;
	pointer-events: none;
}

.search_box select {
	border: none;
	background-color: #fff;
}

.search_box input {
	border: none;
}

.search_box input[type="text"] {
	margin-left: 1rem;
	width: calc(100% - 3.5em);
	height: 100%;
}

.search_box input[type="text"]:focus {
	outline-style: none;
}

.search_box a {
	width: 100%;
	height: 100%;
	border-radius: 0;
}

/**/
.main .kiyaku {
	text-align: right;
	font-size: 0.75em;
	margin-right: -1.0em;
}

.main .asset_menu {
	margin-bottom: 0;
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main .asset_menu li:before {
	content: "";
	width: 1px;
	height: 1rem;
	border-right: 1px solid #ccc;
}

.main .asset_menu li:first-child:before {
	border-right: none;
}

.main .asset_menu li a {
	padding: 0 10px;
	line-height: 2;
	font-size: 0.85em;
}

/*asset_list*/
.asset_list {}

.asset_list a {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 3px;
	background-color: #fff;
	padding-bottom: calc(164 / 265 * 100%); /* 16:9 の比率 */
}

.asset_list a::before {
	content: "";
	display: block;
}

.asset_list a img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
	transform-origin: center center;
}

.asset_list a:hover img.img-fluid {
	transform: scale(1.25);
}

.thumbnail-with-plus {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.thumbnail-with-plus::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	border-top: 80px solid rgba(12, 109, 253, 0.5);
	border-right: 80px solid transparent;
	z-index: 1;
}

.asset_list a img.plus-icon-svg {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 25px;
	height: 25px;
	z-index: 2;
}


.asset_list a p {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	background: rgba(255,255,255,0.6);
	color: black;
	padding: 5px;
	margin-bottom: 0;
	text-shadow: 0 0 4px #fff;
	text-align: center;
	font-size: 0.9em;
	z-index: 2;
	transition: transform 0.3s ease-in-out; /* 下がるアニメーション */
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.asset_list a:hover p {
	transform: translateY(35px); /* マウスオーバー時に上に移動 (初期の隠れている位置まで) */
}

/*page navigation*/
.page-navi-text {
	color: #999999;
	text-align: center;
}


/*download-box*/
.download-box {
	display: flex;
	width: 100%; /* 親要素の幅いっぱいに広げる */
	max-height: 530px; /* 必要に応じて高さを設定 (例: 画面全体) */
}

.left-content {
	flex-grow: 1; /* 残りのスペースをすべて占める */
	/*background-color: lightblue;  可視化のため */
}

.right-fixed {
	width: 300px; /* 右側の固定幅 */
	flex-shrink: 0; /* 縮小しない */
	/*background-color: lightcoral;  可視化のため */
	padding-left: 30px;
}

.left-content figure {
	background-color: #fff;
	width: 100%;
	height: 100%;
	text-align: center;
	overflow: hidden;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.left-content figure img.img-fluid {
	margin: auto;
	max-height: 100%;
}

.right-fixed li .img-article-text {
	display: flex; /*  要素を Flex コンテナにする */
	justify-content: space-between; /* 子要素を左右に配置し、間にスペースを均等に配置 */
	align-items: center; /* 必要に応じて、垂直方向の中央揃え */
	padding: 0;
	background-color: #fff;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}

.right-fixed li .img-article-text::after {
  content: "";
  position: absolute;
  top: 50%; /* 垂直方向の中央 */
  left: 0;
  right: 0;
  height: 1px; /* 点線の太さ */
  background-image: repeating-linear-gradient(90deg, #ccc, #ccc 2px, transparent 2px, transparent 4px); /* 横方向の点線グラデーション */
  z-index: 0; /* テキストより下 */
}

.right-fixed li .img-article-text span,
.right-fixed li a,
.right-fixed li button {
	line-height: 1.5;
	padding: .75rem;
	display: inline-block;
	position: relative;
	z-index: 1; /* テキストより下 */
}
.right-fixed li .img-article-text span{
	background-color: #fff;
}
.right-fixed li a,
.right-fixed li button {
	width: 100%;
	display: block;
}

ul.tag-list {
	margin: 0 -6px;
	display: flex;
	flex-wrap: wrap;
}
ul.tag-list li {
	padding: 8px 0;
	margin-bottom: 10px;
}

ul.tag-list li a {
	margin: 0 .375rem;
	border-radius: 10rem;
	background-color: #000;
	color: #fff;
	padding: .75rem 1.75rem;
	white-space: nowrap;
}

/** --------------------------------------------------------------------------
	* responsive
	** Extra large (max-width: 1140px)
	** Large (min-width: 992px)
	** Small (max-width: 576px)
 * -------------------------------------------------------------------------- */

/*Extra large*/
@media screen and (max-width: 1140px) {}

/*Large
@media screen and (max-width: 992px) {
	.download-box {
		display: block;
		height: auto;
	}
	.right-fixed {
		width: calc(100% - .25rem);
		padding-left: .25rem;
	}
}*/

/*Small*/
@media screen and (max-width: 576px) {

	/* main */
	.webasset .main {
		padding: 20px 0 0;
	}

	.search_box {
		border: none;
		margin: 0 20px 20px;
	}

	.search_box .custom {
		padding-left: 3px;
		border: 4px solid #ccc;
		border-bottom: 1px solid #ccc;
	}

	.search_box .custom:after {
		margin-right: 7px;
	}

	.search_box div:nth-child(2) {
		border: 4px solid #ccc;
		border-top: none;
	}

	.search_box div:nth-child(2)::before {
		padding: 0;
		border: none;
	}

	.search_box input[type="text"] {
		padding: 0.8em 0.6em 0.8em 0.6em;
		margin-left: 0;
		width: calc(100% - 1.5em);
		font-size: 1rem;
	}

.search_box div:nth-child(3) {
	padding: 1em 0.6em 0.6em 0.6em;
}

.search_box div:nth-child(3) .btn {
	width: auto;
}

	.main .kiyaku {
		margin: -0.6em 20px 0px;
		padding: 0 0 20px;
	}
	.main .asset_menu {
		display: block;
	}

	.main .asset_menu li {
		padding: 5px 20px;
		text-align: left;
		width: 100%;
		border-top: 1px solid #ccc;
	}

	.main .asset_menu li a {
		padding: 0;
		display: block;
	}

	.main .asset_menu li::before {
		border-right: none;
	}

/**/
	.download-box {
		flex-direction: column; /* 縦方向に並べる */
		max-height: none; /* 高さも自動調整 */
	}

	.right-fixed {
		padding-left: 0;
		width: 100%; /* 幅いっぱいに */
	}
}