<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  line-height: 1em;
  font-size: 16px;
  box-sizing: border-box;
}
*:not(i, button) {
  font-family: "Kokoro";
}

table {
  border-collapse: separate;
  border-spacing: none;
}

body {
  background: url(../img/shopinfo/bg.png);
}
body header.header-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
body header.header-container.subpage {
  height: 72px;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
}
body header.header-container video,
body header.header-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body header.header-container .hamburger-menu {
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 1001;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 2px;
  transition: left 0.3s ease-in-out, transform 0.3s ease-in-out;
}
body header.header-container .hamburger-menu.close {
  transform: rotate(45deg);
  left: calc(50vw - 50px); /* メニューの右端に位置させる */
  color: #000;
  background: 0;
}
body header.header-container .menu-items {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  width: 50vw;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease-in-out;
  z-index: 1000;
}
body header.header-container .menu-items a {
  display: block;
  padding: 20px 10px;
}
body header.header-container .menu-items a:hover {
  background: rgba(0, 0, 0, 0.1);
}
body header.header-container .menu-items.open {
  left: 0;
}
body header.header-container .menu-items a {
  display: block;
  color: #333;
  text-decoration: none;
  margin: 10px 0;
}
body header.header-container .menu-next {
  z-index: 1003;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(calc(-100% - 23px)) rotate(90deg);
  transform-origin: bottom right; /* 回転の基点を設定 */
  text-align: center;
  white-space: nowrap; /* テキストが折り返されないようにする */
  border-top: #837a6c 1px solid;
}
body header.header-container .menu-next a {
  color: #837a6c;
  display: inline-block;
  text-decoration: none;
  padding-top: 7px;
  margin-right: 30px;
  font-family: "Baskervville SC", serif;
}
body header.header-container .menu-contact {
  z-index: 1004;
  position: absolute;
  left: 0;
  bottom: 0;
  writing-mode: vertical-rl; /* テキストを右から左への縦書きに設定 */
  text-orientation: upright; /* テキストの向きを縦に保つ */
}
body header.header-container .menu-contact p a {
  font-size: 18px;
  display: block;
  padding: 10px 15px;
  background: #fff;
  text-decoration: none;
  letter-spacing: 0.1em;
}
body header.header-container .menu-contact p a:hover {
  opacity: 0.8;
}
body div#main_contents.subpage {
  margin-top: 72px;
}
body div#main_contents .topfit_menu_wrap {
  width: 100%;
}
body div#main_contents .topfit_menu_wrap.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100; /* メニューが他のコンテンツの上に表示されるように */
}
body div#main_contents .topfit_menu_wrap ul.topfit_menu {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 10px;
}
@media screen and (min-width: 1601px) {
  body div#main_contents .topfit_menu_wrap ul.topfit_menu {
    gap: 10px 10px;
  }
}
@media screen and (max-width: 1600px) {
  body div#main_contents .topfit_menu_wrap ul.topfit_menu {
    gap: 10px 5px;
  }
}
body div#main_contents .topfit_menu_wrap ul.topfit_menu li {
  display: block;
  flex: 1;
}
@media screen and (min-width: 1601px) {
  body div#main_contents .topfit_menu_wrap ul.topfit_menu li a {
    padding: 10px 20px;
    border-radius: 27px;
  }
}
@media screen and (max-width: 1600px) {
  body div#main_contents .topfit_menu_wrap ul.topfit_menu li a {
    font-size: 10px;
    padding: 8px 5px;
    border-radius: 5px;
  }
}
body div#main_contents .topfit_menu_wrap ul.topfit_menu li a {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #000;
  color: #fff;
}
body div#main_contents .topfit_menu_wrap ul.topfit_menu li.active:after {
  display: block;
}
body div#main_contents .topfit_menu_wrap ul.topfit_menu li:after {
  margin: 5px auto 0;
  display: none;
  content: " ";
  width: 10px;
  height: 10px;
  background: #bf2b20;
  border-radius: 50%;
}
body div#main_contents .main_section h2 {
  padding: 50px 0;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
}
body div#main_contents .main_section h3 {
  padding: 30px 0;
  text-align: center;
  font-size: 24px;
  text-decoration: underline;
}
body div#main_contents .main_section &gt; .title {
  text-align: center;
  margin: 80px 0;
  font-size: 24px;
  font-weight: bold;
}
body div#main_contents .main_section .center_button {
  padding: 50px 0;
}
body div#main_contents .main_section .center_button p {
  display: flex;
  gap: 30px 0;
  justify-content: center;
}
body div#main_contents .main_section .center_button p a {
  display: inline-block;
  background: #0f13a7;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  padding: 20px 10vw;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}
