/* CSS Document */

img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: auto;
}
body {
  -webkit-text-size-adjust: 100%;
  line-height: 1.5em;
}
.wrapper {
  max-width: 1000px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 0 auto;
}

.yu_mincho{
  font-family: "Yu Mincho", "YuMincho", serif;
}

@media screen and (max-width: 736px) {
  .wrapper {
    padding: 0 0.8rem;
  }
}


/***************************
 ** フォームのスタイル
 */

/* リセット */
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/***************************
 ** flexible boxと子要素の関係
 */

.flex_row {
  /* flexible boxの使用宣言（box,flexbox,flex） */
  display: -webkit-box;/*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;/*--- ie10 ---*/
  display: -webkit-flex;/*--- mac old safari ---*/
  display: flex;
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: justify;/*--- Androidブラウザ ---*/
  -ms-flex-pack: justify;/*--- ie10 ---*/
  -webkit-justify-content: space-between;/*--- mac old safari ---*/
  justify-content: space-between;
  /* flexアイテムの縦方向の整列 */
  -webkit-box-align: stretch;/*--- Androidブラウザ ---*/
  -ms-flex-align: stretch;/*--- ie10 ---*/
  -webkit-align-items: stretch;/*--- mac old safari ---*/
  align-items: stretch;
  /* flexアイテムの並び方向 */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;/*--- Androidブラウザ 2つに分かれている ---*/
  -ms-flex-direction: row;/*--- ie10 ---*/
  -webkit-flex-direction: row;/*--- mac old safari ---*/
  flex-direction: row;
  /* flexアイテムを複数行にするかどうか */
    /* box仕様のbox-linesに当たるが、androidブラウザは未対応 */
    /* wrapさせたい場合はandroid4DefaultBrowser.cssにて対応すること */
  -ms-flex-wrap: nowrap;/*--- ie10 ---*/
  -webkit-flex-wrap: nowrap;/*--- mac old safari ---*/
  flex-wrap: nowrap;
}
.flex_row>* {
  /**** flexible box関連指定 ****/
    /* flexアイテムの伸縮、アイテム幅の指定 */
  -webkit-box-flex: 0.1;    /*--- Androidブラウザ 要素がはみ出す場合があることへの対処 ---*/
  -ms-flex: 1 1;    /*--- ie10 ---*/
  -webkit-flex: 1 1 auto;    /* mac old safari */
  /* ie11で、flex-basisを記述すると正しく動作しないので記載しないように変更 */
  flex: 1 1;    /*--- flex-grow,flex-shrink,flex-basis ---*/
  /* 並び順の指定 */
  -webkit-box-ordinal-group: 1;/*--- Androidブラウザ ---*/
  -ms-flex-order: 0;/*--- ie10 ---*/
  -webkit-order: 0;/*--- mac old safari ---*/
  order: 0;
}

@media screen and (max-width: 736px) {
.sp_flex_col {
  /* flexアイテムの並び方向 */
  -webkit-box-orient: vertical;/*--- Androidブラウザ 2つに分かれている ---*/
  -ms-flex-direction: column;/*--- ie10 ---*/
  -webkit-flex-direction: column;/*--- mac old safari ---*/
  flex-direction: column;
}
.sp_flex_col>* {
  width: 100%;
}

.sp_flex_2row2col {
  -ms-flex-wrap: wrap;/*--- ie10 ---*/
  -webkit-flex-wrap: wrap;/*--- mac old safari ---*/
  flex-wrap: wrap;
}
.sp_flex_2row2col>* {
  width: 50%;
  box-sizing: border-box;
}
}

/***************************
 ** アコーディオン
 */
.accordion_container .accordion_btn {
  cursor: pointer;
}
.accordion_container .accordion_box {
  display: none;
}


/***************************
 ** header
 */
nav {
  max-width: 960px;
  height: 100px;
  margin: 0 auto;
  position: relative;
  background: #fff;
}

.drawer{/* トグルスイッチとロゴを含む部分 */
  position: relative;
}

.navbar_brand {
  position: absolute;
  top: 0.6rem;
  left: 50%;
  margin-left: -60px;
}

/* トグルボタン(ハンバーガー)*/
.navbar_toggle{
  z-index:9999;
  position: absolute;
  top:1.5rem;
  right: 1rem;
}
.navbar_toggle_icon {
 position: relative;
 display: block;
 height: 2px;
 width: 30px;
 background: #000;
 -webkit-transition: ease .5s;
 transition: ease .5s;
}
.navbar_toggle_icon:nth-child(1) {
 top: 0;
}
.navbar_toggle_icon:nth-child(2) {
 margin: 8px 0;
}
.navbar_toggle_icon:nth-child(3) {
 top: 0;
}
/* OPEN時の動き */
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
 top: 10px;
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
 opacity: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
 top: -10px;
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}

