﻿@import './base.css';

html, body {
	font-size: 22px;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'palt';
	letter-spacing: .03em;
	/*height: 100%;*/
	width: 100%;
	min-height: 100%;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(to bottom, #e6f1f3, #cbdbe2);
	z-index: -1;
}

a:link,
a:visited,
a:hover,
a:active { color: #333; }


/* 構造 ----------- */

/* 共通 ----------- */

.no-pc { display: none !important; }
.no-sp { display: block !important; }

input[type=text], input[type=password] {
    width: 94%;
    border: 1px solid #ccc;
    padding: 5% 3%;
    color: #333;
}

input[type=text]::placeholder { color: #d3d3d3; }
input[type=password]::placeholder { color: #d3d3d3; }

.alignR { text-align: right !important; }
.alignC { text-align: center !important; }

.fontS {
    font-size: 85%;
}

.select-wrap {
	width: 100%;
	position: relative;
	display: inline-block;
}
.select-wrap select {
	width: 100%;
	float: left;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 3px 70px 3px 8px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 0;
	position: relative;
	height: 70px;
	background-image: none;
}
.select-wrap::before {
	content: '';
	width: 70px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	background-color: #ccc;
	pointer-events: none;
}
.select-wrap::after {
	content: '';
	position: absolute;
	border-top: 25px solid #fff;
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
	top: 25px;
	right: 20px;
	z-index: 2;
	pointer-events: none;
}

.msg-error {
	margin: 5px 0;
	line-height: 1.5;
	font-size: 18px;
	color: #A72609;
}


.radio-wrap label {
	padding: 0 0 0 30px;
}

.radio-wrap label::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	margin-top: -12px;
	background-color: #fff;
	border: 2px solid #84aabb;
	border-radius: 50%;
}

.radio-wrap input[type=radio] { display: none; }

.radio-wrap input:checked+label::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 4px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	background-color: #db9d46;
	border-radius: 50%;
}

/*ボタン*/
.btn>a {
	display: block;
	width: 285px;
	text-align: center;
	color: #fff;
	font-size: 22px;
	margin: 0 auto;
	height: 67px;
	line-height: 67px;
	border-radius: 50px;
	position: relative;
	font-weight: 500;
	position: relative;
}

.btn>a:hover {
	transform: translate3d(0, 3px, 0);
	box-shadow: none !important;
}

.btn.mid>a {
	font-size: 18px;
	height: 37px;
	line-height: 37px;
	border-radius: 50px;
}

.btn.arwR>a:after {
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	border-right: 1px solid #535a5b;
	border-top: 1px solid #535a5b;
	transform: rotate(45deg);
	top: 13px;
	right: 13px;
}

.btn.arwL>a:after {
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	border-left: 1px solid #535a5b;
	border-bottom: 1px solid #535a5b;
	transform: rotate(45deg);
	top: 13px;
	left: 13px;
}


.btn.toggle>a:after {
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	border-right: 1px solid #535a5b;
	border-bottom: 1px solid #535a5b;
	transform: rotate(45deg);
	top: 15px;
	right: 18px;
}

.btn.toggle>a.active:after {
	top: 21px;
	transform: rotate(-135deg);
} 

.btn.mid.toggle>a:after {
	top: 10px;
	right: 13px;
}

.btn.mid.toggle>a.active:after {
	top: 15px;
	transform: rotate(-135deg);
} 

.btn.yellow,
.btn.grey,
.btn.blue { margin-top: 30px; }
.btn.yellow>a {
	background-color: #db9d46;
	box-shadow: 0 3px 0 #c28b3e;
}

.btn.blue>a {
	color: #333;
	background-color: #c1dde1;
	box-shadow: 0 3px 0 #7ca5b7;
}

.btn.grey>a {
	color: #333;
	background-color: #e2e2e2;
	box-shadow: 0 3px 0 #d1d1d1;
}

.btn.close > a,
.btn.prev > a,
.btn.choice > a {
    font-size: 18px;
    color: #333;
    height: 37px;
    line-height: 37px;
    border-radius: 30px;
    background-color: #e2e2e2;
    box-shadow: 0 3px 0 #cdcdcd;
}

.btn.close>a { width: 200px; }
.btn.prev { margin: 40px 0; }

.btn.choice {
	display: flex;
	justify-content: space-between;
}

.btn.choice>a { width: 40%; }

.btn.zoom>a::before {
	content: '';
	width: 25px;
	height: 25px;
	background: url(../../images/icon-zoom.png) no-repeat 0 0;
	background-size: 100%;
	position: absolute;
	top: 12px;
	left: 30px;
}

.btn.more>a {
	width: 50%;
	background-color: #f3f3f3;
	color: #333;
}

.btn.more>a:after {
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	border-right: 1px solid #535a5b;
	border-bottom: 1px solid #535a5b;
	transform: rotate(45deg);
	top: 10px;
	right: 18px;
}

.paging {
	display: flex;
	justify-content: space-between;
	margin: 20px 10px 0;
}

.paging a {
	display: block;
	position: relative;
	font-size: 18px;
}

.paging a span {
	display: inline-block;
	background-color: #535a5b;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: relative;
	margin: 0 10px;
	vertical-align: -9px;
}

.paging a span::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 9px;
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
	border-right: 1px solid #e2e2e2;
	border-top: 1px solid #e2e2e2;
	margin-top: -5px;
}
.paging a.prev span::before {
	transform: rotate(-135deg);
	left: 13px;
}

/*バッヂ*/

.badge {
	display: inline-block;
	font-size: 16px;
	min-width: 95px;
	text-align: center;
	height: 20px;
	line-height: 20px;
	color: #fff;
	background-color: #3B2F43;
	margin-right: 10px;
}
.badge.blue { background-color: #75a6b8; }

/*モーダル*/
.modal-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	overflow: hidden;
	position: fixed;
	background: #0e0e0e;
	opacity: 0.9;
	color: #fff;
}

.modal {
	position: fixed;
	top: 100px;
	z-index: 1001;
	left: 50%;
	background-color: #e6f1f3;
	width: 500px;
	margin-left: -250px;
	padding: 10px;
}

.modal .inner {
	position: relative;
	background-color: #fff;
	padding: 5% 3%;
}

.modal .msg {
	text-align: center;
	margin: 20px 0;
	line-height: 1.5;
	font-size: 20px;
}

.modal .msg img {
	display: block;
	margin: 0 auto 20px;
	width: 50px;
}

.modal .close-cross {
	position: absolute;
	top: 0;
	right: 0;
}

.modal .close-cross a {
	display: block;
	height: 40px;
	width: 40px;
	position: relative;
}

.modal .close-cross a:before,
.modal .close-cross a:after {
	position: absolute;
	top: 20px;
	right: 7px;
	content: "";
	width: 25px;
	border-top: 2px solid #333;
}

.modal .close-cross a:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.modal .close-cross a:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.toggle-unit { display: none; }

.arw-list>li>a {
	font-size: 22px;
	display: block;
	padding: 20px 25px 20px 10px;
	position: relative;
	height: auto;
	border-bottom: 1px solid #e5e5e5;
	line-height: 1.3;
}

.arw-list>li>a:after {
	content: '';
	width: 12px;
	height: 12px;
	position: absolute;
	border-right: 1px solid #2d2d2d;
	border-top: 1px solid #2d2d2d;
	transform: rotate(45deg);
	top: 50%;
	right: 13px;
	margin-top: -6px;
}

.arw-list li.toggle a:after {
	transform: rotate(135deg);
	right: 10px;
	margin-top: -9px;
}

.arw-list>li>a.active:after {
	transform: rotate(-45deg);
	margin-top: -3px;
}

/*右カラム*/

.wrap {
	width: 1200px;
	margin: 50px auto;
}
.wrap::before,
.wrap::after {
	content: '';
	display: table;
	clear: both;
}

.wrap>section {
	box-sizing: border-box;
	width: 840px;
	padding: 20px;
	background-color: #fff;
	float: right;
	margin-bottom: 50px;
}


/*メニュー*/

#gdrawer-btn {
	display: none;
}

