@charset "utf-8";

/*_______________________________
SP
_______________________________*/
/* 共通 */
body {
  font-size: 12px;
  color: #333;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  width: 100%;
  font-weight: 400;
}

.pc_only {
  display: none !important;
}

main {
  padding-top: 50px;
  background: #fff;
}

main img {
  width: 100%;
  vertical-align: bottom;
}

a {
  color: #000;
  text-decoration: none;
}

/*     header
____________________*/
header {
  top: 0;
  left: 0;
  box-sizing: border-box;
  height: 50px;
  padding: 0 5px;
  display: flex;
  width: 100%;
  position: fixed;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 16px -2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 16px -2px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 0px 16px -2px rgba(0, 0, 0, 0.07);
}

header .logo {
  margin: 0 5px;
}

header .logo img {
  height: 100%;
  padding: 5px 0;
  box-sizing: border-box;
}

header .small_text {
  position: absolute;
  font-size: 10px;
  color: #b79f7c;
  left: 0;
  right: 0;
  bottom: 0 !important;
  text-align: center;
  background: none !important;
  line-height: 1;
}

header nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* header unisex
____________________*/
header.unisex {}

header.unisex .tel_toggle {}

header.unisex .home_nav {
  display: flex;
}

header.unisex .home_nav a {
  display: block;
  height: 40px;
  width: 40px;
  position: relative;
  z-index: 11;
}

header.unisex .home_nav a.ladys {
  color: #d9aeae;
}

header.unisex .home_nav a.ladys span,
header.unisex .home_nav a.felicia span {
  /* letter-spacing: -0.05em; */
}

header.unisex .home_nav a.felicia {
  color: #b79f7c;
}

header.unisex .home_nav a.mens {
  color: #8098b6;
}

header.unisex .home_nav a p {
  position: absolute;
  font-size: 10px;
  left: 0;
  right: 0;
  bottom: 0 !important;
  text-align: center;
  background: none !important;
  line-height: 1;
  white-space: nowrap;
}

header.unisex .home_nav a:before {
  content: "";
  top: 3px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  text-align: center;
  position: absolute;
  vertical-align: middle;
}

