/* ▼▼全般▼▼ */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333333;
}

img {
  width: 100%;
}

h2 {
  font-size: 24px;
  font-family: kazuraki-sp2n, serif;
  font-weight: 300;
  font-style: normal;
  display: inline-block;
  margin: 0 auto 50px auto;
  display: table;
}

h2:not(.more-text) {
  border-bottom: solid 0.5px #333;
  padding-top: 50px;
}

li,p {
  font-family: fot-klee-pro, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
}

li {
  list-style: none;
}

.navi-pc {
  margin: 0 0 auto auto;
  display: none;
  line-height: 90px;
}

.navi-pc li {
  font-size: 16px;
  color: #770000;
  font-family: fot-rodin-pron, sans-serif;
  font-weight: 600;
  display: inline;
  font-style: normal;
  cursor: pointer;
}

.navi-pc a {
  margin-right: 30px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  line-height: 35px;
}

.navi-pc a::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #770000;
  transition: all 0.3s ease 0s;
}

.navi-pc a:hover {
  cursor: pointer;
}

a:hover {
  cursor: pointer;
}

.navi-pc a:hover::after {
  width: 100%;
}

.navi-pc a:last-child {
  margin-right: 0;
}


.fadein {
  opacity: 0;
  transform : translate(0, 50px);
  transition : all 1500ms;
}

.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}

main {
  margin-top: 65px;
}

h3 {
  font-family: fot-matisse-pron, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}

/* ▼▼ヘッダー▼▼ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: white;
  z-index: 10;
  box-shadow: 1px 1px 10px 1px grey;
}

.header-container {
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 30px;
}

/* ▼▼店のロゴ▼▼ */
.header_store-logo {
  line-height: 65px;
}

h1 {
  font-family:'Poiret One';
  font-size: 32px;
}

h1 {
  color: #770000;
  line-height: 65px;
}

/* ▼▼ナビバー▼▼ */
.navibar ,.close {
  display: table;
  margin-left: auto;
  line-height: 65px;
}

.navibar {
  position: relative;
  height: 24px;
  width: 35px;
  display: inline-block;
  box-sizing: border-box;
  line-height: 30px;
  margin: auto 0 auto auto;
}

.navibar div {
  position: absolute;
  left: 0;
  height: 4px;
  width: 35px;
  background-color: #770000;
  border-radius: 2px;
  display: inline-block;
  box-sizing: border-box;
}

#bar1 {
  top: 0;
}

#bar2 {
  top: 10px;
}

#bar3 {
  bottom: 0;
}

/* ▼▼ナビリスト▼▼ */
.navi-list li {
  list-style: none;
  font-family: fot-rodin-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  height: 65px;
  opacity: 0.8;
  text-align: center;
  vertical-align: middle;
  margin: 0;
  line-height: 65px;
  vertical-align: middle;
}

.navi-list li {
  color: white;
  font-size: 18px;
  text-decoration: none;
}

.odd {
  background-color: #770000;
}

.even {
  background-color: #912323;
}

.navi-list {
  position: fixed;
  top: 65px;
  right: 0;
  z-index: 10;
  width: 50%;
  margin: 0 0 0 auto;
  display: none;
}

/* ▼▼ヘッダーweb予約▼▼ */
.header_reservation {
  position: absolute;
  left: 50%;
  line-height: 65px;
  width:70px;
}

.header_reservation h3 {
  color: white;
  text-align: center;
  font-size: 14px;
}

.header_reservation {
  background-color: #770000;
}

