@charset "utf-8";
/* ==============================================

	body

================================================= */
body {
	color: #000;
	font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
}
::-moz-selection {
	color: #fff;
	background-color: #a48f8f;
}
::selection {
	color: #fff;
	background-color: #a48f8f;
}
@media screen and (max-width: 480px) {
	body {
		font-size: 1.3rem;
	}
}



#catalog_page_ttl_en, .f_sns p, .brand_h1_ttl h1, .brand_h2_ttl h2 {
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	font-style: normal;
}

/* ==============================================

	header

================================================= */
.h_txt {
	background: #e6ece9;
	text-align: center;
	color: #221815;
	font-size: 1.4rem;
	font-weight: 700;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerArea {
	border-bottom: 4px solid #f0f0f0;
}
.headerArea > div {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 30px 0 0;
}
.h_nav {
	margin-bottom: 10px;
}
.h_logo {
	margin-bottom: 5px;
}
.h_fav {
	margin-bottom: 10px;
}
.h_fav a {
	background: #f0f0f0;
	color: #4d4d4d;
	width: 200px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-weight: 700;
}
.h_fav span {
	color: #f552dc;
}
.h_fav a:hover {
	background: #F552DC;
	color: #fff;
}
.h_fav a:hover span {
	color: #fff;
}

@media screen and (max-width: 1194px) {
	.headerArea > div {
		padding: 30px 30px 10px;
	}
}
@media screen and (max-width: 1024px) {
	.h_fav a {
		width: 160px;
	}
}
@media screen and (max-width: 768px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 5;
		width: 100%;
		background: #fff;
	}
	.headerArea > div {
		padding: 10px 30px;
		align-items: center;
		height: 60px;
	}
	.h_nav {
		display: flex;
		align-items: center;
		column-gap: 30px;
		margin-bottom: 0;
	}
	.h_logo {
		margin-bottom: 0;
	}
	.h_logo img {
		width: 120px;
	}
	.h_fav {
		font-size: 1.2rem;
		margin-bottom: 0;
	}
	.h_fav a {
		height: 30px;
	}
}
@media screen and (max-width:480px){
	.h_txt {
		font-size: 1.1rem;
		height: 24px;
	}
	.headerArea > div {
		padding: 10px 20px;
		height: 50px;
	}
	.h_fav {
		font-size: 1.1rem;
	}
	.h_fav a {
		width: 120px;
	}
	.h_logo img {
		width: 100px;
	}
}


/* ==============================================

	gnav

================================================= */
#gnav > ul {
	display: flex;
	column-gap: 50px;
	font-weight: 700;
}
#gnav > ul > li > a {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
/*ホバーエフェクト*/
#gnav > ul > li > a::before {
  /*アンダーラインのスタイル*/
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background: #a48f8f;
  bottom: 15px;
  left: 0;
  /*幅を0に設定*/
  width: 0;
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#gnav > ul > li > a:hover::before {
  /*幅を100%に設定*/
  width: 100%;
}





.gnav_brand {
	position: relative;
}
.gnav_brand > a {
	pointer-events: none;
}
.gnav_dropdown {
	display: none;
	width: 300px;
	position: absolute;
	top: 60px;
	left: 0;
	z-index: 5;
	padding: 0 10px 20px;
	background: rgba(243,242,236,0.9);
}
#gnav > ul li:hover .gnav_dropdown {
	display: block;/*Gナビメニューにホバーしたら表示*/
}
.gnav_dropdown li {
	transition: all .3s;
	position: relative;
	border-bottom: 1px solid #a48f8f;
	padding: 0 10px;
	font-weight: 500;
}
.gnav_dropdown li a {
	height: 60px;
	display: flex;
	align-items: center;
	color: #000;
	text-decoration: none;
	position: relative;
}
.gnav_dropdown li:hover a {
	color: #a48f8f;
}
.gnav_dropdown li a::after {
	content: '→';
	display: block;
	position: absolute;
	right: 0;
	color: #a48f8f;
}





@media screen and (min-width: 769px) {
	#naviArea {
		display: block!important;
	}
}


