@charset "UTF-8";
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, img, 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

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

body {
  font-family: helvetica-neue-lt-pro, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: #807874;
  line-height: 1.8;
  font-size: min(1.0666666667vw, 16px);
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  background-color: #ffffff; /* フェードイン時の背景色 */
}
@media (max-width: 768px) {
  body {
    font-size: 3.5897435897vw;
  }
}
body {
  /* headerとfooter以外のコンテンツにフェードインを適用 */
}
body > *:not(header):not(footer):not(.sp-nav-overlay) {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
body.is-loaded > *:not(header):not(footer):not(.sp-nav-overlay) {
  opacity: 1;
}

h1, h2, h3, h4, h5 {
  color: #413530;
  font-weight: bold;
}

.pc_content {
  display: block;
}
@media (max-width: 768px) {
  .pc_content {
    display: none;
  }
}

.sp_content {
  display: none;
}
@media (max-width: 768px) {
  .sp_content {
    display: inline-block;
  }
}

.br {
  display: block;
}
@media (max-width: 768px) {
  .br {
    display: none;
  }
}

.sp_br {
  display: none;
}
@media (max-width: 768px) {
  .sp_br {
    display: block;
  }
}

.container {
  width: 100%;
  max-width: 1250px;
  padding: 0 20px;
  margin: 0 auto;
}

.container_small {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
  margin: 0 auto;
}

a.common_link_btn {
  line-height: 1;
  color: #413530;
  position: relative;
  width: 100%;
  max-width: 350px;
  font-weight: bold;
  font-size: min(1.1333333333vw, 17px);
  padding: 18px 20px 18px 20px;
  display: block;
  white-space: nowrap;
  transition: 0.4s;
}
@media (max-width: 768px) {
  a.common_link_btn {
    padding: 13px 15px 13px 15px;
    font-size: 3.5897435897vw;
    max-width: 500px;
  }
}
a.common_link_btn .common_link_btn__inner {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
a.common_link_btn .common_link_btn__inner img.common_link_btn__icon {
  width: 17px;
}
@media (max-width: 768px) {
  a.common_link_btn .common_link_btn__inner img.common_link_btn__icon {
    width: 4vw;
  }
}
a.common_link_btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid #C6BAB5;
  border-radius: 30px;
  transition: 0.4s;
}
a.common_link_btn:hover:before {
  background: #C6BAB5;
}
@media (max-width: 768px) {
  a.common_link_btn:hover:before {
    background: transparent;
  }
}

a.common_link_btn__arrow:after {
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/arrow.svg) center center no-repeat;
  width: 33px;
  height: 13px;
  background-size: 100%;
}
@media (max-width: 768px) {
  a.common_link_btn__arrow:after {
    width: 6.9230769231vw;
    height: 3.0769230769vw;
  }
}