/* ▼▼メインビジュアル▼▼ */
.slideshow {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.slideshow img {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 282px;
  opacity: 0;
  animation: slideAnime 18s ease infinite;
}

.slideshow img:nth-of-type(1) {
  object-fit: cover;
  animation-delay: 0s;
}

/* ▼▼スライドショーアニメーション▼▼ */
@keyframes slideAnime {

  0% { opacity: 0 }
  16% { opacity: 1 }
 33% { opacity: 1 }
 49% { opacity: 0 }
100% { opacity: 0 }

}

.slideshow img:nth-of-type(1) {
  animation-delay: 0s;
}

.slideshow img:nth-of-type(2) {
  object-fit: cover;
  object-position: 50% 30%;
  animation-delay: 6s;
}

.slideshow img:nth-of-type(3) {
  object-fit: cover;
  object-position: 100% 50%;
  animation-delay: 12s;
}

/* ▼▼インフォメーション▼▼ */
.information {
  background-color:#FFEFE8;
}

.information-container {
  padding: 0 30px 50px 30px;
}

.information-container li:not(:last-child) {
  margin-bottom: 35px;
}

/* ▼▼コンセプト▼▼ */
.concept-container {
  margin: 50px 30px 50px 30px;
}

.concept-top {
  position: relative;
  margin-bottom: 50px;
}

.concept-top h3 {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #333;
}

.number {
  font-size: 60px;
  color: #F2F2F2;
  height: 60px;
  line-height: 60px;
  vertical-align: middle;
}

.concept-title {
  margin-bottom: 10px;
}

.concept2 .concept-title {
  text-align: left;
}

.concept-title h3 {
  vertical-align: middle;
  display: block;
}

.concept-title h3:not(.number) {
  padding-left: 40px;
} 

.concepts img  {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.concepts p {
  display: inline-block;
  width: 100%;
  line-height: 1.7;
  vertical-align: top;
  margin-top: 10px;
}

.concept-list {
  margin-bottom: 40px;
}

/* ▼▼カラーギャラリー▼▼ */
.color-gallery-container {
  margin: 0 30px 100px 30px;
}

.color-list {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

.color-list p {
  text-align: left;
  margin-top: 5px;
}


.color-list h3 {
  margin-bottom: 10px;
}

.white-shadow {
  position: absolute;
  top: 90%;
  left: auto;
  right: auto;
}

.color-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.color3 img {
  object-fit: cover;
  object-position: 90% 50%;
}

.link-box {
  border: solid 0.5px #770000;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
}

.link-text, .copyright-text {
  color: #770000;
}

/* ▼▼more▼▼ */
.more-container {
  margin: 0 30px 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}

.more-contents-container {
  margin-bottom: 20px;
  flex-basis: 47%;
}

.more-contents {
  position: relative;
}

.black-filter {
  background-color: black;
  display: inline-block;
}

.colorfilter-image {
  opacity: 0.5;
  display: block;
  height: 120px;
  object-fit: cover;
}

.more-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform : translate(-50%,-50%);
  margin: auto;
  color: white;
}

/* ▼▼アクセス▼▼ */

.access-container {
  margin: 0 30px 100px 30px;
}

.google-map {
  width: 100%;
  height: 200px;
  overflow: hidden; 
  margin: 0 auto;
}

.salon-detail {
  margin-top: 20px;
}

/* ▼▼web予約▼▼ */
.reservation {
  margin: 0 30px 40px 30px;
}

/* ▼▼sns▼▼ */
.sns {
  margin: 0 30px 150px 30px;
  display: flex;
  justify-content:space-between;
}

.sns img {
  width: 50px;
  height: auto;
}

/* ▼▼トップへ戻るボタン▼▼ */
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #333;
  opacity: 0.6;
  border-radius: 50%;
  }

#page_top a {
  /* position: relative; */
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 24px;
  color: #fff;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* ▼▼フッター▼▼ */
.footer-container {
  width: 100%;
  height: 65px;
  background-color: white;
  box-shadow: 1px 1px 10px 1px grey;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.copyright-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);
  text-align: center;
}

/* ▼▼menu.html▼▼ */
.menu-container {
  margin: 0 30px 100px 30px;
}

.menu-container > p {
  margin-bottom: 20px;
}

.menu-type {
  padding-left: 15px;
  border-left: solid 8px #770000;/*左線*/
  margin-bottom: 15px;
  font-size: 24px;
  font-size: 24px;
  font-family: kazuraki-sp2n, serif;
  font-weight: 300;
}

.menu-list-container:nth-child(even) {
  background-color: #FFEFE8;
}

.menu-list-container:nth-child(odd) {
  background-color: #FFF6F2;
}

.menu-list-container {
  min-height: 100px;
  padding: 15px 0 15px 0;
}

.menu-name-price {
  display: flex;
  border-bottom: solid 0.5px;
  justify-content:space-between;
  padding: 0 15px 15px 15px;
  font-size: 16px;
}


.menu-name, .menu-name-price p {
  font-family: fot-klee-pro, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
}

.menu-list-container > p {
  margin-top: 15px;
  margin-left: 15px;
  margin-right: 15px;
}

.menu-type-container {
  margin-top: 50px;
}

.menu-type-container-color {
  margin-bottom: 50px;
}

/* ▼▼color-gallery.html▼▼ */
.color-selector li {
  vertical-align: middle;
  line-height: 35px;
}

