body {
	overflow: hidden;
}

body.loaded {
	height: auto;
}

body.start {
	overflow-y: scroll;
	height: auto;
	overflow-x: hidden;
}

/*=========================
ローディング
=========================*/
.loadingAnim {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
	line-height: 1;
	position: fixed;
	z-index: 99;
	right: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
	content: ' ';
	transition: all .6s cubic-bezier(.785, .135, .15, .86) 0s;
	/*    transition: all .3s linear 0s;*/
	transition-delay: .3s;
	background-color: #FFF;
}

.loadingAnim:before {
	left: 0%;
}

.loadingAnim:after {
	right: 0%;
}

.loaded .loadingAnim:before {
	width: 100%;
	transform: translateX(-100%);
}

.loaded .loadingAnim:after {
	width: 100%;
	transform: translateX(100%);
}

.loadingAnim_line {
	line-height: 1;
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: inline-block;
	overflow: hidden;
	width: 50px;
	height: 1px;
	margin: auto;
	transition: all .3s cubic-bezier(.785, .135, .15, .86) 0s;
	transition-delay: .6s;
	text-align: center;
}

.loadingAnim_line:after {
	position: absolute;
	z-index: 100;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 100%;
	margin: auto auto auto 0;
	content: ' ';
	animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
	background-color: #008090;
	will-change: transform, width;
}

.loadingAnim_line:before {
	font-size: 1rem;
	font-weight: 100;
	font-style: normal;
	line-height: 1;
	display: block;
	content: '';
	animation: loadingAnim_text 2s ease 3s infinite alternate both;
	letter-spacing: .1em;
	color: #008090;
	will-change: opacity;
}

.loaded .loadingAnim_line {
	overflow: hidden;
	height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
	-webkit-animation: none;
	animation: none;
}

.loaded .loadingAnim_line:before {
	content: '';
}

@-webkit-keyframes loadingAnim {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
		-webkit-transform: translate(100%);
		transform: translate(100%);
	}
}

@keyframes loadingAnim {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
		-webkit-transform: translate(100%);
		transform: translate(100%);
	}
}

@-webkit-keyframes loadingAnim_text {
	0% {
		opacity: 1;
		color: #008090;
	}

	50% {
		color: #008090;

	}

	100% {
		opacity: .5;
		color: #008090;
	}
}

@keyframes loadingAnim_text {
	0% {
		opacity: 1;
		color: #008090;
	}

	50% {
		color: #008090;
	}

	100% {
		opacity: .5;
		color: #008090;
	}
}

/*=========================
デバッグ用設定
=========================*/
#debug {
	position: fixed;
	left: 50%;
	top: 0;
	background-color: #FFF;
	padding: 0.20rem;
	z-index: 10;
	width: 2.00rem;
	height: auto;
	line-height: 1.5;
	font-size: 0.14rem;
	display: none;
}

/*======================
背景スライド
=======================*/
.mv_bg_slide_wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 0.20rem);
	z-index: -1;
	transition: all 0.3s ease;
}

@media screen and (max-width: 499px) {
	.mv_bg_slide_wrap {
		height: calc(100% - 0.10rem);
	}
}


.mv_bg_slide_wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.20rem;
	z-index: 1;
	background-color: #FFF;
}

@media screen and (max-width: 499px) {
	.mv_bg_slide_wrap::before {
		height: 0.10rem;
	}
}

.mv_bg_slide {
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 100%;
}

.mv_bg_slide::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

/*======================
ヘッダー
=======================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

header h1 {
	width: 0.80rem;
	height: 0.80rem;
	position: relative;
	background-color: #FFF;
}

@media screen and (max-width: 499px) {
	header h1 {
		width: 0.70rem;
		height: 0.70rem;
	}
}

header h1 a {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/fcp_logo.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 40%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000;
	text-decoration: none;
	text-indent: -9999px;
}

@media screen and (max-width: 499px) {
	header h1 a {
		font-size: 0.20rem;
	}
}

header nav {
	background-color: #000;
	padding: 0.30rem;
	position: relative;
	top: 0.80rem;
	left: 0;
	width: 2.00rem;
	display: none;
}

@media screen and (max-width: 499px) {
	header nav {
		background-color: #000;
		padding: 0.30rem;
		position: relative;
		top: 0.70rem;
		left: 0;
		width: 2.00rem;
		display: none;
	}
}


header nav li {
	line-height: 2.6;
}

header nav a {
	color: #FFF;
	font-family: 'Sen', sans-serif;
	letter-spacing: 0.10em;
	font-size: 0.18rem;
	text-decoration: none;
	position: relative;
	display: block;
}

header nav a::before {
	content: "";
	width: 0;
	height: 1px;
	background-color: #FFF;
	position: relative;
	top: -0.04rem;
	left: 0;
	display: inline-block;
	margin-right: 0;
	transition: all 0.3s ease;
}

header nav a:hover {
	opacity: 0.5;
}

header nav a:hover::before {
	content: "";
	width: 0.06rem;
	height: 1px;
	background-color: #FFF;
	position: relative;
	top: -0.04rem;
	left: 0;
	display: inline-block;
	margin-right: 0.10rem;
}

/*============================
フローティングバナー
============================*/
#float_reserve_btn {
	position: fixed;
	top: 46%;
	right: 0;
	transform: translateY(-50%);
	width: 0.53rem;
	height: 2.28rem;
	z-index: 10;
}

