@charset "UTF-8";
/**
 * reset
 */
body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width:100%;
	height:auto;
	vertical-align:bottom;
}
strong {
	font-weight: bolder;
}
a {
	outline: none;
	color: #000;
	text-decoration: none;
	transition: opacity 0.3s;
}
a:hover {
	opacity: 0.5;
}

.dg.ac {
	z-index: 1000000 !important;
}


html {
	font-size:62.5%;
}
body {
	margin: 0;
	padding: 0;
	background-color: #F4F4F4;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 2;
	color:#000;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;

	/*user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-drag:none;
	-khtml-user-drag:none;*/
}
.an {
	font-family: 'Helvetica Neue', 'Helvetica', 'Noto Sans JP', 'Arial', sans-serif;
	letter-spacing: 0.1em;
}

/**
 * #contents
 */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
strong {
	font-weight: bolder;
}

@media only screen and (min-width:769px) {
	.sp {
		display: none !important;
	}
}
@media only screen and (max-width:820px) {
	body {
		font-size: 1.3rem;
	}
	.pc {
		display: none !important;
	}
}
@media print {
	header,
	footer,
	#countdown {
		display: none;
	}
}


/* micro clearfix  */
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after { clear: both; }

.clear {
	clear: both;
}

.tal {
	text-align: left;
}
.tac {
	text-align: center;
}
.tar {
	text-align: right;
}


/**
 * header
 */
header {
	position: fixed;
	z-index: 1000;
}
header .logo {
	position: relative;
	top: 45px;
	left: 45px;
	width: 100px;
}
@media only screen and (max-width:1000px) {
	header .logo {
		top: 20px;
		left: 20px;
	}
}
@media only screen and (max-width:820px) {
	header {
		transform: translateY(0%);
		transition: transform 0.2s ease-out;
	}
	header.off {
		transform: translateY(-120px);
		transition: transform 0.2s ease-in;
	}
	header .logo {
		top: 20px;
		left: 20px;
		margin: auto;
		width: 64px;
	}
	header .logo a:hover {
		opacity: 1 !important;
	}
}

/**
 * footer
 */
footer {
	padding: 100px 0 50px 0;
	text-align: center;
}
footer .copy {
	margin-top: 2em;
	font-size: 1.2rem;
}

/**
 * .btn
 */
.btn_link,
.btn_link_inv,
.btn_back {
	display: inline-block;
	box-sizing: border-box;
	width: auto;
	min-width: 200px;
	border: none;
	background-color: #000;
	border-radius: 100px;
	padding: 7px 30px;
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	text-align: center;
	transition: background 0.3s;
}
.btn_link_inv {
	background-color: #fff;
	color: #505050;
}
.btn_back {
	background-color: #D6D6D6;
	color: #000;
}
.btn_link:hover,
.btn_link_inv:hover,
.btn_back:hover {
	background-color: #ACACAC;
	color: #fff;
}
.btn_edit {
	display: inline-block;
	padding: 0 8px 4px 25px;
	background: url('../img/icon_edit.svg') no-repeat 5px 10px / 10px auto;
	border-bottom: solid 1px #707070;
	font-size: 1.4rem;
}
.btn_edit + *,
.complete + * {
	margin-top: 2em;
}
.complete {
	display: inline-block;
	padding: 0 0 0 22px;
	background: url('../img/icon_lock.svg') no-repeat 0 6px / 12px auto;
	font-size: 1.4rem;
	font-weight: 700;
}

/**
 * input
 */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea,
