﻿@charset "utf-8";

/**
 * Title: BLANC NET
 * Description: Style for cart
 * Update: 2015/11/05
 */

/*=========================================================
Responsive rule
===========================================================*/

@media only screen and ( max-width: 768px ) {
	/* mobile */
}

/*=========================================================
Page
===========================================================*/

/* cart_topicpath
.cart_topicpath {
	padding: 0 0 0 12px;
	margin: -8px 0 20px 0;
}
.column_full .cart_topicpath {
	width: 850px;
	padding: 12px 0 0 0;
	margin: 0 auto;
}
.cart_topicpath ul {
	overflow: hidden;
	line-height: 1.4;
}
.cart_topicpath ul:after {
	clear: both;
	display: block;
	content: "";
}
.cart_topicpath ul li {
	float: left;
	position: relative;
	display: block;
	padding: 4px 8px;
	margin: 0 0 0 16px;
}
.cart_topicpath ul li:before {
	position: absolute;
	left: -9px;
	top: 9px;
	display: block;
	width: 5px;
	height: 6px;
	background: url("../images/cart/cart_topicpath_arrow.png") no-repeat;
	content: "";
}
.cart_topicpath ul li:first-child {
	margin: 0;
}
.cart_topicpath ul li:first-child:before {
	display: none;
}
.cart_topicpath ul li.active {
	background-color: #ffffbf;
}
 */
.cart_topicpath {
	padding: 0 0 0 12px;
	margin: -5px 0 30px 0;
}
.column_full .cart_topicpath {
	padding: 12px 0 0 0;
	margin: 0 auto;
}
.cart_topicpath ul {
	/* reset basic style */
	background-color: transparent;
	padding: 0;
	text-align: center;
	display: block;
}
.cart_topicpath ul li {
	position: relative;
	padding: 0;
	display: inline-block;
}
.cart_topicpath ul li:last-of-type {
	margin-right: 0;
}
.cart_topicpath ul li > * {
	position: relative;
	padding: 1em .8em 1em 2.5em;
	color: #2c3f4c;
	background-color: #edeff0;
	/* the border color is used to style its ::after pseudo-element */
	border-color: #edeff0;
	display: block;
}
.cart_topicpath ul li.active > * {
	/* selected step */
	color: #ffffff;
	background-color: #0c419a;
	border-color: #0c419a;
}
.cart_topicpath ul li:first-of-type > * {
	padding-left: 1.6em;
	border-radius: .25em 0 0 .25em;
}
.cart_topicpath ul li:last-of-type > * {
	padding-right: 1.6em;
	border-radius: 0 .25em .25em 0;
  }
.cart_topicpath ul li:after,
.cart_topicpath ul li > *:after {
	/*
		li > *::after is the colored triangle after each item
		li::after is the white separator between two items
	*/
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	content: '';
	height: 0;
	width: 0;
	/* 48px is the height of the <a> element */
	border: 20px solid transparent;
	border-right-width: 0;
	border-left-width: 20px;
}
.cart_topicpath ul li:after {
	/* this is the white separator between two items */
	z-index: 1;
	-webkit-transform: translateX(4px);
	-moz-transform: translateX(4px);
	-ms-transform: translateX(4px);
	-o-transform: translateX(4px);
	transform: translateX(4px);
	border-left-color: #ffffff;
	/* reset style */
	margin: 0;
}
.cart_topicpath ul li > *:after {
	/* this is the colored triangle after each element */
	z-index: 2;
	border-left-color: inherit;
}
.cart_topicpath ul li:last-of-type:after,
.cart_topicpath ul li:last-of-type > *:after {
	/* hide the triangle after the last step */
	display: none;
}

@media only screen and ( max-width: 768px ) {
	.cart_topicpath,
	.column_full .cart_topicpath {
		width: auto;
		padding: 12px 4px 0 4px;
		margin: 0;
	}
	.cart_topicpath ul {
		text-align: left;
		font-size: 10px;
		line-height: 1.2;
	}
	.cart_topicpath ul li {
		padding: 3px 4px;
		margin: 0;
	}
	.cart_topicpath ul li > * {
		padding: 4px 4px 5px 6px;
	}
	.cart_topicpath ul li:first-of-type > * {
		padding-left: 12px;
	}
	.cart_topicpath ul li:last-of-type > * {
		padding-right: 12px;
	}
	/*
	.cart_topicpath ul li:before {
		left: -7px;
		top: 6px;
	}
	*/
	.cart_topicpath ul li:after {
		display: none;
	}
	.cart_topicpath ul li:after,
	.cart_topicpath ul li > *:after {
		border-width: 11px 5px;
	}
}