@media screen and (max-width: 1024px) {
	#gnav ul {
		column-gap: 20px;
	}
}
@media screen and (max-width:768px){
	#nav_toggle{
		width: 30px;
		height: 25px;
		cursor: pointer;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 3px;
		background: #aaaaaa;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.4s ease-in-out;
		-moz-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:11px;
	}
	#nav_toggle span:nth-child(3){
		top:22px;
	}
	
	#nav_toggle.open span:nth-child(1) {
		top: 12px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	#nav_toggle.open span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	#nav_toggle.open span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	#naviArea {
		display: none;
		position: fixed;
		background: #fff;
		width: 100%;
		height: 100%;
		top: 90px;
		left: 0;
		z-index: 2;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	#gnav ul {
		display: block;
		height: 100%;
	}
	#gnav > ul > li {
		border-bottom: 1px solid #a48f8f;
		font-style: normal;
	}
	#gnav > ul > li > a {
		padding: 20px 30px;
		height: 100%;
		width: auto;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	#gnav > ul > li > a::before {
		display: none;
	}
	#gnav > ul > li > a::after {
		content: '→';
		position: relative;
		display: block;
		color: #a48f8f;
		margin-left: 10px;
	}
	.gnav_brand > a::after {
		display: none!important;
	}
	.gnav_dropdown {
		position: relative;
		top: inherit;
		background: none;
		width: 100%;
		padding: 0 30px;
		margin-bottom: 30px;
	}
	.gnav_dropdown li {
		border: none;
		padding: 0;
	}
	.gnav_dropdown li a {
		height: auto;
		padding: 10px 0;
	}
	.gnav_dropdown li a::after {
		position: relative;
		margin-left: 10px;
	}
}
@media screen and (max-width: 480px) {
	#naviArea {
		top: 74px;
	}
	.h_nav {
		column-gap: 20px;
	}
}




/* ==============================================

	mv

================================================= */
#mv {
	position: relative;
	margin-bottom: 125px;
}
.mv_txt {
	max-width: 1024px;
	margin: 0 auto;
}
.mv_txt img {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	z-index: 1;
}
.slide-wrap {
	height: auto;
	width: 100%;
}
.slide-wrap img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}
.dots-class button {
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0;
	border: none;
	background-color: transparent;
}
.dots-class {
	display: flex;
	justify-content: center;
	max-width: 490px;
	margin: 20px auto 0;
	gap: 5px;
}
.dots-class li {
	width: 24%;
	height: 5px;
	background-color: #ccc;
	cursor: pointer;
	position: relative;
}
.dots-class li::before {
	content: "";
	display: inline-block;
	background-color: #a4948f;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
}
.dots-class li.slick-active::before {
	background-color: #a4948f;
	animation: progressbar-anime 3.5s linear forwards;
}
@keyframes progressbar-anime {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

@media screen and (max-width: 1194px) {
	.mv_txt {
		padding: 0 5%;
	}
}
@media screen and (max-width:768px){
	#mv {
		margin-top: 94px;
		margin-bottom: 80px;
	}
	.slide-wrap, .slide-wrap img {
		height: auto;
	}
	.dots-class {
		max-width: inherit;
		padding: 0 18%;
	}
	.dots-class li {
		height: 3px;
	}
}
@media screen and (max-width: 480px) {
	#mv {
		margin-top: 78px;
		margin-bottom: 50px;
	}
	.mv_txt img {
		zoom: 0.55;
	}
	.dots-class {
		margin-top: 15px;
	}
}

/* ==============================================

	mv_under

================================================= */
#mv_under {
	width: 100%;
	height: 500px;
}
#mv_under img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
}
@media screen and (max-width:768px){
	#mv_under, #mv_under img {
		height: 450px;
	}
}
@media screen and (max-width:480px){
	#mv_under, #mv_under img {
		height: 390px;
	}
}


/* ==============================================

	pankuzu

================================================= */
#pankuzu {
	margin: 10px auto 18px;
}
#pankuzu ul {
	display: flex;
	font-size: 1.2rem;
}
#pankuzu ul li:not(:last-child)::after {
	content: ">";
	margin: 0 5px;
}
#pankuzu * {
	color: #6e6e6e;
}
#pankuzu ul li a:hover {
	text-decoration: underline;
}
@media screen and (max-width: 1194px) {
	#pankuzu {
		padding: 0 30px;
	}
}
@media screen and (max-width:768px){
	#pankuzu {
		margin-top: 104px;
	}
}
@media screen and (max-width: 480px) {
	#pankuzu {
		margin-top: 88px;
		padding: 0 20px;
	}
	#pankuzu ul {
		font-size: 1.0rem;
	}
}

