@charset 'utf-8';
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP|Noto+Sans+JP|Marcellus+SC&display=swap|Amiri&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	display: block;
	width: 100%;
	background-color: #FFFFFF;
	font-family: "Noto Serif JP", serif;
	font-size: 11px;
	color: #000000;
	text-align: left;
	line-height: 1.5em;
	list-style-type: none;
	margin: 0;
	padding: 0;
	clear: both;
	overflow-x: hidden;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
	animation: fadeIn 1.5s ease 0s 1 normal;
}



@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.wrapper {
	overflow: hidden;
}

a {
	text-decoration: none;
}

a:link {
	color: #000000;
}

a:visited {
	color: #000000;
}

a:active {
	color: #7F7F7F;
}

a:hover {
	color: #7F7F7F;
	transition: 0.5s;
}

body a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
	transition: 0.5s;
}

body img {
	border-style: none;
}

body a img {
	border-style: none;
}

ul,
li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/*画像アニメーション*/
.zoomOut {
	animation-name: zoomOutAnime;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

@keyframes zoomOutAnime {
	from {
		transform: scale(1.1);
		opacity: 1;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.zoomOutTrigger {
	opacity: 100;
}

.zoomIn img {
	transform: scale(1);
	transition: .2s ease-in-out;
}

.zoomIn a:hover img {
	transform: scale(1.2);
}



.scrollanime {
	opacity: 0;
}

.fadeInDown {
	animation-name: fadeInDown;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
		transform: translate(0);
	}
}

.downup {
	transform: translateY(70px);
}

.slide-right {
	transform: translateX(100px);
}

.slide-left {
	transform: translateX(-100px);
}

/*==========================================================
HEADER
==========================================================*/
header {
	display: block;
	clear: both;
	width: 100%;
	font-family: 'Marcellus SC', serif;
}

@media screen and (max-width:1279px) {
	.pc_header {
		display: none;
	}

	.sp_header {
		z-index: 20001;
		position: fixed;
		display: block;
		float: left;
		width: 100%;
		height: 70px;
		background-image: url("images/header_top_bg_pc.jpg");
		background-position: center top;
		margin: 0px;
		padding: 0px;
		clear: both;
		transition: .5s;
		border-bottom: 1px #FFFFFF solid;
	}

	/* NAVIGATION */
	#navi,
	#navi.open {
		z-index: 100;
		position: relative;
		top: 100px;
		width: 100%;
		height: 45px;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	}

	#navi.closed {
		z-index: 100;
		position: relative;
		top: 100px;
		width: 100%;
		height: 45px;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	}

	#navileft {
		width: 110px;
		float: left;
		margin: -95px 0px 0px 0px;
	}

	#navileft img {
		width: 100%;
		height: auto;
		margin: 10px 0px 0px 20px;
	}

	#navileft2 {
		float: right;
		margin: -90px 70px 0px 0px;
	}

	#navileft2 img {
		width: 21px;
		height: auto;
		margin: 15px 0px 0px 10px;
		float: left;
	}

	#naviright {
		float: right;
		height: 45px;
		margin: -100px 20px 0px 0px;
		padding: 0px 0px 0px 0px;
	}

	#rightcontrol {
		width: 26px;
		height: 70px;
		background: url('./images/navi_rightcontrol_open.png');
		background-repeat: no-repeat;
		background-position: 0px 0px;
		-webkit-transition: opacity 0.5s;
		-moz-transition: opacity 0.5s;
		-o-transition: opacity 0.5s;
		text-align: right;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 20px;
	}

	#rightcontrol.open {
		background: url('./images/navi_rightcontrol_close.png') no-repeat;
		background-position: 0px 0px;
	}

	/* PULL DOWN AREA */
	#navi_down {
		z-index: 100;
		display: none;
		/*position: fixed;*/
		position: absolute;
		top: 70px;
		width: 100%;
		background: rgba(255, 255, 255, 0.9);
		font-size: 11pt;
		font-family: 'Marcellus SC', serif;
		color: #ffffff;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	}

	.navi_link {
		*zoom: 1;
		display: inline-block;
		*display: inline;
		width: 95%;
		vertical-align: top;
		margin: 0 2.5% 20px 2.5%;
	}

	.navi_link>li {
		display: block;
		width: 100%;
		margin: 0 0 0 0;
		padding: 0px 0px 0px 0px;
		clear: right;
		text-align: center;
		border-bottom: #CCCCCC 1px solid;
	}

	.navi_link>li.nolink,
	.navi_link>li a {
		display: block;
		font-size: 16px;
		color: #000000;
		margin: 0px 0px 0px 0px;
		padding: 10px 0px 10px 0px;
		clear: both;
		text-align: center;
	}

	.navi_link>li a:hover {
		color: #7F7F7F;
	}

	.under_navi {
		width: 60%;
		display: flex;
		flex-wrap: wrap;
		clear: both;
		margin: 0 20%;
	}

	.under_navi>li {
		border-bottom: none;
		width: 50%;
	}

	.under_navi>li a {
		display: block;
		font-size: 14px;
		text-align: center;
		padding: 10px 0px;
		clear: both;
	}

	.navi_link>li:last-child {
		display: flex;
		justify-content: center;
	}

	.navi_link>li:last-child a {
		margin: 0 2px;
	}

	.bottom_btn {
		width: 100%;
		height: 60px;
		display: flex;
		clear: both;
		background-color: #6C6C6C;
		font-family: "Noto Serif JP", serif;
		padding: 10px 0;
		position: fixed;
		bottom: 0;
		z-index: 20000;
	}

	.bottom_btn a {
		width: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #FFFFFF;
		font-size: 20px;
		clear: both;
	}

	.bottom_btn a:first-child {
		border-right: #FFFFFF 1px solid;
	}

	.right_btn {
		display: none;
	}
}

