@charset "utf-8";

/*------------------------------*/
/* 全体設定 */
/*------------------------------*/
body {
	font-size:14px;
	line-height: 1.8;
}

/*------------------------------*/
/* ヘッダー */
/*------------------------------*/
/* ヘッダー枠 */
.header_box {
	background-color: #000000;
	width:100%;
	height:auto;
	padding:10px 20px;
	position: fixed;
	top:0px;
	left:0px;
	z-index: 3;
}
/* スマホ */
@media only screen and (max-width:599px) {
	.header_box {
		padding:5px;
	}
}

/*----------*/
/* メインタイトル */
.contents_main_header_title {
	position: absolute;
	width:calc(100% - 20px);
	text-align:center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	font-weight: bold;
	text-shadow: 2px 2px 3px #ffffff;
}

/*------------------------------*/
/* メインコンテンツ */
/*------------------------------*/
#main_contents {
	max-width:1400px;
	margin-top:30px;
	margin-left:auto;
	margin-right:auto;
	box-sizing:border-box;
	overflow: hidden;
}

/*----------*/
/* タイトル帯 */
.title_line {
	display: block;
	border-left:10px solid #666666;
	border-bottom:1px solid #666666;
	background-color: #f0f0f0;
	padding:5px 10px 5px 10px;
	transition: 0.3s;
	margin-bottom:5px;
	font-size:15px;
	font-weight: bold;;
}

/*----------*/
/* ミニアイコン */
.mini_icon_1 {
	background-color:#cccccc;
	padding: 5px 10px;
	border-radius:50px;
	font-size:14px;
	line-height: 40px;
	color:#000000;
	margin-left: 5px;
	margin-bottom: 7px;
	white-space:nowrap;
	transition: 0.3s;
}
.mini_icon_1:hover {
	background-color:#666666;
	color:#ffffff;
}

/*------------------------------*/
/* レフトメニュー */
/*------------------------------*/
#left_box {
	float:left;
	width:220px;
	box-sizing:border-box;
	padding:10px;
}
/* スマホ */
@media only screen and (max-width:599px) {
	#left_box {
		display:none;
	}
}

/*----------*/
/* メインメニュー (表題) */
.main_menu_b {
	display: block;
	padding:5px 10px 5px 10px;
	transition: 0.3s;
	font-size:15px;
	background-color:#666666;
	color:#ffffff;
}

/* メインメニュー */
.main_menu {
	display: block;
	padding:5px 10px 5px 10px;
	transition: 0.3s;
	margin-bottom:20px;
	font-size:15px;
	background-color:#666666;
	color:#ffffff;
}

/*----------*/
/* 親カテゴリーリンク */
.category_menu {
	position: relative;
	display: block;
	border-left: 10px solid #666666;
	border-bottom: 1px solid #666666;
	padding: 5px 10px;
	font-size: 13px;
	margin-bottom: 10px;
	overflow: hidden;
}

.category_menu::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #cccccc;
	transition: width 0.1s ease-out;
	z-index: 0;
}

.category_menu:hover::before {
	width: 100%;
}

.category_menu span {
	position: relative;
	z-index: 1;
}

/* ON */
.category_menu_on {
	background-color: #cccccc;
}

/*----------*/
/* 子カテゴリーリンク */
.flip_frame {
	display: block;
	height: 30px;
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 10px;
	font-size:12px;
}
.flip_box {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.2s ease;
}
.flip_frame:hover .flip_box {
	transform: rotateX(90deg);
}
.flip_face {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: flex-start;
	padding-left: 10px;
	font-size:12px;
}
.front {
	transform: rotateX(0deg) translateZ(15px); /* 半分 */
}
.back {
	transform: rotateX(-90deg) translateZ(15px); /* 半分 */
	border-bottom: 1px solid #cccccc;
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.1));
	border-left: 3px solid #cccccc;
}
.back::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
	height: 0;
	border-right: 20px solid #cccccc;
	border-bottom: 20px solid transparent;
}

