@charset "UTF-8";
/* ==================== reset ==================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #231815;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: bottom;
  display: block;
  width: 100%;
  height: auto;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

/* ==================== conditional ==================== */
.img-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .img-pc {
    display: none;
  }
}

.img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .img-sp {
    display: block;
  }
}

.break-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .break-pc {
    display: none;
  }
}

.break-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .break-sp {
    display: block;
  }
}

/* ==================== blank-content ==================== */
.blank-content {
  position: relative;
  height: 300px;
}

.blank-content-gray {
  background: #f8f8f8;
}

.blank-content-white {
  background: #fff;
}

.blank-content-title {
  position: absolute;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ==================== two-column ==================== */
.two-column-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: space-between;
  flex-wrap: wrap;
}

.two-column-8 {
  width: 78%;
}
@media screen and (max-width: 768px) {
  .two-column-8 {
    width: 100%;
  }
}

.two-column-7 {
  width: 68%;
}
@media screen and (max-width: 768px) {
  .two-column-7 {
    width: 100%;
  }
}

.two-column-6 {
  width: 58%;
}
@media screen and (max-width: 768px) {
  .two-column-6 {
    width: 100%;
  }
}

.two-column-5 {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .two-column-5 {
    width: 100%;
  }
}

.two-column-4 {
  width: 38%;
}
@media screen and (max-width: 768px) {
  .two-column-4 {
    width: 100%;
  }
}

.two-column-3 {
  width: 28%;
}
@media screen and (max-width: 768px) {
  .two-column-3 {
    width: 100%;
  }
}

.two-column-2 {
  width: 18%;
}
@media screen and (max-width: 768px) {
  .two-column-2 {
    width: 100%;
  }
}

/* ==================== wrapper ==================== */
.wrapper {
  background: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 0 50px 0;
  }
}

/* ==================== header ==================== */
header {
  max-width: 1280px;
  margin: 0 auto;
  background: #231815;
  position: relative;
}
.header-inner {
  padding: 24px 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 15px;
  }
}

.header-link {
  display: block;
  max-width: 365px;
}
@media screen and (min-width: 769px) {
  .header-link {
    transition: opacity 0.4s ease;
  }
  .header-link:hover {
    opacity: 0.5;
  }
}
/* ==================== feature-group ==================== */
.feature-group {
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
}
/* ==================== introduction-group ==================== */
.introduction-group {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 40px 20px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .introduction-group {
    display: block;
    padding: 0 20px 10px;
  }
}

/* ==================== notes-group ==================== */
.notes-group {
  text-align: center;
}
.notes-heading {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #e60012;
}
@media screen and (max-width: 768px) {
  .notes-heading {
    font-size: 1.6rem;
  }
}

.notes {
  display: inline-block;
  margin: 22px 0 0 0;
  list-style: none;
}
.notes li {
  display: block;
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 0 0 0 1em;
  text-indent: -1em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .notes li {
    font-size: 1.3rem;
    text-align: justify;
  }
}
.notes li + li {
  margin: 10px 0 0 0;
}

/* ==================== fukubukuro-banner ==================== */
.fukubukuro-banner {
  margin: 50px auto;
  max-width: 700px;
}
@media screen and (max-width: 768px) {
  .fukubukuro-banner {
    margin: 40px auto 0;
  }
}
.fukubukuro-banner a {
  display: block;
}
@media screen and (min-width: 769px) {
  .fukubukuro-banner a {
    transition: opacity 0.4s ease;
  }
  .fukubukuro-banner a:hover {
    opacity: 0.5;
  }
}
/* ==================== campaign-group ==================== */
.campaign-group {
  margin: 50px auto 0;
}
.campaign-group-inner {
  border: 1px solid #e60012;
  border-radius: 6px;
}
.campaign-heading {
  position: relative;
  padding: 30px 0 18px;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  background: #e60012;
  text-align: center;
  border-radius: 6px 6px 0 0;
}
@media screen and (max-width: 768px) {
  .campaign-heading {
    font-size: 1.4rem;
    padding: 20px 10px;
  }
}
.campaign-heading .text {
  font-size: 2.6rem;
  line-height: 1.6em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .campaign-heading .text {
    display: initial;
    font-size: 1.5rem;
    line-height: 1.5em;
  }
}
.campaign-heading .text::before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  left: -16px;
  aspect-ratio: 1/1;
  width: 27px;
  background-image: url(../images/common/line.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .campaign-heading .text::before {
    width: 18px;
    top: -6px;
    left: -11px;
  }
}
.campaign-heading .sub {
  font-size: 2.8rem;
  line-height: 1em;
  display: inline-block;
  margin-top: 3px;
  margin-bottom: 21px;
}
@media screen and (max-width: 768px) {
  .campaign-heading .sub {
    font-size: 1.8rem;
    line-height: 1.6em;
    margin: 4px 0 0;
  }
}