.color-selector ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.selector-box {
  border: solid 0.5px #770000;
  width: 45%;
  height: 35px;
  text-align: center;
  color: #770000;
  font-family: fot-matisse-pron, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  margin-bottom: 20px;
}

.color-name {
  text-align: center;
  margin-bottom: 10px;
}

.color-image-container {
  margin-top: 50px;
  position: relative;
  text-align: center;
}

.color-image-container img {
  width: 100%;
  height: auto;
  max-height: 210px;
  object-fit: cover;
}

.impression {
  position: absolute;
  text-shadow: white 1px 1px 10px, white -1px 1px 10px,
  white 1px -1px 10px, white -1px -1px 10px;
  font-size: 18px;
  top: 60%;
  left: 0;
  right: 0;
  margin: auto;
}

.impression-detail {
  text-align: left;
}

.color-gallery-detail-container {
  margin: 0 30px 50px 30px;
}

.selected {
  background-color: #770000;
  color: white;
}

.image-orange-beige,.image-blue-black {
  display: none;
}

/* ▼▼style.html▼▼ */
.style-container {
  margin: 0 30px 50px 30px; 
}

.style-list-container {
  margin-bottom: 50px;
}

.style-selector li {
  vertical-align: middle;
  line-height: 30px;
}

.style-selector ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.style-images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.style-images img {
  width: 45%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 50px;
}

.image1 {
  object-position: 45% 50%;
}

.image3 {
  object-position: 70% 55%;
}

.image4 {
  object-position: 100% 50%;
}

.image5 {
  object-position: 15% 70%;
}

.image6 {
  object-position: 100% 50%;
}

.image1, .image2, .image3, .image4, .image5, .image6 {
  display: none;
}

/* ▼▼salon.html▼▼ */
.salon-container {
  margin: 65px 30px 50px 30px;
}

.salon-slide {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.slide1 {
  object-position: 20% 100%;
}

/* ▼▼staff.html▼▼ */

.staff-container {
  margin: 0 30px 50px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}

.staff-data {
  width: 45%;
  text-align: center;
  margin-bottom: 30px;
}

.staff-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.staff-image1 {
  object-position: 85% 50%;
}

.staff-image3 {
  object-position: 40% 80%;
}

/* ▼▼staff1.html▼▼ */
.staff-detail-container {
  margin: 0 30px 50px 30px;
}

.staff-detail-name {
  margin-bottom: 50px;
  text-align: center;
}

.staff-profil {
  margin-bottom: 25px;
}

.staff-profil-name {
  border-bottom: solid 0.5px;
}

.staff-detail-image {
  width: 100%;
  height: 333px;
  object-fit: cover;
}

.staff-detail-image1 {
  object-position: 90% 50%;
}

.style-collection {
  text-align: center;
  margin: 50px 0 70px 0;
  width: 100%;
}

.style-collection-slide {
  height: 333px;
  object-fit: cover;
}

.style-slide1 {
  object-position: 75% 50%;
}

.style-collection-title {
  margin-bottom: 50px;
}

.staff-reservation {
  font-size: 16px;
}

.link-box-staff h3 {
  font-size: 16px;
}

/* ▼▼staff2.html▼▼ */

.staff-detail-image2 {
  object-position: 50% 0%;
}

.style-slide4 {
  object-position: 50% 0%;
}

/* ▼▼staff3.html▼▼ */
.staff-detail-image3 {
  object-position: 35% 0%;
}

.style-slide6 {
  object-position: 40% 0%;
}

/* ▼▼staff4.html▼▼ */
.style-slide7 {
  object-position: 100% 0%;
}

.style-slide8 {
  object-position: 10% 0%;
}


/* ▼▼レスポンシブ対応▼▼ */

/* 560px〜959px：タブレット
------------------------------ */
@media screen and (min-width:560px) and (max-width:959px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
    margin: 0 auto 50px auto;
  }

  .header-reservation {
    font-size: 20px;
  }

  .navi-list {
    font-size: 16px;
  }

  li,p {
    font-size: 16px;
  }

  h3 {
    font-size: 26px;
  }

  .number {
    font-size: 100px;
  }

  #page_top a::before {
    font-size: 34px;
  }

  .menu-type {
    font-size: 24px;
  }

  .menu-type-container {
    margin-bottom: 100px;
  }

  .menu-name, .menu-name-price p, .staff-profil-name {
    font-size: 18px;
  }

  .selector-box {
    font-size: 22px;
  }

  .header_reservation h3 {
    font-size: 20px;
  }

  /* 全体 */
  .all-container {
    margin-left: 50px;
    margin-right: 50px;
  }

  .header-container {
    margin: auto 70px;
  }

  .header_reservation {
    width: 20vw;
  }

  .navibar {
    height: 40px;
    width: 58px;
    line-height: 40px;
  }
  
  .navibar div {
    height: 6px;
    width: 58px;
  }
  
  #bar2 {
    top: 17px;
  }

  .header {
    height: 90px;
  }
  
  .header-container {
    height: 90px;
  }

  .header_reservation {
    width: 100px;
  }

  main {
    margin-top: 90px;
  }

  h1 {
    line-height: 90px;
  }

  .header_reservation {
    line-height: 90px;
  }

  .navi-list {
    top: 90px;
  }

  .navi-list li {
    height: 90px;
    line-height: 90px;
  }

  .footer-container {
    height: 90px;
  }

  .access-container {
    max-width: 600px;
    margin: 0 auto 100px auto;

  }

  .sns {
    margin: 0 120px 150px 120px;
  }

