/*
.pc-dsp { display:block; }
.sp-dsp { display:none; }

@media only screen and (max-width : 736px){
.pc-dsp { display:none; }
.sp-dsp { display:block; }
}
*/

/* 通常時 */
.effect-flash {
  filter: brightness(1.0);
}
/* ホバー時 */
.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: 100%;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 640px) {
}
.blk_Footer{
  padding-bottom: 110px;
  background-color: #95CAD4;
}



/* ハンバーガーメニュー ----------------------- */
#menu-button {
  display: none;
  position: fixed;
  right: 8px;
  place-items: center;
  place-content: center;
  width: 60px;
  height: 60px;
  background: #95CAD4;
  border: none;
  cursor: pointer;
  z-index: 999;
}
#menu-button > div{
  display: grid;
  place-items: center;
}
/* バー */
.bar,
.bar::before,
.bar::after {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: transform 0.3s;
}
.bar {
  display: grid;
  &::before,
  &::after {
    content: "";
    grid-area: 1 / 1;
  }
  &::before {
    transform: translateY(-8px);
  }
  &::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: #95CAD4;
  right: 0;
  top: 0;
  z-index: 998;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  font-size: 1rem;
  & ul {
    list-style: none;
    padding: 0;
    margin: 80px 0 0 0;
  }
  & li {
    padding: 20px;
  }
  & a {
    color: #333;
  }
}
/* オープン時のメニュー */
.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;
    left: 10px;
    bottom: 110px;
  }
}
#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;
  bottom: 30px;
}
.btn_footer_2col{
  display: flex;
  max-width: 640px;
}