/* cart_header */
.cart_header {
	/*
	width: 1180px;
	*/
	width: 850px;
	margin: 0 auto;
}
.column_full .cart_header {
	padding: 40px 0 0 0;
}
.cart_header .cart_title {
	text-align: center;
	color: #0c419a;
	font-size: 30px;
	font-weight: normal;
	line-height: 1;
}

@media only screen and ( max-width: 768px ) {
	.cart_header,
	.column_full .cart_header {
		width: auto;
		padding: 16px 10px 0 10px;
	}
	.cart_header .cart_title {
		font-size: 19px;
	}
}

/* cart_main */
.cart_main {
	/*
	width: 1180px;
	*/
	width: 850px;
	margin: 24px auto 0 auto;
	zoom: 1;
}
.cart_main:after {
	clear: both;
	display: block;
	content: "";
}

@media only screen and ( max-width: 768px ) {
	.cart_main {
		width: auto;
		padding: 0;
		margin: 12px 0 0 0;
	}
}

/* cart_section */
.cart_section {
	margin-top: 24px;
}
.cart_section:first-child {
	margin-top: 0;
}
.cart_section_title {
	position: relative;
	padding: 2px 0 6px 16px;
	margin-bottom: 8px;
	background: url("../images/common/dotted.png") repeat-x 0 bottom;
	color: #3f9324;
	font-size: 21px;
	font-weight: normal;
	line-height: 1;
}
.cart_section_title:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 5px;
	height: 22px;
	background-color: #92d976;
	content: "";
}
.cart_section p {
	line-height: 1.4;
}

.cart_section pre {
	font-family:inherit;
}
@media only screen and ( max-width: 768px ) {
	.cart_section {
		width: auto;
		height: auto;
		padding: 0;
		margin-top: 16px;
		border: 0;
		box-shadow: none;
	}
	.cart_section_title {
		padding: 10px;
		margin: 0 0 5px 0;
		background: #92d976;
		color: #fff;
		font-size: 15px;
	}
	.cart_section_title:before {
		display: none;
	}
	.cart_section_inner {
		padding: 14px 10px;
	}

	.remodal-overlay .cart_frame_text {
		display: block !important;
		background-color: #fff;
		padding: 20px;
	}
}

/* cart_message */
.cart_message {
	margin-bottom: 16px;
}
.cart_message p {
	margin-top: 8px;
	line-height: 1.4;
}
.cart_message p:first-child {
	margin-top: 0;
}

@media only screen and ( max-width: 768px ) {
	.cart_message {
		width: auto;
		padding: 0 10px;
		margin-top: 16px;
		margin-bottom: 16px;
	}
	.cart_message:first-child {
		margin-top: 0;
	}
	.cart_message p {
		margin-top: 4px;
	}
}

/* cart_list */
.cart_list {
	border-left: 1px solid #e0e0e0;
	border-top: 1px solid #e0e0e0;
	box-shadow: 0 0 10px 0 #c0c0c0;
	-webkit-box-shadow: 0 0 10px 0 #c0c0c0;
}
.cart_list_main {
	display: table;
	width: 100%;
}
.cart_list_header,
.cart_list_section {
	display: table-row;
}
.cart_list_header_cell,
.cart_list_section_cell {
	display: table-cell;
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	text-align: center;
}
.cart_list_header_cell {
	padding: 6px 0;
	background-color: #fafafa;
}
.cart_list_section_cell {
	padding: 2px 0;
}

