@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333333;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: top;
  width: 100%;
}

ul {
  list-style: none;
}

/* 基本設定終わり
------------------------------------------------------------*/
.container {
  padding: 0 5%;
}

.type_info {
  padding: 0 5%;
  /* .type_name終わり */
  /* .type_detail終わり */
}
.type_info .type_name {
  text-align: center;
}
.type_info .type_name .type_name_eng {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 200;
  color: #d34c4c;
  margin-bottom: 0px;
}
.type_info .type_name .type_name_jpn {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
}
.type_info .type_name .type_name_jpn::after {
  content: "";
  display: block;
  width: 30px;
  border-bottom: 3px solid #d34c4c;
  margin: 20px auto;
}
.type_info .sold_out {
  color: #D91818;
  font-weight: 800;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
}
.type_info .type_detail {
  margin-bottom: 40px;
}
.type_info .type_detail .type_desc {
  margin-bottom: 20px;
  line-height: 1.7;
}
.type_info .type_detail .selling_info .selling_info_section {
  margin-bottom: 5px;
}
.type_info .type_detail .selling_info .selling_info_section .selling_info_title {
  background-color: #FFEBD5;
  padding: 5px 0;
  text-align: center;
}
.type_info .type_detail .selling_info .selling_info_section .selling_info_detail {
  background-color: #FFF9F1;
  padding: 20px 15px;
}
.type_info .type_detail .selling_info .selling_info_section .selling_info_detail .ul-blank {
  margin-bottom: 20px;
}
.type_info .type_detail .selling_info .selling_info_section .selling_info_detail .annotation {
  font-size: 1.3rem;
  margin-bottom: 25px;
}
.type_info .type_detail .selling_info .selling_info_section .selling_info_detail ul li a {
  font-weight: 700;
  color: #d34c4c;
  border-bottom: 1px solid #d34c4c;
}
.type_info .type_detail .selling_info .selling_info_section .selling_info_detail ul li a i {
  margin-left: 5px;
}
.type_info .type_detail .selling_info .selling_info_section .selling_info_detail ul .cake_link, .type_info .type_detail .selling_info .selling_info_section .selling_info_detail ul .cake_tel {
  margin-bottom: 20px;
}

/* .type_info終わり */
.item_name {
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.25;
}

.price {
  font-weight: 500;
  font-size: 1.9rem;
}
.price span {
  font-weight: 400;
  font-size: 1.2rem;
}

.reservataion_button {
  background-color: #d34c4c;
  display: block;
  padding: 12px 0;
  text-align: center;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-top: 15px;
}

.reservataion_button_sold {
  background-color: #666;
  display: block;
  padding: 12px 0;
  text-align: center;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.group_image_sp {
  margin-bottom: 20px;
}

.fadein, .fadein-right, .fadein-left {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.fadein.show, .show.fadein-right, .show.fadein-left {
  opacity: 1;
  transform: translateY(0);
}

.fadein-left {
  transform: translateX(-50px);
}

.fadein-right {
  transform: translateX(50px);
}

/* 共通項目終わり
------------------------------------------------------------*/
/* ヒーローイメージ全画面
------------------------------------------------------------*/
#hero_image_pc,
#hero_image_sp {
  display: block;
  width: 100vw;
  height: calc(100vh - 50px);
  overflow: hidden;
  position: relative;
}
#hero_image_pc img,
#hero_image_sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

#hero_image_pc {
  display: block;
  height: 100vh;
}

#hero_image_sp {
  display: none;
}

.scroll_down {
  display: block;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 15px;
  position: absolute;
}
.scroll_down p {
  letter-spacing: 0.1vw;
}
.scroll_down a {
  display: inline-block;
  line-height: 18px;
  font-size: 1.3rem;
  font-weight: normal;
  color: #ccc;
  letter-spacing: 2px;
  text-decoration: none;
}
.scroll_down .mouse {
  position: relative;
  display: block;
  width: 20px;
  height: 35px;
  margin: 0 auto 3px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 23px;
}
.scroll_down .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 7px;
  height: 7px;
  margin: -4px 0 0 -4px;
  background: #ccc;
  border-radius: 50%;
  animation: ani-mouse 2.5s linear infinite;
}

