/* 通常時 */
.effect-flash {
  filter: brightness(1);
}

/* ホバー時 */
.effect-flash:hover {
  animation: bright-flash 0.5s ease-out forwards;
}

@keyframes bright-flash {
  0% {
    filter: brightness(2.5);
  }

  100% {
    filter: brightness(1);
  }
}

/*edit*/
div img {
  vertical-align: top;
}

wrap > div {
  position: relative;
}

.blk_Navi {
  background: url('../img/bg_navi.jpg') top center no-repeat;
  background-size: contain;
  height: auto;
  width: 100%;
  padding-top: 57%;
}

.blk_Navi img {
  max-width: 100%;
}

.blk_Navi .wrap_btn {
  max-width: 84%;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.blk_Navi .wrap_btn a {
  display: inline-block;
  max-width: 46%;
}

.blk_Navi .wrap_link {
  max-width: 70%;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  gap: 30px;
  padding: 10% 0;
}

.gmap {
  height: 0;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 70%;
  position: relative;
  max-width: 86%;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

section div:nth-child(1) {
  width: 85%;
  margin: 8% auto;
}

#top_menu .description {
  width: 85%;
  margin: 8% auto;
  text-align: left;
}

#top_welcome {
  background: url(../img/welcome_bg.webp) no-repeat;
  filter: grayscale(100%);
  background-size: contain;
  background-position: 7rem 10rem;
}

#top_welcome div h2 {
  text-align: left;
}

#top_welcome div p {
  text-align: left;
  padding-bottom: 12%;
}

#top_welcome div div {
  text-align: left;
  padding-bottom: 20%;
}

#top_staff {
  background: url(../img/staff_bg.webp) no-repeat;
  background-size: cover;
}

#top_staff h2 {
  padding-top: 20%;
}

#top_staff div div {
  padding: 15% 0 15%;
}

#top_reserve div div {
  padding: 15% 0 15%;
}

#top_reserve a {
  margin: 0 auto;
}

#top_menu h2 {
  padding-top: 10%;
}

#top_layout h2 {
  padding-top: 15%;
}

#top_infomation h2 {
  padding-top: 12%;
}

#top_layout {
  margin-bottom: 20%;
}

#top_reserve h2 {
  padding-top: 12%;
}

#top_reserve {
  background: url(../img/reserve_bg.webp) no-repeat;
  background-size: contain;
  padding-bottom: 12%;
}

#top_order div div {
  padding: 15% 0 15%;
}

#top_order a {
  margin: 0 auto;
}

#top_order {
  background: url(../img/order_bg.webp) no-repeat;
  background-size: contain;
  padding-bottom: 30%;
  position: relative;
}

#top_order h2 {
  padding-top: 12%;
}

.btn {
  display: block;
  width: fit-content;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 8%;
  font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', sans-serif;
  font-weight: bold;
}

a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}

.detail {
  font-family: 'Honoka Shin Mincho L', serif;
  padding: 0 10%;
}

.detail:hover {
  background-color: #fff;
  color: #000;
  transition-duration: 0.25s;
}

/* ハンバーガーメニュー ----------------------- */
.translate_link {
  position: fixed;
  place-items: center;
  place-content: center;
  width: 25px;
  height: 60px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
}

.ja_link {
  right: 60px;
}

.it_link {
  right: 90px;
}

.fr_link {
  right: 120px;
}

.us_link {
  right: 150px;
}

#menu-button {
  display: none;
  position: fixed;
  right: 8px;
  place-items: center;
  place-content: center;
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
}

#menu-button > div {
  display: grid;
  place-items: center;
}

#top_header {
  background: url(../img/header_bg.webp) no-repeat;
  background-size: cover;
  padding: 20% 0;
}

#top_header img {
  width: 30%;
  padding: 0 0 10%;
}

/* バー */
.bar,
.bar:before,
.bar:after {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: transform 0.3s;
  content: '';
  grid-area: 1 / 1;
}

.bar {
  display: grid;
}

.bar:before {
  transform: translateY(-8px);
}

.bar:after {
  transform: translateY(8px);
}

/* オープン時のバー */
.menu-open {
  .bar {
    background-color: transparent;

    &::before {
      transform: rotate(45deg);
    }

    &::after {
      transform: rotate(-45deg);
    }
  }
}

/* メニューラベル */
.menu-label {
  transform: translateY(10px);
  font-size: 10px;
  color: #333;
  margin-top: 3px;
}

/* オーバーレイ */
#overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 997;
  transition: opacity 0.3s;

  /* オープン時のオーバーレイ */
  .menu-open & {
    visibility: visible;
    opacity: 1;
  }
}

/* メニュー */
#menu {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: #272322;
  right: 0;
  top: 0;
  z-index: 998;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  font-size: 1rem;
}