@media screen and (max-width: 499px) {
	#float_reserve_btn {
		top: auto;
		right: auto;
		bottom: 0.40rem;
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 0.80rem);
		height: 0.50rem;
		background-color: #000;
		border-radius: 0.30rem;
		box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
		overflow: hidden;
	}
}

#float_reserve_btn a {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/float_reserve_btn.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #000;
}

@media screen and (max-width: 499px) {
	#float_reserve_btn a {
		background-image: url(../img/float_reserve_btn_sp.png);
		background-position: center center;
	}
}

/*============================
共通パーツ
============================*/
.sec_title {
	font-size: 0.68rem;
	letter-spacing: 0.10em;
	text-align: center;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	margin-bottom: 0.50rem;
	color: #c1c0c0;
}

@media screen and (max-width: 499px) {
	.sec_title {
		font-size: 0.38rem;
	}
}

/* オブジェクトフィット */
.ph.cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*============================
MV
============================*/
#mv {
	width: 100vw;
	height: 100vh;
	position: relative;
	z-index: 0;
}

@media screen and (max-width: 499px) {
	#mv {
		width: 100%;
	}
}

#mv .mv_cont_wrap {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	width: 100%;
}

#mv .logo {
	width: 1.60rem;
	margin: auto;
}

@media screen and (max-width: 499px) {
	#mv .logo {
		width: 1.20rem;
	}
}

#mv .shop_list_wrap {
	padding-top: 0.50rem;
}

#mv .shop_list_wrap .list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

@media screen and (max-width: 499px) {
	#mv .shop_list_wrap .list {
		display: block;
	}
}

#mv .shop_list_wrap .list .link {
	width: 25%;
	max-width: 2.00rem;
}

@media screen and (max-width: 499px) {
	#mv .shop_list_wrap .list .link {
		width: 40%;
		margin: 0 auto 0.50rem;
	}

	#mv .shop_list_wrap .list .link:last-child {
		margin-bottom: 0;
	}
}

#mv .shop_list_wrap .list .link a {
	display: block;
	position: relative;
}

#mv .shop_list_wrap .list .link a::after {
	position: absolute;
	bottom: -0.10rem;
	left: 10%;
	content: '';
	width: 80%;
	height: 2px;
	background: #c1c0c0;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

#mv .shop_list_wrap .list .link a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/*============================
ショップコンテンツ
============================*/
.shop_cont {
	position: relative;
	padding-bottom: 1.50rem;
}

@media screen and (max-width: 499px) {
.shop_cont {
	padding-bottom: 70vh;
}
}

.shop_cont .in {
	background-color: #FFF;
	max-width: 8.50rem;
	padding: 0.40rem;
	margin: auto;
}

@media screen and (max-width: 499px) {
	.shop_cont .in {
		padding: 0.20rem 0.10rem 0.40rem;
	}
}

.shop_cont .in .main_ph_wrap {
	width: 100%;
	height: 3.50rem;
	overflow: auto;
	margin-bottom: 0.30rem;
}

.shop_cont .in .logo {
	width: 100%;
	max-width: 1.00rem;
	margin: auto;
}

.shop_cont .in .title {
	font-size: 0.22rem;
	font-weight: 600;
	letter-spacing: 0.075em;
	line-height: 1.55;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	padding: 0.20rem 0;
}

@media screen and (max-width: 499px) {
	.shop_cont .in .title {
		letter-spacing: 0;
	}
}

.shop_cont .in .lead {
	font-size: 0.14rem;
	letter-spacing: 0.05em;
	line-height: 2;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
}

@media screen and (max-width: 499px) {
	.shop_cont .in .lead {
		font-size: 0.16rem;
		letter-spacing: 0;
		line-height: 2;
		text-align: justify;
	}
}