select,
button {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 6px 15px;
	background: #fff;
	border: none;
	border-radius: 0;
	vertical-align: middle;
	color: #000;
	font-size: 1.5rem;
	font-weight: 300;
	font-family: 'Noto Sans JP', sans-serif;

	-webkit-appearance:none;
	-moz-appearance:none;
	-o-appearance:none;
	-ms-appearance:none;
	appearance:none;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea {
	box-sizing: border-box;
	border: solid 1px #D6D6D6;
}
button {
	cursor: pointer;
}
select::-ms-expand {
	display:none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
select {
	width: auto;
	min-width: 250px;
	padding: 7px 30px 7px 15px;
	background: #D6D6D6 url("../img/icon_select.svg") no-repeat right 15px center / 8px auto;
	cursor: pointer;
}
select:hover {
	background-image: url("../img/icon_select_on.svg");
}
textarea {
	min-height: 100px;
}

button,
input[type="submit"] {
	display: inline-block;
	box-sizing: border-box;
	width: auto;
	min-width: 200px;
	border: none;
	background-color: #000;
	border-radius: 100px;
	padding: 12px 30px;
	font-family: inherit;
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	transition: background 0.3s;

	-webkit-appearance:none;
	-moz-appearance:none;
	-o-appearance:none;
	-ms-appearance:none;
	appearance:none;
}
input[type="submit"][disabled] {
	background-color: #D6D6D6 !important;
	cursor: default;
}
button:hover,
input[type="submit"]:hover {
	background-color: #ACACAC;
}
button.btn_inv {
	background-color: #D6D6D6;
	color: #000;
}
button.btn_inv:hover {
	background-color: #ACACAC;
	color: #fff;
}

button.btn_upload {
	width: 100%;
	background-color: #D6D6D6;
	border-radius: 0;
	color: #000;
}
button.btn_upload[disabled] {
	pointer-events: none;
	background-color: #fff;
}
button.btn_upload[disabled] span {
	opacity: 0.5;
}
button.btn_upload span {
	display: inline-block;
	padding-right: 20px;
	background: url('../img/icon_upload_b.svg') no-repeat right center / 12px auto;
}
button.btn_upload:hover {
	background-color: #ACACAC;
	color: #fff;
}
button.btn_upload:hover span {
	background-image: url('../img/icon_upload_w.svg');
}

input[type="radio"] {
	display: none !important;
}
input[type="radio"] + label {
	margin-right: 2em;
}
input[type="radio"] + label::before {
	display: inline-block;
	position: relative;
	top: -0.1em;
	width: 1em;
	height: 1em;
	background: transparent;
	border-radius: 100%;
	border: 1px solid #000;
	margin-right: 0.5em;
	vertical-align: middle;
	text-align: center;
	content: '';
	cursor: pointer;
	transition: all 0.25s ease;
}
input[type="radio"]:checked + label::before {
	background-color: #000;
	box-shadow: inset 0 0 0 4.5px #f4f4f4;
}

input[type="checkbox"] {
	display: none !important;
}
input[type="checkbox"] + label {
	position: relative;
}
input[type="checkbox"] + label::before {
	box-sizing: border-box;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 0.5em;
	background: #fff;
	border: solid 1px #D6D6D6;
	vertical-align: middle;
	content: '';
	cursor: pointer;
	transition: all 0.1s ease;
}
input[type="checkbox"] + label::after {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 10%;
	width: 20px;
	height: 100%;
	background: url('../img/icon_check_w.svg') no-repeat center center / 12px auto;
	transform: scale(0);
	content: '';
	transition: all 0.1s ease;
}
input[type="checkbox"]:checked + label::before {
	background: #000;
	border: solid 1px #000;
}
input[type="checkbox"]:checked + label::after {
	transform: scale(1);
}
input[type="checkbox"].large + label::before,
input[type="checkbox"].large + label::after {
	width: 30px;
	height: 30px;
}
input[type="checkbox"].large + label::before {
	border: solid 1px #000;
}
input[type="checkbox"].large + label::after {
	background: url('../img/icon_check_b.svg') no-repeat center 25% / 18px auto;
}
input[type="checkbox"].large:checked + label::before {
	background: #fff;
}

@media only screen and (max-width:820px) {
	input[type="text"],
	input[type="password"],
	input[type="number"],
	input[type="tel"],
	input[type="email"],
	textarea,
	select {
		min-width: auto;
		font-size: 1.4rem;
	}
	textarea {
		min-height: 150px;
	}
	select {
		padding: 6px 30px 6px 15px;
	}
}


/**
 * main
 */
main {
	padding-top: 180px;
}
main.stripe section:nth-child(even) {
	background-color: #EFEFEF;
}
main .inner {
	box-sizing: border-box;
	max-width: 1100px;
	padding: 0 45px 60px 45px;
	margin: auto;
}
main.stripe .inner {
	padding: 60px 45px;
}
main.stripe section:first-child .inner {
	padding-top: 0;
}
main .inner:before, main .inner:after {
	content: "";
	display: table;
}
main .inner:after { clear: both; }

main .side {
	float: left;
	width: calc(100% - 740px);
}
main .side + * {
	float: right;
	width: 720px !important;
}
main h2.ttl {
	line-height: 1.6;
	font-size: 2rem;
	font-weight: 700;
}
main h2.ttl .required {
	font-weight: normal;
	font-size: 1.6rem;
}
main .profile {
	margin: 2em 0;
}
main .profile h3,
main .profile h4 {
	font-weight: 700;
}
main .profile h3 span {
	margin-left: 1em;
	font-weight: 300;
}
main .profile a {
	display: inline-block;
	margin-top: 1em;
	text-decoration: underline;
	font-size: 1.2rem;
}
main .btns a + a,
main .btns br + a {
	margin-top: 2em;
}
main .inner table {
	width: 100%;
}
main .inner table th,
main .inner table td {
	padding: 15px 0;
	vertical-align: top;
}
main .inner table th {
	padding-right: 1em !important;
}
main .inner table .pay {
	color: #f00;
}
main .inner table .paid {
	color: #005CAC;
}
main .inner table .pay td,
main .inner table .paid td {
	font-weight: 700;
}
main .inner table td {
	width: 515px;
}
main .inner table table th,
main .inner table table td {
	width: auto;
	padding: 8px 0;
}
main .inner table table th {
	white-space: nowrap;
}
main .inner table tr:first-child th,
main .inner table tr:first-child td {
	padding-top: 0;
}
main .inner table td > span {
	display: inline-block;
	white-space: nowrap;
}
main .inner table td > span + span {
	margin-left: 20px;
}
main .inner table td br + input {
	margin-top: 15px;
}

main .name input[type="text"] {
	width: 215px;
	margin-left: 1em;
}
main input[type="text"].small {
	width: 250px;
	font-size: 1.6rem;
}
main .check > * {
	display: inline-block;
	margin: 0 1em 15px 0 !important;
}
main .num select {
	min-width: 100px;
}
main .ymd select {
	margin-right: 1em;
	min-width: auto;
	width: 118px;
}
main .half + .half {
	margin-top: 15px;
}
main .half input[type="text"],
main .half select {
	width: 48%;
	min-width: auto;
}
main .half input[type="text"] {
	margin-right: 4%;
}
main .address select {
	width: 100%;
}
main .address .zip {
	box-sizing: border-box;
	width: calc(100% - 100px);
	margin-right: 10px;
}
main .address .btn_address {
	box-sizing: border-box;
	width: 90px;
	min-width: auto;
	padding: 7px 0;
	background-color: #D6D6D6;
	border-radius: 0;
	font-weight: 300;
	color: #000;
}
main .address .btn_address:hover {
	background-color: #ACACAC;
	color: #fff;
}

#ph_ex + label,
#ad_ex + label,
#categ_ph + label,
#categ_ad + label,
#past_photo + label,
#past_ad + label {
	white-space: nowrap;
}
#ph_ex + label,
#past_photo + label,
#categ_ph + label {
	margin-right: 1em;
}
main * + p {
	margin-top: 1em;
}
main .required {
	color: #f00;
}
main .err {
	display: block;
	color: #f00;
	text-align: left;
}
main .small,
main .note {
	position: relative;
	font-size: 1.3rem;
}
main .note {
	padding-left: 1.3em;
}
main .note::before {
	position: absolute;
	left: 0;
	content: '※';
}
main .note + .note {
	margin-top: 0;
}
main ul.styled li {
	position: relative;
	padding-left: 1em;
}
main ul.styled li + li {
	margin-top: 0.2em;
}
main ul.styled li::before {
	position: absolute;
	left: 0;
	content: '・';
}
@media only screen and (max-width:1000px) {
	main .inner {
		padding: 0 20px 60px 20px;
	}
	main.stripe .inner {
		padding: 60px 20px;
	}
	main .side {
		float: none;
		width: 100%;
		margin-bottom: 50px;
	}
	main .side + * {
		float: none;
		width: 100% !important;
	}
}
@media only screen and (max-width:820px) {
	main .inner {
		padding: 0 20px 40px 20px;
	}
	main.stripe .inner {
		padding: 40px 20px;
	}
	main {
		padding-top: 140px;
	}
	main .side {
		margin-bottom: 40px;
	}
	main input[type="text"].small {
		font-size: 1.4rem;
	}
}
@media only screen and (max-width:720px) {
	main .inner table th {
		display: block;
		padding-bottom: 5px;
		font-weight: 700;
	}
	main .inner table td {
		display: block;
		padding-top: 0;
	}
	main .inner table th {
		padding-right: 1em !important;
	}
	main .inner table td {
		width: 100%;
	}
	main .inner table table th,
	main .inner table table td {
		display: table-cell;
		font-weight: 300;
	}
	main .name span {
		display: block !important;
	}
	main .name span + span {
		margin: 15px 0 0 0 !important;
	}
	main .name input[type="text"] {
		width: 80%;
	}

	main input[type="text"].small {
		width: 160px;
	}
	main .ymd select {
		margin-right: 0.5em;
	}
	main .ymd span:first-child {
		display: block;
		margin-bottom: 15px;
	}
	main .ymd span:nth-child(2) {
		margin-left: 0;
	}
	main .num select {
		min-width: auto;
	}
	main .half + .half {
		margin-top: 15px;
	}
	main .half input[type="text"],
	main .half select {
		width: 48%;
	}
	main .half input[type="text"] {
		margin-right: 4%;
	}

	main * + p {
		margin-top: 1em;
	}
	main .required {
		color: #f00;
	}
	main .small,
	main .note {
		position: relative;
		font-size: 1.3rem;
	}
	main .note {
		padding-left: 1.3em;
	}
	main .note::before {
		position: absolute;
		left: 0;
		content: '※';
	}
	main .note + .note {
		margin-top: 0;
	}
	main ul.styled li {
		position: relative;
		padding-left: 1em;
	}
	main ul.styled li + li {
		margin-top: 0.2em;
	}
	main ul.styled li::before {
		position: absolute;
		left: 0;
		content: '・';
	}
}