#gdrawer {
	width: 320px;
}

.gdrawer-body nav {
	background-color: #fff;
	padding: 20px;
	margin-bottom: 30px;
}

.gdrawer-body nav p {
	font-size: 26px;
	margin: 0 0 15px;
	font-weight: bold;
}

.gdrawer-body nav ul { background-color: #fff; }
.gdrawer-body nav ul a {
	display: block;
	padding: 20px 0;
	position: relative;
	height: auto;
	line-height: 1;
	border-bottom: 1px solid #e5e5e5;
}

.gdrawer-body nav ul a:hover { background-color: #e4f0f2 }

.gdrawer-body nav ul a img {
	width: 25px;
	height: auto;
	margin-right: 12px;
	vertical-align: -3px;
}

.gdrawer-body nav ul a.void,
.gdrawer-body nav ul a.void:hover {
	cursor: default;
	background-color: transparent;
}
.gdrawer-body nav ul a.indent {
	text-indent: 38px;
}
.gdrawer-body nav ul a.void:after { display: none; }


/* ヘッダー ----------- */
.header {
	width: 100%;
	height: 80px;
	background-color: #ccc;
}

.header>.inner {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}

.header h1 {
	position: absolute;
	top: 20px;
	width: 180px;
	margin: 0 auto;
}

.header h1 img {
	width: 100%;
	height: auto;
}

.header .user-info {
	font-size: 20px;
	height: 80px;
	line-height: 80px;
	position: absolute;
	top: 0;
	right: 0;
}

.header .user-info .logout {
	display: inline-block;
	margin-left: 20px;
}
.header .user-info .logout img {
	width: 25px;
	height: auto;
	margin-right: 12px;
	vertical-align: -4px;
}


/* login ----------- */

.login {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.login .header {
	width: 540px;
	background-color: #fff;
	height: auto;
	position: static;
	padding: 35px 0 20px;
}

.login .header>.inner { width: auto; }
.login .user-info { display: none !important; }

.login .header h1 {
	position: static;
	margin: 0 auto;
}
.login .header #gdrawer,
.login .header #gdrawer-btn { display: none; }
.login .wrap {
	width: 460px;
	padding: 0 40px;
	background-color: #fff;
	margin: 0;
}
.login .wrap>section {
	width: auto;
	padding: 0;
	background-color: transparent;
	float: none;
	margin-top: 0;
}
.login h2 {
	text-align: center;
	font-size: 28px;
	margin-bottom: 35px;
	font-weight: bold;
}

.login dl dt {
	font-size: 20px;
	margin: 35px 0 5px;
	line-height: 1.3;
}

.login input {
	font-size: 20px;
}

.login .btn>a { width: 285px; }

.login .pw-remainder,
.login .request-kit {
	text-align: center;
}

.login .pw-remainder {
	font-size: 15px;
	margin: 15px 0;
}

.login .request-kit {
	font-size: 20px;
	margin: 35px 0;
}

.login .pw-remainder a,
.login .request-kit a {
	text-decoration: underline;
	display: inline-block;
}

.security {
    padding: 1em;
    background-color: #A72609;
    color: #fff;
    line-height: 1.5;
    font-size: 13px;
    margin: 2em 0;
}

/*form-forget*/
.form-forget .desc {
	line-height: 1.5;
}

/* mypage&form&guide----------- */

.mypage h2,
.form h2,
.guide h2 {
	font-size: 26px;
	font-weight: bold;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.mypage .unit,
.form .unit,
.guide .unit {
	padding: 10px;
	background-color: #fff;
}

.mypage .unit.list,
.form .unit.list,
.guide .unit.list {
	line-height: 1.3;
}


/* mypage&form----------- */

.mypage .unit .price {
	background-color: #f5f5f5;
	text-align: center;
	padding: 20px 0;
	margin-bottom: 15px;
	font-weight: bold;
}

.mypage .unit .price p {
	display: inline-block;
	font-size: 52px;
	color: #a72609;
}
.mypage .unit .price.range p { font-size: 24px; }
.mypage .unit .price p i { font-size: 32px; }

.mypage .unit.item .inner {
	padding: 15px 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	text-align: center;
	margin-bottom: 20px;
}

.mypage .unit.item  {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: 1px solid #e5e5e5;
	padding: 20px 10px;
}

.mypage .unit.item>dl {
	width: 440px;
	border-right: 1px solid #e5e5e5;
}

.mypage .unit.item>dl>dt { font-size: 16px; }
.mypage .unit.item>dl>dd {
	font-size: 18px;
	padding: 10px 10px 10px 0;
	line-height: 1.5;
}

.mypage .unit.item .inner {
	width: 320px;
	font-size: 18px;
	border-top: none;
}

.mypage .unit.item .inner .price {
	background-color: transparent;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.mypage .unit.item .inner .price dl dt {
	width: 115px;
	float: left;
	clear: left;
	height: 40px;
	line-height: 40px;
	text-align: left;
}

.mypage .unit.item .inner .price dl dd {
	margin-left: 120px;
	height: 40px;
	line-height: 40px;
	text-align: right;
}

.mypage .unit.item .inner p i { font-size: 18px; }
.mypage .unit.item .inner .price p { font-size: 28px; }

.mypage .unit.item .inner .price dl dd .line-through { text-decoration: line-through; }
.mypage .unit.item .inner .price dl dd .special span {
	font-size: 10px;
	color: #fff !important;
	background-color: #a72609;
	padding: 4px;
	vertical-align: 5px;
	margin-right: 5px;
}

/* mypage----------- */

/*index*/

.mypage.index h2 {
	font-size: 28px;
	background-color: #7ca5b7;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	margin-top: 0;
	font-weight: normal;
}

.mypage.index .unit.list {
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	border-bottom: 1px solid #ccc;
	padding: 30px 0;
}

.mypage.index .unit.list.selling { margin-bottom: 40px; }

.mypage.index .unit.list img {
	width: 30px;
	height: auto;
	margin-bottom: 5px;
}

.mypage.index .unit.list .btn { margin-top: 30px; }

.mypage.index .unit.item .btn.toggle a {
	font-size: 18px;
	margin: 15px auto;
}

.mypage.index .unit.item ul {
	width: 70%;
	margin: 20px auto 10px;
}
.mypage.index .unit.item ul li {
	font-size: 14px;
	text-align: left;
	margin: 10px 0;
}
.mypage.index .unit.item ul li img {
	width: 15px;
	margin-right: 10px;
	vertical-align: -3px;
}
.mypage.index .unit.item ul li a { text-decoration: underline; }

.mypage.index .unit.empty {
	font-weight: normal;
	background-color: #f5f5f5;
	border-bottom: none;
	font-size: 20px;
	padding: 15px;
	text-align: left;
	margin: 30px 0;
}

.mypage.index .unit.item.selling {
	display: block;
	border-bottom: none;
}
.mypage.index .unit.item.selling dl { float: left; }
.mypage.index .unit.item.selling .inner {
	float: right;
	/*border-bottom: none;*/
}
.mypage.index .unit.item.selling .toggle-unit {
	display: none;
	padding: 10px 0;
}
.mypage.index .unit.item.selling .price {
	clear: both;
	height: auto;
}

/*estimate*/
.estimate .unit.list {
	padding: 20px;
	border: 1px solid #ccc;
	margin-bottom: 30px;
}

.estimate .unit.list .badge {
	font-size: 18px;
	padding: 8px;
}
.estimate .unit.list ul { margin-top: 30px; }
.estimate .unit.list ul li { margin-bottom: 15px; }
.estimate .unit.list ul li:first-child { font-weight: bold; }
.estimate .unit.list ul li:last-child { margin-bottom: 0; }
.estimate .unit.list ul li img {
	width: 25px;
	height: auto;
	vertical-align: -2px;
	margin-right: 10px;
}

.estimate .unit.list ul li:nth-child(2) { font-size: 18px; }
.estimate .unit.list ul li:nth-child(2) img { width: 15px; }


/*estimate-detail*/

.estimate-detail .lead {
	font-size: 18px;
	padding: 10px;
}

.estimate-detail .lead .status {
	display: inline-block;
	padding: 10px;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	text-align: center;
	margin-bottom: 10px;
}

.estimate-detail .lead dl dt {
	width: 200px;
	padding: 5px 0;
	float: left;
	clear: left;
}

.estimate-detail .lead dl dd {
	margin-left: 220px;
	padding: 5px 0;
}

.estimate-detail .comment .title {
	font-weight: bold;
	margin-bottom: 20px;
}

.estimate-detail .comment .title img {
	width: 25px;
	height: auto;
	vertical-align: -4px;
	margin-right: 10px;
}

.estimate-detail .comment .person {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	font-size: 18px;
	margin-top: 30px;
}

.estimate-detail .comment .person span { padding-top: 10px; }

.estimate-detail .unit.item {
	padding: 0;
	border-bottom: none;
	margin-top: 30px;
}

.estimate-detail .unit.item.selling {
	padding: 15px 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.estimate-detail .unit.item.selling .flex {
	width: 30.5%;
	padding: 0 10px;
	display: flex;
	align-items: center;
}

.estimate-detail .unit.item.selling .flex:nth-child(2) {
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	font-size: 18px;
}

.estimate-detail .unit.item .flex>dl {
	border: none;
}

.estimate-detail .unit.item .flex>dl>dt { font-size: 16px; }
.estimate-detail .unit.item .flex>dl>dd {
	font-size: 18px;
	line-height: 1.3;
	padding: 10px 0;
}
.estimate-detail .unit.item .flex>dl>dd img {
	width: 50%;
	height: auto;
	display: block;
	margin: auto;
}

.estimate-detail .unit.item .info { width: 100%; }
.estimate-detail .unit.item .info .price { margin-bottom: 0; }
.estimate-detail .unit.item .info .price:first-of-type { margin-bottom: 20px; }
.estimate-detail .unit.item .info .price+p { margin: 5px 0; }
.estimate-detail .unit.item .price p {
	font-size: 28px;
	margin-top: 5px;
}
.estimate-detail .unit.item .price p i,
.estimate-detail .unit.item .info .price.range p {
	font-size: 18px;
	margin-top: 0;
}
.estimate-detail .unit.item .price .line-through { text-decoration: line-through; }

.estimate-detail .unit.item .price .special { display: block; }
.estimate-detail .unit.item .price .special span {
	font-size: 10px;
	color: #fff !important;
	background-color: #a72609;
	padding: 4px;
	vertical-align: 5px;
	margin-right: 5px;
}
.estimate-detail .unit.item .info .toggle-unit .special span { vertical-align: 3px; }

.estimate-detail .unit.item .info .price.range {
	padding: 10px 0;
}

.estimate-detail .unit.item .info .btn.grey { margin-top: 20px; }
.estimate-detail .unit.item .btn>a {
	font-size: 16px;
	width: 230px;
	margin-bottom: 10px;
}

.estimate-detail .unit.item .info ul { margin-top: 20px; }
.estimate-detail .unit.item .info ul li {
	font-size: 14px;
	margin: 10px 0;
}
.estimate-detail .unit.item .info ul li:last-child { margin-bottom: 0; }
.estimate-detail .unit.item .info ul li img {
	width: 15px;
	margin-right: 10px;
	vertical-align: -3px;
}
.estimate-detail .unit.item .info ul li a { text-decoration: underline; }

.estimate-detail .unit.item .info .toggle-unit p {
	font-size: 18px;
	margin-bottom: 5px;
}

.estimate-detail .unit.item .info .toggle-unit p span {
	color: #333;
}

.estimate-detail .unit.item .deal {
	width: 100%;
	font-size: 18px;
}

.estimate-detail .unit.item .deal .title {
	text-align: center;
	font-weight: bold;
}

.estimate-detail .unit.item .deal ul {
	padding: 30px 0 0 50px;
}

.estimate-detail .unit.item .deal ul li {
	position: relative;
	margin-bottom: 30px;
}

.estimate-detail .unit.item .deal .status {
	line-height: 1.5;
	text-align: center;
}

.estimate-detail .unit.item .deal .status span {
	color: #db9d46;
	font-weight: bold;
}

.estimate-select .msg,
.estimate-change .msg {
	width: 90%;
	margin: 30px auto;
	font-size: 18px;
	line-height: 1.3;
	padding: 0;
}
.estimate-select .msg .title,
.estimate-change .msg .title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}

.estimate-select .msg p,
.estimate-change .msg p {
	font-size: 18px;
	line-height: 1.3;
}

.estimate-select .unit.item .info .price.range,
.estimate-select .unit.item .info p:first-of-type { margin-bottom: 10px; }

/*estimate-change*/

.estimate-change .unit.item.selling { border: 0; }

.estimate-change .unit.item.selling .status {
	color: #db9d46;
	font-weight: bold;
	margin-top: 10px;
}

/*payment*/

.payment .unit.list .price {
	font-size: 26px;
	margin-bottom: 0;
}

.payment .request-price {
	width: 460px;
	font-size: 26px;
	text-align: center;
	margin: 20px auto;
	font-weight: bold;
}
.payment .request-price input {
	margin-top: 10px;
	font-weight: normal;
}
.payment .arw-list {
	width: 460px;
	margin: 0 auto;
}
.payment .arw-list li a { border-bottom: none; }
.payment .arw-list li:last-child a {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.payment .toggle-unit {
	padding: 10px 15px;
	margin: 0 auto 20px;
	background-color: #f5f5f5;
}

.payment .toggle-unit dl {
	margin: 0 auto;
}

.payment .toggle-unit dl dt {
	float: left;
	clear: left;
	width: 165px;
	padding: 7px 0;
	font-weight: bold;
}

.payment .toggle-unit dl dd {
	margin-left: 165px;
	padding: 7px 0;

}

.payment .toggle-unit a {
	display: block;
	padding: 15px 0 10px;
	margin-top: 10px;
	text-align: center;
	text-decoration: underline;
	border-top: 1px solid #e5e5e5;
}

.payment .btn {
	margin: 50px 0 30px;
}

.payment .attention {
	font-size: 18px;
	line-height: 1.5;
}

.payment .unit.register { text-align: center; }
.payment .unit.register p {
	text-align: center;
	line-height: 1.3;
	font-size: 26px;
	margin: 30px 0;
	font-weight: bold;
}

.payment .unit.register p img {
	display: block;
	margin: 0 auto 20px;
	width: 50px;
}

.payment .unit.register .btn.mid a { font-size: 20px; }
.payment .unit.item .price { margin-bottom: 0; }
.payment .unit.item .price p { margin-top: 10px; }
.payment .unit.item .price p:first-child { margin-top: 0; }
.payment .unit.item .inner {
	border-bottom: none;
	padding: 0;
	margin-bottom: 0;
}
.payment .unit.item .inner dl { width: 100%; }

/*payment-history*/

.mypage.payment-history .unit ul+p {
	font-size: 26px;
	font-weight: bold;
	margin: 20px 0 10px;
}

.payment-history ul li time {
	display: block;
	margin-bottom: 10px;
	line-height: 1;
}

.payment-history ul li time img {
	width: 20px;
	height: auto;
	margin-right: 5px;
	vertical-align: -2px;
}

.payment-history .status {
	text-align: center;
	color: #db9d46;
	font-size: 26px;
	padding: 20px 0;
	margin-bottom: 40px;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
}
.payment-history .status.close {
	color: #333;
	font-weight: normal;
}

.mypage.payment-history .unit .price p {
	color: #333;
}

/*return*/
.return .unit.list img {
	display: block;
	width: 50%;
	height: auto;
	margin: 10px auto;
}
.return .unit.list .user {
	text-align: center;
}

.return .unit.list .user ul {
	background-color: #f5f5f5;
	padding: 15px;
	margin: 10px 0;
}

.return .unit.list .user ul li {
	text-align: left;
	margin: 3px 0;
}

.return .unit.list .user .btn { margin: 25px 0; }

.return .unit.list .detail {
	line-height: 1.5;
	margin-top: 20px;
}
.return .unit.list .detail a { text-decoration: underline; }

.return .msg {
	line-height: 1.3;
	text-align: center;
	margin: 30px 0;
}

.return .unit.empty {
	color: #888;
	background-color: #f5f5f5;
}

.return-detail .unit.item { padding: 10px 0 0; }
.return-detail .unit.item>dl {
	width: auto;
	border-right: none;
}

/* form----------- */

/*account*/
.account .unit.list dl dt,
.account-detail .unit.list dl dt {
	font-weight: bold;
	margin-bottom: 5px;
}

.account .unit.list dl dt {
	width: 180px;
	float: left;
	clear: left;
	text-align: center;
	background-color: #f5f5f5;
	padding: 10px 0;
	margin-bottom: 10px;
}

.account .unit.list dl dd {
	margin-left: 200px;
	line-height: 1.3;
	padding: 10px 0;
	margin-bottom: 10px;
}

.account .btn {
	border-top: 1px solid #e5e5e5;
	padding: 20px 0 40px;
}

.account-detail .unit.list dl dd {
	line-height: 1.3;
	margin-bottom: 40px;
	color: #d3d3d3;
}
.account-detail .unit.list dl dd:last-child { margin-bottom: 0; }

.account-detail .unit.list dl dd input {
	width: 60%;
	padding: 20px 10px;
}

.account-detail .unit.list dl dd span {
	color: #333;
	display: block;
	font-size: 18px;
	margin-top: 10px;
}

.account-detail .btn {
	margin-bottom: 20px;
}

/*bank*/
.bank .unit.list dl dt,
.bank-edit .unit.list dl dt {
	font-weight: bold;
	margin-bottom: 5px;
}

.bank .unit.list dl dt {
	width: 180px;
	float: left;
	clear: left;
	text-align: center;
	background-color: #f5f5f5;
	padding: 10px 0;
	margin-bottom: 10px;
}

.bank .unit.list dl dd {
	margin-left: 200px;
	line-height: 1.3;
	padding: 10px 0;
	margin-bottom: 10px;
}

.bank .btn.mid {
	border-top: none;
	padding-top: 20px;
	margin-top: 10px;
}

.bank-edit .tab-nav {
	height: 60px;
	line-height: 60px;
	margin: 30px 10px -1px 10px;
}

.bank-edit .tab-nav a {
	display: inline-block;
	text-align: center;
	width: 160px;
	height: 58px;
	line-height: 58px;
	background-color: #eee;
	border: 1px solid #eee;
	margin-left: -1px;
	overflow: hidden;
}
.bank-edit .tab-nav a:first-child { margin-left: 0; }
.bank-edit .tab-nav a.active {
	background-color: #fff;
	font-weight: normal;
	border-bottom: 1px solid #fff;
	cursor: default;
	font-weight: bold;
}

.bank-edit .tab-unit-wrap {
	border: 1px solid #eee;
	margin: 0 10px;
}

.bank-edit .tab-unit {
	width: 460px;
	margin: 40px auto 20px;
	display: none;
}

.bank-edit #tab1 { display: block; }

.bank-edit .unit.list dl dd {
	line-height: 1.3;
	margin-bottom: 40px;
	color: #d3d3d3;
}

.bank-edit .unit.list dl dd input {
	padding: 20px 10px;
}

.bank-edit .unit.list dl dd span,
.bank-edit .unit.list p span {
	color: #333;
	display: block;
	font-size: 18px;
	margin-top: 10px;
}

.bank-edit .btn {
	margin-bottom: 20px;
}

.bank-edit .attention a { text-decoration: underline; }

/*certificate*/
.certificate label {
	display: block;
	margin-bottom: 5px;
}
.certificate .select-wrap {
	width: 460px;
}

.certificate .your-id {
	display: none;
}

.certificate #your-id01 { display: block; }

.certificate .your-id dl dt {
	font-size: 26px;
	margin: 5px 0;
}
.certificate .your-id dl dd { margin-bottom: 30px; }
.certificate .your-id dl dd .preview {
	text-align: center;
	background-color: #f5f5f5;
	padding: 30px 0;
	font-weight: bold;
}
.certificate .your-id dl dd .preview img {
	width: 50px;
	height: auto;
	margin-bottom: 5px;
}

.certificate .btn.yellow {
	border-top: 1px solid #ccc;
	padding-top: 50px;
}

.certificate .your-id-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.certificate .your-id-list li {
	width: 49%;
}

.certificate .your-id-list li img {
	width: 100%;
	height: auto;
}

/*password*/

.password .msg { margin: 10px 0 40px; }

.password dl {
	padding: 20px;
	background-color: #f5f5f5;
}

.password dl dt {
	font-weight: bold;
	margin-bottom: 5px;
}
.password dl dd { margin-bottom: 30px; }
.password dl dd:last-child { margin-bottom: 0; }
.password dl dd input {
	font-size: 20px;
	padding: 20px 10px;
	width: 460px;
}

/*request*/
.request .unit.list.msg { margin-bottom: 30px; }

.request .unit.list dl dt {
	font-weight: bold;
	margin-bottom: 5px;
}

.request .unit.list dl dd {
	margin-bottom: 40px;
}
.request .unit.list dl dd:last-child { margin-bottom: 0; }

.request .unit.list dl dd.fixed {}

.request .unit.list dl dd p {
	margin-bottom: 10px;
	font-size: 18px;
}

.request .unit.list dl dd p span {
	color: #a72609;
}

.request .unit.list dl dd .attention {
	color: #333;
	display: block;
	font-size: 18px;
	margin-top: 10px;
}

.request .unit.list dl dd input[type=text] {
	width: 60%;
	padding: 20px 10px;
}

.request .unit.list dl dd .select-wrap {
	width: 60%;
}

.request .unit.list dl dd.radio ul {
	background-color: #f5f5f5;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.request .unit.list dl dd.radio ul li {
	width: 46%;
	margin-bottom: 20px;
	font-size: 20px;
}

.request .confirm .unit.list dl dd.radio ul {
	justify-content: center;
}

.request .unit.list dl dd.radio ul li img {
	display: block;
	width: 100%;
	height: auto;
	margin: 5px 0;
}

.request .unit.list dl dd.radio ul li span {
	display: block;
	margin: 20px auto;
	position: relative;
	width: 180px;
}

.request .btn {
	margin-bottom: 20px;
}

/*contact*/


.contact .unit.list dl dt {
	font-weight: bold;
	margin-bottom: 5px;
}

.contact .unit.list dl dd {
	margin-bottom: 40px;
}
.contact .unit.list dl dd:last-child { margin-bottom: 0; }

.contact .unit.list dl dd.fixed { color: #d3d3d3; }

.contact .unit.list dl dd p {
	margin-bottom: 10px;
	font-size: 18px;
}

.contact .unit.list dl dd p span {
	color: #a72609;
}

.contact .unit.list dl dd input[type=text] {
	width: 60%;
	padding: 20px 10px;
}

.contact .unit.list dl dd textarea {
	width: 100%;
	height: 460px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	padding: 20px 10px;
}

.contact .attention {
	color: #333;
	display: block;
	font-size: 18px;
	margin-top: 30px;
	line-height: 1.3;
}

/* guide----------- */

.fwB { font-weight: bold; }
.guide h2 { margin-bottom: 20px !important; }
.guide .unit.list h3 {
	font-size: 22px;
	font-weight: bold;
	border-bottom: 1px solid #e5e5e5;
	padding: 10px 0 10px 10px;
}

.guide .contact {
	margin-top: 40px;
}


/*sendyourself*/

.sendyourself h3 {
	font-size: 22px;
	font-weight: bold;
	background-color: #7ca5b7;
	color: #fff;
	padding: 15px 0 15px 10px;
	margin-bottom: 20px;
}

.sendyourself p span { color: #a72609; }
.sendyourself .unit.list { margin-bottom: 30px; }
.sendyourself .unit.list:last-child { margin-bottom: 0; }
.sendyourself .unit.list .memo {
	font-weight: bold;
	text-align: center;
	margin: 40px 0 10px;
}

.sendyourself .unit.list .arw-list {
	border-top: 1px solid #e5e5e5;
	margin: 20px 0;
}

.sendyourself .unit.list .address {
	margin-top: 30px;
	padding: 20px;
	background-color: #f5f5f5;
}

/*qa*/

.qa .unit.list nav {
	padding: 20px;
	background-color: #f5f5f5;
	margin-bottom: 20px;
}
.qa .unit.list nav ul li a {
	display: block;
	padding: 10px 0;
}
.qa .unit.list ul li .toggle-unit {
	padding: 20px;
	background-color: #f5f5f5;
}

/*beginner*/

.beginner .unit.list p {
	padding: 20px;
}

/*item*/

.item .handling img {
	width: 100%;
	height: auto;
	margin: 5px 0;
}
.item .handling ul { margin-top: 20px; }
.item .handling ul li {
	padding-left: 30px;
	margin-bottom: 10px;
	position: relative;
}

.item .handling ul li::before {
	content: '';
	position: absolute;
	top: 14px;
	left: 10px;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	margin-top: -3px;
	background-color: #333;
}

.item .brand nav { 
	background-color: #f5f5f5;
	padding: 10px;
	margin: 10px 0;
}

.item .brand nav div {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

.item .brand nav a {
	display: inline-block;
	width: 6.3%;
	margin: .5%;
	padding: 1% 0;
	font-size: 17px;
	text-align: center;
	background-color: #fff;
}
.item .brand nav a.no-sp { background-color: transparent; cursor: default; }
.item .brand nav div+a { width: 200px; }


.item .brand ul { margin: 20px 0; }
.item .brand ul li {
	padding: 10px 0 10px 10px;
	border-bottom: 1px solid #ccc;
}
.item .brand ul li.index {
	font-weight: bold;
}

/*terms*/

.terms .unit.list p {
	padding: 20px 0;
}
.terms .date { padding: 0 0 10px 10px }

/*@media screen and (max-width: 1024px) {*/
/* 1024pxまでの幅の場合に適応される */
/*}*/
/*@media screen and (max-width: 768px) {*/
/* 768pxまでの幅の場合に適応される */
/*}*/

@media( max-width:480px ){ 
/* 480pxまでの幅の場合に適応される */

/* 共通 ----------- */

.no-pc { display: block !important; }
.no-sp { display: none !important; }

input[type=text] { padding: 6% 3%; }

.header {
	width: 100%;
	height: 52px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	background-color: #ccc;
}
.header>.inner { width: auto; }
.header h1 {
	width: 130px;
	top: 12px;
	left: 50%;
	margin-left: -65px;
}

.user-info {
	text-align: right;
	padding-right: 3%;
	margin-top: 52px;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
}

.header .menu {
	position: fixed;
	top: 5px;
	right: 10px;
}

.wrap {
	width: auto;
	margin: 0;
	padding: 3%;
}

.wrap>section {
	width: auto;
	padding: 0;
	float: none;
	margin-top: 0;
	background-color: transparent;
}

.arw-list>li>a {
	font-size: 18px;
}

.btn>a {
	width: 90%;
	height: 47px;
	line-height: 47px;
	font-size: 20px;
}
.btn.mid>a,
.btn.close>a, .btn.prev>a,
.paging a { font-size: 15px; }

.select-wrap select {
	height: 40px;
	padding-right: 40px;
}
.select-wrap::before { width: 40px; }
.select-wrap::after {
	border-top: 15px solid #fff;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	top: 14px;
	right: 9px;
}

.msg-error { font-size: 17px; }

/*モーダル*/
.modal {
	left: 0;
	margin-left: 0;
	padding: 3%;
	width: 88%;
	margin: 0 3%;
}

/*メニュー*/

#gdrawer-btn {
	display: block;
	cursor: pointer;
	height: 52px;
	width: 52px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	font-size: 10px;
}
#gdrawer-btn span,
#gdrawer-btn span:before,
#gdrawer-btn span:after {
	display: block;
	width: 32px;
	height: 3px;
	content: '';
	background: #2e2e2e;
/*	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;*/
}
#gdrawer-btn span {
	position: relative;
	margin: 19px auto 0;
}
#gdrawer-btn span:before,
#gdrawer-btn span:after {
	position: absolute;
}
#gdrawer-btn span:before {
	top: 11px;
}
#gdrawer-btn span:after {
	bottom: 11px;
}

.gdrawer-show #gdrawer-btn span {
	background: transparent;
}
.gdrawer-show #gdrawer-btn span:before {
	top: 0;
	transform: rotate(45deg);
}
.gdrawer-show #gdrawer-btn span:after {
	top: 0;
	transform: rotate(-45deg);
}

#gdrawer-btn i {
	position: absolute;
	bottom: 5px;
	width: 100%;
	text-align: center;
}

