@charset "UTF-8";
/*------------------------------------------------------------Content*/
/*---------------------------order_cart*/
.sheet_cart {
	width: 100%;
	border-collapse: collapse;
	border-bottom: 2px solid var(--white);
}
.sheet_cart tr th {
    line-height: 1.4;
    font-size: 13px;
	font-weight: 400;
}
.sheet_cart tr.title th {
	padding: 10px 5px;
	border-top: 2px solid var(--white);
    border-bottom: 1px solid rgba(var(--white_tr),0.3);
}
.sheet_cart tr.title th strong {
    font-size: 17px;
}
.sheet_cart tr.sub th {
	padding: 10px 5px 5px;
    text-align: center;
}
.sheet_cart tr td {
	padding: 0 5px 10px;
    text-align: center;
}
.sheet_cart tr td.delite {
	width: 50px;
}

.sum_box {
    display: flex;
    flex-direction: column;
    gap: 30px;
	margin-bottom: 30px;
}
.sum_box .sheet_cart {
	border-top: 2px solid var(--white);
}
.sheet_cart tr td.total {
	font-size: 18px;
}
.sheet_cart tr td.total span {
	font-size: 14px;
}

@media print, screen and (min-width:576px) {
.sum_box {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.sum_box > div.sum {
	width: calc(100% - 170px);
}
.sum_box > div.btn {
	width: 150px;
}
.sum_box .sheet_cart tr.sub th {
	padding: 20px 5px 5px;
}
.sum_box .sheet_cart tr td {
	padding: 0 5px 20px;
    text-align: center;
}
}
@media print, screen and (min-width:768px) {
.sum_box {
    margin-bottom: 40px;
}
.sum_box > div.sum {
	width: calc(100% - 230px);
}
.sum_box > div.btn {
	width: 200px;
}
}

.btn_delite {
    color: var(--white);
    padding: 2px 4px;
    font-size: 15px;
    border: solid 1px var(--white);
    background: none;
    transition: all 0.3s;
}
.btn_delite:hover {
    opacity: 0.7;
    background: rgba(var(--gray),0.4);
}

.order_cart_btn {
	display: flex;
    justify-content: center;
    gap: 15px;
	text-align: center;
}
.order_cart_btn li input {
	display: inline-block;
    color: var(--white);
    padding: 10px 20px;
    font-size: 16px;
    border: solid 1px var(--white);
    background: none;
    transition: all 0.3s;
}
.order_cart_btn li input:hover {
    opacity: 0.7;
    background: rgba(var(--gray),0.4);
}
@media print, screen and (min-width:576px) {
.order_cart_btn {
    flex-direction: column;
}
.order_cart_btn li input {
	width: 100%;
    padding: 10px;
}
}
@media print, screen and (min-width:768px) {
.order_cart_btn {
	display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
	text-align: center;
}
}

.order_cart_btn_main {
    margin: 30px 0;
}
.order_cart_btn_main ul {
	display: flex;
    flex-direction: column;
	text-align: center;
	gap: 15px;
}
.order_cart_btn_main ul li {
	border-top: 3px solid var(--blue);
	background: rgba(var(--gray_d),1);
	padding: 15px 20px 20px;
}
.order_cart_btn_main ul li p {
	margin-bottom: 10px;
	color: var(--blue);
	font-size: 18px;
}
.order_cart_btn_main ul li input {
	display: block;
    width: 100%;
	color: var(--white);
	text-decoration: none;
	padding: 12px 10px;
	border: solid 1px var(--white);
    background: none;
	font-size: 18px;
    transition: all 0.3s;
}
.order_cart_btn_main ul li input:hover {
	opacity: 0.7;
    background: rgba(var(--gray),0.4);
}
@media print, screen and (min-width:768px) {
.order_cart_btn_main {
    margin: 40px 0;
}
.order_cart_btn_main ul li {
	border-top: 3px solid var(--blue);
	background: rgba(var(--gray_d),1);
	padding: 20px 40px 30px;
}
.order_cart_btn_main ul li p {
	font-size: 22px;
}
.order_cart_btn_main ul li input {
	font-size: 20px;
}
}




/*shopping_btn*/
.shopping_btn {
	text-align: right;
}
.shopping_btn .btn_gray03 {
	padding: 8px 15px 6px;
}
.shopping_btn .btn_gray02 {
	padding: 8px 15px 6px;
}
.shopping_btn_center {
	text-align: center;
}
.shopping_btn_center .btn_gray03 {
	padding: 8px 15px 6px;
}
.shopping_btn_center .btn_gray02 {
	padding: 8px 15px 6px;
}
.shopping_btn_left {
	text-align: left;
}
.shopping_btn_left .btn_gray03 {
	padding: 8px 15px 6px;
}
.shopping_btn_left .btn_gray02 {
	padding: 8px 15px 6px;
}
/*cart_flow*/
.cart_flow {
	text-align: center;
	margin-bottom: 30px;
}
.cart_flow ul {
	display: flex;
    justify-content: space-between;
	text-align: center;
}
.cart_flow ul li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	width: 21%;
	color: var(--white);
	padding: 10px 2px;
    line-height: 1.4;
	font-size: 14px;
    background: rgba(var(--gray_d),1);
}
.cart_flow ul li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -18%;
	display: block;
    width: 12px;
    height: 12px;
    content: "";
    border-top: solid 2px rgba(var(--gray_l),0.7);
    border-right: solid 2px rgba(var(--gray_l),0.7);
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
}
.cart_flow ul li.step_on {
	color: #fff;
	background: rgba(var(--gray),0.5);
}
@media print, screen and (min-width:576px) {
.cart_flow ul li {
    width: 22%;
    padding: 10px 5px;
}
.cart_flow ul li:not(:last-child)::after {
    right: -12%;
}
.cart_flow ul li br {
    display: none;
}
}
@media print, screen and (min-width:768px) {
.cart_flow ul li {
    font-size: 16px;
}
.cart_flow ul li:not(:last-child)::after {
    right: -12%;
}
.cart_flow ul li br {
    display: none;
}
}