.cart_list_header_remove,
.cart_list_section_remove {
	width: 56px;
	text-align: center;
	vertical-align: middle;
}
.cart_list_header_number,
.cart_list_section_number {
	width: 56px;
	text-align: center;
	vertical-align: middle;
}
.cart_list_header_image,
.cart_list_section_image {
	width: 96px;
	text-align: center;
	vertical-align: middle;
}
.cart_list_section_image a {
	position: relative;
	display: block;
}
.cart_list_section_image a:after {
	position: absolute;
	right: 2px;
	bottom: 2px;
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images/common/lineup_product_image_zoom.png") no-repeat;
	background-size: 100%;
	content: "";
}
.cart_list_header_image img,
.cart_list_section_image img {
	width: auto;
	height: auto;
}
.cart_list_header_name,
.cart_list_section_name {
	width: auto;
	padding-left: 6px;
	padding-right: 6px;
	vertical-align: middle;
}
.cart_list_header_name {
	text-align: center;
}
.cart_list_section_name {
	text-align: left;
}
.cart_list_header_tokunou,
.cart_list_section_tokunou {
	width: 64px;
	text-align: center;
	vertical-align: middle;
}
.cart_list_section_tokunou img {
	width: auto;
	height: 18px;
}
.cart_list_header_type,
.cart_list_section_type {
	width: 110px;
	text-align: center;
	vertical-align: middle;
}
.cart_list_section_type img {
	width: auto;
	height: 18px;
}
.cart_list_header_volume,
.cart_list_section_volume {
	width: 72px;
	text-align: center;
	vertical-align: middle;
}
.cart_list_header_price,
.cart_list_section_price {
	width: 72px;
	padding-left: 6px;
	padding-right: 6px;
	vertical-align: middle;
}
.cart_list_section_price {
	text-align: right;
}
.cart_list_header_quantity,
.cart_list_section_quantity {
	width: 60px;
	text-align: center;
	vertical-align: middle;
}
.cart_list_section_quantity input[type=number] {
	display: inline-block;
	width: 46px;
	padding: 12px 0;
	border: 1px solid #fff;
	border-radius: 4px;
	background-color: #fff7b2;
	box-shadow: 2px 2px 2px 0 #b9b381 inset;
	-webkit-box-shadow: 2px 2px 2px 0 #b9b381 inset;
	text-align: center;
	font-size: 15px;
	line-height: 1;
}
.cart_list_header_total,
.cart_list_section_total {
	width: 72px;
	padding-left: 6px;
	padding-right: 6px;
	vertical-align: middle;
}
.cart_list_section_total {
	text-align: right;
}

@media only screen and ( max-width: 768px ) {
	.cart_list {
		margin-top: 16px;
		border-left: 0;
		border-top: 0;
		box-shadow: none;
		-webkit-box-shadow: none;
	}
	.cart_list_main {
		display: block;
		width: auto;
	}
	.cart_list_header {
		display: none;
	}
	.cart_list_section {
		position: relative;
		display: block;
		padding: 12px 8px 12px 116px;
		border-top: 1px solid #e0e0e0;
	}
	.cart_list_section:first-child {
		border-top: 0;
	}
	.cart_list_section:after {
		clear: both;
		display: block;
		content: "";
	}
	.cart_list_section_cell {
		display: inline;
		padding: 0;
		border-right: 0;
		border-bottom: 0;
	}

	.cart_list_section_remove {
		position: absolute;
		right: 6px;
		top: 6px;
		display: block;
		width: auto;
	}
	.cart_list_section_remove a {
		display: block;
		padding: 4px;
		border: 2px solid #ccc;
		border-radius: 6px;
		color: #999;
	}
	.cart_list_section_number {
		width: auto;
		text-align: left;
	}
	.cart_list_section_image {
		position: absolute;
		left: 4px;
		top: 8px;
		width: 100px;
	}
	.cart_list_section_image img {
		width: auto;
	}
	.cart_list_section_name {
		display: block;
		width: auto;
		padding-left: 0;
		padding-right: 0;
		margin: 8px 0 6px 0;
	}
	.cart_list_section_tokunou {
		width: auto;
		text-align: left;
	}
	.cart_list_section_type {
		width: auto;
		text-align: left;
		margin-left: 2px;
	}
	.cart_list_section_volume {
		display: block;
		width: auto;
		margin: 8px 0 0 0;
		text-align: left;
	}
	.cart_list_section_price {
		display: block;
		width: auto;
		padding-left: 0;
		padding-right: 0;
		margin: 0 0 8px 0;
		text-align: left;
	}
	.cart_list_section_quantity {
		float: left;
		display: block;
		width: auto;
	}
	.cart_list_section_total {
		float: right;
		display: block;
		width: auto;
		padding-top: 15px;
		padding-left: 0;
		padding-right: 0;
		text-align: right;
	}
	.cart_list_confirm .cart_list_section_total {
		padding-top: 0;
	}
}

