@charset "utf-8";

/*------------------------------------------------------------
 kv
 ------------------------------------------------------------*/
#kv {
	position:relative; 
	width: 100vw;
	height: auto;
	/*min-height: 100vh;*/
	min-height: 500px;
}
#kv h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
#kv .kv_scroll {
	position:absolute;
	z-index: 100;
	width: 46px;
	height: 46px;
	bottom: 60px;
	left: 50%;
	margin-left: -23px;
	text-align: center;
}
#kv .kv_scroll a {
	display: inline-block;
	padding-top: 48px;
	color: #000;
	font-size: 12px;
}
#kv .kv_scroll a span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 46px;
	height: 46px;
	margin-left: -23px;
	border: 1px solid #000;
	border-radius: 100%;
	box-sizing: border-box;
}
#kv .kv_scroll a span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	content: '';
	width: 16px;
	height: 16px;
	margin: -12px 0 0 -8px;
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-sizing: border-box;
}
#kv .kv_scroll a span::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 44px;
	height: 44px;
	box-shadow: 0 0 0 0 rgba(0,0,0,.1);
	border-radius: 100%;
	opacity: 0;
	-webkit-animation: sdb 3s infinite;
	animation: sdb 3s infinite;
	box-sizing: border-box;
}
@-webkit-keyframes sdb {
	0% {
	opacity: 0;
	}
	30% {
	opacity: 1;
	}
	60% {
	box-shadow: 0 0 0 60px rgba(255,255,255,.1);
	opacity: 0;
	}
	100% {
	opacity: 0;
}
}
@keyframes sdb {
	0% {
	opacity: 0;
	}
	30% {
	opacity: 1;
	}
	60% {
	box-shadow: 0 0 0 60px rgba(255,255,255,.1);
	opacity: 0;
	}
	100% {
	opacity: 0;
}
}

@media only screen and (max-width: 767px) {
#kv {
	position:relative; 
	width: 100vw;
	height: auto;
	min-height: 100vw;
}
}

/*------------------------------------------------------------
 Layout
 ------------------------------------------------------------*/

/* -------- outline --------*/

/* PC
 ------------------------------*/
@media print, screen and (min-width: 1024px) {
#outline {
	width: 100%;
	padding: 100px 0;
	background: #f9f9f9;
}
#outline .inr {
	max-width: 1024px;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	background: #f9f9f9;
}
#outline .inr dl {
	padding: 20px 0;
	font-size: 16px;
	border-top: 1px dotted #c8c8c8;
}
#outline .inr dl:last-child {
	border-bottom: 1px dotted #c8c8c8;
}
#outline .inr dl.set {
	border-bottom: 1px dotted #c8c8c8;
}
#outline .inr dl::after{
	content: "";
	display: block;
	clear: both;
}
#outline .inr dl dd {
	float: left;
	width: 20%;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
#outline .inr dl dt {
	float: left;
	text-align: left;
}

#outline .inr .notes {
  font-size: 16px;
  padding-bottom: 90px;
}
#outline .inr .notes span {
  display: block;
  color: #ff0000;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 8px;
}

}

/* tablet
 ------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1023px) {
#outline {
	width: 100%;
	padding: 100px 0;
	background: #f9f9f9;
}
#outline .inr {
	max-width: 80%;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	background: #f9f9f9;
}
#outline .inr dl {
	padding: 20px 0;
	font-size: 14px;
	border-top: 1px dotted #c8c8c8;
}
#outline .inr dl:last-child {
	border-bottom: 1px dotted #c8c8c8;
}
#outline .inr dl.set {
	border-bottom: 1px dotted #c8c8c8;
}
#outline .inr dl::after{
	content: "";
	display: block;
	clear: both;
}
#outline .inr dl dd {
	float: left;
	width: 20%;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
#outline .inr dl dt {
	float: left;
	text-align: left;
}

#outline .inr .notes {
  font-size: 14px;
  padding-bottom: 60px;
}
#outline .inr .notes span {
  display: block;
  color: #ff0000;
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 8px;
  line-height: 1.5;
}

}

/*------------------------------
 smartphone
 ------------------------------*/
