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

-----------------------------------------------------*/
/*-----------------------------------------------------

  HTML & Body & Wrapper

-----------------------------------------------------*/
html {
  font-size: 62.5%;
}

html.is-fixed {
  overflow: hidden;
}

body {
  position: relative;
  background: #000000;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro" ,serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#wrapper {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}

/*375px以下*/
@media only screen and (max-width: 375px) {
  body {
    font-size: 4vw;
  }
}

/*1024px以上*/
@media only screen and (min-width: 1024px) {
  body {
    font-size: 2.0rem;
  }
}



/*-----------------------------------------------------

  language

-----------------------------------------------------*/
.language{
    width: 140px;
    position: absolute;
    top: 25px;
    right: 100px;
}
.language:hover{
    cursor: pointer;
}
.language-list{
    display: none;
    background-color: #fff;
    border: 1px solid #efefef;
    position: absolute;
    top: 70px;
    right: 100px;
    z-index: 100;
    width: 140px;
    overflow: hidden;
}
.language-list li{
    border-bottom: 1px solid #efefef;
    
}
.language-list li:last-child{
    border-bottom: 0;
}
.language-list a{
    padding: 3px;
    display: block;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.language-list a img{
    vertical-align: middle;
}
.language-current{
    background-color: #e5e5e5;
}

@keyframes animation{
    0%{
        height: 0;
    }
    100%{
        height: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .language {
        width: 100px;
        right: inherit;
        left: 10px;
        top: 10px;
    }

    .language-list {
        top: 50px;
        right: inherit;
        left: 10px;
        width: 100px;
    }

    .language-list a {
        font-size: 1.2rem;
    }

    .language-list li a{
        padding: 5px;
    }

}


/*-----------------------------------------------------

  Global Header

-----------------------------------------------------*/
#global-header {
  position: fixed !important;
  top: 0;
  z-index: 150;
  width: 100%;
  height: 50px;
  background: #ffffff;
}

#global-header .inner {
  display: flex;
  position: relative;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
}

#global-header .inner h1 {
  position: relative;
  width: 132px;
  height: 25px;
}

#global-header .global-nav-area {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 16px 13px;
}

#global-header .global-nav-area .hamburger, #global-header .global-nav-area .hamburger span {
  display: block;
  transition: all 0.4s;
}

#global-header .global-nav-area .hamburger {
  position: relative;
  width: 22px;
  height: 17px;
  cursor: pointer;
}

#global-header .global-nav-area .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
}

#global-header .global-nav-area .hamburger span:nth-of-type(1) {
  top: 0;
}
#global-header .global-nav-area .hamburger span:nth-of-type(2) {
  top: 8px;
}
#global-header .global-nav-area .hamburger span:nth-of-type(3) {
  bottom: 0;
}

#global-header .global-nav-area.is-fixed .hamburger span:nth-of-type(1) {
  transform: translateY(8px) rotate(-315deg);
}
#global-header .global-nav-area.is-fixed .hamburger span:nth-of-type(2) {
  opacity: 0;
}
#global-header .global-nav-area.is-fixed .hamburger span:nth-of-type(3) {
  transform: translateY(-8px) rotate(315deg);
}

#global-header .global-nav-area .global-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100vh;
  background: #ffffff;
}

#global-header .global-nav-area .global-nav ul {
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#global-header .global-nav-area .global-nav ul li {
  text-align: center;
}

#global-header .global-nav-area .global-nav ul li a {
  display: block;
  padding: 1em;
  color: #000000;
  font-size: 1.8rem;
  text-decoration: none;
}
@media only screen and (orientation: landscape) {
  #global-header .global-nav-area .global-nav ul li a {
    padding: 0.5em 1em;
  }
}

/*1024px以上*/
@media only screen and (min-width: 1024px) {
  #global-header {
    position: absolute !important;
    height: 100px;
  }
  #global-header .inner {
    height: 100px;
/*    border-bottom: 10px solid #3b80c0;*/
  }
