@charset "UTF-8";
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.headerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 20px;
  position: absolute;
  content: "";
  top: 20px;
  z-index: 10;
}

.headerNav li {
  padding-right: 20px;
  position: relative;
}

.headerNav li::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 10px;
  background: #000;
  width: 1px;
  height: 20px;
}

.headerNav li:last-child::after {
  content: none;
}

.fadeIn-left {
  opacity: 0;
  -webkit-animation: fadeIn-left 1.5s ease-out 1.5s forwards;
          animation: fadeIn-left 1.5s ease-out 1.5s forwards;
}

.head_reserveBtn {
  position: fixed;
  z-index: 999;
  top: 10px;
  right: 0;
  background: #a11f24;
  width: 250px;
  padding: 15px 20px 15px 25px;
  border-radius: 10px 0 0 10px;
}

.reserveInfo {
  text-align: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.reserveInfo span {
  font-size: 0.8rem;
  padding-bottom: 0.8em;
}

.reserveInfo .reserveNumber {
  font-size: 1.2rem;
}

@media screen and (max-width: 960px) {
  .head_reserveBtn {
    width: 25%;
  }
  .reserveInfo {
    width: 100%;
  }
}

@media screen and (max-width: 790px) {
  .head_reserveBtn {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  header {
    display: none;
  }
}

.re_reserveBtn {
  display: none;
}

@media screen and (max-width: 520px) {
  .re_reserveBtn {
    display: block;
    z-index: 999;
    position: fixed;
    bottom: 0px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    background: #661417;
    padding: 20px 0;
    color: #EEE6DE;
    letter-spacing: 5px;
  }
}

@-webkit-keyframes fadeIn-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeIn-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeIn-right {
  opacity: 0;
  -webkit-animation: fadeIn-right 1.5s ease-out 1.5s forwards;
          animation: fadeIn-right 1.5s ease-out 1.5s forwards;
}

@-webkit-keyframes fadeIn-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeIn-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

#g_nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g_nav.panelactive {
  right: 0;
}

/*ナビゲーション*/
#g_nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g_nav li {
  list-style: none;
  text-align: center;
}

#g_nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.sns_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.menu_btn {
  background: #A11F24;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  color: #fff;
  position: relative;
  position: fixed;
  top: 100px;
  right: 10px;
  z-index: 9999;
}

.menu_btn:hover {
  opacity: .8;
  cursor: pointer;
}

.menu_btn,
.menu_btn span,
.menu_btn span:nth-of-type(2)::before,
.menu_btn span:nth-of-type(2)::after {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .8s;
  transition: all .8s;
}

.menu_btn span {
  position: absolute;
  content: "";
}

.menu_btn span:nth-of-type(1) {
  top: 15px;
  right: 15px;
  font-size: .8rem;
}

.menu_btn span:nth-of-type(2) {
  top: 35px;
  right: 10px;
  height: 2px;
  width: 50px;
  background: #fff;
}

.menu_btn span:nth-of-type(2)::before {
  position: absolute;
  content: "";
  border: 3px solid #fff;
  border-radius: 50px;
  height: 10px;
  width: 10px;
  bottom: 1px;
  left: 0;
}

.menu_btn span:nth-of-type(2)::after {
  position: absolute;
  content: "";
  border: 3px solid #fff;
  border-radius: 50px;
  height: 10px;
  width: 10px;
  top: 1px;
  left: 5px;
}

.menu_btn span:nth-of-type(3) {
  bottom: 25px;
  right: 10px;
  height: 2px;
  width: 25px;
  background: #fff;
}

/* ====================
  .active
  ====================*/
.menu_btn.active {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.menu_btn.active span:nth-of-type(1) {
  opacity: 0;
}

.menu_btn.active span:nth-of-type(2) {
  -webkit-transform: translateY(-3px) translateX(3px) rotate(45deg);
          transform: translateY(-3px) translateX(3px) rotate(45deg);
}

.menu_btn.active span:nth-of-type(2)::before,
.menu_btn.active span:nth-of-type(2)::after {
  left: 5px;
}

.menu_btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
  width: 50px;
}

@media screen and (max-width: 960px) {
  .menu_btn {
    top: 100px;
    right: 10px;
  }
}

@media screen and (max-width: 790px) {
  .menu_btn {
    top: 0;
    right: 0;
  }
}

@media screen and (max-width: 520px) {
  .menu_btn {
    top: 0;
    right: 0;
  }
}

#pickup {
  background: #EEE6DE;
}

.pickup_subTitle {
  width: 100%;
}

/*================================
スライダー
===================================*/
.slider {
  width: 94%;
  margin: 0 auto;
}

.slider li img {
  width: 60vw;
  /*画像を60vwにしてレスポンシブ化*/
  height: 100%;
}

.slider li p {
  padding-top: 1.0em;
  text-align: center;
}

.slick-slide {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  /*左右の画像のサイズを80%に*/
  -webkit-transition: all .5s;
  transition: all .5s;
  /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;
  /*透過50%*/
}

