@charset "utf-8";

/*---------------------------------------------------------------------------------------------

ベース

---------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background: #2B2B2B;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

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

a {
  opacity: 1;
  transition: .3s;
}

a:hover {
  opacity: .6;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px); /* 下からスライドインなど任意で */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {

  body {
  }

}

/*---------------------------------------------------------------------------------------------

FLEX

---------------------------------------------------------------------------------------------*/

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.al-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
	justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

}

/*---------------------------------------------------------------------------------------------

PC

---------------------------------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

/*---------------------------------------------------------------------------------------------

SP

---------------------------------------------------------------------------------------------*/


@media screen and (max-width: 768px) {

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}

/*---------------------------------------------------------------------------------------------

ハンバーガーメニュー

---------------------------------------------------------------------------------------------*/

.hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  left: 10px;
  top: 20px;
  width: 40px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #FFF;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  transform: translateX(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
  padding: 30px 20px;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

.head_nav {
  text-align: center;
}

.head_nav li {
  font-size: 2.4rem;
    color: #FFF;
    margin-bottom: 50px;
}

/*---------------------------------------------------------------------------------------------

ヘッダー

---------------------------------------------------------------------------------------------*/

header {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 240px;
  width: 18%;
  height: 100vh;
  z-index: 10;
  padding: 50px 0;
}

.head_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.80);
  mix-blend-mode: multiply;
}

.head_cont {
  mix-blend-mode: normal;
  position: relative;
}

.head_logo {
  max-width: 128px;
  width: 80%;
  margin: auto;
}

.head_navi {
  width: 80%;
  margin: auto;
  margin-top: 150px;
  font-size: 2rem;
  color: #FFF;
}

.head_navi ul li {
  line-height: 300%;
}

@media (max-height: 800px) {

  header {
    height: 100%;
  }

  .head_bg {
    height: 100%;
  }

}

@media screen and (max-width: 1040px) {

  .head_bg {
    display: none;
  }

  .head_cont {
    display: none;
  }

}

/*---------------------------------------------------------------------------------------------

フッター

---------------------------------------------------------------------------------------------*/

footer {
  width: 100%;
  background-color: #FFF;
  padding: 66px 0 30px 0;
}

.foot_logo {
  width: 140px;
  margin-left: 100px;
}

.foot_navi ul {
  color: #2B2B2B;
  font-size: 2rem;
}

.foot_navi ul li {
  margin-right: 40px;
}