@keyframes ani-mouse {
  0% {
    opacity: 0;
    top: 70%;
  }
  40% {
    opacity: 0;
    top: 30%;
  }
  70% {
    opacity: 1;
    top: 30%;
  }
  100% {
    opacity: 1;
    top: 70%;
  }
}
@media screen and (max-width: 768px) {
  #hero_image_pc {
    display: none;
  }
  #hero_image_sp {
    display: block;
    height: calc(100vh - 50px);
  }
  #hero_image_sp img {
    height: 100%;
  }
}
/* ヒーローイメージ全画面
------------------------------------------------------------*/
header {
  padding: 20px 5% 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
}
header .logo_christmas .logo {
  display: block;
  width: 50px;
  height: auto;
}
header .logo_christmas .logo-color {
  display: none;
}
header.scrolled .logo_christmas .logo-white {
  display: none;
}
header.scrolled .logo_christmas .logo-color {
  display: block;
}
header .lang {
  padding: 8px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.75);
  font-size: 1.3rem;
}

#body_copy {
  padding: 60px 5%;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 32px */
  color: #555555;
}

#body_copy.visible {
  opacity: 1;
  transform: translateY(0);
}

#christmas_cake {
  background-color: rgba(211, 76, 76, 0.0823529412);
  padding-bottom: 50px;
}
#christmas_cake .christmas_cake_each {
  /* #christmas_cake_left終了 */
  /* #christmas_cake_right終了 */
}
#christmas_cake .christmas_cake_each .christmas_cake_left {
  margin-bottom: 50px;
}
#christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_img {
  max-width: 100%;
  height: auto;
  margin-left: -5.5%;
}
#christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_img .christmas_cake_img_sp {
  border-radius: 0 0 20px 0;
}
#christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_detail {
  margin-top: 15px;
  padding-right: 5%;
}
#christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_detail .desc {
  margin-top: 20px;
}
#christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_detail .cake_section {
  margin-top: 20px;
}
#christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_detail .reservation_end {
  background-color: #333333;
}
#christmas_cake .christmas_cake_each .christmas_cake_right {
  margin-bottom: 50px;
}
#christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_img {
  max-width: 100%;
  height: auto;
  margin-left: 5.5%;
  margin-right: -5.5%;
}
#christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_img .christmas_cake_img_sp {
  border-radius: 0 0 0 20px;
}
#christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_detail {
  margin-top: 15px;
  padding-left: 5%;
}
#christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_detail .desc {
  margin-top: 20px;
}
#christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_detail .cake_section {
  margin-top: 20px;
}
#christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_detail .reservation_end {
  background-color: #333333;
}

/* #christmas_cake終了 */
#christmas_chicken {
  margin-bottom: 100px;
}
#christmas_chicken .selling_info .chicken_reservation {
  font-weight: 800;
}
#christmas_chicken .selling_info .selling_info_detail_chicken {
  margin-top: 10px;
}
#christmas_chicken .christmas_chicken_each .christmas_fried_chicken {
  margin-bottom: 40px;
}
#christmas_chicken .christmas_chicken_each .christmas_fried_chicken .christmas_chicken_img {
  max-width: 100%;
  height: auto;
}
#christmas_chicken .christmas_chicken_each .christmas_fried_chicken .christmas_chicken_detail {
  margin-top: 15px;
  padding-right: 5%;
}
#christmas_chicken .christmas_chicken_each .christmas_fried_chicken .christmas_chicken_detail .reservataion_button {
  background-color: #C1B057;
  display: block;
  margin-top: 15px;
  padding: 12px 0;
  text-align: center;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}
#christmas_chicken .christmas_chicken_each .christmas_fried_chicken .christmas_chicken_detail .reservataion_button_sold {
  background-color: #666;
  display: block;
  margin-top: 15px;
  padding: 12px 0;
  text-align: center;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}
