﻿@charset "utf-8";
/*====================================================================================================

  Layout

====================================================================================================*/


/*----------------------------------------------------------------------------------------------------

  expression
  
----------------------------------------------------------------------------------------------------*/
.lo {
  min-height: 100vh;
  position: relative;
}
.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width:1284px) {
  .inner {
    width: calc(100% - 84px);
    margin: 0 42px;
  }
}
.section-title {
  font-size: 215%;
  text-align: center;
  margin-bottom: 48px;
}
.section-title .section-title-icon {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width:750px) {
  .section-title {
    font-size: 175%;
  }
}


/*----------------------------------------------------------------------------------------------------

  header
  
----------------------------------------------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 732px;
  height: 88px;
  box-sizing: border-box;
  background-color: #fff;
}
header h1 {
  width: 165px;
  margin-left: 36px;
}
header .navArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 36px;
}
header .menu {
  position: relative;
  margin: 0 auto;
}
header .menu > li {
  list-style: none;
  float: left;
  cursor: pointer;
  margin-right: 2em;
}
header .menu > li a {
  position: relative;
  display: inline-block;
  line-height: 2;
  text-align: center;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
header .menu > li a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  content: '';
  width: 100%;
  height: 1px;
  background: #202020;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
header .menu > li a:hover::after,
header .menu > li.active a::after {
  transform: scale(1, 1);
}
header .menu > li a:hover,
header .menu > li.active a {
  color: inherit;
}
header .navArea .insta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 154px;
  height: 45px;
  background-color: #333333;
  box-sizing: border-box;
  text-align: center;
  color: #fff !important;
  text-decoration: none;
  transition: .3s all;
}
_::-webkit-full-page-media, _:future, :root header .navArea .insta-btn {
  width: 190px;
}
header .navArea .insta-btn:hover {
  background-color: #5a5a5a;
}
header .navArea .insta-btn .insta-icon {
  display: inline-block;
  margin-right: .5em;
}
@media screen and (max-width:960px) {
  header .navArea {
    margin-right: 0;
  }
  header .navArea nav {
    display: none;
  }
}
@media screen and (max-width:750px) {
  header {
    height: 100px;
  }
  header .navArea .insta-btn,
  .ua-sp header .navArea .insta-btn {
    width: 260px !important;
    height: 60px !important;
  }
}



/*-----------------------------------------------------------------------------------
  SPnav
-----------------------------------------------------------------------------------*/

html.openNav_on { overflow-y:hidden; }

#openNav-warp {
  display: none;
  position:fixed;
  top:0;
  right:0;
  z-index:10;
  width:100%;
  height:100%;
}
#openNav-warp.on {
  display: block;
}
.lte-ie8 #openNav-warp {
  display:none !important;
}
.lte-ie8 #openNav-warp.on { min-width:1100px; }

#openNav_sw {
  width:100%;
  height:100vh;
  filter:alpha(opacity=0);
  opacity:0;
  -moz-opacity:0;
  transition:opacity 0.2s ease;
}
#openNav-warp.on #openNav_sw {
  filter:alpha(opacity=100);
  opacity:1;
  -moz-opacity:1;
}
#openNav {
  height:100%;
  background-color:#202020;
}
#openNav a { transition:opacity 0.2s ease; }
#openNav a,
#openNav a:visited { color:#fff; text-decoration:none; }
#openNav nav {
  width:100%;
  padding:7rem 1.5rem 2rem 1.5rem;
  font-size:120%;
  display: block;
  box-sizing: border-box;
}
#openNav nav > ul.mnav {
  list-style:none;
}
#openNav nav > ul.mnav > li {
  width:100%;
}
#openNav nav > ul.mnav > li > a {
  border-bottom:1px solid rgba(255,255,255,0.2);
  width:100%;
  padding:0.7rem 1rem;
  display:block;
  font-size:118.8%;
  transition: 0.2s;
  box-sizing: border-box;
}
#openNav nav > ul.mnav > li:first-child a {
  border-top:1px solid rgba(255,255,255,0.2);
}
#openNav nav > ul.mnav > li.active > a,
#openNav nav > ul.mnav > li > a:hover {
  background-color:rgba(255,255,255,0.2);
}
#openNav .nav_info {
  width: calc(100% - 3em);
  padding: 1.5rem 2rem;
  margin: 1.5em;
  font-size: 112.5%;
  box-sizing: border-box;
  text-align: center;
  background-color: rgba(255,255,255,1.00);
}