.link_wrap__center {
  display: flex;
  justify-content: center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 3rem 45px 3rem 45px;
  transition: 0.4s;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5019607843), transparent);
}
@media (max-width: 1200px) {
  header {
    padding: 3rem 20px 0 20px;
  }
}
@media (max-width: 768px) {
  header {
    padding: 0.5rem 20px 0.5rem 20px;
  }
}
header nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav h1 {
  min-width: 228px;
}
@media (max-width: 768px) {
  header nav h1 {
    min-width: auto;
  }
}
header nav a.head_logo {
  width: min(15.2vw, 228px);
  display: block;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
@media (max-width: 768px) {
  header nav a.head_logo {
    width: 31.2820512821vw;
  }
}
header nav ul {
  display: flex;
  align-items: center;
  gap: min(2vw, 30px);
  flex-direction: row;
  justify-content: center;
}
header nav ul li a {
  color: #ffffff;
  font-weight: bold;
  font-size: min(1.0666666667vw, 16px);
  white-space: nowrap;
}
header nav a.head_reserve_btn {
  color: #ffffff;
  width: auto;
  padding: 9px 20px 10px 20px;
}
@media (max-width: 768px) {
  header nav a.head_reserve_btn {
    margin: 0 1rem 0 0;
    font-size: 3.5897435897vw;
    padding: 5px 10px 4px 10px;
  }
}
header nav a.head_reserve_btn:before {
  border: 1px solid #ffffff;
}
header nav a.head_reserve_btn img.common_link_btn__icon__is_open {
  display: none;
}
@media (max-width: 768px) {
  header nav a.head_reserve_btn {
    margin-left: auto;
  }
}
header.is-page {
  padding: 2rem 45px 2rem 45px;
}
@media (max-width: 1200px) {
  header.is-page {
    padding: 0.5rem 20px 0.5rem 20px;
  }
}
header.is-scrolled.is-page {
  padding: 0.8rem 45px 0.8rem 45px;
}
@media (max-width: 1200px) {
  header.is-scrolled.is-page {
    padding: 0.5rem 20px 0.5rem 20px;
  }
}
header.is-scrolled.is-page nav a.head_logo {
  width: min(11.3333333333vw, 170px);
}
@media (max-width: 768px) {
  header.is-scrolled.is-page nav a.head_logo {
    width: 31.2820512821vw;
  }
}
header.is-scrolled {
  padding: 0.8rem 45px 0.8rem 45px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 1200px) {
  header.is-scrolled {
    padding: 0.5rem 20px 0.5rem 20px;
  }
}
header.is-scrolled, header.is-page {
  background: #ffffff;
}
header.is-scrolled nav a.head_logo, header.is-page nav a.head_logo {
  opacity: 1;
  pointer-events: auto;
}
header.is-scrolled nav ul li a, header.is-page nav ul li a {
  color: #413530;
}
header.is-scrolled nav a.head_reserve_btn, header.is-page nav a.head_reserve_btn {
  color: #807874;
  width: auto;
}
header.is-scrolled nav a.head_reserve_btn:before, header.is-page nav a.head_reserve_btn:before {
  border: 1px solid #807874;
}
header.is-scrolled nav a.head_reserve_btn img.common_link_btn__icon, header.is-page nav a.head_reserve_btn img.common_link_btn__icon {
  display: none;
}
header.is-scrolled nav a.head_reserve_btn img.common_link_btn__icon__is_open, header.is-page nav a.head_reserve_btn img.common_link_btn__icon__is_open {
  display: block;
}
header.is-scrolled .hamburger-btn span, header.is-page .hamburger-btn span {
  background-color: #413530;
}
header.is-open {
  background-image: none;
}
header.is-open a.head_logo {
  opacity: 1;
  pointer-events: auto;
}
header.is-open a.head_reserve_btn {
  color: #807874;
  width: auto;
}
header.is-open a.head_reserve_btn:before {
  border: 1px solid #807874;
}
header.is-open a.head_reserve_btn img.common_link_btn__icon {
  display: none;
}
header.is-open a.head_reserve_btn img.common_link_btn__icon__is_open {
  display: block;
}

header ul.pc-nav-list li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-bottom: 2px;
}
header ul.pc-nav-list li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
header ul.pc-nav-list li a:hover::after {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  header ul.pc-nav-list li a:hover::after {
    transform: scaleX(0);
  }
}
header.is-scrolled nav a.head_logo {
  width: min(11.3333333333vw, 170px);
}
@media (max-width: 768px) {
  header.is-scrolled nav a.head_logo {
    width: 31.2820512821vw;
  }
}
header.is-scrolled ul.pc-nav-list li a:after {
  background-color: #413530;
}
header.is-page ul.pc-nav-list li a:after {
  background-color: #413530;
}

/* =========================================
   PC/SP 表示切り替え
   ========================================= */
/* デフォルト（PC） */
.hamburger-btn,
.sp-nav-overlay {
  display: none; /* PCでは隠す */
}

