@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-size: 14px;
  background: #fff;
  font-family: "Barlow", "Noto Sans JP", "sans-serif";
  line-height: 1.2;
  user-select: none;
  font-feature-settings: "palt";
  color: #141414;
  letter-spacing: 0.5px;
  background-image: url(../img/bg.jpg);
}
@media (max-width: 767px) {
  body {
    font-size: 12px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

a {
  color: #494B4D;
  text-decoration: none;
  cursor: pointer;
}

/*=========================================================
Common class
=========================================================*/
.inner {
  width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .inner {
    width: 90%;
    margin: 0 auto;
  }
}

.inner1 {
  width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .inner1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .inner1 {
    width: 85%;
  }
}

.inner2 {
  width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .inner2 {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .inner2 {
    width: 90%;
  }
}

.inner3 {
  width: 1050px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .inner3 {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .inner3 {
    width: 95%;
  }
}

.title {
  font-family: "Yuji Syuku", serif;
  font-weight: 500;
  font-size: 50px;
  color: #494B4D;
}
@media (max-width: 767px) {
  .title {
    font-size: 40px;
  }
}

.subtitle {
  margin-top: 10px;
  font-family: "遊ゴシック", "ヒラギノ角ゴシック", sans-serif;
  font-size: 15px;
}

.btn-basic a {
  width: 300px;
  border-radius: 100px;
  display: inline-block;
  text-align: center;
  padding: 20px 0;
  font-size: 18px;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .btn-basic a {
    font-size: 15px;
    width: 170px;
  }
}

.btn-short a {
  width: 180px;
  padding: 20px 0;
  font-size: 14px;
}

.btn-white a {
  background-color: #fff;
  border: 0.3px solid #494B4D;
}

.btn-skyblue a {
  background-color: #B1C9D2;
  border: 0.3px solid #494B4D;
  color: #fff;
}

.page_titles {
  width: 100%;
  background-color: #B1C9D2;
  padding: 5px 10px 10px 10px;
  margin-top: 100px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .page_titles {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .page_titles {
    margin-top: 60px;
  }
}

.page_titles-wrapper {
  text-align: right;
}

.page_title-container {
  display: inline-block;
  margin-left: auto;
}

.page_title-ruby {
  color: #fff;
  text-align: center;
}

.page_title {
  color: #fff;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay08 {
  animation-delay: 0.8s;
}

.delay10 {
  animation-delay: 1.2s;
}

.delay12 {
  animation-delay: 1.4s;
}

.drawer {
  position: absolute;
  top: 25px;
  right: 0;
  z-index: 2000;
  width: 30px;
  height: 30px;
  margin-left: auto;
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .drawer {
    display: block;
    top: 20px;
  }
}
@media (max-width: 767px) {
  .drawer {
    display: block;
    top: 16px;
  }
}

.drawer_borders {
  width: inherit;
  height: inherit;
}

.drawer_border {
  width: 30px;
  height: 5px;
  border-bottom: 2px solid #1CB0AB;
}

.drawer_border2 {
  margin: 8px 0;
}

.drawer_menus {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.drawer_lists {
  position: relative;
  width: 100%;
  height: 100%;
}

.drawer_menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drawer_menu-list {
  margin: 30px 0;
  text-align: center;
}
.drawer_menu-list a {
  display: inline-block;
}

.drawer_menus-display {
  display: none;
}

.display-none {
  display: none;
}

/*=========================================================
header class
=========================================================*/
.header {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid black;
}

.header_titles {
  position: relative;
}
@media (max-width: 767px) {
  .header_titles {
    padding-bottom: 8px;
  }
}

.header_title {
  text-align: center;
}
.header_title a {
  font-family: "American Typewriter", "遊ゴシック", "ヒラギノ角ゴシック", sans-serif;
  font-weight: bold;
  font-size: 60px;
  color: #1CB0AB;
}
@media (max-width: 767px) {
  .header_title a {
    font-size: 50px;
  }
}

.header_icons {
  position: absolute;
  display: flex;
  top: 28%;
  right: 0;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header_icons {
    display: none;
  }
}
@media (max-width: 767px) {
  .header_icons {
    display: none;
  }
}

.header_icon {
  margin-left: 10px;
  width: 45px;
  height: 45px;
  border-radius: 100px;
  border: 1px solid #1CB0AB;
  background-color: #fff;
  transition: 1s;
}
.header_icon a {
  width: 45px;
  height: 45px;
  display: inline-block;
  position: relative;
}
.header_icon a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header_icon:hover {
  transform: scale(1.1);
  transition: 1s;
}

.header_icon-img1 {
  width: 30px;
  height: 30px;
}

.header_icon-img2 {
  width: 35px;
  height: 35px;
}

.header_icon-img3 {
  width: 30px;
  height: 30px;
}

.header_navs {
  margin: 10px 0;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header_navs {
    display: none;
  }
}
@media (max-width: 767px) {
  .header_navs {
    display: none;
  }
}

.header_lists {
  display: flex;
  justify-content: center;
}

.header_list a {
  display: inline-block;
  margin: 0 20px;
  letter-spacing: 3px;
  transition: 1s;
}

.header_list-triangle {
  position: relative;
}
.header_list-triangle::after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-bottom: 10px solid #1CB0AB;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}

/*=========================================================
main class
=========================================================*/
.main {
  padding-top: 20px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .main {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .main {
    padding-top: 65px;
  }
}

.main_imgs {
  position: relative;
}
.top_image_sankyu {
  display: block;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .top_image_sankyu {
    display: block;
  }
}
@media (max-width: 767px) {
  .top_image_sankyu {
    display: none;
  }
}

.top_image_sankyu-sp {
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .top_image_sankyu-sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .top_image_sankyu-sp {
    display: block;
  }
}

.main_texts {
  position: absolute;
  content: "";
  bottom: 20px;
  left: 20px;
}

.main_text {
  line-height: 2;
  color: #fff;
  letter-spacing: 3px;
}

/*=========================================================
reservation class
=========================================================*/
.reservation {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .reservation {
    padding-top: 50px;
  }
}

.reservation_inner {
  width: 80%;
  border-top: 1px solid #494B4D;
  border-bottom: 1px solid #494B4D;
}
@media (max-width: 767px) {
  .reservation_inner {
    width: 90%;
  }
}

.reservation_title {
  text-align: center;
  margin-top: 40px;
}

.reservation_subtitle {
  text-align: center;
}

.reservation_texts {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .reservation_texts {
    margin-top: 30px;
  }
}

.reservation_text {
  text-align: center;
}
.reservation_text:nth-child(2n) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .reservation_text:nth-child(2n) {
    margin-top: 0px;
    line-height: 1.5;
  }
}
.reservation_btns {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.reservation_btn-tel {
  margin-right: 10px;
}
.reservation_btn-line {
  margin-left: 10px;
}
/*=========================================================
concept class
=========================================================*/
.concept {
  padding-top: 100px;
}

.concept_inner {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept_inner {
    position: static;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .concept_inner {
    display: block;
  }
}

.concept_wrapper-inner {
  padding: 20px 20px 20px 60px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept_wrapper-inner {
    padding: 20px 10px 20px 20px;
  }
}
@media (max-width: 767px) {
  .concept_wrapper-inner {
    padding: 15px;
  }
}

.concept_wrapper {
  background-color: #E6EFF1;
  width: 680px;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept_wrapper {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .concept_wrapper {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .concept_title {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .concept_subtitle {
    text-align: center;
  }
}

.concept_texts {
  margin-top: 30px;
}

.concept_text-3 {
  margin: 25px 0;
}

.concept_text-2,
.concept_text-5,
.concept_text-7 {
  margin-top: 10px;
}

.concept_text-6 {
  margin-top: 25px;
}

.concept_btns {
  text-align: center;
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept_btns {
    margin-top: 20px;
  }
}

.concept_img {
  position: absolute;
  content: "";
  top: -40px;
  left: 0px;
  width: 450px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept_img {
    width: 38%;
    position: static;
    margin-left: 20px;
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .concept_img {
    position: static;
    width: 90%;
    margin: 0 auto 20px;
  }
}

@media (max-width: 767px) {
  #concept1 {
    display: none;
  }
}

#concept2 {
  display: none;
}
@media (max-width: 767px) {
  #concept2 {
    display: block;
  }
}

/*=========================================================
salonMenu class
=========================================================*/
.salonMenu {
  padding-top: 200px;
}
@media (max-width: 767px) {
  .salonMenu {
    padding-top: 80px;
  }
}

.salonMenu_title {
  text-align: center;
}

.salonMenu_subtitle {
  text-align: center;
}

.salonMenu_links {
  width: 100%;
  margin-top: 30px;
}
.salonMenu_links a {
  display: inline-block;
  width: 100%;
  height: 250px;
  background-image: url(../img/urumenu.jpg);
  background-repeat: no-repeat;
  background-position: center center; /* 画像の表示位置を指定  */
  background-size: contain;
}
@media (max-width: 767px) {
  .salonMenu_links {
    margin-top: 10px;
    margin-top: -20px;
    margin-bottom: -30px;
  }
}

.salonMenu_text {
  text-align: center;
}

.salonMenu_text-1 {
  margin-top: 30px;
}

.salonMenu_text-2 {
  margin-top: 20px;
}

.salonMenu_btns {
  text-align: center;
  margin-top: 50px;
}

/*=========================================================
staff class
=========================================================*/
.staff {
  padding-top: 200px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .staff {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .staff {
    padding-top: 120px;
  }
}

.staff_wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .staff_wrapper {
    display: block;
  }
}

.staff_lefts {
  width: 500px;
}
@media (max-width: 767px) {
  .staff_lefts {
    width: 100%;
    margin: 20px auto;
  }
}

.staff_rights {
  margin-top: 30px;
  margin-left: 60px;
  align-items: center;
}
@media (max-width: 767px) {
  .staff_rights {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}

.staff_titles {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .staff_titles {
    margin-left: 0;
  }
}

.staff_position {
  font-size: 13px;
  margin-top: 30px;
}

.staff_name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

.staff_btns {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .staff_btns {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .staff_btn a {
    text-align: center;
  }
}

@media (max-width: 767px) {
  #staff {
    display: none;
  }
}

#staff2 {
  display: none;
}
@media (max-width: 767px) {
  #staff2 {
    display: block;
  }
}

/*=========================================================
access class
=========================================================*/
.access {
  padding-top: 150px;
}
@media (max-width: 767px) {
  .access {
    padding-top: 100px;
  }
}

.access_wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .access_wrapper {
    display: block;
  }
}

.access_lefts {
  margin-top: 30px;
}

.access_titles {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .access_titles {
    text-align: center;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .access_subtitle {
    margin-bottom: 30px;
  }
}

.access_text1 {
  margin-top: 50px;
}

.access_text2 {
  margin-top: 20px;
}

.access_text3 {
  margin-top: 40px;
}

.access_text4 {
  margin-top: 5px;
}

.access_btns {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .access_btns {
    text-align: center;
    margin-top: 40px;
  }
}

.access_rights {
  width: 50%;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .access_rights {
    width: 85%;
    margin: 0 auto;
  }
}

.toppage_googleMap {
  width: 100%;
  height: 300px;
  padding-top: 50px;
}

@media (max-width: 767px) {
  #access {
    display: none;
  }
}

#access1 {
  display: none;
}
@media (max-width: 767px) {
  #access1 {
    display: block;
  }
}

/*=========================================================
access class
=========================================================*/
.reservation2 {
  padding-top: 200px;
}
@media (max-width: 767px) {
  .reservation2 {
    padding-top: 70px;
  }
}

.reservation2_inner {
  position: relative;
}

.reservation2_title {
  text-align: center;
}

.reservation2_subtitle {
  text-align: center;
}

.reservation2_text {
  text-align: center;
}

.reservation2_text1 {
  margin-top: 40px;
  font-size: 16px;
}

.reservation2_text2 {
  margin-top: 20px;
}

.reservation2_background-img {
  width: 100%;
  height: 300px;
  position: absolute;
  content: "";
  top: 35px;
  z-index: -1;
  background-color: #E6EFF1;
}

/*=========================================================
instagram class
=========================================================*/
.top-instagram {
  margin-top: 200px;
  padding: 50px 0;
  background-color: #E6EFF1;
}
@media (max-width: 767px) {
  .top-instagram {
    margin-top: 120px;
    padding: 30px 0;
  }
}

.top-instagram_title {
  text-align: center;
}

.top-instagram_subtitle {
  text-align: center;
}

.top-instagram_images {
  margin-top: 30px;
}

#instaTop a {
  position: relative;
}
#instaTop img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-instagram_image {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.top-instagram_image a {
  width: 250px;
  height: 250px;
  margin-bottom: 50px;
}
.top-instagram_image img {
  width: 100%;
  height: 250px;
}
@media (max-width: 767px) {
  .top-instagram_image a {
    width: 300px;
    height: 300px;
  }
}

.instagram_btns {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .instagram_btns {
    margin-top: 20px;
  }
}

/*=========================================================
footer class
=========================================================*/
.footer {
  margin-top: 50px;
  background-color: #B1C9D2;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 10px 0;
  }
}

.footer_navs {
  display: flex;
  justify-content: center;
}

.footer_nav a {
  display: inline-block;
  margin: 0 20px;
  letter-spacing: 3px;
  color: #fff;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer_nav a {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .footer_nav a {
    display: none;
  }
}

.footer_logo {
  text-align: center;
  margin: 10px 0 20px;
}
.footer_logo a {
  color: #fff;
  font-family: "American Typewriter", "遊ゴシック", "ヒラギノ角ゴシック", sans-serif;
  font-weight: bold;
  font-size: 50px;
}

.footer_text {
  color: #fff;
  text-align: center;
  letter-spacing: 1.5px;
}

.footer_text1 {
  font-size: 16px;
}

.footer_text2 {
  font-size: 16px;
  margin: 10px 0;
}

.footer_copyright {
  color: #fff;
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
}

.footer_list-triangle {
  position: relative;
}
.footer_list-triangle::after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-bottom: 10px solid #1CB0AB;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}

@media (max-width: 767px) {
  .footer_text1-sp {
    display: none;
  }
}

.footer_text1-sp1 {
  display: none;
}
@media (max-width: 767px) {
  .footer_text1-sp1 {
    display: block;
    margin-bottom: 20px;
  }
}

.footer_text1-sp2 {
  display: none;
}
@media (max-width: 767px) {
  .footer_text1-sp2 {
    display: block;
  }
}

.footer_text1-sp3 {
  display: none;
}
@media (max-width: 767px) {
  .footer_text1-sp3 {
    display: block;
    margin-top: 10px;
  }
}

/*=========================================================
コンセプト concept.html
=========================================================*/
/*=========================================================
concept-mains
=========================================================*/
.concept-mains {
  padding-top: 100px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-mains {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .concept-mains {
    padding-top: 50px;
  }
}

.concept-mains_wrapper {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-mains_wrapper {
    position: static;
  }
}
@media (max-width: 767px) {
  .concept-mains_wrapper {
    position: static;
  }
}

.concept-mains_rights {
  width: 400px;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-mains_rights {
    display: flex;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .concept-mains_rights {
    display: block;
    width: 100%;
  }
}

.concept-mains_image1 img {
  width: 100%;
  height: 400px;
}

.concept-mains_image2 {
  margin-top: 10px;
}
.concept-mains_image2 img {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-mains_image2 {
    margin-top: 0;
    margin-left: 20px;
  }
}

.concept-mains_lefts {
  width: calc(100% - 400px);
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-mains_lefts {
    position: static;
    transform: translateY(0);
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .concept-mains_lefts {
    position: static;
    transform: translateY(0);
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
}

.concept-mains_english-title {
  font-size: 36px;
  letter-spacing: 5px;
  line-height: 2;
  font-family: "遊ゴシック", "ヒラギノ角ゴシック", sans-serif;
}
@media (max-width: 767px) {
  .concept-mains_english-title {
    line-height: 1.5;
  }
}

.concept-mains_text {
  letter-spacing: 1.5px;
}

.concept-mains_text1 {
  margin-top: 50px;
}

.concept-mains_text5 {
  margin-top: 10px;
}

.concept-mains_text2,
.concept-mains_text3,
.concept-mains_text4,
.concept-mains_text6,
.concept-mains_text7 {
  margin-top: 25px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  #concept-mains1 {
    display: none;
  }
}
@media (max-width: 767px) {
  #concept-mains1 {
    display: none;
  }
}

#concept-mains2 {
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #concept-mains2 {
    display: block;
  }
}
@media (max-width: 767px) {
  #concept-mains2 {
    display: block;
  }
}