.campaign-group-contents {
  padding: 35px 30px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .campaign-group-contents {
    padding: 25px 20px;
  }
}

.campaign-group-texts {
  width: 62%;
  padding: 0 40px 0 0;
}
@media screen and (max-width: 768px) {
  .campaign-group-texts {
    width: 100%;
    padding: 0;
  }
}

.campaign-info {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.campaign-info + .campaign-info {
  margin: 15px 0 0 0;
}
.campaign-info dt {
  padding: 6px 0;
  width: 100px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background: #e60012;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .campaign-info dt {
    width: 60px;
    font-size: 1.3rem;
  }
}
.campaign-info dd {
  width: calc(100% - 100px);
  padding: 2px 0 0 10px;
  font-size: 1.6rem;
  line-height: 1.7;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .campaign-info dd {
    width: calc(100% - 60px);
  }
}

.campaign-desc {
  margin: 30px 0 0 0;
  font-size: 1.5rem;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .campaign-desc {
    margin: 25px 0 0 0;
    font-size: 1.4rem;
  }
}
.campaign-desc span {
  padding: 2px;
  font-weight: 700;
  color: #e60012;
  background: #ffffb5;
}
.campaign-notes {
  margin: 25px 0 0 0;
  list-style: none;
}
.campaign-notes li {
  font-size: 1.3rem;
  line-height: 1.7;
  padding: 0 0 0 1em;
  text-indent: -1em;
  text-align: justify;
}
.campaign-notes li + li {
  margin: 5px 0 0 0;
}
@media screen and (max-width: 768px) {
  .campaign-notes li + li {
    margin: 7px 0 0 0;
  }
}
.campaign-notes li span {
  color: #e60012;
}

.campaign-ticket-group {
  width: 38%;
  padding: 30px 20px;
  background: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .campaign-ticket-group {
    width: 100%;
    margin: 30px 0 0 0;
    padding: 30px 0 0 0;
    background: none;
    border-top: 1px solid #ddd;
  }
}

.campaign-ticket-desc {
  font-size: 1.4rem;
}
.campaign-ticket-desc dt {
  padding: 0 0 5px 0;
  line-height: 1;
  font-size: 1.6rem;
  color: #e60012;
  font-weight: bold;
  border-bottom: 1px solid #e60012;
}
.campaign-ticket-desc dd {
  margin: 10px 0 0 0;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #e60012;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .campaign-ticket-desc dd {
    font-size: 1.4rem;
  }
}

.campaign-ticket-notes {
  margin: 20px 0 0 0;
  list-style: none;
}
.campaign-ticket-notes li {
  font-size: 1.3rem;
  line-height: 1.7;
  padding: 0 0 0 1em;
  text-indent: -1em;
  text-align: justify;
}
.campaign-ticket-notes li + li {
  margin: 10px 0 0 0;
}
/* ==================== contents ==================== */
.contents {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 40px 120px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: space-between;
  flex-wrap: wrap;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .contents {
    display: block;
    padding: 20px 20px 110px;
  }
}

.main {
  position: relative;
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  .main {
    width: 100%;
  }
}

.sidebar {
  position: relative;
  width: 200px;
  margin: -30px 0 0 0;
  padding: 0 0 0 50px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .sidebar {
    position: fixed;
    width: 100%;
    margin: 0;
    padding: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 999;
  }
}

