@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  background-color: #fff;
  color: #141414;
  font-family: "Roboto", "Josefin Sans", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

section {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  section {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .u-md-none {
    display: none;
  }
}

.u-md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-show {
    display: block;
  }
}

.u-md-none {
  display: inline;
}
@media screen and (max-width: 768px) {
  .u-md-none {
    display: none;
  }
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1370px;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 15px;
  }
}

.heading {
  position: relative;
  display: inline-block;
  font-size: 34px;
  color: #141414;
  font-weight: 300;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .heading {
    font-size: 28px;
  }
}

.heading::before {
  position: absolute;
  display: block;
  height: 1px;
  width: 2.5rem;
  content: "";
  top: -1.5rem;
  left: 50%;
  background-color: #000000;
  transform: translateX(22px) rotate(-44.85deg);
}

.heading::after {
  position: absolute;
  height: 1px;
  width: 40px;
  content: "";
  right: 50%;
  background-color: #000000;
  transform: translateX(-22px) rotate(-44.85deg);
  bottom: -1.5rem;
  width: 2.5rem;
}

.text--center {
  color: #141414;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  width: 100%;
  height: inherit;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header__logo {
  font-size: 40px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header__logo {
    font-size: 26px;
  }
}

.header__nav {
  height: inherit;
  margin-left: auto;
}

.header__items {
  height: inherit;
  display: flex;
  align-items: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
}

.header__item {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__link {
  display: flex;
  align-items: center;
  height: inherit;
  color: #000000;
  padding: 0 1.219rem;
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 15px;
  width: 25px;
  height: 16px;
  z-index: 9999;
  cursor: pointer;
}

.hamburger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: 0.3s all;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger span.is-active:nth-child(1) {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger span.is-active:nth-child(2) {
  opacity: 0;
}

.hamburger span.is-active:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

#drawer-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #fff;
  color: #000000;
  transition: all 0.6s;
}

#drawer-menu.is-active {
  right: 0;
}

#drawer-menu.is-active .drawer-menu__list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer-menu__items {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drawer-menu__item {
  list-style: none;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
}

.drawer-menu__item:not(:first-child) {
  padding-top: 40px;
}

.drawer-menu__link {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.mv {
  width: 100%;
  height: 100vh;
}

.mv__inner {
  height: inherit;
  width: 100%;
}

.main-view__img {
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-view__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.concept__inner {
  padding-top: 23px;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .concept__inner {
    padding-top: 11px;
  }
}

.concept__text {
  margin-top: 75px;
  line-height: 2.1em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .concept__text {
    padding: 0 15px;
    text-align: left;
  }
}
@media screen and (max-width: 375px) {
  .concept__text {
    margin-top: 68px;
  }
}

.menu {
  height: 100%;
  width: 100%;
}

.menu__inner {
  background-color: #F7F7F7;
  padding: 5.5rem 3.75rem 3.125rem;
  text-align: center;
}

.menu__container {
  text-align: center;
  padding-top: 70px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 100px;
  background-color: #F7F7F7;
}
@media screen and (max-width: 768px) {
  .menu__container {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 66px;
    padding-bottom: 38px;
  }
}
@media screen and (max-width: 768px) {
  .menu__container {
    padding-top: 66px;
  }
}

.menu__text {
  margin-top: 81px;
  line-height: 2em;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .menu__text {
    text-align: left;
    margin-top: 60px;
  }
}
@media screen and (max-width: 375px) {
  .menu__text {
    text-align: left;
    margin-top: 69px;
  }
}

.pc_view {
  display: block;
}
@media screen and (max-width: 375px) {
  .pc_view {
    display: none;
  }
}

.menu__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .menu__items {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 31.25rem;
    padding: 0 0.9375rem;
    width: 100%;
  }
}

.menu__item {
  width: 29.1666666667%;
}
@media screen and (max-width: 768px) {
  .menu__item {
    width: 100%;
  }
}

.menu__item:nth-child(2) {
  margin-top: 8.125rem;
}
@media screen and (max-width: 768px) {
  .menu__item:nth-child(2) {
    margin-top: 3.75rem;
  }
}

.menu__item:nth-child(3) {
  margin-top: 3.75rem;
}

.menu__item:nth-child(4) {
  margin-top: -1.875rem;
}
@media screen and (max-width: 768px) {
  .menu__item:nth-child(4) {
    margin-top: 3.75rem;
  }
}

.menu__item:nth-child(5) {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .menu__item:nth-child(5) {
    margin-top: 3.75rem;
  }
}

.menu__item:nth-child(6) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .menu__item:nth-child(6) {
    margin-top: 3.75rem;
  }
}

.menu__images {
  position: relative;
}
.js-mask {
  position: relative;
  overflow: hidden;
}

.js-mask-bg {
  background-color: #000;
  content: "";
  height: 100%;
  left: 0%;
  position: absolute;
  top: 0;
  width: 100%;
}

.menu__title {
  background-color: #fff;
  bottom: -2rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 1.375rem 0.625rem;
  position: absolute;
  right: 1.875rem;
  text-align: center;
  width: 10rem;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .menu__title {
    bottom: -1.875rem;
    font-size: 1.125rem;
    padding: 1.25rem 0.625rem;
    right: 1.25rem;
    width: 9rem;
  }
}

