﻿@charset "utf-8";
/* ================================================== common（ 全画面共通 ）設定 */

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; /* 適宜変更 */
	background-color: #fff;
	font-size: 16px;
	color: #333;
}

a {
	text-decoration: none;
}

.mb-2 {
	margin-bottom: 0.5rem;
  }

.left {
	float: left;
}

.right {
	float: right;
}

.clear {
	clear: both; /* レイアウト崩れ対処 */
}

#container {
	max-width: 1500px;
	width: 96%;
	margin: 5px auto;
	border-radius: 4px;
	background-color: #fff;
	padding-bottom: 50px;
}

.blank {
	padding: 0px 40px;
	/* padding: 80px; */
}

.blank_min {
	padding: 0px 40px;
}

#box {
	max-width: 600px;
	width: 600px;
	margin: 0 auto;
}

#box_2 {
	max-width: 600px;
	width: 600px;
	/* margin: 0 auto; */
}

#header {
	width: auto;
	margin: 0 10px 20px 10px;
}

.inline-box {
	display:inline-flex;
}
.inline-box input {
	margin: 0 0 0 10px;
}

.hTitle {
	background: #eaeae5;
	border: 1px solid #ccc;
	padding: 2px 20px;
}

h1 {
	max-width: 580px;
	font-size: 2.2rem;
	text-align: center;
	margin: 0 auto 20px auto;
	padding: 15px;
	background-color: #b2cee2;
	border-radius: 4px;
}

p {
	margin: 0 0 20px 0;
}

p.title {
	max-width: 600px;
	margin: 0 auto 20px auto;
	text-align: center;
	font-size: 3.6rem;
}

p.red {
	color: #fd2240;
}

td input.text {
  border:none;
  font-size: 1.3rem;
  background-color:transparent;
}

td input.btn,
td button.btn {
  font-size: 1.2rem;
  padding: 0rem 2rem;
}

.btn,
input.btn,
button.btn {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1.6rem 6rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

input.btn--gray {
  color: #333;
  background-color: #dc8b284d;
  border-bottom: 5px solid #dc8b28;
  /* background: #eaeae5;
  border-bottom: 2px solid #84827c; */
}

input.btn--gray:hover {
  margin-top: 3px;
  color: #333;
  background: #dc8b284d;
  border-bottom: 2px solid #dc8b28;
  /* background: #eaeae5;
  border-bottom: 2px solid #84827c; */
}

input.btn--gray:disabled {
    pointer-events: none;
	color: #777575c7;
	background-color: #d4d4d0;
	border-bottom: 5px solid #afada8;
}

input.btn--red {
	color: #333;
	background-color: #dc28284d;
	border-bottom: 5px solid #dc2828;
  }

  input.btn--red:hover {
	margin-top: 3px;
	color: #333;
	background: #dc28284d;
	border-bottom: 2px solid #dc2828;
  }

input.btn--primary-red {
	color: #333;
	background-color: #ff0000;
	border-bottom: 5px solid #dc2828;
}

input.btn--primary-red:hover {
	margin-top: 3px;
	color: #333;
	background: #ff0000;
	border-bottom: 2px solid #dc2828;
}

input[type=checkbox]{
	display: none;
}

.ECM_CheckboxInput {
	padding: 12px 8px;
	display: flex;
	align-items: center;
	cursor: pointer;
  }
  .ECM_CheckboxInput-Input {
	margin: 0;
	width: 0;
	opacity: 0;
  }
  .ECM_CheckboxInput:hover{
	background: rgba(0,0,0,.05) !important;
  }
  .ECM_CheckboxInput-Input:focus + .ECM_CheckboxInput-DummyInput{
	border: dashed 2px #333333;
  }
  .ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput {
	background: #333333;
  }
  .ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40%;
	height: 4px;
	border-radius: 2px;
	transform: translate(-6px, 5px) rotateZ(-135deg);
	transform-origin: 2px 2px;
	background: #FFFFFF;
  }
  .ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 76%;
	height: 4px;
	border-radius: 2px;
	transform: translate(-6px, 5px) rotateZ(-45deg);
	transform-origin: 2px 2px;
	background: #FFFFFF;
  }
  .ECM_CheckboxInput-DummyInput {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	width: 32px;
	height: 32px;
	border: dashed 1px #333;
	background: rgba(0,0,0, .1);
	border-radius: 4px;
  }
  .ECM_CheckboxInput-LabelText {
	margin-left: 12px;
	display: block;
	font-size: 18px;
	font-weight: bold;
  }

  .label_fix {
	  display: inline-block;
	  font-size: 1.6rem;
	  width: 180px;
	  text-align: center;
	  background-color: #eaeae5;
	  padding: 20px;
  }

  input.login {
	  width: 390px;
	  font-size: 2rem;
	  padding: 16px;
  }

  .ul_login, .regist_confirm ul {
	  max-width: 600px;
	  margin: 0 auto;
	  text-align: center;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
  }

  .ul_login li:first-of-type, .regist_confirm ul li:first-of-type {
	  margin: 0 0 20px 0;
  }

  .login_save {
	  margin: 20px 0;
  }