@media only screen and (max-width: 767px) {
#outline {
	width: 100%;
	padding: 16vw 0;
	background: #f9f9f9;
}
#outline .inr {
	width: 85%;
	margin: 0 auto;
}
#outline .inr dl {
	padding: 4vw 0;
	font-size: 3.2vw;
	border-top: 1px dotted #c8c8c8;
}
#outline .inr dl:last-child {
	border-bottom: 1px dotted #c8c8c8;
}
#outline .inr dl::after{
	content: "";
	display: block;
	clear: both;
}
#outline .inr dl dd {
	float: left;
	width: 30%;
	padding-bottom: 1vw;
}
#outline .inr dl dt {
	float: left;
	width: 70%;
	text-align: left;
}

#outline .inr .notes {
  font-size: 3.8vw;
  padding-bottom: 20vw;
}
#outline .inr .notes span {
  display: block;
  color: #ff0000;
  font-weight: bold;
  font-size: 4.4vw;
  padding-bottom: 2.88vw;
  line-height: 1.5;
}

}



/* -------- index_designer --------*/

/* PC
 ------------------------------*/
@media print, screen and (min-width: 1024px) {
#contact {
	width: 100%;
	padding: 100px 0;
}
#contact .inr {
	display: block;
	max-width: 1024px;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
#formWrap {
	width:100%;
	color:#111;
	font-size:16px;
}
#formWrap table.formTable {
	width:100%;
	margin:0 auto 20px;
	border-collapse:collapse;
}
#formWrap table.formTable td, table.formTable th {
	padding:16px 20px;
	box-sizing:border-box;
	border-bottom:1px solid #fff;
}
#formWrap table.formTable td span, table.formTable th span {
	color:#F00;
}
#formWrap table.formTable th {
	width:30%;
	font-weight:bold;
	background:#ddd;
	text-align:left;
	box-sizing:border-box;
	vertical-align: middle;
}
#formWrap table.formTable td {
	background:#f2f2f2;
	text-align:left;
	box-sizing:border-box;
}
#formWrap table.formTable td label {
	cursor:pointer;
}
#formWrap table.formTable td input {
	outline:none;
	border:none;
}
#formWrap table.formTable td input[type="text"],
#formWrap table.formTable td input[type="tel"],
#formWrap table.formTable td input[type="email"],
#formWrap table.formTable td input[type="number"] {
	width:98%;
	height:24px;
	margin-right:5px;
	padding:5px;
	font-size:14px;
}
#formWrap table.formTable td input#postalcode1[type="text"] {
	width:70px !important;
	margin-right:10px;
}
#formWrap table.formTable td input#postalcode2[type="text"] {
	width:100px !important;
	margin-left:10px;
}
#formWrap table.formTable td textarea {
	outline:none;
	border:none;
	padding:5px;
	font-size:14px;
	width:98%;
	min-height:80px;
	resize: vertical;
}
input[type="submit"] {
    padding:0 20px;
	width:200px;
	height:40px;
	border-radius:20px;
    font-size:18px;
	font-weight:bold;
    background-color: #F00;
    color: #fff;
    border-style: none;
	box-sizing:border-box;
	outline:none;
	cursor:pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
input[type="reset"] {
    padding:0 20px;
	width:200px;
	height:40px;
	border-radius:20px;
    font-size:18px;
	font-weight:bold;
    background-color:#999;
    color: #fff;
    border-style: none;
	box-sizing:border-box;
	outline:none;
	cursor:pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
input[type="button"] {
    padding:0 20px;
	width:200px;
	height:40px;
	border-radius:20px;
    font-size:18px;
	font-weight:bold;
    background-color:#999;
    color: #fff;
    border-style: none;
	box-sizing:border-box;
	outline:none;
	cursor:pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
	opacity:0.7;
}


/* ------ thanksページ ------ */
#lead-area dl.thanks-area {
	padding:0 0 40px;
}
#lead-area dl dt.thanks-link {
	text-align:center;
}
#lead-area dl dt.thanks-link a {
	color:#111111;
	text-decoration:underline;
}
#lead-area dl dt.thanks-link a:hover {
	opacity:0.7;
	text-decoration:none;
}	
#lead-area dl dt ul.thanks-btn {
	width:740px;
	margin:0 auto;
}
#lead-area dl dt ul.thanks-btn:after {
	content:"";
	display:block;
	clear:both;
}
#lead-area dl dt ul.thanks-btn li {
	float:left;
	margin-right:10px;
}
#lead-area dl dt ul.thanks-btn li:last-child {
	margin-right:0;
}
#lead-area dl dt ul.thanks-btn li.thanks-fb a {
	width:240px;
	height:48px;
	display:block;
	border-radius:24px;
	box-sizing:border-box;
	text-align:left;
	line-height:48px;
	font-size:20px;
	font-weight:bold;
	color:#fff;
	margin:0 auto 12px;
	background: url(../images/logo-facebook@2x.png) 30px center no-repeat #3a5a98;
	background-size:28px 28px;
	padding-left:80px;
}
#lead-area dl dt ul.thanks-btn li.thanks-tw a {
	width:240px;
	height:48px;
	display:block;
	border-radius:24px;
	box-sizing:border-box;
	text-align:left;
	line-height:48px;
	font-size:20px;
	font-weight:bold;
	color:#fff;
	margin:0 auto 12px;
	background: url(../images/logo-twitter@2x.png) 30px center no-repeat #1da1f2;
	background-size:26px 22px;
	padding-left:88px;
}
#lead-area dl dt ul.thanks-btn li.thanks-insta a {
	width:240px;
	height:48px;
	display:block;
	border-radius:24px;
	box-sizing:border-box;
	text-align:left;
	line-height:48px;
	font-size:20px;
	font-weight:bold;
	color:#fff;
	margin:0 auto;
	background: url(../images/logo-instagram@2x.png) 30px center no-repeat #bd309a;
	background-size:28px 28px;
	padding-left:76px;
}
}