/* ==============================================

	contents

================================================= */
.cmn_bg {
	background: #F3F2EC;
	padding: 60px 5% 35px;
	margin-top: -15px;
}

@media screen and (max-width: 896px) {
	.cmn_bg {
		margin-top: -10px;
		padding: 50px 5% 35px;
	}
}
@media screen and (max-width: 480px) {
	.cmn_bg {
		padding: 35px 5% 35px;
	}
}


/* ==============================================

	top_newArrival

================================================= */
#top_newArrival {
	margin-bottom: 100px;
}
#top_newArrival .cmn_bg {
	margin-bottom: 65px;
}
#top_newArrival .catalog_list {
	max-width: 1120px;
	margin: 0 auto;
}
#top_newArrival .catalog_list_box {
	width: calc((100% - 20px) / 5);
}
#top_newArrival .catalog_btn span {
	display: flex;
	align-items: center;
	justify-content: center;
}
#top_newArrival .catalog_btn span::before {
	content: "";
	background: url(images/icon_search.svg) center no-repeat;
	width: 22px;
	height: 22px;
	display: inline-block;
	background-size: cover;
	margin-right: 5px;
}
@media screen and (max-width: 896px) {
	#top_newArrival .catalog_list_box {
		width: calc((100% - 15px) / 4);
		margin: 0 5px;
	}
}
@media screen and (max-width: 768px) {
	#top_newArrival .catalog_list_box {
		width: calc((100% - 5px) / 2);
	}
}
@media screen and (max-width: 480px) {
	#top_newArrival {
		margin-bottom: 80px;
	}
	#top_newArrival .cmn_bg {
		margin-bottom: 40px;
	}
}


/* ==============================================

	top_recommended

================================================= */
#top_recommended {
	margin-bottom: 110px;
	padding: 0 5%;
}
#top_recommended .brand_h2_ttl {
	margin-bottom: 70px;
}
#top_recommended .catalog_list {
	max-width: 1120px;
	margin: 0 auto 50px;
}
#top_recommended .catalog_btn span {
	display: flex;
	align-items: center;
	justify-content: center;
}
#top_recommended .catalog_btn span::before {
	content: "";
	background: url(images/icon_search.svg) center no-repeat;
	width: 22px;
	height: 22px;
	display: inline-block;
	background-size: cover;
	margin-right: 5px;
}
@media screen and (max-width: 896px) {
	#top_recommended .catalog_list_box {
		width: calc((100% - 15px) / 4);
		margin: 0 5px;
	}
}
@media screen and (max-width: 768px) {
	#top_recommended .brand_h2_ttl {
		margin-bottom: 50px;
	}
	#top_recommended .catalog_list_box {
		width: calc((100% - 5px) / 2);
	}
}
@media screen and (max-width: 480px) {
	#top_recommended {
		margin-bottom: 80px;
	}
	#top_recommended .brand_h2_ttl {
		margin-bottom: 30px;
	}
	#top_recommended .catalog_list {
		margin-bottom: 40px;
	}
}


/* ==============================================

	top_column

================================================= */
#top_column {
	margin-bottom: 110px;
}
#top_column .cmn_bg {
	padding: 100px 5% 30px;
	margin-bottom: 40px;
}
.top_columnArea {
	display: flex;
	justify-content: space-between;
	column-gap: 35px;
	max-width: 1120px;
	margin: 0 auto;
}
.top_columnArea article {
	width: calc((100% - 70px) / 3);
}
.top_columnArea figure {
	margin-bottom: 22px;
}
.top_columnArea ul {
	display: flex;
	align-items: center;
	color: #494949;
	font-size: 1.2rem;
	margin-bottom: 22px;
}
.top_columnArea ul li {
	display: flex;
	align-items: center;
}
.top_columnArea ul li:not(:last-child)::after {
	content: "";
	width: 1px;
	height: 15px;
	display: inline-block;
	background: #494949;
	margin: 0 5px;
}
.top_columnArea h3 {
	font-size: 1.4rem;
	line-height: 157%;
}

