@charset "UTF-8";
/* CSS Document */

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 999999999;
  top: 42px;
  right: 40px;
  cursor: pointer;
  width: 50px;
  height: 40px;
  color: #DA1519;
}

.mobile-reservation{
  display: none;
}
.mobile-reservation a{
  display: none;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background-color:#DA1519;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
  color:#DA1519;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background-color:#DA1519;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background-color:#DA1519;
}
#g-nav {
  width: 100vw;
  position: fixed;
  display: flex;
  z-index: -1;
  opacity: 0;
  top: 0;
  height: 100vh;
  background: #DA1519;
  transition: all 0.3s;
  justify-content: center;
  flex-direction: column;
}
.ham-nav {
  margin: 3% 2%;
  background-color: #FEF7EF;
  border-radius: 30px;
  width: 96%;
  height: 94%;
  display: flex
;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}
.ham-nav1{
  display: flex
;
  align-items: center;
  width: 95%;
  justify-content: center;
  margin: 0 auto;
  justify-content: space-between;
  height: 95%;
}
.date{
  width: 30%;
  font-size: 12px;
}
.logo-big{
  width: 40%;
}
.logo-big img{
  width: 100%;
}
.sitemap{
  width: 30%;
  font-size: 12px;
}
.sitemap ul{
  padding-left: 5%;
}
.sitemap ul li{
  list-style: none;
    padding-bottom: 5%;
    color: #DA1519;
}
.sitemap ul li:last-child{
  padding-bottom: 0;
}
.sitemap ul li a{
  color: #DA1519;
}
.ham-nav2 {
  width: 100%;
  display: flex
;
  justify-content: space-between;
  padding-bottom: 1%;
}
.sns-nav {
  display: flex
;
  width: 15%;
  padding-left: 3%;
}
.sns-nav img{
  width: 100%;
}
.instagram{
  width: 40px;
  margin-right: 5%;
}
.tiktok{
  width: 40px;
}
.mark {
  width: 50%;
  display: flex
;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.map-pin2 {
  width: 15%;
  display: flex
;
  align-items: center;
  justify-content: flex-end;
  padding-right: 3%;
}
.map-pin2 a{
  color: #DA1519;
}



/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 99999999;
}

.cta {
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-bottom: 100px;
}

.cta span {
  padding-bottom: 7px;
  font-size: 14px;
  padding-right: 15px;
  text-transform: uppercase;
  font-size: 3vw;
  font-weight: bold;
  padding-left: 15px;
  color: #fff;
}

.cta:hover.svg {
  transform: translateX(0);
}

.cta:active.svg {
  transform: scale(0.9);
}

.hover-underline-animation {
  position: relative;
  color: fff;
  padding-bottom: 20px;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.cta:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

html{
  scroll-behavior: smooth;
  background-color: #FEF7EF!important;
}
body {
  color: #DA1519; 
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 2.4rem;
  background-color: #FEF7EF!important;
  -webkit-font-smoothing: antialiased;
  transition: all 1.5s;
}
body p{
  font-size: 12px;
  line-height: 1.7;
}
/*========= タイピング風 ===============*/
.TextTyping span {
  display: none;
}
.TextTyping{
  width: 300px;
}
/*文字列後ろの線の設定*/
.TextTyping::after {
  content: "|";
  animation: typinganime .8s ease infinite;
}

@keyframes typinganime {
  from {
      opacity: 0
  }

  to {
      opacity: 1
  }
}

.home {
  position: fixed;
  top: 30px;
  left: 30px;
  font-size: 15px;
  z-index: 999;
}
.home img {
  width: 60px;
}
.nav-menu{
  position: fixed;
    top: 55px;
    right: 50px;
    width: 66%;
    z-index: 999;
}
.nav ul{
  display: flex;
      flex-direction: row;
      align-items: center;
      list-style: none;
      width: 60%;
      margin: 0 80px 0 auto;
      justify-content:space-between;
}
.nav ul li{
  width: 100%;
  text-align: left;
}
.nav ul li a{ 
  color: #DA1519; 
  font-size: 12px;
}
.top-logo{

  width: 5vw;
}
.top-logo img{
  width: 100%;
}
.nav-right {
  width: 95vw;
}
.reservation a{
  padding-bottom: 2px;
  border-bottom: #DA1519 1px solid;
}
.jp{
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
}
.footer{
  display: flex
  ;
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
      margin: 100px 100px 50px 100px;
      border-top: 1px solid;
      padding: 150px 50px 0px 50px;
}
.footer-l{
  width: 50%;
  display: flex
;
}
.logo-footer_l{
  width: 40%;
  flex-direction: column;
  align-items: center;
}
.footer-img img{
  width: 100%;
}
.map-pin{
  display: flex;
  align-items: center;
}
.map-pin_l{
  width: 20%;
}
.map-pin_l img{
  width: 100%;
}
.logo-footer_r a{
  font-size: 12px;
  color: #DA1519;
}
.logo-footer_r{
  display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      padding-left: 15%;
}
.reservation-btn{
  margin-bottom: 39px;
    margin-top: 20px;
    font-size: 12px;
}
.reservation-btn a{
  color: #DA1519;
  padding: 10px 15px;
  border: 1px solid;
  border-radius: 200px;
}
.reservation-btn a:hover{
  color: #fff;
  padding: 10px 15px;
  background-color: #DA1519;
  border: 1px solid;
  border-radius: 200px;
  -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.footer-nav{
  width: 100%;
}
.footer-nav ul{
  display: flex;
    width: 100%;
    justify-content: space-around;
}
.footer-nav ul li{
  list-style: none;
  font-size: 12px;
}
.footer-nav ul li a{
  color: #DA1519;
}
.last-area{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 150px;
    margin-right: 100px;
    font-size: 12px;
    margin-bottom: 20px;;
    flex-direction: row;
    justify-content: space-between;
}
.footer-r2{
  font-size: 12px;
  display: flex!important;
  flex-direction: column!important;
  align-items: flex-end;
  width: 35%;
}
.access-l{
  width: 180px;
}
.access-l img{
  width: 100%;
}
.access{
  margin: 100px;
  font-size: 12px;
}
.access-h2{
  display: flex;
      align-items: flex-end;
      padding-left: 5%;
}
.access-h2 p {
  font-size: 12px;
  padding-bottom: 4%;
}
.access_contents-wrap{
  margin: 10% 0 0 0;
  display: flex;
  flex-direction: row;
}
.map{
  width: 50%;
}
.access_contents{
  padding-left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  line-height: 1.5;
  width: 50%;
}
.access_contents a{
  color: #DA1519;
  width: 80%;
  border: 1px solid;
  border-radius: 200px;
  padding: 20px 40px;
}

.access_contents-detail{
  display: flex;
  width: 80%;
  padding: 20px 40px;
  border: 1px solid;
  border-radius: 200px;
}
.access_contents-detail2{
  display: flex;
}
.hover:hover{
  color: #fff;
  background-color: #DA1519;
}

.left{
  width: 25%;
}
.right{
  width: 70%;
}
#map-grayscale {
  filter: grayscale(100%);//白黒に変換
}
.last-area a{
  color: #DA1519;
}
/*デフォルトのマウスカーソルを非表示にする*/
html,
body,
a {
  cursor: none;
}

/*独自のマウスカーソルを作成*/
.cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:#DA1519;
  z-index: 9999999999;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  transform: translate(0, 0);
  pointer-events: none;
}