div.noscroll {
    height: auto !important;
    overflow: visible !important;
}

/* ================================================== トグルボタン */
.toggle {
	position: relative;
	width: 78px;
	height: 48px;
	/* margin: 40px 60px; */
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
  }
  .toggle input[type=checkbox] {
	display: none;
  }
  .toggle:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: #eaeae5;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
  }
  .toggle:after {
	content: "ロック";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 42px;
	height: 42px;
	display: block;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
	text-align: center;
	padding: 14px 0 0;
	line-height: 1;
	font-size: 14px;
	font-weight: bold;
	color: #acaca8;
	letter-spacing: .5px;
	box-sizing: border-box;
  }
  .toggle.checked:before {
	background: #dc8b284d;
  }
  .toggle.checked:after {
	content: "解除";
	left: 33px;
	box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
	color: #dc8b2894;
	padding: 14px 0 0 1px;
  }

/* ================================================== 管理者ログイン */
.adminid {
	margin: 0 0 10px 12px;
}

/* ================================================== メインメニュー */
.mainmenu h1 {
	/* margin: 80px auto 40px auto; */
}

.mainmenu ul {
	max-width: 600px;
	margin: 0 auto 80px auto;
}

.mainmenu ul li {
	margin: 0 0 10px 0;
}

.mainmenu ul li input {
	width: 100%;
}

.mainmenu input.btn--owner {
	color: #333;
	background-color: #2858dc4d;
	border-bottom: 5px solid #2894dc;
	/* background: #eaeae5;
	border-bottom: 2px solid #84827c; */
}

.mainmenu input.btn--owner:hover {
	margin-top: 3px;
	color: #333;
	background: #2858dc4d;
	border-bottom: 2px solid #2894dc;
	/* background: #eaeae5;
	border-bottom: 2px solid #84827c; */
}

.mainmenu input.btn--member {
	color: #333;
	background-color: #37dc284d;
	border-bottom: 5px solid #37dc28;
	/* background: #eaeae5;
	border-bottom: 2px solid #84827c; */
}

.mainmenu input.btn--member:hover {
	margin-top: 3px;
	color: #333;
	background: #37dc284d;
	border-bottom: 2px solid #79dc28;
	/* background: #eaeae5;
	border-bottom: 2px solid #84827c; */
}

/* ================================================== 登録ユーザー一覧 */

#user_info {
	font-size: 25px;
	color: #f00;
}
#user_info p{
	margin: 0 !important;
}

#container.user-container{
	padding-bottom : 0;
	max-width: 1800px;
	margin: 0 auto;
}

#scroll_box {
	max-width: 1400px;
	height: auto;
	margin: 0 auto;
	overflow: none;
	border: 2px solid #333333;
}
/* スクロールバー非表示設定 */
#scroll_box.none-scroll {
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
}
#scroll_box.none-scroll::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#scroll_box.none-border {
	border: none;
	max-width: none;
}

#scroll_box table {
	width: 100%;
	font-size: 1.8rem;
}
#scroll_box table tr {
	border: 1px solid #333333;
}
#scroll_box table td {
	border: 1px solid #84827c;
	padding: 4px;
	/* white-space: nowrap; */
}
#scroll_box table tr:nth-child(odd) td {
	background: #eaeae5;
}
#scroll_box table th {
	background-color: #b2cee2;
	position: sticky;
	top: 0;
	padding: 4px;
}
#scroll_box table.register th {
	background-color: #b2cee2;
	position: sticky;
	/* top: 133px; */
    top: 80px;
	padding: 4px;
}
#scroll_box table th:before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: 100%;
	height: 100%;
	border: 1px solid #333333;
  }