/* ボタン ---------------------------------------- */

#openNav_btn {
  display: none;
  cursor:pointer;
  float: right;
  width:80px;
  height:80px;
  text-align:center;
  color:#fff;
  transition: 0.2s all;
}
@media screen and (max-width:960px) {
  #openNav_btn {
    display: block;
  }
}
@media screen and (max-width:750px) {
  #openNav_btn {
    width:100px;
    height:100px;
  }
}

.lte-ie8 #openNav_btn {
  display:none !important;
}

.openNav_btn_ic,
.openNav_btn_ic span,
.openNav_btn_ic span:before,
.openNav_btn_ic span:after {
  display:inline-block;
  transition:transform .4s, opacity .4s;
  box-sizing:border-box;
}
.openNav_btn_ic {
  position:relative;
  width:33px;
  height:18px;
  margin-top:30px;
}
  
.openNav_btn_ic span,
.openNav_btn_ic span:nth-of-type(2),
.openNav_btn_ic span:nth-of-type(3) {
  position:absolute;
  right:0;
  height:1px;
  background-color:#202020;
}
.openNav_btn_ic span:nth-of-type(1) {
  width:100%;
  top:0;
}
.openNav_btn_ic span:nth-of-type(2) {
  width:80%;
  top:9px;
}
.openNav_btn_ic span:nth-of-type(3) {
  width:60%;
  bottom:0;
}
  
#openNav_btn.close .openNav_btn_ic span:nth-of-type(1) {
  -webkit-transform:translateY(8.5px) rotate(-325deg);
  transform:translateY(8.5px) rotate(-325deg);
}
#openNav_btn.close .openNav_btn_ic span:nth-of-type(2) {
  opacity:0;
}
#openNav_btn.close .openNav_btn_ic span:nth-of-type(3) {
  width: 100%;
  -webkit-transform:translateY(-8.5px) rotate(325deg);
  transform:translateY(-8.5px) rotate(325deg);
}

@media screen and (max-width:750px) {
  .openNav_btn_ic {
    width:50px;
    height:30px;
    margin-top: 36px;
  }
  .openNav_btn_ic span:nth-of-type(2) {
    top:15px;
  }
  #openNav_btn.close .openNav_btn_ic span:nth-of-type(1) {
    -webkit-transform:translateY(14px) rotate(-325deg);
    transform:translateY(14px) rotate(-325deg);
  }
  #openNav_btn.close .openNav_btn_ic span:nth-of-type(3) {
    width: 100%;
    -webkit-transform:translateY(-14px) rotate(325deg);
    transform:translateY(-14px) rotate(325deg);
  }
}

.preload .openNav_btn_ic,
.preload .openNav_btn_ic span,
.preload .openNav_btn_ic span:before,
.preload .openNav_btn_ic span:after {
  -webkit-transition:none !important;
  -moz-transition:none !important;
  -ms-transition:none !important;
  -o-transition:none !important;
  transition:none !important;
}

@media print {
  #openNav_btn { display:none !important; }
}


/*----------------------------------------------------------------------------------------------------

  Main visual
  
----------------------------------------------------------------------------------------------------*/
#mainvisual {
  width: 100%;
  height: 990px;
  max-height: 990px;
  min-height: 900px;
  position: relative;
  margin-top: 88px;
}

@media screen and (max-width:1730px) {
  #mainvisual {
    height: 100vh;
  }
}

#mainvisual .mv-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 660px;
  background-color: #202020;
}