.sns img {
  width: 70px;
  height: auto;
}

#page_top {
  width: 70px;
  height: 70px;
}

#page_top a::before {
  width: 50px;
  height: 50px;
}

  /* index.html */
  .slideshow {
    height: 500px;
  }

  .slideshow img {
    height: 500px;
  }

  .information-container {
    padding: 0 80px 50px 80px;
  }

  .concept-top ,.concept-list{
    margin-bottom: 60px;
  }

  .concept-top img {
    max-height: 420px;
    object-fit: cover;
  }

  .concepts img {
    height: auto;
    max-height: 420px;
    max-width: 500px;
    object-fit: cover;
  }

  .concept-list-image-container {
    text-align: center;
  }

  .concept-container {
    max-width: 500px;
    margin: 50px auto 50px auto;
  }

  .color-gallery-container {
    margin: 0 auto 100px auto;
    max-width: 500px;
  }

  .color-image {
    max-height: 500px;
    height: 600px;
  }

  .color-image1 {
    object-position: 50% 0%;
  }

  .color-image2 {
    object-position: 50% 40%;
  }

  .colorfilter-image {
    height: 30vw;
  }

  .access-container {
    display: flex;
  }

  .google-map {
    width: 50%;
    height: 350px;
    text-align: left;
  }

  .reservation {
    max-width: 500px;
    margin: 0 auto 40px auto;
  }

  .salon-detail {
    margin-left: 10px;
    width: 50%;
  }

  /* color-gallery.html */
  .selector-box {
    height: 60px;
    font-size: 2.5vw;
  }

  .color-selector li {
    line-height: 60px;
  }

  .color-image-container img {
    max-height: 420px;
    object-fit: cover;
}

.color-list p {
  text-align: center;
}




  /* menu.html */
