@charset "UTF-8";
/* home common
-----------------------------------------------------------*/
div.hlWrap h2 {
  font-size: min(3.2258064516vw, 40px);
  line-height: 1;
  font-weight: 500;
}
div.hlWrap p {
  font-size: min(2.1774193548vw, 27px);
  line-height: 1;
  margin-top: min(2.0161290323vw, 25px);
}
div.hlWrap p ~ p {
  margin-top: min(2.8225806452vw, 35px);
}

@media screen and (max-width: 767px) {
  div.hlWrap h2 {
    font-size: 9.3333333333vw;
  }
  div.hlWrap p {
    font-size: 4.2666666667vw;
    margin-top: 4vw;
  }
  div.hlWrap p ~ p {
    margin-top: 6.6666666667vw;
  }
}
/* kv
-----------------------------------------------------------*/
#kvSec {
  position: relative;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#kvSec div.kvBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 20;
  transition: 0.3s all;
}
#kvSec div.kvSlide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100vh;
}
#kvSec div.kvSlide li {
  width: 100%;
  height: 100vh;
  opacity: 0;
}
#kvSec div.kvSlide li picture {
  width: 100%;
  height: 100vh;
  display: block;
}
#kvSec div.kvSlide li picture::after {
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  background: rgba(35, 24, 21, 0.3);
}
#kvSec div.kvSlide li picture img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: calc(100% + min(16.1290322581vw, 200px));
  margin-left: min(-8.064516129vw, -100px);
}
#kvSec div.kvSlide li p {
  width: min(16.935483871vw, 210px);
  position: absolute;
  left: min(6.8548387097vw, 85px);
  bottom: min(4.0322580645vw, 50px);
  z-index: 20;
}
#kvSec div.kvSlide li.swiper-slide-visible picture, #kvSec div.kvSlide li.swiper-slide-prev picture {
  -webkit-animation: kvin 7s 1 linear forwards;
          animation: kvin 7s 1 linear forwards;
}
#kvSec div.kvSlide li.swiper-slide-visible.move_lh picture, #kvSec div.kvSlide li.swiper-slide-prev.move_lh picture {
  -webkit-animation: kvin_lh 7s 1 linear forwards;
          animation: kvin_lh 7s 1 linear forwards;
}
#kvSec div.kvSlide li.swiper-slide-visible.move_rh picture, #kvSec div.kvSlide li.swiper-slide-prev.move_rh picture {
  -webkit-animation: kvin_rh 7s 1 linear forwards;
          animation: kvin_rh 7s 1 linear forwards;
}
#kvSec h1 {
  width: min(33.9516129032vw, 421px);
}
#kvSec .kv-pagination {
  display: flex;
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 6.6666666667vw;
  width: 100%;
  position: absolute;
  bottom: min(3.2258064516vw, 40px);
  left: 0;
  z-index: 20;
}
#kvSec .kv-pagination .swiper-pagination-bullet {
  position: relative;
  margin: 0;
  opacity: 1;
  width: min(3.2258064516vw, 40px);
  height: min(3.2258064516vw, 40px);
  border-radius: 0;
  background: none;
}
#kvSec .kv-pagination .swiper-pagination-bullet span {
  background: #cacaca;
  display: block;
  position: absolute;
  top: calc(50% - min(0.4032258065vw, 5px));
  left: calc(50% - min(0.4032258065vw, 5px));
  z-index: 20;
  opacity: 1;
  width: min(0.8064516129vw, 10px);
  height: min(0.8064516129vw, 10px);
  border-radius: 50%;
  transition: 0.3s all;
  transform: scale(1);
}
#kvSec .kv-pagination .swiper-pagination-bullet svg {
  opacity: 0;
  -webkit-animation: dotDisActive 0.5s 1 linear both;
          animation: dotDisActive 0.5s 1 linear both;
}
#kvSec .kv-pagination .swiper-pagination-bullet-active span {
  background: #228038;
  width: min(1.2903225806vw, 16px);
  height: min(1.2903225806vw, 16px);
  top: calc(50% - min(0.6451612903vw, 8px));
  left: calc(50% - min(0.6451612903vw, 8px));
  transition-delay: 0.5s;
}
#kvSec .kv-pagination .swiper-pagination-bullet-active svg {
  opacity: 1;
  -webkit-animation: dotActive 5.5s 1 linear both;
          animation: dotActive 5.5s 1 linear both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#kvSec .kv-pagination .circle-pagination__inner svg {
  position: absolute;
  top: calc(50% - min(0.9677419355vw, 12px));
  left: calc(50% - min(0.9677419355vw, 12px));
  z-index: 10;
  width: min(1.935483871vw, 24px);
  height: min(1.935483871vw, 24px);
  transform: rotate(-90deg);
}
#kvSec .kv-pagination .circle-pagination__inner circle {
  fill: none;
  stroke: #228038;
  stroke-width: 2px;
}
#kvSec .kv-pagination.ready .swiper-pagination-bullet svg {
  opacity: 1;
}