#mainvisual .mv-img01 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: calc(100% - 150px);
  max-width: 1560px;
  min-height: 740px;
  overflow: hidden;
}
#mainvisual .mv-img01 .slide img {
  width: 100%;
  height: 100%;
  max-width: 1560px;
  min-height: 740px;
  object-fit: cover;
}
#mainvisual .mv-img01 .slide.is-active img {
  -webkit-animation:mvsize-zoom 30s forwards ease-out;
  animation:mvsize-zoom 30s forwards ease-out;
}

#mainvisual .mv-img02 {
  position: absolute;
  right: 7.8%;
  bottom: 70px;
  z-index: 2;
  width: 36%;
  max-width: 402px;
  min-width: 264px;
  height: auto;
  overflow: hidden;
}
#mainvisual .mv-img02 .swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: 402px;
  min-width: 264px;
  object-fit: cover;
}
#mainvisual .mv-img02 .slide.is-active img {
  -webkit-animation:mvsize-zoom 30s forwards ease-out;
  animation:mvsize-zoom 30s forwards ease-out;
}

@keyframes mvsize-zoom {
  0% {
    -webkit-transform:scale(1.0) rotate(0.1deg);  /* IEカクつき対処（rotate）*/
  }
  100% {
    -webkit-transform:scale(1.3) rotate(0.1deg);  /* IEカクつき対処（rotate）*/
  }
}

#mainvisual .mv-logo {
  position: absolute;
  right: 7.8%;
  top: 120px;
  z-index: 2;
  width: 42%;
  max-width: 478px;
  min-width: 308px;
  background-image: url("../image/mainvisual-logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
}
#mainvisual .mv-logo::before {
  content: "";
  display: block;
  padding-top: 23%;
}
#mainvisual .mv-logo li {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: .5em .75em;
  box-sizing: border-box;
  background-color: #202020;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width:790px) {
  #mainvisual .mv-logo li {
    font-size: 87.5%;
  }
}

#mainvisual .scrolldown {
  position: absolute;
  left: 70px;
  bottom: 70px;
  z-index: 2;
  height: 140px;
}
#mainvisual .scrolldown span {
  position: absolute;
  left: -0.5em;
  top: -3em;
  line-height: 1;
  color: #fff;
}
#mainvisual .scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 140px;
  background: #fff;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 60px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 140px;
    opacity: 0;
  }
}


/*----------------------------------------------------------------------------------------------------

  subpage
  
----------------------------------------------------------------------------------------------------*/
/* visual */
.subpage #visual {
  width: 100%;
  padding: 88px;
  margin-top: 88px;
  box-sizing: border-box;
  background-color: #202020;
  background-repeat: no-repeat;
  background-image: url("../image/concept-bg-img.png");
  background-position: bottom right;
}
.subpage #visual h1::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 16px;
}
.subpage #visual h1 {
  color: #fff;
  font-size: 60px;
  line-height: 1;
}

/* パンくず */
.subpage .l-pan {
  padding-top: 1.25em;
}
.subpage .l-pan__list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  list-style: none;
  line-height: 2;
}
.subpage .l-pan__list li {
  display: inline;
  position: relative;
}
.subpage .l-pan__list li:not(:last-child) {
  padding-right: 1.25em;
}
.subpage .l-pan__list li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0.25em;
  background-color: #202020;
}

.subpage main {
  background-image: url("../image/menu-bg.png");
  background-repeat: no-repeat;
  background-position: right top;
}


/*----------------------------------------------------------------------------------------------------

  news
  
----------------------------------------------------------------------------------------------------*/
#news {
  min-height: 467px;
  padding: 64px 0;
  background-image: url("../image/news-bg.png");
  background-repeat: no-repeat;
  background-position: left top;
}

#news .news-list-wrap {
  display: flex;
}
#news .title-area {
  width: 300px;
}
#news .title-area h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #202020;
  margin-bottom: 16px;
}
#news .title-area h2 {
  line-height: 1;
}
#news .title-area .morelink {
  margin-top: 60px;
  position: relative;
  display: inline-block;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