/* グローバルナビ */
.menu{
  -webkit-transform: translateX(-100%);/* 横方向（画面外）に隠す */
  transform: translateX(-100%);/* 横方向（画面外）に隠す */
  -webkit-transition:ease .5s;
  transition:ease .5s;
  z-index:1000;
  opacity: 0;
  position: relative;
  top: 100px;
}
.menu ul li{
  padding: 2em;
  border-bottom: 1px solid #CCC;
  background: #fff;
}

.menu ul li:first-child {
  border-top: 1px solid #CCC;
}

.menu ul li a {
  text-decoration: none;
  color: #000;
}

.menu ul li a span {
  display: inline-block;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

/*OPEN時の動き*/
.menu.open {
  -webkit-transform:translateX(0);/* 隠していたメニューを表示 */
  transform:translateX(0);/* 隠していたメニューを表示 */
  overflow-y: auto;/* 縦方向も見えるように */
  -webkit-overflow-scrolling: touch;/* 惰性付きのスクロールを使用 */
  opacity: 1;
  /*position: relative;
  top: 100px;*/
}

@media screen and (min-width: 735px) {
  .drawer {
    z-index: 999;/*ロゴが最前面でクリックできるように*/
  }
  .navbar_toggle{/*トグルボタン不要なので消す*/
    display: none;
  }
  .menu{/* グローバルナビを常に表示させた状態に */
    width: 100%;
    height: 100px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    padding-top: 0;
    /*z-index: -1;*/
    opacity: 1;
    position: relative;
    top: 0;
    z-index: 1;
  }
  .menu ul{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
    padding-top: 0.6rem;
    font-family: "Yu Mincho", "YuMincho", serif;
    font-size: 1.75vw;
  }
  .menu ul li {
    flex-basis: auto;
    padding: 0;
    text-align: center;
    border-bottom: none;
    background: none;
  }
  
  .menu ul li:first-child {
    border-top: none;
  }
  
  .menu ul li:nth-child(4) {
    margin-right: 90px;
  }

  .menu ul li:nth-child(5) {
    margin-left: 70px;
  }

  .menu ul li:nth-child(-n+4) {
    flex-basis: 8%;
  }

  .menu ul li:nth-child(n+5) {
    flex-basis: 12%;
  }
  
  .menu ul li a {
    display: block;
    box-sizing: border-box;
    padding: 1rem 0.5rem;
    color: #000;
    text-decoration: none;
    transition: .8s;
  }
  
  .menu ul li a span {
    display: block;
    font-size: 1vw;
    margin-left: 0;
  }
  
  .menu ul li:not(:last-child) a:hover {
    background: #efefef;
  }

  .menu ul li:last-child a {
    background: #000;
    color: #fff;
  }
}

/* ブラウザ幅を960px以上にしたときにナビの文字が際限なく大きくならないように */
@media screen and (min-width: 961px) {
  .menu ul{
    font-size: 1.25rem;
  }
  
  .menu ul li a span {
    font-size: 0.5625rem;
  }
}


/***************************
 ** #main
 */
main {
  display: block;
  /* for ie10 */
}

/* 斜め格子柄のバック */
.diagonal {
  background: url("../img/bg_diagonal_grid.png");
  background-size: 100% auto;
}

/* セクションごとに入る横幅いっぱいのイメージ */
.section_img img {
  width: 100%;
}

/***************************
 ** #fv・サロンページのサロン画像
 */
#fv,
.salon_img {
  position: relative;
}

.salon_img {
  margin-bottom: 2.5rem;
}

#fv img,
.salon_img img {
  width: 100%;
}

.page_ttl,
.salon_name {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  top:50%;
  left: 50%;
  margin-left: -50%;
  margin-top: -1.5rem;
  line-height: 1.4;
}

.page_ttl span,
.salon_name span {
  display: block;
  font-size: 1rem;
  line-height: 2rem;
}


/***************************
 ** #footer
 */
#footer {
  background: #000;
  color: #fff;
  padding: 2rem 0;
}

#footer a {
  color: #fff;
}

.foot_link {
  text-align: center;
  margin-bottom: 2rem;
}

.foot_link li {
  display: inline-block;
}

.foot_link li::before {
  content: "»";
  display: inline-block;
  margin-right: 0.2rem;
}

.foot_link li:not(:last-child) {
  margin-right: 2rem;
}

.foot_link li a {
  text-decoration: none;
}

.foot_link li a:hover {
  text-decoration: underline;
}

.trademark {
  margin-bottom: 1.75rem;
}

.trademark div:first-child {
  flex-basis: 49.5%;
  margin-right: 3%;
  text-align: center;
  font-size: 0.875rem;
}