#christmas_chicken .christmas_chicken_each .christmas_roast_chicken .christmas_chicken_img {
  max-width: 100%;
  height: auto;
}
#christmas_chicken .christmas_chicken_each .christmas_roast_chicken .christmas_chicken_detail {
  margin-top: 15px;
  padding-right: 5%;
}
#christmas_chicken .christmas_chicken_each .christmas_roast_chicken .christmas_chicken_detail .reservataion_button {
  background-color: #C1B057;
  display: block;
  padding: 12px 0;
  margin-top: 15px;
  text-align: center;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}
#christmas_chicken .christmas_chicken_each .christmas_roast_chicken .christmas_chicken_detail .reservataion_button_sold {
  background-color: #666;
  display: block;
  margin-top: 15px;
  padding: 12px 0;
  text-align: center;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

/* #christmas_chicken終了 */
#christmas_dry_item {
  background-color: #f4f4f4;
  padding-bottom: 100px;
}
#christmas_dry_item .christmas_dry_item_each,
#christmas_dry_item .christmas_bread_each {
  display: flex;
  flex-wrap: wrap;
}
#christmas_dry_item .christmas_dry_item_each .dry_item,
#christmas_dry_item .christmas_bread_each .dry_item {
  width: 47%;
  margin-right: 6%;
  margin-bottom: 20px;
}
#christmas_dry_item .christmas_dry_item_each .dry_item:nth-child(2n),
#christmas_dry_item .christmas_bread_each .dry_item:nth-child(2n) {
  margin-right: 0;
}
#christmas_dry_item .christmas_dry_item_each .dry_item img,
#christmas_dry_item .christmas_bread_each .dry_item img {
  margin-bottom: 10px;
}
#christmas_dry_item .christmas_dry_item_each {
  margin-bottom: 40px;
}
#christmas_dry_item .christmas_dry_item_each::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #777, #777 2px, transparent 2px, transparent 10px);
  margin: 10px 0 0 0;
}
#christmas_dry_item .christmas_bread_each {
  margin-bottom: 60px;
}
#christmas_dry_item .annotation {
  margin-bottom: 30px;
}
#christmas_dry_item .swissgourmet {
  display: flex;
  gap: 50px;
  border-top: 1px solid #555555;
  border-bottom: 1px solid #555555;
  padding: 15px 0;
}
#christmas_dry_item .swissgourmet .name_tel .swissgourmet-name {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 3px;
}
#christmas_dry_item .swissgourmet .time .weekday {
  margin-bottom: 10px;
}

/* #christmas_dry_item終了 */
#festive_menu {
  background-color: #03113D;
  color: #fff;
  padding-bottom: 100px;
}
#festive_menu .type_desc_festive {
  margin-bottom: 60px;
}
#festive_menu .type_desc_festive .br_pc {
  display: none;
}
#festive_menu .festive_menus .festive_menu_each {
  margin-bottom: 80px;
  /* .festive_menu_detail終了 */
}
#festive_menu .festive_menus .festive_menu_each .festive_menu_img {
  max-width: 100%;
  height: auto;
}
#festive_menu .festive_menus .festive_menu_each .festive_menu_detail {
  margin-top: 15px;
  padding-right: 5%;
  /* .festive_menu_name終了 */
  /* .festive_menu_date_price終了 */
}
#festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_name {
  margin-bottom: 15px;
}
#festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_name .outlet {
  font-size: 1.5rem;
  font-weight: 700;
}
#festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_name .menu_name {
  font-size: 1.7rem;
  font-weight: 700;
}
#festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_date_price .date {
  font-size: 1.5rem;
}
#festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_date_price .price {
  font-size: 1.9rem;
}
#festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_date_price .price span {
  font-size: 1.5rem;
}
#festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_date_price .surf_turf {
  margin-top: 25px;
}
#festive_menu .festive_menus .festive_menu_each .reservation_sp {
  display: flex;
  justify-content: space-between;
}
#festive_menu .festive_menus .festive_menu_each .reservation_sp .reservataion_button_sp {
  display: block;
  background-color: #d34c4c;
  margin-top: 15px;
  padding: 12px 0;
  text-align: center;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  width: 80%;
}
#festive_menu .festive_menus .festive_menu_each .reservation_sp .telephone {
  display: block;
  background-color: #C1B057;
  margin-top: 15px;
  padding: 12px 0;
  text-align: center;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  width: 48px;
  height: 48px;
}
#festive_menu .festive_menus .festive_menu_each .reservation_pc .reservataion_button_pc {
  display: none;
  background-color: #d34c4c;
  margin-top: 15px;
  padding: 12px 0;
  text-align: center;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  width: 100%;
}