/*=========================================================
concept-staff
=========================================================*/
.concept-staff {
  margin-top: 150px;
  padding: 50px 0 80px;
  background-color: #E6EFF1;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-staff {
    padding: 20px 0 40px;
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .concept-staff {
    padding: 20px 0 40px;
    margin-top: 100px;
  }
}

.concept-staff_title {
  text-align: center;
}

.concept-staff_subtitle {
  text-align: center;
}

.concept-staff_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-staff_wrapper {
    display: block;
  }
}
@media (max-width: 767px) {
  .concept-staff_wrapper {
    display: block;
    margin-top: 20px;
  }
}

.concept-staff_lefts {
  width: 40%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-staff_lefts {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .concept-staff_lefts {
    width: 100%;
    margin: 0 auto;
  }
}

.concept-staff_rights {
  width: 50%;
  margin-left: 60px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-staff_rights {
    position: static;
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .concept-staff_rights {
    position: static;
    width: 100%;
    margin-left: 0;
  }
}

.concept-staff_right {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-staff_right {
    position: static;
    top: 0;
    left: 0;
    transform: translateY(0);
    width: 50%;
    margin: 20px auto 0;
  }
}
@media (max-width: 767px) {
  .concept-staff_right {
    position: static;
    top: 0;
    left: 0;
    transform: translateY(0);
    width: 100%;
    margin: 20px auto 0;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .concept-staff_position {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .concept-staff_position {
    text-align: center;
  }
}

.concept-staff_name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-staff_name {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .concept-staff_name {
    text-align: center;
  }
}

.concept-staff_year {
  font-weight: bold;
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-staff_year {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .concept-staff_year {
    margin-top: 20px;
  }
}

.concept-staff_style {
  margin: 20px 0;
}
.concept-staff_style span {
  font-weight: bold;
}

.concept-staff_message {
  font-weight: bold;
  margin-top: 10px;
}

.concept-staff_text {
  line-height: 1.5;
  margin-top: 5px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  #concept-staff1 {
    display: none;
  }
}
@media (max-width: 767px) {
  #concept-staff1 {
    display: none;
  }
}

#concept-staff2 {
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #concept-staff2 {
    display: block;
  }
}
@media (max-width: 767px) {
  #concept-staff2 {
    display: block;
  }
}