.order_cart_btn_column2 {
    display: flex;
    justify-content: space-between;
	text-align: center;
	margin-top: 30px;
}
.order_cart_btn_column2 li {
	width: calc((100% - 10px) / 2);
}
@media print, screen and (min-width:768px) {
.order_cart_btn_column2 {
	margin-top: 40px;
}
.order_cart_btn_column2 li {
	width: calc((100% - 20px) / 2);
}
}

/*cart_next_btn*/
.cart_next_btn input {
	display: block;
    width: 100%;
	color: #fff;
	text-decoration: none;
	padding: 10px;
	background: none;
	box-shadow: none;
	border: solid 1px var(--white);
	font-size: 16px;
}
.cart_next_btn input:hover {
	opacity: 0.7;
    background: rgba(var(--gray),0.4);
}
/*cart_back_btn*/
.cart_back_btn input {
	display: block;
    width: 100%;
	color: #fff;
	text-decoration: none;
	padding: 10px;
	background: none;
	box-shadow: none;
	border: solid 1px var(--white);
	font-size: 16px;
}
.cart_back_btn input:hover {
	opacity: 0.7;
    background: rgba(var(--gray),0.4);
}


/*form*/
.contact_form form {
	margin: 20px 0px 0px;
}
.contact_form dl {
	clear: both;
	margin: 0px 0px 0px 0px;
	padding: 15px 0px 15px 0px;
	border-top: 1px dotted #000;
}
.contact_form dl:last-child {
	border-bottom: 1px dotted #000;
}
.contact_form dl dt {
	font-weight: bold;
	margin-bottom: 10px;
}
.contact_form dl dd {
	padding: 0px 0px 0px 0px;
}
.contact_form dl dd.dd_child {
	padding-top: 15px;
}
.contact_form p.attention {
	margin: 3px 0 3px;
	padding: 0;
	color: #900;
}
.contact_form strong {
	font-weight: normal;
	font-size: 12px;
	margin: 0 0 3px;
	padding: 0;
	color: #900;
}
/*Txt Area*/
.inp_text, .inp_text_s, textarea, .dropdown_form {
	border: 1px solid #BFBFBF;
	padding: 5px;
	background: #fff;
	/* CSS3 */
	border-radius: 3px;
	/* Webkit */	
	-webkit-border-radius: 3px;
	background: -webkit-gradient( linear, left top, left bottom, from(#F1F1F1), to(#fff) );
	/* Firefox */	
	-moz-border-radius: 3px;
	background: -moz-linear-gradient( top, #F1F1F1, #fff );
	font-size: 1.6rem;
}
.dropdown option {
	margin-right: 10px;
}
/*Txt Area _テキストエリアのサイズ*/
.inp_text {
	width: 100%;
}
.inp_text_s {
	width: 60px;
}
textarea {
	width: 100%;
}

@media (min-width:768px) {
.inp_text {
	width: 50%;
}
textarea {
	width: 80%;
}
.contact_form dl {
	clear: both;
}
.contact_form dl dt {
	float: left;
	padding-left: 10px;
}
.contact_form dl dd {
	margin-left: 170px;
	border-left: 1px dotted #000;
	padding: 0px 0px 0px 15px;
}
.inp_text {
	width: 50%;
}
textarea {
	width: 80%;
}
}

/*コピーボタン*/
table.contact tr input[type="checkbox"]#copy01, table.contact tr input[type="checkbox"]#copy02, table.contact tr input[type="checkbox"]#copy03 {
	display: none;
}
table.contact tr label.copybtn {
	display: inline-block;
	cursor: pointer;
	margin: 0 0 5px;
	padding: 8px 10px;
	border: solid 1px var(--white);
	background: none;
	box-shadow: none;
	color: var(--white);
	text-align: center;
    line-height: 1.1;
	transition: .2s;
}
table.contact tr label.copybtn:hover {
    opacity: 0.7;
    background: rgba(var(--gray),0.4);
}
table.contact tr input[type="checkbox"]#copy02 + label.copybtn {
	margin: 0 10px 5px 0;
}