.menu-list-container {
  min-height: 150px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.menu-list-container p {
  margin-left: 15px;
  margin-right: 15px;
}

  /* style.html */
.image7 {
  object-position: 50% 0%;
}

  /* salon.html */
.salon-container {
  max-width: 600px;
  margin: 65px auto 50px auto;
}

.salon-detail p {
  margin-bottom: 15px;
}

.salon-slide {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.style-selector li {
  line-height: 60px;
}

.style-images img {
  height: 400px;
}


  /* staff.html */
.staff-image {
  height: 420px;
}

.staff-image2 {
  object-position: 50% 0%;
}

  /* staff1~4.html */
  .staff-detail-image {
    height: 420px;
}

.style-collection-slide {
  height: 420px;
}

.style-slide7 {
  object-position: 100% 60%;
}

.staff-detail-container {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.link-box-staff h3 {
  font-size: 26px;
}



}


/* 960px〜：PC
------------------------------ */
@media screen and (min-width:960px) {
/* ▼▼▼▼▼▼▼▼▼▼全体▼▼▼▼▼▼▼▼▼▼ */
.header {
  height: 90px;
}

h1 {
  line-height: 90px;
}

.header-container {
  margin: auto 100px;
  height: 90px;
}

.navibar {
  display: none;
}

.all-container {
  margin-left: 100px;
  margin-right: 100px;
}

.header_reservation {
  position: relative;
  margin-left: 50px;
  margin-right: auto;
  left: auto;
  line-height: 90px;
}

.navi-pc {
  display: block;
}

.slideshow {
  height: 62.5vw;
}

.main {
  margin-top: 90px;
}

h2 {
  margin: 0 auto 100px auto;
}

.header_reservation {
  width: 100px;
}

/* ▼▼▼▼▼▼▼▼▼▼フォンサイズ▼▼▼▼▼▼▼▼▼▼ */
h1 {
  font-size: 46px;
}

h2 {
  font-size: 38px;
}

.header-reservation {
  font-size: 20px;
}

.navi-list {
  font-size: 16px;
}

li,p {
  font-size: 16px;
}

h3 {
  font-size: 26px;
}

.number {
  font-size: 100px;
}

#page_top a::before {
  font-size: 35px;
}

.menu-type {
  font-size: 24px;
}

.menu-name, .menu-name p, .staff-profil-name {
  font-size: 18px;
}

.selector-box {
  font-size: 22px;
}

.header_reservation h3 {
  font-size: 20px;
}


/* ▼▼▼▼▼▼▼▼▼▼main-visual▼▼▼▼▼▼▼▼▼▼ */
.slideshow img {
  height: 62.5vw;
}

/* ▼▼▼▼▼▼▼▼▼▼information▼▼▼▼▼▼▼▼▼▼ */
.information-container {
  padding: 0 30vw 50px 30vw;
}

/* ▼▼▼▼▼▼▼▼▼▼concept▼▼▼▼▼▼▼▼▼▼ */
.concept-container {
  margin: 150px auto 200px auto;
  width: 810px;
}

.concept-top {
  margin-bottom: 150px;
}

.concept-list {
  margin-bottom: 150px;
}

.concept1 {
  position: relative;
  width: 810px;
  height: 500px;
}

.concept1 .concept-list-image-container {
  height: 500px;
  position: absolute;
  top: 0;
  left: 0;
}

.concept1 .concept-title {
  position: absolute;
  top: 50px;
  left: 430px;
}

.concept1 p {
  position: absolute;
  bottom: 50px;
  left: 470px;
  width: 310px;
  height: 100px;
}

.concepts img {
  height: 500px;
  width: 400px;
}

.concept-title h3:last-child {
  margin-top: 10px;
}

.concept-image1 {
  object-position: 30% 0%;
}





.concept2 {
  position: relative;
  width: 810px;
  height: 500px;
}

.concept2 .concept-list-image-container {
  height: 500px;
  position: absolute;
  top: 0;
  right: 0;
}

.concept2 .concept-title {
  position: absolute;
  top: 50px;
  left: 0;
}

.concept2 p {
  position: absolute;
  bottom: 50px;
  left: 40px;
  width: 310px;
  height: 100px;
}

.concept2 h3, .concept2 .number, .concept2 p {
  margin-right: 50px;
}






 
.concept3 {
  position: relative;
  width: 810px;
  height: 500px;
}

.concept3 .concept-list-image-container {
  height: 500px;
  position: absolute;
  top: 0;
  left: 0;
}

.concept3 .concept-title {
  position: absolute;
  top: 50px;
  left: 430px;
}

.concept3 p {
  position: absolute;
  bottom: 50px;
  left: 470px;
  width: 310px;
  height: 100px;
}

/* ▼▼▼▼▼▼▼▼▼▼color-gallery▼▼▼▼▼▼▼▼▼▼ */
.color-gallery-container {
  margin: 0 auto 200px auto;
  width: 810px;
}

.color1 {
  position: relative;
  width: 810px;
  height: 500px;
}

.color-image1 {
  height: 500px;
  width: 400px;
  position: absolute;
  top: 0;
  left: 0;
}

.color1 .color-name {
  position: absolute;
  top: 120px;
  left: 460px;
}

.color1 p {
  position: absolute;
  bottom: 120px;
  left: 460px
}





.color2 {
  position: relative;
  width: 810px;
  height: 500px;
}

.color-image2 {
  height: 500px;
  width: 400px;
  position: absolute;
  top: 0;
  right: 0;
}

.color2 .color-name {
  position: absolute;
  top: 120px;
  left: 100px;
}

.color2 p {
  position: absolute;
  bottom: 120px;
  left: 100px
}





.color3 {
  position: relative;
  width: 810px;
  height: 500px;
}

.color-image3 {
  height: 500px;
  width: 400px;
  position: absolute;
  top: 0;
  left: 0;
}

.color3 .color-name {
  position: absolute;
  top: 120px;
  left: 460px;
}

.color3 p {
  position: absolute;
  bottom: 120px;
  left: 460px
}

.color-list {
  margin-bottom: 150px;
}

/* ▼▼▼▼▼▼▼▼▼▼more▼▼▼▼▼▼▼▼▼▼ */
.more-container {
  margin: 0 auto 150px auto;
  width: 810px;
}

.more-contents-container {
  flex-basis: auto;
  margin-bottom: 70px;
}

.colorfilter-image {
  width: 350px;
  height: 280px;
}

.more-contents:hover{
  opacity: 0.6;
  filter: brightness(110%);
}

.more-contents {
  cursor: pointer;
}

.more-contents img {
  transition: 0.3s;
}

.more-contents  {
  transition: 0.5s;
}

.more-contents:hover  {
  transform: scale(1.03);
}


/* ▼▼▼▼▼▼▼▼▼▼access▼▼▼▼▼▼▼▼▼▼ */
.access-container {
  display: flex;
  width: 810px;
  height: 500px;
  margin: 0 auto 200px auto;
}

.google-map {
  height: 500px;
  width: 400px;
}

.salon-detail {
  margin-top: 120px;
  margin-bottom: 120px;
  width: 380px;
  height: 500px;
}

.salon-detail p {
  margin-bottom: 15px;
}

/* ▼▼▼▼▼▼▼▼▼▼web予約▼▼▼▼▼▼▼▼▼▼ */
.link-box {
    width: 300px;
    height: 90px;
    margin: 0 auto 100px auto;
}


.link-box:hover {
  background-color: #770000;
}

.link-box:hover .link-text {
  color: white;
}

.link-box {
  cursor: pointer;
}

.link-box, .link-text  {
  transition: 0.3s;
}

/* ▼▼▼▼▼▼▼▼▼▼sns▼▼▼▼▼▼▼▼▼▼ */
.sns {
  margin: 0 auto 200px auto;
  width: 500px;
}

/* ▼▼▼▼▼▼▼▼▼▼page-top▼▼▼▼▼▼▼▼▼▼ */
#page_top {
  width: 80px;
  height: 80px
}

/* ▼▼▼▼▼▼▼▼▼▼menu.html▼▼▼▼▼▼▼▼▼▼ */
.menu-container {
  width: 760px;
  margin: 50px auto 200px auto;
}

.menu-type-container {
  margin-top: 0px;
  margin-bottom: 100px;
}

.menu-type-container-cut {
  margin-top: 50px;
}

.menu-container h2 {
  margin-bottom: 50px;
}

/* ▼▼▼▼▼▼▼▼▼▼style.html▼▼▼▼▼▼▼▼▼▼ */
.style-container {
  width: 760px;
  margin: 100px auto 20px auto;
}

.selector-box {
  width: 170px;
  height: 50px;
}

.style-selector li {
  line-height: 50px;
}

.selector-box {
  cursor: pointer;
}

.style-images img {
  height: 500px;
  width: 350px;
}

/* ▼▼▼▼▼▼▼▼▼▼salon.html▼▼▼▼▼▼▼▼▼▼ */
.salon-container {
  margin: 65px auto 100px auto;
  width: 760px;
}

.salon-slide {
  height: 650px;
}

/* ▼▼▼▼▼▼▼▼▼▼staff.html▼▼▼▼▼▼▼▼▼▼ */
.staff-container {
  width: 760px;
  margin: 0 auto 100px auto;
}

.staff-image {
  width: 362px;
  height: 482px;
}

.staff-image2 {
  object-position: 50% 0%;
}

.staff-image:hover {
  opacity: 0.7;
  filter: brightness(105%);
}

.staff-image {
  transition: 0.5s;
  margin-bottom: 20px;
}

.staff-image:hover  {
  transform: scale(1.03);
}

.staff-data {
  margin-bottom: 100px;
}


/* ▼▼▼▼▼▼▼▼▼▼staff1〜staff4.html▼▼▼▼▼▼▼▼▼▼ */
.staff-detail-container {
  width: 500px;
  margin: 0 auto 200px auto;
}

.staff-detail-image {
  height: 600px;
  margin-bottom: 30px;
}

.style-collection-slide {
  height: 600px;
}

.link-box-staff {
  width: 500px;
}

.staff-profil {
  margin-bottom: 50px;
}

.style-collection {
  margin: 150px 0 70px 0;
}

.link-box-staff h3 {
  font-size: 26px;
}




















}