@charset "UTF-8";
/*------------------------------------------------------------Content*/
/*---------------------------category*/
.list_category {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 15px;
}
.list_category > li {
    width: calc((100% - 15px) / 2);
}
.list_category > li a {
    display: flex;
    flex-direction: column-reverse;
    text-decoration: none;
    transition: all 0.3s;
}
.list_category > li a h4 {
    line-height: 1.3;
    font-family: "EB Garamond", "Zen Old Mincho", serif;
    font-size: 17px;
}
.list_category > li a figure {
    margin-bottom: 10px;
    aspect-ratio: 3 / 2;
}
.list_category > li a figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media print, screen and (min-width:768px) {
.list_category {
    gap: 40px 30px;
}
.list_category > li {
    width: calc((100% - 30px) / 2);
}
.list_category > li a:hover {
    opacity: 0.7;
}
.list_category > li a h4 {
    font-size: 21px;
}
}
@media print, screen and (min-width:1200px) {
.list_category > li {
    width: calc((100% - 60px) / 3);
}
.list_category > li a h4 {
    font-size: 20px;
}
}

/*---------------------------rental_list*/
.fit_num {
	margin: 20px 0;
	background: rgba(var(--gray_d),1);
	padding: 5px 10px;
}

.btn_sort_area {
	display: block;
	margin-bottom: 40px;
}
.btn_sort_area form {
    display: flex;
    align-items: center;
	font-size: 16px;
    gap: 10px;
}
.btn_sort_area form p {
	font-size: 16px;
	line-height: 1.5em;
	text-align: left;
}
.btn_sort_area input {
	padding: 5px 8px;
    font-size: 15px;
    color: var(--white);
    border: solid 1px var(--white);
    background: none;
    transition: all 0.3s;
}
.btn_sort_area input:hover {
	opacity: 0.7;
    color: var(--white);
    background: rgba(var(--gray),0.4);
}

@media print, screen and (min-width:768px) {
.btn_sort_area {
	text-align: left;
}
.btn_sort_area input {
	margin-right: 10px;
	padding: 5px 10px;
}
.btn_sort_area form p {
	margin-left: 10px;
}
}

ul.item_list > li {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(var(--white_tr),0.3);
}
ul.item_list > li h4 {
	margin-bottom: 20px;
    line-height: 1.3;
	font-size: 20px;
}
ul.item_list > li .flex_box {
    display: flex;
    justify-content: space-between;
}