@-webkit-keyframes kvin {
  0% {
    transform: scale(1);
  }
  100%, to {
    transform: scale(1.1);
  }
}

@keyframes kvin {
  0% {
    transform: scale(1);
  }
  100%, to {
    transform: scale(1.1);
  }
}
@-webkit-keyframes kvin_lh {
  0% {
    transform: translateX(min(4.0322580645vw, 50px)) scale(1.1);
  }
  100%, to {
    transform: translateX(min(-4.0322580645vw, -50px)) scale(1.1);
  }
}
@keyframes kvin_lh {
  0% {
    transform: translateX(min(4.0322580645vw, 50px)) scale(1.1);
  }
  100%, to {
    transform: translateX(min(-4.0322580645vw, -50px)) scale(1.1);
  }
}
@-webkit-keyframes kvin_rh {
  0% {
    transform: translateX(min(-4.0322580645vw, -50px)) scale(1.1);
  }
  100%, to {
    transform: translateX(min(4.0322580645vw, 50px)) scale(1.1);
  }
}
@keyframes kvin_rh {
  0% {
    transform: translateX(min(-4.0322580645vw, -50px)) scale(1.1);
  }
  100%, to {
    transform: translateX(min(4.0322580645vw, 50px)) scale(1.1);
  }
}
@-webkit-keyframes dotActive {
  0% {
    stroke-dasharray: 0 85;
  }
  100% {
    stroke-dasharray: 85 85;
  }
}
@keyframes dotActive {
  0% {
    stroke-dasharray: 0 85;
  }
  100% {
    stroke-dasharray: 85 85;
  }
}
@-webkit-keyframes dotDisActive {
  0% {
    stroke-dasharray: 85 85;
  }
  100% {
    stroke-dasharray: 0 85;
  }
}
@keyframes dotDisActive {
  0% {
    stroke-dasharray: 85 85;
  }
  100% {
    stroke-dasharray: 0 85;
  }
}
@media screen and (max-width: 767px) {
  #kvSec {
    height: calc(var(--vh) * 100);
    min-height: 106.6666666667vw;
  }
  #kvSec div.kvBox {
    font-size: 4.5333333333vw;
  }
  #kvSec div.kvSlide {
    position: absolute;
    height: calc(var(--vh) * 100);
    min-height: 106.6666666667vw;
  }
  #kvSec div.kvSlide li {
    height: calc(var(--vh) * 100);
    min-height: 106.6666666667vw;
  }
  #kvSec div.kvSlide li picture {
    min-height: 106.6666666667vw;
    height: calc(var(--vh) * 100);
  }
  #kvSec div.kvSlide li picture::after {
    height: calc(var(--vh) * 100);
  }
  #kvSec div.kvSlide li picture img {
    width: calc(100% + 53.3333333333vw);
    min-height: 106.6666666667vw;
    margin-left: -26.6666666667vw;
  }
  #kvSec div.kvSlide li p {
    width: 37.3333333333vw;
    left: 4vw;
    bottom: 4vw;
  }
  #kvSec h1 {
    width: 64vw;
  }
  #kvSec .kv-pagination {
    bottom: 5.3333333333vw;
  }
  #kvSec .kv-pagination .swiper-pagination-bullet {
    width: 6.4vw;
    height: 6.4vw;
  }
  #kvSec .kv-pagination .swiper-pagination-bullet span {
    top: calc(50% - 1.0666666667vw);
    left: calc(50% - 1.0666666667vw);
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
  #kvSec .kv-pagination .swiper-pagination-bullet-active span {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    top: calc(50% - 1.3333333333vw);
    left: calc(50% - 1.3333333333vw);
  }
  #kvSec .kv-pagination .circle-pagination__inner svg {
    top: calc(50% - 2.1333333333vw);
    left: calc(50% - 2.1333333333vw);
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
  #kvSec .kv-pagination .circle-pagination__inner circle {
    stroke-width: 2px;
  }
  @-webkit-keyframes kvin_lh {
    0% {
      transform: translateX(13.3333333333vw) scale(1.1);
    }
    100%, to {
      transform: translateX(-13.3333333333vw) scale(1.1);
    }
  }
  @keyframes kvin_lh {
    0% {
      transform: translateX(13.3333333333vw) scale(1.1);
    }
    100%, to {
      transform: translateX(-13.3333333333vw) scale(1.1);
    }
  }
  @-webkit-keyframes kvin_rh {
    0% {
      transform: translateX(-13.3333333333vw) scale(1.1);
    }
    to {
      transform: translateX(13.3333333333vw) scale(1.1);
    }
  }
  @keyframes kvin_rh {
    0% {
      transform: translateX(-13.3333333333vw) scale(1.1);
    }
    to {
      transform: translateX(13.3333333333vw) scale(1.1);
    }
  }
}
/* Concept
-----------------------------------------------------------*/
div.leadWrap {
  background: url(../img/bg_lead.jpg) center top no-repeat;
  background-size: cover;
}

