@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&display=swap');

body {
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}
a {
  color: #000;
}
a:hover, a:focus {
  text-decoration: none;
  color: #000;
}
/*サムネイル高さ調整用*/
.row-eq-height {
    display: flex;
    flex-wrap: wrap;
}

/*調整クラス*/
@media screen and (min-width:768px) {
  .br-onoff {
    display: none;
  }
}
@media screen and (max-width:767px) {
  .br-onoff {
    display: block;
  }
}
.img-h300-auto-1 {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: right;
}
.img-h300-auto-2 {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.mplus {
  font-family: 'M PLUS 1p', sans-serif;
}
.underline {
  background: linear-gradient(transparent 60%, #ffcf79 0%);
  display: inline;
  padding: 0;
}
.h200 {
  height: 200px;
}
.fw-nomal {
  font-weight: normal;
}
.fw-bold {
  font-weight: bold;
}
.f-white {
  color: #fff;
}
.f-orange {
  color: #eca315;
}
.f-purple-lg {
  color: #a95cac;
  font-size: 1.0em;
  font-weight: bold;
}
.f-pink-b {
  color: #e4007f;
  font-weight: bold;
}
.f-pink-l {
  color: #e4007f;
  font-size: 55px;
  font-weight: bold;
}
.f-orange-lg {
  color: #f95d16;
  font-weight: bold;
  font-size: 2.0em;
}
.f-05em {
  font-size: 0.5em;
}
.f-08em {
  font-size: 0.8em;
}
.f-1em {
  font-size: 1em;
}
.f-12em {
  font-size: 1.2em;
}
.f-15em {
  font-size: 1.5em;
}
.f-2em {
  font-size: 2em;
}
.f-responsive-s {
  font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));
}
.f-responsive-l {
  font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));
}
.m-bottom-5 {
  margin-bottom: 5px;
}
.m-bottom-10 {
  margin-bottom: 10px;
}
.m-bottom-15 {
  margin-bottom: 15px;
}
.m-bottom-20 {
  margin-bottom: 20px;
}
.m-bottom-30 {
  margin-bottom: 30px;
}
.m-bottom-50 {
  margin-bottom: 50px;
}
.m-top-5 {
  margin-top: 5px;
}
.m-top-10 {
  margin-top: 10px;
}
.m-top-20 {
  margin-top: 20px;
}
.m-top-30 {
  margin-top: 30px;
}
.m-top-40 {
  margin-top: 40px;
}
.m-top-50 {
  margin-top: 50px;
}
.m-top-100 {
  margin-top: 100px;
}
.m-left-15 {
  margin-left: 15px;
}
.m-left-100 {
  margin-left: 100px;
}
.m-right-15 {
  margin-right: 15px;
}
.m-right-30 {
  margin-right: 30px;
}
.m-left-30 {
  margin-left: 30px;
}
.pad10 {
  padding: 10px;
}
.pad20 {
  padding: 20px;
}
.line-height-08 {
  line-height: 0.8;
}
.line-height-20 {
  line-height: 2;
}
.indent1 {
  text-indent: 1em;
}
.hr-red {
  border-color: red;
}
.table-custom01 {
  background-color: #fff;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.dl-custom01 {
  background-color: #fff;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.dl-custom01 dt {
  text-align: left;
}
.dl-custom01 dt, .dl-custom01 dd {
  padding: 5px;
  border-top: 1px solid #ddd;
}
@media (max-width: 767px) {
  .dl-custom01 dd {
    border: none;
  }
}
.title1 {
  text-align: center;
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
}
.title2 {
  position: relative;
  display: inline-block;
  margin-bottom: 2em;
  width: 100%;
  text-align: center;
  letter-spacing: 5px;
  margin-top: 2em;
  color: #fff;
  font-size: 32px;
}
.title2:before {
  content: '';
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 50px;
  height: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 4px;
}
.title2 span {
  position: absolute;
  bottom: -50px;
  font-size: 0.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  letter-spacing: 2px;
}
.title3 {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #000;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #d8ab7f;/*左線*/
}