.shop_feature_wrap {
	padding-top: 0.30rem;
}

.shop_feature_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.shop_feature_wrap .list .detail {
	width: 32%;
}

@media screen and (max-width: 499px) {
	.shop_feature_wrap .list .detail {
		width: 100%;
		display: flex;
	}
}

.shop_feature_wrap .list .detail .ph_wrap {
	width: 100%;
	height: 1.80rem;
	overflow: hidden;
	margin-bottom: 0.15rem;
}

@media screen and (max-width: 499px) {
	.shop_feature_wrap .list .detail .ph_wrap {
		width: 1.50rem;
		height: 1.50rem;
		margin-bottom: 0.20rem;
	}
}

.shop_feature_wrap .list .detail .text {
	font-size: 0.13rem;
	line-height: 1.75;
	text-align: justify;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 499px) {
	.shop_feature_wrap .list .detail .text {
		width: calc(100% - 1.50rem);
		padding-left: 0.20rem;
		line-height: 1.75;
		text-align: justify;
		font-size: 0.14rem;
	}
}

/* salon menuボタン */
.shop_feature_wrap .menu_btn {
	width: 100%;
	max-width: 3.00rem;
	margin: auto;
	padding-top: 0.30rem;
}

.shop_feature_wrap .menu_btn a {
	display: block;
	width: 100%;
	background-color: #FFF;
	border: 3px solid #000;
	line-height: 0;
	font-family: 'Sen', sans-serif;
	font-size: 0.18rem;
	font-weight: 700;
	letter-spacing: 0.10em;
	color: #000;
	text-decoration: none;
	padding: 0.24rem 0 0.26rem;
	text-align: center;
	box-sizing: border-box;
}

.shop_feature_wrap .menu_btn a:hover {
	background-color: #000;
	color: #FFF;
}

.shop_cont .in .shop_info {
	padding-top: 0.50rem;
}

.shop_cont .in .shop_info table {
	width: 100%;
	font-size: 0.15rem;
	letter-spacing: 0.05em;
	line-height: 1.85;
	border-collapse: collapse;
	border-top: 1px solid #CCC;
}

.shop_cont .in .shop_info table th {
	text-align: left;
	padding: 0.10rem 0;
	border-bottom: 1px solid #CCC;
}

@media screen and (max-width: 499px) {
	.shop_cont .in .shop_info table th {
		width: 1.00rem;
	}
}

.shop_cont .in .shop_info table td {
	text-align: left;
	padding: 0.10rem 0;
	border-bottom: 1px solid #CCC;
}

.shop_cont .in .shop_info table td a {
	color: #000;
}

.shop_cont .in .shop_info table td a:hover {
	text-decoration: none;
}

.shop_cont .in .shop_info table td .small_text {
	font-size: 0.12rem;
}

.shop_cont .in .link_wrap {
	padding-top: 0.30rem;
}

.shop_cont .in .link_wrap .list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.shop_cont .in .link_wrap .list .link {
	padding: 0 0.10rem;
	width: 100%;
	max-width: 1.80rem;
	box-sizing: border-box;
}

@media screen and (max-width: 499px) {
	.shop_cont .in .link_wrap .list .link {
		padding: 0 0.10rem 0.20rem;
		width: 50%;
		max-width: 100%;
		box-sizing: border-box;
	}
}

.shop_cont .in .link_wrap .list .link a {
	display: block;
	width: 100%;
	background-color: #000;
	line-height: 0;
	font-family: 'Sen', sans-serif;
	font-size: 0.15rem;
	letter-spacing: 0.10em;
	color: #FFF;
	text-decoration: none;
	padding: 0.24rem 0 0.26rem;
	text-align: center;
}

.shop_cont .in .link_wrap .list .link.line a {
	background-color: #00b900;
}

.shop_cont .in .link_wrap .list .link a:hover {
	opacity: 0.7;
}

.shop_cont .in .link_wrap .caption {
	font-size: 0.12rem;
	text-align: center;
	padding-top: 0.15rem;
}

@media screen and (max-width: 499px) {
	.shop_cont .in .link_wrap .caption {
		font-size: 0.11rem;
		padding-top: 0;
	}
}

/*============================
About
============================*/
#about {
	width: 100vw;
	height: 100vh;
	position: relative;
	z-index: 0;
	transition: all 0.6s ease;
}

@media screen and (max-width: 499px) {
	#about {
		width: 100%;
	}
}