/* cart_list_footer */
.cart_list_footer {
	display: table;
	width: 100%;
}
.cart_list_support,
.cart_list_fee,
.cart_list_total {
	display: table-row;
}
.cart_list_support dt,
.cart_list_support dd,
.cart_list_fee dt,
.cart_list_fee dd,
.cart_list_total dt,
.cart_list_total dd {
	display: table-cell;
	padding: 8px 6px;
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}
.cart_list_support dt,
.cart_list_fee dt,
.cart_list_total dt {
	text-align: right;
	background-color: #fafafa;
}
.cart_list_support dd,
.cart_list_fee dd,
.cart_list_total dd {
	width: 72px;
	text-align: right;
	background-color: #fafafa;
}
.cart_list_total dt {
	background-color: #fff0f0;
}
.cart_list_total dd {
	background-color: #fff0f0;
}

@media only screen and ( max-width: 768px ) {
	.cart_list_footer {
		border-top: 1px solid #e0e0e0;
	}
}

/* cart_change */
.cart_change {
	margin-top: 16px;
}
.cart_change a {
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid #999;
	border-radius: 6px;
	color: #222;
	font-size: 15px;
}
.cart_change a:hover {
	background-color: #f0f0f0;
	color: #444;
}

@media only screen and ( max-width: 768px ) {
	.cart_change {
		margin-top: 16px;
		margin-left: 10px;
	}
}

/* cart_frame_text */
.cart_frame_text {
	width: 640px;
	height: 120px;
	overflow: auto;
	border: 1px solid #e0e0e0;
}
.cart_frame_main {
	padding: 20px 10px;
}
.cart_frame_section {
	margin-top: 24px;
}
.cart_frame_section:first-child {
	margin-top: 0;
}
.cart_frame_section .cart_frame_title {
	font-size: 120%;
}
.cart_frame_section p {
	margin-top: 1em;
}

@media only screen and ( max-width: 768px ) {
	.cart_frame_text {
		width: 100%;
	}
}

/* cart_frame_link */
@media only screen and ( max-width: 768px ) {
	.cart_frame_link {
		margin-top: 10px;
		text-align: right;
	}
}

/* cart_cause */
.cart_cause_check {

}
.cart_cause p {
}
.cart_cause_check ul {
	margin-top: 16px;
}
.cart_cause_others {
	margin-top: 16px;
}
.cart_cause_others textarea {
	margin-top: 12px;
	width: 640px;
	height: 4em;
	resize: vertical;
	box-sizing: border-box;
}

@media only screen and ( max-width: 768px ) {
	.cart_cause_others textarea {
		width: 100%;
	}
}

/* cart_attention */
.cart_attention .cart_frame_text {
	margin-top: 16px;
}

/* cart_rule */
.cart_rule .cart_frame_text {
	margin-top: 16px;
}

/* cart_agreement */
.cart_agreement {
	margin-top: 24px;
	padding: 20px;
	border: 7px solid #fbfbfb;
	box-shadow: 0 0 10px 0 #c0c0c0;
	-webkit-box-shadow: 0 0 10px 0 #c0c0c0;
}
.cart_agreement_text p {
	text-align: center;
	font-size: 15px;
	line-height: 1.5;
}
.cart_agreement_check {
	margin-top: 24px;
	text-align: center;
}
.cart_agreement_check label {
	background-color: #fafafa;
	padding: 6px 24px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	color: #222;
	font-size: 16px;
}
.cart_agreement_notes {
	margin-top: 24px;
}
.cart_agreement_notes p {
	text-align: center;
}

@media only screen and ( max-width: 768px ) {
	.cart_agreement {
		padding: 12px 8px;
		margin: 12px 10px 0 10px;
		border: 6px solid #f0f0f0;
		box-shadow: none;
		-webkit-box-shadow: none;
	}
	.cart_agreement_text p {
		text-align: left;
		font-size: 12px;
		line-height: 1.4;
	}
	.cart_agreement_check {
		margin-top: 20px;
	}
	.cart_agreement_check label {
		padding: 8px 16px;
		border-radius: 6px;
		font-size: 15px;
	}
	.cart_agreement_notes {
		margin-top: 28px;
	}
	.cart_agreement_notes p {
		text-align: left;
		font-size: 11px;
		line-height: 1.4;
	}
}