.under_column .top_columnArea {
	gap: 60px 35px;
	flex-flow: row wrap;
}
@media screen and (max-width: 1194px) {
	.under_column .top_columnArea {
		max-width: inherit;
		padding: 0 30px;
	}
}
@media screen and (max-width: 896px) {
	#top_column .cmn_bg {
		padding: 50px 5% 30px;
	}
}
@media screen and (max-width: 768px) {
	.top_columnArea {
		flex-flow: column;
		gap: 40px;
	}
	.top_columnArea article {
		width: 100%;
	}
	.under_column .top_columnArea {
		gap: 45px 35px;
	}
	.under_column .top_columnArea article {
		width: calc((100% - 35px) / 2);
	}
}
@media screen and (max-width: 480px) {
	#top_column {
		margin-bottom: 80px;
	}
	#top_column .cmn_bg {
		padding: 40px 5% 30px;
	}
	.top_columnArea {
		gap: 30px;
	}
	.top_columnArea figure, .top_columnArea ul {
		margin-bottom: 12px;
	}
	.top_columnArea h3 {
		font-size: 1.3rem;
	}
	.under_column .top_columnArea article {
		width: 100%;
	}
}




/* ==============================================

	top_brands

================================================= */
#top_brands {
	margin-bottom: 160px;
}
#top_brands .brand_h2_ttl {
	margin-bottom: 45px;
}
.top_brandsArea {
	display: flex;
	flex-flow: row wrap;
	gap: 1px;
}
.top_brandsArea section a {
	display: block;
	width: 100%;
	height: 100%;
	transition: all 0.2s;
	position: relative;
}
.top_brandsArea section a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	z-index: 1;
	transition: all 0.2s;
}
.top_brandsArea section a:hover::after {
	background: none;
}
.top_brandsArea section:nth-child(-n+3) {
	width: calc((100% - 2px) / 3);
	height: 500px;
}
.top_brandsArea section:nth-child(n+4) {
	width: calc((100% - 1px) / 2);
	height: 300px;
}
.top_brandsArea picture {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
}
.top_brandsArea picture img {
	width: 100%;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
}
.top_brandsArea section:nth-child(-n+3) picture img {
	height: 500px;
}
.top_brandsArea section:nth-child(n+4) picture img {
	height: 300px;
}
.top_brandsArea section a > div {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
.top_brandsArea section:nth-child(-n+3) .top_brands_logo img {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 0;
	bottom: 0;
}
.top_brandsArea section:nth-child(-n+3) .btn_bdr {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 60px;
	margin: 0 auto;
}
.top_brandsArea section:nth-child(n+4) .btn_bdr {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	margin: 0 auto;
}
.top_brandsArea section:nth-child(4) h3 {
	margin-bottom: 60px;
}
.top_brandsArea section:nth-child(5) h3 {
	margin-bottom: 20px;
}

@media screen and (max-width: 1280px) {
	.top_brands_logo img {
		zoom: 0.8;
	}
}
@media screen and (max-width: 1024px) {
	.top_brands_logo img {
		zoom: 0.7;
	}
}
@media screen and (max-width: 896px) {
	.top_brands_logo img {
		zoom: 0.6;
	}
}
@media screen and (max-width: 768px) {
	.top_brandsArea {
		padding: 0 5%;
		flex-flow: column;
		gap: 5px;
	}
	.top_brandsArea > section {
		width: 100%!important;
		height: 200px!important;
	}
	.top_brandsArea picture img {
		height: 200px!important;
	}
	.top_brandsArea section:nth-child(+n+4) h3 {
		margin-bottom: 0;
	}
	.top_brands_logo img {
		zoom: 0.8;
	}
	#top_brands {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 480px) {
	#top_brands {
		margin-bottom: 40px;
	}
	#top_brands .brand_h2_ttl {
		margin-bottom: 30px;
	}
	.top_brandsArea {
		gap: 3px;
	}
	.top_brandsArea > section,
	.top_brandsArea picture img {
		height: 120px!important;
	}
	.top_brands_logo img {
		zoom: 0.55;
	}
}