#about .in {
	width: 100%;
	max-width: 7.00rem;
	margin: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 499px) {
	#about .in {
		width: 100%;
		box-sizing: border-box;
		padding-left: 0.40rem;
		padding-right: 0.40rem;
	}
}

#about .text {
	font-size: 0.15rem;
	line-height: 2;
	letter-spacing: 0.04em;
	font-family: 'Noto Serif JP', serif;
	color: #FFF;
	font-weight: 500;
}

@media screen and (max-width: 499px) {
	#about .text {
		font-size: 0.14rem;
	}
}

/*============================
Salon Menu
============================*/
#menu {
	width: 100vw;
	height: 100vh;
	position: relative;
	z-index: 0;
}

@media screen and (max-width: 499px) {
	#menu {
		width: 100%;
	}
}

#menu .in {
	width: 100%;
	max-width: 10.00rem;
	margin: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 499px) {
	#menu .in {
		box-sizing: border-box;
		padding-left: 0.40rem;
		padding-right: 0.40rem;
	}
}

#menu ul {
	max-width: 8.00rem;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media screen and (max-width: 499px) {
	#menu ul {
		width: 70%;
	}
}

#menu li {
	width: 46%;
	padding-top: 0.80rem;
	padding-bottom: 0.80rem;
}

@media screen and (max-width: 499px) {
	#menu li {
		width: 100%;
		padding-top: 0;
		padding-bottom: 0.40rem;
	}
}

#menu li a {
	display: block;
	text-align: center;
	font-family: 'Sen', sans-serif;
	font-size: 0.50rem;
	font-weight: 700;
	color: #FFF;
	text-decoration: none;
	padding-bottom: 0.10rem;
	border-bottom: 0.10rem solid #FFF;
}

@media screen and (max-width: 499px) {
	#menu li a {
		display: block;
		text-align: center;
		font-family: 'Sen', sans-serif;
		font-size: 0.40rem;
		font-weight: 700;
		color: #FFF;
		text-decoration: none;
		padding-bottom: 0.10rem;
		border-bottom: 0.10rem solid #FFF;
	}
}

#menu li a:hover {
	color: #000;
}

#menu li a::after {
	content: "";
	display: block;
	height: 0.10rem;
	width: 0;
	background-color: #FFF;
	transition: all 0.3s ease;
	position: relative;
	bottom: -0.20rem;
}

#menu li a:hover::after {
	width: 100%;
	background-color: #000;
}

#menu .text {
	font-size: 0.13rem;
	line-height: 2;
	letter-spacing: 0.04em;
	color: #FFF;
	text-align: center;
}

@media screen and (max-width: 499px) {
	#menu .text {
		font-size: 0.12rem;
	}
}


/*============================
Blog
============================*/
#blog {
	background-color: #FFF;
	position: relative;
	z-index: 1;
	padding-top: 0.60rem;
	padding-bottom: 0.60rem;
	display: none;
}

#blog::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0.80rem;
	background-color: #F2F2F2;
	width: calc(100% - 2.00rem);
	height: 74%;
	z-index: -1;
}

@media screen and (max-width: 499px) {
	#blog::before {
		width: calc(100% - 0.30rem);
		height: 82%;
	}
}

#blog .in {
	max-width: 10.00rem;
	margin: auto;
}

@media screen and (max-width: 499px) {
	#blog .in {
		box-sizing: border-box;
		padding-left: 0.20rem;
		padding-right: 0.20rem;
	}
}

#blog .in .sec_title {
	text-align: left;
	font-family: 'Sen', sans-serif;
}

#blog .list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -0.20rem;
	margin-right: -0.20rem;
}

@media screen and (max-width: 499px) {
	#blog .list {
		margin: auto;
	}
}

#blog .list .detail {
	width: 50%;
	box-sizing: border-box;
	padding-left: 0.20rem;
	padding-right: 0.20rem;
	padding-bottom: 0.40rem;
}

@media screen and (max-width: 499px) {
	#blog .list .detail {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0.30rem;
	}
}

#blog .list .detail a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	color: #111;
	text-decoration: none;
}

#blog .list .detail .ph {
	width: 1.60rem;
	height: 1.60rem;
	overflow: hidden;
}

@media screen and (max-width: 499px) {
	#blog .list .detail .ph {
		width: 1.30rem;
		height: 1.30rem;
	}
}

#blog .list .detail .ph img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

#blog .list .detail a:hover {
	opacity: 0.7;
}

#blog .list .detail a:hover .ph img {
	transform: scale(1.06);
}

#blog .list .detail .textbox {
	width: calc(100% - 1.80rem);
	letter-spacing: 0.04em;
	padding-top: 0.20rem;
	position: relative;
}

