@charset "UTF-8";
@import url(sanitize.css);
@font-face {
  font-family: "Reman";
  src: url(../font/Reman.ttf);
}
@font-face {
  font-family: "YuGothR";
  src: url(../font/YuGothR.ttc);
}
@font-face {
  font-family: "YuGothB";
  src: url(../font/YuGothB.ttc);
}
@font-face {
  font-family: "Ei Messiri";
  src: url(../font/ElMessiri-Regular.ttf);
}
* {
  margin: 0;
  border: 0;
  padding: 0;
  color: #222222;
  font-family: "YugothR";
  font-size: 18px;
  list-style: none;
  text-decoration: none;
}

body {
  min-width: 280px;
  background-color: #ffffff;
  background-blend-mode: lighten;
  background-size: cover;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex {
  display: flex;
}

@media screen and (max-width: 900px) {
  footer .flex {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

.button a {
  padding: 0.5rem 1.5rem;
  background-color: #222222;
  font-family: "Ei Messiri";
  color: #f8f8f8;
  font-size: 1.5rem;
}

.btn-open {
  display: inline-block;
  border: 2px solid #222222;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-open:hover {
  border: 2px solid #222222;
  background-color: #222222;
  color: #222222;
}

.btn-open:after {
  width: 100%;
  height: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: 0.2s;
  z-index: -1;
}

.btn-open:hover:after {
  height: 200%;
  opacity: 1;
}

.btn-open:active:after {
  height: 350%;
  opacity: 1;
}

.accent-text p {
  color: #b3bfa0;
  font-family: "Reman";
  font-size: 7rem;
}
@media screen and (max-width: 900px) {
  .accent-text p {
    font-size: 4rem;
  }
}

.vertical-top {
  vertical-align: top;
}

header {
  height: 100vh;
  /*============
          .toggle_btn
          =============*/
  /*============
          #mask
          =============*/
}
header .header-back {
  background-color: #f9faf7;
  z-index: -1;
  width: 72%;
  height: 50vw;
  position: absolute;
  top: 0;
  left: 28%;
}
header .header-top a {
  margin: 0.5rem 0 0.5rem 2rem;
}
@media screen and (max-width: 900px) {
  header .header-top a {
    margin: 0.5rem 0 0.5rem 1rem;
  }
}
header .header-top a img {
  width: 6rem;
}
@media screen and (max-width: 900px) {
  header .header-top a img {
    width: 4rem;
  }
}
header .header-menu ul {
  margin: 0 4rem 0 0;
}
@media screen and (max-width: 900px) {
  header .header-menu ul {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  header .header-menu ul {
    display: none;
  }
}
header .header-menu ul li {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  margin: 1rem 0 0 0;
}
header .header-menu ul li a {
  font-size: 1.25rem;
  padding: calc(0.25rem - 2px) calc(1vw - 2px);
  font-family: "Shippori Mincho", serif;
  margin-top: -2px;
}
header .header-menu ul li .link-white:hover {
  text-decoration: underline;
}
header .header-menu ul li .link-black {
  background-color: #222222;
  color: #f8f8f8;
}
header .header-menu ul li .link-black:hover {
  color: #222222;
}
header nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 1003;
  opacity: 0;
}
header .open nav {
  left: 0;
  opacity: 100;
}
header nav .inner {
  padding: 25px;
}
header nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
header nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
  font-family: "Shippori Mincho", serif;
}
header nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  header nav {
    left: -220px;
    width: 220px;
  }
}
header .toggle_btn {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 1003;
}
@media screen and (max-width: 900px) {
  header .toggle_btn {
    display: block;
    top: 20px;
    right: 20px;
  }
}
header .toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.5s;
}
header .toggle_btn span:nth-child(1) {
  top: 4px;
}
header .toggle_btn span:nth-child(2) {
  top: 14px;
}
header .toggle_btn span:nth-child(3) {
  bottom: 4px;
}
header .open .toggle_btn span {
  background-color: #fff;
}
header .open .toggle_btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
}
header .open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
header .open .toggle_btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg);
}
header #mask {
  display: none;
  transition: all 0.5s;
}
header .open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 1002;
  cursor: pointer;
}

.slider-warpper {
  position: absolute;
  width: 100%;
  height: 40%;
}
@media screen and (max-width: 900px) {
  .slider-warpper {
    height: 70vh;
  }
}
.slider-warpper .slider {
  width: 65vw;
  z-index: 1000;
}
.slider-warpper .slider ul {
  margin: 0;
  padding: 0;
}
.slider-warpper .slider img {
  height: 40vw;
  width: 68vw;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 900px) {
  .slider-warpper .slider img {
    height: 70vh;
  }
}

.thumb {
  position: absolute;
  top: 30vw;
  right: 0;
  margin: 0;
  width: 80%;
  z-index: 900;
}
@media screen and (max-width: 900px) {
  .thumb {
    display: none;
  }
}
.thumb a {
  margin: 0;
}
.thumb img {
  width: 15vw;
  height: 10vw;
}