header.unisex .home_nav a.ladys:before {
  background: url("/common/img/icon_ladys_pk.png") no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

header.unisex .home_nav a.felicia:before {
  background: url("/common/img/icon_felicia.png") no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

header.unisex .home_nav a.mens:before {
  background: url("/common/img/icon_mens_suit_bl.png") no-repeat;
  background-size: contain;
  background-position: center;
  width: 22px;
  height: 22px;
}

header.unisex .home_nav a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 5px 5px;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}

header.unisex .home_nav a.ladys:after {
  border-color: transparent transparent #d9aeae transparent;
  right: 3px;
}

header.unisex .home_nav a.felicia:after {
  border-color: transparent transparent #b79f7c transparent;
  right: 3px;
}

header.unisex .home_nav a.mens:after {
  border-color: transparent transparent #8098b6 transparent;
  right: 3px;
}

/*ハンバーガーメニュー*/
/*開閉ボタン*/
.nav_toggle {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 100;
  box-sizing: border-box;
  overflow: hidden;
}

.nav_toggle div {
  position: relative;
}

.nav_toggle span {
  display: block;
  height: 2px;
  background: #b79f7c;
  position: absolute;
  width: 22px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.nav_toggle span:nth-child(1) {
  top: 7px;
}

.nav_toggle span:nth-child(2) {
  top: 14px;
}

.nav_toggle span:nth-child(3) {
  top: 21px;
}

.nav_toggle p:after {
  content: "MENU";
  font-size: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*開閉ボタンopen時*/
.open_nav .nav_toggle span:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.open_nav .nav_toggle span:nth-child(2) {
  opacity: 0;
}

.open_nav .nav_toggle span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.open_nav .nav_toggle p:after {
  content: "CLOSE";
  font-size: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*メニュー内　とじるボタン*/
.nav_toggle.bottom {
  position: static;
  margin: 10px auto;
  display: block;
  transform: translate(0, 0);
  width: 100%;
}

.nav_toggle.bottom span:nth-child(1),
.open_nav .nav_toggle.bottom span:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav_toggle.bottom span:nth-child(2),
.open_nav .nav_toggle.bottom span:nth-child(2) {
  opacity: 0;
}

.nav_toggle.bottom span:nth-child(3),
.open_nav .nav_toggle.bottom span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav_toggle.bottom p:after {
  content: "CLOSE";
  font-size: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*メニュー中身*/
.hamburger_nav {
  display: none;
  position: absolute;
  top: 50px;
  width: 100%;
  height: calc(100vh - 50px);
  background: rgba(183, 159, 124, 0.6);
  left: 0;
  padding: 10px;
  box-sizing: border-box;
}

.hamburger_nav .inner {
  background: #fff;
  width: 100%;
  height: 100%;
  margin: auto;
  box-sizing: border-box;
  overflow-y: auto;
  position: relative;
}

.hamburger_nav .inner::-webkit-scrollbar {
  width: 6px;
}

.hamburger_nav .inner::-webkit-scrollbar-thumb {
  background: #b79f7c;
  box-shadow: none;
  border-radius: 3px;
}

.hamburger_nav .inner::-webkit-scrollbar-track {
  background: #f2f2f2;
  border: none;
  box-shadow: inset 0 0 2px #fff;
}

.hamburger_nav h2 {
  font-size: 14px;
  background: #f2f2f2;
  color: #b79f7c;
  padding: 0 10px;
  box-sizing: border-box;
  line-height: 25px;
}

.hamburger_nav .campaign_list {
  padding: 5px 0;
}

.hamburger_nav .campaign_list li {
  width: 100%;
  box-sizing: border-box;
  /*border-bottom: 1px solid #f2f2f2;*/
  overflow: hidden;
  background-image: none !important;
}

.hamburger_nav .campaign_list li:last-of-type {
  border-bottom: 0;
}

.hamburger_nav .campaign_list li a {
  display: block;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 40px;
}

.hamburger_nav .campaign_list li a span {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  margin: auto;
  left: 50px;
  display: block;
  font-size: 12px;
  line-height: 1.2;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
  color: #b79f7c;
}

.hamburger_nav .campaign_list li a:before {
  content: "";
  width: 30px;
  height: 30px;
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  padding: 5px;
  margin: auto;
  box-sizing: border-box;
}

.hamburger_nav .campaign_list li.body a:before {
  background-image: url("/common/img/icon_body.png");
  background-color: #c7ba8d;
}

.hamburger_nav .campaign_list li.face a:before {
  background-image: url("/common/img/icon_face.png");
  background-color: #94c7b4;
}

.hamburger_nav .campaign_list li.removal a:before {
  background-image: url("/common/img/icon_removal.png");
  background-color: #88b7c5;
}

.hamburger_nav .campaign_list li.bridal a:before {
  background-image: url("/common/img/icon_bridal.png");
  background-color: #cfa7b0;
}

.hamburger_nav .campaign_list li.waist a:before {
  background-image: url("/common/img/icon_waist.png");
  background-color: #c7ba8d;
}

.hamburger_nav .campaign_list li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 7px 7px;
  border-color: transparent transparent #b79f7c transparent;
  position: absolute;
  right: 10px;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.hamburger_nav ul.safe-system_list {
  margin-bottom: 10px;
}

.hamburger_nav .safe-system_list li a {
  box-sizing: border-box;
  float: left;
  width: calc(100% / 3);
  text-align: center;
  display: block;
  font-size: 10px;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
  color: #b79f7c;
  padding-top: 10px;
}

.hamburger_nav .safe-system_list li a:before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  display: block;
  margin-bottom: 5px;
}

.hamburger_nav .safe-system_list li:nth-of-type(1) a:before {
  background: url(/common/img/icon_01.png) no-repeat;
  background-size: contain;
}

.hamburger_nav .safe-system_list li:nth-of-type(2) a:before {
  background: url(/common/img/icon_02.png) no-repeat;
  background-size: contain;
}

.hamburger_nav .safe-system_list li:nth-of-type(3) a:before {
  background: url(/common/img/icon_03.png) no-repeat;
  background-size: contain;
}

.hamburger_nav .safe-system_list li:nth-of-type(4) a:before {
  background: url(/common/img/icon_04.png) no-repeat;
  background-size: contain;
}

.hamburger_nav .safe-system_list li:nth-of-type(5) a:before {
  background: url(/common/img/icon_05.png) no-repeat;
  background-size: contain;
}

.hamburger_nav .safe-system_list li:nth-of-type(6) a:before {
  background: url(/common/img/icon_06.png) no-repeat;
  background-size: contain;
}

.hamburger_nav .safe-system_list li:nth-of-type(7) a:before {
  background: url(/common/img/icon_07.png) no-repeat;
  background-size: contain;
}

.hamburger_nav .safe-system_list li:nth-of-type(8) a:before {
  background: url(/common/img/icon_08.png) no-repeat;
  background-size: contain;
}

.hamburger_nav .course {
  margin-bottom: 10px;
}

.hamburger_nav .course_list li a {
  box-sizing: border-box;
  float: left;
  width: calc(100% /3);
  text-align: center;
  display: block;
  font-size: 10px;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
  color: #b79f7c;
  padding-top: 10px;
}

.hamburger_nav .course_list li a:before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  display: block;
  margin-bottom: 5px;
}

.hamburger_nav .course_list li.body a:before {
  background: url(/common/img/icon_body.png) no-repeat #b79f7c;
  background-size: 80%;
  background-position: center;
}

.hamburger_nav .course_list li.face a:before {
  background: url(/common/img/icon_face.png) no-repeat #b79f7c;
  background-size: 80%;
  background-position: center;
}

.hamburger_nav .other {
  box-sizing: border-box;
  padding: 10px 0;
  background: #ede7dd;
}

.hamburger_nav .other li a {
  box-sizing: border-box;
  float: left;
  width: calc(100% / 5);
  text-align: center;
  display: block;
  font-size: 10px;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
  color: #b79f7c;
  line-height: 1;
}

.hamburger_nav .other li a:before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  color: #b79f7c;
}

.hamburger_nav .other li.salon a:before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 24px;
}

.hamburger_nav .other li.news a:before {
  content: "\f05a";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 24px;
}

.hamburger_nav .other li.felicia a:before {
  background: url(/common/img/icon_felicia.png) no-repeat;
  background-position: center;
  background-size: contain;
}

.hamburger_nav .other li.mens a:before {
  background: url(/common/img/icon_mens_suit.png) no-repeat;
  background-position: center;
  background-size: contain;
}

.hamburger_nav .other li.webshop a:before {
  content: "\f108";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 23px;
}

.hamburger_nav .other li.mens a span {
  font-family: 'Share Tech Mono', monospace;
}

/*電話アイコン*/
.tel_toggle {
  display: block;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  font-size: 30px;
  color: #b79f7c;
}

.tel_toggle i {
  display: block;
  transform: scale(0.7);
  text-align: center;
}

.tel_toggle:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 5px 5px;
  border-color: transparent transparent #b79f7c transparent;
  position: absolute;
  right: 5px;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(45deg);
}