/* tablet
 ------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1023px) {
#contact {
	width: 100%;
	padding: 100px 0;
}
#contact .inr {
	max-width: 90%;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
#formWrap {
	width:100%;
	margin: 0 auto 0;
	color:#111;
	font-size:14px;
}
#formWrap table.formTable {
	width:100%;
	margin:0 auto 20px;
	border-collapse:collapse;
}
#formWrap table.formTable td, table.formTable th {
	padding:16px 20px;
	box-sizing:border-box;
	border-bottom:1px solid #fff;
}
#formWrap table.formTable td span, table.formTable th span {
	color:#F00;
}
#formWrap table.formTable th {
	width:30%;
	font-weight:bold;
	background:#ddd;
	text-align:left;
	vertical-align: middle;
	box-sizing:border-box;
}
#formWrap table.formTable td {
	background:#f2f2f2;
	text-align:left;
	box-sizing:border-box;
}
#formWrap table.formTable td label {
	cursor:pointer;
}
#formWrap table.formTable td input {
	outline:none;
	border:none;
}
#formWrap table.formTable td input[type="text"],
#formWrap table.formTable td input[type="tel"],
#formWrap table.formTable td input[type="email"],
#formWrap table.formTable td input[type="number"] {
	width:98%;
	height:24px;
	margin-right:5px;
	padding:5px;
	font-size:14px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	border-radius: 0;
}
#formWrap table.formTable td input#postalcode1[type="text"] {
	width:70px !important;
	margin-right:10px;
}
#formWrap table.formTable td input#postalcode2[type="text"] {
	width:100px !important;
	margin-left:10px;
}
#formWrap table.formTable td textarea {
	outline:none;
	border:none;
	padding:5px;
	font-size:14px;
	width:98%;
	min-height:80px;
	resize: vertical;
}
input[type="submit"] {
    padding:0 20px;
	width:200px;
	height:40px;
	border-radius:20px;
    font-size:18px;
	font-weight:bold;
    background-color: #F00;
    color: #fff;
    border-style: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline:none;
	cursor:pointer;
	-webkit-appearance: button;
	appearance: button;
	border: none;
}
input[type="reset"] {
    padding:0 20px;
	width:200px;
	height:40px;
	border-radius:20px;
    font-size:18px;
	font-weight:bold;
    background-color:#999;
    color: #fff;
    border-style: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline:none;
	cursor:pointer;
	-webkit-appearance: button;
	appearance: button;
	border: none;
}
input[type="button"] {
    padding:0 20px;
	width:200px;
	height:40px;
	border-radius:20px;
    font-size:18px;
	font-weight:bold;
    background-color:#999;
    color: #fff;
    border-style: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline:none;
	cursor:pointer;
	-webkit-appearance: button;
	appearance: button;
	border: none;
}


/* ------ thanksページ ------ */
#lead-area dl.thanks-area {
	padding:0 0 30px;
}
#lead-area dl.thanks-area dt {
	text-align:center;
}
#lead-area dl dt.thanks-link {
	text-align:center;
}
#lead-area dl dt.thanks-link a {
	color:#111111;
	text-decoration:underline;
}
#lead-area dl dt.thanks-link a:hover {
	opacity:0.7;
	text-decoration:none;
}	
#lead-area dl dt ul.thanks-btn {
	width:90%;
	margin:0 auto;
}
#lead-area dl dt ul.thanks-btn:after {
	content:"";
	display:block;
	clear:both;
}
#lead-area dl dt ul.thanks-btn li {
	margin:0 auto;
}
#lead-area dl dt ul.thanks-btn li.thanks-fb a {
	width:240px;
	height:48px;
	display:block;
	border-radius:24px;
	text-align:left;
	line-height:48px;
	font-size:20px;
	font-weight:bold;
	color:#fff;
	margin:0 auto 12px;
	background: url(../images/logo-facebook@2x.png) 30px center no-repeat #3a5a98;
	-webkit-background-size:28px 28px;
	-moz-background-size:28px 28px;
	background-size:28px 28px;
	padding-left:80px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#lead-area dl dt ul.thanks-btn li.thanks-tw a {
	width:240px;
	height:48px;
	display:block;
	border-radius:24px;
	text-align:left;
	line-height:48px;
	font-size:20px;
	font-weight:bold;
	color:#fff;
	margin:0 auto 12px;
	background: url(../images/logo-twitter@2x.png) 30px center no-repeat #1da1f2;
	-webkit-background-size:26px 22px;
	-moz-background-size:26px 22px;
	background-size:26px 22px;
	padding-left:88px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#lead-area dl dt ul.thanks-btn li.thanks-insta a {
	width:240px;
	height:48px;
	display:block;
	border-radius:24px;
	text-align:left;
	line-height:48px;
	font-size:20px;
	font-weight:bold;
	color:#fff;
	margin:0 auto;
	background: url(../images/logo-instagram@2x.png) 30px center no-repeat #bd309a;
	-webkit-background-size:28px 28px;
	-moz-background-size:28px 28px;
	background-size:28px 28px;
	padding-left:76px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
}