body div#main_contents .main_section .center_button p a:hover {
  opacity: 0.8;
}
body div#main_contents .main_section.top ul {
  display: block;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}
body div#main_contents .main_section.top ul li {
  display: flex;
  justify-content: center;
}
body div#main_contents .main_section.top ul li:nth-of-type(2n) {
  flex-direction: row-reverse;
}
body div#main_contents .main_section.top ul li div.imagerect {
  width: 50%;
  position: relative;
}
body div#main_contents .main_section.top ul li div.imagerect p {
  width: 100%;
  padding-top: 100%;
  background: #f00;
}
body div#main_contents .main_section.top ul li div.imagerect p img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像が枠にフィットするようにする */
}
body div#main_contents .main_section.top ul li div.text {
  font-size: 16px;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5%;
}
body div#main_contents .main_section.top ul li div.text p {
  line-height: 1.5em;
}
body div#main_contents .main_section.menu {
  margin-top: 50px;
  position: relative;
}
body div#main_contents .main_section.menu p.title {
  text-align: center;
  line-height: 1.5em;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}
body div#main_contents .main_section.menu p.desc {
  text-align: center;
  line-height: 1.5em;
  font-size: 16px;
  margin-bottom: 30px;
}
body div#main_contents .main_section.gallery {
  position: relative;
  padding-top: 80px;
}
body div#main_contents .main_section.gallery p.title {
  text-align: center;
  line-height: 1.5em;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}