/**
 * .upload
 */
main .upload ol {
	display: flex;
	flex-wrap: wrap;
	counter-reset: list-count;
	margin: -4px;
}
main .upload ol li {
	position: relative;
	box-sizing: border-box;
	width: 16.666%;
	padding: 4px;
}
main .upload.ph ol li {
	width: 20%;
}
main .upload ol li:not(.not-count)::after {
	position: absolute;
	top: 4px;
	left: 4px;
	width: 20px;
	height: 20px;
	background-color: #D6D6D6;
	text-align: center;
	line-height: 20px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	content: counter(list-count);
	counter-increment: list-count;
}
main .upload ol li > div {
	position: relative;
	background: #fff no-repeat center center / cover;
}
main .upload ol li > div::before {
	display: block;
	padding-top: 100%;
	content: '';
}
main .upload ol li.act > div,
main .upload ol li.act + li:not(.act) > div {
	cursor: pointer;
}
main .upload ol li.act > div:hover::after,
main .upload ol li.act + li:not(.act) > div::after {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: calc(100% - 12px);
	height: calc(100% - 12px);
	margin: auto;
	padding-top: 55%;
	background: rgba(255,255,255, 0.9) url('../img/icon_delete.svg') no-repeat center 45% / 26% auto;
	text-align: center;
	font-size: 1.1rem;
	vertical-align: baseline;
	content: '削除';
}
main .upload ol li.act + li:not(.act) > div::after {
	background: rgba(255,255,255, 1) url('../img/icon_addphoto.svg') no-repeat center 45% / 30% auto;
	content: '写真を追加';
}
main .upload ol li.act + li:not(.act):hover > div {
	background-color: #D6D6D6;
}
@media only screen and (max-width:720px) {
	main .upload ol li,
	main .upload.ph ol li {
		width: 33.333%;
	}
}