#news .title-area .morelink::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  content: '';
  width: 100%;
  height: 1px;
  background: #202020;
  transform: scale(1, 1);
  transform-origin: center top;
  transition: transform .3s;
}
#news .title-area .morelink:hover::after {
  transform: scale(0, 1);
}
#news .title-area .morelink:hover {
  color: inherit;
}

#news .news-list {
  width: calc(100% - 300px);
  margin-top: 20px;
}
#news .news-list-box {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #bfbfbf;
}
#news .news-list-box:last-child {
  margin-bottom: 0;
}
#news a.news-list-box {
  color: inherit;
  text-decoration: none;
}
#news .news-list-box .img {
  width: 145px;
}
#news .news-list-box .content {
  width: calc(100% - 250px);
  min-height: 65px;
  margin: 0 20px;
  line-height: 1.4;
}
#news .news-list-box .cate-date {
  color: #909090;
}
#news .news-list-box .icon {
  width: 65px;
  opacity: .3;
}
#news a.news-list-box .icon {
  transition: .2s all;
}
#news a.news-list-box:hover .icon {
  opacity: 1;
}

#news .news-insta-btn {
  position: relative;
  display: block;
  width: 960px;
  height: 118px;
  box-sizing: border-box;
  margin: 80px auto 0;
  color: inherit;
  text-decoration: none;
}
#news .news-insta-btn:hover {
  filter: drop-shadow(0px 0px 0px #202020);
}
#news .news-insta-btn .check {
  position: absolute;
  top: -20px;
  left: 46px;
  z-index: 2;
}
#news .news-insta-btn .news-insta-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 960px;
  height: 118px;
  background-color: #fff;
  border: 1px solid #202020;
  filter: drop-shadow(10px 10px 0px #202020);
  transition: .2s all;
}
#news .news-insta-btn:hover .news-insta-box {
  filter: drop-shadow(0px 0px 0px #202020);
}
#news .news-insta-btn p {
  display: flex;
  align-items: center;
    line-height: 1.4;
}
#news .news-insta-btn p img {
  display: inline-block;
  margin-right: 1em;
}

@media screen and (max-width:1100px) {
  #news .title-area {
    width: 170px;
  }
  #news .news-list {
    width: calc(100% - 170px);
  }
  #news .news-insta-btn {
    width: calc(100% - 84px);
    margin-left: 42px;
    margin-right: 42px;
  }
  #news .news-insta-btn .news-insta-box {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
  }
}

@media screen and (max-width:960px) {
  #news .news-list-wrap {
    flex-wrap: wrap
  }
  #news .title-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #news .title-area .morelink {
    margin-top: 0;
  }
  #news .news-list {
    width: 100%;
    margin-top: 50px;
  }
}


/*----------------------------------------------------------------------------------------------------

  concept
  
----------------------------------------------------------------------------------------------------*/
#concept {
  width: 100%;
  height: 550px;
  background-color: #202020;
  background-repeat: no-repeat;
  background-image: url("../image/concept-bg-img.png");
  background-position: bottom right;
  color: #fff;
  margin-top: 150px;
}

#concept .concept-inner {
  width: 100%;
  max-width: 1580px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

#concept .concept-img {
  position: relative;
  top: -100px;
  left: 0;
  width: 52.152%;
  max-width: 824px;
  height: 550px;
}
#concept .concept-img01 {
  position: absolute;
  width: 81.675%;
  height: auto;
}
#concept .concept-img02 {
  position: absolute;
  bottom: -50px;
  right: 0;
}

#concept .concept-desc {
  width: 41.3924%;
  min-width: 482px;
}
#concept .concept-desc h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 16px;
}
#concept .concept-desc h2 {
  line-height: 1;
}
#concept .concept-desc p {
  margin-top: 40px;
  line-height: 2;
}

@media screen and (max-width:1670px) {
  #concept .concept-inner {
    width: calc(100% - 80px);
    margin: 0 40px;
  }
}

