@charset "UTF-8";
@import "reset.css";
.visibilittyHidden {
  position: absolute!important;
  display: block!important;
  overflow: hidden!important;
  clip: rect(0 0 0 0) !important;
  margin: -1px !important;
  padding: 0!important;
  width: 1px!important;
  height: 1px!important;
  border: 0!important;
}
html {
  width: 100%;
  height: 100%;
}
body {
  font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  font-weight: 500;
  width: 100%;
  color: #000;
  background-color: #f5eedd;
  overflow-x: hidden;
  font-size: 16px;
  color: #231815;
}
@media screen and (max-width: 768px) {
  body {
    width: 100vw;
    overflow-x: hidden;
  }
}
a {
  text-decoration: none;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  color: #231815;
  outline: none;
}
a:hover {
  opacity: 0.8;
}
figure img {
  display: block;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  outline: none !important;
}
.sp-show {
  display: none !important;
}
.sp-hide {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .sp-show {
    display: block !important;
  }
  .sp-hide {
    display: none !important;
  }
}
/*--------------------------------------------------------------------------------
 parts
--------------------------------------------------------------------------------*/
.btn-to-top {
  width: 51px;
  height: 51px;
  margin: 20px auto;
  background: url('../img/common/btn_totop.svg') no-repeat;
  background-size: 100% auto;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .btn-to-top {
    display: none;
  }
}
/*--------------------------------------------------------------------------------
 script style
--------------------------------------------------------------------------------*/
.js-fadeIn {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 1500ms;
  transition: all 1500ms;
}
.js-fadeIn.scrollin {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  position: relative;
  z-index: 100;
}
.js-menu-fadeIn {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 1500ms;
  transition: all 1500ms;
}
.js-menu-fadeIn.scrollin {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  position: relative;
  z-index: 100;
}
.js-menu-fadeIn {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 1500ms;
  transition: all 1500ms;
}
.js-menu-fadeIn.scrollin {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  position: relative;
  z-index: 100;
}
.js-menutop-fadeIn {
  opacity: 0;
  -webkit-transition: all 1500ms;
  transition: all 1500ms;
}
.js-menutop-fadeIn.scrollin {
  opacity: 1;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .js-spmenu-toggle {
    position: relative;
    cursor: pointer;
  }
  .js-spmenu-toggle:after {
    display: block;
    content: '';
    width: 3.33333333vw;
    height: 1.6vw;
    background: url('../img/common/ico_bottom__b.svg') no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 2.66666667vw;
    right: 2.8vw;
  }
  .js-spmenu-toggle.open:after {
    background: url('../img/common/ico_top__b.svg') no-repeat;
    background-size: 100% auto;
  }
}
.js-spmenu-item {
  display: block;
}
@media screen and (max-width: 768px) {
  .js-spmenu-item {
    display: none;
  }
}
/*

unit(percentage(275px/@spdesignSize), vw)
マイナスの値の場合は
calc(-1 * unit(percentage(200px/@spdesignSize), vw))
*/
/*--------------------------------------------------------------------------------
 header
--------------------------------------------------------------------------------*/
.header {
  width: 100%;
  height: 8.5vw;
  background-color: #f5eedd;
}
.header .header-inner {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2.16666667vw 0 5.83333333vw;
}
.header .header-inner .header-logo {
  width: 11.58333333vw;
  height: 5.25vw;
  background: url('../img/common/bg_logo.svg') no-repeat;
  background-size: 100% 100%;
}
.header .header-inner .header-logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header .header-inner .header-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 53.33333333vw;
}
.header .header-inner .header-links li {
  margin: 0 2.5vw 0 0;
}
.header .header-inner .header-links li:last-of-type {
  margin: 0;
}
.header .header-inner .header-links li a {
  display: block;
  padding: 0.83333333vw;
  font-size: 1.33333333vw;
  font-weight: bold;
  background-color: #faed00;
}
.header .header-inner .header-links-sp {
  display: none;
}
.header .header-inner .header-reserve {
  display: block;
  width: 19vw;
  height: 4.16666667vw;
}
.header .header-inner .header-reserve img {
  width: 100%;
  height: auto;
}
.header .header-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .header {
    height: 14.66666667vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .header .header-inner {
    padding: 0 4.66666667vw;
  }
  .header .header-inner .header-logo {
    width: 18.66666667vw;
    height: 8.4vw;
  }
  .header .header-inner .header-links {
    display: none;
  }
  .header .header-inner .header-links-sp {
    display: none;
    width: 100%;
    height: 100vh;
    padding: 13.33333333vw 0 0 5.33333333vw;
    background-color: #302A2C;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
  }
  .header .header-inner .header-links-sp li {
    margin: 0 0 9.33333333vw;
  }
  .header .header-inner .header-links-sp li:last-of-type {
    margin: 0;
  }
  .header .header-inner .header-links-sp li a {
    display: block;
    font-size: 4.4vw;
    color: #FFF;
  }
  .header .header-inner .header-links-sp li.sub .sub-menu li {
    margin: 0 0 5.33333333vw;
    padding: 0 0 0 4vw;
  }
  .header .header-inner .header-reserve {
    display: none;
  }
  .header .header-toggle {
    display: block;
    width: 9.06666667vw;
    height: 6.4vw;
    background: url('../img/common/ico_sp_toggle.svg') no-repeat;
    background-size: 100% 100%;
    position: fixed;
    top: 4.53333333vw;
    right: 5.33333333vw;
  }
  .header .header-toggle.open {
    width: 5.33333333vw;
    height: 5.33333333vw;
    background: url('../img/common/ico_sp_toggle_open.svg') no-repeat;
    background-size: 100% auto;
  }
}
/*--------------------------------------------------------------------------------
 KV（top）
--------------------------------------------------------------------------------*/
.block-kv {
  width: 100%;
  height: 37.5vw;
  position: relative;
}
.block-kv .block-kv-img {
  width: 100%;
  height: 100%;
}
.block-kv .block-kv-img li {
  width: 100%;
  height: 100%;
}
.block-kv .block-kv-img li a {
  display: block;
  width: 100%;
  height: auto;
}
.block-kv .block-kv-img li img {
  width: 100%;
  height: auto;
}
.block-kv .block-kv-img .slick-dots {
  width: 100%;
  position: absolute;
  bottom: 30px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.block-kv .block-kv-img .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 15px 0 0;
}
.block-kv .block-kv-img .slick-dots li:last-of-type {
  margin: 0;
}
.block-kv .block-kv-img .slick-dots li button {
  width: 100%;
  height: 100%;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
  background-color: #FFF;
  border-radius: 6px;
}
.block-kv .block-kv-img .slick-dots li.slick-active button {
  background-color: #302a2c;
}
@media screen and (max-width: 768px) {
  .block-kv {
    width: 100%;
    height: 96vw;
    position: relative;
    margin: 14.66666667vw 0 10.66666667vw;
  }
  .block-kv:after {
    display: block;
    content: '';
    width: 6.4vw;
    height: 3.06666667vw;
    background: url('../img/common/ico_bottom__b.svg') no-repeat;
    background-size: 100% 100%;
    position: relative;
    bottom: calc(-3.33333333vw);
    left: 50%;
    margin: 0 0 0 calc(-3.2vw);
  }
  .block-kv .block-kv-img li a {
    display: block;
    width: 100%;
    height: auto;
  }
  .block-kv .block-kv-img li img {
    width: 100%;
    height: auto;
  }
  .block-kv .block-kv-img .slick-dots {
    bottom: 4vw;
  }
  .block-kv .block-kv-img .slick-dots li {
    width: 3.33333333vw;
    height: 3.33333333vw;
    margin: 0 4vw 0 0;
  }
  .block-kv .block-kv-img .slick-dots li button {
    border-radius: 2.66666667vw;
  }
}
/*--------------------------------------------------------------------------------
 TOP
--------------------------------------------------------------------------------*/
.top-introduction {
  width: 100%;
  background-color: #f5eedd;
}
.top-introduction .top-introduction-inner figure {
  width: 100%;
  height: 23.16666667vw;
}
.top-introduction .top-introduction-inner figure img {
  width: 100%;
  height: auto;
}
.top-introduction .top-introduction-inner .top-introduction-title {
  font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
  font-size: 38px;
  text-align: center;
  letter-spacing: -0.2rem;
  margin: 3.33333333vw auto;
}
@media screen and (max-width: 768px) {
  .top-introduction .top-introduction-inner figure {
    height: 55.73333333vw;
  }
  .top-introduction .top-introduction-inner .top-introduction-title {
    font-size: 5.33333333vw;
    line-height: 1.3;
    margin: 5.33333333vw auto;
  }
}
.top-navigate {
  background-color: #c8bb9b;
  padding: 35px 0;
  position: relative;
  z-index: 200;
}
.top-navigate .top-navigate-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1050px;
  margin: 0 auto;
}
.top-navigate .top-navigate-inner .top-navigate-item {
  width: 340px;
}
.top-navigate .top-navigate-inner .top-navigate-item a {
  display: block;
  width: 100%;
}
.top-navigate .top-navigate-inner .top-navigate-item a .top-navigate-title {
  padding: 10px 0;
  background-color: #faed00;
  font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
  font-size: 32px;
  text-align: center;
  letter-spacing: -0.2rem;
}
.top-navigate .top-navigate-inner .top-navigate-item a figure {
  width: 100%;
  height: auto;
  margin: 0 auto 10px;
}
.top-navigate .top-navigate-inner .top-navigate-item a figure img {
  width: 100%;
  height: auto;
}
.top-navigate .top-navigate-inner .top-navigate-item .top-navigate-item-txt {
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}
.top-navigate .top-navigate-inner .top-navigate-item .top-navigate-splink {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-navigate {
    padding: 5.33333333vw 0;
  }
  .top-navigate .top-navigate-inner {
    display: block;
    width: auto;
  }
  .top-navigate .top-navigate-inner .top-navigate-item {
    width: 81.33333333vw;
    margin: 0 auto 5.33333333vw;
    text-align: center;
  }
  .top-navigate .top-navigate-inner .top-navigate-item:last-of-type {
    margin: 0 auto;
  }
  .top-navigate .top-navigate-inner .top-navigate-item a .top-navigate-title {
    display: none;
  }
  .top-navigate .top-navigate-inner .top-navigate-item a figure {
    margin: 0 auto 1.33333333vw;
  }
  .top-navigate .top-navigate-inner .top-navigate-item .top-navigate-item-txt {
    font-size: 3.73333333vw;
    margin: 0 0 2vw;
  }
  .top-navigate .top-navigate-inner .top-navigate-item .top-navigate-splink {
    display: inline-block;
    width: auto;
    font-size: 4.8vw;
    font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
    background-color: #faed00;
    padding: 2vw 11.33333333vw 2vw 8vw;
    position: relative;
  }
  .top-navigate .top-navigate-inner .top-navigate-item .top-navigate-splink:after {
    display: block;
    content: '';
    width: 1.6vw;
    height: 3.46666667vw;
    background: url('../img/common/ico_right__b.svg') no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 2.66666667vw;
    right: 2.26666667vw;
  }
}
/*--------------------------------------------------------------------------------
 commitment こだわり
--------------------------------------------------------------------------------*/
.commitment-beginning {
  width: 100%;
  height: 56.58333333vw;
  background: url('../img/commitment/bg_beginning.png') no-repeat;
  background-size: cover;
  position: relative;
}
.commitment-beginning .commitment-beginning-inner {
  width: 35vw;
  color: #FFF;
  position: absolute;
  top: 20vw;
  left: 5vw;
}
.commitment-beginning .commitment-beginning-inner .commitment-beginning-title {
  font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
  font-size: 4.16666667vw;
  line-height: 1.34;
  margin: 0 auto 2.5vw;
  letter-spacing: -0.5rem;
}
.commitment-beginning .commitment-beginning-inner .commitment-beginning-title .year {
  letter-spacing: 0rem;
}
.commitment-beginning .commitment-beginning-inner .commitment-beginning-title .birth {
  letter-spacing: -1rem;
}
.commitment-beginning .commitment-beginning-inner .commitment-beginning-txt {
  font-size: 1.5vw;
  font-weight: bold;
  line-height: 1.38;
}
@media screen and (max-width: 768px) {
  .commitment-beginning {
    height: 126.66666667vw;
    background: url('../img/commitment/bg_beginning_sp.png') no-repeat;
    background-size: cover;
    margin: 14.66666667vw 0 0;
  }
  .commitment-beginning .commitment-beginning-inner {
    width: 100%;
    position: relative;
    top: inherit;
    left: inherit;
    text-align: center;
    padding: 15.33333333vw 0 0;
  }
  .commitment-beginning .commitment-beginning-inner .commitment-beginning-title {
    font-size: 6.66666667vw;
    margin: 0 auto 4vw;
    letter-spacing: -0.2rem;
  }
  .commitment-beginning .commitment-beginning-inner .commitment-beginning-title .year {
    letter-spacing: 0rem;
  }
  .commitment-beginning .commitment-beginning-inner .commitment-beginning-title .birth {
    letter-spacing: -0.4rem;
  }
  .commitment-beginning .commitment-beginning-inner .commitment-beginning-txt {
    font-size: 2.4vw;
  }
}
.commitment-ingenuity {
  width: 100%;
  height: 56.66666667vw;
  background: url('../img/commitment/bg_ingenuity.png') no-repeat;
  background-size: cover;
  position: relative;
}
.commitment-ingenuity .commitment-ingenuity-inner {
  width: 37.5vw;
  text-align: right;
  position: absolute;
  top: 20.83333333vw;
  right: 7.08333333vw;
}
.commitment-ingenuity .commitment-ingenuity-inner .commitment-ingenuity-title {
  font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
  font-size: 4.16666667vw;
  line-height: 1.34;
  margin: 0 auto 2.5vw;
  letter-spacing: -0.5rem;
  position: relative;
}
.commitment-ingenuity .commitment-ingenuity-inner .commitment-ingenuity-title:before {
  display: block;
  content: '';
  width: 12.41666667vw;
  height: 3.91666667vw;
  background: url('../img/commitment/bg_dotted__y.svg') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 3.75vw;
  left: 6.25vw;
}
.commitment-ingenuity .commitment-ingenuity-inner .commitment-ingenuity-txt {
  font-size: 1.5vw;
  font-weight: bold;
  line-height: 1.38;
}
@media screen and (max-width: 768px) {
  .commitment-ingenuity {
    height: 126.13333333vw;
    background: url('../img/commitment/bg_ingenuity_sp.png') no-repeat;
    background-size: cover;
  }
  .commitment-ingenuity .commitment-ingenuity-inner {
    width: 100%;
    top: inherit;
    right: inherit;
    padding: 10vw 0 0;
    position: relative;
    text-align: center;
  }
  .commitment-ingenuity .commitment-ingenuity-inner .commitment-ingenuity-title {
    font-size: 6.66666667vw;
    margin: 0 auto 4vw;
    letter-spacing: -0.18rem;
  }
  .commitment-ingenuity .commitment-ingenuity-inner .commitment-ingenuity-title:before {
    width: 19.86666667vw;
    height: 6.26666667vw;
    background: url('../img/commitment/bg_dotted__y_sp.svg') no-repeat;
    background-size: 100% 100%;
    top: 6vw;
    left: 29.33333333vw;
  }
  .commitment-ingenuity .commitment-ingenuity-inner .commitment-ingenuity-txt {
    font-size: 2.4vw;
  }
}
.commitment-specialty {
  width: 100%;
  height: 56.83333333vw;
  background: url('../img/commitment/bg_specialty.png') no-repeat;
  background-size: cover;
  position: relative;
}
.commitment-specialty .commitment-specialty-inner {
  width: 41.66666667vw;
  position: absolute;
  top: 22.5vw;
  left: 3.75vw;
}
.commitment-specialty .commitment-specialty-inner .commitment-specialty-title {
  font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
  font-size: 4.16666667vw;
  line-height: 1.34;
  margin: 0 auto 2.5vw;
  letter-spacing: -0.5rem;
}
.commitment-specialty .commitment-specialty-inner .commitment-specialty-title span {
  display: inline-block;
  background-color: #faed00;
  padding: 0 2.91666667vw 0 0;
}
.commitment-specialty .commitment-specialty-inner .commitment-specialty-txt {
  font-size: 1.5vw;
  font-weight: bold;
  line-height: 1.38;
  margin: 0 0 5.83333333vw;
}
.commitment-specialty .commitment-specialty-inner .commitment-specialty-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 15.83333333vw;
  height: 2.5vw;
  font-size: 1.33333333vw;
  border: 1px solid #231815;
  padding: 0 0 0 0.83333333vw;
  position: relative;
}
.commitment-specialty .commitment-specialty-inner .commitment-specialty-link:after {
  display: block;
  content: '';
  width: 0.58333333vw;
  height: 1.25vw;
  background: url('../img/common/ico_right__b.svg') no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0.58333333vw;
  right: 0.83333333vw;
}
.commitment-specialty .img_specialty_01 {
  width: 36vw;
  height: 26.91666667vw;
  position: absolute;
  top: 5.83333333vw;
  left: 32.83333333vw;
}
.commitment-specialty .img_specialty_02 {
  width: 34.58333333vw;
  height: 23.75vw;
  position: absolute;
  top: 1.08333333vw;
  left: 64.41666667vw;
}
.commitment-specialty .img_specialty_03 {
  width: 48.16666667vw;
  height: 30.33333333vw;
  position: absolute;
  top: 26.83333333vw;
  left: 51vw;
}
@media screen and (max-width: 768px) {
  .commitment-specialty {
    width: 100%;
    height: 128.66666667vw;
    background: url('../img/commitment/bg_specialty_sp.png') no-repeat;
    background-size: cover;
  }
  .commitment-specialty .commitment-specialty-inner {
    width: 100%;
    position: relative;
    top: inherit;
    left: inherit;
    padding: 8.66666667vw 0 0;
    text-align: center;
  }
  .commitment-specialty .commitment-specialty-inner .commitment-specialty-title {
    font-size: 6.66666667vw;
    margin: 0 auto 2.66666667vw;
    letter-spacing: -0.2rem;
  }
  .commitment-specialty .commitment-specialty-inner .commitment-specialty-title span {
    padding: 1.33333333vw 2.66666667vw;
  }
  .commitment-specialty .commitment-specialty-inner .commitment-specialty-txt {
    font-size: 2.4vw;
    margin: 0 0 74.66666667vw;
  }
  .commitment-specialty .commitment-specialty-inner .commitment-specialty-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 32vw;
    height: 6.66666667vw;
    font-size: 2.93333333vw;
    padding: 0;
    background-color: #FFF;
    margin: 0 auto;
  }
  .commitment-specialty .commitment-specialty-inner .commitment-specialty-link:after {
    width: 0.93333333vw;
    height: 2vw;
    background: url('../img/common/ico_right__b.svg') no-repeat;
    top: 2vw;
    right: 1.33333333vw;
  }
  .commitment-specialty .img_specialty_01 {
    width: 48vw;
    height: 35.6vw;
    top: 47.2vw;
    left: 4.4vw;
  }
  .commitment-specialty .img_specialty_02 {
    width: 46.13333333vw;
    height: 31.46666667vw;
    top: 44.8vw;
    left: 49.33333333vw;
  }
  .commitment-specialty .img_specialty_03 {
    width: 64.53333333vw;
    height: 40.66666667vw;
    top: 76vw;
    left: 29.33333333vw;
  }
}
/*--------------------------------------------------------------------------------
 menulist おしながき
--------------------------------------------------------------------------------*/
.menulist-kv {
  width: 100%;
  margin: 0 0 60px;
  position: relative;
}
.menulist-kv .menulist-kv-inner {
  width: 100%;
}
.menulist-kv .menulist-kv-inner .menulist-kv-title {
  width: 100%;
  height: 51.66666667vw;
  background: url('../img/menulist/img_kv.png') top center no-repeat;
  background-size: auto 100%;
  margin: 0 0 1.66666667vw;
}
.menulist-kv .menulist-kv-inner .menulist-kv-title.drink {
  background: url('../img/menulist/drinks/img_kv.png') top center no-repeat;
  background-size: auto 100%;
}
.menulist-kv .menulist-kv-inner .menulist-kv-txt {
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .menulist-kv {
    margin: 14.66666667vw 0 12vw;
  }
  .menulist-kv .menulist-kv-inner .menulist-kv-title {
    height: 96.4vw;
    background: url('../img/menulist/img_kv_sp.png') top center no-repeat;
    background-size: auto 100%;
    margin: 0 0 2.66666667vw;
  }
  .menulist-kv .menulist-kv-inner .menulist-kv-title.drink {
    background: url('../img/menulist/drinks/img_kv_sp.png') top center no-repeat;
    background-size: auto 100%;
  }
  .menulist-kv .menulist-kv-inner .menulist-kv-txt {
    font-size: 3.73333333vw;
  }
}
.menulist-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 620px;
  margin: 0 auto 7.5vw;
}
.menulist-nav li {
  width: 285px;
  cursor: pointer;
}
.menulist-nav li a {
  display: block;
  width: 100%;
  height: 100%;
}
.menulist-nav li figure {
  width: 100%;
}
.menulist-nav li figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 10px;
}
.menulist-nav li figure figcaption {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .menulist-nav {
    display: none;
  }
}
.menulist-cat {
  margin: 0 0 200px;
}
.menulist-cat .menulist-cat-title {
  font-size: 50px;
  font-weight: bold;
  margin: 0 auto 150px;
  text-align: center;
}
.menulist-cat .menulist-cat-title span {
  display: block;
  font-size: 20px;
  font-weight: normal;
  padding: 10px 0 0;
}
.menulist-cat .menulist-cat-caution {
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 70px;
}
.menulist-cat .menulist-cat-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1010px;
  margin: 0 auto 85px;
}
.menulist-cat .menulist-cat-card:last-of-type {
  margin: 0 auto;
}
.menulist-cat .menulist-cat-card figure {
  width: 535px;
}
.menulist-cat .menulist-cat-card figure img {
  width: 100%;
  height: auto;
}
.menulist-cat .menulist-cat-card .menulist-cat-content {
  width: 430px;
  position: relative;
}
.menulist-cat .menulist-cat-card .menulist-cat-content.specialty_1 {
  width: 420px;
}
.menulist-cat .menulist-cat-card .menulist-cat-content.specialty_2 {
  width: 390px;
}
.menulist-cat .menulist-cat-card .menulist-cat-content.specialty_2 .menulist-cat-price dd.variation .variation-list {
  padding: 0 0 0 40px;
}
.menulist-cat .menulist-cat-card .menulist-cat-content.specialty_3 {
  width: 420px;
}
.menulist-cat .menulist-cat-card .menulist-cat-content.sashimi {
  width: 430px;
  text-align: center;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-content-title {
  display: inline-block;
  font-size: 48px;
  font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
  letter-spacing: -0.2rem;
  padding: 20px;
  margin: 0 0 25px;
  white-space: nowrap;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-content-title .f__lm {
  letter-spacing: -2rem;
  margin: 0 10px 0 -15px;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-content-title .f__c {
  font-size: 44px;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-content-title.c__y {
  background-color: #faed00;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-txt {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 20px;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dt {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dt.exp {
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  margin: 20px 0 0;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  line-height: 2;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd .yen {
  font-size: 12px;
  padding: 0 0 0 2px;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd .tax {
  font-size: 10px;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd.variation {
  width: 100%;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd.variation .variation-list {
  padding: 0 0 0 85px;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd.variation .variation-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd.variation .variation-list li .variation-price {
  text-align: right;
  margin: 0 0 0 auto;
}
.menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd.variation .variation-list li .variation-price.yen {
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .menulist-cat {
    margin: 0 0 21.33333333vw;
  }
  .menulist-cat .menulist-cat-title {
    font-size: 6.66666667vw;
    margin: 0 auto 10vw;
  }
  .menulist-cat .menulist-cat-title .span {
    font-size: 2.66666667vw;
    padding: 1.33333333vw 0 0;
  }
  .menulist-cat .menulist-cat-caution {
    display: none;
  }
  .menulist-cat .menulist-cat-card {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 84vw;
    margin: 0 auto 10.66666667vw;
  }
  .menulist-cat .menulist-cat-card figure {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 100%;
    margin: 0 0 4.66666667vw;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content.specialty_1 {
    width: 100%;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content.specialty_2 {
    width: 100%;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content.specialty_2 .menulist-cat-price dd.variation .variation-list {
    padding: 0 0 0 5.33333333vw;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content.specialty_3 {
    width: 100%;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content.sashimi {
    width: 100%;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-content-title {
    text-align: center;
    font-size: 9.06666667vw;
    padding: 4vw 6.66666667vw;
    line-height: 1;
    margin: 0 auto 5.33333333vw;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-content-title .f__lm {
    letter-spacing: -1.5rem;
    font-size: 9.06666667vw;
    padding: 1.33333333vw 0 0;
    margin: 0 2.66666667vw 0 calc(-2vw);
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-content-title .f__c {
    font-size: 8.8vw;
    margin: 0 0 0 0.66666667vw;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-txt {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dt {
    font-size: 4vw;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dt.exp {
    font-size: 3.73333333vw;
    margin: 4vw 0 0;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd {
    font-size: 3.73333333vw;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd .yen {
    font-size: 2.66666667vw;
    padding: 0 0 0 2px;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd .tax {
    font-size: 2.4vw;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd.variation .variation-list {
    padding: 0 0 0 4vw;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd.variation .variation-list li {
    font-size: 4.53333333vw;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd.variation .variation-list li .variation-price {
    margin: 0 0 0 auto;
  }
  .menulist-cat .menulist-cat-card .menulist-cat-content .menulist-cat-price dd.variation .variation-list li .variation-price.yen {
    font-size: 11px;
  }
}
/*--------------------------------------------------------------------------------
 drink お飲み物
--------------------------------------------------------------------------------*/
.drink-inner {
  width: 1100px;
  margin: 0 auto;
}
.drink-inner .drink-inner-title {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 130px;
}
.drink-inner .drink-inner-title span {
  display: block;
  font-size: 20px;
  font-weight: normal;
  padding: 10px 0 0;
}
.drink-inner .drink-cat {
  margin: 0 0 80px;
}
.drink-inner .drink-cat .drink-cat-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 650px;
  height: 60px;
  font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
  font-size: 42px;
  font-weight: bold;
  background-color: #faed00;
  margin: 0 0 45px;
  padding: 0 0 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.drink-inner .drink-cat .drink-cat-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.drink-inner .drink-cat .drink-cat-inner figure {
  width: 400px;
}
.drink-inner .drink-cat .drink-cat-inner figure img {
  width: 100%;
  height: auto;
  margin: 0 0 20px;
}
.drink-inner .drink-cat .drink-cat-inner figure figcaption {
  font-size: 16px;
  line-height: 1.75;
  white-space: nowrap;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content {
  width: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content dt {
  width: 420px;
  font-size: 20px;
  padding: 0 0 10px 10px;
  margin: 0 0 25px;
  border-bottom: 1px dotted #777777;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: nowrap;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content dt span {
  font-size: 16px;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content dt.nb {
  border: none;
  margin: 0 0 10px;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content dt.annotation {
  font-size: 13px;
  line-height: 1.4;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content dd {
  width: 220px;
  padding: 0 10px 10px 0;
  margin: 0 0 25px;
  text-align: right;
  border-bottom: 1px dotted #777777;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content dd .yen {
  font-size: 11px;
  margin: 0 3px;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content dd .tax {
  font-size: 11px;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content dd.nb {
  border: none;
  margin: 0 0 10px;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content.noimage {
  width: 100%;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content.noimage dt {
  width: 780px;
}
.drink-inner .drink-cat .drink-cat-inner .drink-cat-content.noimage dd {
  width: 320px;
}
.drink-inner .drink-cat .drink-cat-option {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .drink-inner {
    width: 92vw;
  }
  .drink-inner .drink-inner-title {
    font-size: 6.66666667vw;
    margin: 0 auto 13.33333333vw;
  }
  .drink-inner .drink-inner-title span {
    font-size: 2.66666667vw;
    padding: 1.33333333vw 0 0;
  }
  .drink-inner .drink-cat {
    margin: 0 0 17.33333333vw;
  }
  .drink-inner .drink-cat .drink-cat-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 83.46666667vw;
    height: 12vw;
    font-size: 8.66666667vw;
    margin: 0 auto 4vw;
    padding: 0;
  }
  .drink-inner .drink-cat .drink-cat-inner {
    display: block;
  }
  .drink-inner .drink-cat .drink-cat-inner figure {
    width: 83.46666667vw;
    margin: 0 auto 5.33333333vw;
  }
  .drink-inner .drink-cat .drink-cat-inner figure img {
    margin: 0;
  }
  .drink-inner .drink-cat .drink-cat-inner figure figcaption {
    display: none;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content {
    width: 100%;
    display: block;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content dt {
    width: 100%;
    border: none;
    white-space: normal;
    font-size: 4.53333333vw;
    padding: 0 0 0 1.33333333vw;
    margin: 0 0 2vw;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content dt span {
    font-size: 3.2vw;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content dt.nb {
    margin: 0 0 2vw;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content dt.annotation {
    font-size: 2.8vw;
    white-space: normal;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content dd {
    width: 100%;
    text-align: left;
    padding: 0 0 4vw 1.33333333vw;
    margin: 0 0 4vw;
    font-size: 3.73333333vw;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content dd .yen {
    font-size: 2.66666667vw;
    margin: 0 0.66666667vw;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content dd .tax {
    font-size: 2.66666667vw;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content dd.nb {
    padding: 0 0 0 1.33333333vw;
    margin: 0 0 4vw;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content dd.sp-annotation {
    height: 0;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content.noimage dt {
    width: 100%;
  }
  .drink-inner .drink-cat .drink-cat-inner .drink-cat-content.noimage dd {
    width: 100%;
  }
  .drink-inner .drink-cat .drink-cat-option {
    font-size: 3.73333333vw;
    text-align: center;
  }
  .drink-inner .drink-cat .drink-cat-caption {
    text-align: center;
    font-size: 3.73333333vw;
    line-height: 1.2;
  }
}
/*--------------------------------------------------------------------------------
 party ご宴会
--------------------------------------------------------------------------------*/
.party-kv {
  width: 100%;
  margin: 0 0 30px;
  position: relative;
}
.party-kv .party-kv-inner {
  width: 100%;
}
.party-kv .party-kv-inner .party-kv-title {
  width: 100%;
  height: 51.66666667vw;
  background: url('../img/party/img_kv.png') top center no-repeat;
  background-size: auto 100%;
  margin: 0 0 1.66666667vw;
}
.party-kv .party-kv-inner .party-kv-txt {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .party-kv {
    margin: 14.66666667vw 0 6.66666667vw;
  }
  .party-kv .party-kv-inner .party-kv-title {
    height: 96.4vw;
    background: url('../img/party/img_kv_sp.png') top center no-repeat;
    background-size: auto 100%;
    margin: 0 0 2.66666667vw;
  }
  .party-kv .party-kv-inner .party-kv-txt {
    font-size: 3.73333333vw;
  }
}
.party-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 620px;
  margin: 0 auto 7.5vw;
}
.party-nav li {
  width: 285px;
  cursor: pointer;
}
.party-nav li a {
  display: block;
  width: 100%;
  height: 100%;
}
.party-nav li figure {
  width: 100%;
}
.party-nav li figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 10px;
}
.party-nav li figure figcaption {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .party-nav {
    display: none;
  }
}
.party-cat {
  width: 750px;
  margin: 0 auto 290px;
}
.party-cat .party-cat-title {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 70px;
}
.party-cat .party-cat-title span {
  display: block;
  font-size: 20px;
  font-weight: normal;
  padding: 10px 0 0;
}
.party-cat .party-menu {
  text-align: center;
  margin: 0 0 170px;
}
.party-cat .party-menu:last-of-type {
  margin: 0;
}
.party-cat .party-menu figure {
  width: 600px;
  margin: 0 auto 50px;
}
.party-cat .party-menu figure img {
  width: 100%;
  height: auto;
}
.party-cat .party-menu .party-menu-title {
  width: 100%;
  background-color: #FAED00;
  font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
  padding: 15px 0;
  margin: 0 0 25px;
}
.party-cat .party-menu .party-menu-title .party-menu-title-bottomless {
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: -0.2rem;
}
.party-cat .party-menu .party-menu-title .party-menu-title-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 40px;
}
.party-cat .party-menu .party-menu-title .party-menu-title-inner .course {
  margin: 0 40px 0 0;
  font-size: 40px;
  color: #b81e25;
  letter-spacing: -0.3rem;
}
.party-cat .party-menu .party-menu-title .party-menu-title-inner .course span {
  font-size: 30px;
  font-weight: normal;
  color: #000;
  letter-spacing: -0.2rem;
}
.party-cat .party-menu .party-menu-title .party-menu-title-inner .price {
  letter-spacing: -0.2rem;
}
.party-cat .party-menu .party-menu-title .party-menu-title-inner .price span {
  font-size: 21px;
}
.party-cat .party-menu .party-menu-description {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 40px;
}
.party-cat .party-menu .party-menu-list {
  border-top: 2px dotted #666;
  border-bottom: 2px dotted #666;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 50px;
  padding: 30px;
}
.party-cat .party-menu .party-menu-caution {
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .party-cat {
    width: 84vw;
    margin: 0 auto 22.66666667vw;
  }
  .party-cat .party-cat-title {
    font-size: 6.66666667vw;
    margin: 0 0 10.66666667vw;
  }
  .party-cat .party-cat-title span {
    font-size: 2.66666667vw;
    padding: 1.33333333vw 0 0;
  }
  .party-cat .party-menu {
    margin: 0 0 22.66666667vw;
  }
  .party-cat .party-menu figure {
    width: 80vw;
    margin: 0 auto 6.66666667vw;
  }
  .party-cat .party-menu .party-menu-title {
    padding: 4vw 0;
    margin: 0 0 2vw;
  }
  .party-cat .party-menu .party-menu-title .party-menu-title-bottomless {
    font-size: 4.8vw;
    margin: 0 0 2.66666667vw;
    letter-spacing: -0.1rem;
  }
  .party-cat .party-menu .party-menu-title .party-menu-title-inner {
    font-size: 6.66666667vw;
    display: block;
  }
  .party-cat .party-menu .party-menu-title .party-menu-title-inner .course {
    font-size: 6.66666667vw;
    margin: 0 0 4vw;
    letter-spacing: -0.15rem;
  }
  .party-cat .party-menu .party-menu-title .party-menu-title-inner .course span {
    display: block;
    font-size: 5.33333333vw;
    letter-spacing: -0.1rem;
  }
  .party-cat .party-menu .party-menu-title .party-menu-title-inner .price {
    letter-spacing: -0.1rem;
  }
  .party-cat .party-menu .party-menu-title .party-menu-title-inner .price span {
    font-size: 3.2vw;
  }
  .party-cat .party-menu .party-menu-description {
    font-size: 3.73333333vw;
    margin: 0 0 6.66666667vw;
  }
  .party-cat .party-menu .party-menu-list {
    font-size: 3.2vw;
    margin: 0 0 6.66666667vw;
    padding: 2.66666667vw 0;
  }
  .party-cat .party-menu .party-menu-caution {
    font-size: 2.66666667vw;
  }
}
/*--------------------------------------------------------------------------------
 allyoucaneat 食べ放題
--------------------------------------------------------------------------------*/
.allyoucaneat-kv {
  width: 100%;
  margin: 0 0 30px;
  position: relative;
}
.allyoucaneat-kv .allyoucaneat-kv-inner {
  width: 100%;
}
.allyoucaneat-kv .allyoucaneat-kv-inner .allyoucaneat-kv-title {
  width: 100%;
  height: 51.66666667vw;
  background: url('../img/allyoucaneat/img_kv.png') top center no-repeat;
  background-size: auto 100%;
  margin: 0 0 1.66666667vw;
}
.allyoucaneat-kv .allyoucaneat-kv-inner .allyoucaneat-kv-txt {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .allyoucaneat-kv {
    margin: 14.66666667vw 0 6.66666667vw;
  }
  .allyoucaneat-kv .allyoucaneat-kv-inner .allyoucaneat-kv-title {
    height: 96.4vw;
    background: url('../img/allyoucaneat/img_kv_sp.png') top center no-repeat;
    background-size: auto 100%;
    margin: 0 0 2.66666667vw;
  }
  .allyoucaneat-kv .allyoucaneat-kv-inner .allyoucaneat-kv-txt {
    font-size: 3.73333333vw;
  }
}
.allyoucaneat-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 620px;
  margin: 0 auto 7.5vw;
}
.allyoucaneat-nav li {
  width: 285px;
  cursor: pointer;
}
.allyoucaneat-nav li a {
  display: block;
  width: 100%;
  height: 100%;
}
.allyoucaneat-nav li figure {
  width: 100%;
}
.allyoucaneat-nav li figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 10px;
}
.allyoucaneat-nav li figure figcaption {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .allyoucaneat-nav {
    display: none;
  }
}
.allyoucaneat-cat {
  margin: 0 0 290px;
}
.allyoucaneat-cat .allyoucaneat-cat-title {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 70px;
}
.allyoucaneat-cat .allyoucaneat-cat-title span {
  display: block;
  font-size: 20px;
  font-weight: normal;
  padding: 10px 0 0;
}
.allyoucaneat-cat .allyoucaneat-item {
  margin: 0 0 130px;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-caution {
  width: 810px;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.3;
  margin: 0 auto 50px;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-mainimg {
  width: 745px;
  margin: 0 auto 30px;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-mainimg img {
  width: 100%;
  height: auto;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-itemtitle {
  width: 500px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
  font-size: 45px;
  font-weight: bold;
  color: #C30D23;
  margin: 0 auto 10px;
  padding: 10px 0;
  background-color: #ffff00;
  letter-spacing: -0.3rem;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-plan {
  width: 500px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto 10px;
  padding: 10px 0;
  background-color: #ffff00;
  font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
  letter-spacing: -0.2rem;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-benefits {
  width: 500px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto 30px;
  padding: 10px 0;
  background-color: #ffff00;
  font-family: 'DSきりぎりす', 'DS-kirigirisu', sans-serif;
  letter-spacing: -0.3rem;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-price {
  width: 400px;
  margin: 0 auto 80px;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-price li {
  font-size: 27px;
  font-weight: bold;
  margin: 0 0 15px;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-price li .yen {
  font-size: 19px;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-price li .tax_price {
  font-size: 16px;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 235px;
  height: 50px;
  font-size: 26px;
  font-weight: bold;
  background-color: #ffff00;
  margin: 0 auto 40px;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 190px;
  height: 30px;
  font-size: 13px;
  font-weight: bold;
  border: 1px solid #231815;
  margin: 0 auto 60px;
  position: relative;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-pdf:after {
  display: block;
  content: '';
  width: 5px;
  height: 10px;
  background: url('../img/common/ico_right__b.svg') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 8px;
  right: 10px;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-menulist {
  width: 830px;
  margin: 0 auto;
  text-align: center;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-menulist li {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 20px;
  line-height: 1.2;
}
.allyoucaneat-cat .allyoucaneat-item .allyoucaneat-pdf-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .allyoucaneat-cat {
    width: 94.66666667vw;
    margin: 0 auto 20vw;
  }
  .allyoucaneat-cat .allyoucaneat-cat-title {
    font-size: 6.66666667vw;
    margin: 0 0 4vw;
  }
  .allyoucaneat-cat .allyoucaneat-cat-title span {
    font-size: 2.66666667vw;
    padding: 0.66666667vw 0 0;
  }
  .allyoucaneat-cat .allyoucaneat-item {
    margin: 0 0 20vw;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-caution {
    width: 100%;
    font-size: 2.4vw;
    margin: 0 auto 4vw;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-mainimg {
    width: 100%;
    margin: 0 auto 5.33333333vw;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-itemtitle {
    width: 66.66666667vw;
    height: 7.33333333vw;
    font-size: 6.26666667vw;
    margin: 0 auto 1.33333333vw;
    padding: 1.33333333vw 0;
    letter-spacing: -0.2rem;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-plan {
    width: 66.66666667vw;
    height: 7.33333333vw;
    font-size: 4.26666667vw;
    margin: 0 auto 1.33333333vw;
    padding: 1.33333333vw 0;
    letter-spacing: -0.1rem;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-benefits {
    width: 66.66666667vw;
    height: 7.33333333vw;
    font-size: 4.26666667vw;
    margin: 0 auto 3.33333333vw;
    padding: 1.33333333vw 0;
    letter-spacing: -0.1rem;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-price {
    width: 60vw;
    margin: 0 auto 3.33333333vw;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-price li {
    font-size: 3.73333333vw;
    margin: 0 0 2vw;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-price li .yen {
    font-size: 2.66666667vw;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-price li .tax_price {
    font-size: 2.4vw;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-menu {
    width: 51.33333333vw;
    height: 6.66666667vw;
    font-size: 3.73333333vw;
    margin: 0 auto 2.66666667vw;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-pdf {
    display: none;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-pdf:after {
    display: none;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-menulist {
    width: 100%;
    margin: 0 0 5.33333333vw;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-menulist li {
    font-size: 3.6vw;
    margin: 0 0 4vw;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-pdf-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40.66666667vw;
    height: 6.66666667vw;
    font-size: 2.8vw;
    font-weight: bold;
    border: 1px solid #231815;
    margin: 0 auto 4vw;
    position: relative;
  }
  .allyoucaneat-cat .allyoucaneat-item .allyoucaneat-pdf-sp:after {
    display: block;
    content: '';
    width: 1.33333333vw;
    height: 2.93333333vw;
    background: url('../img/common/ico_right__b.svg') no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 1.73333333vw;
    right: 2vw;
  }
}
/*--------------------------------------------------------------------------------
 shoplist 店舗のご案内
--------------------------------------------------------------------------------*/
.shoplist-inner {
  width: 990px;
  margin: 0 auto 120px;
  padding: 155px 0 0;
}
.shoplist-inner .shoplist-lead {
  text-align: center;
  margin: 0 0 50px;
  line-height: 1.4;
}
.shoplist-inner .shoplist-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 60px;
}
.shoplist-inner .shoplist-nav li {
  margin: 0 50px 0 0;
}
.shoplist-inner .shoplist-nav li:last-of-type {
  margin: 0;
}
.shoplist-inner .shoplist-nav li a {
  font-size: 18px;
}
.shoplist-inner .shoplist-pref {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  padding: 15px 0;
  margin: 0 0 30px;
}
.shoplist-inner .shoplist-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 50px;
}
.shoplist-inner .shoplist-lists .shopinfo {
  width: 480px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 60px;
}
.shoplist-inner .shoplist-lists .shopinfo:nth-of-type(odd) {
  margin: 0 30px 60px 0;
}
.shoplist-inner .shoplist-lists .shopinfo .shop-name {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px;
  padding: 0 0 0 23px;
  position: relative;
}
.shoplist-inner .shoplist-lists .shopinfo .shop-name:before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background: url('../img/shoplist/ico_map.svg') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.shoplist-inner .shoplist-lists .shopinfo .nearest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin: 0 0 20px;
  padding: 0 0 0 20px;
}
.shoplist-inner .shoplist-lists .shopinfo .nearest span {
  display: inline-block;
  font-size: 12px;
  background-color: #fbcc5c;
  margin: 0 10px 0 0;
  padding: 5px;
  border-radius: 5px;
}
.shoplist-inner .shoplist-lists .shopinfo .address {
  margin: 0 0 20px;
  padding: 0 0 0 20px;
  line-height: 1.2;
}
.shoplist-inner .shoplist-lists .shopinfo .tel {
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  padding: 15px 0 15px 40px;
  position: relative;
}
.shoplist-inner .shoplist-lists .shopinfo .tel:before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background: url('../img/shoplist/ico_tel.svg') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 13px;
  left: 15px;
}
.shoplist-inner .shoplist-lists .shopinfo .tel a {
  letter-spacing: 0.2rem;
}
.shoplist-inner .shoplist-lists .shopinfo .link {
  border-bottom: 1px solid #231815;
  padding: 15px 0 15px 40px;
  position: relative;
}
.shoplist-inner .shoplist-lists .shopinfo .link:before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background: url('../img/shoplist/ico_reserve.svg') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 13px;
  left: 15px;
}
.shoplist-inner .shoplist-lists .shopinfo .link a {
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .shoplist-inner {
    width: 94.66666667vw;
    margin: 14.66666667vw auto 16vw;
    padding: 16vw 0 0;
  }
  .shoplist-inner .shoplist-lead {
    margin: 0 0 6.66666667vw;
  }
  .shoplist-inner .shoplist-nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 8vw;
  }
  .shoplist-inner .shoplist-nav li {
    margin: 0 10.66666667vw 6.66666667vw 0;
  }
  .shoplist-inner .shoplist-nav li a {
    font-size: 3.73333333vw;
  }
  .shoplist-inner .shoplist-pref {
    font-size: 6.66666667vw;
    padding: 2.66666667vw 0;
    margin: 0 0 6.66666667vw;
  }
  .shoplist-inner .shoplist-lists {
    display: block;
    margin: 0 0 18.66666667vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo {
    width: 100%;
    margin: 0 0 10.66666667vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo:nth-of-type(odd) {
    margin: 0 0 6.66666667vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo .shop-name {
    font-size: 4vw;
    margin: 0 0 10px;
    padding: 0 0 0 4vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo .shop-name:before {
    width: 4vw;
    height: 4vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo .nearest {
    font-size: 3.46666667vw;
    margin: 0 0 2.66666667vw;
    padding: 0 0 0 4vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo .nearest span {
    font-size: 2.66666667vw;
    margin: 0 2.66666667vw 0 0;
    padding: 1.33333333vw;
    border-radius: 1.33333333vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo .address {
    margin: 0 0 4vw;
    padding: 0 0 0 4vw;
    font-size: 3.46666667vw;
    line-height: 1.5;
  }
  .shoplist-inner .shoplist-lists .shopinfo .tel {
    padding: 2vw 0 2vw 8vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo .tel:before {
    width: 4vw;
    height: 4vw;
    top: 2.4vw;
    left: 2.66666667vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo .tel a {
    font-size: 3.46666667vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo .link {
    padding: 2vw 0 2vw 8vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo .link:before {
    width: 4vw;
    height: 4vw;
    top: 2.4vw;
    left: 2.66666667vw;
  }
  .shoplist-inner .shoplist-lists .shopinfo .link a {
    font-size: 3.46666667vw;
  }
}
/*--------------------------------------------------------------------------------
 shopdetail 店舗詳細
--------------------------------------------------------------------------------*/
.shopdetail-inner {
  width: 990px;
  margin: 0 auto 120px;
  padding: 100px 0 0;
}
.shopdetail-inner .shopdetail-lead {
  text-align: center;
  margin: 0 0 50px;
  line-height: 1.4;
}
.shopdetail-inner .shopdetail-title {
  font-size: 30px;
  color: #4d230c;
  padding: 0 0 10px;
  margin: 0 0 30px;
  border-bottom: 1px solid #4d230c;
}
.shopdetail-inner .shopdetail-tel {
  margin: 0 0 30px;
  padding: 0 0 0 40px;
  position: relative;
}
.shopdetail-inner .shopdetail-tel:before {
  display: block;
  content: '';
  width: 25px;
  height: 25px;
  background: url('../img/shoplist/ico_tel.svg') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 3px;
  left: 0;
}
.shopdetail-inner .shopdetail-tel a {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.shopdetail-inner .shopdetail-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #000;
  margin: 0 0 50px;
}
.shopdetail-inner .shopdetail-content dt {
  width: 300px;
  background-color: #fbcc5c;
  padding: 15px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.shopdetail-inner .shopdetail-content dd {
  width: 690px;
  padding: 15px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
}
.shopdetail-inner .shopdetail-content dd .address {
  margin: 0 0 20px;
}
.shopdetail-inner .shopdetail-content dd .map iframe {
  width: 100%;
  height: 400px;
}
.shopdetail-inner .shopdetail-content dd .service_link {
  padding: 0 0 0 20px;
  color: #CC3300;
  text-decoration: underline;
  position: relative;
}
.shopdetail-inner .shopdetail-content dd .service_link:before {
  display: block;
  content: '';
  width: 15px;
  height: 15px;
  background: url('../img/shoplist/ico_cursor__r.svg') no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 2px;
  left: 0;
}
.shopdetail-inner .btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #231815;
  width: 200px;
  height: 30px;
  font-size: 12px;
  letter-spacing: 0.2rem;
  padding: 0 0 0 20px;
  margin: 0 auto;
  position: relative;
}
.shopdetail-inner .btn_list:before {
  display: block;
  content: '';
  width: 7px;
  height: 15px;
  background: url('../img/common/ico_left__b.svg') no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 7px;
  left: 14px;
}
@media screen and (max-width: 768px) {
  .shopdetail-inner {
    width: 94.66666667vw;
    margin: 14.66666667vw auto 16vw;
    padding: 16vw 0 0;
  }
  .shopdetail-inner .shopdetail-lead {
    margin: 0 0 6.66666667vw;
  }
  .shopdetail-inner .shopdetail-title {
    font-size: 6.66666667vw;
    padding: 0 0 2.66666667vw;
    margin: 0 0 4vw;
  }
  .shopdetail-inner .shopdetail-tel {
    margin: 0 0 4vw;
    padding: 0 0 0 8vw;
  }
  .shopdetail-inner .shopdetail-tel:before {
    width: 5.33333333vw;
    height: 5.33333333vw;
    top: 0;
    left: 0;
  }
  .shopdetail-inner .shopdetail-tel a {
    font-size: 5.33333333vw;
  }
  .shopdetail-inner .shopdetail-content {
    border: none;
    margin: 0 0 8vw;
    border: 1px solid #000;
    border-bottom: none;
  }
  .shopdetail-inner .shopdetail-content dt {
    width: 100%;
    padding: 2.66666667vw;
    border: none;
    border-bottom: 1px solid #000;
  }
  .shopdetail-inner .shopdetail-content dd {
    width: 100%;
    padding: 2.66666667vw;
    border: none;
    border-bottom: 1px solid #000;
  }
  .shopdetail-inner .shopdetail-content dd .address {
    margin: 0 0 4vw;
  }
  .shopdetail-inner .shopdetail-content dd .map iframe {
    height: 80vw;
  }
  .shopdetail-inner .btn_list {
    width: 34.66666667vw;
    height: 5.33333333vw;
    font-size: 2.13333333vw;
    padding: 0 0 0 3.33333333vw;
  }
  .shopdetail-inner .btn_list:before {
    width: 1.2vw;
    height: 2.66666667vw;
    top: 1.06666667vw;
    left: 2.53333333vw;
  }
}
/*--------------------------------------------------------------------------------
 newslist お知らせ一覧
--------------------------------------------------------------------------------*/
.newslist-kv {
  width: 100%;
  margin: 0 0 90px;
  position: relative;
}
.newslist-kv .newslist-kv-inner {
  width: 100%;
}
.newslist-kv .newslist-kv-inner .newslist-kv-title {
  width: 100%;
  height: 51.66666667vw;
  background: url('../img/newslist/img_kv.png') top center no-repeat;
  background-size: auto 100%;
  margin: 0 0 1.66666667vw;
}
@media screen and (max-width: 768px) {
  .newslist-kv {
    margin: 14.66666667vw 0 17.33333333vw;
  }
  .newslist-kv .newslist-kv-inner {
    width: 100%;
  }
  .newslist-kv .newslist-kv-inner .newslist-kv-title {
    height: 96.66666667vw;
    background: url('../img/newslist/img_kv_sp.png') top center no-repeat;
    background-size: auto 100%;
    margin: 0 0 2.66666667vw;
  }
}
.newslist-inner {
  margin: 0 0 40px;
}
.newslist-inner .newslist-title {
  font-size: 50px;
  text-align: center;
  margin: 0 0 100px;
}
.newslist-inner .newslist-title span {
  display: block;
  font-size: 20px;
  font-weight: normal;
  margin: 10px 0 0;
}
.newslist-inner .newslist-inner-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 900px;
  margin: 0 auto 80px;
}
.newslist-inner .newslist-inner-lists .newslist-inner-item {
  width: 400px;
  margin: 0 0 60px;
}
.newslist-inner .newslist-inner-lists .newslist-inner-item:nth-of-type(odd) {
  margin: 0 100px 60px 0;
}
.newslist-inner .newslist-inner-lists .newslist-inner-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.newslist-inner .newslist-inner-lists .newslist-inner-item a figure {
  width: 100%;
  margin: 0 0 15px;
}
.newslist-inner .newslist-inner-lists .newslist-inner-item a figure img {
  width: 100%;
  height: auto;
}
.newslist-inner .newslist-inner-lists .newslist-inner-item a .newslist-inner-item-content .date {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 15px;
}
.newslist-inner .newslist-inner-lists .newslist-inner-item a .newslist-inner-item-content .title {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
.newslist-inner .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newslist-inner .wp-pagenavi a,
.newslist-inner .wp-pagenavi span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  font-size: 12px;
  background-color: #231815;
  color: #FFF;
  margin: 0 15px 0 0;
}
.newslist-inner .wp-pagenavi .current {
  color: #231815;
  background-color: #faed00;
}
@media screen and (max-width: 768px) {
  .newslist-inner {
    margin: 0 0 9.33333333vw;
  }
  .newslist-inner .newslist-title {
    font-size: 6.66666667vw;
    margin: 0 0 9.33333333vw;
  }
  .newslist-inner .newslist-title span {
    font-size: 2.66666667vw;
    margin: 1.33333333vw 0 0;
  }
  .newslist-inner .newslist-inner-lists {
    display: block;
    width: 84vw;
    margin: 0 auto 17.33333333vw;
  }
  .newslist-inner .newslist-inner-lists .newslist-inner-item {
    width: 100%;
    margin: 0 0 10.66666667vw;
  }
  .newslist-inner .newslist-inner-lists .newslist-inner-item:nth-of-type(odd) {
    margin: 0 0 10.66666667vw;
  }
  .newslist-inner .newslist-inner-lists .newslist-inner-item a figure {
    margin: 0 0 4vw;
  }
  .newslist-inner .newslist-inner-lists .newslist-inner-item a .newslist-inner-item-content .date {
    font-size: 3.73333333vw;
    margin: 0 0 2.66666667vw;
  }
  .newslist-inner .newslist-inner-lists .newslist-inner-item a .newslist-inner-item-content .title {
    font-size: 4.53333333vw;
  }
  .newslist-inner .wp-pagenavi a,
  .newslist-inner .wp-pagenavi span {
    width: 8vw;
    height: 8vw;
    font-size: 3.2vw;
    margin: 0 2vw 0 0;
  }
}
/*--------------------------------------------------------------------------------
 newsdetail お知らせ詳細
--------------------------------------------------------------------------------*/
.newsdetail-kv {
  width: 100%;
  margin: 0 0 90px;
  position: relative;
}
.newsdetail-kv .newsdetail-kv-inner {
  width: 100%;
}
.newsdetail-kv .newsdetail-kv-inner .newsdetail-kv-title {
  width: 100%;
  height: 51.66666667vw;
  background: url('../img/newsdetail/img_kv.png') top center no-repeat;
  background-size: auto 100%;
  margin: 0 0 1.66666667vw;
}
@media screen and (max-width: 768px) {
  .newsdetail-kv {
    width: 100%;
    margin: 14.66666667vw 0 17.33333333vw;
  }
  .newsdetail-kv .newsdetail-kv-inner .newsdetail-kv-title {
    height: 96.66666667vw;
    background: url('../img/newsdetail/img_kv_sp.png') top center no-repeat;
    background-size: auto 100%;
    margin: 0 0 2.66666667vw;
  }
}
.newsdetail-inner {
  width: 1000px;
  margin: 0 auto 70px;
}
.newsdetail-inner .newsdetail-title {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 60px;
}
.newsdetail-inner .newsdetail-title span {
  font-size: 20px;
  font-weight: normal;
  margin: 10px 0 0;
  display: block;
}
.newsdetail-inner .date {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
}
.newsdetail-inner .title {
  font-size: 30px;
  font-weight: bold;
  margin: 0 0 75px;
}
.newsdetail-inner .contents {
  margin: 0 0 65px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
.newsdetail-inner .contents .wp-caption {
  max-width: 100%;
}
.newsdetail-inner .contents strong {
  font-weight: bold;
}
.newsdetail-inner .contents img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px auto 20px;
}
.newsdetail-inner .contents a {
  color: #001F5C;
  text-decoration: underline;
  word-break: break-all;
}
.newsdetail-inner .contents ul {
  list-style-type: disc;
  list-style-position: inside;
}
.newsdetail-inner .contents ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.newsdetail-inner .contents blockquote {
  padding: 0 0 0 20px;
  border-left: 5px solid #000;
}
.newsdetail-inner .contents h1 {
  font-size: 30px;
  font-weight: bold;
}
.newsdetail-inner .contents h2 {
  font-size: 26px;
  font-weight: bold;
}
.newsdetail-inner .contents h3 {
  font-size: 22px;
  font-weight: bold;
}
.newsdetail-inner .contents h4 {
  font-size: 18px;
  font-weight: bold;
}
.newsdetail-inner .contents h5 {
  font-size: 16px;
  font-weight: bold;
}
.newsdetail-inner .contents h6 {
  font-size: 14px;
  font-weight: bold;
}
.newsdetail-inner .contents .aligncenter {
  margin: 0 auto;
}
.newsdetail-inner .contents .alignright {
  margin: 0 0 0 auto;
}
.newsdetail-inner .contents .alignleft {
  margin: 0 auto 0 0;
}
.newsdetail-inner .contents .wp-caption-text {
  font-size: 14px;
  color: #666;
  margin: -10px 0 0 0;
}
.newsdetail-inner .contents table {
  border-collapse: separate !important;
  border-spacing: 10px !important;
}
.newsdetail-inner .contents table tr {
  height: auto !important;
}
.newsdetail-inner .contents table tr th {
  vertical-align: top;
}
.newsdetail-inner .contents table tr td {
  vertical-align: top;
  color: #333;
  line-height: 1.3;
}
.newsdetail-inner .contents table tr td div {
  width: auto !important;
}
.newsdetail-inner .contents em {
  font-style: italic;
}
.newsdetail-inner .newsdetail-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 192px;
  height: 32px;
  font-size: 13px;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  border: 1px solid #231815;
  padding: 0 0 0 42px;
  position: relative;
}
.newsdetail-inner .newsdetail-link:after {
  display: block;
  content: '';
  width: 7px;
  height: 14px;
  background: url('../img/common/ico_right__b.svg') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 8px;
  right: 16px;
}
@media screen and (max-width: 768px) {
  .newsdetail-inner {
    width: 84vw;
    margin: 0 auto 70px;
  }
  .newsdetail-inner .newsdetail-title {
    font-size: 6.66666667vw;
    margin: 0 0 9.33333333vw;
  }
  .newsdetail-inner .newsdetail-title span {
    font-size: 2.66666667vw;
    margin: 1.33333333vw 0 0;
  }
  .newsdetail-inner .date {
    font-size: 3.73333333vw;
    margin: 0 0 2.66666667vw;
  }
  .newsdetail-inner .title {
    font-size: 4.53333333vw;
    margin: 0 0 6.66666667vw;
    line-height: 1.2;
  }
  .newsdetail-inner .contents {
    margin: 0 0 6.66666667vw;
    font-size: 3.73333333vw;
  }
  .newsdetail-inner .contents img {
    margin: 2.66666667vw auto 5.33333333vw;
  }
  .newsdetail-inner .contents blockquote {
    padding: 0 0 0 5.33333333vw;
  }
  .newsdetail-inner .contents h1 {
    font-size: 4.8vw;
  }
  .newsdetail-inner .contents h2 {
    font-size: 4vw;
  }
  .newsdetail-inner .contents h3 {
    font-size: 3.73333333vw;
  }
  .newsdetail-inner .contents h4 {
    font-size: 3.46666667vw;
  }
  .newsdetail-inner .contents h5 {
    font-size: 3.2vw;
  }
  .newsdetail-inner .contents h6 {
    font-size: 2.93333333vw;
  }
  .newsdetail-inner .contents .wp-caption-text {
    font-size: 2.66666667vw;
    margin: calc(-2.66666667vw) 0 0 0;
  }
  .newsdetail-inner .contents table {
    border-spacing: 2.66666667vw !important;
  }
  .newsdetail-inner .newsdetail-link {
    width: 50.66666667vw;
    height: 8vw;
    font-size: 3.46666667vw;
    padding: 0 0 0 11.33333333vw;
  }
  .newsdetail-inner .newsdetail-link:after {
    width: 1.73333333vw;
    height: 3.46666667vw;
    top: 2vw;
    right: 4.13333333vw;
  }
}
/*--------------------------------------------------------------------------------
 footer
--------------------------------------------------------------------------------*/
.footer {
  width: 100%;
  height: 31.25vw;
  background: url('../img/common/bg_footer.png') no-repeat;
  background-size: 100% auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4.16666667vw 0 0;
}
.footer .footer-logo {
  width: 19.16666667vw;
  height: 8.66666667vw;
  background: url('../img/common/bg_logo_footer.svg') no-repeat;
  background-size: 100% auto;
  margin: 0 auto 3.75vw;
}
.footer .footer-links {
  width: 45.83333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 3.33333333vw;
}
.footer .footer-links li a {
  font-size: 1.66666667vw;
  color: #FFF;
}
.footer .footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 5vw;
}
.footer .footer-sns .fb {
  width: 2.5vw;
  height: 2.5vw;
  background: url('../img/common/ico_fb.svg') no-repeat;
  background-size: 100% auto;
  margin: 0 2.5vw 0 0;
}
.footer .footer-sns .insta {
  width: 2.5vw;
  height: 2.5vw;
  background: url('../img/common/ico_insta.svg') no-repeat;
  background-size: 100% auto;
  margin: 0 2.5vw 0 0;
}
.footer .footer-sns .tw {
  width: 2.5vw;
  height: 2.5vw;
  background: url('../img/common/ico_tw.svg') no-repeat;
  background-size: 100% auto;
}
.footer .footer-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 2.91666667vw;
}
.footer .footer-info .copyright {
  font-size: 1.08333333vw;
}
.footer .footer-info .oc {
  font-size: 1.33333333vw;
  position: relative;
}
.footer .footer-info .oc:after {
  display: block;
  content: '';
  width: 11.41666667vw;
  height: 1.25vw;
  background: url('../img/common/logo_cwg.svg') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: calc(-2vw);
  left: 5vw;
}
.footer .sp-footer-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer {
    height: 74.66666667vw;
    background: url('../img/common/bg_footer_sp.png') no-repeat;
    background-size: 100% auto;
    padding: 7.33333333vw 0 0;
  }
  .footer .footer-logo {
    width: 27.33333333vw;
    height: 12.4vw;
    margin: 0 auto 5.33333333vw;
  }
  .footer .footer-links {
    width: 57.33333333vw;
    display: block;
    margin: 0 auto 5.33333333vw;
  }
  .footer .footer-links li {
    margin: 0 0 4vw;
  }
  .footer .footer-links li:last-of-type {
    margin: 0;
  }
  .footer .footer-links li a {
    font-size: 3.6vw;
    white-space: nowrap;
  }
  .footer .footer-sns {
    display: none;
  }
  .footer .footer-sns .fb {
    margin: 0 4vw 0 0;
  }
  .footer .footer-info {
    display: block;
    text-align: center;
  }
  .footer .footer-info .copyright {
    font-size: 2.4vw;
    margin: 0 0 5.33333333vw;
  }
  .footer .footer-info .oc {
    font-size: 2.93333333vw;
  }
  .footer .footer-info .oc:after {
    width: 24.4vw;
    height: 2.66666667vw;
    top: calc(-3.33333333vw);
    left: 50%;
    margin: 0 0 0 calc(-12.26666667vw);
  }
  .footer .sp-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 11.33333333vw;
    background-color: #FFF;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 4000;
  }
  .footer .sp-footer-nav .sp-footer-nav-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 20.66666667vw;
  }
  .footer .sp-footer-nav .sp-footer-nav-sns li {
    width: 5.06666667vw;
    height: 5.06666667vw;
  }
  .footer .sp-footer-nav .sp-footer-nav-sns li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .footer .sp-footer-nav .sp-footer-nav-sns li a.sp-footer-nav-fb {
    background: url('../img/common/ico_fb.svg') no-repeat;
    background-size: 100% 100%;
  }
  .footer .sp-footer-nav .sp-footer-nav-sns li a.sp-footer-nav-insta {
    background: url('../img/common/ico_insta.svg') no-repeat;
    background-size: 100% 100%;
  }
  .footer .sp-footer-nav .sp-footer-nav-sns li a.sp-footer-nav-tw {
    background: url('../img/common/ico_tw.svg') no-repeat;
    background-size: 100% 100%;
  }
  .footer .sp-footer-nav .sp-footer-nav-reserve {
    width: 30.4vw;
    height: 6.66666667vw;
    background: url('../img/common/btn_reserve.png') no-repeat;
    background-size: 100% auto;
    margin: 0 24.66666667vw 0 10.66666667vw;
  }
  .footer .sp-footer-nav .sp-footer-nav-noreserve {
    width: 30.4vw;
    height: 6.66666667vw;
    margin: 0 24.66666667vw 0 10.66666667vw;
  }
  .footer .sp-footer-nav .sp-footer-nav-top {
    width: 5.33333333vw;
    height: 5.33333333vw;
    background: url('../img/common/btn_totop_sp.svg') no-repeat;
    background-size: 100% auto;
  }
}