.sidebar-inner {
  padding: 30px 0 0 0;
  width: 150px;
}
@media screen and (max-width: 768px) {
  .sidebar-inner {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-content: space-between;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 769px) {
  .sidebar-fixed .sidebar-inner {
    position: fixed;
    top: 0;
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  .sidebar-nav-group {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .sidebar-nav-group-service .sidebar-heading {
    border-right: 1px solid #fff;
  }
  .sidebar-nav-group-service .sidebar-nav li {
    width: 20%;
  }
}

@media screen and (max-width: 768px) {
  .sidebar-nav-group-foods .sidebar-nav li {
    width: 16.6666666667%;
  }
}

.sidebar-heading {
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sidebar-heading {
    font-size: 1.4rem;
  }
}
.sidebar-heading a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 12px 0;
  background: #e60012;
}
@media screen and (min-width: 769px) {
  .sidebar-heading a {
    transition: opacity 0.4s ease;
  }
  .sidebar-heading a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .sidebar-heading a {
    padding: 20px 0;
  }
}

.sidebar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .sidebar-nav {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-content: space-between;
    flex-wrap: wrap;
    display: none;
  }
}
.sidebar-nav li {
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  border-right: 1px solid #e60012;
  border-bottom: 1px solid #e60012;
  border-left: 1px solid #e60012;
}
@media screen and (max-width: 768px) {
  .sidebar-nav li {
    font-size: 1.2rem;
    line-height: 1.25;
    border-bottom: none;
    border-left: none;
  }
}
.sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: #e60012;
  padding: 12px 0;
  background: #fff;
  transition: all 0.4s ease;
}
@media screen and (min-width: 769px) {
  .sidebar-nav li a:hover {
    color: #fff;
    background: #e60012;
  }
}
@media screen and (max-width: 768px) {
  .sidebar-nav li a {
    padding: 8px 0;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 30px 0 0 0;
  }
}

.section-foods {
  margin: 100px 0 0 0;
}
@media screen and (max-width: 768px) {
  .section-foods {
    margin: 50px 0 0 0;
  }
}

.section-heading {
  margin: 0 auto;
  padding: 15px 0;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #e60012;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .section-heading {
    padding: 13px 0;
    font-size: 1.6rem;
  }
}

.section-notes {
  margin: 40px 0 0 0;
  padding: 0 20px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .section-notes {
    margin: 30px 0 0 0;
    padding: 0 10px;
  }
}
.section-notes li {
  margin: 0 2px 0 0;
  display: inline;
  font-size: 1.3rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .section-notes li {
    font-size: 1.2rem;
  }
}

.floor-heading {
  margin: 25px 0 0 0;
  padding: 40px 0 0 0;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  border-bottom: 2px solid #e60012;
}
@media screen and (max-width: 768px) {
  .floor-heading {
    margin: 20px 0 0 0;
    padding: 30px 0 0 0;
    font-size: 1.4rem;
  }
}
.floor-heading span {
  display: inline-block;
  padding: 10px;
  background: #e60012;
  border-radius: 4px 4px 0 0;
}
@media screen and (max-width: 768px) {
  .floor-heading span {
    padding: 10px 10px 8px 10px;
  }
}

/* ==================== service ==================== */
.shop-group {
  margin: 10px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: space-between;
  flex-wrap: wrap;
}
.shop-block {
  width: 48.5%;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .shop-block {
    width: 100%;
  }
}

.shop-block-inner {
  padding: 25px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .shop-block-inner {
    padding: 25px 0 20px;
  }
}

.shop-logo {
  width: 30%;
}
.shop-logo a {
  border: 1px solid #ddd;
  display: block;
}
@media screen and (min-width: 769px) {
  .shop-logo a {
    transition: opacity 0.4s ease;
  }
  .shop-logo a:hover {
    opacity: 0.5;
  }
}
.shop-texts {
  width: 70%;
  padding: 0 0 0 25px;
}
@media screen and (max-width: 768px) {
  .shop-texts {
    padding: 0 0 0 20px;
  }
}

.sale-desc {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  color: #e60012;
}
.sale-desc span {
  font-size: 1.3rem;
  color: #231815;
  line-height: 1.5;
  display: inline-block;
}
.sale-desc + .period {
  margin: 0;
}