.trademark div:last-child {
  flex-basis: 49.5%;
  font-size: 0.875rem;
  padding-top: 0.5rem;
}

.trademark div img {
  margin-bottom: 0.5rem;
}

.trademark div:first-child img {
  margin-right: 0.5rem;
}

.caution {
  color: #c00;
}

.foot_shop_list {
  margin-bottom: 1.75rem;
}

.foot_shop_list li {
  flex-basis: 31%;
}

.foot_shop_list li:not(:last-child) {
  margin-right: 3.5%;
}

.foot_shop_list li a {
  display: block;
  box-sizing: border-box;
  padding: 0.6rem;
  text-align: center;
  font-size: calc(9px + 0.3vw);
  text-decoration: none;
  border: 2px solid #fff;
  transition: .3s;
}

.foot_shop_list li a span {
  display: block;
  font-size: calc(13px + 0.3vw);
  font-weight: bold;
}

.foot_shop_list li a:hover {
  background: rgba(255,255,255, 0.6);
  color: #000!important;
}

.copyright {
  text-align: center;
  font-size: 0.875rem;
}

.foot_other_bnr {
  text-align: center;
  margin-bottom: 1rem;
}

.recruit_bnr {
  display: inline-block;
  max-width: 600px;
  margin: 0 1rem 0 0;
  text-align: center;
}

.recruit_bnr a {
  display: block;
  border: 2px solid #fff;
  padding: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
}

.recruit_bnr img {
  max-width: 150px;
  margin-right: 1rem;
}

.recruit_bnr a span {
  font-size: 1rem;
  font-weight: normal;
}

.recruit_bnr a::after {
  font-family: "Font Awesome 5 Free";
  content: '\f30b';
  font-weight: 900;
  display: inline-block;
  margin-left: 1rem;
}

.recruit_bnr a:hover {
  border: 2px solid #c00;
}

.recruit_bnr a:hover::after {
  color: #c00;
}

.youtube_bnr {
  display: inline-block;
  text-align: center;
}

.youtube_bnr a {
  display: block;
  border: 2px solid #fff;
  padding: 1rem;
  text-decoration: none;
  font-weight: bold;
  /*font-size: 1.25rem;*/
}

.youtube_bnr img {
  max-width: 40px;
  margin-right: 1rem;
}

.youtube_bnr a:hover {
  background: rgba(255,255,255, 0.6);
  color: #000!important;
}

@media screen and (max-width: 736px) {
  .foot_link {
    margin-bottom: 1rem;
  }

  .foot_link li {
    font-size: 0.875rem;
  }

  .trademark div:first-child {
    flex-basis: auto;
    margin-right: 0;
  }

  .trademark div:last-child {
    flex-basis: auto;
    font-size: 0.875rem;
  }

  .foot_shop_list {
    margin-bottom: 1.75rem;
  }

  .foot_shop_list li {
    flex-basis: auto;
  }

  .foot_shop_list li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.6rem;
  }

  .foot_shop_list li a {
    font-size: 0.75rem;
  }

  .foot_shop_list li a span {
    font-size: 1rem;
  }
  
  .recruit_bnr {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .youtube_bnr {
    width: 100%;
  }

  .youtube_bnr a {
    max-width: 100%;
  }
}


/***************************
 ** 第二階層共通
 */

/* FVなしで始まるコンテンツ */
.base_contents {
  border-top: 1px solid #ccc;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.base_section {
  padding-bottom: 4rem;
}

.base_section:first-of-type {
  padding-top: 4rem;
}

/* タイトル */
.section_ttl {/* アンダーラインが付いただけのシンプルなタイトル */
  font-size: 1.25rem;
  padding: 0 0.8rem 0.8rem;
  font-weight: bold;
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
}

.sec_ttl_02 {/* 薄グレーバックのタイトル */
  font-size: 1.125rem;
  padding: 0.5rem 0.8rem;
  background: #eee;
  font-weight: bold;
  margin-bottom: 1rem;
}

.sec_ttl_03 {/* 明朝体のタイトル */
  font-family: "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 4rem;
}

.sec_ttl_03 span {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}

/* 共通リンクボタン */
.link_btn a,
.link_btn input {
  display: block;
  box-sizing: border-box;
  padding: 0.8rem;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  cursor: pointer
}

.link_btn input {
  width: 100%;
  font-size: 1rem;
}

.link_right a::after {
  font-family: "Font Awesome 5 Free";
  content: '\f30b';
  font-weight: 900;
  display: inline-block;
  position: absolute;
  right: 1rem;
  top: 50%;
  margin-top: -0.7em;
}

.link_left a::after {
  font-family: "Font Awesome 5 Free";
  content: '\f30a';
  font-weight: 900;
  display: inline-block;
  position: absolute;
  left: 1rem;
  top: 50%;
  margin-top: -0.7em;
}