#users-table .th_number {
	width: 3%;
}
#users-table .th_name {
	width: 8%;
}
#users-table .th_nickname {
	width: 9%;
}
#users-table .th_email {
	width: 7%;
}
#users-table .th_tel {
	width: 110px;
}
#users-table .th_postal,
#users-table .th_prefecture_name {
	width: 80px;
}
#users-table .th_prefecture_code {
	width: 7%;
}
#users-table .th_email_verified_at {
	width: 100px;
}
#users-table .th_history,
#users-table .th_delete {
	width: 80px;
}

#users-table td input {
	width: 100%;
}
#users-table td.td_number {
	font-size: 1.3rem;
}
#users-table .td_history input {
	position: initial;
}


#users-table td label {
	width: 100%;
}


.refresh {
	width: 100%;
	margin: 20px auto 0 auto;
	text-align: center;
	justify-content: space-evenly;
	display: flex;
}
/* ================================================== 購入履歴 */

#histories-table .th_number {
	width: 2%;
}
#histories-table .th_auction_number {
	width: 10%;
}
#histories-table .th_plant_number {
	width: 5%;
}
#histories-table .th_category_name {
	width: 6%;
}
#histories-table .th_plant_name {
	width: 20%;
}
#histories-table .th_comment {
	width: 30%;
}
#histories-table .th_bid_price {
	width: 7%;
}

/* ================================================== ユーザー登録 */

.regist input {
	position: relative;
	top: -7px;
	max-width: 360px;
	font-size: 1.6rem;
	padding: 14px;
}

.regist .submit input {
	padding: 14px 26%;
}

.regist select {
	position: relative;
	top: -7px;
	font-size: 1.6rem;
	padding: 14px 20px;
	line-height: 1.5;
}

.regist label, .regist_confirm label {
	margin: 0 0 5px 0;
}

.regist label::after {
	content: '※必須';
	display: block;
	font-size: 1rem;
	color: #fd2240;
}

.regist label.amy::after {
	content: '';
}

.regist .label_fix, .regist_confirm .label_fix {
	font-size: 1.4rem;
	width: 150px;
	padding: 12px 10px;
	top: 4px;
}

.left input, .right input {
	width: 140px;
}

.regist .submit {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.privacy {
	padding: 10px;
	font-size: 1.2rem;
	overflow: auto;
	height: 200px;
	border: 1px solid #ccc;
	background-color:#ffffff;
}

.privacy p + p {
	margin-top: 20px;
}

p.privacy_title {
	width: 100%;
	background-color: #eaeae5;
	margin: 10px 0 5px 0;
	padding: 12px;
}

.regist_confirm .label_fix {
	width: 160px;
	margin-right: 10px;
}

.regist_confirm div {
	clear: both;
}

.regist_confirm p {
	padding: 10px;
}

.regist_confirm ul {
	margin-top: 20px;
}

.regist #get-address-btn {
	font-size: 1.2rem;
    padding: 0.5rem 0rem;
	width: 70px
}

/* ================================================== 確認画面 */
.done h1 {
	margin: 80px auto 40px auto;
}

.done p {
	max-width: 790px;
	margin: 0 auto 80px auto;
	text-align: center;
}

/* ================================================== 完了画面 */
.done_back {
	width: 100%;
	margin: 20px auto 80px auto;
	text-align: center;
}

/* ================================================== オークション概要登録 */
.summary .label_fix {
	font-size: 1.5rem;
	width: 125px;
	padding: 20px 15px;
	top: 4px;
}
	.summary label.label_short {
		padding: 15px 20px;
	}

.summary input {
	/* position: relative; */
	/* width: 360px; */
	width: 200px;
	font-size: 1.6rem;
	padding: 14px;
	margin: 0 0 10px 0;
}
#auction_number {
	position: relative;
	top: -8px;
	margin: 0 4px 0 4px;
}
#first_plant_number1, #first_plant_number2, #first_plant_number3,
#last_plant_number1, #last_plant_number2, #last_plant_number3 {
	width: 60px;
	top: -8px;
	margin: 0 1px 0 0;
	padding: 14px 2px 14px 14px;
}
#extend_time {
	width: 70px;
	margin: 0 2px 0 0;
	padding: 14px 2px 14px 14px;
}
.extend_time {
	margin: 0 49px 0 0;
}

.summary input#startDate, .summary input#closeDate {
	padding: 14px 7px;
}

