html {
  overflow-y: scroll;
}

body {
  margin: 0;
  background-color: #fff;
  color: #231815;
  font-size: 14px;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", sans-serif;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .brDesktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .brMobile {
    display: none;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

@media (max-width: 767px) {
  .navigation::after {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    content: "";
    opacity: 0;
  }
  body.showMenu .navigation::after {
    visibility: visible;
    opacity: 1;
  }
  body.sizeMobile .navigation::after {
    -webkit-transition: visibility 0.4s linear, opacity 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: visibility 0.4s linear, opacity 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
}
.navigation img {
  display: block;
}
.navigation_logo {
  position: absolute;
  top: 24px;
  left: 24px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-size: 31px;
  line-height: 1;
}
.navigation_logo a {
  display: inline-block;
  vertical-align: top;
}
.navigation_button {
  position: absolute;
  z-index: 200;
}
@media (max-width: 767px) {
  .navigation_button {
    top: 7px;
    right: 11px;
  }
}
@media (min-width: 768px) {
  .navigation_button {
    top: 30px;
    right: 41px;
  }
}
.navigation_button a,
.navigation_button a span {
  display: inline-block;
  box-sizing: border-box;
}
.navigation_button a {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border-style: solid;
  border-color: transparent;
  border-top-width: 10px;
  border-right-width: 9px;
  border-bottom-width: 10px;
  border-left-width: 9px;
}
.navigation_button a::after {
  position: absolute;
  bottom: -1px;
  display: block;
  width: 100%;
  height: 7px;
  background-image: url(../img/drawer.svg);
  background-position: center center;
  background-size: 22px 7px;
  background-repeat: no-repeat;
  color: #fff;
  content: "";
  -webkit-transition: bottom 0.4s;
  -ms-transition: bottom 0.4s;
  transition: bottom 0.4s;
}
body.showMenu .navigation_button a::after {
  bottom: -3px;
}
.navigation_button a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1a1a1a;
}
.navigation_button a span:nth-of-type(1) {
  top: 0;
  -webkit-transition: -webkit-transform 0.4s;
  -ms-transition: -ms-transform 0.4s;
  transition: transform 0.4s;
}
body.showMenu .navigation_button a span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-315deg);
  -ms-transform: translateY(6px) rotate(-315deg);
  transform: translateY(6px) rotate(-315deg);
}
.navigation_button a span:nth-of-type(2) {
  top: 6px;
  -webkit-transition: opacity 0.4s;
  -ms-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
body.showMenu .navigation_button a span:nth-of-type(2) {
  opacity: 0;
}
.navigation_button a span:nth-of-type(3) {
  top: 12px;
  -webkit-transition: -webkit-transform 0.4s;
  -ms-transition: -ms-transform 0.4s;
  transition: transform 0.4s;
}
body.showMenu .navigation_button a span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(315deg);
  -ms-transform: translateY(-6px) rotate(315deg);
  transform: translateY(-6px) rotate(315deg);
}
.navigation_menu {
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  pointer-events: none;
}
@media (max-width: 767px) {
  .navigation_menu {
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  body.sizeMobile .navigation_menu {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
}
@media (min-width: 768px) {
  .navigation_menu {
    top: 0;
    visibility: hidden;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  body.sizeDesktop .navigation_menu {
    -webkit-transition: visibility 0.5s linear, -webkit-transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: visibility 0.5s linear, transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
}
body.showMenu .navigation_menu {
  pointer-events: auto;
}
@media (max-width: 767px) {
  body.showMenu .navigation_menu {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@media (min-width: 768px) {
  body.showMenu .navigation_menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.navigation_menu ul {
  list-style-type: none;
  letter-spacing: 0.1em;
  font-family: Arial, sans-serif;
}
@media (max-width: 767px) {
  .navigation_menu ul {
    margin-top: 60px;
    margin-bottom: 0;
    padding-right: 18px;
    padding-bottom: 18px;
    padding-left: 18px;
  }
}
@media (min-width: 768px) {
  .navigation_menu ul {
    position: relative;
    top: 50%;
    z-index: 500;
    margin: 0 auto;
    padding-left: 0;
    width: 324px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.navigation_menu ul li {
  border-bottom: 1px solid #666;
  text-align: center;
}
.navigation_menu ul li:first-child {
  border-top: 1px solid #666;
}
.navigation_menu ul li a {
  display: inline-block;
  padding: 0 11px;
  color: #231815;
  vertical-align: top;
  text-decoration: none;
  line-height: 46px;
}
.navigation_menu ul li.nav-sns a {
  padding: 16px 11px;
}

.content {
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .content {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .content {
	margin-right: auto;
	margin-left: auto;
	padding-top: 40px;
	max-width: 900px;
	width: 100%;
	padding-bottom: 60px;
  }
}
.content-header {
  margin-top: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .content-header {
    display: table;
    margin-bottom: 32px;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .content-header {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .content-header-inner {
    display: table-cell;
    height: 100vh;
    vertical-align: middle;
  }
}
@media (max-width: 767px) {
  .content-header-logo {
    margin-bottom: 58px;
  }
}
@media (min-width: 768px) {
  .content-header-logo {
    margin-bottom: 64px;
  }
  .content-header-logo::after {
    display: block;
    margin-top: 35px;
    padding-top: 66.666666666%;
    height: 0;
    background-position: center;
    background-size: cover;
    content: "";
  }
}
.content-header-logo img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 116px;
  height: 116px;
}
.content-header-title {
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0.1em;
  font-weight: normal;
  font-family: Arial, sans-serif;
}
@media (max-width: 767px) {
  .content-header-title {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 768px) {
  .content-header-title {
    font-size: 17px;
    line-height: 20px;
  }
}
.content-description {
  font-size: 12px;
  line-height: 22px;
}
@supports (font-feature-settings: "palt") {
  .content-description {
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
  }
}
@media (max-width: 767px) {
  .content-description {
    margin-right: 15px;
    margin-left: 15px;
    text-align: justify;
    text-justify: inter-ideograph;
	text-align: center;
  }
}
@media (min-width: 768px) {
  .content-description {
    margin-right: auto;
    margin-left: auto;
    max-width: 900px;
    width: 85%;
    text-align: center;
  }
}
.content-description p {
  margin-top: 0;
  margin-bottom: 0;
}
.content-description p + p {
  margin-top: 19px;
}

.footer {
  margin-bottom: 60px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    margin-right: auto;
    margin-left: auto;
    max-width: 900px;
  }
}
.footer::before {
  display: block;
  margin-bottom: 50px;
  border-top: 1px solid #000;
  content: "";
}
@media (max-width: 767px) {
  .footer::before {
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  .footer::before {
    margin-right: auto;
    margin-left: auto;
    max-width: 850px;
  }
}
@media (max-width: 767px) {
  .footer-logo {
    margin-bottom: 33px;
  }
}
@media (min-width: 768px) {
  .footer-logo {
    margin-bottom: 43px;
  }
}
.footer-logo img {
  width: 176px;
  height: 111px;
  vertical-align: bottom;
}
.footer-hours {
  margin-bottom: 31px;
  font-size: 12px;
  line-height: 32px;
}
.footer-phone {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 24px;
}
.footer-net {
  font-size: 12px;
  line-height: 31px;
}
@media (max-width: 767px) {
  .footer-net {
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .footer-net {
    margin-bottom: 28px;
  }
}
.footer-net a {
  color: inherit;
  text-decoration: none;
}
.footer-net a:hover {
  text-decoration: underline;
}
.footer-sns {
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 767px) {
  .footer-sns {
    margin-bottom: 29px;
  }
}
@media (min-width: 768px) {
  .footer-sns {
    margin-bottom: 30px;
  }
}
.footer-sns a {
  padding: 0 4px;
}
.footer-sns a img {
  vertical-align: bottom;
}
.footer-address {
  font-size: 12px;
  line-height: 18px;
}
@media (max-width: 767px) {
  .footer-address {
    margin-bottom: 27px;
  }
}
@media (min-width: 768px) {
  .footer-address {
    margin-bottom: 42px;
  }
}
.footer-map {
  margin-bottom: 60px;
}
.footer-map-inner {
  position: relative;
  overflow: hidden;
  height: 0;
}
@media (max-width: 767px) {
  .footer-map-inner {
    padding-bottom: 87.5%;
  }
}
@media (min-width: 768px) {
  .footer-map-inner {
    padding-bottom: 38.888888888%;
  }
}
.footer-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer-copyright {
	position: relative;
	height: 50px;
	font-size: 10px;
}
.footer-copyright img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.content .content-body .bodycare .body-img {
	text-align: center;
	width: 100%;
	padding-bottom: 20px;
}

.pageTop .content .content-body .eyebeauty .eyebeauty-menu .eye-img {
	text-align: center;
	padding-bottom: 10px;
	width: 100%;
}

@media (max-width: 767px) {
.pageTop .content .content-body .eyebeauty .eyebeauty-menu .eye-img02 {
	text-align: center;
	padding-bottom: 10px;
	width: 300px;
	height: 66px;
	background-image: url(../img/eyebeauty/eye02a.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 66px;
	margin-right: auto;
	margin-left: auto;
}
}
@media (min-width: 768px) {
.pageTop .content .content-body .eyebeauty .eyebeauty-menu .eye-img02 {
	text-align: center;
	padding-bottom: 10px;
	width: 830px;
	height: 184px;
	background-image: url(../img/eyebeauty/eye02.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: auto;
	margin-left: auto;
}
}