/**
 * section.agree
 * section.foot
 */
main section.agree,
main section.foot {
	background-color: #fff !important;
}
main section.agree .inner,
main section.foot .inner {
	padding: 60px;
}
main div.agree {
	margin: 2em 0;
}
main .agree,
main .foot {
	text-align: center;
}
main .agree h3,
main .foot h3 {
	margin-bottom: 1em;
	font-weight: 700;
}
main .agree .btns,
main .foot .btns {
	margin-top: 3em;
}
main .agree .btns > *:nth-child(n+2),
main .foot .btns > *:nth-child(n+2) {
	margin-top: 2em;
}
main .foot .btns a span {
	display: block;
}
main .foot .btns a span::before {
	display: inline-block;
	position: relative;
	width: 25px;
	height: 25px;
	margin: 0 0.5em;
	background-color: transparent;
	border: solid 1px #000;
	border-radius: 100%;
	vertical-align: middle;
	overflow: hidden;
	transition: opacity 0.3s;
	content: '';
}
/* .foot .links */
main .foot .links {
	display: flex;
}
main .foot .links a {
	display: block;
	width: 100%;
	padding: 20px 0 30px 0;
	border-left: solid 1px #E5E5E5;
	text-align: center;
	font-weight: 700;
}
main .foot .links a:first-child {
	border-left: none;
}
main .foot .links a span {
	display: block;
	margin-top: 4em;
	font-weight: 700;
	font-size: 1.4rem;
}
main .foot .links a span::after {
	display: block;
	width: 26px;
	height: 26px;
	margin: 1em auto auto auto;
	border: solid 1px #000;
	border-radius: 100px;
	background: url('../img/icon_arrow_b.svg') no-repeat center center / 45% auto;
	content: '';
}
@media only screen and (max-width:1100px) {
	main section.agree .inner,
	main section.foot .inner {
		padding: 40px 20px;
	}
}
@media only screen and (max-width:720px) {
	main .foot .links {
		margin: 0 -15px;
	}
	main .foot .links a {
		padding: 20px 0 30px 0;
		font-size: 1.3rem;
	}
	main .foot .links a span {
		font-size: 1.1rem;
	}
}