.slick-dots {
  text-align: center;
  position: absolute;
  bottom: 0.5rem;
  right: 2rem;
}
@media screen and (max-width: 900px) {
  .slick-dots {
    bottom: 0rem;
    right: 0.5rem;
  }
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 10px; /*ドットボタンのサイズ*/
  height: 10px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ffffff; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #707e5a; /*ドットボタンの現在地表示の色*/
}

.header-text {
  position: absolute;
  top: 12vw;
  left: 70vw;
  z-index: 5;
}
@media screen and (max-width: 900px) {
  .header-text {
    text-align: right;
    left: 0;
    right: 1rem;
    top: 18rem;
    z-index: 1001;
  }
}
.header-text h1 {
  font-family: "Shippori Mincho", serif;
  font-weight: lighter;
  line-height: 1.6;
  font-size: 3vw;
}
@media screen and (max-width: 900px) {
  .header-text h1 {
    font-size: 1.4rem;
  }
}
.header-text h1 span {
  font-family: "Shippori Mincho", serif;
  font-weight: lighter;
  font-size: 3.5vw;
}
@media screen and (max-width: 900px) {
  .header-text h1 span {
    font-size: 1.5rem;
  }
}
.header-text p {
  color: #b3bfa0;
  font-family: "Reman";
  font-size: 2vw;
  margin: 0;
}
@media screen and (max-width: 900px) {
  .header-text p {
    font-size: 1.2rem;
  }
}