/* ON */
.category_sub_menu_on .flip_box {
	transform: rotateX(90deg);
}

/*------------------------------*/
/* メインボックス */
/*------------------------------*/
#main_box {
	padding:10px;
	padding-left:220px;
	box-sizing:border-box;
}
/* スマホ */
@media only screen and (max-width:599px) {
	#main_box {
		padding-left: initial;
		padding:10px;
	}
}

/*----------*/
/* サムネイルの高さ制御用 */
.list_image_frame_300 {
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	overflow: hidden;
	text-align: center;
	position: relative;
}

.list_image_frame_300 img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: 100%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	object-fit: cover;
}

/*------------------------------*/
/* フッター */
/*------------------------------*/
#footer {
	margin-top:200px;
}
.footer_box {
	background-color: #000000;
	width:100%;
	padding:10px;
	color: #ffffff;
	text-align: center;
}

/* -------------------------------------------------- */
/* 詳細ページ固有 */
/* -------------------------------------------------- */

/* hx */
.h1_title {
	display: block;
	border-left:10px solid #666666;
	border-bottom:1px solid #666666;
	background-color: #f0f0f0;
	padding:5px 10px 5px 10px;
	transition: 0.3s;
	margin-bottom:5px;
	font-size:15px;
}
.toggle_comment {
	display: block;
	border-left:10px solid #666666;
	border-bottom:1px solid #666666;
	background-color: #f0f0f0;
	padding:5px 10px 5px 10px;
	transition: 0.3s;
	margin-bottom:5px;
	font-size:15px;	cursor:pointer;
}

/* 線 */
.task_border_top_cccccc_d {
	border:none;
	border-top:1px dotted #cccccc;
}

/* コメントのスタイル */
.comment {
	padding:10px;
}

/* リンク */
.comment a {
	color:#4169e1;
}

/* プルダウン↓矢印 */
.title_line .down_arrow {
	animation: blink 1.5s ease-in-out infinite;
	transform-origin: top center;
}

@keyframes blink {
	0% {
		transform: scale(3.5) rotate(5deg) translate(-2px,-12px);
	}
	50% {
		transform: scale(3.5) rotate(-5deg) translate(2px,-12px);
	}
	100% {
		transform: scale(3.5) rotate(5deg) translate(-2px,-12px);
	}
}

.down_arrow {
	width: 30px;
	height: auto;
	float: right;
	transition: transform 2s ease;
}

/*------------------------------*/
/* トップへ戻るボタン */
/*------------------------------*/
.js_scroll_top_button {
	width:50px;
	height:50px;
	position: fixed;
	z-index: 102;
	bottom: 120px;
	right:10px;
	background-color: rgba(255,255,255,0.8);
	color: #666666;
	border:1px solid #666666;
	border-radius:2px;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	-webkit-user-select: none; /* Chrome or Safari */
	-webkit-touch-callout: none; /* Android and iOS*/
	-moz-user-select: none; /* FireFox */
	-ms-user-select: none; /* IE */
	-o-user-select: none; /* Opera */
	user-select: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* スマホハイライトカラー */
	display: none;
	transition:0.3s;
}
.js_scroll_top_button:hover {
	background-color: #f0f0f0;
}

/* 上矢印 */
.up_arrow {
	position: absolute;
	top:50%;
	left:50%;
	width:40%;
	height:40%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
}

/*------------------------------*/
/* ハンバーガーボタン */
/*------------------------------*/
.js_menu_switch {
	width:50px; /* 外幅 */
	height:50px; /* 外高 */
	right:10px;
	bottom: 60px;
	position: fixed;
	z-index: 102;
	background-color: rgba(255,255,255,0.8);
	color: #666666;
	border:1px solid #666666;
	border-radius:2px;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	-webkit-user-select: none; /* Chrome or Safari */
	-webkit-touch-callout: none; /* Android and iOS*/
	-moz-user-select: none; /* FireFox */
	-ms-user-select: none; /* IE */
	-o-user-select: none; /* Opera */
	user-select: none;
	padding:15px 12px; /* [外高 - (三本線の高さ / 2)] [左右スペース] */
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* スマホハイライトカラー */
	transition:0.3s;
}
.js_menu_switch:hover {
	background-color: #f0f0f0;
}