/*=========================================================
メニュー menu.html
=========================================================*/
/*=========================================================
menu-prices
=========================================================*/
.menu-prices {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .menu-prices {
    padding-top: 50px;
  }
}

.menu-price_title {
  text-align: center;
}

.menu-price_subtitle {
  text-align: center;
}

.menu-price_wrapper {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .menu-price_wrapper {
    margin-top: 30px;
  }
}

.menu-price_tables {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.menu-price_table-item {
  width: 450px;
  height: 300px;
  background-color: #fff;
  margin-bottom: 40px;
}

.menu-price_table-item-hairCut {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .menu-price_table-item-hairCut {
    width: 550px;
  }
}

.menu-price_table-item-Perma {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .menu-price_table-item-Perma {
    width: 550px;
  }
}
@media (max-width: 767px) {
  .menu-price_table-item-Perma {
    height: 350px;
  }
}

.menu-price_table-item-color {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .menu-price_table-item-color {
    width: 550px;
  }
}

.menu-price_table-item-other {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .menu-price_table-item-other {
    width: 550px;
  }
}

.menu-price_table-item-treatment {
  position: relative;
  width: 550px;
  height: 440px;
}
@media (max-width: 767px) {
  .menu-price_table-item-treatment {
    width: 100%;
    height: 400px;
  }
}

.menu-price_table-item_inner {
  position: relative;
}

.menu-price_table-item_inner-hairCut {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.menu-price_table-item_inner-Perma {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.menu-price_table-item_inner-color {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.menu-price_table-item_inner-other {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.menu-price_table-item_inner-treatment {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.menu-price_table-hairCut {
  width: 100%;
}
.menu-price_table-hairCut tr {
  line-height: 2;
}
.menu-price_table-hairCut tr th {
  text-align: left;
}
.menu-price_table-hairCut tr td {
  text-align: right;
}

.menu-price_table-Perma {
  width: 100%;
}
.menu-price_table-Perma tr {
  line-height: 1.7;
}
.menu-price_table-Perma tr th {
  text-align: left;
}
.menu-price_table-Perma tr td {
  text-align: left;
}

.menu-price_table-color {
  width: 100%;
}
.menu-price_table-color tr {
  line-height: 2;
}
.menu-price_table-color tr th {
  text-align: left;
}
.menu-price_table-color tr td {
  text-align: right;
  width: 80px;
  text-align: left;
}

.menu-price_table-other {
  width: 100%;
}
.menu-price_table-other tr {
  line-height: 3;
}
.menu-price_table-other tr th {
  text-align: left;
}
.menu-price_table-other tr td {
  text-align: right;
}

.menu-price_table-treatment {
  width: 100%;
}
.menu-price_table-treatment tr {
  line-height: 1.5;
}
.menu-price_table-treatment tr th {
  text-align: left;
  width: 55%;
}
.menu-price_table-treatment tr td {
  text-align: left;
}
@media (max-width: 767px) {
  .menu-price_table-treatment tr th {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .menu-price_table-other tr td {
    text-align: center;
  }
}

.menu-price_table-title {
  font-size: 20px;
  letter-spacing: 1.5px;
  font-weight: bold;
}
.menu-price_table-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: black;
}

.menu-price_table-title-hairCut {
  width: 100%;
  margin-bottom: 30px;
}

.menu-price_table-title-Perma {
  width: 100%;
  margin-bottom: 20px;
}

.menu-price_table-title-color {
  width: 100%;
  margin-bottom: 30px;
}

.menu-price_table-title-other {
  width: 100%;
  margin-bottom: 40px;
}

.menu-price_table-title-treatment {
  width: 100%;
  margin-bottom: 30px;
}

.menu-price_table {
  font-size: 16px;
}
@media (max-width: 767px) {
  .menu-price_table {
    font-size: 14px;
  }
}

.menu-price_table-padding {
  padding-top: 10px;
}

.menu-price_table-paragraphs {
  padding-left: 20px;
}

.menu-price_text {
  width: 600px;
  margin: 20px auto 0;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .menu-price_text {
    width: 500px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .menu-price_text {
    width: 90%;
    margin-top: 0;
  }
}

.menu-pdf {
  text-align: center;
  margin-top: 50px;
  font-size: 18px;
  font-weight: bold;
}

.menu-price_text2 {
  margin-top: 10px;
}

/*=========================================================
menu-reservation
=========================================================*/
.menu-reservation {
  padding: 150px 0;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .menu-reservation {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .menu-reservation {
    padding: 100px 0;
  }
}

.menu-reservation_inner {
  position: relative;
}

.menu-reservation_title {
  text-align: center;
}

.menu-reservation_subtitle {
  text-align: center;
}

.menu-reservation_text {
  text-align: center;
}

.menu-reservation_text1 {
  font-size: 17px;
  margin-top: 30px;
}

.menu-reservation_text2 {
  margin-top: 20px;
}

.menu-reservation_btns {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .menu-reservation_btns {
    margin-bottom: 0px;
  }
}

.menu-reservation_btn-tel {
  margin-right: 10px;
}

.menu-reservation_btn-line {
  margin-left: 10px;
}

.menu-reservation_background {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 300px;
  background-color: #E6EFF1;
  top: 35px;
}
@media (max-width: 767px) {
  .menu-reservation_background {
    height: 270px;
  }
}

/*=========================================================
menu-access
=========================================================*/
.menu-access {
  padding-top: 50px;
  background-color: #E6EFF1;
}

.menu-access_title {
  text-align: center;
}

.menu-access_subtitle {
  text-align: center;
}

.menu-access_maps {
  width: 90%;
  margin: 40px auto 0;
}

.menu-access_googleMap {
  width: 100%;
  height: 300px;
}

.menu-access_text {
  text-align: center;
  letter-spacing: 1.5px;
}

.menu-access_text1 {
  margin-top: 40px;
}

.menu-access_text2 {
  margin-top: 20px;
}

.menu-access_btn {
  margin: 40px;
  padding-bottom: 40px;
  text-align: center;
}
/*=========================================================
インスタグラム instagram.html
=========================================================*/
/*=========================================================
instagram-mains
=========================================================*/
.instagram-mains {
  padding: 110px 0 50px;
}
@media (max-width: 767px) {
  .instagram-mains {
    padding-top: 50px;
    padding-bottom: 0;
  }
}

.instagram-mains_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.instagram-mains_item a {
  width: 250px;
  height: 250px;
  margin-bottom: 50px;
}
.instagram-mains_item img {
  width: 100%;
  height: 250px;
}
@media (max-width: 767px) {
  .instagram-mains_item a {
    width: 300px;
    height: 300px;
  }
}

.instagram-mains_btns {
  text-align: center;
  margin-top: 40px;
}

.btn-gradient a {
  display: inline-block;
  color: #fff;
  transition: 2s;
  background-image: linear-gradient(40deg, rgb(45, 71, 150), rgb(95, 91, 165) 15%, rgb(143, 106, 174) 31%, rgb(185, 86, 230) 43%, rgb(219, 111, 150) 59%, rgb(245, 150, 59) 74%, rgb(247, 165, 103) 86%, rgb(216, 175, 104));
}
.btn-gradient a:hover {
  transition: 2s;
  background-image: linear-gradient(40deg, rgb(216, 175, 104), rgb(247, 165, 103) 15%, rgb(245, 150, 59) 31%, rgb(219, 111, 150) 43%, rgb(185, 86, 230) 59%, rgb(143, 106, 174) 74%, rgb(95, 91, 165) 86%, rgb(45, 71, 150));
}

#insta a {
  position: relative;
}
#insta img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.captionTxt {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  opacity: 0;
  z-index: 100;
}
.captionTxt:hover {
  transition: 0.5s opacity, 0.25s filter;
  opacity: 1;
}

.like_count {
  font-size: 12px;
  line-height: 2;
  display: block;
  text-align: center;
  position: relative;
}
.like_count::before {
  content: "♥";
  color: #d4245f;
  font-size: 14px;
  vertical-align: middle;
  padding-right: 0.25em;
}

/*============================================================
drawer-icon/drawer-content
============================================================*/
.drawer-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2000;
  width: 35px;
  height: 35px;
  margin-left: auto;
  display: none;
  transition: transform 0.5s ease 0s;
}
.drawer-icon.is-active .drawer-icon-bar1 {
  transition: transform 0.5s ease 0s;
  transform: rotate(-45deg);
  top: 35px;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  transition: transform 0.5s ease 0s;
  transform: rotate(45deg);
  top: 35px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .drawer-icon {
    display: block;
    top: 20px;
  }
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
    top: 15px;
  }
}

.drawer-icon-bars {
  width: 30px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon-bar {
  position: absolute;
  width: inherit;
  font-weight: bold;
  font-size: 11px;
  color: #1CB0AB;
}

.drawer-icon-bar1,
.drawer-icon-bar2 {
  position: absolute;
  width: inherit;
  height: 0.7px;
  background: black;
  top: 0;
  left: 0;
  transition: transform 0.5s ease 0s;
}

.drawer-icon-bar1 {
  top: 23px;
}

.drawer-icon-bar2 {
  top: 35px;
}

.drawer-content {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
.drawer-content.is-hidden {
  transition: 1s;
  opacity: 1;
  visibility: visible;
}

.drawer-title {
  font-family: "Brodo Regular";
  font-size: 46px;
  font-weight: bold;
  padding: 20px 0;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .drawer-title {
    font-size: 38px;
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .drawer-title {
    font-size: 28px;
    padding-top: 40px;
  }
}

.drawer-content-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .drawer-content-items {
    display: block;
  }
}

.drawer-content-item {
  margin-top: 40px;
  text-align: center;
}
.drawer-content-item a {
  font-size: 18px;
  display: inline-block;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .drawer-content-item a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .drawer-content-item:not(:last-child) {
    margin-bottom: 40px;
    text-align: center;
  }
  .drawer-content-item a {
    font-size: 14px;
  }
}

.list-hover {
  position: relative;
}
.list-hover::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.5px;
  background: #000000;
  bottom: 12.5px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.8s;
  opacity: 0.5;
}
.list-hover:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 0.5;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */