@charset "utf-8";
/* common
------------------------------------------------------- */
* {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
body {
  background: #fff;
  color: #202124;
}
a {
  text-decoration: none;
}
a:link {
  text-decoration: none;
  color: #282828;
}
a:visited {
  color: #282828;
}
a:hover {
  color: #d82121;
}
a:active {}
a.alpha:hover img {
  filter: alpha(opacity=85);
  -moz-opacity: 0.85;
  opacity: 0.85;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.outsidewrap {
  overflow: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 0;
}
@media only screen and (max-width: 1120px) {
  .container {
    width: 94%;
  }
}
.contents ,.contents-m{
  margin: 5% auto 2%;
  width: 90%;
  max-width: 1400px;
}
.contents-m{
  width: 100%;
  max-width: 1400px;
}
.contents p, .contents li,.contents-m p, .contents-m li {
  font-size: 1.1rem;
  line-height: 1.75;
}
@media only screen and (max-width: 1024px) {
  .contents p, .contents li,.contents-m p, .contents-m li {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .contents p, .contents li,.contents-m p, .contents-m li {
    font-size: 0.9rem;
  }
}
.btn a {
  display: block;
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  padding: 0 !important;
  margin-top: 0 !important;
  border-radius: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(#2a5197), to(#1e3c72));
  background-image: -webkit-linear-gradient(left, #2a5197 0%, #1e3c72 100%);
  background-image: linear-gradient(90deg, #2a5197 0%, #1e3c72 100%);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}
.btn a:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#1e3c72), to(#2a5197));
  background-image: -webkit-linear-gradient(left, #1e3c72 0%, #2a5197 100%);
  background-image: linear-gradient(90deg, #1e3c72 0%, #2a5197 100%);
}
@media only screen and (max-width: 820px) {
  .btn a {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 540px) {
  .btn a {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 540px) {
  .pc-only {
    display: none;
  }
}
.sp-only {
  display: none;
}
@media only screen and (max-width: 540px) {
  .sp-only {
    display: block;
  }
}
ul.fb {
  width: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0.5% 0 2%;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 1.6rem;
  }
}
#pagetop {
  margin-top: 7px;
  float: right;
  position: fixed;
  right: 50px;
  bottom: 50px;
  cursor: pointer;
}
#pagetop img {
  width: 50px;
}
@media only screen and (max-width: 1024px) {
  #pagetop {
    right: 30px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 580px) {
  #pagetop {
    right: 10px;
    bottom: 20px;
  }
  #pagetop img {
    width: 30px;
  }
}
.sp-cml {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc-cml {
    display: none;
  }
  .sp-cml {
    display: block;
  }
}

/* top
------------------------------------------------------- */
#toph {
  background: url("../images/top/topimg.png") no-repeat;
  background-size: cover;
}
.arrow {
  padding: 30px 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.arrow a {
  padding-top: 60px;
  color: #fff;
}
.arrow a:hover {
  text-decoration: none;
}
.arrow a span {
  position: absolute;
  top: 10;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@media only screen and (max-width: 768px) {
  .arrow {
    display: none;
  }
}
#okExhi {
  z-index: 1;
  border-top: 20px solid #000;
}
#okExhi p {
  margin-bottom: 1%;
  font-family: 'メイリオ', Meiryo, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Arial', sans-serif;
}
#top h2 {
  text-align: left;
  margin: 0.5% 0 1%;
}
#top .contents {
  margin: 0;
  width: 100%;
  max-width: 100%;
  border-bottom: 10px solid #000;
}
#top .contents#t-menu {
  border-bottom: none;
}
#t-news li, #t-news li span, #t-news li a {
  font-family: 'メイリオ', Meiryo, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Arial', sans-serif;
}
#t-news li a:hover {
  color: #7f7f7f;
}
#t-news li {
  list-style: disc;
  margin-left: 4%;
  line-height: 1.25;
  margin-bottom: 2%;
}
#t-news li span {
  font-size: 0.7em;
}
#t-menu li {
  width: 33.33333%;
  float: left;
}
@media only screen and (max-width: 768px) {
  #t-menu li {
    width: 50%;
  }
}
#t-menu li img {
  width: 100%;
  vertical-align: bottom; /*隙間消す*/
}
#t-menu li a:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}
#topf {
  background: #000;
}
#topfR {
  float: right;
  width: 50%;
  background: #000;
  color: #fff;
  height: 570px;
}
#topfR li {
  border-bottom: #323232 1px solid;
  padding: 3% 5%;
  font-size: 1.3rem;
}
#topfR li:first-child {
  font-weight: bold;
  font-size: 2.2rem;
}
#topfR li:last-child {
  border-bottom: none;
}
#topfR li#tft a {
  color: #fff;
}
#topfR li#tft a:hover {
  color: #d82121;
}
.button_tf a {
  background: #bf0020;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px 25px;
  color: #fff;
  box-shadow: 15px 15px 0 #6f0020;
}
.button_tf a p {
  text-align: center;
  font-size: 1.2em;
  line-height: 1;
}
.button_tf a p span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -2% !important;
}
.button_tf a p span::before, .button_tf a p span::after {
  width: 1px;
  height: 30px;
  background-color: #ffffff;
  content: '';
}
.button_tf a p span::before {
  transform: rotate(-45deg);
  margin-right: 30px;
}
.button_tf a p span::after {
  transform: rotate(45deg);
  margin-left: 30px;
}
@media only screen and (max-width: 1000px) {
  .button_tf a p {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 768px) {
  .button_tf a p {
    font-size: 1em;
  }
}
#topfL {
  float: left;
  width: 50%;
}
@media only screen and (max-width: 1220px) {
  #topfR li:first-child {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 1024px) {
  #topfR li {
    padding: 5% 5%;
    text-align: center;
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 1000px) {
  #topfR li:first-child {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  #topfR {
    float: none;
    width: 100%;
    height: auto;
    padding-bottom: 4%;
  }
  #topfL {
    float: none;
    width: 100%;
  }
}
/* about us access
------------------------------------------------------- */
#about {
  background: url("../images/aboutus/topimg.png") no-repeat;
  background-size: cover;
}
#access {
  background: url("../images/access/topimg.png") no-repeat;
  background-size: cover;
}
.cbox {
  margin-bottom: 10%;
}
.cboxL {
  float: left;
  width: 50%;
}
.cboxL p {
  font-size: 1.3rem;
}
.cboxL p#aname {
  line-height: 1.25;
  font-weight: 500;
  margin: 10% 0 20%;
  font-size: 1.3em;
}
.cboxL p#aname span {
  font-size: 2em;
}
.cboxL p#aadd {
  line-height: 2.5;
  font-weight: 500;
  margin-bottom: 20%;
}
.cboxL p#aadd-a {
  margin: -10% 0 0;
}
.cboxR {
  float: right;
  width: 45%;
  margin-left: 5%;
}
p.common-t {
  font-size: 1.5em;
  margin-bottom: 5%;
}
@media only screen and (max-width: 1500px) {
  .cboxL p#aname {
    margin: 10% 0 10%;
    font-size: 1.3em;
  }
  .cboxL p#aadd {
    margin-bottom: 10%;
  }
  .cboxL p#aadd-a {
    margin: 0 0 0;
  }
}
@media only screen and (max-width: 1220px) {
  .cboxL p#aname {
    margin: 10% 0 5%;
    font-size: 1.2em;
  }
  .cboxR {
    width: 43%;
    margin-left: 7%;
  }
}
@media only screen and (max-width: 1120px) {
  .cboxL p {
    font-size: 1.2rem;
  }
  p.common-t {
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 1024px) {
  .cboxL p {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .cboxL {
    float: none;
    width: 100%;
    margin-bottom: 10%;
  }
  .cboxL p#aadd {
    margin-bottom: 5%;
  }
  .cboxR {
    float: none;
    width: 90%;
    margin: 0 5%;
  }
  p.common-t {
    font-size: 1em;
  }
}
@media only screen and (max-width: 540px) {
  .cboxL p {
    font-size: 1rem;
  }
  .cboxL p#aname {
    font-size: 1em;
  }
}
@media only screen and (max-width: 420px) {
  .cboxL p {
    font-size: 0.9rem;
  }
  .cboxL p#aname {
    font-size: 0.9em;
  }
}
/* menu
------------------------------------------------------- */
#menu {
  background: url("../images/menu/menu-bg.png");
  background-size: cover;
  padding: 0.5% 0;
  margin: 5% 0;
}
ul.menu-box li {
  float: left;
  width: 47%;
  margin: 0 6% 0 0;
  position: relative;
  background: #dcdddd;
  font-size: 1rem;
}
ul.menu-box li:last-child {
  margin-right: 0;
}
.menu-boxTi {
  position: absolute;
  left: 0;
  top: 25px;
  background: #000;
  padding: 1% 2%;
  font-size: 2rem !important;
  color: #fff;
}
#ladies .menu-boxTi {
  background: #e61673;
}
.menu-boxTx {
  position: absolute;
  left: 150px;
  top: 50px;
  font-size: 1em !important;
}
table.menu-boxLi {
  border-collapse: collapse;
  margin: 170px 2% 3%;
  padding: 0;
  table-layout: fixed;
  width: 96%;
}
table.menu-boxLi tr {
  padding: .35em;
}
table.menu-boxLi th, table.menu-boxLi td {
  padding: 1em 10px 1em 1em;
  font-size: 1.4em;
}
table.menu-boxLi th {
  width: 60%;
}
table.menu-boxLi th span {
  font-size: 0.7em !important;
}
table.menu-boxLi th i {
  font-size: 0.5em;
  margin: 0 5% 0 0;
}