.service__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-image: url(../images/hair-salon-background.jpg);
  width: 100%;
  height: min(26.38vw, 380px);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .service__inner {
    background-image: url(../images/hair-salon-background_sp.jpg);
    height: max(101.33vw, 380px);
  }
}

.service__text {
  color: #fff;
  font-size: 1.25rem;
  font-size: 0.875rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 2.14em;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .service__text {
    line-height: 1.4285714286;
    transform: translateX(-15px);
    width: max(64vw, 15rem);
  }
}

.gallery {
  width: 100%;
  height: 100%;
}

.gallery__inner {
  width: 100%;
  height: inherit;
}

.gallery__items {
  display: grid;
  grid-template-columns: repeat(4, 270px);
  grid-template-rows: repeat(2, 340px);
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
}
@media screen and (max-width: 1320px) {
  .gallery__items {
    grid-template-columns: repeat(4, 240px);
    grid-template-rows: repeat(2, 310px);
    -moz-column-gap: 25px;
         column-gap: 25px;
    row-gap: 40px;
  }
}
@media screen and (max-width: 1070px) {
  .gallery__items {
    grid-template-columns: repeat(3, 220px);
    grid-template-rows: repeat(3, 290px);
    -moz-column-gap: 25px;
         column-gap: 25px;
    row-gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .gallery__items {
    grid-template-columns: repeat(2, 150px);
    grid-template-rows: repeat(4, 188px);
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
  }
}

.gallery__item.gallery__first-card {
  position: relative;
}

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

.gallery__item {
  width: 270px;
  height: 340px;
  opacity: 0;
}
@media screen and (max-width: 1320px) {
  .gallery__item {
    width: 220px;
    height: 290px;
  }
}
@media screen and (max-width: 1070px) {
  .gallery__item {
    width: 220px;
    height: 290px;
  }
}
@media screen and (max-width: 768px) {
  .gallery__item {
    width: 150px;
    height: 188px;
  }
}

/*==================================================
card animation
===================================*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.location__inner {
  width: 100%;
  height: inherit;
  background-color: #F7F7F7;
  padding-bottom: 3.125rem;
  padding-top: 5.5rem;
}
@media screen and (max-width: 768px) {
  .location__inner {
    padding: 4.6875rem 0.9375rem 2.5rem;
  }
}

.location__head {
  text-align: center;
}

.location__flex {
  display: grid;
  grid-template: minmax(340px, 1fr)/1fr 1fr;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.875rem;
  max-width: 75rem;
  min-height: 21.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .location__flex {
    grid-template: minmax(315px, 1fr)/1fr;
    margin-top: 4.125rem;
    min-height: 19.6875rem;
  }
}

.location__map iframe {
  filter: grayscale(1);
  height: 100%;
  transition: 0.5s;
  width: 100%;
}

.location__map iframe:hover {
  filter: grayscale(0);
  transition: 0.5s;
}

.location__info {
  align-items: center;
  background-color: #222222;
  display: flex;
  justify-content: center;
}

.location__contents {
  display: grid;
  grid-template: auto/max-content 1fr;
  margin-left: auto;
  margin-right: auto;
  max-width: 21.25rem;
  padding: 1.25rem 0;
  width: 100%;
}

.location__term {
  border-top: 1px solid #373737;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
  padding: 1.25rem 0;
  width: 5.1875rem;
}
@media screen and (max-width: 768px) {
  .location__term {
    padding-left: 0.625rem;
    width: 4.5625rem;
  }
}

.location__description {
  border-top: 1px solid #373737;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.8571428571;
  max-width: 16.0625rem;
  padding: 1.25rem 0;
  width: 100%;
}

.location__term:first-of-type,
.location__description:first-of-type {
  border: none;
}

.reserve {
  width: 100%;
  height: 300px;
}

.reserve__inner {
  width: 100%;
  height: inherit;
}

.reserve__container {
  background-image: url(../images/BG-img.jpg);
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .reserve__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.reserve__text {
  padding-top: 25px;
  text-align: center;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.25em;
}

.reserve__button {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  padding: 13px 70px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  background-color: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: ease 0.2s;
}

.reserve__button span {
  position: relative;
  z-index: 3;
  color: #000000;
  letter-spacing: 0.1em;
}

.reserve__button:hover span {
  color: #fff;
}

.bgleft:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #000000;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.reserve__button:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.footer {
  width: 100%;
  height: 100%;
  margin-top: 63px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 30px;
  }
}

.footer__inner {
  width: 100%;
  height: inherit;
}

.footer__container {
  background-color: #000000;
  padding: 27px 0;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer__container {
    padding: 17px 0;
    margin-top: 42px;
  }
}

.footer__copyright {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #fff;
}

@media (min-width: 768px) {
  html {
    font-size: 1.2121212121vw;
  }
}
@media (min-width: 1320px) {
  html {
    font-size: 16px;
  }
}
/*# sourceMappingURL=style.css.map */