@charset "utf-8";

/* ▼一時的------------------- */
.flexslider {
	width: 100%;
	max-width: none !important;
}
/* ▲一時的------------------- */

/* FORM PARTS
 ======================================== */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
input[type="mailaddress"],
textarea,
select {
	width: 100%;
	border: 1px solid #bfbfbf;
	padding: 0 1.5rem;
	font-size: 1.6rem;
	-webkit-border-radius : 0;
	-webkit-appearance : none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
}
@media screen and (min-width: 481px) {
	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="tel"],
	input[type="range"],
	input[type="date"],
	input[type="month"],
	input[type="week"],
	input[type="time"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="color"],
	input[type="mailaddress"],
	textarea,
	select {
		font-size: 1.4rem;
	}
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
input[type="mailaddress"],
select {
	height: 45px;
}
input:disabled,
textarea:disabled,
select:disabled {
	background: #e6e6e6;
}
/* FORM:見出し -------*/
label.ttl,
.labelTtl {
	display: block;
	margin-bottom: .5rem;
	font-size: 1.5rem;
	font-weight: bold;
	cursor: auto;
}
* + label.ttl,
* + .labelTtl {
	margin-top: 2rem;
}
.secSubTtl.must::after,
label.must::after {
	content: "必須";
    display: inline-block;
    margin-left: .5rem;
    padding: 0 1rem;
    background: #f00;
    border-radius: 2px;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.5;
    vertical-align: text-top;
}

/* FORM:text -------*/
input.input-s {
	width: 50%;
}
/* FORM:textarea -------*/
textarea {
	max-width: none;
	padding: 1rem 1.5rem;
	resize: vertical;
}

/* FORM:select ---------*/
label.select {
	display: block;
	width: 100%;
}
label[class^="select-"] {
	display: inline-block;
}
label.select-s {
	width: 50%;
}
label.select-m {
	width: 80%;
}
label[class^="select"] {
	position: relative;
}
label[class^="select"]::after {
	font-family: 'FontAwesome';
	content: '\f0d7';
	display: block;
	width: 30px;
	line-height: 45px;
	text-align: center;
	position: absolute;
	top: 0;
	right: 0;
	pointer-events: none;
	z-index: 10;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0 3rem 0 1.5rem;
	cursor: pointer;
	background: #fff;
}
select::-ms-expand {
	display: none;
}
select.select-s {
	width: 50%;
}
.select option {
	color: #000;
}
.select option.not-select{
	display: none;
}
@media screen and (min-width: 481px) {
	label[class^="select"]::after {
		width: 45px;
	}
	optgroup {
		display: none;
	}
}

/* FORM:radio, checkbox ---------*/
input[type=radio], input[type=checkbox] {
	display: none;
}
.radio, .checkbox {
	position: relative;
	display: inline-block;
	padding: 0 0 0 25px;
	vertical-align: top;
	line-height: 1.5;
	cursor: pointer;
}
.radio:hover::after, .checkbox:hover::after {
	border-color: #ea5413;
}
.radio::after, .checkbox::after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 13px;
	height: 13px;
	border: solid 1px #bfbfbf;
	background: #fff;
	content: '';
}
.radio::before, .checkbox::before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
    top: -8px;
    left: 4px;
    z-index: 10;
    display: block;
    width: 8px;
    height: 16px;
    border-right: 4px solid #ea5413;
    border-bottom: 4px solid #ea5413;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
input[type=radio]:disabled + .radio,
input[type=checkbox]:disabled + .checkbox {
	background: #ddd;
	color: #666;
	cursor: default;
	opacity: 0.5;
}
input[type=radio]:disabled + .radio:hover::after,
input[type=checkbox]:disabled + .checkbox:hover::after {
	border: solid 1px #bfbfbf;
}
input[type=radio]:checked + .radio::before,
input[type=checkbox]:checked + .checkbox::before {
	opacity: 1;
}
.radio + input[type=radio] + .radio,
.checkbox + input[type=checkbox] + .checkbox {
	margin-left: 40px;
}
.radioList,
.radioLists li,
.checkboxList,
.checkboxLists li {
	line-height: 1.4rem;
}
.radioLists li,
.checkboxLists li {
	margin: 1.5rem 0;
}