.open_tel .tel_toggle:after {
  transform: rotate(-135deg);
  bottom: -7px;
}

/*電話メニュー中身*/
.tel {
  display: none;
  position: absolute;
  top: 50px;
  width: 100%;
  right: 0;
  background: rgb(242, 242, 242);
  z-index: 50;
  padding: 20px 10px;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  box-shadow: 0px 0px 16px -2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 16px -2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 0px 16px -2px rgba(0, 0, 0, 0.05);
}

.tel li {
  max-width: 260px;
  margin: 0 auto;
}

.tel li:first-of-type {
  margin-bottom: 10px;
}

.tel li p {
  font-size: 14px;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
}

.tel li a {
  display: block;
  font-size: 20px;
  background: #fff;
  padding: 5px 25px;
  border: 1px solid #b79f7c;
  position: relative;
}

.tel li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 7px 7px;
  border-color: transparent transparent #b79f7c transparent;
  position: absolute;
  right: 10px;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.tel li a span {
  color: #b79f7c;
  font-size: 30px;
  vertical-align: sub;
  margin-right: 10px;
}

.tel li small {
  font-size: 10px;
}

/*サロン一覧 ボタン*/
.salon_btn {
  display: block;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  font-size: 30px;
  color: #b79f7c;
}

.salon_btn i {
  display: block;
  text-align: center;
  transform: scale(0.7);
}

