@charset "utf-8";

/*
Theme Name: food_lp
Version: 1.0
*/

html {
	scroll-behavior: smooth;
}

body .pc {
	display: none;
}

@media screen and (min-width: 1024px) {
	body .sp {
		display: none;
	}

	body .pc {
		display: block;
	}
}

/* ----------------------------------------------------
    共通
---------------------------------------------------- */

body {
	font-family: "Noto Sans JP";
	font-weight: 500;
	line-height: 1.5;
	font-size: 16px;
	color: #000;
}

img {
	width: 100%;
	height: auto;
}

.inner {
	margin: 0 5%;
}

.section-title {
	text-align: center;
}

.section-title h3 {
	font-family: "Narnoor";
	font-size: 70px;
	font-weight: 800;
	letter-spacing: 1px;
	line-height: 0.25;
}

.section-title p {
	font-size: 18px;
	font-weight: 900;
	margin-top: 19px;
	z-index: 998;
	position: relative;
}

@media screen and (min-width: 1024px) {
	.section-title h3 {
		font-size: 140px;
	}

	.section-title p {
		font-size: 32px;
		margin-top: 35px;
	}
}

/* ----------------------------------------------------
    header
---------------------------------------------------- */
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

header h1 {
	width: 109px;
}

header .line {
	font-size: 14px;
	color: #FFFFFF;
	background-color: #F95117;
	padding: 8px 12px;
	display: block;
	text-align: center;
	text-decoration: none;
	margin: 0 auto;
	width: 100%;
	box-shadow: none;
}

.mv .line {
	width: 60%;
	max-width: 320px;
	font-size: 16px;
	color: #FFFFFF;
	background-color: #F95117;
	padding: 15px;
	display: block;
	text-align: center;
	text-decoration: none;
	margin: 0 auto;
}

.line {
	width: 60%;
	max-width: 320px;
	font-size: 16px;
	color: #FFFFFF;
	background-color: #F95117;
	padding: 15px;
	display: block;
	text-align: center;
	text-decoration: none;
	margin: 0 auto;
	font-weight: bold;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
}

header a.header-logo {
	text-decoration: none;
}

.header__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	height: inherit;
	position: relative;
	padding: 16px;
	background-color: #fff;
	box-shadow: 0px 0px 12px 0px rgba(128, 110, 71, 0.2);
	z-index: 999;
}

.header-right {
	display: flex;
	gap: 12px;
	align-items: center;
}

.header__nav {
	position: absolute;
	display: flex;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	transform: translateX(100%);
	background-color: #fff;
	transition: ease .4s;
	height: 100vh;
	z-index: 998;
}

.header__nav.active {
	transform: translateX(0);
}

.header__nav ul {
	list-style: none;
}

.nav-items {
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0;
	text-align: center;
}

.nav-items__item a {
	color: #000;
	text-decoration: none;
	letter-spacing: 3px;
}

.nav-items__item:not(:last-child) {
	padding-bottom: 32px;
}

.hamburger {
	position: relative;
	width: 16px;
	height: 30px;
	background-color: #FFFFFF;
	border-radius: 100px;
	cursor: pointer;
	border: none;
	z-index: 999;
}

.hamburger .span {
	height: 100%;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	display: block;
	display: flex;
	width: 100%;
}

.hamburger .span>span {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 1px;
	background-color: #000;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.hamburger .span>span:nth-child(1) {
	top: 35%;
}

.hamburger .span>span:nth-child(2) {
	top: 50%;
}

.hamburger .span>span:nth-child(3) {
	top: 65%;
}

.hamburger.active .span>span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active .span>span:nth-child(2) {
	opacity: 0;
}

.hamburger.active .span>span:nth-child(3) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (1024px <=width) {
	.header__nav {
		position: static;
		transform: initial;
		background-color: inherit;
		height: inherit;
		display: flex;
		justify-content: end;
		width: 100%;
	}

	.nav__items {
		width: 100%;
		display: flex;
		align-items: center;
		height: initial;
		justify-content: flex-end;
		gap: 24px;
	}

	header h1 {
		width: 200px;

	}

	.nav-bg {
		display: none;
	}

	.nav-items {
		position: inherit;
		top: 0;
		left: 0;
		transform: translate(0, 0);
	}

	.nav-items__item:not(:last-child) {
		padding-bottom: 0;
	}

	.nav-items__item a {
		width: 100%;
		display: block;
		border-top: none;
		padding-top: 0px;
		margin-top: 0px;
		padding-left: 0%;
	}

	.nav-items__item:last-child a {
		font-size: 14px;
		color: #FFFFFF;
		background-color: #F95117;
		padding: 12px;
		display: block;
		text-align: center;
		text-decoration: none;
		margin: 0 auto;
		width: 100%;
		box-shadow: none;
	}

	.nav-items__item a:hover {
		opacity: 0.7;
	}

	.hamburger {
		display: none;
	}

	.header__inner {
		padding: 16px 64px 16px 32px;
	}
}

