
/* CSS Document */
html,body{
	font-family: YakuHanMP, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Noto Serif JP", serif;
	color: #242424;
}
.SP{
	display: none;
}
.gothic-font{
	font-family: YakuHanJP_Narrow, "Yu Gothic", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}
.Century{
	font-family: century-old-style-std, serif;
	font-weight: 400;
	font-style: normal;
}
.Hummingbird{
	font-family: hummingbird, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.Futura{
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
}

/*ヘッダー*/
header{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	height: 100px;
	background-color: #ffffff;
	transition: .8s ease;
}
.head-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 220px;
}
.logo-wrap{
	position: absolute;
	top: 0;
	left: 0;
	width: 180px;
	height: 180px;
	background-color: #ebcc93;
	border-bottom-right-radius: 80px;
}
.head-logo{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 75%;
}
.head-list{
}
.head-list li{
	display: inline-block;
	position: relative;
	line-height: 100px;
}
.head-list li:not(:last-of-type){
	margin-right: 2.5em;
}
.head-list li:not(:last-of-type)::after{
	content: "|";
	position: absolute;
	top: 50%;
	right: -1.5em;
	transform: translateY(-55%);
	color: #cfaf74;
	line-height: 1em;
	opacity: 0.4;
}
.head-list li a{
	color: #cfaf74;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	position: relative;
	transition: .3s ease;
}
.head-list li a:hover{
	color: #7c6e55;
}
.head-list li a::before{
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: #7c6e55;
	transition: .3s ease;
}
.head-list li a:hover::before{
	width: 100%;
}
.contact-link{
	display: block;
	height: 100px;
	line-height: 100px;
	color: #ffffff;
	background-color: #ebcc93;
	padding: 0 40px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	transition: .3s ease;
}
.contact-link:hover{
	background-color: #7c6e55;
}


/*トップコンテンツ*/
.top-contents{
	width: 100%;
	height: 100vh;
}
.top-inner{
	position: relative;
	width: 100%;
	height: 100%;
}
.top-slide{
	width: 100%;
	height: 100%;
	position: relative;
}
.top-slide::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	transition: .8s ease;
}
.top-slide.fadeIn::before{
	width: 0;
}
.top-slide .slick-slide{
	background-position: top 15% center;
	background-size: cover;
}
.top-copy{
	position: absolute;
	bottom: 40px;
	left: 30px;
}
.top-copy h2{
	font-size: 2.5rem;
	letter-spacing: 0.025em;
	color: #ebcc93;
	opacity: 0;
	transition: .8s ease;
}
.top-copy.fadeIn h2{
	opacity: 1;
}
.top-copy h2 span{
	display: inline-block;
	padding: 10px 20px;
	position: relative;
	background-color: #ffffff;	
}
.top-copy h2 span::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	transition: .8s ease .8s;
}
.top-copy.fadeIn h2 span::before{
	width: 0%;
}
.top-copy h2 span:nth-of-type(2){
	margin-top: 20px;
}
.top-copy p{
	color: #ffffff;
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.13em;
	margin-top: 15px;
	transition: .8s ease .8s;
	filter: blur(10px);
	opacity: 0;
}
.top-copy.fadeIn p{
	opacity: 1;
	filter: blur(0px);
}



/*私たちについて*/
.about-us{
	padding: 200px 0 180px;
}
.about-inner{
	opacity: 0;
	filter: blur(30px);
	transition: 1s ease;
}
.about-inner.fadeIn{
	opacity: 1;
	filter: blur(0px);
}
.about-title{
	text-align: center;
}
.about-title h2{
	color: #cfaf74;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.075em;
}
.about-contents{
	width: 100%;
	margin-top: 45px;
	text-align: center;
}
.about-contents-copy{
	text-align: center;
}
.about-contents-copy h3{
	font-size: 1.6rem;
	letter-spacing: 0.025em;
}
.about-contents-copy p{
	font-size: 0.8rem;
	letter-spacing: 0.025em;
}
.about-sentence{
	width: 90%;
	max-width: 750px;
	margin: 30px auto 0;
}
.about-sentence p{
	text-align: justify;
	font-size: 0.9rem;
	line-height: 1.8em;
	letter-spacing: 0.025em;
	font-weight: 800;
}
.about-link{
	color: #cfaf74;
	background-color: #ffffff;
	display: inline-block;
	width: 250px;
	height: 60px;
	margin-top: 60px;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 58px;
	border: 1px solid #cfaf74;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	transition: .3s ease;
	-webkit-box-shadow: 0px 10px 20px 0px rgba(207, 175, 116, 0.25);
	box-shadow: 0px 10px 20px 0px rgba(207, 175, 116, 0.25);	
}
.about-link:hover{
	color: #ffffff;
	background-color: #cfaf74;
}

