@charset "utf-8";
@import "html5reset-1.6.1.css";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "メイリオ", "Meiryo", "MS Pゴシック", "MS P Gothic", "Myriad Web", "Myriad Pro", Verdana, sans-serif;
  color: #666;
  font-size: 16px;
  height: 100%;
  letter-spacing: 0.1em;
  word-wrap: break-word;
}
body.bgBlue {
  background-color: rgba(150, 210, 230, 0.1);
}
html {
  height: 100%;
}
a {
  color: #666;
}
#wrapper {
  position: relative;
  min-height: 100%;
}
@media screen and (min-width: 768px) {
  #wrapper {
    min-width: 1024px;
  }
  br.sp, img.sp {
    display: none;
  }
  a, a:hover {
    transition: 0.3s;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  html, body {
    scroll-padding-top: 55px;
  }
  br.pc, img.pc {
    display: none;
  }
}
/*---------------------- Header ----------------------*/
#header {
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  #header {
    padding: 10px 20px;
  }
  #header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1400px;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  #header .logo {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 111;
    width: 100%;
    height: 56px;
    text-align: center;
    padding: 8px 0 0;
    box-sizing: border-box;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
  }
  #header .logo img {
    height: 40px;
    width: auto;
    margin-right: 20px;
  }
}
/*---------------------- Global Navi Menu ----------------------*/
#gNaviMenu li a {
  text-decoration: none;
  display: block;
  font-family: 'Montserrat', sans-serif;
  color: #96D2E6;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #gNaviMenu {
    width: calc(100% - 300px);
  }
  #gNaviMenu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #gNaviMenu li {
    margin: 0 20px;
  }
  #gNaviMenu li a {
    text-decoration: none;
    box-sizing: border-box;
    transition: 0.3s;
  }
}
@media screen and (max-width: 767px) {
  #gNaviMenu.active {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 109;
    background-color: rgba(0, 0, 0, 0.6);
  }
  #gNaviMenuInner {
    width: 250px;
    height: 100%;
    background-color: #96D2E6;
    transition: all 0.3s ease-in-out 0.0s;
    position: fixed;
    z-index: 110;
    top: 0;
    left: -250px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    padding: 80px 20px 20px;
    text-align: center;
  }
  #gNaviMenuInner.active {
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
    left: 0px;
  }
  #gNaviMenu ul li a {
    border-top: 1px solid #FFF;
    padding: 15px 0;
    text-align: center;
    position: relative;
    font-size: 16px;
    color: #FFF;
  }
  #gNaviMenu ul li:last-child a {
    border-bottom: 1px solid #FFF;
  }
  #gNaviMenu li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/*---------------------- Global Navi Button ----------------------*/
@media screen and (min-width: 768px) {
  #gNaviBtn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #gNaviBtn {
    display: block;
    top: 3px;
    left: 3px;
    width: 50px;
    height: 50px;
    z-index: 112;
    text-align: center;
    position: fixed;
    transition: all 0.3s ease-in-out 0.0s;
  }
  #gNaviBtn.active {
    background-color: transparent;
  }
  #gNaviBtn span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 2px #96D2E6;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 10px;
    letter-spacing: normal;
  }
  #gNaviBtn span:nth-child(1) {
    top: 14px;
  }
  #gNaviBtn span:nth-child(2) {
    top: 24px;
  }
  #gNaviBtn span:nth-child(3) {
    top: 34px;
  }
  #gNaviBtn.active span {
    border-bottom: solid 2px #96D2E6;
  }
  /* 最初のspanをマイナス45度に */
  #gNaviBtn.active span:nth-child(1) {
    top: 24px;
    left: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* 2番目と3番目のspanを45度に */
  #gNaviBtn.active span:nth-child(2), #gNaviBtn.active span:nth-child(3) {
    top: 24px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/*---------------------- Contents ----------------------*/