.slick-slide.slick-center {
  -webkit-transform: scale(1);
          transform: scale(1);
  /*中央の画像のサイズだけ等倍*/
  opacity: 1;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  top: 42%;
  cursor: pointer;
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu_title {
  text-align: center;
  font-size: 1.2rem;
  padding: 30px 0;
  position: relative;
}

.menu_title::before, .menu_title::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 1px;
  background: #a11f24;
}

.menu_title::before {
  top: 50%;
  right: 5%;
}

.menu_title::after {
  top: 50%;
  left: 5%;
}

.menu_items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  margin: 0 5%;
}

.menu_subTitle {
  position: relative;
  padding-left: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu_subTitle::before {
  content: "";
  position: absolute;
  background: #a11f24;
  width: 10px;
  height: 10px;
  left: 0;
  top: 20%;
}

.menu_item {
  margin: 1.5rem 0;
}

.menu_item span {
  display: block;
  text-align: right;
  margin-right: 20px;
  font-size: 0.8rem;
}

.menu_detail {
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 15px 5px;
  padding: 3px 0;
  font-size: 0.8rem;
}

.menu_detail::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  border-bottom: dotted 1px #000;
  width: 100%;
  z-index: 1;
}

.menu_detail dt {
  margin: 0;
  padding: 0 5px 0 0;
  background: #fff;
  text-align: left;
  z-index: 2;
}

.menu_detail dd {
  margin: 0;
  padding: 0 5px 0 5px;
  background: #fff;
  width: 25%;
  text-align: left;
  z-index: 2;
}

.drink_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media screen and (max-width: 960px) {
  .menu_items {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    margin: 0 5%;
  }
}

@media screen and (max-width: 520px) {
  .menu_items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin: 0 5%;
  }
}

.access {
  background: #EEE6DE;
}

.access_left {
  width: 40%;
}

.access_map {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.access_right {
  width: 40%;
  margin: 20px;
}

.access_title {
  border-bottom: #a11f24 1px solid;
  font-size: 1.5rem;
  padding-bottom: 20px;
}

.access_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.8em 0;
  font-size: 0.8rem;
}

.access_item dt {
  width: 30%;
}

.access_item dd {
  width: 70%;
}

@media screen and (max-width: 520px) {
  .ly_media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .access_left {
    width: 100%;
  }
  .access_right {
    width: 90%;
  }
}

#footer {
  position: absolute;
  content: "";
  bottom: -120px;
  width: 100%;
  height: 120px;
  z-index: 888;
  background: #a11f24;
}

.footer {
  text-align: center;
}

.footer .footerLogo {
  height: 80px;
  width: auto;
  padding-top: 10px;
}

.footer p {
  font-size: 0.8rem;
  display: block;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  color: #fff;
}

@media screen and (max-width: 520px) {
  #footer {
    height: 150px;
  }
}

#archive_contents .inner {
  padding-bottom: 120px;
  padding-top: 58px;
  margin-top: 50px;
}

.archive {
  width: 100%;
}

.archive_header {
  padding: 20px;
  border: #8d8d8d solid 1px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 5vh;
}

.archive_title {
  display: block;
}

.entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.entry-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 50px;
  margin-right: 30px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: calc(50% - 40px / 2);
}

.entry-item:hover {
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
}

.entry-item-img {
  text-align: center;
}

.entry-item-img .noimg {
  width: 70%;
}

.entry-item-body {
  padding: 10px;
}

.entry-item-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

.entry-item-tag {
  position: absolute;
  content: "";
  top: 10px;
  left: 10px;
  background: #a11f24;
  color: #fff;
  padding: 10px;
}

.entry-item-published {
  color: #808080;
  font-size: 12px;
  margin-top: 4px;
}

.entry-item-title {
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.42;
  margin-bottom: 14px;
}

.entries .m_horizontal {
  margin-bottom: 62px;
}

#article .inner,
#news_list .inner {
  padding-bottom: 120px;
  padding-top: 58px;
}

.article_header {
  height: 30vh;
  width: 100%;
}

.article_title {
  text-align: center;
  line-height: 30vh;
  font-size: 2.5rem;
}

.m_one #primary {
  margin-bottom: 0;
  width: 100%;
}

.entry {
  background: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  padding: 40px 40px 12px;
}

.entry_tag {
  margin-bottom: 20px;
  text-align: center;
  line-height: 30px;
  text-align: left;
  color: #a11f24;
}

.entry_title {
  border-bottom: double 4px #a11f24;
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
}

.entry_meta {
  text-align: right;
  padding-top: 0.5rem;
}

.entry_body {
  padding-top: 50px;
  line-height: 1.7;
}

.entry_body h2 {
  font-size: 2.0rem;
  font-weight: bold;
  color: #fff;
  background-color: #a11f24;
  padding: 6px 12px;
}

.entry_body h3 {
  font-size: 1.8rem;
  font-weight: bold;
  border-left: solid 5px #a11f24;
  padding-left: 8px;
}