/*店舗一覧*/
.shop-list-contents{
	width: 100%;
	padding: 80px 0 120px;
	overflow: hidden;
	position: relative;
}
.shop-list-contents::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	width: 0;
	height: 100%;
	background-color: #f9f4ea;
	transition: .8s ease;
}
.shop-list-contents.fadeIn::before{
	width: 70%;
}
.shop-inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.shop-list-img{
	width: 50%;
	height: 600px;
	background-image: url("../image/shop-list.jpg");
	background-position: center center;
	background-size: cover;
	position: relative;
	z-index: 2;
	overflow: hidden;
}
.shop-list-img::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	transition: .8s ease .8s;
}
.shop-list-img.fadeIn::before{
	width: 0;
}
.shop-list-info{
	position: relative;
	z-index: 2;
	width: calc(50% - 80px);
}
.shop-list-title{
	color: #cfaf74;
}
.shop-list-title p{
	font-size: 0.9rem;
	letter-spacing: 0.025em;
}
.shop-list-title h2{
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.075em;
}
.shop-link{
	text-align: center;
	position: absolute;
	bottom: 0;
	left: calc(50% + 80px);
	z-index: 2;
	color: #cfaf74;
	background-color: #ffffff;
	display: inline-block;
	width: 250px;
	height: 60px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 58px;
    border: 1px solid #cfaf74;
	-webkit-border-radius: 30px;
    border-radius: 30px;
	transition: .3s ease;
	-webkit-box-shadow: 0px 10px 20px 0px rgb(207 175 116 / 25%);
    box-shadow: 0px 10px 20px 0px rgb(207 175 116 / 25%);
}
.shop-link:hover{
	color: #ffffff;
	background-color: #cfaf74;
}
.shop-list-deco{
	position: absolute;
	right: -150px;
	bottom: -180px;
	width: 550px;
	z-index: 1;
	opacity: .5;
}