.gdrawer-show #gdrawer {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 52px;
	left: 0;
	z-index: 1001;
}

#gdrawer {
	display: block;
	display: none;
	position: relative;
}

/*	#gdrawer-bg {
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		background: rgba(0,0,0,0.5);
	}*/

#gdrawer .gdrawer-body {
	height: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	background: linear-gradient(to bottom, #e6f1f3, #cbdbe2);
}

#gdrawer #gdrawer-content {
	height: 100%;
	width: 100%;
	max-width: 100%;
	background-color: transparent;
	position: relative;
	margin-left: -100%;
}

#gdrawer #gdrawer-content .inner {
	padding: 3%;
	margin-bottom: 40px;
}

.gdrawer-body nav {
	padding: 0;
	margin-bottom: 30px;
	background-color: transparent;
}

.gdrawer-body nav p {
	font-size: 20px;
	margin: 0;
}

.gdrawer-body nav ul {
	margin: 10px 0;
	padding: 0 3% 5% 3%;
}

.gdrawer-body nav ul a {
	font-size: 20px;
}

.gdrawer-body nav ul a:after {
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
    border-right: 1px solid #2d2d2d;
    border-top: 1px solid #2d2d2d;
    transform: rotate(45deg);
    top: 25px;
    right: 13px;
}