@media screen and (max-width:1200px) {
  #concept {
    margin-top: 100px;
  }
  #concept .concept-img {
    width: calc(100% - 532px);
    top: 30px;
  }
  #concept .concept-img01 {
    width: 80%;
  }
  #concept .concept-img02 {
    width: 80%;
    bottom: 60px;
  }
  #concept .concept-desc {
    width: 482px;
  }
}

@media screen and (max-width:1050px) {
  #concept .concept-img01 {
    width: 95%;
  }
  #concept .concept-img02 {
    width: 95%;
  }
}

@media screen and (max-width:960px) {
  #concept {
    height: 720px;
  }
  #concept .concept-inner {
    flex-wrap: wrap;
  }
  #concept .concept-img {
    top: 50px;
    width: 100%;
    max-width: inherit;
    display: flex;
    justify-content: space-between;
    height: auto;
  }
  #concept .concept-img01 {
    position: static;
    width: calc(50% - 25px);
    height: auto;
  }
  #concept .concept-img02 {
    position: static;
    width: calc(50% - 25px);
    height: auto;
  }
  #concept .concept-desc {
    width: 100%;
    margin-top: 100px;
  }
}

@media screen and (max-width:750px) {  
  #concept {
    height: 900px;
  }
  #concept .concept-img {
    top: 80px;
  }
  #concept .concept-desc {
    margin-top: 140px;
  }
}

/*----------------------------------------------------------------------------------------------------

  menu
  
----------------------------------------------------------------------------------------------------*/
#menu {
  min-height: 467px;
  padding: 220px 0 64px;
  background-image: url("../image/menu-bg.png");
  background-repeat: no-repeat;
  background-position: right top;
}

#menu h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #202020;
  margin-bottom: 16px;
}
#menu h2 {
  line-height: 1;
}

#menu .campaign {
  width: 100%;
  max-width: 903px;
  margin: 0 auto;
}
#menu .campaign .desc {
  padding-bottom: 10px;
  border-bottom: 1px dashed #202020;
  text-align: center;
}
#menu .campaign .note {
  margin-top: 10px;
  text-align: right;
}

#menu .menu-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

#menu .menu-box {
  width: calc(50% - 25px);
  max-width: 400px;
  margin-top: 50px;
}
#menu .menu-box h3 {
  background-color: #404040;
  color: #fff;
  font-weight: normal;
  text-align: center;
}
#menu .menu-box dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.4;
}
#menu .menu-box dt {
  width: calc(100% - 5em);
  margin-top: 1em;
}
#menu .menu-box dd {
  width: 5em;
  font-weight: 500;
  text-align: right;
  margin-top: 1em;
}
#menu .menu-box p {
  margin-top: 1em;
}

@media screen and (max-width:1010px) {
  #menu .campaign {
    margin-top: 25px;
  }
  #menu .campaign .desc {
    line-height: 2.5;
  }
}
@media screen and (max-width:900px) {    
  #menu .menu-box {
    width: 100%;
    max-width: inherit;
  }
  #menu .menu-box h3 {
    padding: .25em 0;
  }
}


/*----------------------------------------------------------------------------------------------------

  staff
  
----------------------------------------------------------------------------------------------------*/

#staff {
  position: relative;
  width: 100%;
  min-height: 580px;
  margin-top: 130px;
}
#staff .staff-bgcolor {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 420px;
  background-color: #202020;
  background-image: url("../image/staff-bg-img.png");
  background-position: top right;
  background-repeat: no-repeat;
}
#staff .staff-photo {
  position: absolute;
  top: -30px;
  right: 10%;
}

#staff h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #202020;
  margin-bottom: 16px;
}
#staff h2 {
  line-height: 1;
}

#staff .orner-profile {
  position: absolute;
  top: 210px;
  width: 33%;
  max-width: 640px;
}