section#ConceptSec {
  padding: min(6.4516129032vw, 80px) 0 0;
}
section#ConceptSec div.leadBox {
  margin-left: auto;
  text-orientation: upright;
  font-size: min(1.4516129032vw, 18px);
  background-image: url(../img/stamp_gr.svg);
  background-size: min(6.2096774194vw, 77px) auto;
  background-position: left calc(50% + min(18.5483870968vw, 230px)) bottom 0;
  background-repeat: no-repeat;
  width: 100%;
  text-align: center;
  padding-bottom: min(4.0322580645vw, 50px);
}
section#ConceptSec div.leadBox h2 {
  font-size: min(2.8225806452vw, 35px);
  margin: 0 auto min(4.435483871vw, 55px);
  line-height: 1.66;
  font-weight: 700;
}
section#ConceptSec div.leadBox h2 + p {
  font-size: min(1.5322580645vw, 19px);
  line-height: 2.1;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  div.leadWrap {
    background: url(../img/bg_lead.jpg) center top no-repeat;
    background-size: cover;
  }
  section#ConceptSec {
    padding: 16vw 0 0;
  }
  section#ConceptSec div.inner {
    padding: 0 2.6666666667vw;
  }
  section#ConceptSec div.leadBox {
    margin-left: 0;
    width: 100%;
    font-size: 4.2666666667vw;
    background-size: 12.2666666667vw auto;
    background-position: left calc(50% + 22.9333333333vw) bottom 0;
  }
  section#ConceptSec div.leadBox h2 {
    font-size: 6.9333333333vw;
    margin: 0 0 9.3333333333vw;
    font-weight: 500;
    line-height: 1.6;
  }
  section#ConceptSec div.leadBox h2 + p {
    line-height: 1.9;
    font-size: 4vw;
    letter-spacing: 0.02em;
  }
}
/* RecentSec
-----------------------------------------------------------*/
section#RecentSec {
  margin-top: max(-7.2580645161vw, -90px);
  padding: min(15.3225806452vw, 190px) 0 min(6.4516129032vw, 80px);
  background-image: url(../img/stamp_news.svg);
  background-position: right max(-5.6451612903vw, -70px) top 0;
  background-repeat: no-repeat;
  background-size: min(33.064516129vw, 410px) min(33.064516129vw, 410px);
}
section#RecentSec h2 {
  font-size: min(3.1451612903vw, 39px);
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
section#RecentSec ul {
  display: flex;
  justify-content: space-between;
  margin-top: min(4.8387096774vw, 60px);
}
section#RecentSec ul li {
  width: min(19.3548387097vw, 240px);
  height: auto;
  background: #fff;
}
section#RecentSec ul li:nth-child(1) {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}
section#RecentSec ul li:nth-child(2) {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}
section#RecentSec ul li:nth-child(3) {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}
section#RecentSec ul li:nth-child(4) {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
  transition-delay: 0.4s !important;
}
section#RecentSec ul li:nth-child(5) {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}
section#RecentSec ul li:nth-child(6) {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}
section#RecentSec ul li.swiper-slide {
  height: auto;
}
section#RecentSec ul li a figure {
  overflow: hidden;
  aspect-ratio: 4/3;
}
section#RecentSec ul li a figure img {
  display: block;
  transition: 0.5s all;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section#RecentSec ul li a > div {
  padding: min(1.2096774194vw, 15px) min(1.2096774194vw, 15px) min(2.0161290323vw, 25px);
}
@media screen and (min-width: 769px) {
  section#RecentSec ul li a:hover figure img {
    transform: scale(1.1);
  }
}
section#RecentSec ul li .categoryList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: min(0.4032258065vw, 5px) min(0.8064516129vw, 10px);
}
section#RecentSec ul li .categoryList span {
  font-family: "Airbnb", "小塚ゴシック", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  display: inline-flex;
  align-items: center;
  background: #228038;
  border-radius: min(1.6129032258vw, 20px);
  color: #fff;
  line-height: 1;
  height: min(2.0967741935vw, 26px);
  padding: 0 min(1.4516129032vw, 18px);
  font-size: min(1.0483870968vw, 13px);
  flex-shrink: 0;
}
section#RecentSec ul li .date {
  font-family: "Airbnb", "小塚ゴシック", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  color: #7e7e7f;
  font-size: min(1.0483870968vw, 13px);
  font-weight: 500;
  line-height: 1;
  margin-top: min(1.2096774194vw, 15px);
  flex-shrink: 0;
}
section#RecentSec ul li .title {
  margin-top: min(1.2096774194vw, 15px);
}
section#RecentSec .news-pagination {
  display: none;
}