@media screen and (min-width:1280px) {
	.sp_header {
		display: none;
	}

	header#pch {
		opacity: 0;
		top: -80px;
		left: 0;
		transition: .5s;
		position: absolute;
	}

	.pc_header {
		width: 100%;
		display: block;
		clear: both;
	}

	.pc_header_top {
		width: 100%;
		height: 126px;
		display: block;
		clear: both;
		background-image: url("images/header_top_bg_pc.jpg");
		background-position: center top;
		position: fixed;
		z-index: 10000;
		border-bottom: #FFFFFF 1px solid;
		box-sizing: border-box;
		transition: 0.5s;
	}

	.pc_header_top.scroll-nav {
		height: 80px;
	}

	.pc_header_top_inner {
		width: 95%;
		display: flex;
		justify-content: space-between;
		margin: 0 2.5%;

	}

	.h_logo {
		width: 223px;
		margin: 17px 0 0 4%;
		transition: 0.5s;
	}

	.h_logo.scroll-nav {
		width: 180px;
		margin: 5px 43px 0 4%;
	}

	.h_logo img {
		width: 100%;
		display: block;
	}

	.h_navi {
		width: 52%;
		color: #FFFFFF;
		font-size: 18px;
		display: flex;
		justify-content: space-between;
		margin-top: 75px;
		transition: 0.5s;
	}

	.h_navi.scroll-nav {
		margin-top: 30px;
	}

	.h_navi li {
		padding-bottom: 34px;
	}

	.h_navi li a {
		color: #FFFFFF;
	}

	.h_navi li a:hover {
		opacity: 0.5;
	}

	li.nolink {
		display: block;
		cursor: pointer;
	}

	.menuSub {
		position: absolute;
		top: 126px;
		left: 0;
		font-size: 0;
		display: none;
		width: 100%;
		background-color: #8F867E;
		z-index: 100;
		padding: 15px 0 15px 38%;
	}

	.menuSub2 {
		position: absolute;
		top: 126px;
		left: 0;
		font-size: 0;
		display: none;
		width: 100%;
		background-color: #8F867E;
		z-index: 100;
		padding: 15px 0 15px 48%;
	}

	.menuSub.scroll-nav,
	.menuSub2.scroll-nav {
		top: 80px;
	}

	.menuSub li,
	.menuSub2 li {
		display: inline-block;
		vertical-align: top;
		font-size: 13px;
		margin: 0 20px;
		padding: 0;
	}

	.menuSub li a,
	.menuSub2 li a {
		display: block;
	}

	.h_sns {
		width: 60px;
		display: flex;
		justify-content: space-between;
		clear: both;
		margin: 72px 8% 0 0;
		transition: 0.5s;
	}

	.h_sns.scroll-nav {
		margin: 25px 8% 0 0;
	}

	.pc_header_bottom {
		width: 100%;
		display: block;
		background-color: #8F867E;
		clear: both;
		padding-top: 126px;
	}




	.bottom_btn {
		display: none;
	}

	.right_btn {
		width: 51px;
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 30000;
	}

	.right_btn a {
		display: block;
		margin-bottom: 13px;
	}

}