/* ----------------------------------------------------
    mv
---------------------------------------------------- */
.mv {
	height: 100vh;
	background-image: url(images/mv-img.jpg);
	background-position: 70%;
	background-size: cover;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.mv-text {
	margin-bottom: 28px;
}

.mv-text p {
	background-color: #fff;
	display: inline-block;
	font-size: 26px;
	font-weight: 700;
	padding: 7px 8px;
}

.mv-text p:first-child {
	margin-bottom: 8px;
}

.mv-text p span {
	background: linear-gradient(328deg, rgba(249, 81, 23, 1) 24%, rgba(246, 141, 105, 1));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mv-circle {
	display: flex;
	justify-content: space-between;
	margin-bottom: 28px;
}

.mv-circle .circle {
	width: 31%;
}

@media screen and (min-width: 768px) {
	.mv .line {
		margin: 0 auto 0 0;
		width: 76%;
		max-width: 640px;
	}
}

@media screen and (min-width: 1024px) {
	.mv .inner {
		margin-top: 12%;
	}

	.mv-text p {
		font-size: 40px;
		padding: 15px 24px;
	}

	.mv-circle {
		width: 72%;
	}
}

/* ----------------------------------------------------
    onayami
---------------------------------------------------- */
#onayami {
	background-image: url(images/bg1.png);
	background-position: bottom;
	background-size: cover;
	padding-top: 25px;
	padding-bottom: 15%;
}

#onayami h2 {
	text-align: center;
	color: #FFFFFF;
	font-weight: 900;
	letter-spacing: 0.05em;
}

.title-line {
	width: 235px;
	display: block;
	margin: -9px auto 10px;
}

#onayami ul {
	padding: 14px 0 24px;
	margin: 32px;
	display: block;
	flex-wrap: nowrap;
	justify-content: flex-start;
	background-color: #fff;
}

.check {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 13px 0;
	border-bottom: 1px dashed #D9D9D9;
	margin: 0 24px;
}

.check-image {
	width: 28px;
	height: 28px;
}

.check-text p {
	font-size: 14px;
}

.box {
	margin: 56px 5%;
}

.box-image {
	max-width: 380px;
	margin: 32px auto;
}

.box p {
	font-size: 15px;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.box-image {
		width: 40%;
		margin: 56px auto;
		max-width: 500px;
	}
}

@media screen and (min-width: 1024px) {
	#onayami {
		background-image: url(images/bg5.png);
		padding-top: 107px;
		padding-bottom: 15%;
	}

	#onayami h2 {
		font-size: 32px;
	}

	.title-line {
		width: 470px;
		margin: 0 auto 40px;
	}

	.box {
		margin-bottom: 120px;
	}

	.box p {
		font-size: 20px;
	}

	#onayami ul {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 24px;
		padding: 64px 32px;
	}

	#onayami ul li {
		width: 48%;
	}

	.check {
		margin: 0;
	}

	.check-text p {
		font-size: 16px;
	}
}

/* ----------------------------------------------------
    work
---------------------------------------------------- */
#work {
	background-color: #FAF6E6;
	background-position: bottom;
	background-size: cover;
	padding-bottom: 56px;
}

#work h3 {
	color: #F9EFD0;
}

.zisseki-slide {
	width: 80%;
	margin: 32px auto 0;
	box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.2);
}


/* 共通設定 */
.slick-next:before,
.slick-prev:before {
	display: none;
}