#staff .orner-profile .name {
  position: relative;
  line-height: 1;
}
#staff .orner-profile .name .name-eng {
  color: #363636;
  font-size: 60px;
  font-weight: 500;
  font-style: italic;
}
#staff .orner-profile .name .name-jp {
  position: absolute;
  bottom: -6px;
  display: flex;
  align-items: center;
  color: #fff;
}
#staff .orner-profile .name .name-position {
  display: inline-block;
  margin-left: 24px;
  padding: .25em 1.5em;
  background-color: #fff;
  color: #202020;
}
#staff .orner-profile .greeting {
  margin-top: 40px;
  color: #fff;
}

@media screen and (max-width:1400px) {
  #staff .staff-photo {
    top: 160px;
    right: 36px;
    width: 420px;
    height: 420px;
  }
  #staff .orner-profile {
    width: calc(100% - 532px);
  }
}

@media screen and (max-width:1000px) {
  #staff {
    height: 1150px;
    min-height: inherit;
  }
  #staff .staff-bgcolor {
    height: 1000px;
  }
  #staff .staff-photo {
    width: 100%;
    height: 560px;
    position: absolute;
    top: 200px;
    bottom: auto;
    right: auto;
    left: auto;
    margin: 0 auto;
    text-align: center;
  }
  #staff .orner-profile {
    top: inherit;
    bottom: 42px;
    width: calc(100% - 82px);
    max-width: inherit;
  }
}
@media screen and (max-width:750px) {
  #staff {
    height: 1280px;
  }
  #staff .staff-bgcolor {
    height: 1130px;
  }
  #staff .orner-profile .name .name-eng {
    font-size: 80px;
  }
}


/*----------------------------------------------------------------------------------------------------

  salon
  
----------------------------------------------------------------------------------------------------*/

#salon {
  margin-top: 80px;
}

#salon .salon-info-wrap {
  display: flex;
  justify-content: space-between;
}
#salon .salon-info-box {
  width: calc(50% - 40px);
}
#salon .salon-info-box h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #202020;
  margin-bottom: 16px;
}
#salon .salon-info-box h2 {
  line-height: 1;
}
#salon .salon-photo {
  margin-top: 80px;
}

#salon .salon-name {
  display: flex;
  align-items: center;
}
#salon .salon-name .salon-logo {
  display: inline-block;
  margin-right: 30px;
}

#salon .salon-info-list {
  margin-top: 60px;
}
#salon .salon-info-list dl {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #aaa;
}
#salon .salon-info-list dl:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
#salon .salon-info-list dt {
  height: 1em;
  width: 6em;
  padding-left: .5em;
  box-sizing: border-box;
  border-left: 3px solid #202020;
  font-weight: 500;
  line-height: 1;
}
#salon .salon-info-list dd {
  width: calc(100% - 6em);
  line-height: 1.4;
}
#salon .salon-info-list dd .tel {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
}
#salon .salon-info-list dd .tel img {
  display: inline-block;
  width: 16px;
  margin-right: 8px;
}

#salon .salon-reserve {
  margin-top: 90px;
  text-align: center;
}
#salon .salon-reserve .reserve-tel {
  width: 480px;
  margin: 50px auto 0;
}
#salon .salon-reserve .reserve-tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  font-weight: 500;
  margin: 0 auto;
  line-height: 1;
}
#salon .salon-reserve .reserve-tel a img {
  display: inline-block;
  margin-right: 16px;
}
#salon .salon-reserve .opentime {
  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
  margin-top: 10px;
}

@media screen and (max-width:1050px) {
  #salon .salon-name .salon-logo {
    margin-right: 40px;
    margin-bottom: 10px;
  }
  #salon .salon-name {
    flex-wrap: wrap;
  }
}
@media screen and (max-width:910px) {
  #salon .salon-info-wrap {
    flex-wrap: wrap;
  }
  #salon .salon-info-box {
    width: 100%;
  }
  #salon .salon-photo {
    display: block;
    margin: 60px auto;
  }
}
@media screen and (max-width:750px) {
  #salon .salon-info-list dd .tel {
    font-size: 29px;
  }
  #salon .salon-info-list dd .tel img {
    width: 24px;
  }
  #salon .salon-reserve .reserve-tel {
    width: 100%;
  }
}