/*
  #global-header .inner::before, #global-header .inner::after {
    display: block;
    position: absolute;
    bottom: -10px;
    width: calc(100% / 3);
    height: 10px;
    content: "";
  }
  #global-header .inner::before {
    left: 0;
    background: #ffe050;
  }
  #global-header .inner::after {
    right: 0;
    background: #000000;
  }
*/
  #global-header .inner h1 {
    width: 263px;
    height: 50px;
  }
  #global-header .global-nav-area {
    width: 90px;
    height: 90px;
    padding: 36px 28px;
  }
  #global-header .global-nav-area:hover {
    cursor: pointer;
  }
}



/*-----------------------------------------------------

  Link, Button

-----------------------------------------------------*/
.button {
  display: block;
  width: 200px;
  height: 45px;
  margin: 0 auto;
}

.button a {
  display: flex;
  position: relative;
  width: 200px;
  height: 45px;
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.button a span {
  display: flex;
  align-items: center;
}

.button a[target="_blank"] span::after {
  display: inline-block;
  width: 15px;
  margin-left: 15px;
  content: url( "data:image/svg+xml;utf-8,<svg xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" viewBox=\"0 0 15 12.5\"><path d=\"M10.9 12.5H0V4.1h3v1H1v6.4h8.9V9.6h1z\"/><path d=\"M15 8.4H4.1V0H15v8.4zm-9.9-1H14V1H5.1v6.4z\"/></svg>" );
}

.button-l, .button-l a {
  width: 84vw;
  height: 85px;
  font-size: 2.0rem;
  letter-spacing: 0;
}

.button-arrow a::before {
  position: absolute;
  right: -15px;
  bottom: 50%;
  width: 30px;
  height: 1px;
  background: #000000;
  content: "";
  transition: all 0.3s;
}

.button-arrow a::after {
  position: absolute;
  right: -16px;
  bottom: calc(50% + 4px);
  transform: rotate(45deg);
  width: 10px;
  height: 1px;
  background: #000000;
  content: "";
  transition: all 0.3s;
}

/*768px以上*/
@media only screen and (min-width: 768px) {
  .button-l {
    width: calc(50% - 20px);
    max-width: 400px;
  }
  .button-l a {
    width: 100%;
  }
}

.top-btn-area .button  {
    width: 80%;
    margin: auto;
    margin-top: 3rem;
  }
    .top-btn-area .button a {
    width: 80%;
    margin: auto;
  }

/*1024px以上*/
@media only screen and (min-width: 1024px) {
  .top-btn-area .button  {
    width: 400px;
    height: 55px;
      margin-top: 60px;
  }
    .top-btn-area .button a {
    width: 400px;
    height: 55px;
  }
    
    .button, .button a {
    width: 250px;
    height: 55px;
  }
  .button-l, .button-l a {
    width: 400px;
    height: 85px;
  }
  .button a:hover[target="_blank"] span::after {
    display: inline-block;
    width: 15px;
    margin-left: 15px;
    content: url( "data:image/svg+xml;utf-8,<svg xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" viewBox=\"0 0 15 12.5\"><path d=\"M10.9 12.5H0V4.1h3v1H1v6.4h8.9V9.6h1z\" fill=\"%23ffffff\"/><path d=\"M15 8.4H4.1V0H15v8.4zm-9.9-1H14V1H5.1v6.4z\" fill=\"%23ffffff\"/></svg>" );
  }
  .button-arrow a:hover {
    background: #000000;
    color: #ffffff;
  }
  .button-arrow a:hover::before {
    opacity: 0;
    right: -50px;
  }
  .button-arrow a:hover::after {
    opacity: 0;
    right: -51px;
  }
}





/*-----------------------------------------------------

  Portrait, Landscape, Tablet, SmartPhone PC

-----------------------------------------------------*/
/*SmartPhone*/
@media only screen and (max-width: 767px) {
  .landscape, .tablet, .pc {
    display: none;
  }
  .sp.landscape, .sp.tablet, .sp {
    display: inline-block;
  }
}

/*SmartPhone横向き*/
@media only screen and (orientation: landscape) {
  .sp,.sp.tablet, .tablet, .pc {
    display: none;
  }
  .landscape, .landscape.pc {
    display: inline-block;
  }
}

/*iPad 縦*/
@media only screen and (min-width: 768px) and (orientation: portrait) {
  .landscape, .sp, .pc {
    display: none;
  }
  .tablet, .tablet.sp, .tablet.landscape, .tablet.pc {
    display: inline-block;
  }
}

/*PC*/
@media only screen and (min-width:768px) and (orientation: landscape) {
  .sp, .landscape, .tablet {
    display: none;
  }
  .pc, .landscape.pc, .tablet.pc {
    display: inline-block;
  }
}

@media only screen and (min-width:1024px) {
  .sp, .landscape, .tablet {
    display: none;
  }
  .pc, .landscape.pc, .tablet.pc {
    display: inline-block;
  }
}


/*-----------------------------------------------------

  Modal

-----------------------------------------------------*/
.modal {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 500;
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  left: 0;
}
.modal-inner {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 30px;
}

.modal .close-btn {
  display: block;
  position: fixed;
  height: 40px;
  width: 40px;
  top: 20px;
  right: 20px;
  overflow: hidden;
  z-index: 550;
}

.modal .close-btn span {
  display: block;
  osition: relative;
  height: 40px;
  width: 40px;
  background: #000000;
  border-radius: 20px;
}
.modal .close-btn span::before, .modal .close-btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 20px;
  background: #ffffff;
}
.modal .close-btn span::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.modal .close-btn span::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.modal .modal-content {
  overflow-y: auto;
  position: relative;
  display: block;
}



