﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@400&display=swap');

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

	ContentsElements

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

body {
	font-family: 'Noto Sans JP', sans-serif;
}

/* =======================================
	PAGE ELEMEMTS
======================================= */
.static #headerwrap,
.static section h1 {
	width: 1000px;
}
.static section {
    max-width: 1400px;
}
.static section .contents_wrap{
	margin-inline:  auto;
	max-width: 1000px;
}
.static section h1 {
    padding: 10px 0 8px 0;
}
.static section h1 span {
	margin-right: 15px;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2.6rem;
	font-weight: normal;
	letter-spacing: 0;
}

#drop-area {
	width: 100%;
	margin: 20px auto;
	padding: 50px;
	border: 4px dashed #bbb;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 1px;
	box-sizing: border-box;
}

/* リキッドレイアウトに対応するグリッド */
.filter-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
	justify-content: center;
}

/* フィルター画像の配置 */
.filter-item, figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: top;
	width: 100%;
	max-width: 250px; /* 画像サイズの最大幅 */
	margin: 0 auto 20px;
}

/* 画像のリキッド対応 */
img {
	width: 100%;
	height: auto;
}

.filter-container {
	padding: 30px 0;
}

/* 各フィルタータイトル */
figcaption {
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
	letter-spacing: 2px;
	background: #f6f5f8;
	display: block;
	width: 100%;
	line-height: 2;
	box-sizing: border-box;
}

/* スライダー調整 */
input[type="range"] {
	width: 100%;
	max-width: 200px;
	margin: 12px 5px 2px;
	accent-color: black;
}

/* コード表示用のテキストボックス */
input[type="text"] {
	width: 100%;
	text-align: center;
	margin-top: 10px;
	padding: 8px 0;
	border: #bbb 1px solid;
	background: transparent;
	font-size: 16px;
	letter-spacing: 1px;
	cursor: pointer;
}
.filter-name {
	font-weight: bold;
	margin-bottom: 5px;
	padding: 0;
}
.filter-title {
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}

@media only screen and (max-width: 1000px) {
	body {
		min-width: 0;
	}

	header,section,footer {
		padding: 0 30px;
		box-sizing: border-box;
	}
	footer {
		padding: 20px 30px;
	}

	.static section,
	.static section h1,
	.static #textArea,
	.static #textArea textarea,
	.static #social {
		width: 100%!important;
		box-sizing: border-box;
	}
}

@media only screen and (max-width: 768px) {
	h1 span {
		margin: 0 0 5px;
		font-size: 2.6rem;
		display: block;
	}
}

/*カスタムフィルター*/
.filter-group {
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	height: 100%;
}
.filter-group .image-container {
	flex: 1;
	min-width: 300px;
}
.filter-group .sliders-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	background: #f6f5f8;
	padding: 20px;
	box-sizing: border-box;
}
.filter-group label {
	/* display: flex; */
	justify-content: space-between;
	margin-top: 3px;
	font-weight: bold;
	width: 100%;
	text-align: center;
	padding-right: 60px;
	box-sizing: border-box;
	vertical-align: middle;
}
.filter-group label * {
	vertical-align: middle;
	line-height: 1.6;
	letter-spacing: 1px;
}
.filter-group label span {
	width: 4rem;
	display: inline-block;
	text-align: right;
}
.filter-group label .filtername {
	width: 19rem;
	text-align: right;
	white-space: nowrap;;
}
.filter-group label input[type="range"] {
	margin: 5px 5px 0;
}
#combined-filter {
	margin-top: 20px;
}
@media screen and (max-width: 1175px) {
	.filter-group {
		flex-direction: column;
		align-items: center;
	}
}