.entry_body h4 {
  font-size: 1.7rem;
  font-weight: bold;
  border-bottom: solid 3px #a11f24;
  padding-bottom: 4px;
}

.entry_body h5 {
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: dotted 3px #a11f24;
  padding-bottom: 4px;
}

.entry_body h6 {
  font-size: 1.5rem;
}

.entry_body figure {
  text-align: center;
}

.entry_body img {
  width: 70%;
  height: auto;
}

.postLinks {
  width: 60%;
  margin: 30px auto 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body {
  margin: 0;
  font-family: serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

.wrapper {
  min-height: 100vh;
  position: relative;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}

@media screen and (max-width: 960px) {
  .inner {
    width: 90%;
    padding: 0;
  }
}

.fadeinTop {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

section {
  padding: 20px 0 40px 0;
}

.ly_media {
  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;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .ly_media {
    width: 90%;
  }
}

@media screen and (max-width: 520px) {
  .ly_media {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sectionTitle {
  margin: 40px 0 40px 0;
  text-align: left;
  font-size: 2.0rem;
}

.sectionTitle img {
  width: 200px;
}

.about_title {
  width: 90%;
}

.pickup_subTitle {
  width: 50vw;
  padding-bottom: 1em;
}

@media screen and (max-width: 520px) {
  .sectionTitle {
    text-align: center;
    font-style: 1.5rem;
  }
  .pickup_subTitle {
    width: 100%;
    padding-bottom: 1em;
  }
}

.breadcrumb {
  color: #8d8d8d;
  font-size: 12px;
  margin-bottom: 14px;
}

.breadcrumb .home::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 10px;
}

.breadcrumb a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.breadcrumb a:hover {
  opacity: 0.6;
}

.breadcrumb i {
  margin-left: 15px;
  margin-right: 15px;
}

.pagenation {
  margin-top: 12px;
  text-align: center;
}

.pagenation a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #a11f24;
  padding: 0 10px;
}

.pagenation a:hover {
  opacity: 0.6;
}

.pagenation a.next,
.pagenation a.prev {
  font-size: 1.5rem;
  padding: 0 10px;
}

.pagenation a.next:hover,
.pagenation a.prev:hover {
  opacity: 0.6;
}

.top {
  background-image: url("../image/top_img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 700px;
}

.top::after {
  content: '';
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-animation: fadeIn-bg 1.5s ease-out 1.0s forwards;
          animation: fadeIn-bg 1.5s ease-out 1.0s forwards;
}

.topLogo {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 9;
  width: auto;
  opacity: 0;
  -webkit-animation: fadeIn 1.5s ease-out 3.0s forwards;
          animation: fadeIn 1.5s ease-out 3.0s forwards;
}

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

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

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 520px) {
  .top {
    background-image: url("../image/re_top_img.jpg");
    height: 500px;
  }
  .topLogo {
    width: 70vw;
  }
}

.about {
  line-height: 1.5;
}

.aboutMessage {
  width: 40%;
  white-space: nowrap;
}

.aboutMessage p {
  text-align: left;
  padding: 5em 2em 4em 2em;
  font-size: 0.8rem;
  width: 100%;
  letter-spacing: 0.2em;
}

.aboutItem {
  width: 50%;
}

@media screen and (max-width: 960px) {
  .aboutMessage {
    white-space: normal;
    width: 50%;
  }
  .aboutMessage p {
    padding: 2em 0em;
  }
}

@media screen and (max-width: 520px) {
  .aboutMessage {
    white-space: normal;
    width: 80%;
    padding-top: 10px;
  }
  .aboutItem {
    width: 80%;
  }
}

.item {
  margin-bottom: 3em;
}

.item a {
  color: #333;
}

.meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1em;
}

.tag {
  color: #a11f24;
  padding-left: 1em;
}

.entry_excerpt {
  padding-top: 1em;
}

#news,
#instagram {
  height: 600px;
  width: 80%;
  padding: 0 20px;
}

.insta_content {
  height: 450px;
  overflow: scroll;
}

.news_content {
  font-size: 0.8rem;
}

.news_item {
  padding-left: 10%;
}

.news_item a {
  color: #000;
}

.news_meta {
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news_tag {
  color: #a11f24;
  font-size: 0.8rem;
}

.news_date {
  padding-right: 1.2rem;
  font-size: 0.8rem;
}

.news_title {
  font-size: 1.0rem;
  padding-bottom: 30px;
}

.news_title a {
  line-height: 20px;
}

.news_list {
  margin: 0 auto;
  border-bottom: #a11f24 1px solid;
  width: 7em;
  padding-bottom: 0.4em;
  position: relative;
}

.news_list::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -0.5em;
  width: 1em;
  height: 1em;
  border: 0.1em solid #a11f24;
  border-left: 0;
  border-bottom: 0;
  border-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}

.news_list a {
  text-align: center;
  color: #a11f24;
}

@media screen and (max-width: 520px) {
  .media_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #news,
  #instagram {
    height: auto;
    width: 100%;
    padding: 0 20px;
  }
  #news {
    margin-bottom: 50px;
  }
}
