@charset "UTF-8";
/* 使用例
@use "global" as g;
@use "sass:map";

.hoge {
z-index: map.get(g.$layer, "header");
}

相対的な順番は、共通定義したドロワーの値から
z-index: map.get($layer, "drawer") + 1;
あるいは
z-index: map.get($layer, "drawer") - 1;
などして制御。
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 50px;
  }
}

body {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  color: #1e1e1e;
}

img {
  width: 100%;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}

.l-inner {
  width: 1050px;
  max-width: 89.3333333333vw;
  margin: auto;
}

.c-card {
  color: #d7ccba;
  background: rgba(30, 30, 30, 0.8);
  padding: 20px;
}
.c-card__ttl {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-card__ttl {
    font-size: 1.125rem;
  }
}
.c-card__text {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

.p-drawerContent {
  background: #4F5E79;
  width: 100%;
  height: 100vh;
  right: 0;
  top: 0;
  position: fixed;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.p-drawerContent.isActive {
  transform: translateX(0);
  transition: transform 0.5s ease 0s;
}
.p-drawerContent__items {
  margin-top: 100px;
}
.p-drawerContent__item {
  border-bottom: 1px solid #D7CCBA;
}
.p-drawerContent__item a {
  display: block;
  font-family: "Almarai", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  padding: 18px 20px;
  position: relative;
}

.p-drawerBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}
.p-drawerBackground.isActive {
  display: block;
}

.p-drawerIcon {
  position: fixed;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  top: -14px;
  left: -14px;
  z-index: 300;
  display: none;
  background: linear-gradient(180deg, #000 64.1%, rgba(30, 30, 30, 0) 116.67%);
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .p-drawerIcon {
    display: flex;
  }
}
.p-drawerIcon.isActive .p-drawerIcon__bar1 {
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
}
.p-drawerIcon.isActive .p-drawerIcon__bar2 {
  display: none;
}
.p-drawerIcon.isActive .p-drawerIcon__bar3 {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
}
.p-drawerIcon__bars {
  width: 30px;
  height: 22px;
  display: block;
  position: relative;
}
.p-drawerIcon__bar1, .p-drawerIcon__bar2, .p-drawerIcon__bar3 {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  transition: 0.3s;
}
.p-drawerIcon__bar1 {
  top: 0;
}
.p-drawerIcon__bar2 {
  top: 50%;
  transform: translateY(-50%);
}
.p-drawerIcon__bar3 {
  bottom: 0;
}

.p-header {
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 900px) {
  .p-header {
    height: 50px;
  }
}
.p-header__logo {
  width: 262px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 900px) {
  .p-header__logo {
    width: 78px;
    left: 72px;
    top: 10px;
  }
}
.p-header__nav {
  margin-right: 64px;
}
@media screen and (max-width: 900px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__navList {
  display: flex;
  gap: 40px;
}
.p-header__navLink {
  font-family: "Almarai", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  transition: opacity 0.3s;
}
.p-header__navLink:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-header__navLink:hover {
    opacity: 1;
  }
}

.p-mv {
  position: relative;
}
.p-mv__logo {
  position: absolute;
  top: calc(50% + 80px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18.7142857143vw;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__logo {
    width: 36.2666666667vw;
    top: calc(50% + 20px);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.p-mv .swiper-slide-active .swiper-img,
.p-mv .swiper-slide-duplicate-active .swiper-img,
.p-mv .swiper-slide-prev .swiper-img {
  animation: zoomUp 12s linear 0s normal both;
}
.p-mv .swiper-slide img {
  height: auto;
  width: 100%;
}

.p-about {
  background: #1E1E1E;
  color: #D7CCBA;
  text-align: center;
  padding: 80px 0;
}

.aboutGrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.largeImg {
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
}

.largeImg img,
.smallTop img,
.smallBottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.smallTop {
  width: 100%;
  height: 100%;
}
.smallBottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .p-about {
    padding: 26px 0;
  }
  .aboutGrid {
    grid-template-columns: 1fr;
  }
  .largeImg {
    grid-row: auto;
  }
}

.p-about__ttl {
  color: #fff;
  font-family: "Bodoni Moda", serif;
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-about__ttl {
    font-size: 1.875rem;
  }
}
.p-about__subTtl {
  font-family: "Almarai", sans-serif;
  color: #D9D9D9;
  font-weight: 700;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-about__subTtl {
    font-size: 1.25rem;
  }
}
.p-about__lead {
  font-weight: 700;
  font-size: 1.3125rem;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-about__lead {
    font-size: 1.25rem;
    margin-top: 26px;
  }
}
.p-about__text {
  margin-top: 30px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    margin-top: 26px;
  }
}

.p-casino {
  background: url(../img/bg_casino_01.jpg) no-repeat center center/cover;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-casino {
    padding: 40px 0;
  }
}
.p-casino__inner {
  width: 1230px;
  max-width: 89.3333333333vw;
  margin: auto;
}
.p-casino__ttl {
  color: #fff;
  font-family: "Bodoni Moda", serif;
  font-size: 1.875rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-align: center;
}
.p-casino__subTtl {
  color: #D7CCBA;
  font-size: 1.3125rem;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}
.p-casino__cardWrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-casino__cardWrap {
    margin-top: 24px;
  }
}
.p-casino__card {
  width: 48.3739837398%;
}
@media screen and (max-width: 767px) {
  .p-casino__card {
    width: 100%;
  }
}

.card_container {
  display: grid;
  gap: 20px;
  padding: 20px;
  grid-template-columns: 1fr;
  grid-template-areas:
  "header"
  "cards";
}
.card_head {
  grid-area: header;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.casino__item {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.p-rate {
  background: #D7CCBA;
  padding: 60px 4vw;
}
.p-rate__inner {
  width: 1236px;
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.p-rate__inner h3 {
  display: block;
  width: 100%;
  font-family: "Bodoni Moda", serif;
  font-size: 1.875rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  margin-bottom: 3rem;
}
.rateWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.rateLeft {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.rateMenu {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}
.rateMenu h4 {
  width: 100px;
  font-size: 18px;
  line-height: 2rem;
  font-weight: 600;
}
.rateMenu p {
  width: calc(100% - 100px);
  font-size: 14px;
  line-height: 2rem;
}
.rateMenu .subMenu {
  display: flex;
  flex-wrap: nowrap;
  line-height: 2rem;
}
.rateMenu .subMenu h5 {
  width: 100px;
}
.rateMenu .subMenu dl {
  width: calc(100% - 100px);
  font-size: 14px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.rateMenu .subMenu dt {
  width: 125px;
  font-weight: normal;
}
.rateMenu .subMenu dd {
  width: calc(100% - 125px);
}
.rateMenu .attention {
  line-height: 1.7rem;
  margin-top: 2rem;
}
.rateRight {
  line-height: 2rem;
}
.rateRight h4 {
  font-size: 18px;
  line-height: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.rateMenuhalf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 3rem;
}
.rateRight ul {
  list-style: number;
  padding: 0 0 0 1rem;
}
.rateRight ul li {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .rateMenu {
    flex-direction: column;
    gap: 0;
  }
  .rateMenu h4,
  .rateRight h4,
  .rateMenu p {
    width: 100%;
  }
  .rateRight h4 {
    margin-bottom: 0;
  }
  .rateLeft {
    gap: 20px;
  }
  .rateWrap,
  .rateMenuhalf {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }
}

.p-member {
  background: #1e1e1e;
  color: #fff;
}
.p-member__inner {
  width: 1400px;
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1179px) {
  .p-member__inner {
    flex-direction: column-reverse;
  }
}
.p-member__body {
  width: 50%;
  padding: 50px 40px 10px 82px;
}
@media screen and (max-width: 1179px) {
  .p-member__body {
    width: 100%;
    padding: 20px 28px 30px;
  }
}
.p-member__ttl {
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
  font-size: 1.5rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1179px) {
  .p-member__ttl {
    text-align: center;
  }
}
.p-member__list {
  margin-top: 30px;
}
.p-member__item + .p-member__item {
  margin-top: 34px;
}
.p-member__media {
  display: flex;
}
.p-member__mediaImgWrap {
  width: 90px;
}
@media screen and (max-width: 767px) {
  .p-member__mediaImgWrap {
    width: 80px;
  }
}
.p-member__mediaBody {
  width: calc(100% - 90px);
  padding-left: 36px;
}
@media screen and (max-width: 767px) {
  .p-member__mediaBody {
    width: calc(100% - 80px);
    padding-left: 20px;
  }
}
.p-member__mediaTtl {
  font-size: 1.125rem;
  font-weight: 600;
}
.p-member__mediaText {
  font-size: 0.875rem;
  line-height: 2.2857142857;
  margin-top: 18px;
  padding-left: 1em;
}
@media screen and (max-width: 1179px) {
  .p-member__mediaText {
    padding-left: 0;
  }
}
.p-member__imgWrap {
  width: 50%;
}
@media screen and (max-width: 1179px) {
  .p-member__imgWrap {
    width: 100%;
  }
}
@media screen and (max-width: 1179px) {
  .p-member__img {
    aspect-ratio: 376/240;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.p-staff {
  background: #f3e0d1;
  padding: 78px 0 90px;
}
@media screen and (max-width: 767px) {
  .p-staff {
    padding: 28px 0 40px;
  }
}
.p-staff__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-align: center;
}
.p-staff__ttl::after {
  content: "";
  height: 1px;
  width: 70px;
  background: #1e1e1e;
  margin: auto;
  display: block;
  margin-top: 20px;
}
.p-staff__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .p-staff__list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
  }
}
.p-staff__modalInner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-staff__modalInner {
    flex-direction: column;
  }
}
.p-staff__modalImgWrap {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-staff__modalImgWrap {
    width: 100%;
  }
}
.p-staff__modalBody {
  width: 50%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-staff__modalBody {
    width: 100%;
    padding: 50px 0;
  }
}
.p-staff__modalTtl {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-staff__modalText {
  margin-top: 20px;
  line-height: 1.5;
}

.p-menu__inner {
  background: #1e1e1e;
  color: #fff;
  padding: 70px 0 60px;
}
.p-menu__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Bodoni Moda", serif;
  letter-spacing: 0.3em;
  text-align: center;
}
.p-menu__ttl::after {
  content: "";
  height: 1px;
  width: 70px;
  background: #fff;
  margin: auto;
  display: block;
  margin-top: 20px;
}
.p-menu__triggerList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  max-width: 880px;
  margin: 50px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-menu__triggerList {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.p-menu__triggerItem {
  position: relative;
}
.p-menu__triggerCaption {
  font-size: 2.375rem;
  font-size: clamp(12px, 2.7142857143vw, 38px);
  font-weight: 700;
  font-family: "Bodoni Moda", serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-menu__triggerCaption {
    font-size: clamp(12px, 8vw, 30px);
  }
}
.p-menu__contentsItem {
  display: none;
  padding: 80px 20px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-menu__contentsItem {
    padding: 40px 20px;
  }
}
.p-menu__contentsItem::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 28px 50px 28px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-menu__contentsItem::before {
    border-width: 0 17px 30px 17px;
  }
}
.p-menu__cautionWrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.p-menu__caution {
  font-size: 0.875rem;
  line-height: 1.8;
}

.p-drink {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 800px;
  margin: 0 auto 40px auto;
  gap: 30px;
  border-bottom: 1px solid #333;
  padding: 0 0 40px;
}
.p-drink__ttl {
  font-family: "Bodoni Moda", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.p-drink__text {
  line-height: 1.8;
  margin-top: 8px;
}
.p-drink-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  margin: auto;
  gap: 80px;
}
.p-drink-sub__ttl {
  font-family: "Bodoni Moda", serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.p-drink-sub li {
  line-height: 3rem;
}
.matext {
  margin-top: 30px;
}
.mbMenu {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drink__item.lastb {
    margin-bottom: 2rem;
  }
  .p-drink__item.nottl {
    margin-bottom: 0;
  }
  .p-drink,
  .p-drink-sub {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .p-drink__ttl,
  .p-drink-sub__ttl {
    font-size: 1rem;
  }
  .p-drink__text {
    font-size: 0.875rem;
  }
  .matext {
    margin-top: 0;
  }
  .p-drink-sub li {
    line-height: 2.4rem;
  }
  .pcMenu {
    display: none;
  }
  .mbMenu {
    display: block;
    max-width: 320px;
  }
}

.p-eatAndWineLists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
  max-width: 800px;
  margin: auto;
}
.p-eatAndWineLists.mbMenu {
  display: none;
}
.p-eatAndWine__ttl {
  font-family: "Bodoni Moda", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.p-eatAndWine__ttl.--mt {
  margin-top: 30px;
}
.p-eatAndWine__item {
  display: flex;
  justify-content: space-between;
}
.p-eatAndWine__item.--mt {
  margin-top: 20px;
}
.p-eatAndWine__dt {
  font-weight: 400;
  width: calc(100% - 55px);
}
.p-eatAndWine__dt.--pl {
  padding-left: 2em;
}
.p-eatAndWine__dd {
  width: 55px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .p-eatAndWineLists {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .p-eatAndWine__ttl {
    font-size: 1rem;
    margin-top: 30px;
  }
  .p-eatAndWine__ttl.--mt {
    margin-top: 30px;
  }
  .p-eatAndWine__item {
    font-size: 0.875rem;
  }
  .p-eatAndWine__dt {
    width: calc(100% - 50px);
  }
  .p-eatAndWine__dd {
    width: 50px;
  }
  .p-eatAndWineLists.pcMenu {
    display: none;
  }
  .p-eatAndWineLists.mbMenu {
    display: block;
  }

}

.p-dessert {
    display: flex;
    gap: 30px;
    max-width: 360px;
    margin: auto;
    flex-direction: column;
}
@media screen and (max-width: 767px) {
}
.p-dessert__text {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
}

.p-map {
  padding: 140px 0 70px;
}
@media screen and (max-width: 767px) {
  .p-map {
    padding: 80px 0 40px;
  }
}
.p-map__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Bodoni Moda", serif;
  letter-spacing: 0.3em;
  text-align: center;
}
.p-map__ttl::after {
  content: "";
  height: 1px;
  width: 70px;
  background: #1E1E1E;
  margin: auto;
  display: block;
  margin-top: 20px;
}
.p-map__container {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-map__container {
    margin-top: 40px;
  }
}
.p-map__container iframe {
  aspect-ratio: 1400/356;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media screen and (max-width: 767px) {
  .p-map__container iframe {
    aspect-ratio: 375/356;
  }
}
.p-map__text {
  font-size: 0.875rem;
  text-align: center;
  line-height: 2;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-map__text {
    padding: 0 30px;
    margin-top: 28px;
  }
}

.p-footer {
  background: #1e1e1e;
  color: #fff;
  padding: 70px 0 20px;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 50px 0 20px;
  }
}
.p-footer__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 0;
}
.p-footer__link {
  font-family: "Almarai", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0 50px;
  display: block;
  border-left: 1px solid #fff;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-footer__link {
    padding: 0 20px;
    font-size: 1rem;
  }
}
.p-footer__link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-footer__link:hover {
    opacity: 1;
  }
}
.p-footer__link.--borderLeftNone {
  border-left: none;
}
.p-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 58px;
}
.p-footer__snsLink {
  transition: opacity 0.3s;
}
.p-footer__snsLink:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-footer__snsLink:hover {
    opacity: 1;
  }
}
.p-footer__snsImg {
  width: 22px;
}
.p-footer__copy {
  font-size: 0.8125rem;
  text-align: center;
  margin-top: 40px;
}

@media screen and (min-width: 1180px) {
  .u-sp-only {
    display: none;
  }
}
@media screen and (max-width: 1179px) {
  .u-sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

@media screen and (min-width: 1180px) {
  .u-tab-only {
    display: none;
  }
}
@media screen and (max-width: 1179px) {
  .u-tab-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-tab-only {
    display: none;
  }
}

@media screen and (max-width: 1179px) {
  .u-pc-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-none {
    display: none;
  }
}

@media screen and (max-width: 1179px) {
  .u-tab-none {
    display: none;
  }
}

@media screen and (min-width: 1180px) {
  .u-pc-none {
    display: none;
  }
}

.u-tab-flex {
  display: none;
}
@media screen and (max-width: 1179px) {
  .u-tab-flex {
    display: flex;
  }
}

.u-sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-flex {
    display: flex;
  }
}

.u-linkPosition {
  display: block;
  position: relative;
  top: -50px;
}

.u-uppercase {
  text-transform: uppercase;
}

.div {
  object-fit: cover;
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