/*------------------------------
 smartphone
 ------------------------------*/
@media only screen and (max-width: 767px) {
#contact {
	width: 100%;
	padding: 16vw 0;
}
#contact .inr {
	width: 85%;
	margin: 0 auto;
}
#formWrap {
	width:100%;
	margin:4% auto 0;
	margin:0 auto 0;
	color:#111;
	font-size:140%;
	font-size:3.75vw;
	line-height:1.5;
}
#formWrap table.formTable {
	width:100%;
	margin:0 auto 20px;
	border-collapse:collapse;
}
#formWrap table.formTable td, table.formTable th {
	padding:10px 3%;
	border-bottom:1px solid #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#formWrap table.formTable td span, table.formTable th span {
	color:#F00;
}
#formWrap table.formTable th {
	width:22%;
	font-weight:bold;
	background:#ddd;
	text-align:left;
	vertical-align: middle;
	box-sizing:border-box;
}
#formWrap table.formTable td {
	background:#f2f2f2;
	text-align:left;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#formWrap table.formTable td label {
	cursor:pointer;
}
#formWrap table.formTable td input {
	outline:none;
	border:none;
}
#formWrap table.formTable td input[type="text"],
#formWrap table.formTable td input[type="tel"],
#formWrap table.formTable td input[type="email"],
#formWrap table.formTable td input[type="number"] {
	width:100%;
	padding:10px 5px;
	font-size:140%;
	font-size:3.75vw;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	border-radius: 0;
}
#formWrap table.formTable td input#postalcode1[type="text"] {
	width:30% !important;
	margin-right:10px;
}
#formWrap table.formTable td input#postalcode2[type="text"] {
	width:46% !important;
	margin-left:10px;
}
#formWrap table.formTable td textarea {
	outline:none;
	border:none;
	padding:10px 5px;
	font-size:140%;
	font-size:3.75vw;
	width:100%;
	min-height:80px;
	resize: vertical;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
   -webkit-appearance: none;
   border-radius: 0;
}
input[type="submit"] {
    padding:0 20px;
	width:40%;
	height:40px;
	border-radius:20px;
	font-size:160%;
	font-size:4vw;
	font-weight:bold;
    background-color: #F00;
    color: #fff;
    border-style: none;
	outline:none;
	cursor:pointer;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
}
input[type="reset"] {
    padding:0 20px;
	width:40%;
	height:40px;
	border-radius:20px;
	font-size:160%;
	font-size:4vw;
	font-weight:bold;
    background-color:#999;
    color: #fff;
    border-style: none;
	outline:none;
	cursor:pointer;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
}
input[type="button"] {
    padding:0 20px;
	width:40%;
	height:40px;
	border-radius:20px;
	font-size:160%;
	font-size:4vw;
	font-weight:bold;
    background-color:#999;
    color: #fff;
    border-style: none;
	outline:none;
	cursor:pointer;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
}