.black_link a,
.black_link input {
  color: #fff;
  background: #000;
  border: 2px solid transparent;
}

.black_link a:hover {
  background: #fff;
  border: 2px solid #000;
  color: #000;
}

.white_link a {
  background: #fff;
  border: 2px solid #000;
  color: #000;
}

.white_link a:hover {
  color: #fff;
  background: #000;
  border: 2px solid transparent;
}

.link_half {
  width: 46%;
  margin: 0 auto;
}

.center {
  text-align: center;
}

/* 画像ホバーでメッセージ表示 */
.hover_msg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.hover_msg .caption {
  text-align: center;
  color: #fff;
}
.hover_msg .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  /*background-color:	rgba(0,0,0,0.4);*/
  -webkit-transition:	all 0.3s ease;
  transition: all 0.3s ease;
}
.hover_msg:hover .mask {
  opacity: 1;
  padding-top: 50%;
  margin-top: -1em;
}

.hover_msg:hover img {
  transition: all 0.3s;
}

.hover_msg:hover img {
  filter: grayscale(70%) brightness(50%);
}

@media screen and (max-width: 736px) {
  /* FVなしで始まるコンテンツ */
  .base_contents {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .base_section {
    padding-bottom: 2rem;
  }
  
  /* リンクボタン */
  .link_half {
    width: 100%;
  }
  
  /* タイトル */
  .sec_ttl_03 {/* 明朝体のタイトル */
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

/***************************
 ** ギャラリー各リスト共通
 */
.gallery_list {
  flex-wrap: wrap;
  justify-content: space-between;
}

.gallery_list li {
  flex-basis: 23%;
  width: 23%;
  margin-bottom: 1.75rem;
  margin-right: 2.6%;
  text-align: center;
}

.gallery_list li:nth-child(4n) {
  margin-right: 0;
}

.gallery_list:before{
  content:"";
  display: block;
  width:23%;
  order:1;
}
.gallery_list:after{
  content:"";
  display: block;
  width:23%;
  margin-right: 2.6%;
}

.gallery_list li img {
  width: 100%;
}

@media screen and (max-width: 736px) {
  .gallery_list li {
    flex-basis: 49%;
    margin-bottom: 1rem;
    margin-right: 2%;
  }

  .gallery_list li:nth-child(4n) {
    margin-right: 2%;
  }
  
  .gallery_list li:nth-child(even) {
    margin-right: 0;
  }

  .gallery_list:before{
    display: none;
  }
  .gallery_list:after{
    content:"";
    display: block;
    width:49%;
  }
}


/*********************************
* トップページのリラクゼーション・フェイシャルページの各メニュー
************************************/
.relaxation {
  padding: 4rem 0 0;
}

.relaxation_detail_01 {
  background: url("../img/top/img_top_03.png") no-repeat;
  background-size: 100% auto;
}

.relaxation_detail_facial_01 {
  background: url("../img/menu/img_facial_01.png") no-repeat;
  background-size: 100% auto;
}

.relaxation_detail_facial_02 {
  background: url("../img/menu/img_facial_02.png") no-repeat;
  background-size: 100% auto;
}

.relaxation_detail_facial_03 {
  background: url("../img/menu/img_facial_03.png") no-repeat;
  background-size: 100% auto;
}

.relaxation_detail_facial_04 {
  background: url("../img/menu/img_facial_04.png") no-repeat;
  background-size: 100% auto;
}

.relaxation_detail_inner {
  max-width: 960px;
  margin: 0 auto;
}

.relaxation_text {
  box-sizing: border-box;
  padding: 0 5% 0 1rem;
}

.relaxation_text span {
  font-size: 1.15rem;
}

.relaxation_even .relaxation_text {
  padding: 0 1rem 0 5%;
}

.relaxation_text p:first-of-type {
  margin-bottom: 2rem;
}

.relaxation_img {
  box-sizing: border-box;
  padding-left: 5%;
}

@media screen and (max-width: 736px) {
  .relaxation {
    padding: 2rem 0 0;
  }

  .relaxation_detail {
    background: none;
  }
  
  .relaxation_even .relaxation_detail_inner {
    flex-direction: column-reverse;
  }

  .relaxation_text,
  .relaxation_even .relaxation_text {
    padding: 1rem;
  }

  .relaxation_img {
    padding-left: 0;
  }
  
  .relaxation_img img {
    width: 100%;
  }
}


/***************************
 ** #rev_top
 */
.rev_top {
  position: fixed;
  width: 7%;
  max-width: 60px;
  bottom: 20px;
  left: 20px;
  text-decoration: none;
  -ms-filter: "alpha(opacity=80)";
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  box-shadow: 0 0 4px rgba(0, 0, 0, .3);
}