.salon_btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 5px 5px;
  border-color: transparent transparent #b79f7c transparent;
  position: absolute;
  right: 5px;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}

/*グローバルメニュー*/
.g_nav {
  display: none;
  align-items: center;
}

/*予約ボタン*/
.contact_btn {
  border: 1px solid #b79f7c;
  width: 60px;
  height: 40px;
  padding: 0 5px;
  box-sizing: border-box;
  font-size: 13px;
  color: #b79f7c;
  position: relative;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
  display: flex;
  align-items: center;
}

.contact_btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 5px 5px;
  border-color: transparent transparent #b79f7c transparent;
  position: absolute;
  right: 5px;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}

/*ラ・パルレ フェリシア ボタン*/
.felicia_btn {
  display: none;
}

/*メンズ　ラ・パルレボタン*/
.mens_btn {
  display: block;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  font-size: 30px;
  color: #b79f7c;
}

.mens_btn:before {
  content: "";
  top: 4px;
  left: 0;
  right: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  display: block;
  text-align: center;
  position: absolute;
  vertical-align: middle;
  background: url(/common/img/icon_mens_suit.png) no-repeat;
  background-size: contain;
  background-position: center;
}

::before {}

.mens_btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 5px 5px;
  border-color: transparent transparent #b79f7c transparent;
  position: absolute;
  right: 3px;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}

/*  breadcrumb
____________________*/
.breadcrumbs {
  line-height: 40px;
  padding: 0 10px;
}

.breadcrumbs li {
  float: left;
  color: #999;
}

.breadcrumbs a {
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
  color: #999;
}

.breadcrumbs a:after {
  content: '';
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  width: 7px;
  height: 7px;
  display: block;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}

