/* 調整用スタイル */

a {
  text-decoration: none;
}

a:link,
a:hover,
a:visited,
a:focus{
    color:#003399;
}

p a {
  text-decoration: underline;
}

p a:link,
p a:hover,
p a:visited,
p a:focus{
    color:#003399;
}

ul,
li {
  list-style: none;
}

main {
  display: flex;
}

.main {
    max-width: 900px;
    margin: 180px auto 120px auto;
    padding: 0 24px 0 24px;
}

.footer {
    bottom: 18px;
    left: 24px;
    position: fixed;
}

.footer p{
   font-size: 9px;
}

.footer div {
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@media screen and (min-width: 960px) {
    .footer {
    bottom: 36px;
    left: 24px;
    }
    .footer p{
   font-size: 12px;
    }
}

/* ------------------------------ body ------------------------------*/

body{
    font-family:'Roboto', 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75em;
    letter-spacing: 0.1em;
    color: #333;
    font-feature-settings: "palt";
    text-align: left;
    text-justify: inter-ideograph;
    overflow-x: hidden;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.fs80{
    font-size: 0.8em;
    line-height: 1.5em;
}

.fw400{
    font-weight: 400;
}

.btm12{
    margin-bottom: 12px;
}

.btm30{
    margin-bottom: 30px;
}

.btm60{
    margin-bottom: 60px;
}


/* ------------------------------ header ------------------------------*/

.header {
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header li{
    transform: scale(1,1.1);
}
.header a {
    color: #333;
}

.header__inner {
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

.header__title {
    font-weight: 400;
    width: 210px;
    font-size: 16px;
}

.header__title img {
    width: 154px;
    padding-top: 9px;
}

@media screen and (min-width: 960px) {
  .header__title {
    width: 210px;
  }
}

/*
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
*/

.title_jp{
    font-size: 0.95em;
}

.wht{
    color: #fff;
}

.sans{
    font-family: 'roboto';
    font-weight: 300;
}

.header__nav.active .wht{
    color: #333 !important;
}

/* ------------------------------ header navi ------------------------------*/

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease .4s;
    font-weight: 500;
}

@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 420px;
  }
}

@media screen and (min-width: 960px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}

.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

@media screen and (min-width: 960px) {
  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);

  }
}

/* ------------------------------ navi link ------------------------------*/

.nav-items__item a {
  color: #333;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 14px;
  margin-bottom: 24px;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

.v_bar{
    display: none;
}

.flo_r{
    padding-left: 6px;
    display: inline-block;
}

.inl-b{
    display: inline-block;
    white-space: nowrap;
}
    .current{
        opacity: 0.5 !important;
    }

@media screen and (min-width: 960px) {
    .nav-items__item{
    margin-right: 18px;;
  }
    
    .nav-items__item a {
    margin-bottom: 0;
  }
    .v_bar{
    display: block;
}
}

/* ------------------------------ navi menu ------------------------------*/

.header__hamburger {
  width: 36px;
  height: 100%;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

/* ------------------------------ hamburger line------------------------------*/

.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #333;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ------------------------------ hamburger active------------------------------*/

.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

.hamburger span.wht{
  background-color: #fff !important;
}

.hamburger.active span.wht{
  background-color: #333 !important;
}

/* ------------------------------ button ------------------------------*/

button{
    padding-inline: 0;
    border-width: 0;
}


/* ------------------------------ main ------------------------------*/

.main_header {
    width: 100%;
}

.main_header h1{
    margin-bottom: 30px;
    font-weight: 500;
    font-size:  1.5em;
    letter-spacing:0.2em;
    text-align: center;
    transform: scale(1, 1.2) ;
}

.main_header img{
    width: 100%;
    margin-bottom: 30px;
}

@media screen and (min-width: 960px) {
.main_header h1{
    font-size:  1.8em;
  }
}

/* ------------------------------ reservation ------------------------------*/

.reservation article{
    margin-bottom: 36px;
}

.tell_number{
    color: #003399;
}

.tell_number p{
    letter-spacing: 0.2em;
    font-size: 1.25em;
    font-weight: 500;
}

.hpb{
    border: 1px solid #8f3256;
    text-align: center;
}

.hpb img{
    margin: 12px auto;
    padding: 9px 0 3px 0;
}

.hpb_h2{
    margin-bottom: 30px !important;
}

/* ------------------------------ menu ------------------------------*/

.menu{
    width: 100%;
}

.menu h2{
    font-weight: 400;
    border-bottom: solid 1px;
    margin-bottom: 12px;
    transform: scale(1,1.1);
}

.menu_title{
    background-color: #333;
    color: #fff;
    padding:5px 7px 5px 7px;
}

.menu table{
    width: 100%;
    margin-bottom: 36px;
    line-height: 1.5em;
}

.menu tr{
}

.menu td{
    padding: 6px 0 6px 0;
}

.menu .menu_list{
    padding-right: 30px;
}

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

/* ------------------------------ about ------------------------------*/

.about article{
    margin-bottom: 36px;
}

.box{
    padding:4px 6px 3px 6px; 
     border: 1px solid #333;
}

.about ul li{
    float:left;
}

.about ul li:after{
  content:"／";
}

#none{
    float:none;
}

#none:after{
  content:"" !important;
}


/* ------------------------------ access ------------------------------*/

.access article{
    margin-bottom: 36px;
}

.access h2{
    font-size: 1.2em;
    margin-bottom: 12px;
}

.access h2,
.reservation h2,
.about h2{
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 12px;
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}

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


@media screen and (min-width: 960px) {
    .tate{
    width: 60%;
    margin: 0 auto;
    }
    .shikaku{
    width: 80%;
    margin: 0 auto;
    }
}