/* .deadline */
main .foot + .deadline {
	margin-top: 60px;
}
main .deadline {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
}
main .deadline em {
	font-size: 2em;
}
main.mypage .deadline {
	margin-top: 60px;
}
@media only screen and (max-width:1000px) {
	main.mypage .deadline {
		margin-top: 50px;
	}
}
@media only screen and (max-width:720px) {
	main .deadline {
		font-size: 1.5rem;
	}
	main.mypage .deadline {
		margin-top: 0;
	}
}
@media only screen and (max-width:374px) {
	main .deadline {
		font-size: 1.2rem;
	}
}

/**
 * .signin
 */
main.signin {
	text-align: center;
}
main.signin h2 {
	margin-bottom: 3em;
}
main.signin p {
	margin-top: 2em;
}
@media only screen and (max-width:720px) {
	main.signin p {
		text-align: left;
	}
}


/**
 * .login
 */
main.login .box {
	box-sizing: border-box;
	width: 700px;
	margin: auto;
	padding: 60px;
	background-color: #fff;
	text-align: center;
}
main.login form {
	width: 415px;
	margin: 4em auto 3em auto;
}
main.login input[type="text"],
main.login input[type="password"],
main.login input[type="email"] {
	background-color: #EFEFEF;
	border: none;
}
main.login input:nth-child(n+2) {
	margin-top: 3em;
}
main.login a {
	display: inline-block;
	text-decoration: underline;
}
@media only screen and (max-width:720px) {
	main.login .box {
		width: 100%;
		padding: 40px;
	}
	main.login form {
		max-width: 90%;
	}
}

/**
 * #modal
 */
#modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}
#modal .bg {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
}
#modal .inner {
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	margin: auto;
	padding: 80px 60px;
	background-color: #fff;
	text-align: center;
}
#modal h3 {
	font-size: 2rem;
	font-weight: 700;
}
#modal p {
	margin: 2em 0;
	font-weight: 700;
}
@media only screen and (max-width:720px) {
	#modal .inner {
		width: 90%;
		padding: 60px 40px;
	}
}