@media screen and (max-width: 499px) {
	#blog .list .detail .textbox {
		width: calc(100% - 1.50rem);
		padding-top: 0.10rem;
	}
}

#blog .list .detail .textbox .date,
#blog .list .detail .textbox .author {
	font-size: 0.14rem;
	font-family: 'Sen', sans-serif;
	display: block;
	line-height: 1.5;
}

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

	#blog .list .detail .textbox .date,
	#blog .list .detail .textbox .author {
		font-size: 0.12rem;
	}
}

#blog .list .detail .textbox .title {
	font-size: 0.18rem;
	line-height: 1.5;
	font-weight: 700;
}

@media screen and (max-width: 499px) {
	#blog .list .detail .textbox .title {
		font-size: 0.17rem;
	}
}

#blog .list .detail .textbox .more {
	position: absolute;
	bottom: 0.20rem;
	left: 0;
	font-family: 'Sen', sans-serif;
	font-weight: 700;
	border-bottom: 2px solid #000;
	padding-bottom: 0.06rem;
}


#blog .more_btn {
	width: 3.00rem;
	margin: auto;
}

#blog .more_btn a {
	display: block;
	padding: 0.16rem;
	color: #FFF;
	font-family: 'Sen', sans-serif;
	text-decoration: none;
	font-size: 0.16rem;
	letter-spacing: 0.08em;
	text-align: center;
	position: relative;
	background-color: #000;
}

#blog .more_btn a::after {
	content: "";
	width: 0.40rem;
	height: 7px;
	background-image: url(../img/link_arrow_white.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto 100%;
	position: absolute;
	right: 0.16rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}

#blog .more_btn a:hover::after {
	width: 0.30rem;
	right: 0.10rem;
}

/*============================
PV
============================*/
#pv {
	position: relative;
	background-color: #FFF;
	padding-bottom: 0.60rem;
}

@media screen and (max-width: 499px) {
	#pv {
		padding-bottom: 0.30rem;
	}
}

#pv .in {
	width: 14.00rem;
	height: 5.50rem;
	margin: auto;
	position: relative;
}

@media screen and (max-width: 499px) {
	#pv .in {
		width: 100%;
		height: 2.50rem;
	}

	#pv .in iframe {
		width: 100%;
		height: 2.50rem;
	}
}

/*============================
Access
============================*/
#access {
	position: relative;
	background-color: #FFF;
	padding-top: 0.60rem;
}

#access .in {
	width: 10.00rem;
	margin: auto;
	position: relative;
}

@media screen and (max-width: 499px) {
	#access .in {
		width: 100%;
		box-sizing: border-box;
		padding-left: 0.20rem;
		padding-right: 0.20rem;
	}
}

#access .in .sec_title {
	text-align: left;
	font-family: 'Sen', sans-serif;
}

#access .in .text {
	font-size: 0.15rem;
	line-height: 2;
	padding-bottom: 0.30rem;
}

@media screen and (max-width: 499px) {
	#access .in .text {
		font-size: 0.14rem;
	}
}

@media screen and (max-width: 499px) {
	#access iframe {
		height: 2.00rem;
		width: 100%;
	}
}

/*============================
footer
============================*/
footer {
	background-color: #333;
	padding: 0.40rem 0.20rem;
	text-align: center;
	color: #FFF;
	font-family: 'Sen', sans-serif;
	font-weight: 400;
}

footer .logo {
	max-width: 1.00rem;
	margin: auto;
	padding-bottom: 0.30rem;
	opacity: 0.5;
}

footer .sns_list {
	display: flex;
	justify-content: center;
	padding-bottom: 0.40rem;
}

@media screen and (max-width: 499px) {
footer .sns_list {
	display: none;
}
}

footer .sns_list li {
	padding-left: 0.10rem;
	padding-right: 0.10rem;
}

@media screen and (max-width: 499px) {
	footer .sns_list li {
		width: 40%;
		margin: auto;
		text-align: left;
		box-sizing: border-box;
		padding: 0.20rem 0;
	}
}

footer .sns_list a {
	color: #FFF;
	text-decoration: none;
	font-size: 0.15rem;
	letter-spacing: 0.04em;
	font-weight: 400;
}

footer .sns_list a::before {
	content: "";
	width: 0.26rem;
	height: 0.26rem;
	display: inline-block;
	position: relative;
	background-image: url(../img/insta_icon.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 0.06rem;
	top: 0.10rem;
}

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

footer .sns_list a:hover {
	text-decoration: underline;
}

footer .copyright {
	font-size: 0.13rem;
}
