@charset "utf-8";

/*
Theme Name: Nao Akutagawa
Description: Studio Impala
Version: 1.0
*/




/*==========================================
 General
===========================================*/

#loading {
	width: 100vw;
	height: 100vh;
	background: #FFF;
	z-index: 9999;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 1s ease-out;
}

#loading span {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -25px;
	margin-top: -25px;
	width: 50px;
	height: 50px;
	border: 1px solid #ccc;
	border-right: 1px solid transparent;
	border-radius: 30px;
	animation: loading 1s linear infinite;

}

@keyframes loading {
	to {}

	from {
		transform: rotate(360deg);
		transform-origin: 50% 50%;
	}

}

#content {
	
}

html {
	font-size: 62.5%;
	height: 100%;
	overflow-x: hidden;
}

body {
	font-family: "Klee One", cursive;
	font-weight: 400;
	font-style: normal;
	padding: 0;
	width: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-webkit-overflow-scrolling: touch;
	font-size: 1.6rem;
	background: #FFF;
}

body.is-fixed {
  overflow: hidden; 
}


@media only screen and (max-width: 768px) {
	body {
		min-width: auto;
		overflow-x: hidden;
	}
}


/*==========================================
text
===========================================*/


a {
	color: #492003;
	text-decoration: none;
}

a:link {
	color: #492003;
}

a:visited {
	color: #492003;
}

a:hover {
	color: #492003;
	text-decoration: underline;
}

a:active {
	color: #492003;
}

p {
	font-size: 1.6rem;
	color: #492003;
	text-align: left;
	font-weight: 400;
	line-height: 2;
	margin-bottom: 40px;
}

p.large {
	font-size: 2rem;
	color: #492003;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}



p.small {
	font-size: 1.5rem;
	text-align: left;
	color: #492003;
	line-height: 2;
	margin-bottom: 30px;
}

p.center {
	text-align: center !important;
}

.x-small {
	font-size: 1.3rem;
	line-height: 1.3;

}

p.last-sentence {
	margin-bottom: 70px !important;
}

p.center {
	text-align: center;
}

p.underline {
	text-decoration: underline;
}

.align-left {
	text-align: left !important;
}

.align-right {
	text-align: right !important;
}

.mgn20 {
	margin-bottom: 20px !important;
}

.mgn30 {
	margin-bottom: 30px !important;
}

.mgn40 {
	margin-bottom: 40px !important;
}

.mgn50 {
	margin-bottom: 50px !important;
}

.mgn60 {
	margin-bottom: 60px !important;
}

.mgn70 {
	margin-bottom: 70px !important;
}

.mgn80 {
	margin-bottom: 80px !important;
}

.mgn90 {
	margin-bottom: 90px !important;
}

.mgn100 {
	margin-bottom: 100px !important;
}

.mgn120 {
	margin-bottom: 120px !important;
}

.center {
	text-align: center;
}




h1 {
	color: #492003;
	font-family: "Delius Unicase", cursive;
	font-size: 3.2rem;
	display: block;
	text-align: center;
	padding: 20px 0 0;
	margin-bottom: 80px;
	font-weight: 300;
	font-style: normal;
	position: relative;
	letter-spacing: 0.2em;
	transition: all 1s ease;
	opacity: 0;
	transform: translateY(30px);
}

h1.active {
	opacity: 1;
	transform: translateY(0);
}

h1.white {
	color: #fff;
}

h1 span {
	font-family: "Delius Unicase", cursive;
	font-weight: 300;
	display: block;
	font-size: 1.6rem;
	letter-spacing: 0.3em;
	color: #492003;
	margin-top: 40px;
}

h1.white span {
	color: #fff;
}

h2 {
	font-family: "Delius Unicase", cursive;
	text-align: center;
	font-size: 3.6rem;
	margin-bottom: 60px;
	color: #492003;
	font-weight: 600;
	font-style: normal;
	position: relative;
	letter-spacing: 0.2em;
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s ease;
}

h2.active {
	opacity: 1;
	transform: translateY(0);
}



h2 span {
	display: inline-block;
	font-size: 2rem;
	margin-left: 30px;
}



h3 {
	font-family: "Delius Unicase", cursive;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	font-weight: normal;
	color: #492003;
	text-align: left;
	margin: 0 auto 80px;
	display: inline-block;
	text-align: center;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
}

h3:after {
	content: "";
	width: 100%;
	height: 2px;
	background-image: url("images/line.svg");
	top: 30px;
	left: 0;
	display: inline-block;
	position: absolute;
}

h3.active {
	opacity: 1;
	transform: translateY(0);
	transform: translateX(-50%);
}

h4 {
	font-family: "Klee One", cursive;
	font-weight: 400;
	font-style: normal;
	text-align: left;
	font-size: 2.4rem;
	margin-bottom: 30px;
	color: #492003;
	font-weight: 600;
	font-style: normal;
	position: relative;
	letter-spacing: 0.05em;
	opacity: 1;
	line-height: 1.4;
}

h4.active {
	opacity: 1;
	transform: translateY(0);

}




@media only screen and (max-width: 768px) {
	h1 {
		margin-bottom: 40px;
		font-size: 2.2rem;
	}

	h1 span {
		font-size: 1.2rem;
		margin-top: 20px;
	}

	h2 {
		font-size: 2.4rem;
		margin-bottom: 30px;
	}

	h3 {
		font-size: 1.8rem;
	}

	h4 {
		font-size: 2rem;
		margin-bottom: 20px;
	}

	h3.omoi {
		font-size: 1.6rem;
		font-weight: 500;
	}

	p {
		font-size: 1.4rem;
		line-height: 2;
		margin-bottom: 30px;
	}

}

/*==========================================
 header
===========================================*/

header {
	width: 100%;
	z-index: 700;
	transition: 0.3s ease-in-out;
	background: #fff;
	max-width: 1690px;
	margin: 0 auto;
}


#head-inner {
	margin: 0 auto 20px;
	width: 100%;
	padding: 30px 30px 30px;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}