@media screen and (min-width: 768px) {
  #contents {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  #contents {
    padding: 56px 0 60px;
  }
}
/*---------------------- Main Visual ----------------------*/
#mainVisual {
  max-width: 1400px;
  height: 700px;
  overflow: hidden;
  margin: auto;
  position: relative;
}
#mainVisual li {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 700px;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
#mainVisual li.photo01 {
  background-image: url("../images/pc_main_visual01.jpg");
}
#mainVisual li.photo02 {
  background-image: url("../images/pc_main_visual02.jpg");
}
#mainVisual li.photo03 {
  background-image: url("../images/pc_main_visual03.jpg");
}
.slide-animation {
  animation: fadezoom 20s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1.0);
  }
  100% {
    transform: scale(1.2);
  }
}
.slick-track {
  overflow: hidden;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  #mainVisual {
    height: 250px;
  }
  #mainVisual li {
    height: 250px;
  }
  #mainVisual li.photo01 {
    background-image: url("../images/sp_main_visual01.jpg");
  }
  #mainVisual li.photo02 {
    background-image: url("../images/sp_main_visual02.jpg");
  }
  #mainVisual li.photo03 {
    background-image: url("../images/sp_main_visual03.jpg");
  }
}
/*---------------------- Concept ----------------------*/
#concept {
  text-align: center;
  padding: 50px 0 60px;
}
#concept .inner {
  max-width: 900px;
  margin: 0 auto;
}
#concept h2 {
  font-size: 40px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 35px;
}
#concept p {
  line-height: 2.0;
}
#concept .inner p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  #concept {
    padding: 30px 6%;
  }
  #concept h2 {
    font-size: 26px;
    margin: 0 0 20px;
  }
  #concept h2:before {
    margin-right: 20px;
  }
  #concept h2:after {
    margin-left: 20px;
  }
  #concept h3 {
    font-size: 20px;
    margin: 0 0 15px;
  }
  #concept p {
    line-height: 1.8;
    text-align: left;
  }
  #concept .inner p {
    font-size: 14px;
    line-height: 2.0;
    padding: 0;
    text-align: center;
  }
}
/*---------------------- Menu ----------------------*/
#menu {
  text-align: center;
  padding: 50px 0 60px;
  background-color: #96D2E6;
  background-color: rgba(150, 210, 230, 0.2);
}
#menu .inner {
  max-width: 900px;
  margin: auto;
}
#menu h2 {
  font-size: 45px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 30px;
}
#menu .intax {
  font-size: 0.9em;
}
#menu h3 {
  font-size: 30px;
  font-family: 'Montserrat', sans-serif;
  margin: 40px 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#menu h3:before, #menu h3:after {
  border-top: 2px solid;
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#menu h3:before {
  margin-right: 30px;
}
#menu h3:after {
  margin-left: 30px;
}
#menu h4 {
  font-size: 24px;
  margin: 30px 0 15px;
}
#menu table {
  width: 100%;
  background-color: #FFF;
}
#menu table tr {
  border-bottom: 1px solid #96D2E6;
}
#menu table tr:last-child {
  border-bottom: none;
}
#menu table th {
  padding: 15px 20px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.2;
  font-weight: 700;
}
#menu table th span {
  font-size: 0.8em;
  display: block;
  margin: 5px 0 0;
}
#menu table td {
  padding: 15px 20px;
  text-align: right;
  vertical-align: middle;
  line-height: 1.2;
}
#menu p.note {
  line-height: 1.6;
  margin: 20px 0;
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  #menu {
    padding: 30px 6%;
  }
  #menu h2 {
    font-size: 30px;
    margin: 0 0 20px;
  }
  #menu h3 {
    font-size: 20px;
    margin: 25px 0 20px;
  }
  #menu h3:before {
    margin-right: 15px;
  }
  #menu h3:after {
    margin-left: 15px;
  }
  #menu h4 {
    font-size: 18px;
    margin: 20px 0 10px;
  }
  #menu table th {
    padding: 15px;
  }
  #menu table td {
    padding: 15px;
  }
  #menu p.note {
    text-align: left;
    margin: 15px 0;
    font-size: 0.8em;
    letter-spacing: 0.05em;
  }
}
/*---------------------- Salon ----------------------*/
#salon {
  text-align: center;
  padding: 50px 0 60px;
}
#salon .inner {
  max-width: 900px;
  margin: auto;
}
#salon h2 {
  color: #96D2E6;
  font-size: 40px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#salon h2:before, #salon h2:after {
  border-top: 2px solid;
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#salon h2:before {
  margin-right: 30px;
}
#salon h2:after {
  margin-left: 30px;
}
#salon p {
  line-height: 1.6;
  margin: 20px 0;
}
#salon p a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}
#salon .map iframe {
  width: 100%;
  height: 450px;
  margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
  #salon {
    padding: 30px 6%;
  }
  #salon h2 {
    font-size: 26px;
    margin: 0 0 20px;
  }
  #salon h2:before {
    margin-right: 20px;
  }
  #salon h2:after {
    margin-left: 20px;
  }
  #salon p {
    margin: 10px 0;
  }
  #salon p a[href^="tel:"] {
    text-decoration: underline;
  }
  #salon .map iframe {
    height: 300px;
    margin: 10px 0 0;
  }
}
/*---------------------- Staff ----------------------*/
#staff {
  text-align: center;
  padding: 50px 0 80px;
  background-color: rgba(150, 210, 230, 0.2);
}
#staff .inner {
  max-width: 900px;
  margin: auto;
}
#staff h2 {
  font-size: 45px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 40px;
}
#staff li {
  background-color: #FFF;
  list-style-type: none;
  padding: 15px;
  box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.05);
}
#staff li .text {
  text-align: left;
  padding: 25px 10px 0 40px;
}
#staff li .text h3 {
  font-size: 30px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
  color: #96D2E6;
  margin: 0 0 25px;
}
#staff li .text p {
  line-height: 1.6;
  margin: 20px 0 0;
}
#staff li .text p span {
  font-weight: 700;
  color: #000;
}
@media screen and (min-width: 768px) {
  #staff li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  #staff {
    padding: 30px 6% 40px;
  }
  #staff h2 {
    font-size: 30px;
    margin: 0 0 20px;
  }
  #staff li {
    width: 300px;
    margin: auto;
  }
  #staff li .text {
    text-align: left;
    padding: 20px 20px 10px;
  }
  #staff li .text h3 {
    font-size: 20px;
    margin: 0 0 15px;
    text-align: center;
  }
  #staff li .text p {
    line-height: 1.6;
    margin: 15px 0 0;
  }
}
/*---------------------- Reservation ----------------------*/
#reservation {
  padding: 50px 0 150px;
}
#reservation .inner {
  max-width: 900px;
  margin: auto;
}
#reservation h2 {
  color: #96D2E6;
  font-size: 40px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 40px;
  text-align: center;
}
.bgBlue #reservation h2 {
  color: #666;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  #reservation {
    padding: 30px 6% 80px;
  }
  #reservation h2 {
    font-size: 30px;
    margin: 0 0 25px;
  }
  .bgBlue #reservation h2 {
    margin: 0 0 20px;
  }
}
/*---------------------- Footer ----------------------*/
#footer {
  text-align: center;
  padding: 20px 0;
  background: #96D2E6;
  position: absolute;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}
#footer .copy {
  font-size: 0.8em;
  color: #FFFFFF;
}