.flash:hover img {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

@font-face {
    font-family: 'LigatureSymbols';
    src: url('../fonts/LigatureSymbols-2.11.eot');
    src: url('../fonts/LigatureSymbols-2.11.eot?#iefix') format('embedded-opentype'),
         url('../fonts/LigatureSymbols-2.11.woff') format('woff'),
         url('../fonts/LigatureSymbols-2.11.ttf') format('truetype'),
         url('../fonts/LigatureSymbols-2.11.svg#LigatureSymbols') format('svg');
    src: url('../fonts/LigatureSymbols-2.11.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.lsf, .lsf-icon:before {
  font-family: 'LigatureSymbols';
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.lsf-icon:before {
  content:attr(title);
  margin-right:0.3em;
  font-size:130%;
}
div.scroll-icon {
  padding-top: 70px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 1;
  top: -10px;
}
div.scroll-icon span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/*ナビゲーション*/
#header-sns-area {
  position: fixed;
  top: 60px;
  right: 10px;
  z-index: 4;
}
#header-sns-area .header-sns-icon {
  width: 50px;
  display: block;
  margin-top: 10px;
}
.navi {
    position: relative;
    width: 100%;
    height: 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.navi > li {
    float: left;
    width: 16.66%;
    height: 50px;
    line-height: 50px;
    /*background: rgb(29, 33, 19);*/
    list-style: none;
    text-align: center;
}
.navi > li a {
    display: block;
    color: #000;
}
.navi > li a:hover {
    color: #fff;
}
ul.navi-second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    list-style: none;
    padding-left: 0;
}
ul.navi-third-level {
    visibility: hidden;
    opacity: 0;
}
ul.navi-fourth-level {
    visibility: hidden;
    opacity: 0;
}
.navi > li:hover {
    background: #d8ab7f;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.navi-second-level li {
    border-top: 1px solid #111;
}
.navi-third-level li {
    border-top: 1px solid #111;
}
.navi-second-level li a:hover {
    background: #111;
}
.navi-third-level li a:hover {
    background: #2a1f1f;
}
.navi-fourth-level li a:hover {
    background: #1d0f0f;
}
/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* floatクリア */
.navi:before,
.navi:after {
    content: " ";
    display: table;
}
.navi:after {
    clear: both;
}
.navi {
    *zoom: 1;
}
.navi > li.navi-dropdown {
    position: relative;
}
.navi > li.navi-contact {
  /*background-color: #fff100;*/
  border-radius: 30px;
  background-image: url(../img/bg_btn.png);
}
.navi > li.navi-contact a {
  color: #fff;
}
.navi > li.navi-contact:hover {
    /*background: #d8ab7f;*/
    -webkit-transition: all .5s;
    transition: all .5s;
}

li.navi-dropdown ul.navi-second-level {
    position: absolute;
    top: 40px;
    width: 100%;
    background: #d8ab7f;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.navi-dropdown:hover ul.navi-second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;
}
/*ここからハンバーガーメニュー*/
div.globalMenuSp {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    /*background: #fff;*/
    /*color: #000;*/
    color: #fff;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
}
div.globalMenuSp ul {
    /*background: #ccc;*/
    background-color: rgba(216,171,127,0.8);
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
div.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    /*border-bottom: 1px dotted #333;*/
    border-bottom: 1px dotted #fff;
    position: relative;
}
div.globalMenuSp ul li ul {
  background-color: rgba(0,0,0,0.8);
}
/* 最後はラインを描かない */
div.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
div.globalMenuSp ul li a {
    display: block;
    /*color: #000;*/
    color: #fff;
    padding: 1em 0;
}
div.globalMenuSp ul li a.navDrop {
  position: absolute;
  right: 30px;
  top: 0px;
}
/* このクラスを、jQueryで付与・削除する */
div.globalMenuSp.active {
    transform: translateY(0%);
}
.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 13px;
    top: 12px;
    width: 42px;
    height: 51px;
    cursor: pointer;
    z-index: 9999;
    /*background: #666;*/
    text-align: center;
}
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #000;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
.navToggle span:nth-child(1) {
    top: 9px;
}
.navToggle span:nth-child(2) {
    top: 18px;
}
.navToggle span:nth-child(3) {
    top: 27px;
}
.navToggle span:nth-child(4) {
    border: none;
    color: #000;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*ここまでハンバーガーメニュー*/

/*左ナビ*/
.header-left-btn {
  position: absolute;
  left: 0;
  top: 130px;
  padding: 20px;
  cursor: pointer;
  background-color: #f2d016;
  z-index: 1;
  width: 170px;
}
@media (max-width: 767px) {
  .header-left-btn {
    left: 0;
    top: 80px;
    padding: 10px;
    width: 100px;
    font-size: 0.6em;
  }
}

/*ここまで左ナビ*/

/*ページ共通*/
header {
  padding: 30px 0;
}
header .instagram-logo {
  position: absolute;
  right: 26%;
  top: 90px;
  width: 60px;
  height: 60px;
}
@media (max-width: 767px) {
  header .mian-logo {
    width: 150px;
  }
  header .instagram-logo {
    right: 10px;
    top: 55px;
  }
}
#nav {
  margin-top: 20px;
}
#nav span {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
footer {
  background-color: #fff3dd;
  margin-top: 100px;
}
#copy {
  background-color: #000;
  padding: 20px 30px;
  color: #fff;
  text-align: right;
  width: 50%;
  float: right;
  border-radius: 20px 0 0 0;
  margin-top: 50px;
}
@media (max-width: 767px) {
  #copy {
    width: 80%;
  }
}
footer .text-box {
  width: 460px;
  line-height: 2em;
  font-size: 13px;  
  margin: 60px auto;
}
footer .text-box .shop-name {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 2em;
}
footer .text-box .description {
  margin-top: 50px;
  line-height: 2.5em;
}
footer .text-box .description .indent {
  text-indent: 5em;
  display: block;
  line-height: 1em;
  margin-bottom: 1em;
}
footer .text-box .description .map-link {
  color: #0076ff;
  text-decoration: underline;
}
footer .badge {
  text-align: center;
  background-color: #222;
  color: #fff;
  border-radius: 20px;
  width: 200px;
  margin: 15px auto;
  display: block;
}
@media (max-width: 767px) {
  footer .text-box {
    width: 320px;
  }
  footer .text-box .shop-name {
    font-size: 14px;
  }
  footer .text-box .description {
    font-size: 12px;
  }
}