#logo {
	width: 140px;
	display: inline-block;
}

#logo img {
	width: 100%;
	height: auto;
	vertical-align: baseline;
}

#logo span {
	margin-right: 30px;
}

#logo span a {
	display: inline-block;

}

#logo span.right {
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}

#logo a img {
	height: auto;
}

.socialLink g {
	width: 20px;
	height: 20px;
	fill: #492003;
}

.socialLink svg {
	width: 20px;
	height: 20px !important;
	height: auto;
}





header.fixed {
	position: fixed;
	animation: headanime 0.7s forwards;
	background: #fff;
	top: 0
}

header.fixed #head-inner {
	padding: 10px 30px 0;
	margin-bottom: 10px;
}

header.fixed #logo img {
	height: 40px;
}

header.fixed nav#nav {
	margin-top: 10px;
}

@keyframes headanime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}







main.fixed {
	padding-top: 140px;
}

@media only screen and (max-width: 970px) {}

@media only screen and (max-width: 768px) {
	header {
		margin-bottom: 30px;
	}

	#head-inner {
		margin-top: 5px;
		padding: 10px 10px 20px 20px;
	}

	#logo {

		height: auto;

	}

	#logo img {
		width: 100%;
		height: auto;
		max-width: 100px;
	}

	#logo span {
		margin-right: 15px;
	}

	#logo span.right {
		font-size: 1.3rem;
	}
}

/*==========================================
 Navigation
===========================================*/

nav#nav {
	z-index: 990;
	padding: 0;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	display: flex;
	margin-top: 20px;
}

nav#nav ul {
	margin-right: 30px;
	display: inline-block;
}

nav#nav ul li {
	padding: 0 15px;
	font-size: 1.4rem;
	font-weight: 400;
	font-family: "Delius Unicase", cursive;
	color: #492003;
	display: inline-block;
	position: relative;
	letter-spacing: 0.05em;
}




nav#nav #socialLink {
	display: flex;
}

nav#nav #socialLink div {
	margin: 10px 0 0 20px;
}

nav#nav ul li a {
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	backface-visibility: hidden;
	text-decoration: none;
	color: #492003;
	cursor: pointer;
}

nav#nav ul li a:hover {
	text-decoration: none;
	opacity: 0.7;
}