@media screen and (max-width: 767px) {
  section#RecentSec {
    margin-top: 0;
    padding: 14.6666666667vw 0 21.3333333333vw;
    background-position: right -9.3333333333vw top 0;
    background-size: 54.6666666667vw 54.6666666667vw;
  }
  section#RecentSec h2 {
    font-size: 6.6666666667vw;
  }
  section#RecentSec ul {
    margin-top: 6.6666666667vw;
  }
  section#RecentSec ul li {
    width: 70.6666666667vw;
  }
  section#RecentSec ul li a > div {
    padding: 4vw 4vw 6.6666666667vw;
  }
  section#RecentSec ul li .categoryList {
    gap: 0.8vw 1.3333333333vw;
  }
  section#RecentSec ul li .categoryList span {
    height: 6.4vw;
    padding: 0 4vw;
    font-size: 3.2vw;
    border-radius: 5.3333333333vw;
  }
  section#RecentSec ul li .date {
    font-size: 3.2vw;
    margin-top: 4vw;
  }
  section#RecentSec ul li .title {
    margin-top: 4vw;
  }
  section#RecentSec .news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4vw;
    gap: 4vw;
  }
  section#RecentSec .news-pagination span {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    margin: 0;
  }
  section#RecentSec .news-pagination span.swiper-pagination-bullet-active {
    width: 3.2vw;
    height: 3.2vw;
    background: #228038;
  }
}
/* RestaurantSec
-----------------------------------------------------------*/
section#RestaurantSec {
  padding: min(7.2580645161vw, 90px) 0 0;
}
section#RestaurantSec h2 {
  font-size: min(4.8387096774vw, 60px);
}