#menu ul {
  list-style: none;
  padding: 0;
  margin: 80px 0 0 0;
}

#menu li {
  padding: 20px;
}

#menu a {
  color: #fff;
}

#menu img {
  width: 30%;
  margin-top: 100px;
}

/* オープン時のメニュー */
.menu-open #menu {
  transform: translateX(0);
}

body {
  overflow-x: clip;

  .menu-open& {
    overflow: clip;
  }
}

/*fadeDown アニメーション設定*/
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block !important;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*ページトップリンク ----------------------- */
#page-top a {
  background-color: #22262a;
  color: white;
  font-size: 12px;
  line-height: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s;
}

#page-top a::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(-45deg);
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

@media only screen and (max-width: 920px) {
  #page-top {
    right: inherit;
    right: 10px;
    bottom: 60px;
  }
}

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(280px);
  }
}

/*予約ボタン*/
.btn_footer {
  position: fixed;
  max-width: 750px;
  bottom: 0px;
}

.btn_footer_2col {
  display: flex;
  width: 100%;
}

.data {
  width: 100%;
}

.data th,
.data td {
  padding: 2% 0;
  vertical-align: text-top;
  text-align: left;
}

.data th {
  width: 5em;
  padding-right: 0;
}

#menu ul li {
  padding-left: 1em;
  position: relative;
  text-align: left;
  letter-spacing: 0px;
}

#menu ul li span {
  display: block;
  text-align: left;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

#top_infomation p {
  margin-bottom: 10%;
}

#top_infomationooter img {
  width: 30%;
}

#top_infomationooter {
  padding-bottom: 40%;
}

#top_infomationooter ul li {
  text-align: left;
}

#top_infomationooter ul li a {
  color: #fff;
}

#top_infomationooter ul {
  border-left: 1px solid #747474;
  padding-left: 3%;
  line-height: 2;
}

.reserve {
  background: #bc950f;
  border: 0;
  color: #22262a;
  padding: 3% 13%;
  text-wrap: nowrap;
}

.reserve img,
.reserve_cta img {
  width: 12%;
  display: inline-block;
  vertical-align: text-bottom;
  padding-right: 6%;
}

.order {
  background: #c8c8c8;
  border: 0;
  color: #22262a;
  padding: 3% 13%;
  text-wrap: nowrap;
}

.order img,
.order_cta img {
  width: 12%;
  display: inline-block;
  vertical-align: text-bottom;
  padding-right: 6%;
}

.reserve_cta {
  background: #bc950f;
  border: 0;
  color: #22262a;
  padding: 3% 0;
  text-wrap: nowrap;
  width: 100%;
}

.order_cta img,
.reserve_cta img {
  width: 9%;
}

.order_cta {
  background: #c8c8c8;
  border: 0;
  color: #22262a;
  padding: 3% 0;
  text-wrap: nowrap;
  width: 100%;
}

#top_infomationooter p {
  padding-top: 20%;
}

.page_header {
  text-align: left;
}

.page_header h2 {
  padding-left: 7.5%;
  padding-top: 5%;
  background-color: #221f1e;
}

.page_header p {
  padding-left: 7.5%;
  padding-bottom: 5%;
  background-color: #221f1e;
}

.staff_content {
  padding-bottom: 10%;
}

.staff_content .staff_name::after {
  position: absolute;
  bottom: -18%;
  left: 41%;
  background-color: #fff;
  width: 20%;
  height: 4px;
  content: '';
}

.staff_content div {
  padding-top: 10%;
  position: relative;
}

.staff_content .description {
  width: 85%;
  margin: 8% auto;
  text-align: left;
}

.layout_detail {
  background: url(../img/layout.webp) no-repeat;
  background-size: cover;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  /* 2秒でフェードイン */
}

.fade-in.visible {
  opacity: 1;
}

#instagram {
  background: #4a4341;
  padding: 5% 0;
}

.menu_language {
  position: fixed;
  right: 95px;
  height: 60px;
  padding-top: 16px;
  z-index: 999;
}

.menu_language .dropdown__btn {
  position: relative;
  color: #fff;
  font-size: 1rem;
  text-align: left;
  letter-spacing: 0.05em;
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  box-sizing: border-box;
}

.menu_language .dropdown__btn::after {
  right: -15px;
  width: 8px;
  height: 8px;
  content: '';
  position: absolute;
  top: 50%;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.1s;
}

.dropdown__body {
  overflow: hidden;
}

.menu_language .dropdown__body {
  display: none;
}

.dropdown__list {
  margin: 7px 0 0;
  list-style: none;
}

.dropdown__item {
  display: block;
  list-style-type: none;
}

.dropdown__btn.is-open::after {
  top: 65%;
  transform: translateY(-50%) rotate(-135deg);
}

.dropdown__item-link {
  color: #fff;
}
