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

body {
  font-family: "Josefin Sans", 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;
}

@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;
  }
}

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

.heading {
  display: inline-block;
  position: relative;
  font-size: 34px;
  font-weight: 200;
  letter-spacing: 0.05em;
  padding: 24px 0;
  width: 125px;
}
@media screen and (max-width: 768px) {
  .heading {
    font-size: 28px;
  }
}

.heading::before, .heading::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000000;
  transform: rotate(-45deg);
}

.heading::before {
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .heading::before {
    bottom: 5px;
  }
}

.heading::after {
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .heading::after {
    right: 5px;
  }
}

.text {
  text-align: center;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 2.1428;
}

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

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 15px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 200;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .header__logo {
    font-size: 26px;
    position: fixed;
    z-index: 9999;
  }
}

.header__nav {
  height: inherit;
}

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

.header__item {
  height: inherit;
}

.header__item:not(:last-child) {
  margin-right: 40px;
}

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

.header__logo.is-active {
  z-index: 9999;
}

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

.hamburger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.5px;
  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 {
  display: none;
  position: fixed;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 5000;
  transition: 0.6s all;
}

.drawer-menu.panelactive {
  right: 0;
}

.drawer-menu__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
}

.drawer-menu__item:nth-child(2) {
  margin-top: 33px;
}

.drawer-menu__item:nth-child(3) {
  margin-top: 40px;
}

.drawer-menu__item:nth-child(4) {
  margin-top: 50px;
}

.drawer-menu__item:nth-child(5) {
  margin-top: 55px;
}

.drawer-menu__link {
  display: inline-block;
  color: #000000;
  line-height: 1.187;
}

.mv {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  margin-top: -35px;
}
@media screen and (max-width: 1024px) {
  .mv {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    height: 75vh;
  }
}

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