.period {
  display: inline-block;
  margin: 13px 0 0 0;
  padding: 1px 8px;
  font-size: 1.4rem;
  line-height: 1.5;
  border: 1px solid #a0a0a0;
  border-radius: 3px;
  font-feature-settings: "palt";
}
.period + .sale-desc {
  margin: 22px 0 10px 0;
}
.period + .other-info {
  margin: 22px 0 0 0;
}
.period + .item-name {
  margin: 22px 0 0 0;
}

.other-info {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 700;
}
.other-info span {
  color: #e60012;
}

.item-name {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: bold;
}
.item-name + .item-name {
  margin: 10px 0 0 0;
}

.item-price-group {
  margin: 5px 0 0 0;
}
.item-price-group + .item-name {
  margin: 20px 0 0 0;
}
.item-price-group + .sale-desc {
  margin: 10px 0 0 0;
}

.item-normal-price {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .item-normal-price {
    font-size: 1.2rem;
  }
}
.item-normal-price::after {
  content: " → ";
}
.item-sale-price {
  display: inline-block;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: bold;
  color: #e60012;
}
@media screen and (max-width: 768px) {
  .item-sale-price {
    font-size: 1.7rem;
  }
}

.other-info-note {
  margin: -6px 0 0 0;
  list-style: none;
}
.other-info-note.mt5 {
  margin-top: 5px;
}
.other-info-note li {
  font-size: 1.3rem;
  line-height: 1.4;
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.shop-name {
  margin: 8px 0 0 0;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
}
.shop-name span {
  display: inline-block;
  margin: 0 8px 6px 0;
  padding: 2px 7px 1px;
  font-size: 1.3rem;
  background: #c4a879;
  color: #fff;
  border-radius: 3px;
}
.shop-name a {
  display: inline-block;
  color: #231815;
}
@media screen and (min-width: 769px) {
  .shop-name a {
    transition: opacity 0.4s ease;
  }
  .shop-name a:hover {
    opacity: 0.5;
  }
}
/* ==================== honkan-sale-link ==================== */
.honkan-sale-link {
  margin: 70px 0 0 0;
  padding: 60px 20px;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  background: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .honkan-sale-link {
    padding: 0;
    font-size: 1.3rem;
    border: none;
  }
}
.honkan-sale-link a {
  position: relative;
  display: inline-block;
  padding: 20px 80px;
  color: #fff;
  background: #e60012;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .honkan-sale-link a {
    transition: opacity 0.4s ease;
  }
  .honkan-sale-link a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .honkan-sale-link a {
    padding: 20px 60px;
  }
}
.honkan-sale-link a::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 10px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .honkan-sale-link a::before {
    top: 40px;
    right: 25px;
  }
}
.honkan-sale-link a::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 14px;
  border: 1px solid #fff;
  border-top: 3px solid #fff;
  top: 22px;
  right: 26px;
}
@media screen and (max-width: 768px) {
  .honkan-sale-link a::after {
    top: 32px;
    right: 21px;
  }
}

/* ==================== back-to-top-wrapper ==================== */
.back-to-top-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.back-to-top {
  display: block;
  width: 100%;
  height: 50px;
  position: relative;
  background: #a0a0a0;
}
@media screen and (min-width: 769px) {
  .back-to-top {
    transition: opacity 0.4s ease;
  }
  .back-to-top:hover {
    opacity: 0.5;
  }
}
.back-to-top::before {
  content: " ";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin: auto;
  top: 20px;
  right: 0;
  left: 0;
}

/* ==================== footer ==================== */
footer {
  max-width: 1280px;
  margin: 0 auto;
  background: #231815;
  position: relative;
}
.footer-inner {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 30px 50px 90px;
  }
}

.footer-link {
  display: block;
  max-width: 324px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .footer-link {
    transition: opacity 0.4s ease;
  }
  .footer-link:hover {
    opacity: 0.5;
  }
}
.item-normal-price.item-height {
  line-height: 2em;
}

.category {
  margin-top: 16px;
  color: #575757;
  font-size: 1.3rem;
  line-height: 1.4;
}

.sale-desc.flex {
  margin-bottom: 0;
}

.sale-desc.flex span {
  margin-right: 8px;
}