.slick-next::before,
.slick-next::after,
.slick-prev::before,
.slick-prev::after {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.slick-next::after,
.slick-prev::after {
	width: 12px;
	height: 12px;
	border-top: 1px solid #6B6B6B;
	border-right: 1px solid #6B6B6B;
}

/* next */

.slick-next {
	right: 26px;
}

.slick-next::after {
	right: -12px;
	transform: rotate(45deg);
}

/* prev */

.slick-prev {
	left: 26px;
}

.slick-prev::after {
	left: -12px;
	transform: rotate(-135deg);
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0;
}


.work-text img {
	margin-bottom: 54px;
	margin-top: 40px;
}

.profile-text {
	text-align: center;
	margin-bottom: 27px;
}

.profile-members {
	width: 63%;
	display: flex;
	gap: 18px;
	justify-content: center;
	margin: 0 auto;
	text-align: center;
}

.member h4 {
	color: #EEAD0A;
	margin: 4px 0 0;
	font-size: 10px;
}

.member img {
	width: 150px;
}

@media screen and (min-width: 768px) {
	.member img {
		width: 200px;
	}
}

@media screen and (min-width: 1024px) {
	.member img {
			width: 240px;
		}
	
	.profile-text {
		font-size: 22px;
		line-height: 1.6;
		width: 50%;
	}

	.profile-section {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 70px;
		margin: 0 auto;
		padding: 60px 20px;
		max-width: 1000px;
	}

	.profile-members {
		display: flex;
		gap: 40px;
	}

	.member h4 {
		font-size: 14px;
	}

	.name {
		font-size: 27px;
	}

	.zisseki-slide_pc.pc {
		display: flex;
		gap: 24px;
		justify-content: center;
		max-width: 1000px;
		margin: 72px auto 0;
	}
}

/* ----------------------------------------------------
    design
---------------------------------------------------- */
#design .design-header {
	background-image: url(images/bg2.jpg);
	background-size: cover;
	background-position: center;
	padding: 0 20px 35px 20px;
	color: #fff;
	text-align: center;
}

#design .section-title h3 {
	color: #D9D9D9;
	opacity: 0.4;
}

.design-text {
	font-size: 14px;
	margin-top: 32px;
}

#design ul {
	display: flex;
	padding: 24px 0;
	margin-bottom: 32px;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}

#design ul li:nth-child(2) {
	margin-right: 8px;
}

#design ul li:first-child {
	width: 100%;
}

.design-image img {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
	margin-bottom: 8px;
	width: 150px;
}

@media screen and (min-width: 768px) {
	#design .design-header {
		padding-bottom: 180px;
	}

	#design ul {
		padding: 0;
		margin-top: -130px;
		gap: 16px;
		margin-bottom: 80px;
	}

	#design ul li:first-child {
		width: auto;
	}

	#design ul li:nth-child(2) {
		margin-right: 0;
	}

	.design-image img {
		width: 200px;
	}
}

@media screen and (min-width: 1024px) {
	#design .design-header {
		padding-bottom: 360px;
	}

	#design ul {
		padding: 0;
		margin-top: -240px;
		gap: 16px;
		margin-bottom: 120px;
	}

	#design ul li:first-child {
		width: auto;
	}

	#design ul li:nth-child(2) {
		margin-right: 0;
	}

	.design-image img {
		width: 300px;
	}

	.design-text {
		font-size: 24px;
		margin-top: 48px;
		font-weight: 700;
	}
}


/* ----------------------------------------------------
    content
---------------------------------------------------- */
#content {
	background-color: #FAF6E6;
	padding-bottom: 56px;
}

#content h3 {
	color: #F9EFD0;
}

#content .text {
	font-weight: 700;
	letter-spacing: 0.02em;
	text-align: center;
	margin-top: 49px;
}

#content .text span {
	color: #F95117;
}

.title-line2 {
	width: 263px;
	display: block;
	margin: -7px auto 10px;
}

#content ul {
	margin: 29px 0 32px 0;
}

#content li {
	margin-bottom: 24px;
}

.content-box {
	background-color: #fff;
	text-align: center;
	padding: 18px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15)
}

.content-image {
	object-fit: cover;
	object-position: 50%;
}

.content-image img {
	aspect-ratio: 269 / 146;
}

.text1 {
	font-size: 20px;
	font-weight: 700;
	color: #F95117;
	margin: 18px 0 8px;
}

#content .line {
	margin-top: 32px;
}

@media screen and (min-width: 768px) {
	#content ul {
		display: flex;
		flex-wrap: wrap;
		margin-top: 49px;
		gap: 16px;
		justify-content: center;
	}

	#content ul li {
		width: calc((100% - 16px) / 2);
		;
	}

	.fukidashi {
		max-width: 500px;
		margin: 0 auto;
	}
}

@media screen and (min-width: 1024px) {
	#content {
		padding-bottom: 120px;
	}

	#content .text {
		font-size: 32px;
		margin-top: 109px;
	}

	.title-line2 {
		width: 526px;
		display: block;
		margin: 0 auto 10px;
	}

	#content ul {
		gap: 24px;
	}

	#content ul li {
		width: calc((100% - 48px) / 3);
		;
	}

	#content li {
		margin-bottom: 0;
	}

	.fukidashi {
		max-width: 850px;
	}
}


/* ----------------------------------------------------
    reason
---------------------------------------------------- */
#reason .section-title h3 {
	color: #F3EEE1;
	opacity: 0.5;
}