body div#main_contents .main_section.scroll_wrap {
  width: 100%;
  overflow: hidden; /* メニューがスクロールアウトする際に表示されなくする */
}
body div#main_contents .main_section.scroll_wrap .image_scroll {
  width: 200%;
  display: flex;
  white-space: nowrap; /* 子要素が改行されないようにする */
  animation: scroll 120s linear infinite;
}
body div#main_contents .main_section.scroll_wrap .image_scroll.footer {
  animation: scroll_foot 120s linear infinite;
}
@keyframes scroll {
  from {
    transform: translateX(-100%); /* すべての画像が最初に表示された状態 */
  }
  to {
    transform: translateX(0);
  }
}
@keyframes scroll_foot {
  from {
    transform: translateX(0); /* すべての画像が最初に表示された状態 */
  }
  to {
    transform: translateX(-100%);
  }
}
body div#main_contents .main_section.scroll_wrap .image_scroll p {
  flex-shrink: 0;
  width: 100px; /* メニューアイテムの幅を指定 */
  height: 150px;
  margin: 0 10px; /* メニューアイテム間のスペース */
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
body div#main_contents .main_section.scroll_wrap .image_scroll p a {
  width: 100%; /* 画像が親要素にフィットするように */
  height: 100%;
  display: block;
}
body div#main_contents .main_section.scroll_wrap .image_scroll p a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body div#main_contents .main_section.slide_wrap .slick-dots li button:before {
  font-size: 12px;
}
body div#main_contents .main_section.slide_wrap .slick-arrow {
  position: absolute;
  top: 135px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
}
body div#main_contents .main_section.slide_wrap .slick-arrow i {
  color: #fff;
}
body div#main_contents .main_section.slide_wrap .slick-arrow.prev-arrow {
  left: 10px;
}
body div#main_contents .main_section.slide_wrap .slick-arrow.next-arrow {
  right: 10px;
}
body div#main_contents .main_section.slide_wrap .slider p {
  height: 300px;
}
body div#main_contents .main_section.slide_wrap .slider p a {
  position: relative;
  display: block;
  width: 95%;
  height: 95%;
  margin: 0 auto;
}
body div#main_contents .main_section.slide_wrap .slider p span {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}
body div#main_contents .main_section.slide_wrap .slider p span:after {
  clear: both;
}
body div#main_contents .main_section.slide_wrap .slider p span em {
  display: block;
  float: right;
  font-style: normal;
}
body div#main_contents .main_section.slide_wrap .slider p img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}
body div#main_contents .main_section.coupon {
  padding-top: 80px;
}
body div#main_contents .main_section.coupon p.title {
  margin-top: 0;
}
body div#main_contents .main_section.coupon .keyword {
  text-align: center;
  padding-bottom: 30px;
}
body div#main_contents .main_section.coupon .keyword span {
  font-size: 24px;
  font-weight: bold;
}
body div#main_contents .main_section.coupon .coupons .coupon_item {
  position: relative;
}
body div#main_contents .main_section.coupon .coupons .coupon_item p {
  width: 100%;
}
body div#main_contents .main_section.coupon .coupons .coupon_item p.img {
  height: 100%;
}
body div#main_contents .main_section.coupon .coupons .coupon_item p.img a {
  display: block;
  height: 100%;
}
body div#main_contents .main_section.coupon .coupons .coupon_item p.img a:hover {
  opacity: 0.8;
}
body div#main_contents .main_section.coupon .coupons .coupon_item p.img a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body div#main_contents .main_section.coupon .coupons .coupon_item p.name {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
body div#main_contents .main_section.coupon .coupons .coupon_item p.name a {
  display: block;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  body div#main_contents .main_section.coupon .coupons {
    display: flex;
    gap: 0 10px;
    width: 1024px;
    margin: 0 auto;
  }
  body div#main_contents .main_section.coupon .coupons .coupon_item {
    flex: 1;
  }
  body div#main_contents .main_section.coupon .coupons .coupon_get {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  body div#main_contents .main_section.coupon .coupons .coupon_item {
    position: relative;
    width: 60vw;
    height: 60vw;
    margin-bottom: 20px;
    margin-left: 5vw;
  }
  body div#main_contents .main_section.coupon .coupons .coupon_get {
    position: relative;
    z-index: 1;
    display: block;
    margin-left: 35vw;
    width: 60vw;
    height: 40vw;
    margin-top: -20vw;
    background: #fff;
  }
  body div#main_contents .main_section.coupon .coupons .coupon_get a {
    display: block;
    padding: 15vw 0;
    text-decoration: none;
    background: #a88d71;
  }
  body div#main_contents .main_section.coupon .coupons .coupon_get a:hover {
    opacity: 0.8;
  }
  body div#main_contents .main_section.coupon .coupons .coupon_get a span {
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
  }
  body div#main_contents .main_section.coupon .coupons .coupon_get a .name {
    color: #fff;
  }
  body div#main_contents .main_section.coupon .coupons .coupon_get a .desc {
    color: #fff;
  }
}
body div#main_contents .main_section.reserve .message {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5em;
}
body div#main_contents .main_section.reserve table.calendar {
  margin: 0 auto;
  width: 90%;
}
body div#main_contents .main_section.reserve table.calendar tr th,
body div#main_contents .main_section.reserve table.calendar tr td {
  border-bottom: 1px solid #333;
  text-align: center;
  width: 14.2857142857%;
  color: #000;
  background: #fff;
}
body div#main_contents .main_section.reserve table.calendar tr th.saturday,
body div#main_contents .main_section.reserve table.calendar tr td.saturday {
  color: #00f;
}
body div#main_contents .main_section.reserve table.calendar tr th.sunday,
body div#main_contents .main_section.reserve table.calendar tr td.sunday {
  color: #f00;
}
body div#main_contents .main_section.reserve table.calendar tr th.past,
body div#main_contents .main_section.reserve table.calendar tr td.past {
  background: #ccc;
}
body div#main_contents .main_section.reserve table.calendar tr th.entry,
body div#main_contents .main_section.reserve table.calendar tr td.entry {
  /*background: rgba(#f00, 0.2);
  */
  background: #ffcccc;
}
body div#main_contents .main_section.reserve table.calendar tr th {
  font-size: 12px;
  padding: 10px 0;
}
body div#main_contents .main_section.reserve table.calendar tr td {
  padding: 0;
}
body div#main_contents .main_section.reserve table.calendar tr td a {
  display: block;
  height: 100%;
  padding: 10px 0 20px;
  line-height: 1.5em;
  text-decoration: none;
  color: inherit;
}
body div#main_contents .main_section.reserve table.calendar tr td a.entry {
  background: #ddd;
}
body div#main_contents .main_section.reserve table.calendar tr td a.disabled {
  pointer-events: none;
}
body div#main_contents .main_section.reserve table.calendar tr td a:hover {
  background: #ffcccc;
}
body div#main_contents .main_section.reserve table.entry_form {
  margin: 0 auto;
  width: 90%;
}
body div#main_contents .main_section.reserve table.entry_form tr th,
body div#main_contents .main_section.reserve table.entry_form tr td {
  padding: 20px 10px;
  font-size: 18px;
  border-bottom: 1px solid #333;
  background: #fff;
}
body div#main_contents .main_section.reserve table.entry_form tr th {
  width: 30%;
  line-height: 1em;
}
body div#main_contents .main_section.reserve table.entry_form tr th span {
  font-size: 10px;
  border-radius: 5px;
  background: #f00;
  color: #fff;
  font-weight: bold;
  padding: 4px 5px;
  display: inline-block;
  margin-left: 5px;
}
body div#main_contents .main_section.reserve table.entry_form tr td {
  width: 70%;
  line-height: 1.5em;
}
body div#main_contents .main_section.reserve table.entry_form tr td .error_info {
  margin-top: 5px;
  display: none;
  font-weight: bold;
  background: #f00;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
}
@media screen and (min-width: 1025px) {
  body div#main_contents .main_section.reserve table.entry_form tr td div {
    display: flex;
    gap: 10px;
  }
}
body div#main_contents .main_section.reserve table.entry_form tr td div select,
body div#main_contents .main_section.reserve table.entry_form tr td div input,
body div#main_contents .main_section.reserve table.entry_form tr td div textarea {
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  body div#main_contents .main_section.reserve table.entry_form tr td div select,
  body div#main_contents .main_section.reserve table.entry_form tr td div input,
  body div#main_contents .main_section.reserve table.entry_form tr td div textarea {
    flex: 1;
  }
}
@media screen and (max-width: 1024px) {
  body div#main_contents .main_section.reserve table.entry_form tr td div select,
  body div#main_contents .main_section.reserve table.entry_form tr td div input,
  body div#main_contents .main_section.reserve table.entry_form tr td div textarea {
    margin-bottom: 5px;
    width: 100%;
  }
}
body div#main_contents .main_section.reserve table.entry_form tr td div textarea {
  height: 12em;
  line-height: 1.2em;
  padding: 5px;
}
body div#main_contents .main_section.reserve table.entry_form tr td div input[type=text],
body div#main_contents .main_section.reserve table.entry_form tr td div input[type=email] {
  border: 1px solid #333;
  padding: 5px;
}
body div#main_contents .main_section.reserve table.entry_form tr td div input[type=text].readonly,
body div#main_contents .main_section.reserve table.entry_form tr td div input[type=email].readonly {
  background: none;
  border: none;
}
body div#main_contents .main_section.reserve div.submit {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  margin-top: 20px;
}
body div#main_contents .main_section.reserve div.submit input[type=submit],
body div#main_contents .main_section.reserve div.submit input[type=button] {
  padding: 20px 30px;
}
body div#main_contents .main_section.reserve div.submit input[type=submit] {
  background: #000;
  color: #fff;
}
body div#main_contents .main_section.reserve div.submit input[type=button] {
  background: #999;
  color: #fff;
}
body div#main_contents .main_section.reserve .reserve_foot_wrap {
  margin-top: 80px;
}
body div#main_contents .main_section.reserve .reserve_foot_wrap p {
  text-align: center;
}
body div#main_contents .main_section.shopinfo table {
  margin: 0 auto;
  width: 90%;
}
body div#main_contents .main_section.shopinfo table tr th,
body div#main_contents .main_section.shopinfo table tr td {
  border-bottom: 1px solid #333;
  line-height: 1.5em;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  body div#main_contents .main_section.shopinfo table tr th,
  body div#main_contents .main_section.shopinfo table tr td {
    font-size: 12px;
  }
}
body div#main_contents .main_section.shopinfo table tr th a,
body div#main_contents .main_section.shopinfo table tr td a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}
body div#main_contents .main_section.shopinfo table tr th {
  width: 30%;
  padding: 15px 0;
}
body div#main_contents .main_section.shopinfo table tr td {
  width: 70%;
  padding: 15px 10px;
}
body div#main_contents .main_section.shopinfo table tr td i {
  display: inline-block;
  margin-right: 5px;
}
body div#main_contents .main_section.menu_list .menu_list_wrap {
  max-width: 1024px;
  margin: 0 auto;
}
body div#main_contents .main_section.menu_list .menu_list_wrap dl {
  display: flex;
  margin: 0 20px 10px;
}
body div#main_contents .main_section.menu_list .menu_list_wrap dl dt {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: cover;
}
body div#main_contents .main_section.menu_list .menu_list_wrap dl dt img {
  display: block;
  width: 100%;
  height: 100%;
}
body div#main_contents .main_section.menu_list .menu_list_wrap dl dd {
  line-height: 80px;
}
body div#main_contents .main_section.menu_list .menu_list_wrap dl dd.name {
  flex: 1;
  margin-left: 20px;
}
body div#main_contents .main_section.menu_list .menu_list_wrap dl dd.price {
  width: 100px;
  text-align: right;
}
body div#main_contents .main_section.menu_list .menu_foot_wrap {
  margin-top: 80px;
}
body div#main_contents .main_section.menu_list .menu_foot_wrap p {
  text-align: center;
}
body footer {
  margin-top: 100px;
  padding-top: 30px;
  padding-bottom: 100px;
  background: #ccc;
}
body footer ul {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  margin-bottom: 20px;
}
body footer ul li {
  display: block;
}
body footer p.copyright {
  text-align: center;
  font-size: 12px;
}
body .modal {
  display: none; /* デフォルトでは非表示 */
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* 黒の透明 */
  opacity: 0; /* 初期状態は透明 */
  transition: opacity 0.5s ease; /* フェードイン/アウトのアニメーション */
  /* モーダルの画像 */
  /* 閉じるボタン */
}
body .modal.show {
  display: block;
  opacity: 1; /* フェードインで表示される */
}
body .modal.show .modal-content-item {
  transform: scale(1); /* 表示時に通常のサイズ */
}
body .modal .modal-content-wrap {
  display: flex;
  height: 100%;
}
body .modal .modal-content-wrap .modal-content-item {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  transition: transform 0.3s ease; /* 画像の軽いズームインを追加 */
}
body .modal .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
body .modal .close:hover,
body .modal .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}/*# sourceMappingURL=shopinfo.css.map */</pre></body></html>