/*-----*/
/* 外枠の半分の高さ + 棒の太さ = 偶数で安定 */
.js_menu_trigger {
	position: relative;
	box-sizing: border-box;
	height: 20px; /* 三本線の高さ */
}
.js_menu_trigger div {
	transition:0.5s;
	position:absolute;
	width:100%;
	height:2px; /* 棒の太さ */
}
.js_menu_trigger div:nth-of-type(1) {
	background-color:#666666;
	top:0px;
}
.js_menu_trigger div:nth-of-type(2) {
	background-color:#666666;
	top:50%;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
}
.js_menu_trigger div:nth-of-type(3) {
	background-color:#666666;
	bottom:0px;
}

/*------------------------------*/
/* モバイルメニュー枠 */
/*------------------------------*/
.js_mobile_nav {
	/* right:-100%; /* 右 */
	background-color:#ffffff;
	border-right:1px solid #cccccc;
	position:fixed;
	box-sizing:border-box;
	top:0px;
	width:100%;
	max-width:300px;
	z-index:101;
	overflow:auto;
	height:100%;
	left:-100%; /* 左 */
	padding:10px 10px 200px 10px;
	transition:0.3s;
}

/*------------------------------*/
/* モバイルメニューリンクボタン */
.mobile_menu_button {
	display:block;
	font-size:14px;
	padding:10px 5px 10px 20px;
	transition:0.3s;
}
.mobile_menu_button:hover {
	color: #ff0000;
}