#reason ul {
	margin-top: 55px;
	margin-bottom: 56px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

#reason ul li {
	width: calc((100% - 8px) / 2);
	max-width: 200px;
}

@media screen and (min-width: 1024px) {
	#reason ul {
		margin-top: 77px;
		margin-bottom: 100px;
		gap: 29px;
		justify-content: center;
	}

	#reason ul li {
		width: 80%;
		max-width: 835px;
	}
}


/* ----------------------------------------------------
    flow
---------------------------------------------------- */
#flow {
	background-image: url(images/bg3.jpg);
	background-position: 49%;
	background-size: cover;
	align-items: center;
	padding-bottom: 56px;
}

#flow .section-title h3 {
	color: #EEAD0A;
	opacity: 0.15;
}

.flow-container {
	margin: 37px auto 30px;
	max-width: 380px;
}

.triangle {
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 20px solid #F95117;
	margin: 6px auto;
}

@media screen and (min-width: 1024px) {
	#flow {
		padding-bottom: 120px;
	}

	.flow-container.pc {
		display: flex;
		justify-content: space-around;
		gap: 10px;
		max-width: 1000px;
	}

	.flow-image {
		width: 20%;
		height: auto;
	}

	.triangle {
		height: 12px;
		aspect-ratio: cos(30deg);
		clip-path: polygon(0 0, 100% 50%, 0 100%);
		background: #F95117;
		margin: auto 5px;
	}
}


/* ----------------------------------------------------
    price
---------------------------------------------------- */
#price {
	background-color: #F95117;
	padding-bottom: 56px;
}

#price .section-title h3 {
	color: #D9D9D9;
	opacity: 0.3;
}

#price .section-title p {
	color: #FFFFFF;
}

.price-container {
	background-color: #fff;
	padding: 8%;
	margin: 28px auto 32px;
}

.price-container .box-text3 {
	width: 35%;
}

.price-container .price {
	margin-top: -22px;
}

.price-container .price-circle {
	margin: 32px 0;
}

.price-text {
	font-size: 10px;
	text-align: center;
}

#price .line {
	background-color: #fff;
	color: #F95117;
}

@media screen and (min-width: 768px) {
	.price-container {
		width: 48%;
	}
}

@media screen and (min-width: 1024px) {
	#price {
		padding-bottom: 120px;
	}

	.price-text {
		font-size: 14px;
		margin: 59px 0 10px;
	}

	.price-container {
		padding: 5% 16%;
		margin-top: 75px;
		width: 48%;
		max-width: 800px;
	}

	.price-top-pc {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
	}

	.box-text3,
	.price-container .price {
		width: 60%;
	}
}

/* ----------------------------------------------------
    voice
---------------------------------------------------- */
#voice {
	background-color: #F3EEE1;
	padding-bottom: 56px;
}

#voice .section-title h3 {
	color: #EEAD0A;
	opacity: 0.15;
	font-size: 60px;
}

.voice-01 {
	margin-left: 9%;
	margin-bottom: 40px;
}

.voice-02 {
	margin-right: 9%;
}

.user-voice-item {
	position: relative;
	margin-top: 77px;
}

.voice-image {
	position: absolute;
	top: -38px;
	right: 0;
	width: 54%;
}

.voice-02 .voice-image {
	position: absolute;
	top: -38px;
	left: 0;
	width: 54%;
}

.voice-number {
	font-family: 'Narnoor';
	margin-bottom: 24px;
}

.voice-number span {
	font-size: 24px;
}

.voice-01 .voice-content {
	background-color: #EEAD0A;
	color: #fff;
	padding: 44px 32px 44px 20px;
}

.voice-02 .voice-content {
	background-color: #F95117;
	color: #fff;
	padding: 44px 20px 44px 32px;
}

.voice-02 .voice-number {
	text-align: right;
}

.voice-text {
	line-height: 1.6;
	margin-bottom: 15px;
}

.voice-meta {
	font-size: 12px;
}

.voice-02 .voice-text,
.voice-02 .voice-meta {
	text-align: right;
}

@media screen and (min-width: 768px) {
	.voice-01 .voice-content {
		padding: 44px 0 60px 40px;
		width: 620px;
		margin-right: 0;
		margin-left: auto;
	}

	.user-voice-item {
		margin-top: 160px;
	}

	.voice-image,
	.voice-02 .voice-image {
		top: -100px;
	}

	.voice-02 .voice-content {
		padding: 44px 40px 60px 0;
		width: 620px;
		margin-left: 0;
		margin-right: auto;
	}

	.voice-image,
	.voice-02 .voice-image {
		max-width: 400px;
	}
}