/* ==============================================

	btn_bdr

================================================= */
.btn_bdr {
	max-width: 240px;
	margin: 0 auto;
}
.btn_bdr span {
	height: 60px;
	background: #fff;
	color: #a48f8f;
	border: 1px solid #a48f8f;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 500;
	transition: all 0.2s;
}
.top_brandsArea section a:hover .btn_bdr span {
	background: #A48F8F;
	color: #fff;
	border: none;
}

@media screen and (max-width: 896px) {
	.btn_bdr {
		max-width: 180px;
	}
}
@media screen and (max-width: 480px) {
	.btn_bdr a {
		font-size: 1.5rem;
		height: 50px;
		font-weight: 500;
	}
}

/* ==============================================

	top_bnr

================================================= */
#top_bnr {
	margin-bottom: 110px;
}
#top_bnr .dots-class {
	margin-top: 30px;
}
@media screen and (max-width: 1194px) {
	#top_bnr {
		padding: 0 5%;
	}
}
@media screen and (max-width: 480px) {
	#top_bnr {
		margin-bottom: 60px;
	}
	#top_bnr .dots-class {
		margin-top: 15px;
	}
}

/* ==============================================

	top_info

================================================= */
#top_info {
	max-width: 800px;
	margin: 0 auto;
}
#top_info .brand_h2_ttl {
	margin-bottom: 70px;
}

.top_infoArea article {
	border-bottom: 1px solid #a48f8f;
}
.top_infoArea article:first-child {
	border-top: 1px solid #a48f8f;
}
.top_infoArea article a {
	display: flex;
	column-gap: 30px;
	padding: 20px 30px;
	color: #494949;
}
.top_infoArea article a:hover {
	background: #f7f5f5;
}
.top_infoArea article div {
	display: flex;
	align-items: center;
	column-gap: 20px;
}
.top_infoArea article div time {
	letter-spacing: 0.15em;
	color: #a48f8f;
	font-weight: bold;
}
.top_infoArea article div span {
	background: #a48f8f;
	color: #fff;
	width: 120px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 400;
	border-radius: 4px;
}
.top_infoArea article h3 {
	font-weight: 500;
	font-size: 1.4rem;
}

#home #top_info {
	margin-bottom: 145px;
}
#home .top_infoArea {
	margin-bottom: 60px;
	
}

@media screen and (max-width: 896px) {
	#top_info {
		padding: 0 5%;
		max-width: inherit;
	}
	.top_infoArea article a {
		flex-flow: column;
		gap: 15px;
	}
}
@media screen and (max-width: 480px) {
	#top_info .brand_h2_ttl {
		margin-bottom: 30px;
	}
	.top_infoArea article h3 {
		font-size: 1.3rem;
	}
	.top_infoArea article a {
		padding: 15px 5px;
		gap: 12px;
	}
	#home #top_info {
		margin-bottom: 80px;
	}
	#home .top_infoArea {
		margin-bottom: 40px;
	}
}


/* ==============================================

	footer

================================================= */
footer {
	background: #F3F2EC;
	text-align: center;
	padding: 55px 0 0;
}
.f_logo {
	margin-bottom: 90px;
}
.f_menu {
	padding-bottom: 30px;
	border-bottom: 1px solid #a48f8f;
}
.f_menu ul {
	display: flex;
	justify-content: center;
	column-gap: 50px;
}
.f_sns {
	padding: 38px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 65px;
}
.f_sns * {
	color: #A48F8F!important
}
.f_sns p {
	font-weight: 400;
}
.f_sns ul {
	display: flex;
	column-gap: 30px;
}
.f_sns ul li {
	font-weight: 400;
}
.f_sns ul li a {
	display: flex;
	align-items: center;
	position: relative;
}
.f_sns ul li a:hover {
	text-decoration: underline;
}
.f_sns ul li a::before {
	content: "";
	background: #A48F8F;
	width: 24px;
	height: 24px;
	border-radius: 50vh;
	display: flex;
	margin-right: 5px;
	box-sizing: border-box;
}
.f_sns ul li a:hover::before {
	background: transparent;
	border: 1px solid #A48F8F;
}
.f_sns ul li a::after {
	width: 16px;
	height: 16px;
	position: absolute;
	left: 4px;
}
.f_sns ul li a:hover::after {
	filter: brightness(0) saturate(100%) invert(58%) sepia(5%) saturate(957%) hue-rotate(314deg) brightness(106%) contrast(68%);
}
.f_sns .icon_insta a::after {
	content: "";
	background: url("images/icon_instagram.svg") center no-repeat;
	background-size: cover;
}
.f_sns .icon_website a::after {
	content: "";
	background: url("images/icon_website.svg") center no-repeat;
	background-size: cover;
}
.f_sns ul li a span {
	flex: 1;
}