/*----------------------------------------------------------------------------------------------------

  access
  
----------------------------------------------------------------------------------------------------*/

#access {
  padding: 64px 0;
  margin-top: 120px;
  background-image: url("../image/access-bg.jpg");
  background-position: top center;
  background-repeat: no-repeat;
}

#access h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #202020;
  margin-bottom: 16px;
}
#access h2 {
  line-height: 1;
}

#access .gmap {
  margin-top: 60px;
}
#access .gmap iframe {
  width: 100%;
  height: 470px;
}


/*----------------------------------------------------------------------------------------------------

  Footer
  
----------------------------------------------------------------------------------------------------*/
footer {
  padding: 106px 0;
  background-color: #202020;
  color: #fff;
}

footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .ft-salonname address {
  font-style: normal;
  margin-top: 24px;
}
footer .ft-salonname .insta-btn {
  margin-top: 60px;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
footer .ft-salonname .insta-btn::after {
  position: absolute;
  left: 0;
  bottom: -0.75em;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
footer .ft-salonname .insta-btn:hover::after {
  transform: scale(1, 1);
}
footer .ft-salonname .insta-btn:hover {
  color: inherit;
}
footer .ft-salonname .insta-btn .insta-icon {
  margin-right: .5em;
}

footer .ft-saloninfo .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #fff;
  background-color: rgba(255,255,255,.1);
  line-height: 1;
  transition: .2s;
}
footer .ft-saloninfo .tel:hover {
  background-color: rgba(255,255,255,.2);
}
footer .ft-saloninfo .tel img {
  display: inline-block;
  margin-right: 12px;
}
footer .ft-saloninfo dl {
  margin-top: 60px;
  line-height: 1.4;
}
footer .ft-saloninfo dt {
  margin-top: 1em;
  padding-left: .5em;
  border-left: 2px solid #fff;
  line-height: 1;
}
footer .ft-saloninfo dd {
  margin-top: .25em;
}

@media screen and (max-width:1150px) {
  footer .inner {
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  footer .ft-salonname {
    width: calc(50% - 25px);
  }
  footer .ft-saloninfo {
    width: calc(50% - 25px);
  }
  footer .ft-photo {
    width: 100%;
    max-width: 432px;
    margin: 50px auto 0;
  }
}

@media screen and (max-width:750px) {
  footer .ft-salonname {
    width: 259px;
  }
  footer .ft-saloninfo {
    width: calc(100% - 310px);
  }
}


/*--------------------------------------------------------------------------------
  back to top
--------------------------------------------------------------------------------*/
.l-backtoTop-wrap {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  min-width: 700px;
  pointer-events: none;
  text-align: right;
}
.l-backtoTop {
  display: inline-block;
  pointer-events: auto;
  width: 88px;
  height: 88px;
  cursor: pointer;
}
.l-backtoTop-wrap.is-noFix {
  position: absolute;
  bottom: inherit;
  left: 0 !important;
}
.l-backtoTop__icon {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-backtoTop__icon:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 7px;
  border-top: 1px solid #202020;
  border-right: 1px solid #202020;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l-backtoTop-wrap.is-scrFt .l-backtoTop__icon:after {
  border-top-color: #fff;
  border-right-color: #fff;
}
@media screen and (max-width:640px) {
  .l-backtoTop-wrap {
    display: none !important;
  }
}


/*--------------------------------------------------------------------------------
  fancybox
--------------------------------------------------------------------------------*/
.fancybox-slide {
  overflow: hidden !important;
  height: 85vh !important;
}
.fancybox-content {
  max-height: 85vh !important;
}
.compensate-for-scrollbar {
  margin-right: 0 !important;
}
.fancybox-button {
  background-color: #FF6868 !important;
  color: #fff !important;
}