@media screen and (min-width: 1024px) {
	#voice {
		padding-bottom: 120px;
	}

	#voice .section-title h3 {
		font-size: 140px;
	}

	.voice-number {
		font-family: 'Narnoor';
		font-size: 24px;
	}

	.voice-number span {
		font-size: 36px;
	}

	.voice-text {
		font-size: 18px;
	}

	.voice-meta {
		font-size: 14px;
	}

	.voice-02 .voice-text {
		font-size: 18px;
	}

	.voice-02 .voice-meta {
		font-size: 14px;
	}

	.voice-01 .voice-content,
	.voice-02 .voice-content {
		width: 64%;
		max-width: 720px;
	}
}


/* ----------------------------------------------------
    support
---------------------------------------------------- */

#support .section-title h3 {
	color: #F3EEE1;
	opacity: 0.5;
}

#support ul {
	margin-top: 33px;
	margin-bottom: 71px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

#support ul li {
	width: calc((100% - 88px) / 2);
}

.catch-copy_wrapper {
	width: 85%;
	max-width: 350px;
	margin: 0 auto;

}

.catch-copy {
	position: relative;
	display: inline-block;
	padding-top: 27px;
	font-size: 14px;
	width: 100%;
}

.catch-copy::before,
.catch-copy::after {
	content: "";
	position: absolute;
	top: 67%;
	width: 55px;
	height: 1px;
	background: #000;
}

.catch-copy::before {
	left: 0;
	transform: translate(-85%, -50%) rotate(50deg);
}

.catch-copy::after {
	right: 0;
	transform: translate(85%, -50%) rotate(-50deg);
}

.catch-copy p {
	text-align: center;
}

@media screen and (min-width: 768px) {
	#support ul {
		width: 78%;
		margin: 32px auto 72px;
	}
}

@media screen and (min-width: 1024px) {
	.catch-copy {
		font-size: 24px;
		margin: 56px 0;
	}

	.catch-copy_wrapper {
		max-width: 900px;
	}

	#support ul {
		width: 90%;
		max-width: 1000px;
		flex-wrap: nowrap;
		gap: 35px;
		margin: 0 auto;
	}

	.support-image {
		width: auto;
	}

	#support ul li {
		width: auto
	}

}

/* ----------------------------------------------------
    sec10
---------------------------------------------------- */

/* @media screen and (min-width: 1024px) {} */

/* ----------------------------------------------------
    footer
---------------------------------------------------- */

.footer-text {
	background-image: url(images/bg4.jpg);
	background-size: cover;
	background-position: 48%;
	color: #fff;
	text-align: center;
	padding-bottom: 56px;
}

.footer-text h2 {
	font-size: 21px;
	padding: 56px 0 16px 0;
}

.footer-right p {
	font-size: 12px;
	padding-bottom: 16px;
}

footer h1 {
	width: 210px;
	margin: 0 auto;
}

.footer__inner {
	padding: 32px 0;
	margin: 0 auto;
}

footer nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	margin: 24px 0 16px 0;
}

footer nav ul li {
	width: calc((100% - 12px) / 2);
	text-align: center;
}

footer nav ul li a {
	font-size: 14px;
	color: #625957;
	text-decoration: none;
}

footer .sns-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	font-size: 12px;
	margin-bottom: 16px;
}

footer .sns-link a {
	color: #625957;
	text-decoration: none;
}

footer .sns-link .sns-icon {
	width: 16px;
}

footer small {
	display: block;
	font-size: 12px;
	width: 100%;
	text-align: center;
	color: #625957;
}

@media screen and (min-width: 1024px) {
	.footer-text {
		padding: 150px 0;
	}

	.footer-text h2 {
		font-size: 40px;
		text-align: left;
		padding: 0;
	}

	.footer-text .inner {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 56px;
	}

	.footer-right p {
		font-size: 16px;
	}

	footer {
		padding: 120px 0 0;
	}

	footer h1 {
		width: 210px;
		margin: 0;
	}

	.footer-logo {
		width: 253px;
		margin-bottom: 24px;
		display: block;
	}

	footer .sns-link {
		justify-content: flex-start;
		gap: 16px;
		margin-bottom: 24px;
	}

	footer small {
		text-align: left;
	}

	.footer__inner {
		margin: 0 5%;
	}

	.footer__inner.pc {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.footer__inner.pc nav ul {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-end;
		gap: 48px;
	}

	.footer__inner.pc nav ul li {
		display: inline-block;
		width: auto;
	}

	footer nav ul li a {
		font-size: 16px;
	}

}