@media (max-width: 768px) {
  /* PCメニューを消す */
  .pc-nav-list {
    display: none;
  }
  /* ハンバーガーを表示 */
  .hamburger-btn {
    display: block;
    position: relative;
    width: 7.1794871795vw;
    height: 12px; /* 高さ */
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
  }
  .hamburger-btn span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    transition: 0.3s;
    left: 0;
  }
  .hamburger-btn span:nth-child(1) {
    top: 2px;
  }
  .hamburger-btn span:nth-child(2) {
    bottom: 2px;
  }
  .hamburger-btn.is-active span {
    background-color: #413530;
  }
  .hamburger-btn.is-active span:nth-child(1) {
    top: 6px;
    transform: rotate(25deg);
  }
  .hamburger-btn.is-active span:nth-child(2) {
    bottom: 5px;
    transform: rotate(-25deg);
  }
  /* SPメニューのオーバーレイ */
  .sp-nav-overlay {
    display: block; /* fadeToggleでトランジションを効かせるためblockを維持 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 10;
    padding-top: 5rem;
    overflow-y: scroll;
    opacity: 0; /* 初期状態は非表示 */
    visibility: hidden; /* クリックできないように */
    pointer-events: none; /* 非表示時はクリックできないように */
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  .sp-nav-overlay a {
    display: block;
    color: #413530;
  }
  .sp-nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
h2.common_h2 {
  line-height: 1.4;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  h2.common_h2 {
    margin-bottom: 2rem;
  }
}
h2.common_h2 .en {
  font-size: min(3.2vw, 48px);
  color: #413530;
  display: block;
  font-family: helvetica-neue-lt-pro, "Yu Gothic", "YuGothic", sans-serif;
}
@media (max-width: 768px) {
  h2.common_h2 .en {
    font-size: 8.2051282051vw;
  }
}
h2.common_h2 .ja {
  font-size: min(1.8666666667vw, 28px);
  color: #807874;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media (max-width: 768px) {
  h2.common_h2 .ja {
    font-size: 4.6153846154vw;
  }
}

a.arrow_link {
  display: flex;
  align-items: center;
  color: #413530;
  gap: 10px;
  font-weight: bold;
}
@media (max-width: 768px) {
  a.arrow_link {
    font-size: 3.3333333333vw;
    gap: 6px;
  }
}
a.arrow_link img.arrow {
  width: 38px;
  transition: 0.4s;
}
@media (max-width: 768px) {
  a.arrow_link img.arrow {
    width: 6.6666666667vw;
  }
}
a.arrow_link .txt {
  position: relative;
  display: block;
}
a.arrow_link .txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #413530;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
a.arrow_link + a.arrow_link {
  margin-top: 0.4rem;
}

.arrow_link:hover .txt::after {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  .arrow_link:hover .txt::after {
    transform: scaleX(0);
  }
}

/*News List*/
ul.news_area__list {
  display: flex;
  gap: 20px;
}
ul.news_area__list li {
  width: 33.333%;
}
ul.news_area__list li a .news_block__thumb {
  border-radius: 24px;
  display: block;
  overflow: hidden;
  margin: 0 0 0.5rem 0;
}
@media (max-width: 768px) {
  ul.news_area__list li a .news_block__thumb {
    border-radius: 5.1282051282vw;
  }
}
ul.news_area__list li a .news_block__thumb img {
  vertical-align: bottom;
  transition: 0.4s;
}
ul.news_area__list li a:hover .news_block__thumb img {
  transform: scale(1.07);
}
@media (max-width: 768px) {
  ul.news_area__list li a:hover .news_block__thumb img {
    transform: scale(1);
  }
}
ul.news_area__list li a .news_block__date {
  display: block;
  color: #807874;
  font-weight: bold;
  font-size: min(0.9333333333vw, 14px);
  margin-bottom: 0.3rem;
}
@media (max-width: 768px) {
  ul.news_area__list li a .news_block__date {
    font-size: 3.0769230769vw;
  }
}
ul.news_area__list li a .news_block__content {
  display: block;
  font-size: min(1vw, 15px);
}
@media (max-width: 768px) {
  ul.news_area__list li a .news_block__content {
    font-size: 3.3333333333vw;
  }
}

.sp-nav-inner {
  padding: 0 20px 8rem 20px;
}
.sp-nav-inner ul.sp-nav__top {
  border-bottom: 1px solid #C6BAB5;
  padding: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sp-nav-inner ul.sp-nav__top li a {
  font-size: 4.6153846154vw;
  color: #413530;
  font-weight: bold;
}
.sp-nav-inner ul.sp-nav__bottom {
  flex-direction: column;
  border-bottom: 1px solid #C6BAB5;
  padding: 2rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .sp-nav-inner ul.sp-nav__bottom {
    border-bottom: transparent;
    padding: 2rem 0 0 0;
  }
}
.sp-nav-inner ul.sp-nav__bottom li a {
  font-size: 3.5897435897vw;
  color: #413530;
  font-weight: bold;
}

/* =========================================
   フッター
   ========================================= */
footer {
  padding: 8rem 0 10rem 0;
  background: #f5f5f5;
}
@media (max-width: 768px) {
  footer {
    padding: 3rem 0 3rem 0;
  }
}

.foot_top_menu_list {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .foot_top_menu_list {
    flex-direction: column;
    gap: 5px;
    border-bottom: 1px solid #C6BAB5;
    padding: 0 0 1.7rem 0;
    margin-bottom: 1.7rem;
  }
}
.foot_top_menu_list a {
  width: 20%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .foot_top_menu_list a {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 15px;
    align-items: center;
  }
}
.foot_top_menu_list a .foot_top_menu_thumb {
  border-radius: 24px;
  overflow: hidden;
  display: block;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .foot_top_menu_list a .foot_top_menu_thumb {
    width: 15.3846153846vw;
    height: 15.3846153846vw;
    border-radius: 50%;
  }
}
.foot_top_menu_list a .foot_top_menu_thumb img {
  vertical-align: bottom;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .foot_top_menu_list a .foot_top_menu_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.foot_top_menu_list a:hover .foot_top_menu_thumb img {
  transform: scale(1.07);
}
@media (max-width: 768px) {
  .foot_top_menu_list a:hover .foot_top_menu_thumb img {
    transform: scale(1);
  }
}
.foot_top_menu_list a .foot_top_menu_ttl {
  font-size: min(1.2vw, 18px);
  color: #413530;
  font-weight: bold;
}
@media (max-width: 768px) {
  .foot_top_menu_list a .foot_top_menu_ttl {
    font-size: 4.6153846154vw;
  }
}

ul.foot_top_menu_list__bottom {
  display: flex;
  gap: 25px;
}
@media (max-width: 768px) {
  ul.foot_top_menu_list__bottom {
    gap: 10px;
    flex-direction: column;
  }
}
ul.foot_top_menu_list__bottom li a {
  color: #413530;
  font-weight: bold;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
ul.foot_top_menu_list__bottom li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #413530;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
ul.foot_top_menu_list__bottom li:hover > ::before {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  ul.foot_top_menu_list__bottom li:hover > ::before {
    transform: scaleX(0);
  }
}
ul.foot_top_menu_list__bottom li.outer a {
  padding: 0 20px 0 0;
  position: relative;
  display: inline-block;
}
ul.foot_top_menu_list__bottom li.outer a:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../images/common/outer_icon.svg) center center no-repeat;
  background-size: 100%;
}
@media (max-width: 768px) {
  ul.foot_top_menu_list__bottom li.outer a:after {
    width: 13px;
    height: 13px;
  }
}

.foot_bottom_area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top: 1px solid #C6BAB5;
  margin: 3.5rem 0 0 0;
  padding: 3.5rem 0 0 0;
}
@media (max-width: 768px) {
  .foot_bottom_area {
    flex-direction: column;
    margin: 1.7rem 0 0 0;
    padding: 1.7rem 0 0 0;
  }
}
.foot_bottom_area .foot_bottom_area__menu {
  width: 70%;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__menu {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
.foot_bottom_area .foot_bottom_area__menu .foot_bottom_area__menu__ttl {
  margin: 0 0 0.5rem 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__menu .foot_bottom_area__menu__ttl {
    margin: 0 0 1rem 0;
  }
}
.foot_bottom_area .foot_bottom_area__info {
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__info {
    width: 100%;
  }
}
.foot_bottom_area .foot_bottom_area__info img.foot_main_logo {
  max-width: 180px;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__info img.foot_main_logo {
    max-width: 35.641025641vw;
  }
}
.foot_bottom_area .foot_bottom_area__info .foot_main_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: min(1.4vw, 21px);
  color: #413530;
  font-family: helvetica-neue-lt-pro, "Yu Gothic", "YuGothic", sans-serif;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__info .foot_main_tel {
    font-size: 4.6153846154vw;
  }
}
.foot_bottom_area .foot_bottom_area__info .foot_main_tel img {
  width: 15px;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__info .foot_main_tel img {
    width: 3.8461538462vw;
  }
}
.foot_bottom_area .foot_bottom_area__menu_inner {
  display: flex;
  gap: 8%;
  flex-direction: row;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__menu_inner {
    flex-direction: column;
    gap: 1.8rem;
  }
}
.foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block .menu_icon_wrap {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block .menu_icon_wrap {
    height: auto;
  }
}
.foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block img.menu_icon__snow_saga {
  max-width: 280px;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block img.menu_icon__snow_saga {
    width: 68.4615384615vw;
  }
}
.foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block img.menu_icon__mitsuse {
  max-width: 184px;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block img.menu_icon__mitsuse {
    width: 43.0769230769vw;
  }
}
.foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block img.menu_icon__starbucks {
  max-width: 60px;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block img.menu_icon__starbucks {
    width: 14.1025641026vw;
  }
}
.foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block .store_name {
  white-space: nowrap;
  display: block;
  color: #413530;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block p {
  font-size: min(0.9333333333vw, 14px);
  margin: 0.5rem 0;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block p {
    font-size: 3.5897435897vw;
  }
}
.foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block p strong {
  font-weight: bold;
}
.foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block p .time {
  font-size: min(1.2vw, 18px);
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block p .time {
    font-size: 3.5897435897vw;
  }
}
.foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block .closing_day {
  font-size: min(0.8666666667vw, 13px);
}
.foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block .closing_day a {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block .closing_day {
    font-size: 3.0769230769vw;
  }
  .foot_bottom_area .foot_bottom_area__menu_inner .foot_bottom_menu__block .closing_day a {
    display: inline;
  }
}

.copy {
  text-align: center;
  margin: 5rem 0 0 0;
  font-size: min(0.9333333333vw, 14px);
  color: #000;
}
@media (max-width: 768px) {
  .copy {
    font-size: 3.0769230769vw;
  }
}
.copy_photo {
  color: #999;
  font-size: min(0.6666666667vw, 10px);
}
@media (max-width: 768px) {
  .copy_photo {
    font-size: 2.0512820513vw;
  }
}

header .head_reserve_start_date {
  font-size: min(0.8vw, 12px);
  font-weight: bold;
  color: #fff;
  margin: 0 0 0 10px;
}
@media (max-width: 768px) {
  header .head_reserve_start_date {
    font-size: 2.5641025641vw;
  }
}
header.is-page .head_reserve_start_date {
  color: #413530;
}
header.is-scrolled .head_reserve_start_date {
  color: #413530;
}
/*# sourceMappingURL=common.css.map */
