@charset "utf-8";

html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  background-color: #fff;
  background-color: #f1e3cc;
}

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

a:hover {
  opacity: 0.8;
}

h1 {
  font-size: 3.4rem;
}

h2 {
  font-size: 2.4rem;
}

p {
  line-height: 1.2;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb40 {
  margin-bottom: 4rem;
}

.mb60 {
  margin-bottom: 6rem;
}

.mb80 {
  margin-bottom: 8rem;
}

.mb100 {
  margin-bottom: 10rem;
}

.box1440 {
  max-width: 1460px;
  padding: 0 10px;
  margin: 0 auto;
}

.box1200 {
  max-width: 1220px;
  padding: 0 10px;
  margin: 0 auto;
}

.relative {
  position: relative;
}

.sp {
  display: none;
}

.pc {
  display: block;
}


a[href*="tel:"] {
  pointer-events: none;
}

@media only screen and (max-width: 769px) {
  a[href*="tel:"] {
    pointer-events: initial;
  }
}

header {
  z-index: 9999;
  padding: 20px 10% 10px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  transition: all 0.2s ease-out;
  justify-content: center;
}

.pc-nav ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.pc-nav li {
  margin: 0 0 0 15px;
}

.sp-nav {
  display: none;
}

.pc-ja {
  display: block;
}

.sp-ja {
  display: none;
}

.ja-btn {
  display: inline-block;
  height: calc(((100vw - 769px) / 46.04) + 25px);
  padding: 0 1em;
  margin-left: 2rem;
  font-size: calc(((100vw - 769px) / 121.1) + 14px);
  color: #fff;
  background: #000;
  box-shadow: 3px 3px 0 #dd9b2c;
  transition: .3s;
  white-space: nowrap;
  font-family: 'RocknRoll One', sans-serif;
}

.ja-btn:hover {
  transform: translate3d(0, 3px, 0);
  box-shadow: none;
  opacity: 1;
}

.en-topview img {
  width: 100vw;
  margin: 0 auto;
}

.what-is-cantina {
  position: absolute;
  top: -15%;
  left: 5%;
  z-index: 99;
}

.what-text {
  display: block;
  background-image: url(../images/what_bg.jpg);
  padding: 3em 5em;
  font-size: 2.4rem;
  margin: 5em auto 8em;
}

.what-wood {
  position: absolute;
  bottom: -60%;
  right: 5%;
}

.inside-img {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.inside-item {
  margin: 0 5px;
}

.en_ttl {
  text-align: center;
  border-bottom: solid 1px #231815;
  margin-bottom: 40px;
  padding-top: 110px;
  margin-top: -110px;
}

.food-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.food-menu {
  margin: 0 5px;
}

.food-menu img:hover {
  transform: scale(1.05, 1.05);
}

.food-menu a:hover {
  opacity: 1;
}

.food-img {
  margin: 0 10px;
}

.enlarge-txt {
  color: #e95514;
  text-align: center;
}

.lb-image {
  width: 100vw !important;
  height: auto !important;
}

/*****************?/
/*   ポップアップ   */
/******************/
.thumbnailContainer {
  justify-content: center;
}

.thumbnail {
  cursor: pointer;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  /* アニメーションを追加 */
}

.thumbnail:hover {
  transform: scale(1.1);
  /* ホバー時に少し拡大 */
}

/* ポップアップコンテナのスタイル */
#popupWrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999999;
  overflow: scroll;
}
#popupContainer {
  display: block;
  position: relative;
  top: 80px;
  overflow: auto;
  max-height: 100%;
}

#popupContent {
  /* background-color: white; */
  text-align: center;
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  cursor: zoom-in;
}

/* Closeボタンのスタイル */
#closePopup {
  position: fixed;
  top: 20px;
  /* 調整：ボタンが画面上部から20pxの位置に配置 */
  right: 20px;
  /* 調整：ボタンが画面右上から20pxの位置に配置 */
  cursor: pointer;
  padding: 5px 10px;
  /* 調整：ボタンのパディングを追加 */
  background-color: #FFF;
  color: #000;
  border: solid 1px #000;
  font-weight: bold;
  z-index: 1000;
  opacity: 0.8;
}

/* 拡大されたポップアップ画像のスタイル */
#popupImage {
  margin-bottom: 40px;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}




/* footer */

footer {
  padding: 50px 0 20px;
  background-image: url("../images/footer_bc.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.information-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.information-txt-area {
  flex: 1 1 55%;
}

.information-img {
  flex: 1 1 42%;
}

.foot-info {
  color: #fff;
}

.copylight {
  color: #fff;
  text-align: center;
}

.foot-info table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 16px;
}