ul.item_list > li .flex_box .item_ph {
    text-align: center;
	height: 100px;
	width: 100px;
	overflow: hidden;
}
ul.item_list > li .flex_box .item_ph a {
	transition: 0.3s;
}
ul.item_list > li .flex_box .item_ph a:hover {
	opacity: 0.7;
}
ul.item_list > li .flex_box .item_ph img {
	max-width: 100%;
	max-height: 100%;
}
.item_info {
	width: calc(100% - 110px);
}
.item_info .list_tbl {
	width: 100%;
	margin-bottom: 15px;
	border-collapse: collapse;
	border-top: solid 1px rgba(var(--gray),0.5);
	border-left: solid 1px rgba(var(--gray),0.5);
}
.item_info .list_tbl tr th, .item_info .list_tbl tr td {
	padding: 6px 5px;
	text-align: left;
	vertical-align: top;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
	border-right: solid 1px rgba(var(--gray),0.5);
	border-bottom: solid 1px rgba(var(--gray),0.5);
}
.item_info .list_tbl tr th {
	width: 4.5em;
	white-space: nowrap
}
.item_info .list_tbl tr td.item_price {
	color: var(--yellow);
}
.list_cart li {
	margin-bottom: 10px;
}
.list_cart li .btn_dt {
	display: inline-block;
	text-decoration: none;
	vertical-align: middle;
	margin-bottom: 10px;
	padding: 10px;
    line-height: 1.1;
    font-size: 16px;
	color: var(--white);
	background: none;
	border: solid 1px var(--white);
	width: 100%;
    transition: all 0.3s
}
.list_cart li .btn_dt:hover {
	opacity: 0.7;
    background: rgba(var(--gray),0.4);
}
.list_cart li input.em {
	width: 60px;
	text-align: center;
}
.list_cart li .btn_add_cart {
	display: inline-block;
	text-decoration: none;
	vertical-align: middle;
	margin-top: 10px;
	padding: 10px;
    line-height: 1.1;
    font-size: 16px;
	color: var(--white);
	background: none;
	border: solid 1px var(--white);
	width: 100%;
    transition: all 0.3s
}
.list_cart li .btn_add_cart:hover {
	opacity: 0.7;
    background: rgba(var(--gray),0.4);
}
@media print, screen and (min-width:576px) {
.list_cart {
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.list_cart li {
	margin-bottom: 0;
}
.list_cart li:last-child form {
	display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.list_cart li .btn_dt {
	width: auto;
	margin-bottom: 0;
}
.list_cart li p {
	display: inline-block;
}
.list_cart li .btn_add_cart {
	width: auto;
	margin-top: 0;
}
}

@media print, screen and (min-width:768px) {
ul.item_list > li {
	margin-bottom: 40px;
	padding-bottom: 40px;
}
ul.item_list > li h4 {
	margin-bottom: 30px;
	font-size: 24px;
}
.item_info .list_tbl tr th, .item_info .list_tbl tr td {
	padding: 8px 10px;
	text-align: left;
	vertical-align: top;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
	border-right: solid 1px rgba(var(--gray),0.5);
	border-bottom: solid 1px rgba(var(--gray),0.5);
}
.list_cart  {
	margin-top: 20px;
}
.list_cart li .btn_dt {
	width: 120px;
	float: left;
}
.list_cart li .btn_add_cart {
	width: 150px;
}
}

@media print, screen and (min-width:992px) {
ul.item_list > li .flex_box .item_ph {
	width: 200px;
	height: 200px;
	overflow: hidden;
}
ul.item_list > li .flex_box .item_ph img {
	max-width: 200px;
	max-height: 200px;
}
.item_info {
	width: calc(100% - 220px);
}
}

/*---------------------------rental_detail*/
.item_detail {
    margin-bottom: 30px;
    padding-bottom: 30px;
	border-bottom: 1px solid rgba(var(--white_tr),0.3);
}
.item_detail .fig {
    margin-bottom: 20px;
}
.item_detail .item_ph {
	max-height:310px;
    width: 280px;
    text-align: center;
    overflow: hidden;
    margin: 0 auto;
}
.item_detail .item_ph img {
	max-width: 280px;
	max-height: 280px;
}
@media print, screen and (min-width:768px) {
.item_detail .item_ph {
	max-height:285px;
    width: 255px;
    text-align: center;
    overflow: hidden;
    margin: 0 auto;
}
.item_detail .item_ph img {
	max-width: 255px;
	max-height: 255px;
}
}
.item_detail .sub_ph {
    margin-top: 15px;
    text-align: center;
}
.item_detail .sub_ph ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.item_detail .sub_ph li {
    text-align: center;
    display: block;
    justify-content: center;
    align-items: center;
    width: calc((100% - 15px) / 2);
    overflow: hidden;
}
@media print, screen and (min-width:768px) {
}
.sub_ph ul li figcaption {
	text-align: left;
	font-size: 13px;
	line-height: 1.4em;
	width: 100%;
	margin: 0;
}

@media print, screen and (min-width:768px) {
.sub_ph ul li figcaption {
	font-size: 14px;
	width: 100%;
	margin: 0 auto;
}
}
.item_detail .sub_ph img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 200px;
    overflow: hidden;
}
@media print, screen and (min-width:768px) {
.item_detail .sub_ph img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 90px;
    overflow: hidden;
}
}
.item_detail .item_info {
    width: 100%;
}
.item_detail .item_comment {
    margin-bottom: 20px;
    font-size: 16px;
}
.item_detail .item_info .list_tbl tr th {
    width: 5.5em;
    white-space: nowrap
}
.item_detail .list_cart {
	display: block;
}
.item_detail .list_cart form {
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.item_detail .list_cart li form .btn_add_cart {
	width: 200px;
    margin-top: 0;
}
.btn_back {
	margin-top: 30px;
    text-align: center;
}
.btn_back a {
	display: inline-block;
	text-decoration: none;
	vertical-align: middle;
    width: 180px;
	padding: 10px;
    line-height: 1.1;
    font-size: 16px;
	color: var(--white);
	background: none;
	border: solid 1px var(--white);
    transition: all 0.3s
}
.btn_back a:hover {
	opacity: 0.7;
    background: rgba(var(--gray),0.4);
}
@media print, screen and (min-width:768px) {
.item_detail {
	display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.item_detail .fig {
	width: 256px;
}
.item_detail .item_info {
	width: calc(100% - 286px);
}
}
/*-------------------------------------------connect_list*/
.connect_list {
	font-size: 0;
	margin: 0 auto 20px;
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px dotted #fff;
}
.connect_list li {
	display: inline-block;
	width: 48%;
	max-width: 130px;
	margin-right: 4%;
	margin-bottom: 20px;
	text-align: center;
	vertical-align: top;
}
.connect_list li:nth-child(2n) {
	margin-right: 0;
}
.connect_list li figure {
	width: 80%;
	margin: 0 auto 10px;
}
.connect_list li figure img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100px;
}
.connect_list li .connect_number {
	font-size: 11px;
	padding-bottom: 2px;
}
.connect_list li .connect_name {
	font-size: 12px;
	padding-bottom: 2px;
}
.connect_list li .connect_price {
	font-size: 12px;
	font-weight: bold;
	color: #fff;
}


@media print, screen and (min-width:480px) {
.connect_list li {
	width: 32%;
	margin-right: 2%;
	max-width: 200px;
}
.connect_list li figure img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 120px;
}
.connect_list li:nth-child(2n) {
	margin-right: 2%;
}
.connect_list li:nth-child(3n) {
	margin-right: 0;
}
}

@media print, screen and (min-width:768px) {
.connect_list {
	text-align: left;
}
.connect_list li {
	width: 18%;
	margin-right: 2.5%;
}
.connect_list li:nth-child(2n) {
	margin-right: 2.5%;
}
.connect_list li:nth-child(3n) {
	margin-right: 2.5%;
}
.connect_list li:nth-child(5n) {
	margin-right: 0;
}