/*PC*/
@media only screen and (min-width: 1024px) {
  .modal .close-btn {
    cursor: pointer;
  }
  .modal .modal-content img {
    width: auto;
    height: 100%;
    max-height: calc(100vh - 80px);
  }
}




/*-----------------------------------------------------

  Floatong Button

-----------------------------------------------------*/
.floating-btn {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 70px;
  background-color: rgba(225, 225, 225, 0.8);
}

.floating-btn ul {
  display: flex;
  position: relative;
  width: 100%;
  height: 70px;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: space-between;
}

.floating-btn ul::before {
  display: block;
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background:    -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
  background:         linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
  content: "";
}

.floating-btn ul li {
/*  width: calc(33% - 2.5px); 3つの時*/
    width: calc(50% - 2.5px);/* 2つの時 */
}

.floating-btn ul li a {
  display: flex;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.floating-btn ul .search-shop a {
  background: #2b615f;
  color: #ffffff;
  font-weight: 700;
}

.floating-btn ul .search-shop a:before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(/misaki/28th_kansyasai/cmn/img/icon_search_wh.svg) center/contain no-repeat;
  margin: 0 5px 0 0;
}

.floating-btn ul .epark a {
  background: #ffffff;
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

.floating-btn ul .epark a img {
  width: 81px;
  margin:2px 0.25em;
}

.floating-btn ul .takeout-reserve{
  text-align: center;
}
.floating-btn ul .takeout-reserve a {
  background: #3a80ba;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

/*375px以下*/
@media only screen and (max-width: 375px) {
  .floating-btn ul {
    padding: 10px 4w;
  }
  .floating-btn ul .epark a {
    font-size: 3.2vw;
  }
  .floating-btn ul .epark a img {
    width: 21.6vw;
  }
}

/*1024px以上*/
@media only screen and (min-width: 1024px) {
  .floating-btn, .floating-btn ul {
    height: 90px;
  }
  .floating-btn ul {
    height: 90px;
    padding: 15px 0;
    justify-content: center;
  }
  .floating-btn ul li {
    width: 300px;
    margin: 0 5px;
  }
  .floating-btn ul li a {
    height: 60px;
    transition: all 0.3s;
  }
  .floating-btn ul .epark a {
    font-size: 1.4rem;
  }
  .floating-btn ul .epark a img {
    width: 120px;
  }
  .floating-btn ul li a:hover {
    opacity: 0.5;
  }
}


/*-----------------------------------------------------

  Footer

-----------------------------------------------------*/
#global-footer {
  position: relative;
  padding-top: 30px;
  background: #282828;
}

#global-footer .pagetop {
  display: block;
  display: none;
  position: fixed;
  right: 10px;
  bottom: 85px;
  z-index: 100;
  width: 30px;
  height: 30px;
}