/* ------ thanksページ ------ */
#lead-area dl.thanks-area {
	padding:9% 3% 9%;
	padding:9.375vw 3% 9.375vw;
}
#lead-area dl dt.thanks-link {
	text-align:center;
}
#lead-area dl dt.thanks-link a {
	color:#111111;
	text-decoration:underline;
}
#lead-area dl dt.thanks-link a:hover {
	opacity:0.7;
	text-decoration:none;
}	
#lead-area dl dt ul.thanks-btn {
	width:80%;
	margin:0 auto;
}
#lead-area dl dt ul.thanks-btn:after {
	content:"";
	display:block;
	clear:both;
}
#lead-area dl dt ul.thanks-btn li {
	margin:0 auto;
}
#lead-area dl dt ul.thanks-btn li.thanks-fb a {
	width:100%;
	height:48px;
	display:block;
	border-radius:24px;
	text-align:center;
	line-height:48px;
	font-size:20px;
	font-weight:bold;
	color:#fff;
	margin:0 auto 12px;
	background: url(../images/logo-facebook@2x.png) 30px center no-repeat #3a5a98;
	-webkit-background-size:28px 28px;
	-moz-background-size:28px 28px;
	background-size:28px 28px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#lead-area dl dt ul.thanks-btn li.thanks-tw a {
	width:100%;
	height:48px;
	display:block;
	border-radius:24px;
	text-align:center;
	line-height:48px;
	font-size:20px;
	font-weight:bold;
	color:#fff;
	margin:0 auto 12px;
	background: url(../images/logo-twitter@2x.png) 30px center no-repeat #1da1f2;
	-webkit-background-size:26px 22px;
	-moz-background-size:26px 22px;
	background-size:26px 22px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#lead-area dl dt ul.thanks-btn li.thanks-insta a {
	width:100%;
	height:48px;
	display:block;
	border-radius:24px;
	box-sizing:border-box;
	text-align:center;
	line-height:48px;
	font-size:20px;
	font-weight:bold;
	color:#fff;
	margin:0 auto;
	background: url(../images/logo-instagram@2x.png) 30px center no-repeat #bd309a;
	-webkit-background-size:28px 28px;
	-moz-background-size:28px 28px;
	background-size:28px 28px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
}