.copy {
  font-size: 1.2rem;
  letter-spacing: 1.8px;
  width: 100%;
  text-align: right;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {

  footer {
    padding: 30px;
  }

  .foot_logo {
    width: 80px;
    margin-left: 0;
  }

  .foot_navi ul {
    font-size: 1.4rem;
  }

  .foot_navi ul li {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .copy {
    margin-top: 30px;
    padding-right: 0;
    text-align: center;
  }  

}


/*---------------------------------------------------------------------------------------------

コンテンツ

---------------------------------------------------------------------------------------------*/

.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../img/mv_image.webp") no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

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

.mv_content h1 {
  width: 207px;
}

.sub_tit_pc {
  position: absolute;
  width: 94px;
  top: 45px;
  right: 45px;
}

.mv_option {
  position: absolute;
  width: 297px;
  top: 0;
  left: 50px;
}

.main_wrap {
  width: 82%;
  margin-left: 18%;
}

.ver_txt {
  width: 20px;
  margin-left: 50px;
}

.menu_area {
  max-width: 893px;
  width: 85%;
}

.menu_txt {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #FFF;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.56px;
}

.shop {
  overflow: hidden;
  position: relative;
  padding-top: 170px;
  padding-bottom: 140px;
}

.shop_bg {
  position: absolute;
  background: url("../img/bg_circle_shop.webp") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 975px;
  height: 1561px;
  top: 0;
  right: 0;
}

.shop_area {
  position: relative;
  max-width: 826px;
  width: 80%;
  margin-right: 67px;
}

.shop_info {
  margin-bottom: 120px;
}

.map_wrap {
  width: 100%;
}

.shop_txt {
  margin-top: 25px;
  font-size: 2rem;
  color: #FFF;
  font-style: normal;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 3px;
}

.link_btn {
  width: 210px;
  position: relative;
  font-size: 1.6rem;
  color: #FFF;
  padding: 22px;
  border: 1px solid #FFF;
  background: transparent;
  transition: .3s;
  margin-top: 30px;
}

.link_btn:hover {
  background: #000;
  border: 1px solid #000;
}

.link_btn::after {
  position: absolute;
  content: "ー";
  font-size: 1.6rem;
  color: #FFF;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.tabelog_btn {
  display: block;
  max-width: 744px;
  width: 90%;
}

.concept {
  /* overflow: hidden; */
  position: relative;
  padding-top: 125px;
  padding-bottom: 800px;
}

.con_bg01 {
  position: absolute;
  background: url("../img/bg_circle_con01.webp") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 473px;
  height: 669px;
  top: 30%;
  right: 0;
}

.con_bg02 {
  position: absolute;
  background: url("../img/bg_circle_con02.webp") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 703px;
  height: 777px;
  top: 60%;
  left: 0;
}

.con_image_main {
  max-width: 768px;
  margin-left: 100px;
}

.con_txt_box {
  position: relative;
  margin-top: 160px;
  margin-left: 100px;
}

.con_head {
  margin-bottom: 50px;
  color: #FFF;
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 4px;
}

.con_txt {
  color: #FFF;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.7;
}

.con_image_sub1 {
  position: absolute;
  width: 250px;
  top: 38%;
  right: 70px;
  z-index: 2;
}

.con_image_sub2 {
  position: absolute;
  width: 347px;
  bottom: 20%;
  left: 100px;
  z-index: 2;
}

.con_image_sub3 {
  position: absolute;
  width: 505px;
  bottom: 10%;
  right: 55px;
  z-index: 2;
}

.con_image_sp {
  display: none;
}

.con_option01 {
  position: absolute;
  width: 297px;
  top: 0;
  right: 0;
  z-index: 1;
}

.con_option02 {
  position: absolute;
  width: 297px;
  top: 25%;
  left: 0;
  z-index: 1;
}

.con_option03 {
  position: absolute;
  width: 297px;
  bottom: 0;
  right: 0;
  z-index: 1;
}


@media (max-height: 800px) {
  .mv {
    height: 100%;
    padding: 100px 0;
  }
  .mv_content {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }
  .mv_content h1 {
    margin: auto;
  }
}

@media screen and (max-width: 1200px) {

  .concept {
    padding-bottom: 200px;
  }

  .con_image_sub1,
  .con_image_sub2,
  .con_image_sub3 {
    display: none;
  }

  .con_image_sp {
    position: relative;
    display: block;
    width: 60%;
    margin: auto;
  }

}

@media screen and (max-width: 1040px) {

  .main_wrap {
    width: 100%;
    margin-left: 0;
  }

}

@media screen and (max-width: 768px) {

  .sub_tit_sp {
    margin-top: 30px;
    font-size: 1.4rem;
    color: #FFF;
    text-align: center;
    line-height: 1.4;
  }

  .ver_txt {
    width: 60%;
    margin: 20px auto;
  }

  .menu_area,
  .shop_area {
    width: 90%;
    margin: auto;
  }

  .shop {
    padding: 50px 0;
  }

  .shop_txt {
    font-size: 1.6rem;
  }

  .shop_txt span {
    font-size: 1.3rem;
  }

  .shop_info {
    margin-bottom: 60px;
  }

  .tabelog_btn {
    width: 100%;
  }

  .concept {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .con_option01,
  .con_option02,
  .con_option03 {
    width: 180px;
  }

  .con_image_main {
    width: 90%;
    margin: auto;
  }

  .con_txt_box {
    width: 90%;
    margin: 50px auto;
  }

  .con_head {
    font-size: 3rem;
  }

  .con_txt {
    font-size: 1.6rem;
    line-height: 2;
  }

  .con_image_sp {
    width: 100%;
  }

}