/* cart_customer_input */
.cart_customer_input {
	display: table;
	width: 100%;
	margin-top: 16px;
	border-left: 1px solid #e0e0e0;
	border-top: 1px solid #e0e0e0;
	box-shadow: 0 0 10px 0 #c0c0c0;
	-webkit-box-shadow: 0 0 10px 0 #c0c0c0;
	line-height: 1.4;
}
.cart_customer_input dl {
	display: table-row;
}
.cart_customer_input dt,
.cart_customer_input dd {
	display: table-cell;
	padding: 8px 12px;
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}
.cart_customer_input .necessary dt:after {
  content: "※";
  color: #F02D00;
  font-weight: normal;
  padding-left: 3px;
}
.cart_customer_input dt {
	width: 225px;
	background-color: #fafafa;
}
.cart_customer_input dd {
}
.cart_customer_input .input_notes {
	display: block;
	margin-top: 4px;
	color: #777;
	font-size: 11px;
	line-height: 1.6;
}
.cart_customer_input .input_notes_inline {
	margin-left: 6px;
	color: #777;
	font-size: 11px;
}
.cart_customer_input input[type=text],
.cart_customer_input input[type=password],
.cart_customer_input input[type=tel],
.cart_customer_input input[type=email] {
	padding: 6px 8px;
	border: 1px solid #ccc;
}
.cart_customer_input input.input-ss {
	width: 78px;
}
.cart_customer_input input.input-s {
	width: 160px;
}
.cart_customer_input input.input-m {
	width: 320px;
}
.cart_customer_input input.input-l {
	width: 480px;
}

@media only screen and ( max-width: 768px ) {
	.cart_customer_input {
		display: block;
		width: auto;
		padding: 0;
		margin: 0;
		border-left: 0;
		border-top: 0;
		box-shadow: none;
		-webkit-box-shadow: none;
		line-height: 1.4;
	}
	.cart_customer_input dl {
		display: block;
		margin: 0;
	}
	.cart_customer_input dt,
	.cart_customer_input dd {
		display: block;
		padding: 0;
		border-right: 0;
		border-bottom: 0;
	}
	.cart_customer_input dt {
		width: auto;
		padding: 8px 10px;
		background-color: #f0f0f0;
	}
	.cart_customer_input dd {
		padding: 12px 10px;
	}
	.cart_customer_input dd p {
		/*
		padding-left: 1em;
		*/
		padding-left: 0;
	}
	.cart_customer_input dd img {
		max-width: 100%;
		height: auto;
	}
	.cart_customer_input input[type=text],
	.cart_customer_input input[type=password],
	.cart_customer_input input[type=tel],
	.cart_customer_input input[type=email] {
		box-sizing: border-box;
		padding: 4px 8px;
	}
	.cart_customer_input .input_notes_inline {
		display: block;
		margin-top: 6px;
		margin-left: 0;
	}
	.cart_customer_input input.input-s {
		width: 115px;
	}
	.cart_customer_input input.input-m {
		width: 100%;
		max-width: 320px;
	}
	.cart_customer_input input.input-l {
		width: 100%;
	}
}

/* cart_payment */
.cart_payment img.cards {
	height: 40px;
	width: auto;
	margin-left: 1.2em;
}
/* メッセージサイズが変わるのでコメントアウト
.cart_payment p {
	font-size: 15px;
} */
.cart_payment_guide {
	margin-top: 32px;
}
.cart_payment_guide .attention {
	color: #ff0000;
}

@media only screen and ( max-width: 768px ) {
	.cart_payment img.cards {
		width: auto;
		height: 36px;
	}
}

/* cart_buttons */
.cart_buttons {
	margin-top: 32px;
	text-align: center;
}
.cart_buttons_top {
	margin-top: 0;
	margin-bottom: 20px;
}
.cart_buttons_message {
	margin-bottom: 12px;
}
.order_finish_until_message {
	color: #FF0000;
	font-size: 20px;
	font-weight: bold;
}
.cart_buttons .cart_back,
.cart_buttons .cart_go,
.cart_buttons .cart_continue,
.cart_buttons .cart_print,
.cart_buttons .cart_detail,
.cart_buttons .cart_print2,
.cart_buttons .cart_logout,
.cart_buttons .cart_question {
	display: inline-block;
	box-sizing: border-box;
	height: 41px;
	border: 0;
	padding: 0;
	margin: 0 4px;
	overflow: hidden;
	color: #fff;
	font-family: Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 1;
	cursor: pointer;
}
.cart_buttons .cart_back {
	width: 148px;
	background: url("../images/cart/cart_back_pc.png") no-repeat;
	text-shadow: 0 0 3px #0d3b87;
}
.cart_buttons .cart_go,
.cart_buttons .cart_continue {
	width: 164px;
	background: url("../images/cart/cart_go_pc.png") no-repeat;
	text-shadow: 0 0 3px #cf2020;
}
.cart_buttons .cart_print,
.cart_buttons .cart_detail {
	width: 148px;
	background: url("../images/cart/cart_back_pc.png") no-repeat;
	text-shadow: 0 0 3px #0d3b87;
}
.cart_buttons .cart_logout {
	width: 164px;
	background: url("../images/cart/cart_go_pc.png") no-repeat;
	text-shadow: 0 0 3px #cf2020;
}
.cart_buttons .cart_question {
	background: url("../images/cart/cart_question_pc.png") no-repeat;
	text-shadow: 0 0 3px #155d06;
}