.mv__bg {
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .mv__bg {
    height: inherit;
  }
}
@media screen and (max-width: 768px) {
  .mv__bg {
    height: inherit;
    -o-object-position: 60% 0%;
       object-position: 60% 0%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.concept {
  padding: 109px 0 83px;
}
@media screen and (max-width: 768px) {
  .concept {
    padding: 82px 0 63px;
  }
}

.concept__inner {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .concept__inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.concept__text {
  margin-top: 41px;
}
@media screen and (max-width: 768px) {
  .concept__text {
    margin-top: 36px;
    text-align: left;
  }
}

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

.menu__inner {
  text-align: center;
  background-color: #F7F7F7;
  padding: 52px 0 0;
}
@media screen and (max-width: 1024px) {
  .menu__inner {
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 82px;
  }
}
@media screen and (max-width: 768px) {
  .menu__inner {
    padding: 47px 15px 0;
  }
}

.menu__text {
  margin-top: 47px;
}
@media screen and (max-width: 768px) {
  .menu__text {
    margin-top: 35px;
    text-align: left;
  }
}

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

.menu__container {
  padding: 44px 60px 10px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .menu__container {
    padding: 0 45px;
  }
}
@media screen and (max-width: 768px) {
  .menu__container {
    flex-direction: column;
    padding: 0;
  }
}

.menu__item {
  position: relative;
  width: calc(33.3% - 50px);
  margin-right: 75px;
}
@media screen and (max-width: 1024px) {
  .menu__item {
    width: calc(50% - 37.5px);
    margin-top: 40px;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .menu__item {
    width: 100%;
    height: 80%;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .menu__item:nth-child(1) {
    margin-top: 30px;
  }
}

.menu__item:nth-child(2) {
  margin-top: 130px;
}
@media screen and (max-width: 1024px) {
  .menu__item:nth-child(2) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .menu__item:nth-child(2) {
    margin-top: -7px;
  }
}

.menu__item:nth-child(3) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .menu__item:nth-child(3) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .menu__item:nth-child(3) {
    margin-top: -7px;
  }
}

.menu__item:nth-child(4) {
  margin-top: -101px;
  margin-bottom: 130px;
}
@media screen and (max-width: 1024px) {
  .menu__item:nth-child(4) {
    margin-top: 40px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .menu__item:nth-child(4) {
    margin-top: -7px;
  }
}

.menu__item:nth-child(5) {
  margin-top: 29px;
}
@media screen and (max-width: 1024px) {
  .menu__item:nth-child(5) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .menu__item:nth-child(5) {
    margin-top: -7px;
  }
}

.menu__item:nth-child(6) {
  margin-top: -42px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .menu__item:nth-child(6) {
    margin-top: 40px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .menu__item:nth-child(6) {
    margin-top: -7px;
  }
}

@media screen and (max-width: 1024px) {
  .menu__item:nth-child(even) {
    margin-left: 75px;
  }
}
@media screen and (max-width: 768px) {
  .menu__item:nth-child(even) {
    margin-left: 0;
  }
}

.menu__item:nth-child(3n) {
  margin-right: 0;
}

.menu__img--label {
  position: absolute;
  background-color: #FFFFFF;
  width: 46%;
  height: 64px;
  bottom: 33px;
  transform: translateX(100%);
}
@media screen and (max-width: 768px) {
  .menu__img--label {
    height: 58px;
    width: 47%;
  }
}

.menu__img-name {
  display: flex;
  padding: 15px 0;
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 0.05em;
  background-color: #FFFFFF;
  text-align: center;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .menu__img-name {
    font-size: 18px;
  }
}

.animate {
  position: relative;
  overflow: hidden;
}

.animate::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  content: "";
  transition: all 0.6s 0s ease-out;
  transform: translateX(0%);
}

.animate.show::before {
  transform: translateX(110%);
}

.about {
  width: 100%;
  padding: 0 30px;
  margin: 50px auto 30px;
}
@media screen and (max-width: 1024px) {
  .about {
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 43px 15px 20px;
    margin: 0;
  }
}

.about__inner {
  width: 100%;
  max-width: 1320px;
  height: 380px;
  background-image: url(../images/about-image.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .about__inner {
    background-position: 25% 50%;
  }
}
@media screen and (max-width: 768px) {
  .about__inner {
    background-position: 25%;
  }
}

.about__content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about__text.text {
  text-align: left;
  color: #FFFFFF;
  width: 58%;
}
@media screen and (max-width: 1024px) {
  .about__text.text {
    width: 66%;
  }
}
@media screen and (max-width: 768px) {
  .about__text.text {
    width: 76%;
    padding-left: 0;
  }
}
@media screen and (max-width: 374px) {
  .about__text.text {
    width: 65%;
  }
}

.gallery {
  width: 100%;
  max-width: 1320px;
  padding: 21px 60px 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .gallery {
    padding: 20px 30px;
  }
}

.gallery__inner {
  padding: 0;
}

.gallery__cards {
  display: flex;
  flex-wrap: wrap;
}

.gallery__card {
  width: calc(25% - 30px);
  max-height: 340px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .gallery__card {
    width: calc(33.3% - 26.6666666667px);
  }
}
@media screen and (max-width: 768px) {
  .gallery__card {
    width: calc(50% - 7.5px);
  }
}

.gallery__card:first-child {
  background-color: #DEE3E8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery__card:not(:nth-child(4n+4)) {
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .gallery__card:not(:nth-child(4n+4)) {
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .gallery__card:not(:nth-child(3n+3)) {
    margin-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .gallery__card:not(:nth-child(3n+3)) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .gallery__card:nth-child(odd) {
    margin-right: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .gallery__card:nth-child(4) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .gallery__card:nth-child(4) {
    margin-top: 0;
  }
}

.gallery__card:nth-child(n+5) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .gallery__card:nth-child(n+5) {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .gallery__card:nth-child(n+3) {
    margin-top: 15px;
  }
}

.gallery__card-wrap {
  text-align: center;
}

.gallery__heading {
  font-size: 33px;
  width: 132px;
}
@media screen and (max-width: 768px) {
  .gallery__heading {
    font-size: 28px;
    letter-spacing: 0.05em;
  }
}

.content {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -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 {
  width: 100%;
  max-width: 1370px;
  padding: 50px 25px 0;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .location {
    padding: 17px 15px 0;
  }
}

.location__inner {
  padding: 0 25px;
  margin-right: 0;
  margin-left: 0;
  background-color: #F7F7F7;
}
@media screen and (max-width: 768px) {
  .location__inner {
    padding: 0 15px 25px;
  }
}

.location__heading {
  width: 141px;
  margin: 56px 9px 10px 12px;
}
@media screen and (max-width: 768px) {
  .location__heading {
    width: 128px;
    margin: 51px 10px 0 12px;
  }
}

.location__container {
  display: flex;
  padding: 35px 35px 50px;
}
@media screen and (max-width: 1024px) {
  .location__container {
    padding: 50px 25px;
  }
}
@media screen and (max-width: 768px) {
  .location__container {
    flex-direction: column;
    padding: 33px 0 15px;
  }
}

.iframe__wrap {
  width: 50%;
  height: auto;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media screen and (max-width: 768px) {
  .iframe__wrap {
    width: 100%;
    aspect-ratio: 315/315;
  }
}

.iframe-map {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .iframe-map {
    height: 100%;
  }
}

.location__content {
  width: 50%;
  height: auto;
  background-color: #222222;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .location__content {
    width: 100%;
    height: auto;
  }
}

.location__info {
  padding: 66px 0 70px;
}
@media screen and (max-width: 1024px) {
  .location__info {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .location__info {
    padding: 36px 20px 20px;
  }
}

.location__info-item {
  display: flex;
  justify-content: center;
  width: 60%;
  margin: 0 auto;
  border-bottom: 1px solid #373737;
}
@media screen and (max-width: 1024px) {
  .location__info-item {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .location__info-item {
    width: 100%;
    padding-bottom: 17px;
  }
}

@media screen and (max-width: 768px) {
  .location__info-item:not(:first-child) {
    padding-top: 14px;
  }
}

.location__info-item:last-child {
  border-bottom: none;
}

.location__info-title {
  width: 25%;
  font-size: 14px;
  text-align: left;
  letter-spacing: 0.05em;
  line-height: 2.142;
  margin-right: 10px;
  padding: 18px 0 10px 32px;
}
@media screen and (max-width: 1300px) {
  .location__info-title {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .location__info-title {
    width: 15.5%;
    padding: 0;
  }
}

.location__info-text {
  width: 84%;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: 1.857;
  padding: 20px 20px 13px 0;
}
@media screen and (max-width: 768px) {
  .location__info-text {
    width: 77.5%;
    padding: 0;
  }
}

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

.reserve__inner {
  width: 100%;
  max-width: 1320px;
  height: 300px;
  background-image: url(../images/reserve-image.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .reserve__inner {
    background-position: 20%;
  }
}
@media screen and (max-width: 768px) {
  .reserve__inner {
    background-position: 34% 10%;
  }
}

.reserve__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.reserve__text {
  color: #FFFFFF;
  line-height: 1.857;
  margin-bottom: 5px;
}

.reserve__button {
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.25;
  width: 220px;
  height: 56px;
  background-color: #FFFFFF;
  margin: 0 auto;
  position: relative;
  display: inline-block;
  transition: ease 0.2s;
  overflow: hidden;
}

.reserve__button span {
  position: relative;
  z-index: 3;
}

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

/*== 背景が流れる（左から右） */
.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;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.footer {
  width: 100%;
  margin-top: 50px;
  padding: 0 25px 50px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 40px;
    padding: 0 15px 40px;
  }
}

.footer__inner {
  max-width: 1320px;
  background-color: #000000;
  padding-top: 22px;
  padding-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 15px 0;
  }
}

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