nav#nav ul li a:hover span {
	opacity: 0.6;
	text-decoration: none;

}

nav#nav ul li.current-menu-item {
	position: relative;
}

nav#nav ul li.current-menu-item:after,
.single-products nav#nav ul li.menu-item-has-children:after {
	content: "";
	width: 60%;
	height: 1px;
	background: #492003;
	top: 26px;
	left: 50%;
	transform: translate(-50%, 0);
	display: none;
	position: absolute;
}

nav#nav ul li.current-page-ancestor {
	position: relative;
}

nav#nav ul li.current-page-ancestor:after {
	content: "";
	width: 80%;
	height: 1px;
	background: #492003;
	top: 30px;
	left: 50%;
	transform: translate(-50%, 0);
	display: block;
	position: absolute;
}







@media only screen and (max-width: 1030px) {
	nav#nav ul li {
		padding: 0 10px;

	}
}

@media only screen and (max-width: 970px) {
	nav#nav ul {
		margin-left: 0;
		padding-top: 0;

	}
}

@media only screen and (max-width: 768px) {
	.menu {
		position: fixed;
		right: 20px;
		top: 10px;
		width: 40px;
		height: 40px;
		cursor: pointer;
		z-index: 990;
		
	}

	.menu .bar {
		display: inline-block;
		width: 100%;
		height: 1px;
		background-color: #492003;
		position: absolute;
		top: 10px;
		left: 0;
		transition: .15s ease-in-out;
	}

	.menu .black {
		background-color: #492003;
		;
		position: absolute;
	}

	#bar01 {
		top: 10px;
	}

	#bar02 {
		top: 17px;


	}

	#bar03 {
		top: 24px;


	}

	.menuOpen #bar01 {
		top: 10px;
		left: 0;
		-webkit-transform: translateY(8px) rotate(-45deg);
		transform: translateY(8px) rotate(-45deg);

	}

	.menuOpen #bar02 {
		opacity: 0;
	}

	.menuOpen #bar03 {
		top: 26px;
		left: 0;
		
		-webkit-transform: translateY(-8px) rotate(45deg);
		transform: translateY(-8px) rotate(45deg);

	}

	nav#nav {
		position: fixed;
		top: 0;
		left: 0;
		opacity: 0;

		width: 100vw;
		height: 100vh;
		text-align: center;
		padding: 90px 0 0 0;
		background: #FFF;
		z-index: 980;
		display: none;
		visibility: hidden;
		margin-top: 0;
		box-sizing: border-box;
	}

	#nav.active {
		opacity: 1;
		visibility: visible;
		display: block;
		animation: fadein 0.3s linear 0s;
	}

	@keyframes fadein {
		from {
			opacity: 0;
			transform: translateY(0px);
		}

		to {
			opacity: 1;
			transform: translateY(0px);
		}
	}

	nav#nav ul {
		flex-direction: column;
		margin-right: 0;
		margin-bottom: 40px;
		font-size: 1.6rem;
	}

	nav#nav ul li {
		padding: 0;
		margin-bottom: 35px;
		font-size: 1.6rem;
		display: block;
		position: relative;
		font-weight: 500;
	}




	nav#nav ul li a {
		text-decoration: none;
		transition: .15s ease-in-out;
		display: inline-block;
		width: 100%;
		color: #492003;
	}

	nav#nav ul li.current-menu-item {
		background: none;
		padding-bottom: 0;
		border-bottom: 0;
	}

	nav#nav ul li.current-menu-item:after {
		display: none;
	}

	nav#nav ul li.current-menu-item:after,
	.single-products nav#nav ul li.menu-item-has-children:after {
		display: none;
	}

	nav#nav ul li a br {
		display: none;
	}

	nav#nav ul li a span {
		display: inline-block;
		margin-left: 10px;
	}

	nav#nav #socialLink {
		display: flex;
		justify-content: center;

		width: 100%;
		margin: 0 auto;
	}

	nav#nav #socialLink div {
		margin: 10px 10px;
	}
}

@media only screen and (max-width: 375px) {}