/*==========================================================
FOOTER
==========================================================*/
/*INSTAGRAM*/
.insta_logo {
	width: 158px;
	margin: 120px auto 20px auto;
}

.insta_icon {
	width: 26px;
	margin: 0 auto 15px auto;
}

.insta_acount {
	font-size: 18px;
	font-family: 'Amiri', serif;
	text-align: center;
	margin-bottom: 60px;
}

@media screen and (max-width:699px) {
	.instagram_wrap {
		width: 100%;
		padding: 0 0 80px 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		clear: both;
	}

	.instagram_wrap li {
		width: 32%;
		margin-bottom: 30px;
	}

	.instagram_wrap li:last-child {
		display: none;
	}
}

@media screen and (min-width:700px) {
	.instagram_wrap {
		width: 100%;
		padding: 0 0 80px 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		clear: both;
	}

	.instagram_wrap li {
		width: 19%;
		margin-bottom: 30px;
	}
}

.instagram_wrap li a {
	display: block;
	position: relative;
	padding-top: 100%;
}

.instagram_wrap li img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.ofi {
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

@media screen and (max-width:579px) {
	.share_wrap {
		width: 100%;
		margin: 0 auto 30px auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		clear: both;
	}
}

@media screen and (min-width:580px) {
	.share_wrap {
		width: 540px;
		margin: 0 auto 30px auto;
		display: flex;
		justify-content: space-between;
		clear: both;
	}
}

.share_btn a {
	width: 240px;
	border: #C6C3BE 1px solid;
	display: block;
	clear: both;
	padding: 10px 0;
	text-align: center;
	margin-bottom: 25px;
}

.share_btn a img {
	margin-right: 10px;
	vertical-align: middle;
}

.share_btn a span {
	vertical-align: middle;
}

footer {
	width: 100%;
	display: block;
	clear: both;
	float: left;
	background-image: url("images/footer_bg.jpg");
	background-position: center top;
}

@media screen and (max-width:1279px) {
	footer {
		margin-bottom: 60px;
	}
}

@media screen and (max-width:999px) {
	.footer_navi {
		width: 90%;
		display: flex;
		flex-wrap: wrap;
		clear: both;
		margin: 65px 5% 100px 5%;
	}

	.footer_navi li a {
		margin: 0 5px 5px 0;
	}
}

@media screen and (min-width:1000px) {
	.footer_navi {
		width: 96%;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		clear: both;
		margin: 65px 2% 100px 2%;
	}

	.footer_navi li a {
		margin: 0 10px 5px 10px;
	}
}

.footer_navi li a {
	display: block;
	color: #FFFFFF;
	background-color: #989898;
	font-size: 12px;
	padding: 5px 20px 5px 10px;
	background-image: url("images/arrow_white_yoko.png");
	background-repeat: no-repeat;
	background-position: right 5px top 50%;
}

.footer_navi li a:hover {
	opacity: 0.5;
}

.f_wrap {
	display: flex;
	width: 90%;
	align-items: center;
	margin: 0 auto;
	margin-bottom: 40px;
}

.f_logo {
	width: 223px;
	margin: 0 auto 55px auto;
}

.f_okinawasalon .f_shop {
	width: 100%;
	clear: both;
	font-family: "Noto Sans JP", "sans-serif";
	color: #FFFFFF;
	margin-bottom: 0px;
	margin-left: 2rem;
}

.f_okinawasalon .f_logo {
	margin: 0;
}

.f_okinawasalon .f_shop li {
	margin: 0;
}

@media (max-width: 768px) {
	.f_wrap {
		display: block;
		width: 86%;
		align-items: center;
		margin: 0 auto;
		margin-bottom: 40px;
	}

	.f_okinawasalon .f_logo {
		margin: 0 auto;
	}

	.f_okinawasalon .f_shop {
		margin-top: 1.5rem;
		margin-left: 0;
	}
}

.f_heading {
	color: #ddd3c5;
	display: flex;
	align-items: center;
	font-size: 0.9rem;
	font-weight: normal;
	margin-bottom: 1.3rem;
}

.f_heading:before,
.f_heading:after {
	content: "";
	height: 0.5px;
	flex-grow: 1;
	background-color: #ddd3c5;
}

.f_heading:before {
	margin-right: 1rem;
}

.f_heading:after {
	margin-left: 1rem;
}

@media screen and (max-width:989px) {
	.f_shop {
		width: 100%;
		display: block;
		clear: both;
		font-family: "Noto Sans JP", "sans-serif";
		color: #FFFFFF;
		margin-bottom: 70px;
	}

	.f_shop li {
		width: 90%;
		margin: 0 5% 35px 5%;
	}
}

@media screen and (min-width:990px) and (max-width:1279px) {
	.f_shop {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		clear: both;
		font-family: "Noto Sans JP", "sans-serif";
		color: #FFFFFF;
		margin-bottom: 40px;
	}

	.f_shop li {
		margin: 0 95px 35px 0;
	}

	.f_shop li:nth-of-type(2n) {
		margin: 0 0 35px 0;
	}
}

@media screen and (min-width:1280px) and (max-width:1449px) {
	.f_shop {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		clear: both;
		font-family: "Noto Sans JP", "sans-serif";
		color: #FFFFFF;
		margin-bottom: 40px;
	}

	.f_shop li {
		margin: 0 50px 35px 0;
	}
}

@media screen and (min-width:1450px) {
	.f_shop {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		clear: both;
		font-family: "Noto Sans JP", "sans-serif";
		color: #FFFFFF;
		margin-bottom: 40px;
	}

	.f_shop li {
		margin: 0 90px 35px 0;
	}

	.f_shop li:nth-of-type(3n) {
		margin: 0 0 35px 0;
	}
}

.f_shop_top {
	display: flex;
	align-items: center;
	clear: both;
	margin-bottom: 5px;
}

.f_shop_top span {
	min-width: 100px;
	display: inline-block;
	padding: 1px 10px 3px 10px;
	background-color: #6C6C6C;
	color: #FFFFFF;
	font-size: 12px;
	text-align: center;
	margin-right: 10px;
}

.f_shop_top a {
	font-size: 16px;
	color: #FFFFFF;
}

.f_shop_add {
	font-size: 12px;
}

.footer_navi2 {
	width: 100%;
	display: flex;
	justify-content: center;
	clear: both;
	color: #FFFFFF;
	margin-bottom: 30px;
}

.footer_navi2 li a {
	color: #FFFFFF;
	font-family: 'Marcellus SC', serif;
	font-size: 17px;
}

.copyright {
	color: #FFFFFF;
	font-size: 14px;
	text-align: center;
	margin-bottom: 20px;
}

@media screen and (max-width:499px) {
	.copyright {
		font-size: 12px;
	}
}

/*==========================================================
COMMON
==========================================================*/
main {
	display: block;
	clear: both;
	width: 100%;
	overflow: hidden;
}

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

	.contents1730 {
		width: 96%;
		margin: 0 2% 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.contents1560 {
		width: 96%;
		margin: 0 2% 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.contents1500 {
		width: 96%;
		margin: 0 2% 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.contents1400 {
		width: 96%;
		margin: 0 2% 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.contents1200 {
		width: 96%;
		margin: 0 2% 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}

}

@media screen and (min-width:500px) and (max-width:1279px) {
	br.pc {
		display: none;
	}

	.contents1730 {
		width: 96%;
		margin: 0 2% 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.contents1560 {
		width: 96%;
		margin: 0 2% 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.contents1500 {
		width: 96%;
		margin: 0 2% 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.contents1400 {
		width: 96%;
		margin: 0 2% 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.contents1200 {
		width: 96%;
		margin: 0 2% 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}

}

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

	.max_con1730 {
		max-width: 1770px;
		margin: 0 auto;
		padding: 0 20px;
		display: block;
		clear: both;
	}

	.contents1730 {
		width: 100%;
		max-width: 1730px;
		margin: 0 auto 0 auto;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.max_con1560 {
		max-width: 1600px;
		margin: 0 auto;
		padding: 0 20px;
		display: block;
		clear: both;
	}

	.contents1560 {
		width: 100%;
		max-width: 1560px;
		margin: 0 auto 0 auto;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.max_con1500 {
		max-width: 1540px;
		margin: 0 auto;
		padding: 0 20px;
		display: block;
		clear: both;
	}

	.contents1500 {
		width: 100%;
		max-width: 1500px;
		margin: 0 auto 0 auto;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.max_con1400 {
		max-width: 1440px;
		margin: 0 auto;
		padding: 0 20px;
		display: block;
		clear: both;
	}

	.contents1400 {
		width: 100%;
		max-width: 1400px;
		margin: 0 auto 0 auto;
		display: block;
		clear: both;
		overflow: hidden;
	}

	.contents1200 {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto 0 auto;
		display: block;
		clear: both;
		overflow: hidden;
	}

}

.pagetop_wrap {
	width: 100%;
	display: flex;
	clear: both;
}

.pagetop_concept_wrap {
	width: 100%;
	display: block;
	clear: both;
	background-color: #8f867e;
}


@media screen and (max-width:899px) {
	.pagetop_brown100 {
		width: 100%;
		height: 50px;
		display: block;
		clear: both;
		background-color: #8F867E;
		position: relative;
		margin-top: 70px;
	}

	.pagetop_brown {
		width: 100%;
		height: 50px;
		display: block;
		clear: both;
		background-color: #8F867E;
	}

	.pagetop_white {
		width: 100%;
		display: block;
		clear: both;
	}

	.contents_wrap {
		width: 70%;
		display: block;
		clear: both;
	}

	.contents_wrap.white {
		position: relative;
	}

	.contents_txt {
		width: 139%;
		margin: 0 2% 0 2%;
	}

	.page_right {
		width: 30%;
	}

	.pagetitle {
		width: 100%;
		display: block;
		clear: both;
		color: #FFFFFF;
		background-color: #8F867E;
		padding-bottom: 10px;
	}

	.pagetitle_en {
		width: 280px;
		margin-right: calc(100% - 280px);
		margin-left: 8%;
		font-family: 'Amiri', serif;
		font-size: 25px;
		line-height: 0.9em;
		margin-bottom: 15px;
		padding-top: 20px;
	}

	.pagetitle_ja {
		font-size: 10px;
		margin-right: calc(100% - 280px);
		margin-left: 8%;
	}

	.bg_mainimg {
		background-position: center top 50px;
	}
}

@media screen and (min-width:900px) and (max-width:1279px) {
	.pagetop_brown100 {
		width: 100%;
		height: 50px;
		display: block;
		clear: both;
		background-color: #8F867E;
		position: relative;
		margin-top: 70px;
	}

	.pagetop_brown {
		width: 100%;
		height: 85px;
		display: block;
		clear: both;
		background-color: #8F867E;
	}

	.pagetop_white {
		width: 100%;
		display: block;
		clear: both;
	}

	.contents_wrap {
		width: 77%;
		display: block;
		clear: both;
	}

	.contents_wrap.white {
		position: relative;
		top: -40px;
	}

	.contents_txt {
		width: 90%;
		margin: 0 5% 0 5%;
	}

	.page_right {
		width: 23%;
	}

	.pagetitle {
		width: 100%;
		display: block;
		clear: both;
		color: #FFFFFF;
		background-color: #8F867E;
		padding-bottom: 50px;
	}

	.pagetitle_en {
		width: 280px;
		margin-right: calc(100% - 280px);
		margin-left: 15%;
		font-family: 'Amiri', serif;
		font-size: 40px;
		line-height: 0.9em;
		margin-bottom: 15px;
		padding-top: 20px;
	}

	.pagetitle_ja {
		font-size: 13px;
		margin-right: calc(100% - 280px);
		margin-left: 15%;
	}

	.bg_mainimg {
		background-position: center top 85px;
	}
}

@media screen and (min-width:1280px) {
	.pagetop_brown100 {
		width: 100%;
		height: 80px;
		display: block;
		clear: both;
		background-color: #8F867E;
		position: relative;
	}

	.pagetop_brown {
		width: 100%;
		height: 85px;
		display: block;
		clear: both;
		background-color: #8F867E;
	}

	.pagetop_white {
		width: 100%;
		display: block;
		clear: both;
	}

	.contents_wrap {
		width: 77%;
		display: block;
		clear: both;
	}

	.contents_wrap.white {
		position: relative;
		top: -40px;
	}

	.contents_txt {
		width: 90%;
		margin: 0 5% 0 5%;
	}

	.page_right {
		width: 23%;
	}

	.pagetitle {
		width: 100%;
		display: block;
		clear: both;
		color: #FFFFFF;
		background-color: #8F867E;
		padding-bottom: 50px;
	}

	.pagetitle.pttl2 {
		padding-bottom: 85px;
	}

	.pagetitle_en {
		width: 280px;
		margin-right: calc(100% - 280px);
		margin-left: 15%;
		font-family: 'Amiri', serif;
		font-size: 49px;
		line-height: 0.9em;
		margin-bottom: 15px;
	}

	.pagetitle_ja {
		font-size: 13px;
		margin-right: calc(100% - 280px);
		margin-left: 15%;
	}

	.bg_mainimg {
		background-position: center top 85px;
	}
}

.breadcrumbs {
	width: 93%;
	display: block;
	clear: both;
	font-size: 11px;
	font-family: "Noto Sans JP", "sans-serif";
	margin: 0 3.5% 0 3.5%;
	padding-top: 15px;
}

.breadcrumbs span {
	display: inline-block;
}

.breadcrumbs.white span,
.breadcrumbs.white span a {
	color: #FFFFFF;
}

.breadcrumbs.black span,
.breadcrumbs.black span a {
	color: #000000;
}

.breadcrumbs.white span a:hover,
.breadcrumbs.black span a:hover {
	opacity: 0.5;
}

span.breadcrumbs_arrow {
	margin: 0 14px;
}

.page_mainimg {
	margin-bottom: 20px;
}

.page_mainimg img {
	width: 100%;
}

.bg_mainimg {
	width: 100%;
	display: block;
	clear: both;
	float: left;
	background-repeat: no-repeat;
	background-size: contain;
}

.bg_mainimg#company {
	background-image: url("images/company_topimg.jpg");
	height: 41.5vw;
	margin-bottom: 50px;
}

.bg_mainimg#shop {
	background-image: url("images/shop_topimg.jpg");
	height: 41.5vw;
}

.bg_mainimg#recruit {
	background-image: url("images/recruit_topimg.jpg");
	height: 41.5vw;
	margin-bottom: 50px;
}

.bg_mainimg#esthetic {
	background-image: url("images/esthetic_topimg.jpg");
	height: 41.5vw;
	margin-bottom: 50px;
}








.mt100 {
	margin-top: 100px;
}




















/* ========================================================================================= ■■■ */
/*   ページャー  */
/* ========================================================================================= ■■■ */
.pager {
	clear: both;
	width: 100%;
	padding: 20px 0px 30px 0px;
	margin: 60px auto 0px auto;
	text-align: center;
	float: right;
}

a.page-numbers,
.pager .current {
	background-color: #edede3;
	border: solid 1px #aaaaaa;
	border-radius: 5px;
	padding: 5px 8px;
	margin: 0 2px;
}

.pager .current {
	background-color: #F7DDB0;
	border: solid 1px #F7DDB0;
	color: #ffffff;
}

.pager a:hover {
	color: #ffffff;
	border: solid 1px #F7DDB0;
	background-color: #F7DDB0;
}

img.alignright {
	display: block;
	margin: 0 0 0 auto;
}

/* 配置位置 右 */
img.alignleft {
	display: block;
	margin: 0 auto 0 0;
}

/* 配置位置 左 */
img.aligncenter {
	display: block;
	margin: 0 auto;
}

/* 配置位置 中央 */
.fixed {
	position: fixed;
	top: 0;
	width: 200px;
}