.gdrawer-body nav ul a.void:after { display: none; }

/* login ----------- */
.login { display: block; }
.login .header {
	width: auto;
	background-color: transparent;
	padding: 0;
}
.login .header #gdrawer-btn { display: none; }
.login .wrap {
	width: auto;
	margin-top: 0;
	background-color: transparent;
	padding: 3%;
}

.login .header h1 {
	width: 150px;
	margin: 30px auto 0;
}
.login h2 {
	margin: 10px 0 40px;
	font-size: 22px;
	font-weight: bold;
}
.login dl dt {
	margin: 20px 0 5px;
}

.login .btn>a { width: 90%; }

/* mypage&form&guide----------- */

.mypage h2,
.form h2,
.guide h2 {
	font-size: 20px;
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.mypage .unit,
.form .unit,
.guide .unit {
	padding: 5% 3% !important;
	background-color: #fff;
	margin: 10px 0 20px !important;
}

.mypage .unit.list,
.form .unit.list,
.guide .unit.list {
	font-size: 18px;
	line-height: 1.5;
}


/* mypage&form----------- */

.mypage .unit .price { padding: 5%; }

.mypage .unit .price p { font-size: 33px; }
.mypage .unit .price.range p { font-size: 24px; }
.mypage .unit .price p i { font-size: 20px; }

.mypage .unit.item {
	display: block;
	border-bottom: none;
}

.mypage .unit.item .inner {
	width: 100%;
	padding: 15px 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	text-align: center;
	margin-bottom: 20px;
}

.mypage .unit.item .inner .price {
	background-color: #f5f5f5;
	display: block;
}

.mypage .unit.item>dl {
	width: auto;
	border: none;
}

.mypage .unit.item>dl>dt { font-size: 15px; }
.mypage .unit.item>dl>dd {
	padding: 10px 0;
	line-height: 1.3;
}

.mypage .unit.banner {
	padding: 0;
}
.mypage .unit.banner img {
	width: 100%;
	height: auto;
}

/* mypage----------- */

/*index*/

.mypage.index h2 {
	font-size: 22px;
	padding: 10px 0;
	margin-bottom: 20px;
}

.mypage.index .unit.list {
	font-size: 20px;
	border-bottom: 0;
}

.mypage.index .unit.list img {
	width: 30px;
}

.mypage.index .unit.list .btn {
	padding: 20px 0 10px;
	margin-top: 15px;
	border-top: 1px solid #ccc;
}

.mypage.index .unit.item .inner .price { padding: 5%; }
.mypage.index .unit.item .btn { margin: 10px 0; }
.mypage.index .unit.item .btn.toggle a {
	font-size: 18px;
	margin-bottom: 15px;
}

.mypage.index .unit.empty {
	text-align: center;
	margin: 10px 0;
}

.mypage.index .unit.item.selling dl,
.mypage.index .unit.item.selling .inner {
	float: none;
}

/*estimate*/
.estimate .unit.list { border: none; }

.estimate .unit.list .badge { 
	font-size: 15px;
	padding: 0 10px;
}

.estimate .unit.list ul {
	margin-top: 20px;
}
.estimate .unit.list ul li:nth-child(1) { font-size: 20px; }
.estimate .unit.list ul li:nth-child(2) { font-size: 15px; margin-bottom: 10px; }

.estimate .unit.list .btn { margin-top: 15px; }

.estimate-detail .lead {
	font-size: 15px;
	padding: 10px 0;
}
.estimate-detail .lead .status {
	padding: 5px 0;
	width: 100%;
}
.estimate-detail .lead dl { padding: 0 10px; }
.estimate-detail .lead dl dt { width: 115px; }
.estimate-detail .lead dl dd {
	margin-left: 150px;
}

.estimate-detail .comment .btn>a::after {
    transform: rotate(135deg);
    top: 10px;
}
.estimate-detail .comment {
	position: relative;
	overflow: hidden;
}
.estimate-detail .comment .text.is-hide {
	height: 50px;
}
.estimate-detail .comment .text::before {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 150px;
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
	background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
}
.estimate-detail .comment .btn>a.is-show::after {
	transform: rotate(-45deg);
	top: 16px;
}


.estimate-detail .unit.item.selling { border: none; }
.estimate-detail .unit.item.selling .flex {
	width: 100%;
	display: block;
	padding: 0;
}

.estimate-detail .unit.item.selling .flex:nth-child(2) {
	border: 0;
	border-top: 1px solid #ccc;
	border-bottom: 0;
	padding: 15px 0 0;
}

.estimate-detail .unit.item .info { font-size: 20px; }
.estimate-detail .unit.item .price { margin-bottom: 0; }
.estimate-detail .unit.item .price+p { margin: 10px 0; }
.estimate-detail .unit.item .price p {
	font-size: 30px;
}
.estimate-detail .unit.item .price p i { font-size: 26px; }
.estimate-detail .unit.item .price.range p i,
.estimate-detail .unit.item .toggle-unit p i { font-size: 18px !important; }
.estimate-detail .unit.item .price.range p { font-size: 24px !important; }

.estimate-detail .unit.item .info ul {
	width: 70%;
	margin: 20px auto 0;
}

.estimate-detail .unit.item .btn>a {
	width: 90%;
	font-size: 18px;
}

.estimate-detail .unit.item .deal {
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid #ccc;
}

.estimate-detail .unit.item .deal .title {
	font-size: 20px;
	margin-bottom: 10px;
}

.estimate-detail .unit.item .deal ul {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.estimate-detail .unit.item .deal ul li {
	padding: 15px 0;
	margin: 0;
	width: 50%;
}

.estimate-select .unit.item .deal span {
	font-size: 20px;
}

.estimate-select .msg,
.estimate-change .msg {
	background-color: transparent;
	margin: 0 !important;
}
.estimate-select .msg .title,
.estimate-change .msg { font-size: 18px; }
.estimate-select .msg p,
.estimate-change .msg p { font-size: 12px; line-height: 1.5; }

.estimate-select .btn.yellow+.btn.grey {
	width: 80%;
	margin: 30px auto 0;
}

.estimate-change .attention {
	margin-top: 20px;
	font-size: 12px;
	line-height: 1.5;
}

/*payment*/

.payment .unit.list .price {
	font-size: 18px;
}

.payment .request-price {
	width: auto;
	font-size: 18px;
}
.payment .request-price input {
	padding: 3%;
}

.payment .arw-list { width: auto; }
.payment .arw-list li a { border-bottom: none; }
.payment .arw-list li:last-child a {
	border-top: 1px solid #ccc;
}

.payment .toggle-unit {
	width: 89%;
	padding: 3%;
	margin: 0 auto 20px;
	background-color: #f5f5f5;
}

.payment .toggle-unit dl {
	font-size: 15px;
	width: 97%;
	margin: 0 auto;
}

.payment .toggle-unit dl dt {
	width: 100px;
	padding: 5px 0;
}

.payment .toggle-unit dl dd {
	margin-left: 110px;
	padding: 5px 0;

}

.payment .toggle-unit a {
	display: block;
	padding: 15px 0 10px;
	margin-top: 10px;
	text-align: center;
	text-decoration: underline;
	border-top: 1px solid #e5e5e5;
}

.payment .btn.yellow>a {
}

.payment .btn {
	margin: 20px 0;
}

.payment .attention {
	font-size: 12px;
	line-height: 1.5;
}
.payment .unit.register { text-align: left; }
.payment .unit.register p {
	font-size: 20px;
	margin: 0 0 20px;
}

.payment .unit.register p img {
	width: 60px;
}

.payment .unit.register .btn.mid a { font-size: 20px; }

.payment .unit.item .price p { margin-top: 10px; }
.payment .unit.item .price p:first-child { margin-top: 0; }
.payment .unit.item .inner {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

/*payment-detail*/

.mypage .unit.item .inner .price dl { padding: 10px; box-sizing: border-box; }
.mypage .unit.item .inner .price dl dt,
.mypage .unit.item .inner .price dl dd { padding: 0; }
.mypage .unit.item .inner .price dl dt { width: 130px; }
.mypage .unit.item .inner .price dl dd { margin-left: 130px; }

/*payment-history*/


.mypage.payment-history .unit ul+p {
	font-size: 18px;
	margin: 15px 0 5px;
}
.payment-history ul li time { font-size: 15px; }

.payment-history .status {
	font-size: 20px;
	border-top: 1px solid #ccc;
	border-bottom: none;
	padding: 20px 0 0 0;
	margin: 0;
}

/*return*/
.return .unit.list { font-size: 15px; }
.return .unit.list img {
	width: 80%;
}
.return .unit.list .user { font-size: 18px; }
.return .unit.list .user ul { padding: 3%; }

.return .unit.list .user ul li {
	text-align: left;
	font-size: 18px;
	margin: 3px 0;
}

.return .unit.list .user .btn a { width: 70%; }

.return .msg {
	font-size: 18px;
	margin: 10px 0 30px;
}

.return .unit.empty {
	font-size: 18px;
}
.return-detail .btn { margin: 0; }


/* form----------- */

/*account*/

.account .unit.list,
.account-detail .unit.list {
	font-size: 18px;
}

.account .unit.list dl dt {
	float: none;
	width: auto;
	background-color: transparent;
	padding: 0;
	margin: 0;
	text-align: left;
}
.account .unit.list dl dd {
	margin-left: 0;
	line-height: 1.3;
	padding-bottom: 5px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}

.account .btn {
	border-top: none;
	padding: 0;
}


.account-detail .unit.list dl dd { margin-bottom: 15px; }
.account-detail .unit.list dl dd input {
	width: 100%;
	padding: 3%;
	box-sizing: border-box;
}
.account-detail .unit.list dl dd span { font-size: 12px; }

/*bank*/

.bank .unit.list,
.bank-ebit .unit.list {
	font-size: 18px;
}

.bank .unit.list dl dt {
	float: none;
	width: auto;
	background-color: transparent;
	padding: 0;
	margin: 0;
	text-align: left;
}
.bank .unit.list dl dd {
	margin-left: 0;
	line-height: 1.3;
	padding-bottom: 5px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}

.bank .btn {
	border-top: none;
	padding: 0;
}

.bank .btn.mid {
	width: 70%;
	margin: 10px auto 0;
}

.bank-edit .tab-nav {
	height: 60px;
	line-height: 60px;
	margin: 10px 0 0 0;
}
.bank-edit .tab-nav a {
	width: 47%;
	height: 60px;
	line-height: 60px;
	font-size: 20px;
	margin-left: 0;
	margin-top: -1px;
}
.bank-edit .tab-nav a:nth-of-type(2) { float: right; }
.bank-edit .tab-unit-wrap { margin: 0; }

.bank-edit .tab-unit {
	 width: auto;
	 margin: 0 !important;
}

.bank-edit .unit.list dl dd { margin-bottom: 15px; }
.bank-edit .unit.list dl dd input {
	width: 100%;
	padding: 3%;
	box-sizing: border-box;
}
.bank-edit .unit.list dl dd span { font-size: 12px; }
.bank-edit .unit.list p span { font-size: 14px; }

/*certificate*/

.certificate .your-id-list {
	display: block;
}

.certificate .your-id-list li {
	width: 100%;
	margin-bottom: 3%;
}

.certificate .your-id-list li:last-of-type { margin-bottom: 0; }

.certificate .select-wrap {
	width: 100%;
}

.certificate .your-id dl dt { font-size: 20px; }

.certificate .btn.yellow {
	border-top: none;
	padding-top: 0;
}

/*password*/
.password h2 { margin-bottom: 15px; }
.password .unit.list {
	padding: 0 !important;
	background-color: transparent;
}
.password .msg { margin: 0 0 10px; }
.password dl { padding: 3%; }
.password dl dd input {
	font-size: 16px;
	width: 100%;
	padding: 3%;
	box-sizing: border-box;
}

/*request*/

.request .unit.list.msg {
	background-color: transparent;
	margin: 10px 0 !important;
	padding: 0 !important;
}
.request .unit.list dl dd { margin-bottom: 20px; }

.request .unit.list dl dd input[type=text] {
	width: 100%;
	padding: 3%;
	box-sizing: border-box;
}

.request .unit.list dl dd.radio ul {
	background-color: transparent;
	padding: 0;
}
.request .unit.list dl dd.radio ul li {
	background-color: #f5f5f5;
	padding: 3%;
	margin-bottom: 3%;
	width: 94%;
	font-size: 18px;
}
.request .unit.list dl dd.radio ul li span {
	margin: 15px auto;
	font-size: 20px;
}

.request .unit.list dl dd p {
	font-size: 12px;
}

.request .unit.list dl dd .select-wrap { width: 100%; }
.request .unit.list dl dd .attention { font-size: 12px; }
.request .btn.grey>a { width: 70%; }

/*contact*/

.contact .unit.list dl dd { margin-bottom: 20px; }
.contact .attention {
	margin-top: 20px;
	font-size: 12px;
	line-height: 1.5;
}

/* guide----------- */

.guide h3 {
	font-size: 20px;
	margin-bottom: 0;
}

.guide .unit.list h3 {
	font-size: 20px;
	padding: 0 0 5px 5px; 
}

.guide .msg {
	background-color: transparent;
	font-size: 18px;
	margin: 10px 0 !important;
	padding: 0 !important;
}

.guide h3+.unit.list { margin-top: 0 !important; }

.guide .contact {
	background-color: transparent;
	margin: 0 !important;
	padding: 0 3% !important;
}

.guide .contact .btn.blue>a {
	background-color: #e2e2e2;
	box-shadow: 0 3px 0 #d1d1d1;
}

/*sendyourself*/

.sendyourself h3 {
	font-size: 18px;
	padding: 10px 0 10px 10px;
}

.sendyourself .unit.list { margin-bottom: 20px; }
.sendyourself .unit.list:first-child { background-color: transparent; }

.sendyourself .unit.list .memo {
	margin: 20px 0 10px;
}
.sendyourself .unit.list .memo img {
	width: 60%;
	height: auto;
}

.sendyourself .unit.list .arw-list {
	border-top: 1px solid #e5e5e5;
	margin: 10px 0 0;
}

.sendyourself .unit.list .address {
	margin-top: 0;
	padding: 15px;
}

#modal-zoom.zoom {
	width: 94%;
	margin: 0 auto;
}

#modal-zoom.zoom img {
	width: 100%;
	height: auto;
}

#modal-zoom.zoom .mfp-close {
	width: 60%;
	margin-top: 30px;
}