/*ブログ*/
.blog{
	width: 100%;
	position: relative;
	margin-top: 180px;
	padding: 180px 0 120px;
}
.blog::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 0;
	height: 500px;
	background-color: #f9f4ea;
	transition: .8s ease;
}
.blog.fadeIn::before{
	width: 50%;
}
.blog-inner{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	opacity: 0;
	transform: translateY(30px);
	transition: .8s ease .8s;
}
.blog.fadeIn .blog-inner{
	opacity: 1;
	transform: none;
}
.blog-title{
	text-align: center;
	color: #cfaf74;
}
.blog-title h2{
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.075em;
}
.blog-title p{
	font-size: 0.9rem;
	letter-spacing: 0.025em;
}
.blog-contents{
	width: 100%;
	margin-top: 80px;
}
.blog-contents li{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.blog-contents li:not(:first-of-type){
	margin-top: 80px;
}
.blog-img{
	width: 40%;
	height: 270px;
	overflow: hidden;
}
.blog-contents li:nth-of-type(2) .blog-img{
	order: 2;
}
.blog-img img{
	object-fit: cover;
	height: 100%;
}
.blog-sentence{
	width: 100%;
	/*height: 270px;*/
	height: 160px;
	position: relative;
}
.blog-contents li:nth-of-type(2) .blog-sentence{
	order: 1;
}
.blog-num{
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	width: 100%;
}
.blog-num span{
	display: inline-block;
	font-size: 3rem;
	color: #cfaf74;
	margin-right: 0.25em;
}
.blog-num::after{
	content: "";
	display: block;
    flex-grow: 1;
    height: 2px;
    background-color: #cfaf74;
}
.blog-sentence h3{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.025em;
	line-height: 1.8em;
	text-align: justify;
}
.blog-link{
	position: absolute;
    bottom: 0;
    left: 0;
    color: #cfaf74;
    display: inline-block;
    width: 180px;
    padding: 10px 0;
    font-size: 1rem;
	font-weight: 700;
    letter-spacing: 0.13em;
    border-bottom: 2px solid #cfaf74;
    transition: .3s ease;
}
.blog-link:hover{
	color: #7c6e55;
    border-bottom: 2px solid #7c6e55;
}
.blog-page-link{
	color: #cfaf74;
	display: block;
	text-align: center;
	width: 250px;
	height: 60px;
	margin: 80px auto 0;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 58px;
	border: 1px solid #cfaf74;
	-webkit-border-radius: 30px;
    border-radius: 30px;
	transition: .3s ease;
	-webkit-box-shadow: 0px 10px 20px 0px rgb(207 175 116 / 25%);
    box-shadow: 0px 10px 20px 0px rgb(207 175 116 / 25%);
}
.blog-page-link:hover{
	color: #ffffff;
	background-color: #cfaf74;;
}

/*採用情報*/
.recruit-wrap{
	width: 100%;
	padding: 130px 0;
	position: relative;
	margin-top: 150px; /*お知らせ復活で消す*/
}
.recruit-wrap::before{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
	width: 0;
	height: 400px;
	background-color: #f9f4ea;
	transition: .8s ease;
}
.recruit-wrap.fadeIn::before{
	width: 100%;
}
.recruit-img{
	width: 95%;
	max-width: 950px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
.recruit-img li{
	width: calc(100% / 3 - 10px);
	height: 500px;
	background-size: cover;
	opacity: 0;
	transform: translateY(30px);
	transition: .8s ease;
}
.recruit-img.fadeIn li{
	opacity: 1;
	transform: none;
}
.recruit-img li:nth-of-type(1){
	background-image: url("../image/recruit-person_05.jpg");
	background-position: bottom center;
	transition-delay: .5s;
}
.recruit-img li:nth-of-type(2){
	background-image: url("../image/recruit-person_02.jpg");
	background-position: center center;
}
.recruit-img li:nth-of-type(3){
	background-image: url("../image/recruit-person_04.jpg");
	background-position: bottom center;
	transition-delay: 1s;
}
.recruit-title{
	text-align: center;
    color: #cfaf74;
	margin-top: 70px;
}
.recruit-title h2{
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.075em;
}
.recruit-sentence{
	text-align: center;
	width: 90%;
	margin: 15px auto 0;
	font-size: 1rem;
	font-weight: 800;
	line-height: 2.5em;
	letter-spacing: 0.025em;
}
.recruit-link{
	color: #cfaf74;
	display: block;
	text-align: center;
	width: 250px;
	height: 60px;
	margin: 45px auto 0;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 58px;
	border: 1px solid #cfaf74;
	-webkit-border-radius: 30px;
    border-radius: 30px;
	transition: .3s ease;
	-webkit-box-shadow: 0px 10px 20px 0px rgb(207 175 116 / 25%);
    box-shadow: 0px 10px 20px 0px rgb(207 175 116 / 25%);
}
.recruit-link:hover{
	color: #ffffff;
	background-color: #cfaf74;
}

/*お問い合わせはこちら*/
.contact-info{
	display: block;
	width: 100%;
	height: 500px;
	background-image: url("../image/contact.jpg");
	background-position: center center;
	background-size: cover;
	position: relative;
}
.contact-info::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	transition: .8s ease;
}
.contact-info:hover::before{
	background-color: rgba(0,0,0,0.75);
}
.contact-info-inner{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%,-30%);
	text-align: center;
	color: #ffffff;
}
.contact-info-title{
	
}
.contact-info-title h2{
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.075em;
}
.contact-info-title p{
	font-size: 0.9rem;
	letter-spacing: 0.025em;
}
.contact-info-link{
	text-align: center;
    display: block;
	width: 250px;
	height: 60px;
    margin: 45px auto 0;
    font-size: 1rem;
    font-weight: 700;
	line-height: 60px;
    letter-spacing: 0.13em;
	border: 1px solid #ffffff;
	-webkit-border-radius: 30px;
    border-radius: 30px;
}

