@charset "UTF-8";
/* ========================================

  SALON CSS

======================================== */
@media screen and (min-width: 601px) {
  .intro{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 140px auto 0;
  }
  .intro h4.jp{
    line-height: 2;
  }
  .intro--left{
    width: 54%;
  }
  .intro--right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 36%;
    margin-top: 130px;
  }
  .intro--right .photo{
    margin-top: 130px;
  }
  
  /*salon*/
  .salon{
    display: flex;
    justify-content: space-between;
  }
  .salon table{
    margin-top: 30px;
    width: 100%;
    border-top: solid 1px #F0F0F0;
  }
  .salon th,
  .salon td{
    padding: 30px 0;
    border-bottom: solid 1px #F0F0F0;
    font-weight: normal;
    vertical-align: middle;
    line-height: 1.8;
  }
  .salon th{
    width: 38%;
  }
  .salon div{
    width: 45%;
  }
  
  /*map*/
  .map__wrap{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
  }
  .map__wrap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  .intro{
    margin: 80px auto 0;
  }
  .intro h4.jp{
    line-height: 2;
  }
  .intro--left{
    width: 60%;
  }
  .intro--right{
    margin-top: 80px;
  }
  .intro--right h4{
    text-align: center;
  }
  .intro--right .photo{
    margin-top: 80px;
    text-align: right;
  }
  .intro--right .photo img{
    width: 50%;
  }
  
  .salon table{
    margin-top: 30px;
    width: 100%;
    border-top: solid 1px #F0F0F0;
  }
  .salon th,
  .salon td{
    padding: 30px 0;
    border-bottom: solid 1px #F0F0F0;
    font-weight: normal;
    vertical-align: middle;
    line-height: 1.8;
  }
  .salon th{
    width: 30%;
  }
  .salon div + div{
    margin-top: 80px;
  }
  
  /*map*/
  .map__wrap{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
  }
  .map__wrap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}


.view_flow a{
  background: #505A5F;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 8px 20px 10px;
  border-radius: 40px;
  white-space: nowrap;
}
.view_flow span::after{
  content: "";
  display: inline-block;
  background-image: url("../../common/img/viewmore_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 7px;
  margin-left: 5px;
  margin-bottom: 1px;
}
@media screen and (min-width: 601px) {
  .view_flow a{
    transition-duration: .4s;
    transition-property: background;
  }
  .view_flow a:hover{
    background: #A3ACB1;
  }
}