/*line*/

.line .unit.msg { line-height: 1.5; }
.line h3 {
	font-size: 18px;
	background-color: #7ca5b7;
	color: #fff;
	padding: 10px 0 10px 10px;
}

.line .msg .btn { margin-bottom: 30px; }
.line .unit.list.step p {
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}
.line .unit.list.step p:last-child { margin-bottom: 0; }
.line .unit.list.step p img {
	width: 200px;
	height: auto;
	margin-top: 5px;
}

.line .unit.list.point p {
	margin-bottom: 30px;
}
.line .unit.list.point p:last-child { margin-bottom: 0; }
.line .unit.list.point p img {
	width: 100%;
	height: auto;
	margin-top: 5px;
}

.line .unit.msg.attention { margin-top: 30px !important; }
.line .unit.msg.attention p { font-size: 12px; }
.line .unit.msg.attention .title {
	font-weight: bold;
	font-size: 18px;
}
.line .unit.msg.attention p span { color: #a72609; }


/*qa*/

.qa .unit.list nav {
	padding: 0;
	background-color: transparent;
	margin-bottom: 0;
}

.qa .unit.list nav ul { border-top: 1px solid #e5e5e5; }
.qa .unit.list nav ul li a {
	font-size: 20px;
	padding: 20px 0;
}
.qa .unit.list nav ul li {
	border-bottom: 1px solid #e5e5e5;
}

.qa .unit.list .arw-list>li>a {
	text-indent: 0;
	padding-right: 30px;
	line-height: 1.5;
}

.qa .unit.list .arw-list>li>a:after {
	top: 50%;
	margin-top: -9px;
}

.qa .unit.list .arw-list>li>a.active:after { margin-top: -3px; }

.qa .unit.list ul li .toggle-unit {
	padding: 3%;
}

/*beginner*/

.beginner .unit.list p { padding: 3% 0; }

/*item*/

.item .handling ul { margin-top: 10px; }
.item .brand nav a {
	width: 14%;
	margin: 1%;
}
.item .brand nav a.no-pc { background-color: transparent; }

.item .brand nav+p { font-size: 12px; }

}

@media( max-width:320px ){ 
}

/* Retina Display ----------- */

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {
}