/* Go Page Top
================================================== */
#page-top {
	border-radius: 50%;
	height: 30px;
	width: 30px;
	border: 1px solid #492003;
	position: fixed;
	bottom: 30px;
	right: 20px;
	text-align: center;
	cursor: pointer;
	z-index: 500;
}

#page-top::after {
	position: absolute;
	content: '';
	width: 9px;
	height: 9px;
	border-top: solid 1px #492003;
	border-right: solid 1px #492003;
	top: 12px;
	left: 10px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	cursor: pointer;
}

@media only screen and (max-width: 768px) {
	#page-top {
		display: none !important;
	}
}




/*footer
================================================== */


footer {
	width: 100%;
	height: 40px
}

.footInner {
	text-align: center;
}



@media only screen and (max-width: 768px) {

	.footInner {
		text-align: center;
	}

	.footInner .logo {
		width: 100%;
		max-width: 240px;
		margin: 0 auto;
	}

}


/*  top main image slider
================================================== */

#topVisual {
	position: relative;
	top: 0;
	left: 0;
	width: 100vw;
	height: auto;

	position: relative;


}

#topVisual.fixed {
	margin-top: 140px;
}



.slider {
	opacity:1;
	margin-bottom: 100px;
	box-sizing: border-box;
	display: none;
	position: relative;
	transition: opacity .3s .5s linear;

}

.slider.pc-only {
	display: block;
	margin-bottom: 140px;
	padding-bottom: 140px;
}

.slider.sp-only {
	display: none;
}

.slider.slick-initialized {
	opacity: 1;
	display: block;
}

.slider.sp-only.slick-initialized {
	display: none;
}

.slick-slide {
	position: relative;
	text-align: center;
	overflow: hidden;
}

.slick-list {
	overflow: hidden;
}

.slick-slide img {
	width: 64% !important;
	margin: 0 auto;
	display: block;
}

.slick-dots {
	position: relative !important;
	list-style: none;
	display: block;
	text-align: center;
	padding: 30px;
	margin: 0;
	width: 100%;
}

.dots-wrap {
	display: flex;
	justify-content: center;
}

.dots-wrap li {
	width: 10px;
	height: 10px;
	margin: 30px 5px 0;
	background: #ddd;
	border-radius: 50%;
	cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
	background: #492003;
}

.dots-wrap li button {
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0;
	border: none;
	background-color: transparent;
}




@media only screen and (max-width: 768px) {
	#topVisual {
		margin-bottom: 50px;
	}

	.slick-slide img {
		width: 90% !important;

	}




}


.scrolldown {
	position: absolute;
	left: 50%;
	bottom: 20px;
	height: 50px;
	transition: opacity .3s .5s linear;
}


.scrolldown span {

	position: absolute;
	left: -15px;
	top: -15px;
	color: #111;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
}


.scrolldown::after {
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #111;
	animation: pathmove 2s ease-in-out infinite;
	opacity: 0;
}

@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}

	30% {
		height: 30px;
		opacity: 1;
	}

	100% {
		height: 0;
		top: 50px;
		opacity: 0;
	}
}

@media only screen and (max-width: 768px) {}

/*Trailer
================================================== */




/*Layout
================================================== */
#contentsArea {
	width: 100%;
	padding-top: 0;
}

#contentsArea section {
	position: relative;
	padding: 100px 0 30px;
	box-sizing: border-box;
}

#contentsArea .wfull {
	width: 100%;
	box-sizing: border-box;
}

#contentsArea .w1200 {


	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

#contentsArea .w1080 {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}

#contentsArea .w980 {
	width: 100%;
	max-width: 980px;

	margin: 0 auto;


}

#contentsArea .w900 {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;


}

#contentsArea .w800 {
	width: 100%;
	max-width: 800px;

	margin: 0 auto;

}







#contentsArea section img {
	width: 100%;
	height: auto;

}