#global-footer .pagetop a {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.8);
}

#global-footer .pagetop a span {
  display: block;
  height: 0;
  padding-top: 30px;
  background: url("../img/cmn_btn_pagetop_sp.png") no-repeat;
  background-size: cover;
}

#global-footer .footer-logo {
  width: 150px;
  margin: 0 auto;
  line-height: 1;
}

#global-footer .footer-logo .logo {
  fill: #ffffff;
}

#global-footer .official-link {
  margin-top: 20px;
  border-bottom: 1px solid #666666;
}

#global-footer .official-link li {
  border-top: 1px solid #666666;
}

#global-footer .official-link li a {
  display: block;
  position: relative;
  padding: 15px;
  color: #ffffff;
  text-decoration: none;
}

#global-footer .official-link li a[target="_blank"]::after {
  display: block;
  position: absolute;
  top: calc(50% - 6.25px);
  right: 15px;
  width: 15px;
  height: 12.5px;
  line-height: 1;
  content: url( "data:image/svg+xml;utf-8,<svg xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" viewBox=\"0 0 15 12.5\"><path d=\"M10.9 12.5H0V4.1h3v1H1v6.4h8.9V9.6h1z\" fill=\"%23ffffff\"/><path d=\"M15 8.4H4.1V0H15v8.4zm-9.9-1H14V1H5.1v6.4z\" fill=\"%23ffffff\"/></svg>" );
}

#global-footer .copyright {
  padding: 15px 30px;
  background: #ffffff;
  font-size: 1.0rem;
  text-align: center;
}

/*1024px以上*/
@media only screen and (min-width: 1024px) {
  #global-footer {
    padding-top: 60px;
  }
  #global-footer .pagetop {
    right: 25px;
    bottom: 105px;
    width: 50px;
    height: 50px;
  }
  #global-footer .pagetop a {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    cursor: pointer;
  }
  #global-footer .pagetop a span {
    padding-top: 50px;
    background: url("../img/cmn_btn_pagetop_pc.png") no-repeat;
    background-size: cover;
  }
  #global-footer .footer-logo {
    width: 264px;
  }
  #global-footer .official-link {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding-bottom: 70px;
    border-bottom: none;
    text-align: center;
  }

  #global-footer .official-link li {
    display: inline-block;
    border-top: none;
  }

  #global-footer .official-link li a {
    position: relative;
    padding: 0 40px 0 15px;
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
  }

  #global-footer .official-link li a:hover {
    opacity: 0.5;
  }

  #global-footer .official-link li a[target="_blank"]::after {
    display: block;
    position: absolute;
    top: calc(50% - 6.25px);
    right: 15px;
    width: 15px;
    height: 12.5px;
    line-height: 1;
    content: url( "data:image/svg+xml;utf-8,<svg xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" viewBox=\"0 0 15 12.5\"><path d=\"M10.9 12.5H0V4.1h3v1H1v6.4h8.9V9.6h1z\" fill=\"%23ffffff\"/><path d=\"M15 8.4H4.1V0H15v8.4zm-9.9-1H14V1H5.1v6.4z\" fill=\"%23ffffff\"/></svg>" );
  }

  #global-footer .copyright {
    padding: 15px 30px;
    background: #ffffff;
    font-size: 1.0rem;
    text-align: center;
  }
}


/*-----------------------------------------------------

  Notes

-----------------------------------------------------*/
.notes {
  margin-top: 1em;
  color: #333333;
  font-size: 1.2rem;
  line-height: 1.5;
}

p.notes, ul.notes li {
  margin-left: 1em;
  text-align: left;
  text-indent: -1em;
}

ul.notes li {
  margin-bottom: 0.25em;
}

ul.notes li:last-child {
  margin-bottom: 0;
}

/*375px以下*/
@media only screen and (max-width: 375px) {
  .notes {
    font-size: 3.2vw;
  }
}