/* FORM:placeholder -------------*/
:placeholder-shown { color: #8e8e8e; }
/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder { color: #8e8e8e; }
/* Firefox 18- */
:-moz-placeholder { color: #8e8e8e; opacity: 1; }
/* Firefox 19+ */
::-moz-placeholder { color: #8e8e8e; opacity: 1; }
/* IE 10+ */
:-ms-input-placeholder { color: #8e8e8e; }

/* FORM:button -------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	height: 50px;
    padding: 1rem;
    border: none;
	font-family: 'FontAwesome';
    font-size: 1.3rem;
	line-height: 1;
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: relative;
	cursor: pointer;
	-webkit-appearance: none;
}
button::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: .7rem;
	vertical-align: baseline;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	opacity: .7;
}
@media screen and (min-width: 481px) {
	button::before {
		width: 12px;
		height: 12px;
		margin-right: 1.5rem;
	}
}

/* ICON
 ======================================== */
.icon::before,
*[class^="btn-"]::before, 
*[class^="btn-"]::after {
	font-family: 'FontAwesome';
}
.icon::before {
	padding-right: 5px;
}
.icon.fb::before {
	content: '\f09a';
}
.icon.ig::before {
	content: '\f16d';
}
.icon.orderroom::before {
	content: '\f291';
}
.icon.contact::before {
	content: '\f003';
}
*[class^="btn-"]::before {
	padding-right: 10px;
}
*[class^="btn-"]::after {
	padding-left: 10px;
}
*[class^="btn-"].arrowR::after {
	content: '\f105';
	font-size: 1.6rem;
}
*[class^="btn-"].order::before {
	content: '\f291';
}
*[class^="btn-"].contact::before {
	content: '\f003';
}
*[class^="btn-"].register::before {
	content: '\f118';
}
*[class^="btn-"].signin::before {
	content: '\f090';
}
*[class^="btn-"].signout::before {
	content: '\f08b';
}

/* HEADER
 ======================================== */
header {
	width: 100%;
	position: fixed;
	z-index: 1000;
	background: #fff;
}
.headerInner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2%;
	position: relative;
}
.headerTtls {
	position: relative;
}
.home p.headerTtl {
	display: none;
}
:not(.home) h1.headerTtl {
	display: none;
}
.headerLogo {
	width: 100px;
    height: auto;
}
.headerInner.headerMin .headerLogo {
	margin: 0 auto;
}
.headerMainNav li {
	letter-spacing: .2rem;
	line-height: normal;
	text-align: center;
}
.utilityNav li {
	text-align: center;
}
.utilityNav li:nth-child(-n+2) a {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
.utilityNav .sns {
	font-size: 3rem;
}
.utilityNav .sns.fb {
	margin-right: 2rem;
}
.utilityNav .orderroom,
.utilityNav .contact {
	padding: .8rem 1rem;
}
.utilityNav .orderroom {
	color: #fff;
	background: #ea5413;
	border: solid 1px #ea5413;
}
.utilityNav .contact {
	background: #fff;
	border: solid 1px #000;
}
.btn-tglNav {
	width: 30px;
	height: 30px;
	cursor: pointer;
	text-align: right;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -15px;
	display: none;
}
.btn-tglNav::before {
	content: '\f0c9';
	font-size: 2.8rem;
	line-height: 2.8rem;
}
.btn-tglNav.open::before {
	content: '\f00d';
}

@media only screen and (max-width:768px){
	.headerTtl {
		height: 6px;
		line-height: 6px;
		font-size: .6rem;
		position: absolute;
		left: 110px;
		bottom: 0;
	}
	.headerNav {
		display: none;
	}
	.headerMainNav {
		padding: 2rem 0 1rem;
	}
	.headerMainNav li {
		margin: 2rem;
	}
	.utilityNav li {
		margin: 2rem auto;
	}
	.utilityNav li.utilityNav__odersheet,
	.utilityNav li.utilityNav__contact {
		width: 200px;
	}
	.btn-tglNav {
		display: block;
	}
}
@media only screen and (min-width:769px){
	.headerInner {
		height: 105px;
		padding: 1rem 2% 0;
	}
	.headerInner.headerMin {
		height: 80px;
	}
	.headerInner,
	.utilityNav,
	.headerMainNav {
		letter-spacing: -.4em;
	}
	.headerTtls,
	.headerNav,
	.utilityNav > li,
	.headerMainNav > li {
		display: inline-block;
		vertical-align: bottom;
		letter-spacing: normal;
	}
	.utilityNav {
		position: absolute;
		top: 1rem;
		right: 2rem;
	}
	.utilityNav li {
		margin-left: 1rem;
		vertical-align: middle;
	}
	.utilityNav li.utilityNav__odersheet,
	.utilityNav li.utilityNav__contact {
		width: 160px;
		font-size: 1.3rem;
	}
	.utilityNav li.utilityNav__sns {
		display: inline-flex;
		margin-left: 2rem;
		padding-left: 2rem;
		border-left: solid 1px #666;
	}
	.utilityNav .sns {
		font-size: 2rem;
	}
	.utilityNav .sns.fb {
		margin-right: 1.5rem;
	}
	.utilityNav .orderroom,
	.utilityNav .contact {
		padding: .4rem 1rem;
	}
	.headerMainNav li {
		margin: 0 1.5rem;
	}
	.headerTtls {
		margin-right: 3rem;
	}
	.headerTtl {
		margin: 0 0 .5rem .2rem;
		font-size: 1rem;
		letter-spacing: normal;
	}
	.headerLogo {
		width: 180px;
	}
}

/* CONTENTS
 ======================================== */
.contents {
	padding-top: 50px;
}
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2%;
    letter-spacing: -.4em;
}
.breadcrumb li {
	display: inline-block;
	letter-spacing: normal;
    font-size: 1rem;
	color: #7b7b7b;
}
.breadcrumb li:first-child a::before {
	content: '\f015';
}
.breadcrumb li:not(:last-child)::after {
	font-family: 'FontAwesome';
	content: '\f105';
	padding: 0 1rem;
}
.breadcrumb li a {
	color: #7b7b7b;
}
.btn,
.btns {
	margin-top: 2rem;
	text-align: center;
}
.btns {
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn-surface,
.btn-line,
.btn-cancel {
	display: inline-block;
	padding: 1.5rem 3rem;
	border-radius: 40px;
	cursor: pointer;
}
.btns .btn-surface,
.btns .btn-line,
.btns .btn-cancel {
	margin: 0 1rem;
}
.btn-surface.mini,
.btn-line.mini,
.btn-cancel.mini {
	min-width: 0;
	height: auto;
	padding: 1rem 2rem;
	font-size: 1.2rem;
}
.btn-surface {
	color: #fff;
	background: #ea5413;
}
.btn-line {
	color: #fff;
	background: #000;
}
.btn-cancel {
	color: #fff;
	background: #9e9e9e;
}
.tag {
	display: inline-block;
	padding: .5rem 1rem;
    line-height: normal;
    border-radius: 20px;
    background: #fff;
	font-size: 1.2rem;
}
.tag::before {
    content: '\f02b';
}
.tag + .tag {
	margin-left: 1rem;
}
section {
	padding: 1rem 2% 14rem;
}
section .inner {
	max-width: 1200px;
	margin: 0 auto;
}
section .secTtl {
    margin: 2rem 0 4rem;
    font-size: 2.5rem;
    letter-spacing: .6rem;
    text-align: center;
}
section .secSubTtl {
    margin: 4rem 0 1rem;
    font-size: 1.8rem;
	font-weight: bold;
}
section .secAccentTtl {
    margin: 3rem 0 1rem;
    font-size: 1.6rem;
}
section .main {
	padding: 0 2%;
}
section  .mainImg {
	margin-bottom: 5rem;
}
section p + p {
	margin-top: 2em;
}
/* column --------*/
*[class^="column-"] {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.column-4 > * {
	flex-basis: 25%;
}
.column-3 > * {
	flex-basis: 33%;
}
.column-2 > * {
	flex-basis: 50%;
}
@media only screen and (max-width:768px){
	.btns *[class^="btn-"]:not(.mini) {
		flex-basis: 46%;
	}
}
@media only screen and (min-width:769px){
	.contents {
		padding-top: 105px;
	}
	.btns *[class^="btn-"]:not(.mini) {
		min-width: 200px;
	}
}

/* TOP
 ---------------------------------*/
.home section {
	padding: 5rem 2% 12rem;
}
/*NEWS*/
.home .newsList > li {
	margin: 4rem 0;
}
.home .newsList .listDate {
	padding: 1rem 0;
	color: #666;
}
.home .newsList .listTtl {
	font-size: 1.6rem;
}
.home .secNews .btns {
	margin-top: 2%;
}
@media only screen and (min-width:769px){
	.home .newsList {
		display: flex;
		flex-wrap: wrap;
	}
	.home .newsList > li {
		flex-basis: 46%;
		margin: 2%;
	}
}

/* GALLERY
 ---------------------------------*/
.gallery .breadcrumbs,
.gDetail .breadcrumbs {
	background: #eee;
}
.sortMenus {
	padding: 0 0 2rem;
}
.sortMenus > ul {
	text-align: center;
	letter-spacing: -.4em;
}
.sortMenus > ul li {
	display: inline-block;
	letter-spacing: normal;
}
.sortCat li {
	margin-bottom: 2rem;
	padding: .5rem 1rem;
	border-left: solid 1px #666;
	font-size: 1.2rem;
}
.sortCat li:last-child {
	border-right: solid 1px #666;
}
.sortTag li {
	padding: .5rem 1rem;
	line-height: normal;
	border-radius: 20px;
	background: #fff;
}
.sortTag li:not(:first-child) {
	margin-left: 1rem;
}
.sortTag li::before {
	content: '\f02b';
}
.secGallery {
    background: #eee;
}
.galleryList {
	display: flex;
	flex-wrap: wrap;
}
.galleryList > li {
	flex-basis: 46%;
	margin: 2%;
}
.secGallery .btns {
	margin-top: 2%;
}
@media only screen and (min-width:600px){
	.sortMenus {
		padding: 0 2rem 2rem;
	}
	.sortCat li {
		padding: .5rem 2rem;
		font-size: 1.4rem;
	}
}
@media only screen and (min-width:769px){
	.sortMenus > ul li {
		cursor: pointer;
		-webkit-transition: 0.3s ease-in-out;  
		   -moz-transition: 0.3s ease-in-out;  
			 -o-transition: 0.3s ease-in-out;  
				transition: 0.3s ease-in-out;  
	}
	.sortMenus > ul li:hover {
		opacity: 0.7;  
		filter: alpha(opacity=30);  
	}
	.galleryList > li {
		flex-basis: 29.3%;
	}
}

/* GALLERY DETAIL
 ---------------------------------*/
.secgDetail {
    background: #eee;
}
.gDetailLead {
	margin-bottom: 6rem;
}
.gDetailData > table {
	width: 100%;
	border-top: solid 1px #666;
}
.gDetailData > table th {
	width: 10em;
	padding: .8rem 1rem;
	border-bottom: solid 1px #666;
	text-align: left;
	vertical-align: middle;
}
.gDetailData > table td {
	padding: .8rem 1rem;
    border-bottom: solid 1px #666;
	vertical-align: middle;
}
@media only screen and (min-width:769px){
	.gDetailInfo {
		display: flex;
		justify-content: space-between;
	}
	.gDetailLead {
		flex-basis: calc(100% - 360px);
		margin-bottom: 0;
	}
	.gDetailData {
		flex-basis: 320px;
	}
}

/* CREATORS
 ---------------------------------*/
.creatorList > li + li {
	margin-top: 10rem;
}
.creatorList .listImg {
	margin-bottom: 4rem;
}
.creatorList .listTtl {
	font-size: 3.4rem;
	margin-bottom: 4rem;
}
.creatorList .listTtl span {
	padding-left: 3rem;
	font-size: 1.2rem;
	color: #666;
	letter-spacing: .2rem;
}
.creatorList .listCopy {
	margin-bottom: 1rem;
	font-family: "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-weight: bold;
	font-size: 2rem;
}
.creatorList .listLead {
	margin-bottom: 3rem;
}
.creatorList .listSubTtl {
	font-size: 2rem;
	margin-bottom: 1rem;
}
.creatorList .listSubLead {
	margin-bottom: 2rem;
    padding: 2rem;
    background: #f9f7e9;
    border-radius: 3px;
}
@media only screen and (min-width:600px){
	.creatorList > li {
		display: flex;
		justify-content: space-between;
	}
	.creatorList > li > *:first-child {
		flex-basis: 36%;
		margin-top: 1rem;
	}
	.creatorList > li > *:last-child {
		flex-basis: 60%;
	}
}

/* NEWS
 ---------------------------------*/
.news .newsList li:not(:last-child) {
	margin-bottom: 8rem;
	border-bottom: solid 1px #d2d2d2;
}
.news .newsList .listInner {
	max-width: 900px;
	margin: 0 auto;
	padding-bottom: 8rem;
}
.news .newsList .listDate {
	margin: 4rem 0;
	text-align: center;
}
.news .newsList .listTtl {
	margin: 4rem 0;
	font-size: 2rem;
	text-align: center;
}

/* ABOUT
 ---------------------------------*/
.aboutLead {
	font-size: 1.5rem;
    font-weight: bold;
	text-align: center;
	line-height: 2.2;
}
.secWork {
	padding: 2rem 2% 6rem;
    background: #eee;
}
.workList .listTtl {
	margin: 2rem 0;
	text-align: center;
	font-size: 2rem;
}
.workList .listImg {
	margin-bottom: 3rem;
}
.workList .btn {
	margin-top: 2rem;
}
.map {
	width: 100%;
	height: 400px;
}
.secCompany {
	padding: 6rem 2%;
}
.companyOverview {
	display: flex;
	flex-wrap: wrap;
	max-width: 600px;
	margin: 0 auto;
}
.companyOverview dt {
	width: 8em;
	padding: 1em 0 1em 1.5em;
	border-bottom: dotted 1px #bbb;
}
.companyOverview dd {
	width: calc(100% - 8em);
	padding: 1em 1.5em 1em 0;
	border-bottom: dotted 1px #bbb;
}
.companyOverview > *:nth-last-child(-n+2) {
	border-bottom: none;
}
@media only screen and (max-width:768px){
	.workList > li:nth-child(n+2) {
		margin-top: 6rem;
	}
}
@media only screen and (min-width:769px){
	.aboutLead {
		font-size: 1.6rem;
		line-height: 2.5;
	}
	.workList {
		display: flex;
	}
	.workList > li {
		flex-basis: 29.3%;
		margin: 2%;
	}
/*	.companyOverview {
		display: flex;
		flex-wrap: wrap;
	}*/
	.companyOverview dt {
		width: 10em;
		padding: 1em 2em;
	}
	.companyOverview dd {
		width: calc(100% - 10em);
		padding: 1em 2em;
	}
/*	.companyOverview > *:nth-last-child(-n+2) {
		border-bottom: none;
	}*/
}

/* ORDER SHEET
 ======================================== */
.secOrdersheet p {
	margin: 1rem 0 2rem;
}
.secOrdersheet p.err {
	margin:  1rem 0 0;
}
.secOrdersheet p.err span {
	display: inline-block;
	padding: .5rem 1rem;
	background: #f00;
	border-radius: 2px;
	color: #fff;
	font-size: 1rem;
	font-weight: bold;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	position: relative;
}
.secOrdersheet p.err span::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-right: 5px solid transparent;
    border-bottom: 15px solid #F00;
    border-left: 5px solid transparent;
    position: absolute;
    top: -15px;
    left: 15px;
}
.errCaution {
	padding: .5rem 1rem;
	background: #f00;
	color: #fff;
	text-align: center;
}
.errCaution:empty {
	display: none;
}
.errCaution::before {
	font-family: 'FontAwesome';
	content: '\f119';
	padding: 0 1rem;
	font-size: 1.2em;
}

.stepBar {
	display: flex;
    max-width: 400px;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 15px;
    text-align: center;
    counter-reset: step;
    background: #fef5ed;
    border-radius: 100px;
    z-index: -2;
}
.stepBar li {
	width: 33.333%;
	position: relative;
}
.stepBar li::before {
	display: block;
	content: counter(step);
	counter-increment: step;
	width: 30px;
	height: 30px;
	margin: 0 auto 10px auto;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	background-color: #ddd;
}
.stepBar li::after {
	content: "";
	width: calc(100% - 24px);
	height: 4px;
	background: #ffe4c2;
	position: absolute;
	left: calc(-50% + 12px);
	top: 13px;
	z-index: -1;
}
.stepBar li:first-child::after {
	display: none;
}
.stepBar li.done::before,
.stepBar li.done::after {
	background: #ea5413;
	color: #fff;
}
.stepBar li span {
	display: block;
	font-size: .8rem;
}

.formList {
	counter-reset: ttl;
}
.formList > li .secSubTtl::before {
	counter-increment: ttl;
	content: counter(ttl) ". ";
	font-size: 3rem;
}
.sampleImg {
	margin: 2rem 0;
}
*[class^="column-choice"] {
	line-height: 1.4rem;
}
*[class^="column-choice"] > * {
	background-color: #fff;
}
*[class^="column-choice"] .radio,
*[class^="column-choice"] .checkbox {
	width: 100%;
	height: 100%;
	border: solid 1px #ddd;
	border-radius: 5px;
/*	box-shadow: 2px 2px 4px rgba(0,0,0,0.3);*/
}
*[class^="column-choice"] input[type=radio]:checked + .radio,
*[class^="column-choice"] input[type=checkbox]:checked + .checkbox {
	background-color: #fbece6;
}
.column-choiceArtist > * {
	flex-basis: calc(50% - 5px);
}
.column-choiceArtist > *:nth-child(n+3) {
	margin-top: 10px;
}
.column-choiceArtist span[class^="cat-"] {
    display: inline-block;
    margin-bottom: .5rem;
    padding: 0 1rem;
    font-size: .9rem;
	color: #fff;
	border-radius: 2px;
}
.column-choiceArtist span.cat-poem {
	background: #8BC34A;
}
.column-choiceArtist span.cat-insp {
	background: #00bcd4;
}
.column-choiceArtist .radio,
.column-choiceArtist .checkbox {
	padding: 1rem;
	text-align: center;
}
.column-choiceArtist .radio::before,
.column-choiceArtist .checkbox::before {
	top: -7px;
    left: 12px;
    width: 13px;
    height: 23px;
}
.column-choiceArtist .radio::after,
.column-choiceArtist .checkbox::after {
	top: 1rem;
	left: 1rem;
}
.column-choiceArtist img {
	display: block;
	margin-bottom: 1rem;
	box-shadow:1px 2px 2px 0px rgba(204,204,204,0.7);
}
.column-choiceMsgtype > *,
.column-choiceSubMsgtype > * {
	flex-basis: calc(50% - 5px);
}
.column-choiceMsgtype > *:nth-child(n+3),
.column-choiceSubMsgtype > *:nth-child(n+3) {
	margin-top: 10px;
}
.column-choicePoncolor > *,
.column-choiceIllust > * {
	flex-basis: calc(33.3% - 5px);
}
.column-choicePoncolor > * span {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: .3rem;
    border-radius: 50%;
    vertical-align: text-top;
}
.column-choicePoncolor > *:nth-child(1) span { background-color: #e91e1e; }
.column-choicePoncolor > *:nth-child(2) span { background-color: #ff68e0; }
.column-choicePoncolor > *:nth-child(3) span { background-color: #ff9800; }
.column-choicePoncolor > *:nth-child(4) span { background-color: #3cc9f0; }
.column-choicePoncolor > *:nth-child(5) span { background-color: #ffeb3b; }
.column-choicePoncolor > *:nth-child(6) span { background-color: #44aa00; }
.column-choicePoncolor > *:nth-child(7) span { background-color: #b85fff; }
.column-choicePoncolor > *:nth-child(8) span { background-color: #d7c261; }
.column-choicePoncolor > *:nth-child(9) span { background-color: #a4a4a4; }
.column-choicePoncolor > *:nth-child(10) span { background-color: #cf6c1b; }
.column-choiceYesno > * {
	flex-basis: calc(50% - 5px);
}
.column-choiceSize > *,
.column-choicePayment > * {
	flex-basis: 100%;
}
.column-choiceIllust > *:nth-child(n+4),
.column-choiceSize > *:nth-child(n+2),
.column-choicePayment > *:nth-child(n+2) {
	margin-top: 10px;
}
*[class^="column-choice"]:not(.column-choiceArtist) .radio,
*[class^="column-choice"]:not(.column-choiceArtist) .checkbox {
	padding: 20px 10px 15px 32px;
}
*[class^="column-choice"]:not(.column-choiceArtist) .radio::before,
*[class^="column-choice"]:not(.column-choiceArtist) .checkbox::before {
    top: 50%;
    left: 14px;
    margin-top: -18px;
}
*[class^="column-choice"]:not(.column-choiceArtist) .radio::after,
*[class^="column-choice"]:not(.column-choiceArtist) .checkbox::after {
	top: 50%;
	left: 10px;
	margin-top: -8px;
}
.column-choicePayment dl {
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	padding: 1rem 2rem 0 2rem;
    border-top: dotted 2px #ddd;
	font-size: 1.3rem;
}
.column-choicePayment dl > dt {
	flex-basis: 10em;
}
.column-choicePayment dl > dd {
	flex-basis: calc(100% - 10em);
}
.column-choicePayment dl > dd *[class^="addCharge-"] {
	display: inline-block;
    width: 5em;
    text-align: right;
}
*[class^="addCharge-"]:empty::after {
	content: "--";
}
.column-choiceSize *[class^="addCharge-"]::before {
	content: "：";
}
.column-choiceSize .size {
	display: inline-block;
	width: 22rem;
}
.personData > li {
    padding: 3rem 1.5rem;
    border-radius: 5px;
    background: #f0f0f0;
	position: relative;
	counter-increment: personnum;
}
.personData > li + li {
	margin-top: 2rem;
}
.personData > li::after {
	content: "PERSON-" counter(personnum);
	display: block;
	padding: .5em 1em;
	position: absolute;
	top: 0;
	right: 0;
	color: #b9b9b9;
	font-size: 2rem;
}
input[name="shippingPref"]:disabled {
	border: solid 1px #fff;
	background: #fbece6;
	color: #000;
	-webkit-text-fill-color: black;
	opacity: 1;
}
*[class^="show"] {
	display: none;
}
*[class^="show"] .labelTtl:first-child {
	margin-top: 2rem;
}
.totalEstWrap {
	height: 100px;
	margin-top: 4rem;
}
.totalEst {
	width: 100%;
	padding: 1rem 2rem;
	background-color: rgba(0,0,0,0.6);
	position: absolute;
	left: 0;
/*	bottom: 0;*/
	z-index: 100;
}
.totalEst.fixed {
	position: fixed;
	left: 0;
	bottom: 0;
}
.totalEst h4 {
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.totalEst h4 .addCharge-totalEst,
.totalEst h4 .fixed-totalEst {
	padding: 0 .5rem;
	font-size: 2rem;
	color: #ea5413;
}
@media only screen and (max-width: 768px) {
	.column-choicePoncolor > *:nth-child(n+4) {
		margin-top: 10px;
	}
}
@media only screen and (min-width: 769px) {
	*[class^="column-choice"] .radio,
	*[class^="column-choice"] .checkbox {
		-webkit-transition: 0.3s ease-in-out;  
		   -moz-transition: 0.3s ease-in-out;  
			 -o-transition: 0.3s ease-in-out;  
				transition: 0.3s ease-in-out; 
	}
	*[class^="column-choice"] .radio:hover,
	*[class^="column-choice"] .checkbox:hover {
		background-color: #fbece6;
	}
	.column-choicePoncolor > * {
		flex-basis: calc(25% - 5px);
	}
	.column-choicePoncolor > *:nth-child(n+5) {
		margin-top: 10px;
	}
	.personData > li {
		padding: 3rem;
	}
}

/* ORDER ROOM
 ======================================== */
.caution {
	/*font-size: 1.2rem;*/
}
* + .caution {
	margin-top: 4rem;
}
.errorMsg {
	margin-bottom: 2rem;
	text-align: center;
	color: #f00;
	font-weight: bold;
}
.formInner {
	max-width: 500px;
    margin: 0 auto 4rem;
}
.formInner + .btns {
	margin-top: 6rem;
}
.orderRoomTop .contents,
.orderRoom .contents {
    background: #fbece6;
	/*background-image: linear-gradient(45deg, #F7CAC9 15%, #91A8D0 85%);*/
}
.orderRoom .main {
	max-width: 900px;
	margin: 0 auto;
	padding: 6rem 2rem;
	background: #fff;
	border-radius: 3px;
}
@media only screen and (min-width:769px){
	.orderRoom .contents {
		padding-top: 80px;
	}
}

/* TOP
 ---------------------------------*/
.orIntro {
	margin: 3rem 0 6rem;
    padding: 4rem 2rem 5rem;
    background: #fff;
    border-radius: 3px;
}
.orLead {
	text-align: center;
	line-height: 2.5;
}
.orLead:not(:last-child) {
	margin-bottom: 4rem;
}
.orLead a {
	border-bottom: solid 2px #ea5413;
}
.memberInfo {
	text-align: center;
}
.memberImg::before {
	content: '\f118';
	font-size: 5rem;
}
.memberContents {
	margin-top: 4rem;
}
.memberContents > *:first-child {
	margin-bottom: 4rem;
}
.memberContents h2 {
    margin-bottom: 2rem;
    padding: .5rem 1.5rem;
    font-size: 1.5rem;
/*  font-weight: bold;
    background: #f9a482; 背景要検討*/
	background: #000;
	color: #fff;
    border-radius: 3px;
}
.orderMenu {
    display: flex;
    justify-content: space-between;
}
.orderMenu li {
	flex-basis: 31.5%;
	padding: .5rem;
	background: #fff;
	text-align: center;
}
.orderMenu a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 2rem 1rem;
	border: solid 2px #fbece6;
}
.orderMenu a::before {
	display: block;
    font-family: 'FontAwesome';
    font-size: 4rem;
}
.orderMenu a.new::before {
	content: '\f016';
}
.orderMenu a.progress::before {
	content: '\f0f6';
}
.orderMenu a.complete::before {
	content: '\f0ea';
}
.memberMenu {
	border-top: solid 1px #666;
}
.memberMenu li {
	padding: 1rem 1.5rem;
	border-bottom: solid 1px #666;
}
.memberMenu a::before {
	display: inline-block;
    width: 2rem;
    font-family: 'FontAwesome';
	padding-right: 10px;
	text-align: center;
}
.memberMenu a.info::before {
	content: '\f2c3';
}
.memberMenu a.password::before {
	content: '\f023';
}
.memberMenu a.quit::before {
	content: '\f235';
}
.memberMenu a.signout::before {
	content: '\f08b';
}
@media only screen and (min-width:769px){
	.orderMenu li {
		padding: 1rem;
	}
	.memberContents {
		display: flex;
		justify-content: space-between;
		margin-top: 4rem;
	}
	.memberContents > *:first-child {
		flex-basis: calc(100% - 360px);
		margin-bottom: 0;
	}
	.memberContents > *:last-child {
		flex-basis: 320px;
	}
}

/* SIGN IN
 ---------------------------------*/
.checkboxList.agree {
	padding: 2rem;
    line-height: 1.6rem;
    font-size: 1.6rem;
    color: #fff;
    background: #000;
    border-radius: 3px;
}
.checkboxList.agree .checkbox {
	display: block;
    width: 100%;
    height: 100%;
	padding: 0;
    text-align: center;
}
.checkboxList.agree .checkbox::before {
	top: -26px;
    left: 50%;
    z-index: 10;
    display: block;
    width: 25px;
    height: 40px;
	margin-left: -110px;
    border-right: 4px solid #ea5413;
    border-bottom: 4px solid #ea5413;
}
.checkboxList.agree .checkbox::after {
	display: none;
}
@media only screen and (min-width:769px){
	.memberChange .contents,
	.register .contents {
		padding-top: 80px;
	}
}

/* ORDER
 ---------------------------------*/
.statusList {
	display: flex;
	margin-bottom: 4rem;
	font-size: .9rem;
	text-align: center;
}
.statusList > li {
	flex: 1 1 auto;
	padding: .5rem 0 .3rem;
	background: #ccc;
	border: solid 1px #fff;
	line-height: 1.2;
	color: #666;
}
.statusList > li:first-child::before,
.statusList > li:nth-child(2)::before,
.statusList > li:nth-child(3)::before,
.statusList > li:nth-child(4)::before,
.statusList > li:nth-child(5)::before,
.statusList > li:nth-child(6)::before,
.statusList > li:nth-child(7)::before,
.statusList > li:nth-child(8)::before {
    font-family: 'FontAwesome';
	display: block;
	margin-bottom: .2rem;
}
.statusList > li:first-child::before { content: '\f15b'; }
.statusList > li:nth-child(2)::before { content: '\f040'; }
.statusList > li:nth-child(3)::before { content: '\f040'; }
.statusList > li:nth-child(4)::before { content: '\f040'; }
.statusList > li:nth-child(5)::before { content: '\f040'; }
.statusList > li:nth-child(6)::before { content: '\f040'; }
.statusList > li:nth-child(7)::before { content: '\f06e'; }
.statusList > li:nth-child(8)::before { content: '\f1d8'; }

.status0 > li:first-child,
.status1 > li:nth-child(2),
.status2 > li:nth-child(3),
.status3 > li:nth-child(4),
.status4 > li:nth-child(5),
.status5 > li:nth-child(6),
.status6 > li:nth-child(7),
.status7 > li:nth-child(8) {
	background: #fff;
	border: solid 3px #000;
	color: #000;
}
.deliveryDate {
	display: block;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: .4rem;
}
.deliveryDateS {
    font-weight: bold;
    letter-spacing: .2rem;
}
.deliveryAddress {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 4rem;
    border-top: solid 1px #bfbfbf;
}
.deliveryAddress > * {
	padding: .8rem 1rem;
    border-bottom: solid 1px #bfbfbf;
}
.deliveryAddress > dt {
	flex-basis: 10rem;
}
.deliveryAddress > dd {
	flex-basis: calc(100% - 10rem);
}
.dateList {
	display: flex;
	justify-content: space-between;
}
.dateList > li {
	flex-basis: 33%;
}
.dateList > li label.select {
	display: inline-block;
	width: calc(100% - 2em);
}
.cfmList {
	display: flex;
	flex-wrap: wrap;
	margin: 1.5rem 0 2.5rem;
    border-top: solid 1px #bfbfbf;
}
.cfmList > * {
	padding: .8rem 1rem;
    border-bottom: solid 1px #bfbfbf;
}
.cfmList > dt {
	flex-basis: 14rem;
}
.cfmList > dd {
	flex-basis: calc(100% - 14rem);
}
.cfmSubList > dt::before {
	content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
    background: #000;
    border-radius: 50%;
}
.cfmSubList > dd {
	padding-left: 1.5rem;
}
table.addToData {
	width: 100%;
}
.addToData tbody td {
	padding: 3rem 2rem 4rem;
	background: #f7f7f7;
}
.addToData tbody tr:not(:first-child) td {
	border-top: dotted 1px #000;
}
.addToData tbody td .btns {
	padding: 3rem 0 0;
}
.addToData tfoot td {
	text-align: center;
	background: #000;
}
.addToData tfoot td input[type="button"] {
	display: block;
	width: 100%;
	color: #fff;
	background: #000;
}
.dueDate {
	width: 100%;
	height: 45px;
    min-width: 200px;
    margin: 0 auto;
	position: relative;
}
.dueDate::before {
	font-family: 'FontAwesome';
    content: '\f073';
	display: block;
    font-size: 2.4rem;
    color: #ea5413;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -14px;
}
.dueDate input[type="text"].datepickerDate {
	padding: 0 4rem 0 2rem;
	border: none;
	border-bottom: solid 3px #000;
	font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: .4rem;
	cursor: pointer;
    background: none;
	position: absolute;
    top: 0;
    left: 0;
	-webkit-transition: border-bottom 0.2s linear;
	transition: border-bottom 0.2s linear;
}
.dueDate input[type="text"].datepickerDate:hover {
	border-bottom: solid 3px #ea5413;
}
@media screen and (min-width: 481px) {
	.statusList {
		font-size: 1.2rem;
	}
	.dueDate {
		width: 60%;
	}
}
@media only screen and (min-width:769px){
	.statusList {
		padding: 0 4rem;
	}
}

/* KIYAKU
 ---------------------------------*/
.kiyaku {
    width: 100%;
    height: 200px;
    margin: 4rem 0;
    padding: 2rem;
    overflow-y: scroll;
    font-size: 1.2rem;
	border: solid 6px #ddd;
/*  background: #e5f1f3;*/
}
.kiyaku .ttl {
	margin-bottom: 2rem;
	font-size: 1.6rem;
	text-align: center;
}
.kiyaku .subTtl {
    margin: 2rem 0 .5rem;
}
.kiyaku > p,
.kiyaku > ul {
	margin-bottom: 2rem;
}

/* FOOTER
 ======================================== */
footer {
	background: #000;
	position: relative;
}
footer .btnToTop {
	display: block;
	width: 40px;
	height: 25px;
	position: absolute;
	top: -60px;
	left: 50%;
	margin-left: -20px;
}
footer .btnToTop::before {
	content: "";
	width: 25px;
	height: 25px;
	margin: auto;
	position: absolute;
	top: 5px;
	left: 5px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	vertical-align: middle;
}

.copyright {
    padding: 2rem 0;
    text-align: center;
	color: #fff;
    font-size: 1rem;
    letter-spacing: .2rem;
}