@media screen and (max-width: 768px) {

	main {
		width: 100%;
		float: none;
		margin-right: 0;
	}

	aside {
		width: 100%;
		float: none;
	}

	#contentsArea .w1080 {
		width: inherit;
	}

	#contentsArea .w1080 {
		width: inherit;
	}

	#contentsArea .w980 {
		width: inherit;
	}

	#contentsArea .w900 {
		width: inherit;
	}

	#contentsArea .w800 {
		width: inherit;
	}

	#contentsArea section {
		padding: 40px 20px 0 20px;
	}


	#contentsArea section p {
		font-size: 1.5rem;
	}

	#contentsArea section p.ex-large {
		font-size: 2.2rem;
		margin-bottom: 40px;
	}


	#contentsArea section p.large {
		font-size: 1.8rem;
		line-height: 1.8;
		font-weight: 600;

	}

	#contentsArea section p.midium {
		font-size: 1.8rem;
		font-weight: 600;

	}


}

@media screen and (max-width: 480px) {

	.fullImg {
		margin-bottom: 80px;
	}

	.fullImg div {
		width: 100%;
		float: none;
		margin-bottom: 30px;
		text-align: center;
	}

	.fullImg div img {
		width: 96%;
		margin: 0 auto;
	}



}

/*parallax 
================================================== */
.parallax {
	width: 100%;

}

.parallax-img {
	width: 100%;
	height: auto;
	overflow: hidden;

}

.parallax-img img {
	width: 100%;
	height: auto;
}








/*Works
================================================== */


ul.list-culumn {
	justify-content: flex-start; /* ← 左寄せ */
  position: relative;
  flex-wrap: wrap;
  padding: 0 30px;
  margin: 0 auto;
  gap: 30px;
  box-sizing:border-box;
  display:flex;
}

ul.list-culumn li {
	flex: 0 0 calc((100% - 90px) / 4);
	max-width: 500px;
	text-align: center;
	margin-bottom: 30px;
	transition: all 1s 0s ease;
	opacity: 0;
	transform: translateY(30px);
	box-sizing:border-box;
}
ul.list-culumn li.active {
	opacity: 1;
	transform: translateY(0);
}


ul.list-culumn li img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: all 1s ease;
}

ul.list-culumn li .zoom-img-wrap {
	height: auto;
	overflow: hidden;
	margin-bottom: 20px;
}

ul.list-culumn li:hover img {
	transform: scale(1.04);
	opacity: 0.7;
	cursor: pointer;
}


ul.list-culumn li a .cast-name {
	font-size: 1.8rem;
	color: #fff;
	text-decoration: none !important;
	font-weight: 500;
}









@media screen and (max-width:768px) {

	ul.list-culumn {
		padding: 0;

	}

	ul.list-culumn li {
		flex: 0 0 calc((100% - 60px) / 3);
		margin-bottom: 40px;
		transition: all 0.6s 0s ease;
		opacity: 0;
		transform: translateY(20px);
	}
}


@media screen and (max-width:480px) {
	ul.list-culumn {
		
		flex-wrap: wrap;
	}

	ul.list-culumn::after {
		display: none;

	}

	ul.list-culumn li {
		width:45%;
		margin: 0 auto 30px;
		 flex: 0 0 calc((100% - 30px) / 2);
	}

	ul.list-culumn li .zoom-img-wrap {
		height: auto;
		overflow: hidden;
		margin-bottom: 10px;
	}



}

/* ------------------------------------------------------------
	Modal
------------------------------------------------------------ */

.modal {
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 995;
}

.modal-bg {
	background: rgba(255, 255, 255, 1) 100%;
	height: 100vh;
	position: absolute;
	width: 100%;
}

#modal-content-wrapper {
	position: relative;
	width: 100%;

}

#modal-content-wrapper:before {
	content: "";
	display: block;
	padding-top: 60%;
}

.modal-content {
	width: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 80%;
	max-height: 80%;
	overflow-y: auto;
	display: inline-block;
	box-sizing: border-box;
	padding: 50px;
}



.modal-content .img-wrap {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;

}

.modal-content .img-wrap img {
	width: 100%;
	height: auto;
}

.modal-content h4 {
	display: block;
	text-align: center;
	margin-bottom: 50px;
}



.modal a.js-modal-close {
	position: absolute;
	top: 50px;
	right: 50px;
	z-index: 999;
}

.modal a.js-modal-close .close {
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 40px;
}

