@charset "UTF-8";
body {
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Hiragino Mincho Pro',serif;
  background-color: #000;
}

h2 {
  letter-spacing: 1.5px;
}

html {
  scroll-behavior: smooth;
}

main {
  position: relative;
  top: 0;
  left: 0;
}

@media print, screen and (min-width: 1024px) {
  main {
    margin-left: 80px;
  }
}

section {
  text-align: center;
  padding: 150px 0;
}

section .title {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
}

@media print, screen and (min-width: 600px) {
  section .title {
    font-size: 48px;
  }
}

section .title:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  /*下線の上下位置調整*/
  display: inline-block;
  width: 60px;
  /*下線の幅*/
  height: 3px;
  /*下線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  /*位置調整*/
  background-color: #000;
  /*下線の色*/
}

section .title-white {
  position: relative;
  font-size: 36px;
  font-weight: bold;
}

section .title-white:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  /*下線の上下位置調整*/
  display: inline-block;
  width: 60px;
  /*下線の幅*/
  height: 2px;
  /*下線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  /*位置調整*/
  background-color: #fff;
  /*下線の色*/
}

.sns-btn {
  padding: 50px 0;
}

.sns-btn a {
  text-decoration: none;
}

.sns-btn .sns-link:hover {
  opacity: 0.5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.sns-btn .twitter {
  margin: 0 20px;
}

.infomation {
  display: none;
}

@media print, screen and (min-width: 600px) {
  .infomation {
    display: block;
    text-align: center;
    background-color: #fff;
    padding: 150px 50px;
  }
}

.infomation h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
}

@media print, screen and (min-width: 600px) {
  .infomation h1 {
    font-size: 48px;
  }
}

.infomation a {
  display: inline-block;
  color: blue;
  padding-bottom: 20px;
  font-size: 24px;
}

.infomation p {
  padding-top: 30px;
  font-size: 20px;
}

footer {
  padding: 200px 0 50px;
  text-align: center;
  background-color: #000;
}

@media print, screen and (min-width: 600px) {
  footer {
    padding-top: 200px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  footer {
    padding-top: 300px;
  }
}

footer .footer-logo {
  padding: 0px 0;
}

footer .footer-logo a img {
  width: 80px;
  height: 80px;
}

footer .copyright {
  padding-top: 20px;
  color: #fff;
}

@media print, screen and (min-width: 600px) {
  .sp {
    display: none;
  }
}

.tab {
  display: none;
}

@media print, screen and (min-width: 600px) {
  .tab {
    display: block;
  }
}

.pc {
  display: block;
}

@media print, screen and (min-width: 600px) {
  .pc {
    display: block;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .pc {
    display: none;
  }
}

.fadein-action {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 2s ease;
  transition: 2s ease;
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 25px;
  bottom: 50px;
  background: #000;
  opacity: 0.8;
  border: 1px solid #fff;
  border-radius: 50%;
}

@media print, screen and (min-width: 600px) {
  #page_top {
    right: 50px;
    bottom: 100px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  #page_top {
    width: 65px;
    height: 65px;
    right: 65px;
    bottom: 160px;
  }
}

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

@media print, screen and (min-width: 1024px) {
  #page_top a {
    width: 65px;
    height: 65px;
  }
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  content: '\f106';
  font-weight: 900;
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0px;
  bottom: 10px;
  right: 0;
  left: 0;
  margin: auto;
}

@media print, screen and (min-width: 1024px) {
  #page_top a::before {
    font-size: 32px;
    height: 40px;
  }
}

.header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #000;
  z-index: 2;
  height: 100px;
  width: 100%;
}