@media only screen and ( max-width: 768px ) {
	.cart_buttons {
		margin-top: 16px;
	}
	.cart_buttons_message {
		padding-left: 10px;
		padding-right: 10px;
	}
	.cart_buttons .cart_back,
	.cart_buttons .cart_go,
	.cart_buttons .cart_continue,
	.cart_buttons .cart_detail,
	.cart_buttons .cart_print2,
	.cart_buttons .cart_logout,
	.cart_buttons .cart_question {
		height: 35px;
		margin: 0 2px;
		font-size: 14px;
		letter-spacing: 1px;
	}
	.cart_buttons .cart_print {
		height: 35px;
		margin: 0;
		font-size: 14px;
		letter-spacing: 1px;
	}
	.cart_buttons .cart_back {
		width: 147px;
		background: url("../images/cart/cart_back_sp.png") no-repeat;
		background-size: 100% auto;
	}
	.cart_buttons .cart_go,
	.cart_buttons .cart_continue {
		width: 147px;
		background: url("../images/cart/cart_go_sp.png") no-repeat;
		background-size: 100% auto;
	}
	.cart_buttons .cart_print {
		width: 85px;
		background: url("../images/cart/cart_print_sp.png") no-repeat;
		background-size: 100% auto;
	}
	.cart_buttons .cart_detail {
		width: 120px;
		background: url("../images/cart/cart_detail_sp.png") no-repeat;
		background-size: 100% auto;
	}
	.cart_buttons .cart_logout {
		width: 90px;
		background: url("../images/cart/cart_logout_sp.png") no-repeat;
		background-size: 100% auto;
	}
	.cart_buttons .cart_question {
		background: url("../images/cart/cart_question_pc.png") no-repeat;
	}
}

/* card_type */
.card_type {
	margin-top: 24px;
}
.card_type_title {
	margin-bottom: 6px;
	font-weight: normal;
}
.card_type img {
	width: auto;
	height: 40px;
}

@media only screen and ( max-width: 768px ) {
	.card_type {
		margin-bottom: 24px;
	}
	.card_type_title {
		padding: 8px;
		background-color: #f0f0f0;
		margin-bottom: 12px;
	}
	.card_type img {
		margin-left: 10px;
	}
}

/* card_attention */
.card_attention {
	margin-top: 32px;
	padding: 32px;
	border: 3px solid #ff0000;
	border-radius: 6px;
	background-color: #FFFFBF;
}
.card_attention_title {
	text-align: center;
	color: #ff0000;
	font-size: 18px;
	line-height: 1;
}
.card_attention_title:before,
.card_attention_title:after {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin: 0 8px;
	background: url("../images/card/attention_icon.png") no-repeat;
	background-size: 100%;
	vertical-align: -2px;
	content: "";
}
.card_attention p {
	margin-top: 24px;
	text-align: center;
	font-size: 15px;
}

@media only screen and ( max-width: 768px ) {
	.card_attention {
		margin-left: 10px;
		margin-right: 10px;
		padding: 20px;
	}
	.card_attention p {
		font-size: 14px;
		line-height: 1.5;
	}
}

/* complete_message */
.complete_message_title {
	margin-bottom: 16px;
	font-size: 18px;
}
.complete_message p,
.complete_message dl {
	font-size: 15px;
	line-height: 1.6;
}
.complete_message dl dt,
.complete_message dl dd {
	display: inline;
}
.complete_message dl dd:before {
	content: "：";
}

@media only screen and ( max-width: 768px ) {
	.complete_message {
		padding: 0 10px;
	}
	.complete_message_title {
		margin-bottom: 12px;
		font-size: 15px;
	}
	.complete_message p,
	.complete_message dl {
		font-size: inherit;
	}
}

/* complete_attention */
.complete_attention {
	margin-top: 32px;
}
.complete_attention p {
	line-height: 1.8;
}
.complete_attention p.attention {
	color: #ff0000;
}

@media only screen and ( max-width: 768px ) {
	.complete_attention {
		padding: 0 10px;
		margin-top: 16px;
	}
}