/*    aside_area
____________________*/
.aside_area .section01 {
  padding: 20px 10px;
  background-color: #f2f2f2;
  background-image: linear-gradient(-45deg, #f8f8f8 25%, #ededed 25%, #ededed 50%, #f8f8f8 50%, #f8f8f8 75%, #ededed 75%, #ededed);
  background-size: 6px 6px;
}

.aside_area .section01 .aside_nav {
  margin: 0 auto;
  display: flex;
}

.aside_area .section01 .aside_nav li {
  float: left;
  max-width: calc(100% / 3);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.aside_area .section01 .aside_nav li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding-top: 100%;
  background: #fff;
  border-radius: 50%;
}

.aside_area .section01 .aside_nav li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 7px 7px;
  border-color: transparent transparent #b79f7c transparent;
  position: absolute;
  right: 10px;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.aside_area .section01 .aside_nav li span i.aesthetic::before {
  content: "";
  width: 36px;
  height: 30px;
  background-image: url(/common/img/icon_aesthetic.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin: auto;
}

.aside_area .section01 .aside_nav li:nth-of-type(2) {
  margin: 0 10px;
}

.aside_area .section01 .aside_nav li span {
  color: #b79f7c;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  margin: auto;
  font-size: 10px;
  line-height: 1.2;
}

.aside_area .section01 .aside_nav li span i {
  font-size: 30px;
  margin: 0 auto 5px;
  display: block;
  text-align: center;
}

.aside_area .section01 .aside_nav li p {
  display: none;
}

.aside_area .section02 .aside_nav {
  margin: 0 auto;
}

.aside_area .section02 .aside_nav li {
  border: 1px solid #b79f7c;
  box-sizing: border-box;
  background: #fff;
  border-left: none;
  border-right: none;
  position: relative;
}

.aside_area .section02 li:nth-of-type(1) {
  width: 100%;
  border-bottom: none;
  background-image: linear-gradient(90deg, #fff 30%, rgba(255, 255, 255, 0.4)), url(../img/bottom_ban01_2_ver00.jpg);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: top right;
}

.aside_area .section02 li:nth-of-type(2) {
  margin-left: 0;
  margin-right: 0;
  width: 50%;
  float: left;
}

.aside_area .section02 li:nth-of-type(3) {
  margin-left: 0;
  margin-right: 0;
  width: 50%;
  float: right;
}

.aside_area .section02 li:nth-of-type(1) img {
  width: 50%;
  display: block;
}

.aside_area .section02 li:nth-of-type(3):before {
  content: "";
  width: 1px;
  height: 100%;
  background: #b79f7c;
  position: absolute;
  left: 0;
  z-index: 1;
}

.aside_area .section02 .aside_nav li a {
  display: block;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.aside_area .section02 .aside_nav li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #b79f7c transparent;
  position: absolute;
  right: 0;
  bottom: 0;
}

.aside_area .section02 .aside_nav li p {
  display: none;
}

/*     footer
____________________*/
footer {
  background: #fff;
  margin-top: 30px;
  overflow: hidden;
}

footer .contact {
  padding: 20px 10px;
  background: #efefef;
}

footer .contact h2 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
}

footer .contact_tel ul {
  background: #fff;
  padding: 20px 10px;
}

footer .contact_tel li {
  /*width: 90%;*/
  max-width: 260px;
  text-align: left;
  margin: 0 auto 10px;
}

footer .contact_tel li:last-of-type {
  margin-bottom: 0;
}

footer .contact_tel h3 {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 5px;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
}

footer .contact_tel p {
  font-size: 12px;
  margin: 5px 0 20px;
}

footer .contact_tel a {
  font-size: 20px;
  display: block;
  line-height: 1;
  border: 1px solid #b79f7c;
  padding: 5px 25px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  background: #fff;
}

footer .contact_tel a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 7px 7px;
  border-color: transparent transparent #b79f7c transparent;
  position: absolute;
  right: 10px;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}

footer .icon-freedial {
  margin-right: 10px;
  color: #b79f7c;
  font-size: 30px;
  display: inline-block;
  vertical-align: sub;
}

footer .ccontact_tel small {
  font-size: 11px;
}

footer .contact_form {
  margin-bottom: 20px;
}

footer .contact_form li a {
  font-size: 15px;
  display: block;
  position: relative;
  padding: 12px;
  background: #b79f7c;
  color: #fff;
  box-sizing: border-box;
  /*width: calc(90% - 20px);*/
  max-width: 260px;
  margin: 0px auto 10px;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
  text-align: center;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.16);
}

footer .contact_form li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 7px 7px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  right: 10px;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}

footer .contact_form li:last-of-type a {
  margin-bottom: 0;
}

footer .annotation li {
  text-align: left;
  font-size: 11px;
  margin-bottom: 5px;
  position: relative;
  padding-left: 10px;
}

footer .annotation li:last-of-type {
  margin-bottom: 0;
}

footer .annotation li:before {
  content: "";
  position: absolute;
  background: #333;
  border-radius: 50%;
  width: 2px;
  height: 2px;
  display: block;
  left: 0;
  top: 7px;
  margin: auto;
}

footer .participating {
  padding: 10px 0;
  background: #fff;
}

footer .participating li {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  font-size: 10px;
  padding: 0 10px;
}

footer .participating li div {
  height: 40px;
  position: relative;
  margin-bottom: 5px;
}

