@charset "UTF-8";

#main {
  background-image: url("/images/christmas/background2023_pc.png");
  /*background-size: 100%;*/
  background-size: cover;
  background-attachment: fixed;
}

@media screen and (max-width: 768px) {
  #main {
    background-image: url("/images/christmas/background2023_sp.png");
  }
}
.bk-brack {
  background-color: #280a07;
  display: contents;
  margin: 0 -250px;
}
.wrapper {
  width: 100%;
  display: block;
  text-align: center;
  background-repeat: repeat;
  padding: 60px;
  /* background-color: #9b1d1e; */
}
.mainillust {
  /*width: 70%;*/
  opacity: 0;
  animation: 10s fadeIn forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.backillust_l {
  z-index: 0;
  bottom: 0;
  position: fixed;
  left: 0;
}
.backillust_r {
  z-index: 0;
  top: 50px;
  position: fixed;
  right: 0;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
h2 {
  font-size: 24px;
  color: #858c14;
  font-family: "Noto Serif JP", serif;
}
h2.en_menu {
  font-size: 20px;
}
p {
  margin: 0;
  font-size: 16px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
.gentei {
  background-color: #858c14;
}
.gentei.goyoyaku {
  background-color: #b9835f;
}
.gentei span {
  margin: 10px;
  color: #fff;
}
.leadtext {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}
.price {
  margin-bottom: 2em;
}
@media screen and (max-width: 480px) {
  .price {
    margin-bottom: 0em;
  }
}
.mainwidth {
  z-index: 50;
  text-align: left;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
}
#container .row {
  padding-left: 0;
  padding-right: 0;
  /*max-width: 100%;*/
}
.inner_cont {
  z-index: 50;
  position: relative;
  margin-top: 60px;
}
.menu-cont {
  margin-top: 30px;
  padding-top: 60px;
}
.menu-cont + .menu-cont {
  border-top: 1px solid #a17259;
}
.img {
  margin-bottom: 30px;
}
.menu-box {
  border: medium solid #858c14;
  padding: 30px;
  /* background-color: #fff; */
}
.menu-box.goyoyaku_box {
  border: medium solid #fff;
}
.notes {
  border: medium solid #fff;
  /* background-color: #fff; */
  margin-top: 50px;
  padding: 10px;
}
.notes p {
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .wrapper {
    padding: 30px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
  .backillust_l {
    width: 30%;
  }
  .backillust_r {
    top: 100px;
    width: 30%;
  }

  #container .row {
    max-width: none;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    padding: 30px;
  }
  h1 {
    font-size: 20px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 12px;
  }
  .backillust_l {
    width: 30%;
  }
  .backillust_r {
    top: 100px;
    width: 30%;
  }

  #container .row {
    max-width: none;
  }
}
.link_btn {
  padding: 1rem 0.5rem;
  font-family: "Noto Serif JP", serif;
}
.link_btn a,
.link_btn span {
  border-radius: 20px;
  margin-right: 0.3em;
  background-color: #858c14;
  padding: 0.5rem;
  color: #fff;
}
.link_btn a.goyoyaku,
.link_btn span.goyoyaku {
  background-color: red;
}
.reserve_btn {
  background: #cc0000;
  padding: 1em 2em;
  border-radius: 20px;
  position: fixed;
  right: 0; /*20px*/
  bottom: 20px;
  z-index: 999;
  font-family: "Noto Serif JP", serif;
}
.reserve_btn a,
.reserve_btn span {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .reserve_btn {
    width: 100%;
    padding: 1em;
    bottom: 0;
  }
  .sp_none {
    display: none;
  }
}

/*               GOTO関連ボタン
======================================================= */
p.menu-button {
  margin-top: 30px;
}
a.gotobtn {
  border-radius: 7px;
  margin-right: 30px;
  background: #006335;
  color: #fff;
}
a.gotobtn-red {
  background: #a31f24;
}

/*               店舗リスト（アコーディオン）
======================================================= */
.tenpolist dl {
  margin: 0;
  text-align: left;
  border: none;
}
.tenpolist dl dt p {
  text-decoration: underline;
}
.tenpolist dl dd p {
  font-size: 14px;
}
.tenpolist dl dt,
.tenpolist dl dd {
  position: relative;
}
.tenpolist dl dt > div,
.tenpolist dl dd > div {
  display: flex;
}
.tenpolist dl dt {
  cursor: pointer;
}
.tenpolist dl dt > div {
  position: relative;
  padding-right: 40px;
}
.tenpolist dl dd {
  position: relative;
}
.tenpolist dl dd > div {
  opacity: 0;
  transition: all 0.5s;
}
.tenpolist dl dd .num {
  color: #c3381d;
}
.tenpolist dl dt.active + dd {
  display: block;
}
.tenpolist dl dt.active + dd > div {
  opacity: 1;
  transition: all 0.7s;
}

/*               2023
======================================================= */
.menu-content_border {
  border: solid 1px #fff;
  display: inline-block;
  padding: 6px;
  margin: 10px 0px;
  font-size: 12px;
}
@media only screen and (max-width: 480px) {
  .menu-content_border {
    padding: 4px;
    margin: 4px 0px;
  }
}
.price_l {
  color: #b9835f;
  background-color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: solid 2px #b9835f;
  padding: 2px 10px;
}
@media only screen and (max-width: 480px) {
  .price_l {
    font-size: 10px;
  }
}
.price_r {
  color: #fff;
  background-color: #b9835f;
  font-size: 14px;
  font-weight: 700;
  border: solid 2px #b9835f;
  margin-left: -5px;
  padding: 2px 10px;
}
@media only screen and (max-width: 480px) {
  .price_r {
    font-size: 10px;
  }
}
.reservation_cont {
  display: flex;
  padding-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .reservation_cont {
    display: block;
  }
}
.reservation_l {
  color: #b9835f;
  background-color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: solid 2px #b9835f;
  padding: 2px 10px;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .reservation_l {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .reservation_l {
    font-size: 14px;
  }
}
.reservation_r {
  color: #fff;
  font-size: 26px;
}
@media only screen and (max-width: 767px) {
  .reservation_r {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .reservation_r {
    font-size: 14px;
  }
}
.btn_block {
  position: relative;
}
.reservation_btn {
  background: linear-gradient(to right, #013727, #3a825a);
  background: -webkit-linear-gradient(left, #013727, #3a825a);
  background: -moz-linear-gradient(left, #013727, #3a825a);
  color: #fff;
  padding: 6px 20px;
}
/*@media only screen and (max-width: 767px) {
		.reservation_btn{
		position: absolute;
			top: 30px;
			right: 10px;
		}
	}
	@media only screen and (max-width: 480px) {
		.reservation_btn{
			position: absolute;
			font-size: 12px;
			top: 0px;
			right: 10px;
		}
	}*/

/*スライダー調整*/
.menu-cont .bx-wrapper,
.menu-cont .bx-wrapper .bx-viewport {
  border: none;
  background: none;
  box-shadow: none;
  width: 100%;
  height: 100% !important;
  left: 0;
}
/* 期間限定 */
.ukewatashi_icon {
  display: flex;
  width: 330px;
}
/*数量限定*/
.gentei_icon {
  display: flex;
  width: 100px;
}
@media screen and (max-width: 640px) {
  .gentei_icon_area {
    position: relative;
  }
  .gentei_icon .ukewatashi_icon {
    width: 20%;
    position: absolute;
    right: 0;
    bottom: 80px;
  }
}
@media screen and (max-width: 375px) {
  .gentei_icon_area {
    position: relative;
  }
  .gentei_icon .ukewatashi_icon {
    width: 20%;
    position: absolute;
    right: 0;
    bottom: 100px;
  }
}
/*MV*/
.mv_pc {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 800px) {
  .mv_pc {
    display: none;
  }
}
.mv_sp {
  display: none;
}
@media only screen and (max-width: 800px) {
  .mv_sp {
    display: block;
  }
}

.web_reservation_btn {
  width: 130px;
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 9999;
  display: block;
}
@media only screen and (max-width: 800px) {
  .web_reservation_btn {
    width: 80px;
  }
}
.price_text {
  color: #fff;
  font-size: 40px;
}
@media only screen and (max-width: 480px) {
  .price_text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .bg_item {
    display: none;
  }
}

/*2024調整*/
.c-head-note {
  text-align: center;
  padding: 10px 0;
}
.c-head-note a {
  color: #fff;
  text-decoration: underline;
}

.reservation_r a {
  color: #fff;
  text-decoration: underline;
}

.reservation_l {
  width: 10em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .reservation_l {
    width: 100%;
  }
}
.c-credit-img {
  display: block;
}
.c-paypay-img {
  display: block;
}
.paypay {
  width: 200px;
}

/*table*/
.c-reservation-group {
}
.c-reservation-group table tbody {
  background-color: transparent;
}
.tbl-r05 {
  width: 100%;
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
}
.tbl-r05 td:first-child {
  background: #fff;
  color: #b9835f;
  text-align: center;
  font-weight: bold;
}
.tbl-r05 th:first-child {
  background-color: transparent;
}
.tbl-r05 th {
  text-align: center;
  background-color: #b9835f;
  color: #fff;
  font-weight: bold;
  border: 1px solid #fff;
}
.tbl-r05 td {
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
}
.tbl-r05 th a {
  display: block;
  color: #fff;
  text-decoration: underline;
}
.tbl-r05 td a {
  display: block;
  color: #fff;
  text-decoration: underline;
}
.tbl-r05 tbody tr {
  background-color: transparent !important;
}
.tbl-r05 tbody tr td:first-child {
  width: 8em;
}
.tbl-r05 td .c-credit-img {
  text-align: left;
  padding-top: 6px;
}
.tbl-r05 td .c-paypay-img {
  text-align: left;
  padding-top: 6px;
}
.tbl-r05 td .c-credit-img {
  text-align: left;
}
.fz-small {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .tbl-r05 {
    font-size: 16px;
  }
  .tbl-r05 .thead {
    display: none;
  }
  .tbl-r05 tr {
    width: 100%;
  }
  .tbl-r05 td {
    display: block;
    text-align: right;
    width: 100%;
  }
  .tbl-r05 tbody tr td:first-child {
    width: 100%;
  }
  .tbl-r05 td:first-child {
    background: #e9727e;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
  .tbl-r05 td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
  .tbl-r05 tr.last td {
    text-align: center;
    cursor: n;
  }
}
/*20240920 追記*/
.menu-content .link {
  margin-top: 1em;
}
.menu-content .link a {
  color: #fff;
  text-decoration: underline;
  font-size: 18px;
}
.menu-content .link a:hover,
.menu-content .link a:visited {
  color: #fff;
}

.howto_table__link {
  text-decoration: underline;
}

/*20241202 追記*/
.reserve-close {
  font-size: 16px;
  text-align: center;
  color: #fff;
}
.cake-close {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .cake-close {
    font-size: 16px;
  }
}

/*20250930追記*/
.price:first-of-type {
  margin-bottom: 0em;
}
.note-small {
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  .ukewatashi_icon {
    width: 230px;
  }
}

/*佐藤追記*/
.menu-cont + .menu-cont {
  border: unset;
}
.menu-cont .bx-wrapper,
.menu-cont .bx-wrapper .bx-viewport {
  margin-bottom: 0;
}
.menu-cont {
  margin-top: 0;
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .menu-cont {
    padding-top: 10px;
  }
  .price {
    margin-bottom: 1em;
  }
}

/*20251020追記*/
.catalog_btn {
  display: flex;
  justify-content: center;
}
ul.catalog_btn  {
  margin-left: 0;
}
.catalog_btn li {
  background-color: #b9835f;
  width: calc(100% / 3);
  height: 160px;
  list-style: none;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  text-align: center;
  margin: 10px;
}
.catalog_btn li a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}
.catalog_btn span {
  display: block;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .catalog_btn li {
    height: 200px;
    text-align: center;
    margin: 10px;
    font-size: 16px;
  }
  .catalog_btn span {
    font-size: 10px;
  }
}