/*フッター*/
footer{
	background-color: #cfaf74;
	padding: 110px 0;
}
.foot-inner{
	width: 90%;
	margin: 0 auto;
}
.foot-copy{
	text-align: center;
	color: #ffffff;
}
.foot-copy h3{
	font-size: 1.5rem;
	letter-spacing: 0.025em;
}
.foot-copy p{
	font-size: 0.8rem;
    letter-spacing: 0.025em;
}
.foot-info{
	margin-top: 90px;
}
.foot-logo{
	display: block;
	width: 180px;
	margin: 0 auto;
	transition: .3s ease;
}
.foot-logo:hover{
	opacity: 0.5;
}
.foot-list{
	text-align: center;
}
.foot-list li{
	margin-top: 45px;
	display: inline-block;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
    letter-spacing: 0.025em;
	position: relative;
}
.foot-list li:not(:last-of-type){
	margin-right: 2em;
}
.foot-list li:not(:last-of-type)::after {
    content: "|";
    position: absolute;
    top: 50%;
    right: -1.5em;
    transform: translateY(-50%);
    line-height: 1em;
}
.foot-list li a{
	position: relative;
}
.foot-list li a::after{
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: #ffffff;
	transition: .3s ease;
}
.foot-list li a:hover::after{
	width: 100%;
}
.copy-right{
	text-align: center;
	padding: 20px 0;
	color: #ffffff;
	background-color: #7c6e55;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.075em;
}


/*調整用*/
@media screen and (max-width:1000px) {
	.contact-link,
	.head-list li a{
		font-size: 0.9rem;
	}
	.head-list li:not(:last-of-type){
		margin-right: 1.5em;
	}
	.head-list li:not(:last-of-type)::after{
		right: -1em;
	}
}