@media screen and (max-width: 1024px) {
	.f_sns {
		flex-flow: column;
		gap: 30px 0;
	}
}
@media screen and (max-width: 896px) {
	.f_sns ul {
		flex-flow: row wrap;
		text-align: left;
	}
	.f_sns ul li {
		width: calc((100% - 30px) / 2);
		border-top: 1px solid #A48F8F;
	}
	.f_sns ul li:nth-last-child(-n+2) {
		border-bottom: 1px solid #A48F8F;
	}
	.f_sns ul li a {
		padding: 10px;
	}
	.f_sns ul li a::after {
		left: 14px;
	}
}
@media screen and (max-width: 640px) {
	.f_sns ul li {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 768px) {
	footer {
		padding-top: 30px;
	}
	.f_logo {
		margin-bottom: 30px;
	}
	.f_logo img {
		width: 130px;
		height: auto;
	}
}
@media screen and (max-width: 480px) {
	.f_sns {
		padding: 30px 20px;
	}
	.f_sns ul {
		column-gap: 20px;
	}
	.f_sns ul li {
		font-size: 0.9rem;
		width: calc((100% - 20px) / 2);
	}
	.f_sns ul li a {
		padding: 10px 0;
	}
	.f_sns ul li a::before {
		width: 18px;
		height: 18px;
	}
	.f_sns ul li a::after {
		left: 4px;
		width: 10px;
		height: 10px;
	}
	.f_sns ul li a span {
		word-break: break-all;
	}
	.f_menu {
		padding-bottom: 20px;
	}
	.f_menu ul {
		column-gap: 16px;
	}
	.f_menu li {
		font-size: 1rem;
	}
}


/* ==============================================

	copyright

================================================= */
#copyright {
	background: #A48F8F;
	padding: 20px 0 10px;
	color: #fff;
	position: relative;
}
#copyright img {
	margin-bottom: 20px;
}
#copyright ul {
	position: absolute;
	bottom: 10px;
	display: flex;
	gap: 20px;
	font-size: 1.2rem;
	color: #fff;
	left: 30px;
}
#copyright ul li a:hover {
	opacity: 0.7;
	cursor: pointer;
}
#copyright p {
	letter-spacing: 0.15em;
	font-size: 1.1rem;
	font-weight: 400;
}
#copyright a {
	color: #fff;
}

@media screen and (max-width: 896px) {
	#copyright ul {
		position: relative;
		bottom: inherit;
		left: inherit;
		justify-content: center;
		border-bottom: 1px solid #fff;
		width: max-content;
		margin: 0 auto 15px;
		padding: 0 100px 15px;
	}
}
@media screen and (max-width: 768px) {
	#copyright img {
		width: 120px;
		height: auto;
	}
	#copyright p {
		font-size: 0.9rem;
		letter-spacing: 0.05rem;
	}
}
@media screen and (max-width: 496px) {
	#copyright ul {
		width: 85%;
		padding: 0 0px 15px;
	}
}

/* =======================================

	#pageTop

========================================== */
#pageTop{
	position:fixed;
	background-color:rgba(164,143,143,0.6);
	color:#fff;
	bottom:40px;
	right:30px;
	padding: 18px 14px;
	z-index: 100;}

#pageTop:hover{
	background-color:rgba(164,143,143,0.9);
}

@media screen and (max-width: 768px) {
	#pageTop {
		padding: 15px 10px;}
}

/* ==============================================

	slider

================================================= */
.slick-dotted.slick-slider {
	margin-bottom: 0!important;
}