main .about .concept {
  position: relative;
  margin: 16vw auto 0 auto;
  padding-bottom: 1rem;
  width: 90%;
}
@media screen and (max-width: 900px) {
  main .about .concept {
    width: 100%;
    background-color: #f9faf7;
    background: linear-gradient(to right, #f9faf7 0% 70%, #ffffff 70% 100%);
  }
}
@media screen and (max-width: 500px) {
  main .about .concept {
    background: linear-gradient(to right, #f9faf7 0% 30%, #ffffff 30% 100%);
  }
}
main .about .concept .concept-text {
  padding: 0 0 0 0;
  width: 700px;
  padding: 3vw 1rem 3vw 12rem;
  background-color: #f9faf7;
}
@media screen and (max-width: 900px) {
  main .about .concept .concept-text {
    width: 440px;
    padding: 1rem 0 1rem 2rem;
    background-color: transparent;
  }
}
@media screen and (max-width: 500px) {
  main .about .concept .concept-text {
    width: 250px;
  }
}
main .about .concept .concept-text h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: lighter;
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  main .about .concept .concept-text h2 {
    width: calc(100vw - 4rem);
    text-align: center;
    margin: -2.5rem 0 3rem 0;
  }
}
main .about .concept .concept-text p {
  font-size: 0.8rem;
  margin: 1rem 0;
  letter-spacing: 2;
  width: 420px;
  line-height: 1.7;
}
@media screen and (max-width: 900px) {
  main .about .concept .concept-text p {
    width: 100%;
    margin-left: 1rem;
  }
}
main .about .concept .accent-text {
  position: absolute;
  top: -7rem;
  right: 24rem;
  z-index: 3;
}
@media screen and (max-width: 900px) {
  main .about .concept .accent-text {
    right: calc(50% - 4rem);
  }
}
main .about .concept .img img {
  margin-right: -8rem;
  margin-top: 10rem;
  width: 36vw;
  height: 24vw;
}
@media screen and (max-width: 900px) {
  main .about .concept .img img {
    margin: 0;
    margin-bottom: -5rem;
    margin-left: calc(90vw - 280px);
    width: 280px;
    height: 180px;
  }
}
@media screen and (max-width: 500px) {
  main .about .concept .img img {
    margin-left: calc(90vw - 250px);
    width: 250px;
    height: 160px;
  }
}
main .about .concept .concept-flex {
  flex-flow: row-reverse;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  main .about .concept .concept-flex {
    flex-flow: column;
    align-items: flex-start;
  }
}
main .about .stylist {
  position: relative;
  margin: 16rem auto 0 auto;
  width: 90%;
}
@media screen and (max-width: 900px) {
  main .about .stylist {
    width: 100%;
    background-color: #f9faf7;
    background: linear-gradient(to right, #ffffff 0% 30%, #f9faf7 30% 100%);
  }
}
main .about .stylist .stylist-text {
  width: 700px;
  padding: 3vw 9rem 3vw 4rem;
  background-color: #f9faf7;
}
@media screen and (max-width: 900px) {
  main .about .stylist .stylist-text {
    width: 440px;
    padding: 1rem 0 1rem 2rem;
    background-color: transparent;
  }
}
@media screen and (max-width: 500px) {
  main .about .stylist .stylist-text {
    width: 250px;
  }
}
main .about .stylist .stylist-text h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: lighter;
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  main .about .stylist .stylist-text h2 {
    width: calc(100vw - 4rem);
    text-align: center;
    margin: -2.5rem 0 3rem 0;
  }
}
main .about .stylist .stylist-text p {
  font-size: 0.8rem;
  margin: 1rem 0;
  letter-spacing: 2;
  line-height: 1.7;
}
@media screen and (max-width: 900px) {
  main .about .stylist .stylist-text p {
    width: 95%;
    margin-left: 1rem;
    margin-left: calc(90vw - 100%);
  }
}
@media screen and (max-width: 500px) {
  main .about .stylist .stylist-text p {
    margin-left: 1rem;
    width: 100%;
  }
}
main .about .stylist .stylist-text p span {
  font-size: 1vw;
}
@media screen and (max-width: 900px) {
  main .about .stylist .stylist-text p span {
    font-size: 1.2rem;
  }
}
main .about .stylist .accent-text {
  position: absolute;
  top: -7rem;
  left: 10%;
  z-index: 3;
}
@media screen and (max-width: 900px) {
  main .about .stylist .accent-text {
    left: calc(50% - 4rem);
  }
}
main .about .stylist .img img {
  margin-left: -8rem;
  margin-top: 7rem;
  width: 36vw;
  height: 24vw;
}
@media screen and (max-width: 900px) {
  main .about .stylist .img img {
    margin: 0;
    margin-bottom: -5rem;
    margin-left: 3rem;
    width: 280px;
    height: 180px;
  }
}
@media screen and (max-width: 500px) {
  main .about .stylist .img img {
    margin-left: 1rem;
    width: 250px;
    height: 160px;
  }
}
main .about .stylist .stylist-flex {
  justify-content: center;
}
@media screen and (max-width: 900px) {
  main .about .stylist .stylist-flex {
    flex-flow: column;
    align-items: flex-start;
  }
}
main .about .button {
  margin-top: 7rem;
  text-align: center;
}
@media screen and (max-width: 900px) {
  main .about .button {
    margin-top: 10rem;
  }
}
main .menu {
  background-color: #f9faf7;
  padding-bottom: 4rem;
  margin-top: 12rem;
}
main .menu .accent-text {
  padding-top: 4vw;
  text-align: center;
  z-index: 2;
}
main .menu h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: lighter;
  font-size: 2rem;
  margin-top: -4rem;
  text-align: center;
  z-index: 4;
}
main .menu .menu-table {
  margin: 3vw auto 0 auto;
  width: 70%;
  text-align: center;
}
@media screen and (max-width: 500px) {
  main .menu .menu-table {
    width: 90%;
  }
}
main .menu .menu-table table {
  margin: 0 auto;
  width: 100%;
}
main .menu .menu-table tr {
  height: 40px;
}
main .menu .menu-table th,
main .menu .menu-table td {
  padding: 0 2vw;
}
main .menu .menu-table th {
  font-family: "Ei Messiri";
  font-size: 3rem;
  font-weight: lighter;
  height: 8rem;
  text-align: left;
}
@media screen and (max-width: 500px) {
  main .menu .menu-table th {
    font-size: 2rem;
  }
}
main .menu .menu-table th::after {
  content: "";
  margin-top: -2rem;
  border-top: 4px double #555;
  display: block;
  margin-left: 5rem;
}
@media screen and (max-width: 500px) {
  main .menu .menu-table th::after {
    margin-top: -1.5rem;
    margin-left: 3.5rem;
  }
}
main .menu .menu-table .after::after {
  margin-left: 7rem;
}
@media screen and (max-width: 500px) {
  main .menu .menu-table .after::after {
    margin-left: 5rem;
  }
}
main .menu .menu-table td {
  font-family: "YugothR";
  text-align: right;
}
@media screen and (max-width: 900px) {
  main .menu .menu-table td {
    font-size: 0.9rem;
  }
}
main .menu .menu-table .bold {
  font-weight: bold;
  text-align: left;
}
main .menu .menu-table .menu-table-cut {
  width: 130%;
}
@media screen and (max-width: 900px) {
  main .menu .menu-table .menu-table-cut {
    width: 100%;
  }
}
main .menu .menu-table .menu-table-cut span {
  display: inline-block;
}
@media screen and (max-width: 900px) {
  main .menu .menu-table .menu-table-color td {
    display: inline-block;
    width: 30%;
    height: 40px;
  }
}
@media screen and (max-width: 500px) {
  main .menu .menu-table .menu-table-color td {
    width: 35%;
  }
}
@media screen and (max-width: 900px) {
  main .menu .menu-table .menu-table-color .bold {
    width: 70%;
    height: 40px;
  }
}
@media screen and (max-width: 500px) {
  main .menu .menu-table .menu-table-color .bold {
    width: 65%;
  }
}
@media screen and (max-width: 900px) {
  main .menu .menu-table .flex {
    flex-flow: column;
    align-items: flex-start;
  }
}
main .menu .button {
  margin-top: 6rem;
}
main .menu .coupon-link a img {
  width: 70%;
  margin-top: 4rem;
  max-width: 700px;
}
@media screen and (max-width: 900px) {
  main .menu .coupon-link a img {
    display: none;
    width: 100%;
  }
}
main .menu .coupon-link a img:hover {
  box-shadow: 0 0 6px #ddd;
}
main .access {
  margin-top: 6rem;
}
main .access .accent-text {
  padding-top: 4vw;
  text-align: left;
  z-index: 2;
  margin-left: 10vw;
}
main .access h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: lighter;
  font-size: 2rem;
  margin-top: -5vw;
  margin-left: 16vw;
  text-align: left;
  z-index: 4;
}
main .access h4 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-left: 2.5rem;
}
@media screen and (max-width: 900px) {
  main .access h4 {
    margin: 0;
    text-align: center;
  }
}
main .access h4 span {
  font-family: "Ei Messiri";
  font-size: 1.5rem;
}
main .access .access-content {
  margin: 4rem 0 0 0;
  justify-content: center;
}
main .access img {
  width: 28vw;
  height: 25vw;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto 0;
}
@media screen and (max-width: 900px) {
  main .access img {
    width: 70%;
    height: auto;
  }
}
main .access iframe {
  width: 28vw;
  height: 25vw;
  margin: auto 0;
}
@media screen and (max-width: 900px) {
  main .access iframe {
    width: 70%;
    height: 40vw;
  }
}
main .access table {
  margin: 0 0 0 2vw;
}
@media screen and (max-width: 900px) {
  main .access table {
    margin: 1rem auto 0 auto;
  }
}
main .access table .padding-none {
  padding: 0 0 0 1vw;
}
main .access table tr {
  text-align: left;
}
main .access table th {
  padding: 1vw 0 0 1vw;
}
@media screen and (max-width: 900px) {
  main .access table th {
    padding-left: 0;
    width: 100px;
  }
}
main .access table td {
  padding: 1vw 0 0 1vw;
  font-size: 0.9rem;
}
@media screen and (max-width: 900px) {
  main .access table td {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 500px) {
  main .access table td {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 900px) {
  main .access table .padding-none {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 500px) {
  main .access table .padding-none {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 900px) {
  main .access .access-text {
    margin: 2rem 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  main .access .access-text {
    width: 90%;
    margin: 2rem auto 0 auto;
  }
}
@media screen and (max-width: 900px) {
  main .access .flex {
    flex-flow: column;
    align-items: center;
  }
}
main .access .button {
  margin-top: 2vw;
}
@media screen and (max-width: 900px) {
  main .access .button {
    flex-flow: column;
    margin-top: 2rem;
    text-align: center;
  }
}
main .access .button a {
  margin: 0 0 0 3vw;
}
main .access .button a .map-icon {
  color: #ffffff;
  margin: 0 1rem 0 0;
}
main .access .btn-open:hover:after {
  height: 230%;
}
main .access .btn-open:active:after {
  height: 500%;
}
main .access .btn-open:hover .icon {
  color: #222222;
}
main .contact {
  margin: 12rem 0 0 0;
  padding: 0 0 6rem 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(32, 32, 32, 0.9), rgba(32, 32, 32, 0.9)), url(../img/interior_back.jpg);
  background-size: cover;
}
main .contact .accent-text {
  padding-top: 4vw;
  text-align: center;
  z-index: 2;
}
main .contact .accent-text p {
  color: #707e5a;
}
main .contact h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: lighter;
  font-size: 2rem;
  margin-top: -5vw;
  text-align: center;
  z-index: 4;
  color: #f8f8f8;
}
main .contact .contact-text {
  margin: 2rem 0 0 0;
}
main .contact .contact-text p {
  color: #f8f8f8;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 500px) {
  main .contact .contact-text p {
    font-size: 0.9rem;
  }
}
main .contact .contact-text p:nth-child(3) {
  margin-top: 1rem;
}
main .contact .contact-text p span {
  color: #f8f8f8;
  display: inline-block;
}
@media screen and (max-width: 500px) {
  main .contact .contact-text p span {
    font-size: 0.9rem;
  }
}
main .contact .button {
  margin: 2rem 0 0 0;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}
main .contact .button a {
  display: block;
  width: 200px;
  margin: 1vw auto 0 auto;
  font-family: "YugothB";
  font-weight: lighter;
  padding: 0.5vw 0;
  font-size: 1rem;
}
main .contact .button a p {
  font-family: "Shippori Mincho", serif;
  color: #f8f8f8;
}
main .contact .button a span {
  font-family: "Shippori Mincho", serif;
  color: #f8f8f8;
}
main .contact .button .phone-icon {
  color: #ffffff;
  padding: 0 1rem 0 0;
  font-size: 1rem;
}
main .contact .btn-open:hover:after {
  height: 330%;
}
main .contact .btn-open:active:after {
  height: 500%;
}
main .contact .btn-open:hover p {
  color: #222222;
}
main .contact .btn-open:hover span {
  color: #222222;
}
main .contact .btn-open:hover .icon {
  color: #222222;
}

footer {
  background-color: #222222;
  color: #f8f8f8;
}
footer .logo {
  width: 6rem;
  margin: 0 auto;
  padding-top: 7vw;
  display: block;
}
@media screen and (max-width: 900px) {
  footer .logo {
    padding-top: 3rem;
  }
}
footer .footer-content {
  justify-content: center;
  margin: 7vw;
}
footer table tr {
  text-align: left;
}
footer table th {
  color: #f8f8f8;
  padding: 0.5vw 0 0 0;
  width: 5rem;
}
@media screen and (max-width: 500px) {
  footer table th {
    font-size: 0.8rem;
  }
}
footer table td {
  color: #f8f8f8;
  padding: 0.5vw 0 0 0;
  width: 12rem;
}
@media screen and (max-width: 500px) {
  footer table td {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 900px) {
  footer table td {
    width: 11rem;
  }
}
@media screen and (max-width: 500px) {
  footer table td {
    width: 7.5rem;
  }
}
footer table .padding-none {
  padding: 0;
}
@media screen and (max-width: 900px) {
  footer .footer-menu-access table {
    margin: 2rem 0 0 1rem;
  }
}
@media screen and (max-width: 900px) {
  footer .footer-menu-access table {
    margin-left: -0.5rem;
  }
}
footer .footer-menu-access table td {
  width: 15rem;
}
@media screen and (max-width: 900px) {
  footer .footer-menu-access table td {
    width: 11rem;
  }
}
@media screen and (max-width: 500px) {
  footer .footer-menu-access table td {
    width: 7.5rem;
  }
}
footer .footer-menu {
  padding: 0 10vw 0 5vw;
}
@media screen and (max-width: 900px) {
  footer .footer-menu {
    padding: 0;
    margin-top: 2rem;
  }
}
footer .button {
  margin: 1vw 0 0 5rem;
}
footer .button .map-icon {
  margin: 0 0.5rem 0 0;
  font-size: 0.8rem;
}
footer .button a {
  background-color: #ffffff;
  color: #222222;
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
}
@media screen and (max-width: 900px) {
  footer .button a {
    font-size: 0.8rem;
  }
}
footer .button .btn-open:hover {
  border: 2px solid #f8f8f8;
  background-color: #f8f8f8;
  color: #f8f8f8;
}
footer .button .btn-open::after {
  background: #222222;
}
footer .button .btn-open:hover .map-icon {
  color: #f8f8f8;
}
footer .button .btn-open:hover:after {
  height: 250%;
}
footer .button .btn-open:active:after {
  height: 500%;
}
footer .footer-sowl-logo img {
  width: 8rem;
  margin: 1rem 0 0 0;
}
@media screen and (max-width: 900px) {
  footer .footer-sowl-logo img {
    margin-top: 2rem;
  }
}
footer .sns-link {
  justify-content: center;
  flex-flow: row;
}
footer .sns-link img {
  width: 2vw;
  display: inline-block;
  margin: 0 1vw 0 0;
  vertical-align: middle;
}
@media screen and (max-width: 900px) {
  footer .sns-link img {
    width: 1.8rem;
    display: inline;
  }
}
footer .sns-link p {
  display: inline-block;
  color: #f8f8f8;
  vertical-align: bottom;
}
@media screen and (max-width: 900px) {
  footer .sns-link p {
    display: none;
  }
}
footer .sns-link p span {
  color: #f8f8f8;
  font-family: "Shippori Mincho", serif;
}
footer .sns-link .button {
  margin: 0 4vw 0 4vw;
}
footer .sns-link .button a {
  background-color: #222222;
  border: 1px solid #f8f8f8;
  padding: 1vw 2vw;
}
@media screen and (max-width: 900px) {
  footer .sns-link .button a {
    border: none;
    padding: 0;
  }
}
footer .sns-link .btn-open:hover {
  border: 2px solid #f8f8f8;
  background-color: #f8f8f8;
  color: #f8f8f8;
}
@media screen and (max-width: 900px) {
  footer .sns-link .btn-open:hover {
    border: none;
    background-color: #222222;
  }
}
footer .sns-link .btn-open::after {
  background: #222222;
}
footer .copyright {
  margin: 6vw 0 0 0;
  padding-bottom: 3vw;
}
footer .copyright p {
  color: #f8f8f8;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 900px) {
  footer .copyright p {
    font-size: 0.7rem;
  }
}

header .sub-header-back {
  background-color: #f9faf7;
  z-index: -1;
  width: 64%;
  height: 50vh;
  position: absolute;
  top: 0;
  right: 0;
}
header .sub-img {
  width: 50%;
  height: 30vw;
}
@media screen and (max-width: 900px) {
  header .sub-img {
    width: 75%;
    height: 50vw;
  }
}
@media screen and (max-width: 500px) {
  header .sub-img {
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
header .sub-header-text {
  margin: 8rem 0 0 14vw;
  text-align: center;
}
@media screen and (max-width: 900px) {
  header .sub-header-text {
    margin: 25rem 2vw 0 0;
    text-align: right;
    z-index: 3;
  }
}
@media screen and (max-width: 500px) {
  header .sub-header-text {
    margin: 18rem 1vw 0 0;
  }
}
header .sub-header-text .accent-text {
  margin-right: 4rem;
}
@media screen and (max-width: 900px) {
  header .sub-header-text .accent-text {
    margin-right: 0;
    margin-bottom: 4rem;
    margin-top: -2rem;
  }
}
@media screen and (max-width: 500px) {
  header .sub-header-text .accent-text {
    margin-bottom: 0;
  }
}
header .sub-header-text .accent-text p {
  margin-bottom: 2rem;
}
@media screen and (max-width: 500px) {
  header .sub-header-text .accent-text p {
    margin-bottom: 0;
  }
}
header h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: lighter;
  width: 100%;
  margin-top: -6rem;
}
@media screen and (max-width: 900px) {
  header h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  header h2 {
    font-size: 1.2rem;
    margin-top: -2rem;
  }
}

@media screen and (max-width: 900px) {
  .sub-header-about h2 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 900px) {
  .sub-header-about-img .sub-img {
    width: 70%;
  }
}

.sub-concept {
  background-color: #f9faf7;
  padding-bottom: 17vw;
}
@media screen and (max-width: 900px) {
  .sub-concept {
    margin-top: -4rem;
  }
}
@media screen and (max-width: 500px) {
  .sub-concept {
    margin-top: -8rem;
  }
}
.sub-concept .title {
  text-align: center;
  padding-top: 4vw;
}
@media screen and (max-width: 900px) {
  .sub-concept .title .accent-text {
    display: none;
  }
}
.sub-concept .title h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: lighter;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .sub-concept .title h3 {
    margin-top: 1rem;
  }
}
.sub-concept .concept-text {
  background-color: #ffffff;
  margin: -6vw 15vw;
  padding-top: 4vw;
}
@media screen and (max-width: 900px) {
  .sub-concept .concept-text {
    margin: 0rem 2rem;
    background-color: #f9faf7;
  }
}
@media screen and (max-width: 500px) {
  .sub-concept .concept-text {
    margin: 0rem 1rem;
  }
}
.sub-concept .concept-text p {
  font-size: 1rem;
  margin: 2vw 10vw;
  overflow-wrap: break-word;
}
@media screen and (max-width: 900px) {
  .sub-concept .concept-text p {
    margin: 2rem 1rem;
  }
}
.sub-concept .concept-text p:first-child {
  padding-top: 6vw;
}
@media screen and (max-width: 900px) {
  .sub-concept .concept-text p:first-child {
    padding-top: 0;
  }
}
.sub-concept .flex {
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .sub-concept .flex {
    flex-flow: column;
    align-items: center;
  }
}
.sub-concept img {
  width: 30%;
  height: 14vw;
  margin: 4vw 1vw 1vw 1vw;
}
@media screen and (max-width: 900px) {
  .sub-concept img {
    width: 400px;
    height: 250px;
  }
}
@media screen and (max-width: 500px) {
  .sub-concept img {
    width: 210px;
    height: 125px;
  }
}

.sub-stylist {
  margin-top: 6vw;
  position: relative;
}
@media screen and (max-width: 900px) {
  .sub-stylist {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 900px) {
  .sub-stylist .accent-text {
    display: none;
  }
}
.sub-stylist .background {
  width: 100%;
  height: 10vw;
  background-color: #f9faf7;
  position: absolute;
  z-index: -1;
  top: 30vw;
}
@media screen and (max-width: 900px) {
  .sub-stylist .background {
    height: 100px;
    top: 400px;
  }
}
@media screen and (max-width: 500px) {
  .sub-stylist .background {
    top: 300px;
  }
}
.sub-stylist h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: lighter;
  width: 100%;
}
.sub-stylist .title {
  text-align: center;
  padding-top: 4vw;
}
.sub-stylist .stylist-content {
  margin-bottom: 14vw;
}
.sub-stylist .stylist-content .flex {
  justify-content: center;
  margin-right: 8vw;
  margin-top: 6vw;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .sub-stylist .stylist-content .flex {
    flex-flow: column;
    margin: 0;
  }
}
.sub-stylist .stylist-content img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 350px;
  height: 350px;
  margin-right: 12vw;
}
@media screen and (max-width: 900px) {
  .sub-stylist .stylist-content img {
    margin: 0;
  }
}
@media screen and (max-width: 500px) {
  .sub-stylist .stylist-content img {
    width: 250px;
    height: 225px;
  }
}
@media screen and (max-width: 900px) {
  .sub-stylist .stylist-content .stylist-text {
    margin-top: 2vw;
  }
}
.sub-stylist .stylist-content .stylist-text p {
  font-size: 1rem;
  overflow-wrap: break-word;
  width: 30vw;
  margin-top: 0.5vw;
}
@media screen and (max-width: 900px) {
  .sub-stylist .stylist-content .stylist-text p {
    width: 90%;
    margin: 0.5rem auto;
  }
}
.sub-stylist .stylist-content .stylist-text .name {
  font-size: 1.5vw;
}
@media screen and (max-width: 900px) {
  .sub-stylist .stylist-content .stylist-text .name {
    font-size: 1.2rem;
    margin: 0 5%;
  }
}
@media screen and (max-width: 900px) {
  .sub-stylist .stylist-content .stylist-text .name-en {
    font-size: 1rem;
    margin: 0 5%;
  }
}
.sub-stylist .stylist-content .stylist-text .catch-copy {
  font-size: 1.5vw;
  margin: 1vw 0;
}
@media screen and (max-width: 900px) {
  .sub-stylist .stylist-content .stylist-text .catch-copy {
    font-size: 1.2rem;
    margin: 0.5rem 5%;
  }
}

@media screen and (max-width: 900px) {
  .sub-menu.u-pc-only {
    display: none;
  }
}
.sub-menu.u-sp-only {
  display: none;
}
@media screen and (max-width: 900px) {
  .sub-menu.u-sp-only {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .sub-menu {
    margin-top: -4rem;
  }
}
@media screen and (max-width: 500px) {
  .sub-menu {
    margin-top: -8rem;
  }
}
.sub-menu h3 {
  font-family: "Ei Messiri";
  text-align: center;
  font-size: 2rem;
  font-weight: lighter;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .sub-menu h3 {
    margin-bottom: 0;
  }
}
.sub-menu .margin-bottom-none {
  margin-bottom: 0rem;
}
.sub-menu p {
  text-align: center;
  margin-bottom: 3rem;
}
.sub-menu table {
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .sub-menu table {
    width: 60%;
  }
}
@media screen and (max-width: 500px) {
  .sub-menu table {
    width: 90%;
  }
}
.sub-menu th,
.sub-menu td {
  margin-top: 2rem;
  text-align: left;
  padding: 0.5vw;
  width: 15vw;
}
@media screen and (max-width: 900px) {
  .sub-menu th,
.sub-menu td {
    display: inline-block;
  }
}
.sub-menu td {
  padding-left: 0;
  padding-bottom: 1.5vw;
}
@media screen and (max-width: 900px) {
  .sub-menu td {
    width: 50%;
    padding: 0;
  }
  .sub-menu td:first-child {
    margin-top: -9rem;
  }
  .sub-menu td:nth-child(2) {
    margin-top: -9rem;
  }
  .sub-menu td:nth-child(4) {
    margin-top: -2.5rem;
  }
  .sub-menu td:nth-child(5) {
    margin-top: -2.5rem;
  }
}
.sub-menu th {
  position: relative;
  padding-left: 2.5vw;
}
@media screen and (max-width: 900px) {
  .sub-menu th {
    width: calc(100% - 2.5vw);
    margin: 3rem 0 0 0;
  }
}
.sub-menu th::before {
  content: "";
  position: absolute;
  background-color: #b3bfa0;
  width: 1vw;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 900px) {
  .sub-menu tr:nth-child(3) {
    display: block;
    margin-top: -3.5rem;
  }
  .sub-menu tr:nth-child(5) {
    display: block;
    margin-top: -3.5rem;
  }
  .sub-menu tr .margin-none {
    margin-top: 0;
  }
}
.sub-menu .green-menu {
  background-color: #f9faf7;
  padding: 3rem 0;
}
.sub-menu .green-menu th {
  background-color: #ffffff;
}
.sub-menu .green-menu .color {
  background-color: #f9faf7;
  width: 1vw;
}
.sub-menu .green-menu .color::before {
  content: none;
}
@media screen and (max-width: 900px) {
  .sub-menu .green-menu .color {
    display: none;
  }
}
.sub-menu .green-menu .p-none {
  padding-bottom: 0.5vw;
}
.sub-menu .green-menu .menu-group {
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .sub-menu .green-menu .menu-group {
    width: 60%;
  }
}
@media screen and (max-width: 500px) {
  .sub-menu .green-menu .menu-group {
    width: 90%;
  }
}
.sub-menu .green-menu .menu-group:nth-of-type(1) {
  margin: 3rem auto 0 auto;
}
.sub-menu .green-menu .menu-group .menu-group__title {
  position: relative;
  background-color: #ffffff;
  padding-left: 3vw;
  margin-bottom: 1rem;
}
.sub-menu .green-menu .menu-group .menu-group__title::after {
  content: "";
  width: 1vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #b3bfa0;
}
.sub-menu .green-menu .menu-group .menu-group__text {
  display: flex;
  justify-content: space-between;
}
.sub-menu .green-menu .menu-group .menu-group__text p {
  margin-bottom: 1rem;
}
.sub-menu .white-menu {
  padding: 3rem 0;
}
.sub-menu .white-menu .menu-group {
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .sub-menu .white-menu .menu-group {
    width: 60%;
  }
}
@media screen and (max-width: 500px) {
  .sub-menu .white-menu .menu-group {
    width: 90%;
  }
}
.sub-menu .white-menu .menu-group:nth-of-type(1) {
  margin: 3rem auto 0 auto;
}
.sub-menu .white-menu .menu-group .menu-group__title {
  position: relative;
  background-color: #f9faf7;
  padding-left: 3vw;
  margin-bottom: 1rem;
}
.sub-menu .white-menu .menu-group .menu-group__title::after {
  content: "";
  width: 1vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #b3bfa0;
}
.sub-menu .white-menu .menu-group .menu-group__text {
  display: flex;
  justify-content: space-between;
}
.sub-menu .white-menu .menu-group .menu-group__text p {
  margin-bottom: 1rem;
}
.sub-menu .white-menu th {
  background-color: #f9faf7;
}
.sub-menu .white-menu .color {
  background-color: #ffffff;
  width: 1vw;
}
@media screen and (max-width: 900px) {
  .sub-menu .white-menu .color {
    display: none;
  }
}
.sub-menu .white-menu .color::before {
  content: none;
}
.sub-menu .white-menu .p-none {
  padding-bottom: 0.5vw;
}
.sub-menu .price {
  text-align: right;
}

.sub-access {
  padding: 6vw 0 12vw 0;
  background-color: #f9faf7;
}
@media screen and (max-width: 900px) {
  .sub-access {
    padding: 3rem 0 6rem 0;
    margin-top: -4rem;
  }
}
@media screen and (max-width: 500px) {
  .sub-access {
    margin-top: -8rem;
  }
}
.sub-access .flex {
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .sub-access .flex {
    flex-flow: column;
  }
}
.sub-access .access-wrapper {
  flex-flow: column;
}
.sub-access .access-content {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .sub-access .access-content:first-child {
    order: 2;
  }
  .sub-access .access-content:nth-child(2) {
    order: 1;
  }
}
.sub-access .access-content img {
  width: 40%;
  height: 25vw;
}
@media screen and (max-width: 900px) {
  .sub-access .access-content img {
    width: 400px;
    height: 250px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .sub-access .access-content img {
    width: 250px;
    height: 150px;
    margin: 0 auto;
  }
}
.sub-access .access-content .access-menu {
  width: 40%;
}
@media screen and (max-width: 900px) {
  .sub-access .access-content .access-menu {
    width: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .sub-access .access-content .access-menu {
    width: 260px;
    margin: 0 auto;
  }
}
.sub-access .access-content .access-menu table {
  margin: 2vw auto;
}
.sub-access .access-content .access-menu table th,
.sub-access .access-content .access-menu table td {
  padding-top: 1vw;
  text-align: left;
  vertical-align: top;
}
.sub-access .access-content .access-menu table th {
  width: 72px;
}
.sub-access .access-content .access-menu table td {
  padding-left: 2vw;
}
.sub-access .access-content .access-menu table .padding {
  padding-top: 0;
  padding-bottom: 1.5vw;
}
.sub-access .access-content .access-menu table .padding-none {
  padding: 0 0 0 2vw;
}
.sub-access .access-map {
  margin: 6vw auto 0 auto;
  text-align: center;
  width: 60%;
}
@media screen and (max-width: 900px) {
  .sub-access .access-map {
    margin: 1rem auto 0 auto;
    height: 250px;
    width: 400px;
  }
}
@media screen and (max-width: 500px) {
  .sub-access .access-map {
    width: 250px;
    height: 150px;
    margin: 1rem auto;
  }
}
.sub-access .access-map iframe {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .sub-access .access-map iframe {
    height: 250px;
  }
}
@media screen and (max-width: 500px) {
  .sub-access .access-map iframe {
    height: 150px;
  }
}
.sub-access .access-map .button {
  margin-top: 1vw;
}
@media screen and (max-width: 900px) {
  .sub-access .access-map .button {
    margin-top: 1rem;
  }
}
.sub-access .access-map .map-icon {
  color: #ffffff;
  width: 1vw;
  margin: 0 1vw 0 0;
}
@media screen and (max-width: 900px) {
  .sub-access .access-map .map-icon {
    margin: 0 0.8rem 0 0;
  }
}
.sub-access .access-map .btn-open:hover:after {
  height: 230%;
}
.sub-access .access-map .btn-open:active:after {
  height: 500%;
}
.sub-access .access-map .btn-open:hover .icon {
  color: #222222;
}

.sub-contact {
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 900px) {
  .sub-contact {
    margin-top: -2rem;
  }
}
@media screen and (max-width: 500px) {
  .sub-contact {
    margin-top: -8rem;
  }
}
.sub-contact h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: lighter;
  margin: 0.5rem 0;
}
@media screen and (max-width: 500px) {
  .sub-contact h3 {
    font-size: 1.1rem;
  }
}
.sub-contact p span {
  display: inline-block;
}
.sub-contact .button {
  margin: 2vw 0 0 0;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}
.sub-contact .button a {
  display: block;
  width: 200px;
  margin: 0.5rem auto 0.5rem auto;
  font-family: "YugothB";
  font-weight: lighter;
  padding: 0.5vw 0;
  font-size: 1rem;
}
.sub-contact .button a p {
  font-family: "Shippori Mincho", serif;
  color: #f8f8f8;
}
.sub-contact .button a span {
  font-family: "Shippori Mincho", serif;
  color: #f8f8f8;
}
.sub-contact .button .phone-icon {
  color: #ffffff;
  padding: 0 1vw 0 0;
  font-size: 1vw;
}
.sub-contact .btn-open:hover:after {
  height: 330%;
}
.sub-contact .btn-open:active:after {
  height: 500%;
}
.sub-contact .btn-open:hover p {
  color: #222222;
}
.sub-contact .btn-open:hover span {
  color: #222222;
}
.sub-contact .btn-open:hover .icon {
  color: #222222;
}
/*# sourceMappingURL=index.css.map */