/*スマートフォン*/
@media screen and (max-width:780px) {
    .PC{
		display: none;
	}
	.SP{
		display: block;
	}
	
	/*ヘッダー*/
	header{
		height: 60px;
	}
	header.head-active{
		background-color: rgba(255,255,255,0.75);
	}
	.head-inner{
		padding: 0 20px;
	}
	.logo-wrap{
		width: 80px;
		height: 80px;
		border-bottom-right-radius: 30px;
	}
	.menu-btn{
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		color: #cfaf74;
		width: 40px;
		height: 35px;
		cursor: pointer;
		text-align: center;
	}
	.menu-btn span{
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #cfaf74;
		left: 0;
	}
	.menu-btn span:first-of-type {
		top: 0;
	}
	.menu-btn span:nth-of-type(2) {
		top: 7.5px;
	}
	.menu-btn span:last-of-type {
		top: 15px;
	}
	.menu-btn p {
		font-size: 0.75rem;
		letter-spacing: 0.025em;
		font-weight: 400;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.menu-wrap{
		position: fixed;
		top: 0;
		left: 0;
		z-index: 20;
		background-color: rgba(124,110,85,0.90);
		width: 100%;
		height: 100%;
		transform: translateX(-100%);
		transition: .5s ease;
		overflow: auto;
		padding: 60px 40px;
		text-align: center;
	}
	.menu-wrap.active-menu{
		transform: none;
	}
	.menu-inner{
		position: relative;
		display: inline-block;
		vertical-align: middle;
		width: 100%;
	}
	.menu-logo{
		display: block;
		width: 100px;
		margin: 0 auto;
		transition: .8s ease .3s;
		opacity: 0;
	}
	.active-menu .menu-logo{
		opacity: 1;
	}
	.menu-list{
		margin-top: 20px;
	}
	.menu-list ul{
		text-align: left;
		color: #ffffff;
	}
	.menu-list ul li{
		opacity: 0;
		transform: translateY(50px);
		transition: .8s ease;
	}
	.active-menu .menu-list ul li{
		opacity: 1;
		transform: none;
	}
	.menu-list ul li a{
		display: block;
		padding: 30px 0;
		position: relative;
		border-bottom: 1px solid #ffffff;
	}
	.menu-list ul li a::after{
		font-family: "Font Awesome 6 Free";
		content: "\f054";
		font-size: 20px;
		font-weight: 700;
		position: absolute;
		color: #ffffff;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	.menu-list ul li a p{
		font-size: 0.7rem;
		font-weight: 300;
		letter-spacing: 0.2em;
	}
	.menu-list ul li a h3{
		font-size: 1.5rem;
		font-weight: 400;
		letter-spacing: 0.025em;
	}
	.menu-close{
		position: absolute;
		top: 10px;
		right: 20px;
		color: #ffffff;
		font-size: 30px;
		cursor: pointer;
		opacity: 0.8;
	}
	
	/*トップコンテンツ*/
	.top-contents{
		height: 500px;
	}
	.top-slide{
		height: 500px;
	}
	.top-copy{
		bottom: 20px;
		left: 15px;
	}
	.top-copy h2{
		font-size: 1.1rem;
	}
	.top-copy h2 span{
		padding: 10px;
	}
	.top-copy p{
		font-size: 0.6rem;
		letter-spacing: 0;
		margin-top: 8px;
	}
	.top-copy h2 span:nth-of-type(2){
		margin-top: 10px;
	}
	
	/*私たちについて*/
	.about-us{
		padding: 80px 0;
	}
	.about-title h2{
		font-size: 1.5rem;
	}
	.about-contents-copy h3{
		font-size: 1.1rem;
	}
	.about-contents-copy p{
		font-size: 0.6rem;
		letter-spacing: 0;
		margin-top: 8px;
	}
	.about-sentence p{
		font-size: 0.8rem;
	}
	.about-link{
		font-size: 0.9rem;
		margin-top: 30px;
	}
	
	/*店舗一覧*/
	.shop-list-contents{
		padding: 80px 0;
	}
	.shop-list-contents::before{
	}
	.shop-list-img{
		width: 100%;
		height: 230px;
	}
	.shop-list-info{
		width: 100%;
		padding: 40px 40px 80px;
	}
	.shop-list-title p{
		font-size: 0.8rem;
	}
	.shop-list-title h2{
		font-size: 1.5rem;
	}
	.shop-link{
		left: 40px;
		font-size: 0.9rem;
	}
	.shop-list-deco {
		right: -80px;
		bottom: -120px;
		width: 300px;
	}
	
	/*ブログ*/
	.blog{
		margin-top: 80px;
		padding: 80px 0;
	}
	.blog::before{
		height: 260px;
	}
	.blog-title h2{
		font-size: 1.5rem;
	}
	.blog-title p{
		font-size: 0.8rem;
	}
	.blog-contents{
		margin-top: 40px;
	}
	.blog-contents li:not(:first-of-type){
		margin-top: 50px;
	}
	.blog-img{
		width: 100%;
		height: 150px;
	}
	.blog-contents li:nth-of-type(2) .blog-img{
		order: 1;
	}
	.blog-sentence{
		width: 100%;
		height: auto;
		margin-top: 30px;
	}
	.blog-contents li:nth-of-type(2) .blog-sentence{
		order: 2;
	}
	.blog-num span{
		font-size: 2rem;
	}
	.blog-sentence h3{
		position: initial;
		transform: none;
		margin-top: 30px;
		font-size: 1rem;
	}
	.blog-link{
		position: initial;
		margin-top: 8px;
		font-size: 0.9rem;
		width: 100%;
	}
	.blog-page-link{
		font-size: 0.9rem;
	}
	
	/*採用情報*/
	.recruit-wrap{
		padding: 80px 0;
		margin-top: 80px; /*お知らせ復活で消す*/
	}
	.recruit-wrap::before{
		height: 200px;
	}
	.recruit-img li{
		width: calc(100% / 3 - 5px);
		height: 220px;
	}
	.recruit-title{
		margin-top: 40px;
	}
	.recruit-title h2{
		font-size: 1.5rem;
	}
	.recruit-sentence{
		font-size: 0.8rem;
	}
	.recruit-link{
		font-size: 0.9rem;
		margin: 25px auto 0;
	}
	
	/*お問い合わせ*/
	.contact-info{
		height: 250px
	}
	.contact-info-inner{
		width: 90%;
		transform: translate(-50%,-45%);
	}
	.contact-info-title h2{
		font-size: 1.5rem;
	}
	.contact-info-title p{
		font-size: 0.8rem;
	}
	.contact-info-link{
		font-size: 0.9rem;
		margin: 15px auto 0;
	}
	
	/*フッター*/
	footer{
		padding: 80px 0;
	}
	.foot-copy h3{
		font-size: 1.1rem;
	}
	.foot-copy p{
		font-size: 0.6rem;
		letter-spacing: 0;
		margin-top: 8px;
	}
	.foot-info{
		margin-top: 40px;
	}
	.foot-logo{
		width: 130px;
	}
	.foot-list{
		margin-top: 15px;
	}
	.foot-list li{
		display: block;
		text-align: left;
		margin-top: 0;
	}
	.foot-list li:not(:last-of-type){
		margin-right: 0;
	}
	.foot-list li:not(:last-of-type)::after{
		content: none;
	}
	.foot-list li a{
		display: block;
		width: 100%;
		padding: 15px 0;
		border-bottom: 1px solid #ffffff;
	}
	.foot-list li a::after{
		content: none;
	}
	.copy-right{
		font-size: 0.7rem;
		padding: 10px 0;
	}
}