@charset "UTF-8";

/* ===================================================================================
基本設定
=================================================================================== */

* {
  box-sizing: border-box;
}

body {
  font-family: "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #000;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}

a {
  cursor: pointer;
  pointer-events: all;
  transition: 0.3s;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.pc-only {
  display: none;
}

.sp-only {
  display: block;
}

.position_re {
  position: relative;
}

/* ===================================================================================
コンテンツ全体
=================================================================================== */
.wrapper_main {
  box-shadow: 0px 2px 10px -7px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  /* overflow: hidden; */
}

/* ===================================================================================
コンテンツごとの設定
=================================================================================== */

/* fv====================================================================== */
.cta_btn_01 {
  width: 656px;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .cta_btn_01 {
    width: 85.41vw;
    bottom: 9.114vw;
  }
}

/* cta====================================================================== */

.cta_btn_02 {
  width: 656px;
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .cta_btn_02 {
    width: 85.41vw;
    bottom: 8.463vw;
  }
}

.shop_list {
  background-image: url("../images/shop_bg.jpg");
  background-size: cover;        /* 要素にぴったり or 拡大縮小して全体表示 */
  background-position: center;   /* 中央寄せ */
  background-repeat: no-repeat;  /* 繰り返さない */
  padding: 0 15px 30px;
}
@media screen and (max-width: 768px) {
  .shop_list {
    padding: 0 1.953vw 3.906vw;
  }
}

.shop_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.shop_list ul li {
  width: 353px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .shop_list ul li {
    width: 45.96vw;
  }
}

.shop_list ul li .salon_name {
  position: absolute;
  width: 100%;
  bottom: 250px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  font-size: 34px;
  font-weight: bold;
  color: #382425;
}
.shop_list ul li .salon_name.sm {
  font-size: 26px;
  bottom: 255px;
}
@media screen and (max-width: 768px) {
  .shop_list ul li .salon_name {
    bottom: 32.55vw;
    font-size: 4.427vw;
  }
  .shop_list ul li .salon_name.sm {
    font-size: 3.385vw;
    bottom: 33.20vw;
  }
}

.shop_list ul li .salon_adress {
  position: absolute;
  width: 100%;
  top: 290px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  font-size: 23px;
  font-weight: bold;
  color: #382425;
  line-height: 1.5;
}
.shop_list ul li .salon_adress.fssm {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .shop_list ul li .salon_adress {
    top: 37.76vw;
    font-size: 2.994vw;
  }
  .shop_list ul li .salon_adress.fssm {
    font-size: 2.604vw;
  }
}


.shop_list ul li .shop_btn {
  position: absolute;
  width: 299px;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .shop_list ul li .shop_btn {
    bottom: 5.859vw;
    width: 38.93vw;
  }
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  justify-content: center;
  background: #e8e8e8;
}
footer ul li:first-child {
  margin-right: 20px;
}
footer ul li a {
  color: #000;
}
@media screen and (max-width: 768px) {
  footer ul li a {
    font-size: 3.2vw;
  }
}