.summary label {
	margin: 0 0 5px 0;
}

.left input, .right input {
	width: 140px;
}

.summary select {
	/* position: relative; */
	top: -7px;
	font-size: 1.6rem;
	padding: 13px 32px;
	line-height: 1.5;
}

.config .submit,
.summary .submit {
	max-width: 600px;
	margin: 40px auto 0 auto;
	text-align: center;
	justify-content: space-around;
	display: flex;
}

/* ================================================== オークション一覧・登録 */
.auctionHeader {
	width: auto;
	padding: 12px;
	background: #d8eaf9;

	display: flex;
	/* flex-flow: row wrap;
	align-items: center; */
}

.auction #scroll_box table td {
	border: 1px solid #84827c;
	padding: 0px;
}

.auction #scroll_box table tr.tr_odd td {
	background: #ffeae5;
}
.auction #scroll_box table tr.tr_even td {
	background: #edf7ff;
}

.auction #scroll_box table tr td.edit {
	background: #fff9d9;
}

.auction #scroll_box table tr:nth-child(4n) select {
	background: #edf7ff;
}
.auction #scroll_box table tr select {
	background: #ffeae5;
	border: none;
	width:100%;
	box-sizing:border-box;
	font-size: 20px;
	padding: 5px 7.5px;
	height: 100%;
	line-height: 1.8;
}

.auction table input {
	border: none;
	background: none;
	/* padding: 2px; */
	width:100%;
	box-sizing:border-box;
	cursor: pointer;
	font-size: 20px;
}

.th_namePlant {
	width: 20%;
}
.th_rootCondition {
	width: 8%;
}
.th_size {
	width: 30%;
}
.td_diameter {
	width: 6%;
}
.th_startPrice, .th_decisionPrice {
	min-width: 128px;
}
.th_detail {
    width: 25%;
}

.td_price div {
	display: flex;
}
.td_price div::after {
	content: '円';
	/* position: relative; */
	/* top: 2px; */
	margin: 0 -4px 0 0;
	padding: 10px;
	background-color: #ffeae5;
}
tr:nth-child(4n) .td_price div::after {
	content: '円';
	margin: 0 -4px 0 0;
	padding: 5px 10px;
	background-color: #edf7ff;
}

#diameterValue, #heightValue {
	width: 90px;
}

#startPrice, #decisionPrice {
	width: 120px;
	/* float: left; */
}

#comingsoon {
	width: 100%;
	text-align: center;
}

/* ================================================== 商品情報編集 */
#preview {
	margin: -30px -10px -10px 0;
	padding: 10px 20px;
}
#preview input {
	height: 50px;
	font-size: 1.4rem;
}
#preview input.btn--gray:hover {
  margin-bottom: 7px;
}

.auction_detail {
	max-width: fit-content !important;
}

.auction_detail img {
	margin: auto;
	width: fit-content;
}

#detail_meterNum01, #detail_meterNum02, #detail_price, #detail_promptPrice {
	width: 125px;
}

#detail_auctionNum {
	margin: -10px 0 0 0;
}

#detail_plant, #detail_comment {
	width: 73%;
}

.detail_image input {
	width: 140px;
	margin: 0;
}

/* ================================================== 商品情報詳細 */
.bid h1 {
	width: 100%;
	margin-bottom: 10px;
	margin-left: 0px;
}

#bid_box {

}

.bid label.label_fix {
	padding: 10px 0;
}

.bid .comment {
	color: #f77423;
	width: 100%;
	margin: 10px 0;
	text-align: center;
}

.bid .time {
	width: 100%;
	margin: 0 0 40px 0;
	padding: 5px;
	text-align: center;
	font-size: 1.3rem;
	background-color: #f5f3ef;
}

#bid_nickname, #bid_mail {
	padding: 8px;
}

.bid .bidding::after {
	content: '（省略不可）';
	color: #fd2240;
	font-size: 1.2rem;
}

#bidding {
	width: 100px;
	padding-right: 0;
	text-align: right;
	background-color: #f8f0db;
	border-radius: 4px;
	padding: 0px;
	width: 60px;
}

#bid_history {
	margin: 60px 0 0 0;
	border: 1px dashed #ccc;
	border-radius: 4px;
	padding: 20px;
	background-color: #f5f3ef;
}