footer .participating li img {
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

footer .participating .jtba {
  float: left;
}

footer .participating .anea {
  float: right;
  border-left: 1px solid #ccc;
}

footer .participating .jtba img {
  height: 65%
}

footer .participating .anea img {
  height: 90%
}

footer .sitemap {
  background: #fff;
}

footer .sitemap h3 {
  font-size: 14px;
  padding: 0 10px;
  line-height: 40px;
  border-bottom: 1px solid #ede7dd;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
  color: #666;
}

footer .sitemap h3.accordion {
  position: relative;
  background: #dad2c6;
}

footer .sitemap h3.accordion:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #fff;
  right: 11px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(0deg);
  transition: 0.5s;
}

footer .sitemap h3.accordion:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #fff;
  border: none;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-540deg);
  transition: 0.5s;
}

footer .sitemap h3.accordion.open:before {
  transform: rotate(540deg);
  transition: 0.5s;
}

footer .sitemap h3.accordion.open:after {
  transform: rotate(90deg);
  transition: 0.5s;
}

footer .sitemap h3.accordion+ul,
footer .sitemap h3.accordion+dl {
  display: none;
  background: #e8e8e8;
  border-bottom: 1px solid #e2ded9;
}

footer .sitemap h3:not(.accordion) {
  display: none;
}

footer .sitemap h3.accordion+dl dt {
  display: none;
}

footer .sitemap h3.accordion+ul li>a {
  line-height: 40px;
  font-size: 12px;
  border-bottom: 1px solid #e2ded9;
}

footer .sitemap h3.accordion+ul li:last-of-type a,
footer .sitemap h3.accordion+dl dd:last-child li:last-of-type a {
  border-bottom: none;
}

footer .sitemap a {
  position: relative;
  display: block;
  padding: 0 10px 0 40px;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
  box-sizing: border-box;
  color: #666;
}

footer .sitemap a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 7px 7px;
  border-color: transparent transparent #b79f7c transparent;
  position: absolute;
  right: 10px;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}

footer .sitemap li a:before {
  content: "";
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  color: #b79f7c;
  width: 20px;
  height: 20px;
  display: block;
  text-align: center;
  position: absolute;
  vertical-align: middle;
}

footer .sitemap .campaign a {
  position: relative;
  font-size: 12px;
  line-height: 40px;
  border-bottom: 1px solid #e2ded9;
}

footer .sitemap .campaign .body li:nth-of-type(2) a {
  padding: 7px 10px 7px 40px;
  line-height: 1.2;
  box-sizing: border-box;
}

footer .sitemap .campaign .body a:before {
  background: url(/common/img/icon_body.png) no-repeat #c7ba8d;
  background-size: 90%;
  background-position: center;
}

footer .sitemap .campaign .face a:before {
  background: url(/common/img/icon_face.png) no-repeat #94c7b4;
  background-size: 90%;
  background-position: center;
}

footer .sitemap .campaign .removal a:before {
  background: url("/common/img/icon_removal.png") no-repeat #88b7c5;
  background-size: 90%;
  background-position: center;
}

footer .sitemap .campaign .bridal a:before {
  background: url("/common/img/icon_bridal.png") no-repeat #cfa7b0;
  background-size: 90%;
  background-position: center;
}

footer .sitemap .campaign .waist a:before {
  background: url(/common/img/icon_waist.png) no-repeat #c7ba8d;
  background-size: 90%;
  background-position: center;
}

footer .sitemap .course .body a:before {
  background: url(/common/img/icon_body.png) no-repeat #b79f7c;
  background-size: 90%;
  background-position: center;
}

footer .sitemap .course .face a:before {
  background: url("/common/img/icon_face.png") no-repeat #b79f7c;
  background-size: 90%;
  background-position: center;
}

footer .sitemap .safe-system li:nth-of-type(1) a:before {
  background: url(/common/img/icon_01.png) no-repeat;
  background-size: contain;
}

footer .sitemap .safe-system li:nth-of-type(2) a:before {
  background: url(/common/img/icon_02.png) no-repeat;
  background-size: contain;
}

footer .sitemap .safe-system li:nth-of-type(3) a:before {
  background: url(/common/img/icon_03.png) no-repeat;
  background-size: contain;
}

footer .sitemap .safe-system li:nth-of-type(4) a:before {
  background: url(/common/img/icon_04.png) no-repeat;
  background-size: contain;
}