.foot-info table th {
  width: 30%;
  padding: 5px;
  vertical-align: middle;
  font-weight: bold;
  text-align: right;
}

.foot-info table td {
  padding: 5px;
  vertical-align: top;
  text-align: left;
}


.gotop {
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #999;
  padding-top: 30px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 85%;
  text-decoration: none;
  color: #333;
  opacity: 0.5;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

.gotop::before {
  content: "";
  display: block;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  width: 25%;
  height: 25%;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
}

.gotop:hover {
  opacity: 1;
}



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

  /* 日本語ボタン */
  .pc-ja {
    display: none;
  }

  .sp-ja {
    display: block;
  }

  .ja-btn {
    font-size: 16px;
    height: 30px;
    margin-right: 1em;
    margin-left: calc(((100vw - 360px) / 1.6492) + 0px);
  }

  .what-text {
    padding: 2em 2em;
    margin: 3em auto 10em;
    font-size: 1.8rem;
  }

  .what-is-cantina {
    top: -40px;
    left: 0;
    max-width: 80%;
  }

  .what-wood {
    bottom: -173px;
    right: 0;
    max-width: 70%;
  }

  .inside-img,
  .food-row,
  .information-row {
    flex-direction: column;
    align-items: center;
  }

  .inside-item {
    margin-bottom: 2em;
  }

  .en_ttl img {
    max-width: 75%;
  }

  .food-row .food-img {
    margin-bottom: 20px;
  }

  .drink-order1 {
    order: 0;
  }

  .drink-order2 {
    order: 1;
  }

  .information-txt-area {
    margin-bottom: 40px;
  }

  .foot-info {
    margin-top: 40px;
  }

  .foot-info table tr:not(:last-child) {
    border-bottom: dotted 1px #fff;
  }

  .foot-info table th,
  .foot-info table td {
    display: block;
    width: 100%;
    text-align: left;
  }

  .gotop {
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    opacity: 1;
    border: none;
    background: none;
    bottom: 10px;
    right: 10px;
  }

  .gotop::before {
    bottom: 0;
  }

  #popupContainer {
    top: 0;
}
}

@media all and (max-width: 560px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  header {
    padding: 20px 10px 10px;
  }

  .ja-btn {
    height: 23px;
    padding: 0 0.5em;
    margin-left: 1rem;
    color: #fff;
    background: #000;
    box-shadow: 3px 3px 0 #dd9b2c;
    transition: .3s;
    white-space: nowrap;
    font-family: 'RocknRoll One', sans-serif;
    font-size: 1.2rem;
  }

  .en_ttl {
    padding-top: 80px;
    margin-top: -80px;
  }

  .what-text {
    margin: 3em auto 7em;
  }

  .what-is-cantina {
    top: -34px;
    max-width: 90%;
  }

  .what-wood {
    bottom: -105px;
    max-width: 75%;
  }
}


/********************/
/* フェードイン用のCSS */
/********************/

/* 上からフェードイン */
.slide-top {
  opacity: 0;
  transform: translate(0, -20px);
  transition: all 1s ease-out;
}


/* 下からフェードイン */
.slide-bottom {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1s ease-out;
}

/* 左からフェードイン */
.slide-left {
  opacity: 0;
  transform: translate(-20px, 0);
  transition: all 1s ease-out;
}

/* 右からフェードイン */
.slide-right {
  opacity: 0;
  transform: translate(20px, 0);
  transition: all 1s ease-out;
}


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


  /*ハンバーガーメニュー*/
  .pc-nav {
    display: none;
  }

  .sp-nav {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.2s ease-in-out;
  }

  #hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 25px;
    margin: 0 0 0 auto;
  }

  #hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: translateY(-50%);
  }

  #hamburger::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
  }

  #hamburger::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 2px;
    background-color: #000;
  }

  /*スマホメニュー*/
  .sp-nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 85%;
    list-style: none;
  }

  .sp-nav li {
    margin: 0;
    padding: 0;
  }

  .sp-nav li span {
    font-size: 15px;
    color: #000;
  }

  .sp-nav li a,
  .sp-nav li span {
    display: block;
    padding: 8px 0;
  }

  /*-閉じるアイコンー*/
  .sp-nav .close {
    position: relative;
    padding-left: 20px;
  }

  .sp-nav .close::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #000;
    transform: rotate(45deg);
  }

  .sp-nav .close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #000;
    transform: rotate(-45deg);
  }

  .toggle {
    transform: translateY(0);
    opacity: 1;
  }

  .main-visual {
    padding: 0;
  }
}