#bid_history h2 {
	color: #8cb659;
	width: 100%;
	text-align: center;
	margin: 0 0 5px 0;
	font-size: 2rem;
}

#bid_history table, #bid_history table th, #bid_history table td {
	border: 2px solid #f5f3ef;
}
#bid_history table th, #bid_history table td {
	padding: 5px 10px;
}
#bid_history table {
	width: 100%;
	background-color: #b2cee2;
}
#bid_history table .tr_first{
	width: 100%;
	background-color: #ffeae5;
}
#bid_history input {
	border: 1px solid #84827c;
    background: #fff9d9;
    padding: 0px;
    margin: 0px;
	cursor: pointer;
	width: 60px;
}
#th_bid {
	width: 20%;
}

#th_bid_time {
	width: 30%;
}

#td_bid_time {
	font-size: 1.3rem;
}

/* ================================================== オークション一覧 */

#loginHeader {
	justify-content: space-between;
	display: flex;
	margin: 0 0 20px 0;
}

#loginHeader a {
	color: rgb(42, 123, 180);
}

#loginHeader a:focus  {
	color: #b2cee2;
}

#auctionView {
	table-layout: fixed;
	word-wrap: break-word;
}

#auctionView .th_number {
	width: 41px;
}

#auctionView .td_number {
	text-align: center;
}

#auctionView .th_startPrice {
}

#auctionView .th_nowPrice {
}

#auctionView .th_holder{
}

#auctionView .th_namePlant {
}

#auctionView .th_image {
	width: 52px;
}

#auctionView .th_image2 {
	width: 82px;
}

#auctionView .th_countdown {
	width: 90px;
}

#auctionView .th_control {
	width: 150px;
}

#auctionView .td_deadline {
	font-size: 10px;
}

#auctionView .th_extend {
	width: 81px;
}

#auctionView .td_control {
	text-align: center;
}

#auctionView .td_start_price {
	font-size: 16px;
	text-align: end;
}

#auctionView .td_bid_price {
	font-weight: 900;
	text-align: end;
}

.auction #scroll_box table#auctionView tr.tr_even td {
	background: #edf7ff;
}

.auction #scroll_box table#auctionView tr.tr_odd td {
	background: #ffeae5;
}

/* .auction #scroll_box table#auctionView td.colspanColor {
	background: #ffeae5;
}
.auction #scroll_box table#auctionView td.colspanColor:nth-child(odd) {
	background: #f5f3ef;
} */

#auctionView input {
	border: 1px solid #84827c;
	background: #fff9d9;
	padding: 5px 15px;
}

#container td img {
    width: 80px;
    height: 80px;
	margin: auto;
}
#container td.td_image img {
    width: 51px;
    height: 51px;
	margin: auto;
}

/* ================================================== オークション結果一覧 */
#box.history h1 {
	margin: auto;
}
.auction #scroll_box table#auctionView .td_comment {
	/* padding: 15px 0; */
}


/* ================================================== 落札者管理 */
/* .successfulbid #scroll_box table#successfulbid 	tr:nth-child(4) td {
	background: #edf7ff;
} */

.successfulbid #scroll_box table#successfulbid tr.tr_footer {
	border:none;
	font-weight: bold;
}
.successfulbid #scroll_box table#successfulbid tr.tr_footer td {
	background: none;
	border:none;
}
.successfulbid #success li {
	list-style:none;
}

.successfulbid {
	border: initial !important;
}

.successfulbid h1 {
	margin: 0 auto 0px auto;
}

.successfulbid #scroll_box table#successfulbid .tr_even  td {
	background: #edf7ff;
}
.successfulbid #scroll_box table#successfulbid .tr_odd td {
	background: #ffeae5;
}

.successfulbid #scroll_box table#successfulbid tr td.colspanColor {
	background: #f5f3ef;
}

/* ヘッダ幅 */
#successfulbid th {
	z-index: 9999;
}
#successfulbid .th_check, #successfulbid .td_check {
	width: 5%;
}
#successfulbid .th_date {
	width: 5%;
}
#successfulbid .td_date {
	font-size: 1.2rem;
}
#successfulbid .th_name, #successfulbid .td_name {
	width: 12%;
}
#successfulbid .th_nickname, #successfulbid .td_nickname {
	width: 15%;
}
#successfulbid .th_number, #successfulbid .td_number {
	width: 4%;
}
#successfulbid .th_namePlant, #successfulbid .td_namePlant {
	width: 10%;
}
#successfulbid .th_price, #successfulbid .td_price {
	width: 9%;
}
#successfulbid .th_totalPrice, #successfulbid .td_totalPrice {
	width: 9%;
}
#successfulbid .th_form, #successfulbid .td_form {
	width: 6%;
}
.Yamato {
	font-size: 0.4rem;
}
.request {
	font-size: 1rem;
    height: 25px;
}

.ECM_sf_CheckboxInput {
	padding: 16px 12px;
	display: flex;
	align-items: center;
	cursor: pointer;
  }
  .ECM_sf_CheckboxInput-Input {
	margin: 0;
	width: 0;
	opacity: 0;
  }
  .ECM_sf_CheckboxInput:hover {
	background: rgba(0,0,0,.05) !important;
  }
  .ECM_sf_CheckboxInput-Input:focus + .ECM_sf_CheckboxInput-DummyInput {
	border: dashed 1px #333333;
  }
  .ECM_sf_CheckboxInput-Input:checked + .ECM_sf_CheckboxInput-DummyInput {
	background: #333333;
  }
  .ECM_sf_CheckboxInput-Input:checked + .ECM_sf_CheckboxInput-DummyInput::before {
	content: "";
	display: block;
	position: absolute;
	top: 40%;
	left: 50%;
	width: 40%;
	height: 3px;
	border-radius: 2px;
	transform: translate(-5px, 5px) rotateZ(-135deg);
	transform-origin: 2px 2px;
	background: #FFFFFF;
  }
  .ECM_sf_CheckboxInput-Input:checked + .ECM_sf_CheckboxInput-DummyInput::after {
	content: "";
	display: block;
	position: absolute;
	top: 40%;
	left: 50%;
	width: 76%;
	height: 3px;
	border-radius: 2px;
	transform: translate(-4px, 5px) rotateZ(-45deg);
	transform-origin: 2px 2px;
	background: #FFFFFF;
  }
  .ECM_sf_CheckboxInput-DummyInput {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	width: 22px;
	height: 22px;
	border: dashed 1px #333;
	background: rgba(0,0,0, .1);
	border-radius: 4px;
	z-index: 0;
	margin: auto;
  }
  .ECM_sf_CheckboxInput-LabelText {
	margin-left: 12px;
	display: block;
	font-size: 18px;
	font-weight: bold;
  }


.ul_successfulbid {
	clear: both;
	width: auto;
	/* max-width: 1200px; */
	margin: 0 auto;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap:wrap;
}
.ul_successfulbid li {
	width: auto;
	margin: 0 5px 0 5px;
}

.check_all_L, .check_all_R {
	display: flex;
	flex-direction: row;
}

.check_all_L {
	margin: 0 0 0 69px;
}

.check_all_R {
	margin: 0 53px 0 0;
}
	.check_all_R span {
		margin: 0 6px;
	}

@media screen and (max-width: 1160px) {
	.check_all_R {
		margin: 0 0 0 0;
	}
	.check_all_R span {
		margin: 0 3px;
	}
}

/* ================================================== オーダーフォーム */
.order input {
	max-width: 360px;
	font-size: 1.6rem;
	padding: 14px;
}

.order .submit input {
	padding: 14px 26%;
}

.order label {
	margin: 0 0 5px 0;
}

.order select {
	font-size: 1.6rem;
	padding: 13px 25px 13px 14px;
	line-height: 1.5;
}

.order .label_fix {
	font-size: 1.4rem;
	width: 150px;
	top: 4px;
}

.order .right input {
	position: relative;
	top: -5px;
	width: 180px;
}

.order .right label {
	padding: 13.75px 10px;
}

p.order_request {
	width: 100%;
	background-color: #eaeae5;
	margin: 10px 0 5px 0;
	padding: 12px;
}

textarea#order_request {
	width: 100%;
}

.requestNote {
	font-size: 1.2rem;
	color: #fd2240;
	margin: 0;
}

.order .submit {
	max-width: 600px;
	margin: 40px auto 0 auto;
	text-align: center;
}

.order #get-address-btn {
    font-size: 1.2rem;
    padding: 0.5rem 0rem;
    width: 70px;
}

.order option[hidden] {
	display: none;
}

/* ================================================== ユーザー削除時ポップアップ */

.open {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    /* position: relative; */
    position: initial;
    display: inline-block;
    padding: 0rem 2rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    /* border: 2px solid #ecb125; */
    border-radius: 0.5rem;
}

label.btn--gray {
color: #333;
background-color: #dc8b284d;
border-bottom: 5px solid #dc8b28;
}

label.btn--gray:hover {
margin-top: 3px;
color: #333;
background: #dc8b284d;
border-bottom: 2px solid #dc8b28;
}


#pop-up {
	display: none;
}
.overlay {
	display: none;
}
#pop-up:checked + .overlay {
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.6);
}
.window {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 90vw;
	max-width: 360px;
    padding: 80px 20px;
	height: 300px;
	background-color: #fff;
	border-radius: 4px;
	align-items: center;
	transform: translate(-50%, -50%);
    text-align: center;
	font-size: 25px;
}
.close {
	position: absolute;
	top: 4px;
	right: 4px;
	cursor:pointer;
	font-size: 20px;
}

/* ================================================== 落札者一覧ヘッダー固定 */

tr#tr-fix {
  position: sticky;
}

div#box-fix {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
  padding: 40px 60px 0 60px;
}

div#box-fix-inner {
  max-width: 1400px;
  min-width: 650px;
  margin: 0 auto;
}

div.margin {
  padding-top: 316px;
}

.blank_sb {
	padding: 0px 40px;
}

@media screen and (max-width: 1160px) {
	div.margin {
		padding-top: 400px;
	}
}

.table_header {
	width: 99% !important;
}

/* ================================================== 落札者一覧ヘッダー固定 */

.config fieldset {
    border-style:double ;
    border-image: initial;
    border-color: #d1d5db;
    border-width: 1px;
    padding: 0 20px;
    font-size: 18px;
}

.config fieldset label {
    font-size: 20px    !important;
}

.config fieldset div{
    margin: 0px 40px;
}

.config fieldset input {
    font-size:initial;
    /* width: 40px; */
}

#container img {
	width: 100%;
	/* max-width: 580px; */
}

@media screen and (max-width: 600px) {
	.label_fix {
		font-size: 0.4rem;
	}
	#bid_history, #td_bid_time  {
		font-size: 0.5rem;
	}

	#bid_history input {
		font-size: 1.2rem;
		width: 30px;
	}

	#bid_history table th, #bid_history table td {
		padding: 2px 5px;
	}
}

@media screen and (max-width: 860px) {
	#scroll_box table, #auctionView .td_deadline, #auctionView .td_start_price {
		font-size: 0.5rem;
	}

	#auctionView .th_number {
		width: 20px;
	}

	#auctionView .th_image {
		width: 70px;
	}

	#auctionView .th_namePlant {
		width: 12%;
	}

	#auctionView .th_control {
		width: 60px;
	}

	#auctionView .th_extend {
		width: 40px;
	}

	#auctionView input {
		padding: 5px 10px;
		font-size: 0.8rem;
	}

	td img {
		width: 60px;
		height: 60px;
	}

	table .justify-between {
		display: flex;
		flex-direction: column;
	}

}

@media screen and (max-width: 600px) {
	#scroll_box table, #auctionView .td_deadline, #auctionView .td_start_price {
		font-size: 0.2;
	}
}
@media screen and (max-width: 720px) {
	.order input, .order select {
		margin-bottom: 20px;
	}

	.btn {
		max-width: 360px;
		padding: 14px 26%;
	}
}
@media screen and (max-width: 600px) {
	.label_fix {
		width: 100px !important;
	}
}


/* ================================================== メールテンプレート編集画面 */

#container.mailedit {
	padding-bottom: 0;
	width: 800px;
}
.mailedit div fieldset input{
	width: 100%;
}
.mailedit div fieldset select{
	font-size: 1.7rem;
    padding: 2px 30px 2px 10px;
    line-height: 1.5;
}

.mailedit textarea {
	height: 100px;
	width: 100%;
	font-size: 18px;
	line-height: 1.2em;
}

.mailedit textarea.signature,
.mailedit textarea.bank_transfer {
	height: 280px;

}

#mail_box {
	/* display: flex; */
    align-items: center;
    justify-content: center;
    margin: auto;
}

#mail_box fieldset {
	margin: 0 20px 30px 0;
	width: 100%;
	height: 100%;
}

#mail_box fieldset .border {
	border: solid 1px #d1d5db;
}

.sticky {
    width: auto;
    position: sticky;
    top: 0;
    background: white;
}