div.shopBox {
  width: 100%;
  position: relative;
  margin-top: min(5.6451612903vw, 70px);
}
div.shopBox div.infoBox {
  width: min(30.6451612903vw, 380px);
  margin-left: auto;
}
div.shopBox h3 {
  width: min(16.935483871vw, 210px);
  margin: 0 auto;
}
div.shopBox div.slideBox {
  width: min(43.7096774194vw, 542px);
  position: absolute;
  top: 0;
  left: 0;
}
div.shopBox div.slideBox div.thumbList ul {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.8064516129vw, 10px);
  margin-top: min(0.9677419355vw, 12px);
}
div.shopBox div.slideBox div.thumbList ul li {
  width: min(6.6129032258vw, 82px);
  height: min(5.8870967742vw, 73px);
  background: #7e7e7f;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
@media screen and (min-width: 769px) {
  div.shopBox div.slideBox div.thumbList ul li:hover {
    opacity: 0.6;
  }
}
div.shopBox div.slideBox div.thumbList ul li::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  transition: 0.3s all;
  top: 0;
  left: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.6);
}
div.shopBox div.slideBox div.thumbList ul li.active::after {
  background: rgba(0, 0, 0, 0);
}
div.shopBox .note {
  font-size: min(1.4516129032vw, 18px);
  font-weight: 700;
  margin-top: min(2.4193548387vw, 30px);
  line-height: 2.2;
  text-align: justify;
  letter-spacing: 0.05em;
}
div.shopBox div.bisInfo {
  background: #e5f0ec;
  padding: min(1.6129032258vw, 20px) min(2.0161290323vw, 25px);
  border-radius: min(0.8064516129vw, 10px);
  font-family: "Airbnb", "小塚ゴシック", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: min(1.2096774194vw, 15px);
  margin-top: min(1.2096774194vw, 15px);
  font-weight: 400;
}
div.shopBox div.bisInfo p {
  display: flex;
}
div.shopBox div.bisInfo p::before {
  content: "";
  width: min(1.935483871vw, 24px);
  height: min(1.6935483871vw, 21px);
  background: url(../img/icon_bis.svg) center center no-repeat;
  background-size: contain;
  margin-right: 0.5em;
  margin-top: 0.2em;
}
div.shopBox div.bisInfo p.roomInfo {
  margin-top: 0.5em;
}
div.shopBox div.bisInfo p.roomInfo::before {
  background-image: url(../img/icon_room.svg);
}
div.shopBox div.linkBox {
  width: min(29.0322580645vw, 360px);
  margin-top: min(1.6129032258vw, 20px);
  margin-left: auto;
}
div.shopBox div.linkBox .linkBtn a {
  margin-top: min(0.4032258065vw, 5px);
}
div.shopBox div.linkBox .linkBtn.gn a::before {
  content: "";
  width: min(2.1774193548vw, 27px);
  height: min(2.1774193548vw, 27px);
  background: url(../img/icon_gn.png) 0 0 no-repeat;
  background-size: contain;
  margin-right: 0.5em;
}
div.shopBox div.linkBox .linkBtn.hpp a::before {
  content: "";
  width: min(2.1774193548vw, 27px);
  height: min(2.1774193548vw, 27px);
  background: url(../img/icon_hp.png) 0 0 no-repeat;
  background-size: contain;
  margin-right: 0.5em;
}
div.shopBox.rev div.infoBox,
div.shopBox.rev div.linkBox {
  margin-left: 0;
}
div.shopBox.rev div.slideBox {
  left: auto;
  right: 0;
}

section#CabaretSec {
  padding: min(7.2580645161vw, 90px) 0 min(4.8387096774vw, 60px);
}
section#CabaretSec h2 {
  font-size: min(4.8387096774vw, 60px);
}
section#CabaretSec div.shopBox div.bisInfo {
  background: #fae5e5;
}
section#CabaretSec div.shopBox div.bisInfo p::before {
  background-image: url(../img/icon_bis_rd.svg);
}
section#CabaretSec div.shopBox div.bisInfo p.roomInfo::before {
  background-image: url(../img/icon_room_rd.svg);
}