/*index*/
#slider .slide-box {
  /*position: absolute;*/
  /*right: 0;*/
  overflow: hidden;
}
#slider .over-text-slider {
  position: absolute;
  bottom: 0;
  right: 1220px;
  background-color: #fff;
  border-radius: 0 30px 0 0;
  width: 200px;
  text-align: center;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
}
/*@media (max-width: 767px) {*/
@media (max-width: 1420px) {
  #slider .slide-box {
    margin-left: 20px;
  }
  #slider .over-text-slider {
    right: unset;
  }
}
#concept {
  margin: 50px auto;
  background: url(../img/concept_bg@2x.png) no-repeat top left;
  background-size: 209px;
}
#concept .text-box {
  /*width: 420px;*/
  margin-top: 100px;
  margin-left: 150px;
  line-height: 2.8em;
  font-size: 13px;
}
#concept .text-box .concept-text02 {
  margin-top: 40px;
}
@media (max-width: 767px) {
  #concept {
    background: url(../img/concept_bg@2x.png) no-repeat top left -20px;
    background-size: 90px;
  }
  #concept .text-box {
    margin-top: 50px;
    margin-left: 40px;
    margin-right: 30px;
    /*font-size: 0.5em;*/
  }
  #concept .text-box .concept-text01 {
    display: block;
    margin-top: -20px;
    margin-bottom: -40px;
  }
  #concept .text-box .concept-text02 {
    /*font-size: 0.5em;*/
    line-height: 2.5em;
  }
}
#concept .text-box .badge {
  text-align: center;
  background-color: #222;
  color: #fff;
  border-radius: 20px;
  width: 200px;
  margin: 15px 0;
  display: block;
}
#drinkfoods {
  padding: 0;
}
#drinkfoods .foods-block {
  display: block;
  float: right;
  margin-right: 50px;
}
#drinkfoods .drink-block {
  margin-left: 50px;
}
#drinkfoods .drink-img-block, #drinkfoods .foods-img-block {
  position: relative;
}
#drinkfoods .drink-img-block img, #drinkfoods .foods-img-block img {
  object-fit: cover;
  height: 520px;
}
#drinkfoods .drink-img-block img {
  border-radius: 0 30px 0 0;
}
#drinkfoods .foods-img-block img {
  border-radius: 30px 0 0 0;
}
@media (max-width: 767px) {
  #drinkfoods .foods-block {
    float: none;
    margin-left: 50px;
    margin-right: unset;
  }
  #drinkfoods .drink-block {
    margin-top: 50px;
  }
  #drinkfoods .foods-block p, #drinkfoods .drink-block p {
    font-size: 12px;
  }
  #drinkfoods .drink-img-block {
    margin-right: 20px;
  }
  #drinkfoods .drink-img-block img {
    height: 70vw;
    object-fit: cover;
    border-radius: 0 30px 0 0;
  }
  #drinkfoods .foods-img-block {
    margin-left: 20px;
  }
  #drinkfoods .foods-img-block img {
    height: 70vw;
    object-fit: cover;
    border-radius: 30px 0 0 0;
  }
}
#drinkfoods .over-text-drink {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
  border-radius: 30px 0 0 0;
  width: 200px;
  text-align: center;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
}
#drinkfoods .over-text-foods {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-radius: 0 30px 0 0;
  width: 200px;
  text-align: center;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
}
#access .text-box {
  width: 435px;
  line-height: 2em;
  font-size: 13px;  
  margin: 60px auto;
}
#access .text-box .shop-name {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 2em;
}
#access .text-box .description {
  margin-top: 50px;
  line-height: 2.5em;
}
#access .text-box .description span {
  letter-spacing: 0.5em;
}
#access .text-box .description .map-link {
  color: #0076ff;
  text-decoration: underline;
}
@media (max-width: 767px) {
  #access {
    padding: 0;
  }
  #access .text-box {
    width: 320px;
  }
  #access .text-box .shop-name {
    font-size: 14px;
  }
  #access .text-box .description {
    font-size: 12px;
  }
}
#instagram {
  margin-top: 100px;
}
#instagram img {
  border-radius: 30px;
}
.insta-link {
  padding-left: 70px;
  background: url(../img/icon_instagram@2x.png) no-repeat left;
  background-size: 60px;
  line-height: 60px;
  width: 220px;
  margin: 0 auto;
}
#instagram .coli-1 img {
  width: 438px;
  height: 438px;
  object-fit: cover;
}
#instagram .coli-2 img {
  width: 204px;
  height: 204px;
  object-fit: cover;
}
@media (max-width: 767px) {
  #instagram .coli-1 img {
    width: 100%;
    height: 90vw;
    object-fit: cover;
  }
  #instagram .coli-2 img {
    width: 100%;
    height: 45vw;
    object-fit: cover;
  }
}