footer .sitemap .safe-system li:nth-of-type(5) a:before {
  background: url(/common/img/icon_05.png) no-repeat;
  background-size: contain;
}

footer .sitemap .safe-system li:nth-of-type(6) a:before {
  background: url(/common/img/icon_06.png) no-repeat;
  background-size: contain;
}

footer .sitemap .safe-system li:nth-of-type(7) a:before {
  background: url(/common/img/icon_07.png) no-repeat;
  background-size: contain;
}

footer .sitemap .safe-system li:nth-of-type(8) a:before {
  background: url(/common/img/icon_08.png) no-repeat;
  background-size: contain;
}

.sitemap .box03 li a {
  font-size: 14px;
  padding: 0 10px 0 40px;
  line-height: 40px;
  border-bottom: 1px solid #ede7dd;
  display: block;
  position: relative;
  font-family: 'Sawarabi Mincho', "Yu Mincho", serif;
  background: #dad2c6;
}

footer .sitemap .salon li a:before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 21px;
  height: 100%;
}

footer .sitemap .news li a:before {
  content: "\f05a";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 19px;
  height: 100%;
}

footer .sitemap .felicia li a:before {
  background: url(/common/img/icon_felicia.png) no-repeat;
  background-position: center;
  background-size: contain;
}

footer .sitemap .mens li a:before {
  background: url(/common/img/icon_mens_suit.png) no-repeat;
  background-position: center;
  background-size: contain;
}

footer .sitemap .webshop li a:before {
  content: "\f108";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  height: 100%;
  font-size: 15px;
}

footer .sitemap .mens li span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 15px;
}

footer .footer_bottom {
  background: #e2ded9;
}

footer .footer_bottom .aboutus li {
  float: left;
  width: 50%;
}

footer .footer_bottom .aboutus li a {
  border-bottom: 1px solid #ccc;
  position: relative;
  display: block;
  padding: 0 10px;
  line-height: 40px;
  box-sizing: border-box;
  font-size: 11px;
  color: #666;
  letter-spacing: 0;
}

footer .footer_bottom .aboutus li:nth-of-type(odd) a {
  border-right: 1px solid #ccc;
  letter-spacing: -0.03em;
}

footer .footer_bottom .aboutus li:last-of-type a {
  border-bottom: none;
}

footer .footer_bottom .aboutus li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 5px 5px;
  border-color: transparent transparent #b79f7c transparent;
  position: absolute;
  right: 10px;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}

footer .footer_bottom .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  background: #fff;
}

footer .footer_bottom .sns li {
  padding: 0 10px;
  box-sizing: border-box;
}

footer .footer_bottom .sns li a {
  display: block;
  height: 100%;
}

footer .footer_bottom .sns li i {
  margin: 0 6px;
  vertical-align: middle;
  color: #b79f7c;
  font-size: 28px;
}

footer .copyright {
  background: #959595;
  color: #fff;
  line-height: 57px;
  text-align: center;
  display: block;
  font-size: 10px;
  font-family: sans-serif;
  font-weight: bold;
}

footer .footer_bn {
  margin-top: 20px;
}

footer .footer_bn img {
  width: 100%;
}

/* footer_unisex
____________________*/
footer.unisex .contact_form .ladys {
  background: #d9aeae;
}

footer.unisex .contact_form .mens {
  background: #8098b6;
}

footer.unisex .contact_tel p {
  margin-bottom: 0;
}

/* ページトップスクロール
____________________*/
#page-top {
  position: fixed;
  bottom: 65px;
  right: 0px;
  font-size: 10px;
  z-index: 99;
}

#page-top a {
  text-decoration: none;
  background: #b79f7c;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  display: block;
  box-sizing: border-box;
  position: relative;
  padding-top: 12px;
  line-height: 1.2;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.16);
}

#page-top a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 5px 5px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  margin: auto;
  transform: rotate(-135deg);
}

.member_organization {
  display: flex;
  align-items: center;
  justify-content: center;
}