@media screen and (max-width: 767px) {
  section#RestaurantSec {
    padding: 16vw 0 0;
  }
  section#RestaurantSec h2 {
    font-size: 9.3333333333vw;
  }
  div.shopBox {
    margin-top: 13.3333333333vw;
  }
  div.shopBox div.infoBox {
    width: 100%;
  }
  div.shopBox h3 {
    width: 48vw;
  }
  div.shopBox div.slideBox {
    width: 100%;
    position: static;
    margin-top: 4vw;
  }
  div.shopBox div.slideBox div.thumbList ul {
    gap: 1.52%;
    margin-top: 2.6666666667vw;
  }
  div.shopBox div.slideBox div.thumbList ul li {
    aspect-ratio: 82/73;
    width: 15.4%;
    height: auto;
  }
  div.shopBox div.slideBox div.thumbList ul.thumb6 li:nth-child(n+7) {
    margin-top: 1.52%;
  }
  div.shopBox div.slideBox div.thumbList ul.thumb5 {
    gap: 1.875%;
  }
  div.shopBox div.slideBox div.thumbList ul.thumb5 li {
    width: 18.5%;
  }
  div.shopBox div.slideBox div.thumbList ul.thumb4 {
    gap: 2.53%;
  }
  div.shopBox div.slideBox div.thumbList ul.thumb4 li {
    width: 23.1%;
  }
  div.shopBox .note {
    font-size: 4vw;
    margin-top: 6.6666666667vw;
    text-align: center;
    line-height: 1.8;
  }
  div.shopBox div.bisInfo {
    padding: 4vw 2.6666666667vw;
    border-radius: 2.6666666667vw;
    font-size: 3.4666666667vw;
    margin-top: 2.6666666667vw;
    letter-spacing: 0.06em;
  }
  div.shopBox div.bisInfo p {
    display: flex;
  }
  div.shopBox div.bisInfo p::before {
    content: "";
    width: 4.8vw;
    height: 4.5333333333vw;
  }
  div.shopBox div.linkBox {
    width: 100%;
    margin-top: 5.3333333333vw;
  }
  div.shopBox div.linkBox .linkBtn a {
    margin-top: 2.6666666667vw;
    width: 100%;
  }
  div.shopBox div.linkBox .linkBtn.gn a::before {
    width: 7.2vw;
    height: 7.2vw;
  }
  div.shopBox div.linkBox .linkBtn.hpp a::before {
    content: "";
    width: 7.2vw;
    height: 7.2vw;
  }
  section#CabaretSec {
    padding: 18.6666666667vw 0 13.3333333333vw;
  }
  section#CabaretSec h2 {
    font-size: 9.3333333333vw;
  }
}
/* MessageSec
-----------------------------------------------------------*/
section#MessageSec {
  background: #231815;
  color: #fff;
  padding: min(9.6774193548vw, 120px) 0 min(0vw, 0px);
}
section#MessageSec div.greetingNote {
  margin-top: min(2.0161290323vw, 25px);
}
section#MessageSec div.ceoBox {
  margin-left: auto;
  text-align: right;
}

@media screen and (max-width: 767px) {
  section#MessageSec {
    padding: 17.3333333333vw 0 0vw;
  }
  section#MessageSec div.greetingNote {
    margin-top: 5.3333333333vw;
    font-size: 3.4666666667vw;
  }
  section#MessageSec div.ceoBox {
    font-size: 3.7333333333vw;
    margin-top: 2.6666666667vw;
  }
}
/* GroupSec
-----------------------------------------------------------*/
section#GroupSec {
  background: #231815;
  color: #fff;
  padding: min(6.4516129032vw, 80px) 0 min(4.8387096774vw, 60px);
}
section#GroupSec table {
  margin-top: min(4.8387096774vw, 60px);
}
section#GroupSec table th,
section#GroupSec table td {
  padding: min(1.2096774194vw, 15px) 0;
  vertical-align: top;
}
section#GroupSec table th {
  width: min(12.0967741935vw, 150px);
  border-right: 1px solid #fff;
}
section#GroupSec table td {
  padding-left: min(4.8387096774vw, 60px);
}
section#GroupSec table td span {
  display: inline-block;
}
section#GroupSec dl {
  display: grid;
  grid-template-columns: 45% 55%;
}
section#GroupSec #gMap {
  margin-top: min(2.8225806452vw, 35px);
  filter: grayscale(1);
}
section#GroupSec #gMap iframe {
  width: 100%;
  height: min(40.3225806452vw, 500px);
}

