@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: serif;
  color: #333;
  background-color: #fff;
  line-height: 2.6;
  overflow-x: hidden;
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
}
body.is-menu-open {
  overflow: initial;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #000;
  text-decoration: none;
}

.page-transition {
  opacity: 1;
  transition: opacity 1s ease;
}
body.is-loading .page-transition {
  opacity: 0;
}

@media (min-width: 1024px) {
  .page-transition {
    display: flex;
  }
}

.pc_slide {
  display: none;
}
@media (min-width: 1024px) {
  .pc_slide {
    display: block;
    width: 40%;
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    overflow: hidden;
  }
}
.pc_slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  .wrap {
    width: 40%;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3% 5%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  transition: all 0.3s;
}
@media (min-width: 1024px) {
  .header {
    width: 8%;
    height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.header .header__logo {
  width: 30%;
}
@media (min-width: 1024px) {
  .header .header__logo {
    display: none;
  }
}
.header .header__logo img {
  width: 100%;
}
@media (min-width: 768px) {
  .header .header__logo img {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .header .header__logo img {
    display: none;
  }
}
.header .head-nav {
  width: 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 1024px) {
  .header .head-nav {
    width: 100%;
    margin: 0;
    justify-content: center;
  }
}
.header .head-nav .instagram-link {
  width: 30%;
  margin-right: 15%;
}
@media (min-width: 1024px) {
  .header .head-nav .instagram-link {
    display: none;
  }
}
.header .head-nav .instagram-link .icon {
  width: 100%;
}
@media (min-width: 768px) {
  .header .head-nav .instagram-link .icon {
    width: 65%;
  }
}
@media (min-width: 1024px) {
  .header .head-nav .instagram-link .icon {
    display: none;
  }
}
.header__logo {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.header__menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55%;
  height: 3vh;
  z-index: 1001;
  position: relative;
}
.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s;
}
.header__menu-btn span:last-child {
  margin-bottom: 0;
}
.header__menu-btn .header__menu-text {
  font-size: 10px;
  color: #000;
}
.header__menu-btn span {
  position: absolute;
}
.header__menu-btn span:nth-child(1) {
  top: 0;
}
.header__menu-btn span:nth-child(2) {
  bottom: 0;
}
.header__menu-btn.is-open span:nth-child(1) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header__menu-btn.is-open span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 0 5% 5rem 5%;
  flex-direction: row-reverse;
}
footer .footer__policy {
  font-size: 0.7rem;
}
footer .footer__copy {
  font-size: 0.7rem;
}

.hotpepper {
  width: 100%;
  position: sticky;
  left: 0;
  bottom: 0;
  display: block;
  text-align: center;
}
@media (min-width: 1024px) {
  .hotpepper {
    display: none;
  }
}
.hotpepper a.footer_btn {
  background-color: #000;
  display: block;
  padding: 0.75rem 0;
  color: #fff;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
@media (min-width: 1024px) {
  .nav-menu {
    width: 40%;
  }
}
.nav-menu.is-active {
  opacity: 1;
  visibility: visible;
  background-color: #000;
  color: #fff;
}
@media (min-width: 1024px) {
  .nav-menu.is-active {
    width: 40%;
  }
}
.nav-menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 80px;
}
@media (min-width: 768px) {
  .nav-menu__inner {
    flex-direction: row;
    display: block;
  }
}
.nav-menu__left {
  padding: 20px;
}
@media (min-width: 768px) {
  .nav-menu__left {
    padding: 40px;
  }
}
.nav-menu__right {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
@media (min-width: 768px) {
  .nav-menu__right {
    width: 100%;
    padding: 40px;
  }
}
.nav-menu__list {
  list-style: none;
}
.nav-menu__list li {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
}
.nav-menu__list li a {
  display: inline-block;
  position: relative;
  color: #fff;
}
.nav-menu__list li a .Menu_Small {
  font-size: 0.8rem;
  margin-left: 1rem;
}
.nav-menu__list li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #333;
  transition: width 0.3s;
}
.nav-menu__list li a:hover::after {
  width: 100%;
}

a.Btn {
  position: relative;
  margin: 0 0 0 5%;
  padding: 1rem 0 0 0;
  display: inline-flex;
  align-items: center;
}
a.Btn::after {
  content: "";
  width: 3rem;
  height: 1px;
  background-color: #000;
  display: block;
}

section {
  padding: 0 0 5rem 0;
  position: relative;
}
@media (min-width: 768px) {
  section {
    padding: 100px 40px;
  }
}

.section-title {
  font-size: 1.3rem;
  padding: 0 5% 2% 5%;
}

.hero {
  padding: 0;
  position: relative;
}
@media (min-width: 1024px) {
  .hero {
    margin-top: 5rem;
  }
}
.hero__Title {
  width: 20%;
  writing-mode: vertical-rl;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
}
.hero__Title .hero__Title__Big {
  display: flex;
  align-items: center;
  font-size: 2rem;
  letter-spacing: 0.5rem;
}
@media (min-width: 1024px) {
  .hero__Title .hero__Title__Big {
    font-size: 4rem;
  }
}
.hero__Title .hero__Title__Big span.hero__Title__Small {
  font-size: 0.6rem;
  letter-spacing: 0.2rem;
  margin-top: 0.5rem;
  margin-left: -0.15rem;
}
.hero__image {
  width: 80%;
}
.hero__copy {
  font-size: 2rem;
  font-style: italic;
  text-align: right;
  position: relative;
  top: 0rem;
  bottom: 0;
  right: 0;
  line-height: 3.5rem;
  letter-spacing: 0.2rem;
  margin-top: -3rem;
}
@media (min-width: 1024px) {
  .hero__copy {
    font-size: 4rem;
    line-height: 7rem;
    margin-top: -8rem;
  }
}

.pc-logo {
  width: 20%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: initial;
  align-items: center;
  display: flex;
}
.pc-logo img {
  -o-object-fit: initial;
     object-fit: initial;
  width: initial;
  height: initial;
}

.concept {
  margin: 4% 5% 0 5%;
}

._no {
  position: relative;
  display: flex;
  justify-content: space-between;
}
._no::after {
  display: block;
  font-size: 6rem;
  bottom: 1rem;
  position: absolute;
  right: 1rem;
  line-height: 100%;
  font-style: italic;
  font-weight: normal;
  letter-spacing: 0rem;
}

._first::after {
  content: "01";
}

._second::after {
  content: "02";
}

.styling__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .styling__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.styling__List {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  list-style-type: none;
  padding: 0;
}
.styling__List li {
  width: 33.3333333333%;
  padding: 1px;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.styling__List li img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.styling__item {
  position: relative;
}
.styling__number {
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: bold;
}

.access__info {
  padding: 5%;
}
.access__info p {
  margin-bottom: 10px;
}
.access__map .map-placeholder {
  padding: 0 5%;
}
.access__map .map-placeholder iframe {
  width: 100%;
  height: 550px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Item-List {
  margin-bottom: 5rem;
}
.Item-List .item-body {
  margin: 2.5% 5% 0 5%;
}
.Item-List .item-body .Item_Name {
  line-height: 1.6rem;
  margin-bottom: 0.5rem;
}
.Item-List .item-body .Item-price:before {
  content: "¥";
  font-size: 0.7rem;
}
.Item-List .item-body .Item-price:after {
  content: "(TAXIN)";
  font-size: 0.5rem;
  margin-left: 0.5rem;
}

.form-text {
  margin: 0 5% 1.5rem 5%;
}

.Form_Wrap {
  margin-bottom: 5rem;
}
.Form_Wrap dl {
  margin: 0 5%;
}
.Form_Wrap dl dd {
  margin-bottom: 2rem;
  padding-left: 1rem;
}
.Form_Wrap dl dl {
  display: flex;
  justify-content: space-between;
}
.Form_Wrap dl dl dt {
  margin-bottom: 2rem;
}
.Form_Wrap dl dl dd {
  text-align: right;
  padding-left: 0rem;
  width: 25vw;
}
@media (min-width: 768px) {
  .Form_Wrap dl dl dd {
    width: 25%;
  }
}
.Form_Wrap .form1 {
  font-size: 16px;
  padding: 0.5rem 0;
  display: block;
  width: 100%;
  border: none;
  border-bottom: solid 1px #999;
  border-right: solid 1px #999;
}
.Form_Wrap .form3 {
  width: 30px;
  font-size: 16px;
  padding: 0.1rem 0;
  display: inline-block;
  margin-right: 0.25rem;
  text-align: center;
}
.Form_Wrap .textarea {
  font-size: 16px;
  height: 300px;
  padding: 0.1rem 0;
  display: block;
  width: 100%;
  border: none;
  border-bottom: solid 1px #999;
  border-right: solid 1px #999;
}

button.Btn {
  position: relative;
  margin: 0 0 0 5%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  background-color: initial;
  border: none;
  font-family: serif;
  font-size: 1rem;
  color: #000;
}
button.Btn::after {
  content: "";
  width: 3rem;
  height: 1px;
  background-color: #000;
  display: block;
}

@media (min-width: 768px) {
  .Privacy {
    margin-bottom: 5rem;
  }
}
.Privacy .Privacy__Wrap {
  width: 90%;
  margin: 0 auto;
  letter-spacing: 0.1rem;
}
.Privacy .Privacy__Wrap dl.-policy {
  margin-bottom: 5rem;
}
.Privacy .Privacy__Wrap p {
  line-height: 1.7rem;
  margin-bottom: 1rem;
}
.Privacy .Privacy__Wrap dt {
  line-height: 1.7rem;
  margin-bottom: 1rem;
  font-weight: bold;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: solid 1px #aaa;
}
.Privacy .Privacy__Wrap dd {
  line-height: 1.4rem;
}
.Privacy ol.m-ol {
  width: 85%;
  margin-left: 10%;
}
.Privacy ol.m-ol li.m-ol__Item {
  line-height: 1.4rem;
  margin-bottom: 1rem;
}
.Privacy ol.m-ol ol.-rome {
  margin-top: 0.5rem;
}/*# sourceMappingURL=main.css.map */