/*aタグにホバーした時に見た目変化*/
.cursor.cursor--hover {
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  background: rgba(205, 114, 113, 0.5);
  z-index: 9999999999;
}

/*動き確認用ボタン*/
.btn {
  display: inline-block;
  min-width: 300px;
  margin: 20px;
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .4s;}
.timing04 {transition-delay: .6s;}

@media(max-width:959px){
  .mobile-reservation {
    display: block;
    position: fixed;
    top: 27px;
    right: 17%;
    font-size: 13px;
    border: solid 1px #DA1519;
    padding: 2% 3%;
    border-radius: 55px;
    z-index: 999;
}
.mobile-reservation a{
  display: block;
  color: #DA1519;
}
  .home {
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 25px;
    z-index: 999;
}
.home img {
  width: 55px;
}
  .nav{
    display: none;
  }
  .footer {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    margin: 100px 30px 50px 30px;
    border-top: 1px solid;
    padding: 100px 0px 0px 0px;
}
.footer-l {
  width: 100%;
  display: flex
;
  flex-direction: column;
  align-items: flex-start;
}
.logo-footer_l {
  display: flex
;
  width: 60%;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5%;
}
.logo-footer_r {
  display: flex
;
  flex-direction: column;
  justify-content: space-evenly;
  padding-left: 3%;
  width: 100%;
}
.map-pin_l {
  width: 6%;
}
.logo-footer_r p{
  padding-bottom: 3%;
}
.tel{
  margin-bottom: 3%;
}
.insta{
  margin-bottom: 3%;
}
.footer-r2 {
  font-size: 12px;
  display: flex !important
;
  flex-direction: column !important;
  align-items: flex-start;
  width: 100%;
  margin-top: 10%;
}
.footer-nav ul{
  display: none;
}
.last-area {
  display: flex
;
  margin-left: 0;
  margin-right: 0;
  font-size: 12px;
  margin-bottom: 20px;
  flex-direction: row;
  justify-content: center;
}
.btt{
  display: none;
}
.openbtn {
  position: fixed;
  z-index: 999999999;
  top: 18px;
  right: 12px;
}
.ham-nav {
  margin: 5% 5%;
  background-color: #FEF7EF;
  border-radius: 30px;
  width: 90%;
  height: 94%;
  display: flex
;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}
.ham-nav1 {
  display: flex
;
  align-items: center;
  width: 95%;
  margin: 0 auto;
  justify-content: center;
  height: 95%;
  flex-direction: column;
}
.date{
  display: none;
}
.logo-big {
  width: 60%;
  padding-bottom: 10%;
}
.sitemap {
  width: 60%;
  font-size: 15px;
}
.sitemap ul li {
  list-style: none;
  padding-bottom: 10%;
  color: #DA1519;
}
.map-pin2{
  display: none;
}
.sns-nav{
  display: none;
}
.mark {
  width: 100%;
  display: flex
;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.ham-nav2 {
  padding-bottom: 5%;
}
}