@media screen and (max-width: 767px) {
  section#GroupSec {
    padding: 18.6666666667vw 0 16vw;
  }
  section#GroupSec table {
    margin-top: 8vw;
    font-size: 3.7333333333vw;
  }
  section#GroupSec table th,
section#GroupSec table td {
    display: block;
  }
  section#GroupSec table th {
    width: 100%;
    border-right: none;
    padding: 0 0 0.8vw 0;
  }
  section#GroupSec table td {
    padding: 0 0 5.3333333333vw 0;
  }
  section#GroupSec dl {
    display: block;
  }
  section#GroupSec #gMap {
    margin-top: 4vw;
  }
  section#GroupSec #gMap iframe {
    height: 80vw;
  }
}
/* HistorySec
-----------------------------------------------------------*/
section#HistorySec {
  background: #231815;
  color: #fff;
  padding: min(8.064516129vw, 100px) 0 min(5.6451612903vw, 70px);
}
section#HistorySec div.histImgBox {
  margin-top: min(5.6451612903vw, 70px);
}
section#HistorySec div.histImgBox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section#HistorySec div.histImgBox ul figcaption {
  text-align: center;
  font-size: min(1.2096774194vw, 15px);
  font-weight: 700;
  line-height: 1.5;
  margin-top: min(1.2096774194vw, 15px);
}
section#HistorySec div.histImgBox div.vertImgList ul {
  gap: min(3.2258064516vw, 40px);
}
section#HistorySec div.histImgBox div.vertImgList li {
  width: min(17.9032258065vw, 222px);
}
section#HistorySec div.histImgBox div.horiImgList {
  margin-top: min(2.0161290323vw, 25px);
}
section#HistorySec div.histImgBox div.horiImgList ul {
  gap: min(1.6129032258vw, 20px) min(2.8225806452vw, 35px);
}
section#HistorySec div.histImgBox div.horiImgList li {
  width: min(25vw, 310px);
}
section#HistorySec div.historyBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: min(4.0322580645vw, 50px);
}
section#HistorySec div.historyBox dl {
  display: flex;
  flex-wrap: wrap;
  font-size: min(1.2096774194vw, 15px);
  line-height: 1.5;
}
section#HistorySec div.historyBox dt {
  width: min(11.2903225806vw, 140px);
  margin-top: 1.4em;
}
section#HistorySec div.historyBox dd {
  width: calc(100% - min(12.0967741935vw, 150px));
  margin-top: 1.4em;
}