table.sub {
  margin: 50px 2% 3% !important;
	
}

table.sub th.sub-tit {
	background: #000;
	color:#fff;
	padding: 0.3em 10px 0.3em 1em;
}
.txt {
  text-align: left;
}
.price {
  text-align: right;
}
@media only screen and (max-width: 1500px) {
  table.menu-boxLi {
    margin: 150px 2% 3%;
  }
}
@media only screen and (max-width: 1320px) {
  table.menu-boxLi th, table.menu-boxLi td {
    font-size: 1.3em;
  }
}
@media only screen and (max-width: 1220px) {
  ul.menu-box li {
    width: 49%;
    margin: 0 2% 0 0;
    font-size: 0.95em;
  }
  table.menu-boxLi {
    margin: 120px 2% 3%;
  }
}
@media only screen and (max-width: 1100px) {
  ul.menu-box li {
    float: none;
    width: 96%;
    margin: 0 2% 5% 2%;
    font-size: 1em;
  }
}
@media only screen and (max-width: 620px) {
  ul.menu-box li {
	      width: 100%;
    margin: 0 0 5% 0;
    font-size: 0.9em;
  }

  table.menu-boxLi th, table.menu-boxLi td {
    padding: 0.5em 10px 0.5em 0.5em;
    font-size: 1.3em;
  }
}
@media only screen and (min-width: 431px) {  /* 2026-09-14追加*/
  .menu-boxLi .pc-mth {
    white-space: nowrap;
  }
}
/* 画面幅430px以下（スマホ表示時）の指定 */
@media only screen and (max-width: 430px) {
  .menu-boxLi th .sp-mth {
    white-space: nowrap !important;
    display: block; /* または inline-block（環境に合わせて設定） */
  }
}
.sp-mth {
  display: none;
}
@media only screen and (max-width: 430px) {
	.pc-mth {
  display: none;
}
  .sp-mth {
    display: block;
  }
	
	  table.menu-boxLi th {
  width: 60%;
	}
	  table.menu-boxLi td {
  width: 40%;
	}
	
}
@media only screen and (max-width: 420px) {
  .menu-boxTi {
    position: static;
    margin: 8% 50% 0 0;
    padding: 1% 2%;
    font-size: 1.5rem !important;
  }
  .menu-boxTx {
    position: static;
    margin: 3% 2% 0;
    font-size: 1.2em !important;
  }
  table.menu-boxLi {
    margin: 2% 2% 3%;
    border: 0;
  }
	
}
@media only screen and (max-width: 370px) {
  .menu-boxTx {
    position: static;
    margin: 3% 2% 0;
    font-size: 1.1em !important;
  }
}