/* ------------------------------ */
/* 共通部品 */
/* ------------------------------ */
/* FORM用のスタイル */
.input_form_01 {
	height: 34px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-sizing: border-box;
	background-color: #ffffff;
	max-width: 100%;
	padding: 2px 5px;
	border: 1px solid #d9d9d9;
	border-radius: 7px;
	font-size: 14px;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* チェックボックス・ラジオボックス */
.checkbox_form_01 {
	width: 18px;
	height: 18px;
	background-color: #ffffff;
	box-sizing: border-box;
	padding: 0px;
	border-radius: 7px;
	font-size: 12px;
	cursor:pointer;
	border: 1px solid #cccccc;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	transform: translateY(3px);
	-webkit-transform: translateY(3px);
}

/* セレクトボックス */
.select_form_01 {
	height: 34px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #ffffff;
	max-width: 100%;
	padding: 2px 5px;
	border: 1px solid #d9d9d9;
	border-radius: 7px;
	font-size: 14px;
	background-image: url('/image/down_arrow.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 30px 25px;
	cursor:pointer;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* テキストエリア */
.min_height_50 {
	min-height: 50px;
	border: 1px solid #d9d9d9;
	font-size: 14px;
	padding: 10px;
	border-radius: 7px;
	line-height:20px; /* auto_textarea */
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.min_height_100 {
	min-height: 100px;
	border: 1px solid #d9d9d9;
	font-size: 14px;
	padding: 10px;
	border-radius: 7px;
	line-height:20px; /* auto_textarea */
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.min_height_200 {
	min-height: 200px;
	border: 1px solid #d9d9d9;
	font-size: 14px;
	padding: 10px;
	border-radius: 7px;
	line-height:20px; /* auto_textarea */
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* 決定ボタン */
.submit_button_01 {
	display: block;
	font-size: 16px;
	line-height: 20px;
	width: 100%;
	padding: 10px 1px;
	margin-left:auto;
	margin-right:auto;
	box-sizing: border-box;
	border: none;
	border-radius: 7px;
	text-align: center;
	color: #595858;
	cursor: pointer;
	border: 1px solid #bebebe;
	background-color: #d6d6d6;
	max-width: 300px;
	transition: 0.3s;
}
.submit_button_01:hover {
	background-color: #b3b3b3;
}

.submit_button_02 {
	display: block;
	font-size: 12px;
	line-height: 12px;
	width: 100%;
	padding: 12px 5px;
	margin-left:auto;
	margin-right:auto;
	box-sizing: border-box;
	border: none;
	border-radius: 2px;
	text-align: center;
	color: #595858;
	cursor: pointer;
	border: none !important;
	background-color: #d6d6d6;
	transition: 0.3s;
}
.submit_button_02:hover {
	border: none;
	background-color: #b3b3b3;
}

.submit_button_03 {
	display: block;
	font-size: 12px;
	width: 100%;
	max-width: 200px;
	padding: 3px 1px;
	margin-left:auto;
	margin-right:auto;
	box-sizing: border-box;
	border: none;
	border-radius: 20px;
	text-align: center;
	cursor: pointer;
	color: #666666;
	border: 1px solid #bebebe;
	background-color: #dddddd;
	transition:0.5s;
}
.submit_button_03:hover,.submit_button_03_on {
	background-color: #666666;
	color: #ffffff;
}

.price_slider {
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

/*------------------------------*/
/* ページャー用ボタン */
.pager_button_off {
	min-width: 30px;
	display: block;
	text-align: center;
	padding: 10px;
	margin: 2px;
	text-decoration: none;
	float: left;
	color: #666666;
	border-radius: 5px;
	background-color: #efefef;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pager_button_on {
	min-width: 30px;
	display: block;
	text-align: center;
	padding: 10px;
	margin: 2px;
	text-decoration: none;
	float: left;
	border-radius: 5px;
	background-color: #cccccc;
	color: #ffffff;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pager_button_off:hover {
	background-color: #cccccc;
}
/*------------------------------*/
/* ボーダーライン */
.border_all_cccccc {
	border: 1px solid #cccccc;
}
.border_all_000000 {
	border: 1px solid #000000;
}
.border_top_000000 {
	border: none;
	border-top: 1px solid #000000;
}
.border_top_cccccc_d {
	border: none;
	border-top: 1px dotted #cccccc;
}
.border_top_cfcfcf {
	border: none;
	border-top: 1px solid #cfcfcf;
}

/*------------------------------*/
/* SVGアイコン */
.svg_icon, .delete_button {
	width:18px;
	height:auto;
	cursor: pointer;
}
/*------------------------------*/
/* ポップアップ表示 (footer_sys.php) */
.popup {
	position:absolute;
	background-color:#ffffdd;
	border:1px solid #000000;
	padding:10px;
	border-radius:5px;
	font-size:16px;
	color:#ff0000;
	margin-top:02px;
}

/* ポップアップ表示 (短時間) */
.short_pop {
	position:fixed;
	max-width:100%;
	min-width:300px;
	bottom:120px;
	left:10px;
	text-align:center;
	border:1px solid #666666;
	color:#666666;
	border-radius:20px;
	background-color:#efefef;
	padding:10px 5px;
	font-size:20px;
	font-weight:bold;
	-moz-user-select:none;
	-webkit-user-select:none;
	-ms-user-select:none;
	user-select:none;
	z-index: 5;
}

/* ローディングアイコン */
.loading_icon {
	width:50px;
	max-width:100%;
	margin:20px auto 0px auto;
	display:block;
}

/*------------------------------*/
/* アニメーション文字[ホバー] (layout.js) */
/*------------------------------*/
/* ホバー前後のスタイル */
.hover_text_css_01 span {
	transition: 0.2s;
	display: inline-block;
}
.hover_text_css_01_after {
	color:#ff0000;
}

.hover_text_css_02 span {
	display: inline-block;
	transition: 0.3s;
}
.hover_text_css_02_after {
	font-size: 1.5em;
	transform: translateY(-2px);
}

/*------------------------------*/
/* アニメーション文字[プレビュー] (layout.js) */
/*------------------------------*/
/* 変化前のスタイル */
.animation_css_01 {
	position: relative;
	opacity: 0;

	--property_animation_css_01: opacity; /* アニメーションに使用するプロパティ */
	--duration_animation_css_01: 20ms; /* 要素単体の実行時間 (AT) */
	--delay_animation_css_01: -10ms; /* 次の要素開始までの時差 (DT) AT-DT=SP*/

	transition-property: var(--property_animation_css_01);
	transition-timing-function: steps(20,end);
	transition-duration: var(--duration_animation_css_01);
	transition-delay: calc((var(--duration_animation_css_01) + var(--delay_animation_css_01)) * var(--index,0) + var(--delay_animation_css_01));
}
/* 変化後のスタイル [.挙動前のクラス名_after] [.変化前のスタイル] */
.animation_css_01_after .animation_css_01 {
	opacity: 1;
	will-change: var(--property_animation_css_01); /* 処理軽減 */
}

/*------------------------------*/
/* 変化前のスタイル */
.animation_css_02 {
	position: relative;
	opacity: 0;
	top:20px;

	--property_animation_css_02: top, opacity; /* アニメーションに使用するプロパティ */
	--duration_animation_css_02: 100ms; /* 要素単体の実行時間 (AT) */
	--delay_animation_css_02: -40ms; /* 次の要素開始までの時差 (DT) AT-DT=SP*/

	transition-property: var(--property_animation_css_02);
	transition-timing-function: steps(20,end);
	transition-duration: var(--duration_animation_css_02);
	transition-delay: calc((var(--duration_animation_css_02) + var(--delay_animation_css_02)) * var(--index,0) + var(--delay_animation_css_02));
}
/* 変化後のスタイル [.挙動前のクラス名_after] [.変化前のスタイル] */
.animation_css_02_after .animation_css_02 {
	opacity: 1;
	top:0px;
	will-change: var(--property_animation_css_02); /* 処理軽減 */
}

/*------------------------------*/
/* 変化前のスタイル */
.animation_css_03 {
	position: relative;
	opacity: 0;
	left:20px;

	--property_animation_css_03: left, opacity; /* アニメーションに使用するプロパティ */
	--duration_animation_css_03: 160ms; /* 要素単体の実行時間 (AT) */
	--delay_animation_css_03: -80ms; /* 次の要素開始までの時差 (DT) AT-DT=SP*/

	transition-property: var(--property_animation_css_03);
	transition-timing-function: steps(20,end);
	transition-duration: var(--duration_animation_css_03);
	transition-delay: calc((var(--duration_animation_css_03) + var(--delay_animation_css_03)) * var(--index,0) + var(--delay_animation_css_03));
}
/* 変化後のスタイル [.挙動前のクラス名_after] [.変化前のスタイル] */
.animation_css_03_after .animation_css_03 {
	opacity: 1;
	left:0px;
	will-change: var(--property_animation_css_03); /* 処理軽減 */
}

/*------------------------------*/
/* 変化前のスタイル */
.animation_css_04 {
	position: relative;
	opacity: 0;

	--property_animation_css_04: opacity; /* アニメーションに使用するプロパティ */
	--duration_animation_css_04: 400ms; /* 要素単体の実行時間 (AT) */
	--delay_animation_css_04: -390ms; /* 次の要素開始までの時差 (DT) AT-DT=SP*/

	transition-property: var(--property_animation_css_04);
	transition-timing-function: steps(20,end);
	transition-duration: var(--duration_animation_css_04);
	transition-delay: calc((var(--duration_animation_css_04) + var(--delay_animation_css_04)) * var(--index,0) + var(--delay_animation_css_04));
}
/* 変化後のスタイル [.挙動前のクラス名_after] [.変化前のスタイル] */
.animation_css_04_after .animation_css_04 {
	opacity: 1;
	will-change: var(--property_animation_css_04); /* 処理軽減 */
}