@media screen and (max-width: 767px) {
  section#HistorySec {
    padding: 8vw 0 5.3333333333vw;
  }
  section#HistorySec h2 {
    line-height: 1.5;
  }
  section#HistorySec div.histImgBox {
    margin: 8vw -8vw 0;
  }
  section#HistorySec div.histImgBox ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 8vw;
  }
  section#HistorySec div.histImgBox ul figcaption {
    font-size: 3.2vw;
    margin-top: 2.6666666667vw;
  }
  section#HistorySec div.histImgBox div.vertImgList {
    width: 100%;
    overflow: auto;
  }
  section#HistorySec div.histImgBox div.vertImgList ul {
    width: 161.6vw;
    gap: 8vw;
  }
  section#HistorySec div.histImgBox div.vertImgList li {
    width: 48.5333333333vw;
  }
  section#HistorySec div.histImgBox div.horiImgList {
    width: 100%;
    overflow: auto;
    margin-top: 10.6666666667vw;
  }
  section#HistorySec div.histImgBox div.horiImgList ul {
    width: 441.0666666667vw;
    gap: 0 6.9333333333vw;
  }
  section#HistorySec div.histImgBox div.horiImgList li {
    width: 67.7333333333vw;
  }
  section#HistorySec div.historyBox {
    display: block;
    margin-top: 4vw;
  }
  section#HistorySec div.historyBox dl {
    flex-direction: column;
    font-size: 3.7333333333vw;
  }
  section#HistorySec div.historyBox dt {
    width: 100%;
    margin-top: 1.6em;
  }
  section#HistorySec div.historyBox dd {
    width: 100%;
    margin-top: 0.1em;
  }
}
/* RecruitSec
-----------------------------------------------------------*/
section#RecruitSec {
  background: #231815;
  color: #fff;
  padding: min(8.064516129vw, 100px) 0 min(7.2580645161vw, 90px);
  min-height: min(38.7096774194vw, 480px);
}
section#RecruitSec div.figWrap {
  position: relative;
}
section#RecruitSec div.figWrap h2 {
  font-size: min(3.2258064516vw, 40px);
  line-height: 1;
  font-weight: 500;
}
section#RecruitSec div.figWrap h2.hi {
  font-size: min(4.8387096774vw, 60px);
}
section#RecruitSec div.figWrap h2 span {
  display: block;
  font-size: min(1.2903225806vw, 16px);
  margin-top: min(1.2096774194vw, 15px);
}
section#RecruitSec div.figWrap .catch {
  margin-top: min(3.2258064516vw, 40px);
  font-size: min(1.935483871vw, 24px);
}
section#RecruitSec div.figWrap .note {
  width: min(32.2580645161vw, 400px);
  margin-top: min(2.4193548387vw, 30px);
  font-size: min(1.1290322581vw, 14px);
}
section#RecruitSec div.figWrap div.telBox {
  margin-top: min(4.0322580645vw, 50px);
}
section#RecruitSec div.figWrap div.telBox .tel {
  font-size: min(2.5806451613vw, 32px);
  display: flex;
  align-items: center;
}
section#RecruitSec div.figWrap div.telBox .tel a {
  color: #fff;
}
section#RecruitSec div.figWrap div.telBox .tel::before {
  content: "";
  width: min(2.9032258065vw, 36px);
  height: min(2.9032258065vw, 36px);
  background: url(../img/icon_tel_wh.svg) 0 0 no-repeat;
  background-size: contain;
  margin-right: min(0.8064516129vw, 10px);
}
section#RecruitSec div.figWrap div.telBox .bistime {
  margin-left: min(3.7096774194vw, 46px);
  font-size: min(1.1290322581vw, 14px);
}
section#RecruitSec div.figWrap figure {
  width: min(41.935483871vw, 520px);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
section#RecruitSec div.figWrap .notice {
  display: inline-block;
  font-size: min(1.7741935484vw, 22px);
  margin-top: min(2.8225806452vw, 35px);
  border-bottom: 1px solid #fff;
  padding-bottom: 0.1em;
}

@media screen and (max-width: 767px) {
  section#RecruitSec {
    padding: 16vw 0 18.6666666667vw;
  }
  section#RecruitSec div.figWrap h2 {
    font-size: 9.3333333333vw;
  }
  section#RecruitSec div.figWrap h2.hi {
    font-size: 9.3333333333vw;
  }
  section#RecruitSec div.figWrap h2 span {
    font-size: 2.9333333333vw;
    margin-top: 2.6666666667vw;
  }
  section#RecruitSec div.figWrap .catch {
    margin-top: 6.6666666667vw;
    font-size: 5.6vw;
  }
  section#RecruitSec div.figWrap .note {
    width: 100%;
    margin-top: 8vw;
    font-size: 3.4666666667vw;
  }
  section#RecruitSec div.figWrap div.telBox {
    margin-top: 8vw;
  }
  section#RecruitSec div.figWrap div.telBox .tel {
    font-size: 8vw;
  }
  section#RecruitSec div.figWrap div.telBox .tel::before {
    width: 9.0666666667vw;
    height: 9.0666666667vw;
    margin-right: 2.1333333333vw;
  }
  section#RecruitSec div.figWrap div.telBox .bistime {
    margin-left: 11.2vw;
    font-size: 3.4666666667vw;
  }
  section#RecruitSec div.figWrap figure {
    position: static;
    width: 100%;
    margin-top: 6.6666666667vw;
  }
  section#RecruitSec div.figWrap .notice {
    font-size: 4.8vw;
    margin-top: 6.6666666667vw;
  }
}
/*# sourceMappingURL=home.css.map */