#top_recommended .pageNavi {
	margin-top: 120px;
	text-align: center;
}

.under_recommended {
	margin-bottom: 100px;
}


/* ==============================================

	recommended_list

================================================= */
.recommended_list {
	opacity: 0;
	transition: opacity .3s linear;
}
.recommended_list.slick-initialized{
	opacity: 1;
}
.recommended_list .slick-track {
	margin: inherit!important;
}
#top_recommended .recommended_list {
	max-width: 1120px;
	margin: 0 auto 50px;
}
.recommended_list_box {
	margin: 0 15px;
}

.rec_ttl {
	font-size: 1.4rem;
	color: #7f5151;
	line-height: 130%;
	margin-top: 12px;
}
.d-none {
	display: none!important;
}
.recommended_list .slick-dots {
	position: inherit!important;
	bottom: 0;
	margin-top: 30px;
}
.recommended_list .slick-dots li {
	margin: 0!important;
}
.recommended_list .slick-dots li button:before {
	font-size: 10px!important;
	opacity: 1!important;
	color: #dcdcdc!important;
}
.recommended_list .slick-dots li.slick-active button:before {
	color: #a48f8f!important;
}
@media screen and (max-width: 480px) {
	.recommended_list_box {
		margin: 0 10px;
	}
}

/* ==============================================

	movie_list

================================================= */
#top_movie_contents {
	margin-bottom: 110px;
	padding: 0 5%;
}
#top_movie_contents .brand_h2_ttl {
	margin-bottom: 70px;
}
#top_movie_contents .catalog_btn {
	margin: 50px auto 0;
}
#under_movie_contents {
	margin-bottom: 110px;
}
#under_movie_contents .brand_h2_ttl {
	margin-bottom: 70px;
}
#under_movie_contents .catalog_btn {
	margin: 50px auto 0;
}
.movie_list {
	opacity: 0;
	transition: opacity .3s linear;
}
.movie_list.slick-initialized{
	opacity: 1;
}
.movie_list .slick-track {
	margin: inherit!important;
}
#top_movie_contents .movie_list {
	max-width: 1120px;
	margin: 0 auto 50px;
}
#under_movie_contents .movie_list {
	max-width: 1120px;
	margin: 0 auto 50px;
}
.movie_list_box {
	margin: 0 15px;
}
.movie_list_box time {
	margin-top: 12px;
	display: block;
	font-size: 1.2rem;
}

.movie_list .slick-dots {
	position: inherit!important;
	bottom: 0;
	margin-top: 30px;
}
.movie_list .slick-dots li {
	margin: 0!important;
}
.movie_list .slick-dots li button:before {
	font-size: 10px!important;
	opacity: 1!important;
	color: #dcdcdc!important;
}
.movie_list .slick-dots li.slick-active button:before {
	color: #a48f8f!important;
}
@media screen and (max-width: 480px) {
	.movie_list_box {
		margin: 0 10px;
	}
}

/* ==============================================

	top_salon

================================================= */
#top_salon {
	margin-bottom: 90px;
}
#top_salon .brand_h2_ttl {
	margin-bottom: 60px;
}
.top_salon_slide {
	opacity: 0;
	transition: opacity .3s linear;
}
.top_salon_slide.slick-initialized{
	opacity: 1;
}

.top_salon_slide {
	max-width: 1120px;
	margin: 0 auto 20px;
}
.top_salon_slide li {
	margin: 0 auto;
}
/*
#top_salon .slick-track {
	display: flex;
	align-items: center;
	justify-content: center;
}
*/
.top_salon_hr {
	height: 0;
	margin: 0 0 70px;
	padding: 0;
	border: 0;
	border-top: 1px solid #a48f8f;
}
@media screen and (max-width: 1194px) {
	.top_salon_slide {
		max-width: inherit;
		padding: 0 5%;
	}
	.top_salon_slide li {
		margin: 0 5px;
	}
}
@media screen and (max-width: 768px) {
	#top_salon .brand_h2_ttl {
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 480px) {
	#top_salon {
		margin-bottom: 80px;
	}
	#top_salon .brand_h2_ttl {
		margin-bottom: 30px;
	}
	.top_salon_hr {
		margin-bottom: 40px;
	}
}