@media only screen and (max-width: 350px) {
  table.menu-boxLi th, table.menu-boxLi td {
    padding: 0.5em 10px 0.5em 0.5em;
    font-size: 1.2em;
  }
	
}

/*
@media only screen and (max-width: 420px) {

  table.menu-boxLi {
    margin: 170px 1% 3%;
    width: 98%;
  }

  table.menu-boxLi th {
    display: block;
    border-right: none;
    width: 100%;
    padding: 0.5em 10px 0 0.5em;
  }
  table.menu-boxLi tr {
    display: block;
    margin-bottom: 1em;
    border-bottom: 1px solid #848484;
  }
  table.menu-boxLi td {
    border-bottom: 1px solid #bbb;
    display: block;
    text-align: right;
    padding: .3em .625em .3em 0;
    border-right: none;
  }
  table.menu-boxLi td:last-child {
    border-bottom: 0;
  }
}

*/
/* staff
------------------------------------------------------- */
#staff {
  background: url("../images/staff/topimg.png") no-repeat;
  background-size: cover;
}
.sbox {
  margin: 0 0 10%;
}
.sboxL {
  float: left;
  width: 46%;
}
.sboxR {
  float: right;
  width: 54%;
  position: relative;
}
.sboxR img {
  position: absolute;
  top: -100px;
  right: -50px;
}
.sboxRinn {
  background: #efefef;
  margin: 10% 0;
  padding: 6% 5%;
}
.sboxRinn p {
  margin: 0 0 3%;
}
.sboxRinn p#sbrname {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .sboxL {
    float: none;
    width: 90%;
    margin: 0 5%;
  }
  .sboxR {
    float: none;
    width: 100%;
  }
  .sboxR img {
    display: none;
  }
}
/* hair
------------------------------------------------------- */
#hair {
  background: url("../images/hair-dyeing/topimg.png") no-repeat;
  background-size: cover;
}
.hbox {
  background: linear-gradient(180deg, #fff 0%, #fff 20%, #efefef 20%, #efefef 70%, #fff 70%, #fff 100%);
  margin-bottom: 5%;
}
.hbox li {
  float: left;
}
.hbox li:first-child {
  width: 22%;
}
.hbox li:nth-child(2) {
  width: 22%;
  padding: 15% 0 0;
}
.hbox li:last-child {
  width: 52%;
  padding: 12% 2% 0;
  font-size: 1.6rem;
}
.hbox li img {
  vertical-align: bottom;
}
@media only screen and (max-width: 1024px) {
  .hbox li:last-child {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .hbox {
    background: #efefef;
    margin-bottom: 5%;
  }
  .hbox li:first-child {
    width: 44%;
    margin: 3%;
  }
  .hbox li:nth-child(2) {
    width: 44%;
    margin: 3%;
    padding: 0 0 0;
  }
  .hbox li:last-child {
    width: 96%;
    padding: 2% 2% 5%;
    text-align: center;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 540px) {
  .hbox li:last-child {
    font-size: 1rem;
  }
}
/* site-policy privacy-policy
------------------------------------------------------- */
#sitepo {
  background: url("../images/site-policy/topimg.png") no-repeat;
  background-size: cover;
}
#privacypo {
  background: url("../images/privacy-policy/topimg.png") no-repeat;
  background-size: cover;
}
.spp {
  margin: 3% auto 10%;
}
.spp p {
  margin-bottom: 1%;
}
.spp p.btitle {
  font-size: 1.8rem;
  font-weight: 700;
}
.spp p.pend {
  margin-bottom: 3%;
}
@media only screen and (max-width: 1220px) {
  .spp p.btitle {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 820px) {
  .spp p.btitle {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 520px) {
  .spp p.btitle {
    font-size: 1.1rem;
  }
}
/* 404
------------------------------------------------------- */
#nf {
  text-align: center;
  margin: 10% 0 30%;
}
#nf p {
  margin: 5% 0 0;
  line-height: 2.5;
}