@media print, screen and (min-width: 600px) {
  .header {
    height: 130px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .header {
    height: 80px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header .header-logo {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
}

.header .header-logo a img {
  width: 100px;
  height: 100px;
}

@media print, screen and (min-width: 600px) {
  .header .header-logo a img {
    width: 130px;
    height: 130px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .header .header-logo a img {
    width: 180px;
    height: 180px;
  }
}

.header .hamburger {
  display: block;
  position: fixed;
  top: 25px;
  right: 45px;
  width: 25px;
  height: 30px;
  -webkit-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}

@media print, screen and (min-width: 600px) {
  .header .hamburger {
    top: 40px;
    right: 60px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .header .hamburger {
    display: none;
  }
}

.header .hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 45px;
  height: 4px;
  background-color: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.header .hamburger span:nth-child(1) {
  top: 10px;
}

.header .hamburger span:nth-child(2) {
  top: 25px;
  width: 30px;
}

.header .hamburger span:nth-child(3) {
  top: 40px;
  width: 15px;
}

.header .open .hamburger span {
  background-color: #fff;
}

.header .open .hamburger span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}

.header .open .hamburger span:nth-child(2) {
  opacity: 0;
}

.header .open .hamburger span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

.hamburger-list {
  display: none;
  position: absolute;
  top: 95px;
  left: 0;
  width: 100%;
  height: 700px;
  text-align: center;
  padding-top: 0px;
}

.hamburger-list ul {
  background-color: #000;
  height: 100%;
}

.hamburger-list ul li {
  padding-top: 20px;
  padding-bottom: 10px;
}

.hamburger-list ul li:last-child {
  padding-top: 20px;
  padding-bottom: 30px;
}

.hamburger-list ul li a {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}

.hamburger-list ul li a:hover {
  opacity: 0.3;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.hamburger-list ul li a:active {
  opacity: 0.3;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.hamburger-list ul li a p {
  font-size: 12px;
}

.hamburger-list ul li .reserve-flex {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hamburger-list ul li .reserve {
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: #333;
  width: 170px;
  padding: 60px 0;
  border: 2px solid #fff;
}

.hamburger-list ul li .reserve-left {
  background-color: #C4C4C4;
}

@media print, screen and (min-width: 1024px) {
  .hamburger-list ul {
    display: none;
  }
}

.top-header {
  display: none;
}

@media print, screen and (min-width: 1024px) {
  .top-header {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    height: 100%;
    width: 85%;
  }
}

.top-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.top-header ul li {
  margin-left: auto;
}

.top-header ul li a {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-header ul li a:hover {
  opacity: 0.3;
}

.top-header ul li a:active {
  opacity: 0.3;
}

.top-header ul li a p {
  color: #fff;
  font-size: 12px;
}

.top-header ul .reserve-wrap {
  padding: 20px;
  background-color: black;
}

.top-header ul .reserve-wrap #reserve {
  padding: 45px 10px;
  margin-top: 100px;
  background-color: black;
  border: 1px solid #fff;
  font-size: 20px;
  cursor: pointer;
}

.top-header ul .reserve-wrap #reserve:hover {
  border: 1px solid #C4C4C4;
  background-color: #fff;
  color: #000;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.left-header {
  display: none;
}

@media print, screen and (min-width: 1024px) {
  .left-header {
    display: inline-block;
    background-color: #000;
    position: absolute;
    top: 180px;
    left: 0;
    text-align: center;
    height: 79vh;
    width: 80px;
  }
}

.left-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

.left-header ul li {
  padding-bottom: 100px;
}

.left-header ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.left-header ul li a:hover {
  opacity: 0.3;
}

.left-header ul li a:active {
  opacity: 0.3;
}

.left-header ul li a span {
  color: #fff;
  font-size: 12px;
}

.top {
  background-image: url(/img/inside7-sp.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: auto;
  z-index: -1;
  position: relative;
  -webkit-animation: fadeIn 5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeIn 5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media print, screen and (min-width: 600px) {
  .top {
    background-image: url(/img/inside7-tab.jpg);
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .top {
    background-image: url(/img/sense-top.jpg);
  }
}

.top .top-opacity {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.top .top-opacity h1 {
  position: absolute;
  top: 40%;
  left: 30px;
  color: #fff;
  font-size: 69px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 10px;
  line-height: 1.2;
  -webkit-animation-name: faderight;
          animation-name: faderight;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes faderight {
  from {
    opacity: 0;
    margin-left: -50px;
  }
  to {
    opacity: 1;
    margin-left: 0;
  }
}

@keyframes faderight {
  from {
    opacity: 0;
    margin-left: -50px;
  }
  to {
    opacity: 1;
    margin-left: 0;
  }
}

@media print, screen and (min-width: 600px) {
  .top .top-opacity h1 {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding-left: 0;
    text-align: center;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .top .top-opacity h1 {
    font-size: 94px;
  }
}

.top .top-opacity h1 .motto {
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  padding-top: 10px;
  font-family: gautreaux, sans-serif;
  line-height: 1;
  letter-spacing: 0px;
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .top .top-opacity h1 .motto {
    font-size: 34px;
  }
}

.top .top-opacity h1 .motto .accent {
  color: red;
}

.top a {
  display: inline-block;
  position: absolute;
  left: 20px;
  bottom: 0px;
  z-index: 0;
  padding: 10px 10px 170px;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

@media print, screen and (min-width: 600px) {
  .top a {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    padding-bottom: 110px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .top a {
    font-size: 14px;
  }
}

.top a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 150px;
  background: #fff;
}

@media print, screen and (min-width: 600px) {
  .top a::after {
    height: 90px;
  }
}

.top a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 150px;
  background: rgba(255, 255, 255, 0.4);
}

@media print, screen and (min-width: 600px) {
  .top a::before {
    height: 90px;
  }
}

.top a::after {
  -webkit-animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

html.modalset {
  overflow: hidden;
}

.modal {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}

.modal .modal-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  white-space: nowrap;
}

.modal .modal-wrap:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;
}

.modal .modal-wrap .modal-bg {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(51, 51, 51, 0.8);
  width: 100%;
  height: 100%;
}

.modal .modal-wrap .modal-box {
  width: 800px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background-color: #000;
  padding: 30px;
}

@media print, screen and (min-width: 1024px) {
  .modal .modal-wrap .modal-box {
    max-width: 900px;
  }
}

.modal .modal-wrap .modal-box .inner {
  border: 2px solid #fff;
  padding: 40px;
  text-align: center;
}

.modal .modal-wrap .modal-box .inner h1 {
  font-size: 28px;
  font-weight: bold;
  padding: 20px 0;
  color: #fff;
}

.modal .modal-wrap .modal-box .inner h2 {
  font-size: 28px;
  padding-bottom: 30px;
  font-weight: bold;
  color: #fff;
}

.modal .modal-wrap .modal-box .inner .border-wrap {
  padding: 20px 0;
}

.modal .modal-wrap .modal-box .inner .border-wrap p {
  font-size: 18px;
  font-weight: normal;
  padding-bottom: 20px;
  line-height: 1.7;
  color: #fff;
}

.modal .modal-wrap .modal-box .inner .border-wrap p span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.modal .modal-wrap .modal-box .modal-close {
  padding-top: 30px;
  padding-bottom: 20px;
}

.modal .modal-wrap .modal-box .modal-close span {
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 3px;
  text-decoration: underline;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.modal .modal-wrap .modal-box .modal-close span:hover {
  opacity: 0.3;
}

.about {
  background-color: #C4C4C4;
  padding-top: 150px;
  padding-bottom: 150px;
  padding-right: 20px;
  padding-left: 20px;
}

@media print, screen and (min-width: 600px) {
  .about {
    padding-top: 200px;
    padding-bottom: 140px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .about {
    padding-top: 250px;
    padding-bottom: 250px;
    padding-right: 100px;
    padding-left: 100px;
  }
}

.about .about-wrapper {
  position: relative;
  padding: 100px 40px 80px;
  border: 2px solid #000;
}

@media print, screen and (min-width: 1024px) {
  .about .about-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding: 100px 60px 0px;
  }
}

.about .about-wrapper h1 {
  position: absolute;
  top: -20px;
  left: 50%;
  font-size: 36px;
  padding: 20px 20px 0px;
  background-color: #C4C4C4;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper h1 {
    font-size: 48px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .about .about-wrapper h1 {
    font-size: 56px;
  }
}

.about .about-wrapper .top-text {
  padding-bottom: 100px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper .top-text {
    padding: 50px 0 100px;
    font-size: 20px;
    line-height: 1.7;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .about .about-wrapper .top-text {
    font-size: 20px;
    padding-bottom: 100px;
  }
}

.about .about-wrapper h2:first-child {
  padding-bottom: 10px;
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper h2:first-child {
    padding-bottom: 20px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .about .about-wrapper h2:first-child {
    padding-bottom: 0px;
  }
}

@media print, screen and (min-width: 1024px) {
  .about .about-wrapper .content-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 50px;
  }
}

@media print, screen and (min-width: 1024px) {
  .about .about-wrapper .concept {
    width: 50%;
  }
}

.about .about-wrapper .concept .catchcopy {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background-color: #C4C4C4;
  position: relative;
  margin: 80px auto;
  padding-top: 10px;
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper .concept .catchcopy {
    padding-top: 20px;
    font-size: 26px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .about .about-wrapper .concept .catchcopy {
    font-size: 24px;
    padding-bottom: 20px;
  }
}

.about .about-wrapper .concept .catchcopy::before {
  content: '';
  /* 空の要素を作る */
  height: 210px;
  /* 高さ指定 */
  width: 200px;
  /* 幅指定 */
  border: solid 4px #fff;
  /* 枠線指定 */
  display: block;
  /* ブロック要素にする */
  position: absolute;
  /* 位置調整 */
  left: 0;
  /* 位置調整 */
  right: 0;
  /* 位置調整 */
  top: 0;
  /* 位置調整 */
  bottom: 0;
  /* 位置調整 */
  margin: auto;
  /* 位置調整 */
  z-index: -1;
  /* 重なり調整 */
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper .concept .catchcopy::before {
    height: 230px;
    /* 高さ指定 */
    width: 220px;
    /* 幅指定 */
  }
}

.about .about-wrapper .concept .comment {
  display: inline-block;
  font-size: 14px;
  padding: 70px 0 100px;
  margin: 10px auto;
  text-align: left;
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper .concept .comment {
    font-size: 18px;
    padding-top: 100px;
  }
}

@media print, screen and (min-width: 1024px) {
  .about .about-wrapper .profile-wrap {
    width: 40%;
  }
}

.about .about-wrapper .hospitality {
  display: inline-block;
  position: relative;
  padding-bottom: 350px;
  margin: 0 auto;
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper .hospitality {
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 1;
  }
}

.about .about-wrapper .hospitality img {
  position: absolute;
  top: 0px;
  left: -135px;
  z-index: 1;
  width: 260px;
  height: 280px;
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper .hospitality img {
    position: relative;
    left: -10px;
    top: -15px;
    width: 300px;
    height: 320px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .about .about-wrapper .hospitality img {
    width: 260px;
    height: 280px;
  }
}

.about .about-wrapper .hospitality .img-shadow {
  position: absolute;
  top: 20px;
  left: -115px;
  width: 260px;
  height: 280px;
  z-index: 0;
  background-color: #333;
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper .hospitality .img-shadow {
    top: 60px;
    left: 15px;
    width: 300px;
    height: 320px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .about .about-wrapper .hospitality .img-shadow {
    width: 260px;
    height: 280px;
  }
}

.about .about-wrapper .profile {
  padding-bottom: 30px;
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper .profile {
    font-size: 18px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .about .about-wrapper .profile {
    font-size: 18px;
    padding-top: 30px;
  }
}

.about .about-wrapper .profile span {
  display: inline-block;
  padding: 5px 0;
  font-size: 22px;
  font-weight: bold;
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper .profile span {
    font-size: 22px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .about .about-wrapper .profile span {
    font-size: 22px;
  }
}

.about .about-wrapper .sns-btn {
  padding-top: 20px;
}

@media print, screen and (min-width: 600px) {
  .about .about-wrapper .sns-btn {
    padding-top: 10px;
  }
}

.gallery {
  background-color: #000;
}

@media print, screen and (min-width: 600px) {
  .gallery {
    padding-bottom: 200px;
  }
}

.gallery h1 {
  color: #fff;
}

@media print, screen and (min-width: 600px) {
  .gallery h1 {
    font-size: 48px;
    padding-top: 50px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .gallery h1 {
    font-size: 56px;
  }
}

.gallery .grid-sp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  padding: 150px 10px;
}

@media print, screen and (min-width: 600px) {
  .gallery .grid-sp {
    display: none;
  }
}

.gallery .grid-sp .item {
  width: 100%;
  height: 100%;
}

.gallery .grid-sp .item .element {
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 5px solid #000;
}

.gallery .grid-tab {
  display: none;
}

@media print, screen and (min-width: 600px) {
  .gallery .grid-tab {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    padding: 200px 0;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .gallery .grid-tab {
    display: none;
  }
}

@media print, screen and (min-width: 600px) {
  .gallery .grid-tab .item {
    width: 100%;
    height: 100%;
  }
  .gallery .grid-tab .item .element {
    width: 100%;
    height: 100%;
    opacity: 0;
    border: 5px solid #000;
  }
}

.gallery .grid-pc {
  display: none;
}

@media print, screen and (min-width: 1024px) {
  .gallery .grid-pc {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 200px 0;
    max-width: 1024px;
    margin: 0 auto;
  }
}

.gallery .grid-pc .item {
  width: 100%;
  height: 100%;
}

.gallery .grid-pc .item .element {
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 5px solid #000;
}

.gallery .button {
  display: inline-block;
  background-color: #000;
  border: 2px solid #fff;
  cursor: pointer;
  letter-spacing: 0.2125rem;
  line-height: 1;
  overflow: hidden;
  padding: 20px 30px;
  width: 200px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.gallery .button a {
  color: #fff;
  font-family: "Varela Round";
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  padding: 20px 37px;
}

.gallery .button .mask {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  height: 100px;
  position: absolute;
  -webkit-transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
          transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
  -webkit-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 200px;
}

.gallery .button .shift {
  display: inline-block;
  -webkit-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  vertical-align: text-top;
}

.gallery .button:hover {
  background-color: #fff;
  border-color: #000;
  -webkit-box-shadow: 0 0 5px rgba(255, 245, 245, 0.8);
          box-shadow: 0 0 5px rgba(255, 245, 245, 0.8);
}

.gallery .button:hover a {
  color: #000;
}

.gallery .button:hover .mask {
  background-color: #000;
  -webkit-transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
          transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}

.gallery .button:hover .shift {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.gallery .button:active {
  background-color: #fff;
}

.gallery .button:active a {
  color: #202020;
}

.movie {
  background-color: #C4C4C4;
  background-image: url(/img/texture7.jpg);
}

@media print, screen and (min-width: 600px) {
  .movie {
    padding: 200px 0;
  }
}

@media print, screen and (min-width: 600px) {
  .movie h1 {
    font-size: 48px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .movie h1 {
    font-size: 56px;
  }
}

.movie iframe {
  width: 280px;
  height: 250px;
  border: 5px solid #000;
}

@media print, screen and (min-width: 600px) {
  .movie iframe {
    width: 500px;
    height: 380px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .movie iframe {
    width: 700px;
    height: 380px;
  }
}

.movie h2 {
  padding-top: 20px;
}

@media print, screen and (min-width: 600px) {
  .movie h2 {
    padding-top: 30px;
    font-size: 20px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .movie h2 {
    padding-top: 40px;
    font-size: 22px;
  }
}

.menu {
  background-image: url(/img/inside3-bg-sp.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
}

@media print, screen and (min-width: 600px) {
  .menu {
    background-image: url(/img/inside3.jpg);
    padding: 200px 0;
  }
}

.menu .menu-title {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}

@media print, screen and (min-width: 600px) {
  .menu .menu-title {
    font-size: 48px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .menu .menu-title {
    font-size: 56px;
  }
}

.menu .menu-title:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  /*下線の上下位置調整*/
  display: inline-block;
  width: 60px;
  /*下線の幅*/
  height: 2px;
  /*下線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  /*位置調整*/
  background-color: #fff;
  /*下線の色*/
  border: 1px solid #000;
}

.menu .price {
  display: inline-block;
  text-align: left;
  padding: 80px 30px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}

@media print, screen and (min-width: 600px) {
  .menu .price {
    font-size: 32px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .menu .price {
    font-size: 32px;
  }
}

.menu .price tr {
  text-align: left;
}

.menu .price tr td:first-child {
  padding-right: 100px;
  padding-bottom: 30px;
}

@media print, screen and (min-width: 600px) {
  .menu .price tr td:first-child {
    padding-right: 120px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .menu .price tr td:first-child {
    padding-right: 250px;
  }
}

.menu .button {
  display: inline-block;
  background-color: #000;
  border: 2px solid #fff;
  cursor: pointer;
  letter-spacing: 0.2125rem;
  line-height: 1;
  overflow: hidden;
  padding: 20px 30px;
  width: 200px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.menu .button a {
  color: #fff;
  font-family: "Varela Round";
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  padding: 20px 37px;
}

.menu .button .mask {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  height: 100px;
  position: absolute;
  -webkit-transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
          transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
  -webkit-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 200px;
}

.menu .button .shift {
  display: inline-block;
  -webkit-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  vertical-align: text-top;
}

.menu .button:hover {
  background-color: #fff;
  border-color: #000;
  -webkit-box-shadow: 0 0 5px rgba(255, 245, 245, 0.8);
          box-shadow: 0 0 5px rgba(255, 245, 245, 0.8);
}

.menu .button:hover a {
  color: #000;
}

.menu .button:hover .mask {
  background-color: #000;
  -webkit-transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
          transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}

.menu .button:hover .shift {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.menu .button:active {
  background-color: #fff;
}

.menu .button:active a {
  color: #202020;
}

.map {
  background-color: #000;
  padding-top: 150px;
  padding-bottom: 0;
}

.map h1 {
  color: #fff;
}

@media print, screen and (min-width: 600px) {
  .map h1 {
    padding-top: 50px;
    font-size: 48px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .map h1 {
    font-size: 56px;
  }
}

@media print, screen and (min-width: 600px) {
  .map .map-address {
    padding-top: 50px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .map .map-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 250px;
  }
}

.map .googlemap {
  width: 100%;
  padding-top: 150px;
}

@media print, screen and (min-width: 1024px) {
  .map .googlemap {
    width: 50%;
    height: auto;
    padding-top: 0px;
  }
}

.map .adress {
  background-color: #C4C4C4;
  color: #000;
  padding: 80px 15px;
}

@media print, screen and (min-width: 1024px) {
  .map .adress {
    width: 50%;
    height: auto;
    padding: 0px;
    margin-left: 1px;
    border-right: 2px solid #000;
    border-left: 1px solid #000;
  }
}

@media print, screen and (min-width: 1024px) {
  .map .adress .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
  }
}

.map .adress .flex h2 {
  font-size: 36px;
  font-weight: bold;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #000;
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .map .adress .flex h2 {
    font-size: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    width: 45%;
  }
}

.map .adress .flex h3 {
  font-size: 22px;
  padding-bottom: 40px;
  line-height: 2.0;
  letter-spacing: 1px;
  color: #333;
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .map .adress .flex h3 {
    font-size: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 1.5;
  }
}

.map .adress .flex h3 span {
  font-size: 24px;
  font-weight: bold;
}

@media print, screen and (min-width: 1024px) {
  .map .adress .flex h3 span {
    font-size: 22px;
  }
}

.map .adress .flex .tel {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.map .adress .flex .tel:hover {
  color: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.map .adress .flex .tel h3 {
  font-size: 30px;
}

.map .adress .flex .tel h3:hover {
  color: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media print, screen and (min-width: 1024px) {
  .map .time {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
  }
}

.gallery-wrapper {
  background-image: url(/img/texture7.jpg);
  background-position: center;
  background-size: cover;
}

.gallery-wrapper .header-logo {
  text-align: center;
  background-color: #000;
  padding-top: 30px;
}

.gallery-wrapper .header-logo a img {
  width: 100px;
  height: 100px;
}

@media print, screen and (min-width: 600px) {
  .gallery-wrapper .header-logo a img {
    width: 120px;
    height: 120px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .gallery-wrapper .header-logo a img {
    width: 150px;
    height: 150px;
  }
}

.gallery-wrapper .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 30px 0px;
  background-color: #000;
  color: #fff;
}

.gallery-wrapper .breadcrumb a {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.gallery-wrapper .breadcrumb a:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.gallery-wrapper .breadcrumb h1 {
  font-size: 22px;
}

.gallery-wrapper .gallery-title {
  position: relative;
  font-size: 42px;
  font-weight: bold;
  color: #000;
}

@media print, screen and (min-width: 600px) {
  .gallery-wrapper .gallery-title {
    font-size: 46px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 600px) {
  .gallery-wrapper .gallery-title {
    font-size: 56px;
  }
}

.gallery-wrapper .gallery-title:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  /*下線の上下位置調整*/
  display: inline-block;
  width: 100px;
  /*下線の幅*/
  height: 2px;
  /*下線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  /*位置調整*/
  background-color: #333;
  /*下線の色*/
  border: 1px solid #000;
}

.gallery-wrapper .hairstyle {
  padding-bottom: 50px;
}

.gallery-wrapper .hairstyle .gallery-subtitle {
  color: #333;
  font-size: 38px;
  font-weight: bold;
  padding-top: 150px;
  padding-bottom: 50px;
}

@media print, screen and (min-width: 600px) {
  .gallery-wrapper .hairstyle .gallery-subtitle {
    font-size: 42px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 600px) {
  .gallery-wrapper .hairstyle .gallery-subtitle {
    font-size: 48px;
  }
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .hairstyle .flex-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 50px 20px;
  }
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .hairstyle .flex-rb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 50px 20px;
  }
}

.gallery-wrapper .hairstyle figure {
  width: 350px;
  height: 350px;
  margin: 50px auto;
  border: 5px solid #000;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .hairstyle figure {
    padding: 0;
    width: 480px;
    height: 480px;
    margin-right: 100px;
  }
}

.gallery-wrapper .hairstyle figure img {
  width: 350px;
  height: 350px;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .hairstyle figure img {
    width: 480px;
    height: 480px;
  }
}

.gallery-wrapper .hairstyle .figure-women {
  width: 350px;
  height: 350px;
  margin: 50px auto;
  border: 5px solid #000;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .hairstyle .figure-women {
    padding: 0;
    width: 480px;
    height: 480px;
    margin-left: 100px;
  }
}

.gallery-wrapper .hairstyle .figure-women img {
  width: 350px;
  height: 350px;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .hairstyle .figure-women img {
    width: 480px;
    height: 480px;
  }
}

.gallery-wrapper .hairstyle ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: scroll;
  margin: 0 auto;
}

@media print, screen and (min-width: 600px) {
  .gallery-wrapper .hairstyle ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .gallery-wrapper .hairstyle ul {
    display: block;
    margin-left: 0px;
  }
}

.gallery-wrapper .hairstyle ul li {
  width: 100px;
  height: 100px;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .hairstyle ul li {
    width: 80px;
    height: 80px;
    border: 1px solid #000;
  }
}

.gallery-wrapper .hairstyle ul li a {
  width: 100px;
  height: 100px;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .hairstyle ul li a {
    width: 80px;
    height: 80px;
  }
}

.gallery-wrapper .hairstyle ul li a img {
  width: 100px;
  height: 100px;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .hairstyle ul li a img {
    width: 80px;
    height: 80px;
  }
}

.gallery-wrapper .hairstyle .ul-women {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: scroll;
  margin: 0 auto;
}

@media print, screen and (min-width: 600px) {
  .gallery-wrapper .hairstyle .ul-women {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .gallery-wrapper .hairstyle .ul-women {
    display: block;
    margin-right: 0px;
  }
}

@media print, screen and (min-width: 600px) {
  .gallery-wrapper .hairstyle .scroll-text {
    display: none;
  }
}

.gallery-wrapper .insta-comment {
  position: relative;
  display: inline-block;
  padding: 0 50px;
  margin-top: 150px;
  text-align: center;
}

.gallery-wrapper .insta-comment:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}

.gallery-wrapper .insta-comment:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.gallery-wrapper .insta-comment:before {
  left: 0;
}

.gallery-wrapper .insta-comment:after {
  right: 0;
}

.gallery-wrapper .insta_btn2 {
  /*ボタンの下地*/
  color: #FFF;
  /*文字・アイコン色*/
  border-radius: 14px;
  /*角丸に*/
  position: relative;
  display: block;
  height: 120px;
  /*高さ*/
  width: 120px;
  /*幅*/
  text-align: center;
  /*中身を中央寄せ*/
  padding-top: 12px;
  /*上側との余白*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 19px;
  /*文字のサイズ*/
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  /*グラデーション①*/
  overflow: hidden;
  /*はみ出た部分を隠す*/
  text-decoration: none;
  /*下線は消す*/
  margin: 20px auto;
  /*中央揃え*/
}

.gallery-wrapper .insta_btn2:before {
  /*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*全体を覆う*/
  height: 100%;
  /*全体を覆う*/
  background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.gallery-wrapper .insta_btn2 span {
  position: relative;
}

.gallery-wrapper .insta_btn2 .fa-instagram {
  font-size: 70px;
  /*アイコンサイズ*/
  position: relative;
  display: inline-block;
  -webkit-transition: .5s;
  transition: .5s;
}

.gallery-wrapper .insta_btn2 .fa-instagram:hover {
  /*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.gallery-wrapper .salon .gallery-subtitle {
  font-size: 32px;
  font-weight: bold;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .salon .flex-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 50px 20px;
    margin-top: 50px;
  }
}

.gallery-wrapper .salon figure {
  width: 350px;
  height: 350px;
  margin: 60px auto;
  border: 5px solid #000;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .salon figure {
    padding: 0;
    width: 480px;
    height: 480px;
    margin-right: 100px;
  }
}

.gallery-wrapper .salon figure img {
  width: 350px;
  height: 350px;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .salon figure img {
    width: 480px;
    height: 480px;
  }
}

.gallery-wrapper .salon ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: scroll;
  margin: 0 auto;
}

@media print, screen and (min-width: 600px) {
  .gallery-wrapper .salon ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .gallery-wrapper .salon ul {
    display: block;
    margin-left: 0px;
  }
}

.gallery-wrapper .salon ul li {
  width: 100px;
  height: 100px;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .salon ul li {
    width: 80px;
    height: 80px;
    border: 1px solid #000;
  }
}

.gallery-wrapper .salon ul li a {
  width: 100px;
  height: 100px;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .salon ul li a {
    width: 80px;
    height: 80px;
  }
}

.gallery-wrapper .salon ul li a img {
  width: 100px;
  height: 100px;
}

@media print, screen and (min-width: 1024px) {
  .gallery-wrapper .salon ul li a img {
    width: 80px;
    height: 80px;
  }
}

@media print, screen and (min-width: 600px) {
  .gallery-wrapper .salon .scroll-text {
    display: none;
  }
}

.gallery-wrapper .button {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #2e2e2e;
  cursor: pointer;
  letter-spacing: 0.2125rem;
  line-height: 1;
  overflow: hidden;
  padding: 20px 30px;
  width: 200px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-top: 150px;
}

@media print, screen and (min-width: 600px) {
  .gallery-wrapper .button {
    margin-bottom: 50px;
  }
}

.gallery-wrapper .button a {
  color: #000;
  font-family: "Varela Round";
  text-decoration: none;
  white-space: nowrap;
  padding: 20px 30px;
}

.gallery-wrapper .button .mask {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  height: 100px;
  position: absolute;
  -webkit-transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
          transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
  -webkit-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 200px;
}

.gallery-wrapper .button .shift {
  display: inline-block;
  -webkit-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  vertical-align: text-top;
}

.gallery-wrapper .button:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: #000;
  -webkit-box-shadow: 0 0 5px rgba(255, 245, 245, 0.8);
          box-shadow: 0 0 5px rgba(255, 245, 245, 0.8);
}

.gallery-wrapper .button:hover a {
  color: #fff;
}

.gallery-wrapper .button:hover .mask {
  background-color: #000;
  -webkit-transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
          transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}

.gallery-wrapper .button:hover .shift {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.gallery-wrapper .button:active {
  background-color: #fff;
}

.gallery-wrapper .button:active a {
  color: #202020;
}

.price-wrapper {
  background-color: #fff;
  color: #000;
}

.price-wrapper .header-logo {
  text-align: center;
  background-color: #000;
  padding-top: 30px;
}

.price-wrapper .header-logo a img {
  width: 80px;
  height: 80px;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .header-logo a img {
    width: 120px;
    height: 120px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .price-wrapper .header-logo a img {
    width: 150px;
    height: 150px;
  }
}

.price-wrapper .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 30px 0px;
  background-color: #000;
  color: #fff;
}

.price-wrapper .breadcrumb a {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.price-wrapper .breadcrumb a:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.price-wrapper .breadcrumb h1 {
  font-size: 22px;
}

.price-wrapper .price-sheet {
  background-color: #C4C4C4;
  padding-bottom: 150px;
  background-image: url(/img/texture7.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .price-sheet {
    padding-bottom: 200px;
  }
}

.price-wrapper .price-sheet .title {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 2.0;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .price-sheet .title {
    font-size: 38px;
  }
}

.price-wrapper .price-sheet .title:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  /*下線の上下位置調整*/
  display: inline-block;
  width: 100px;
  /*下線の幅*/
  height: 3px;
  /*下線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  /*位置調整*/
  background-color: #000;
  /*下線の色*/
}

.price-wrapper .price-sheet .menu-wrapper {
  border: 3px solid #000;
  background-color: rgba(255, 255, 255, 0.7);
  max-width: 330px;
  margin: 100px auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .price-sheet .menu-wrapper {
    max-width: 500px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .price-wrapper .price-sheet .menu-wrapper {
    max-width: 600px;
    padding: 70px 0;
    margin: 100px auto;
  }
}

.price-wrapper .price-sheet .menu-wrapper .menu-title-wrap {
  border-bottom: 2px solid #000;
  padding-top: 50px;
  padding-bottom: 20px;
  margin-right: 40px;
  margin-left: 40px;
  text-align: left;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .price-sheet .menu-wrapper .menu-title-wrap {
    margin: 0 100px;
  }
}

.price-wrapper .price-sheet .menu-wrapper .menu-title-wrap .menu-title {
  position: relative;
  font-size: 28px;
  font-weight: bold;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .price-sheet .menu-wrapper .menu-title-wrap .menu-title {
    font-size: 32px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .price-wrapper .price-sheet .menu-wrapper .menu-title-wrap .menu-title {
    font-size: 36px;
  }
}

.price-wrapper .price-sheet .menu-wrapper .menu-title-wrap .menu-title::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: -40px;
  left: -10px;
  width: 290px;
  font-size: 70px;
  font-weight: bold;
  line-height: 1.0;
  opacity: 0.1;
  font-family: gautreaux, sans-serif;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .price-sheet .menu-wrapper .menu-title-wrap .menu-title::after {
    width: 340px;
    font-size: 82px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .price-wrapper .price-sheet .menu-wrapper .menu-title-wrap .menu-title::after {
    width: 400px;
    font-size: 104px;
  }
}

.price-wrapper .price-sheet .menu-wrapper .menu-title-wrap .length-about {
  font-size: 14px;
  color: red;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .price-sheet .menu-wrapper .menu-title-wrap .length-about {
    font-size: 18px;
  }
}

.price-wrapper .price-sheet .menu-wrapper .menu-list-wrap {
  margin: 0 40px;
  padding-top: 50px;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .price-sheet .menu-wrapper .menu-list-wrap {
    margin: 0 100px;
  }
}

.price-wrapper .price-sheet .menu-wrapper .menu-list-wrap div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 40px;
  font-size: 18px;
}

@media print, screen and (min-width: 1024px) {
  .price-wrapper .price-sheet .menu-wrapper .menu-list-wrap div {
    padding-bottom: 50px;
  }
}

.price-wrapper .price-sheet .menu-wrapper .menu-list-wrap div h3 {
  display: inline-block;
  color: #333;
  font-size: 18px;
  line-height: 1.1;
  text-align: left;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .price-sheet .menu-wrapper .menu-list-wrap div h3 {
    font-size: 20px;
  }
}

@media print, screen and (min-width: 600px) and (min-width: 1024px) {
  .price-wrapper .price-sheet .menu-wrapper .menu-list-wrap div h3 {
    font-size: 22px;
  }
}

.price-wrapper .price-sheet .hair-length {
  padding: 50px 0 100px;
}

.price-wrapper .price-sheet .hair-length h2 {
  color: red;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 40px;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .price-sheet .hair-length h2 {
    font-size: 28px;
  }
}

.price-wrapper .price-sheet .hair-length h3 {
  font-size: 16px;
  line-height: 1.2;
  padding-bottom: 40px;
}

@media print, screen and (min-width: 600px) {
  .price-wrapper .price-sheet .hair-length h3 {
    font-size: 18px;
  }
}

.price-wrapper .price-sheet .hair-length h3 p {
  font-weight: bold;
  padding-top: 10px;
}

.price-wrapper .price-sheet .button {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  letter-spacing: 0.2125rem;
  line-height: 1;
  overflow: hidden;
  padding: 20px 30px;
  width: 200px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.price-wrapper .price-sheet .button a {
  color: #000;
  font-family: "Varela Round";
  text-decoration: none;
  white-space: nowrap;
  padding: 20px 30px;
}

.price-wrapper .price-sheet .button .mask {
  background-color: #000;
  background-color: rgba(255, 255, 255, 0.5);
  height: 100px;
  position: absolute;
  -webkit-transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
          transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
  -webkit-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 200px;
}

.price-wrapper .price-sheet .button .shift {
  display: inline-block;
  -webkit-transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  vertical-align: text-top;
}

.price-wrapper .price-sheet .button:hover {
  background-color: #000;
  border-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(255, 245, 245, 0.8);
          box-shadow: 0 0 5px rgba(255, 245, 245, 0.8);
}

.price-wrapper .price-sheet .button:hover a {
  color: #fff;
}

.price-wrapper .price-sheet .button:hover .mask {
  background-color: #333;
  -webkit-transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
          transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}

.price-wrapper .price-sheet .button:hover .shift {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.price-wrapper .price-sheet .button:active {
  background-color: #000;
}

.price-wrapper .price-sheet .button:active a {
  color: #202020;
}
/*# sourceMappingURL=style.css.map */