*:focus {
	outline: none;
}

html, body {
	margin: 0px;
	padding: 0px;
/*	background-color: #22B696;*/
}

body {
	background-color: #ccf5f533;
    background-image: url(/asset/img/bg3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
	background-position: center;
}

div, p, input, textarea, button {
	box-sizing: border-box;
}

input, select, textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #b0b0b0;
	background-color: #fff;
	font-weight: bold;
	transition-duration: 0.3s;
}

input:focus, select:focus, textarea:focus {
	border: 1px solid #b0b0b0;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

input[type="range"]:focus {
	border: none;
	box-shadow: none;
}

input:read-only, textarea:read-only {
	background-color: #f0f0f0;
	color: #505050;
}

button {
	width: 100%;
	margin-top: 15px;
	padding: 10px;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	border-radius: 3px;
}

a {
	color: inherit;
}

hr {
	border: none;
	border-top: 1px solid #909090;
	margin: 15px 0px 0px 0px;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

.wrapper {
	min-height: 100dvh;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto 1fr auto;
}

.header {
	position: sticky;
    top: 0;
    background-color: #f7f7f7;
    border-bottom: 1px solid #c0c0c0;	
}

.content {
	/*display: grid;*/
	grid-template-columns: 100%;
	align-items: center;
}

.content_inner {
	width: 95%;
	padding: 30px 0px;
	margin: 0px auto;
}

.footer {
	background-color: #303030;
	color: #fff;
	padding: 15px;
}

.footer_menu {
	font-size: 0.8em;
	text-align: center;
}

.copyright {
	margin-top: 15px;
	font-size: 0.8em;
	text-align: center;
}

.modal_wrap {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: grid;
	grid-template-columns: 100%;
	align-items: center;
	background-color: rgba(0,0,0,0.8);
}

.modal_inner {
	width: 95%;
	max-width: 400px;
	margin: 0px auto;
	padding: 15px;
	min-height: 100px;
	background-color: #fff;
	color: #303030;
}

.modal_title {
	padding: 5px;
	margin-bottom: 15px;
	font-weight: bold;
	border-bottom: 2px solid #909090;
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.mw400 {
	max-width: 400px;
	margin: 0px auto;
}

.mw700 {
	max-width: 700px;
	margin: 0px auto;
}

.grid_11 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
	align-items: center;
}

.grid_1a {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 10px;
	align-items: center;
}

.grid_a1 {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 10px;
	align-items: center;
}

.grid_a1a {
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-gap: 10px;
	align-items: center;
}

.grid_1a1a1a {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr auto;
	grid-gap: 10px;
	align-items: center;
}

.img_wrap {
	line-height: 0em;
	text-align: center;
}

.img_wrap img {
	max-width: 100%;
}

.btn01 {
	border: 1px solid #041394;
	background-color: #041394;
	color: #fff;
	transition-duration: 0.3s;
}

.btn01:hover {
	background-color: #fff;
	color: #041394;
}

.btn01[disabled="disabled"] {
	border: 1px solid #707070;
	background-color: #707070;
}

.btn01[disabled="disabled"]:hover {
	border: 1px solid #707070;
	background-color: #707070;
	color: #fff;
}

.btn02 {
	border: 1px solid #78909c;
	background-color: #78909c;
	color: #fff;
	transition-duration: 0.3s;
}

.btn02:hover {
	background-color: #fff;
	color: #78909c;
}

.btn03 {
	border: 1px solid #b16457;
	background-color: #b16457;
	color: #fff;
	transition-duration: 0.3s;
}

.btn03:hover {
	background-color: #fff;
	color: #041394;
}

.btn03[disabled="disabled"] {
	border: 1px solid #707070;
	background-color: #707070;
}

.btn03[disabled="disabled"]:hover {
	border: 1px solid #707070;
	background-color: #707070;
	color: #fff;
}

.f08 {
	font-size: 0.8em;
}

.f09 {
	font-size: 0.9em;
}

.bold {
	font-weight: bold;
}

.mt5 {
	margin-top: 5px;
}

.mt10 {
	margin-top: 10px;
}

.mt15 {
	margin-top: 15px;
}

.notice {
	font-size: 0.8em;
	font-weight: bold;
	color: #512DA8;
}

.pointer {
	cursor: pointer;
}

.input_error {
	border: 2px solid #E91E63;
	background-color: #fff5f5;
}

.header_menu_sp {
	display: none;
}

.mobile_menu {
	display: none;
}

.page_title {
	text-align: center;
	font-weight: bold;
	font-size: 1.3em;
	padding-bottom: 5px;
	border-bottom: 2px solid #505050;
	margin-bottom: 20px;
}

.uni_tree_wrap ul {
  list-style: none;
}

.uni_tree_wrap ul, .uni_tree_wrap ul ul {
    position: relative;
	margin: 0px 0px 0px 7px;
	padding: 0px;
	list-style-type: none;
	line-height: 1.0em;
}

.uni_tree_wrap ul li {
    position: relative;
    margin: 0;
    padding: 7px 15px;
    white-space: nowrap;
}

.uni_tree_wrap ul:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    border-left: 1px dotted #909090;
}

.uni_tree_wrap ul ul:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    border-left: 1px dotted #909090;
}

.uni_tree_wrap ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    width: 15px;
    height: 0;
    border-top: 1px dotted #909090;
}

.uni_tree_wrap ul li:last-child:before {
    top: 15px;
    bottom: 0;
    height: auto;
    background-color: #fff;
}

.binary_map_wrap div, .binary_map_wrap span {
	white-space: nowrap;
}

.item_list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 10px;
	align-items: start;
}

.item_wrap {
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	overflow: hidden;
}

.item_img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.item_title {
	padding: 10px;
	font-size: 0.8em;
	font-weight: bold;
	text-align: center;
	background-color: #e0e0e0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.item_price {
	padding: 5px;
	text-align: center;
	font-weight: bold;
}

.item_detail {
	padding: 0px 10px 10px 10px;
}

.item_detail_wrap {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	grid-gap: 10px;
	align-items: start;
}

.item_detail_title {
	font-size: 1.1em;
	font-weight: bold;
	background-color: #e0e0e0;
    padding: 10px;	
}

.item_detail_price {
	margin-top: 10px;
	text-align: right;
	font-size: 1.2em;
	font-weight: bold;
}

.item_buy_setting {
	max-width: 400px;
	margin: 0px auto;
}

.order_table {
	width: 100%;
	font-size: 0.9em;
}

.order_table th {
	background-color: #303030;
	color: #fff;
}

.order_table th, .order_table td {
	border-top: 1px solid #c0c0c0;
	border-left: 1px solid #c0c0c0;
	padding: 5px;
}

.order_table th:last-child, .order_table td:last-child {
	border-right: 1px solid #c0c0c0;
}

.order_table tr:last-child td {
	border-bottom: 1px solid #c0c0c0;
}

.info_wrap {
	margin-top: 10px;
	background-color: #fff;
	color: #303030;
	padding: 15px;
	border: 1px solid #e0e0e0;
}

.info_wrap .p-top_news__list dt {
    cursor: pointer;
    padding: 24px 60px 24px 24px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    position: relative;
}

.form_sub_title {
	font-size: 0.8em;
	font-weight: bold;
	white-space: nowrap;
}

@media only screen and (max-width: 767px) {
	.sp_grid_1 {
		grid-template-columns: 100%;
	}
	
	.header_menu_pc {
		display: none;
	}
	
	.header_menu_sp {
		display: block;
	}
	
	.mobile_menu {
		display: block;
	}
	
	.item_list {
		grid-template-columns: repeat(2,1fr);
	}
	
	.item_detail_wrap {
		grid-template-columns: 100%;
	}
}

@media only screen and (orientation: portrait) {
	body {
		background-image: url(/asset/img/bg3.jpg);
	}
}