/* #festive_menu終了 */
footer {
  /* SP固定フッター
  ------------------------------------------------------------*/
}
footer .hotel_logo {
  margin: 70px auto 120px auto;
  width: 190px;
  height: auto;
}
footer .sp-fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
footer .sp-fixed-footer .footer-nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  text-align: center;
  height: 50px;
}
footer .sp-fixed-footer .footer-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  border-left: 1px solid #eee;
  transition: background-color 0.3s;
}
footer .sp-fixed-footer .footer-btn:first-child {
  border-left: none;
}
footer .sp-fixed-footer .footer-btn img {
  width: 25px;
  height: 25px;
  margin-bottom: 2px;
}
footer .sp-fixed-footer .footer-btn span {
  line-height: 1;
  font-size: 1rem;
  font-weight: 600;
}
footer .sp-fixed-footer .footer-btn.reserve {
  flex: 1.3;
  background-color: #d34c4c;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: none;
}
footer .sp-fixed-footer .footer-btn.reserve img,
footer .sp-fixed-footer .footer-btn.reserve span {
  display: none;
}
footer .sp-fixed-footer .footer-btn:hover {
  background-color: #f5f5f5;
}
@media (min-width: 920px) {
  footer .sp-fixed-footer {
    display: none;
  }
}

/* SP固定フッター
------------------------------------------------------------*/
@media screen and (min-width: 920px) {
  body {
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #333333;
    box-sizing: border-box;
    position: relative;
  }
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 3%;
  }
  .br_sp,
  #hero_image_sp {
    display: none;
  }
  .type_info {
    padding: initial;
    max-width: 850px;
    margin: 60px auto;
    /* .type_name終わり */
    /* .type_detail終わり */
  }
  .type_info .type_name {
    text-align: center;
  }
  .type_info .type_name .type_name_eng {
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 200;
    color: #d34c4c;
    margin-bottom: 0px;
    font-size: 1.8rem;
  }
  .type_info .type_name .type_name_jpn {
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 1.25;
  }
  .type_info .type_name .type_name_jpn::after {
    content: "";
    display: block;
    width: 50px;
    border-bottom: 3px solid #d34c4c;
    margin: 30px auto;
  }
  .type_info .type_detail {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
  }
  .type_info .type_detail .type_desc {
    width: 320px;
    margin-bottom: 20px;
  }
  .type_info .type_detail .selling_info .selling_info_section {
    margin-bottom: 5px;
    display: flex;
    width: 510px;
  }
  .type_info .type_detail .selling_info .selling_info_section .selling_info_title {
    background-color: #FFEBD5;
    padding: 20px 0;
    text-align: center;
    width: 110px;
  }
  .type_info .type_detail .selling_info .selling_info_section .selling_info_detail {
    background-color: #FFF9F1;
    padding: 20px 15px;
    width: 400px;
  }
  .type_info .type_detail .selling_info .selling_info_section .selling_info_detail .ul-blank {
    margin-bottom: 20px;
  }
  .type_info .type_detail .selling_info .selling_info_section .selling_info_detail .annotation {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
  .type_info .type_detail .selling_info .selling_info_section .selling_info_detail ul li a {
    font-weight: 700;
    color: #d34c4c;
    border-bottom: 1px solid #d34c4c;
  }
  .type_info .type_detail .selling_info .selling_info_section .selling_info_detail ul li a i {
    margin-left: 5px;
  }
  .type_info .type_detail .selling_info .selling_info_section .selling_info_detail ul .cake_link, .type_info .type_detail .selling_info .selling_info_section .selling_info_detail ul .cake_tel {
    margin-bottom: 20px;
  }
  /* .type_info終わり */
  .item_name {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.25;
  }
  .price {
    font-weight: 500;
    font-size: 2.2rem;
  }
  .price span {
    font-weight: 400;
    font-size: 1.5rem;
  }
  /* 非表示 */
  #hero_image,
  #nav-sp,
  .group_image_sp,
  .christmas_chicken_img_sp,
  .christmas_cake_img_sp {
    display: none;
  }
  /* PC 共通設定終わり
  ------------------------------------------------------------*/
  header {
    max-width: 1200px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 40px;
    padding: 10px 0 10px 80px;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }
  header .logo_christmas .logo {
    display: none;
    width: 50px;
    height: auto;
  }
  header .logo_christmas .logo-color {
    display: block;
    width: 50px;
    height: auto;
  }
  header.scrolled .logo_christmas .logo-white {
    display: none;
  }
  header.scrolled .logo_christmas .logo-color {
    display: block;
  }
  header .header_nav_pc ul {
    display: flex;
    gap: 50px;
    font-size: 1.6rem;
    font-weight: 700;
  }
  header .header_nav_pc ul a {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  header .header_nav_pc ul a::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #d34c4c;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
  header .header_nav_pc ul a:hover::after {
    transform: scale(1, 1);
  }
  header .lang {
    margin: 0 0 0 50px;
    font-size: 1.3rem;
  }
  header .nav-pc_reservation img {
    width: auto;
    height: 80px;
  }
  #body_copy {
    width: 700px;
    margin: auto;
    padding: 80px 0;
  }
  #body_copy h1 {
    font-size: 2.6rem;
    line-height: 2;
  }
  #christmas_cake {
    padding-bottom: 80px;
    margin-bottom: 0;
  }
  #christmas_cake .christmas_cake_each {
    /* #christmas_cake_left終了 */
    /* #christmas_cake_right終了 */
  }
  #christmas_cake .christmas_cake_each .christmas_cake_left {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_img {
    max-width: 55%;
    height: auto;
    margin-left: 0;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_img .christmas_cake_img_pc {
    border-radius: 0 0 20px 0;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_detail {
    margin-top: 0;
    padding-right: 0;
    width: 42%;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_detail .desc {
    margin-top: 20px;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_detail .cake_section {
    margin-top: 20px;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_detail .cake_section img {
    width: auto;
    height: 200px;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_detail .reservataion_button {
    background-color: #d34c4c;
    display: block;
    padding: 12px 0;
    text-align: center;
    border-radius: 25px;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_left .christmas_cake_detail .reservation_end {
    background-color: #333333;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_right {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_img {
    max-width: 55%;
    height: auto;
    margin-left: 0;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_img .christmas_cake_img_pc {
    border-radius: 0 0 0 20px;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_detail {
    margin-top: 0;
    padding-left: 0;
    width: 42%;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_detail .desc {
    margin-top: 20px;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_detail .cake_section {
    margin-top: 20px;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_detail .cake_section img {
    width: auto;
    height: 200px;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_detail .reservataion_button {
    background-color: #d34c4c;
    display: block;
    padding: 12px 0;
    text-align: center;
    border-radius: 25px;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
  }
  #christmas_cake .christmas_cake_each .christmas_cake_right .christmas_cake_detail .reservation_end {
    background-color: #333333;
  }
  /* #christmas_cake終了 */
  #christmas_chicken .christmas_chicken_each {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  #christmas_chicken .christmas_chicken_each .christmas_fried_chicken {
    width: 48%;
  }
  #christmas_chicken .christmas_chicken_each .christmas_roast_chicken {
    width: 48%;
  }
  #christmas_chicken .christmas_chicken_each .christmas_roast_chicken .christmas_chicken_detail .reservataion_button {
    display: none;
  }
  #christmas_dry_item {
    background-color: #f4f4f4;
    margin-bottom: 0;
    padding-bottom: 120px;
  }
  #christmas_dry_item .christmas_dry_item_each,
  #christmas_dry_item .christmas_bread_each {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2%;
  }
  #christmas_dry_item .christmas_dry_item_each .dry_item,
  #christmas_dry_item .christmas_bread_each .dry_item {
    width: 32%;
    margin-right: initial;
    margin-bottom: 25px;
  }
  #christmas_dry_item .christmas_dry_item_each .dry_item img,
  #christmas_dry_item .christmas_bread_each .dry_item img {
    margin-bottom: 10px;
  }
  #christmas_dry_item .annotation {
    margin-bottom: 50px;
  }
  #christmas_dry_item .swissgourmet {
    display: flex;
    gap: 100px;
    border-top: 1px solid #555555;
    border-bottom: 1px solid #555555;
    padding: 15px 0;
  }
  #christmas_dry_item .swissgourmet .name_tel .swissgourmet-name {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 3px;
  }
  #christmas_dry_item .swissgourmet .time {
    display: flex;
    gap: 50px;
  }
  #christmas_dry_item .swissgourmet .time .weekday {
    margin-bottom: 10px;
  }
  /* #christmas_dry_item終了 */
  #festive_menu {
    background-color: #03113D;
    margin-bottom: 0;
    color: #fff;
    /* .festive_menus */
  }
  #festive_menu .type_desc_festive {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
  }
  #festive_menu .type_desc_festive .br_pc {
    display: initial;
  }
  #festive_menu .selling_info .chicken_reservation {
    font-weight: 800;
  }
  #festive_menu .selling_info .selling_info_detail_chicken {
    margin-top: 10px;
  }
  #festive_menu .festive_menus {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    /* .festive_menu_each */
  }
  #festive_menu .festive_menus .festive_menu_each {
    margin-bottom: 50px;
    width: 48.5%;
    /* .festive_menu_detail終了 */
  }
  #festive_menu .festive_menus .festive_menu_each .festive_menu_img {
    max-width: 100%;
    height: auto;
  }
  #festive_menu .festive_menus .festive_menu_each .festive_menu_detail {
    margin-top: 15px;
    padding-right: 5%;
    /* .festive_menu_name終了 */
    /* .festive_menu_date_price終了 */
  }
  #festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_name {
    margin-bottom: 15px;
  }
  #festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_name .outlet {
    font-size: 1.5rem;
    font-weight: 700;
  }
  #festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_name .menu_name {
    font-size: 1.7rem;
    font-weight: 700;
  }
  #festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_date_price .date {
    font-size: 1.5rem;
  }
  #festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_date_price .price {
    font-size: 1.9rem;
  }
  #festive_menu .festive_menus .festive_menu_each .festive_menu_detail .festive_menu_date_price .price span {
    font-size: 1.5rem;
  }
  #festive_menu .festive_menus .festive_menu_each .reservation_sp {
    display: none;
  }
  #festive_menu .festive_menus .festive_menu_each .reservation_pc .reservataion_button_pc {
    display: block;
    background-color: #d34c4c;
    margin-top: 15px;
    padding: 12px 0;
    text-align: center;
    border-radius: 25px;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    width: 100%;
  }
  /* #festive_menu終了 */
  footer {
    margin-bottom: 0;
    padding-top: 0;
  }
  footer .hotel_logo {
    margin: 60px auto 60px;
    width: 250px;
    height: auto;
  }
  footer #nav-sp {
    display: none;
  }
}
/* PCの設定終わり
------------------------------------------------------------*/
@media screen and (max-width: 919px) {
  .header_nav_pc,
  .nav-pc_reservation,
  #hero_image_pc,
  .group_image_pc,
  .christmas_chicken_img_pc,
  .christmas_cake_img_pc {
    display: none;
  }
}
.test_back01 {
  background-color: #FFCFCF;
  clip-path: polygon(0 0%, 100% 0%, 100% 125%, 0 100%);
  width: 100%;
  height: 200px;
}

.test_img {
  width: 100%;
  height: auto;
}
.test_img img {
  width: 100%;
}

.test_back02 {
  background-color: #d4ff8e;
  clip-path: polygon(0 0%, 100% 25%, 100% 100%, 0 100%);
  color: #ccc;
  padding: 60px 0 10px 0;
}/*# sourceMappingURL=style.css.map */