.modal a.js-modal-close .close:before,
.modal .js-modal-close .close:after {
	position: absolute;
	content: ' ';
	height: 40px;
	width: 1px;
	background-color: #492003;
}

.modal a.js-modal-close .close:before {
	transform: rotate(45deg);
}

.modal a.js-modal-close .close:after {
	transform: rotate(-45deg);
}

@media screen and (max-width:768px) {


	.modal-content {
max-width: 90%;
		padding: 30px;
	}

	.modal a.js-modal-close {

	top: 50px;
	right: 20px;
	
}





}


/*profile
================================================== */

.profile-box {
	display: flex;
	flex-direction: row;
	padding: 0 30px;
	box-sizing: border-box;
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s ease;
	justify-content: space-between;
}

.profile-box.active {
	opacity: 1;
	transform: translateY(0);
}


.profile-box .img-box {
	width: 30%;
}

.profile-box .img-box img {
	width: 100%;
	height: auto;
}

.profile-box .text-box {
	width: 65%;
	height: auto;
}

@media screen and (max-width:768px) {
	.profile-box {
		margin-bottom: 30px;
		padding: 0
	}
}
@media screen and (max-width:480px) {
	.profile-box {
		flex-direction: column;
	}
	.profile-box .img-box {
	width: 100%;
	margin-bottom:30px;
}


.profile-box .text-box {
	width: 100%;
	height: auto;
}
}



/*contact
================================================== */
.contact-box {
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s ease;
}

.contact-box.active {
	opacity: 1;
	transform: translateY(0);

}

.form-layout {
	justify-content: space-between;
	width: 100%;
	max-width: 800px;
	margin: 0 auto 50px;
	border-bottom: none;
	display: flex;
	flex-wrap: wrap;
}

.form-layout dt,
.form-layout dd {
	padding: 20px 0;
	font-size: 1.6rem;
}

.form-layout dt {
	width: 30%;
	vertical-align: middle;
	text-align: left;
	font-weight: 500;
	line-height: 1.4;
}

.form-layout dd {
	width: 65%;
	text-align: left;
	line-height: 1.4;
}

@media screen and (max-width:480px) {
	.form-layout {
		margin: 0 auto 20px;
	}

	.form-layout dt {
		width: 100%;
		padding: 0;
	}

	.form-layout dd {
		padding: 0 0 20px;
		width: 100%;
		line-height: 1.4;
	}
}

.form-layout dt p,
.form-layout dd p {
	margin-bottom: 10px !important;
	;
}

.form-layout input,
.form-layout textarea {
	background: #f1f1f1;
	border: none;
	padding: 5px;
	border-radius: 5px;
	color: #492003;
	font-size: 1.6rem;
}

.form-layout input:focus {
	border: 1px solid #ddd;
	outline: 0;
	background: #fff;
}

.form-layout textarea:focus {
	border: 1px solid #ddd;
	outline: 0;
	background: #fff;
}

.form-layout textarea {
	width: 100%;
	height: 200px;

}

.form-layout input {
	width: 100%;
	height: 40px;
}


.form-layout .required {
	display: inline-block;
	padding-left: 5px;
}

.form-layout sup {
	font-size: 1rem;
	color: red;
	vertical-align: super;
}

.form-submit {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.form-submit p {
	text-align: center;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
	border-style: none;
	padding: 10px 60px;
	color: #fff;
	font-weight: 400;
	font-size: 1.6rem;
	background: #492003;
	text-align: center;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	margin: 0 auto;
	border-radius: 200px;
	box-sizing: border-box;
	letter-spacing: 0.05em;
-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	opacity:1;
}


input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	opacity: 0.8;
	
}

.wpcf7-spinner{
	display: block !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output,.wpcf7 form.sent {
	border:unset!important;
	text-align:center !important;
	
}

.wpcf7 form.sent .wpcf7-response-output {
    border:unset!important;
}

@media screen and (max-width:480px) {
	input[type="submit"],
input[type="reset"],
input[type="button"] {
	
	width:100%;

}
}


footer{
	width:100%;
	text-align:center;
	padding:30px;
	box-sizing:border-box;
	margin-bottom:40px;
}

footer .copyright{
	margin-bottom:40px;
}