@charset "utf-8";

/*--------------------------------------------------------------*/
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ
　　320：スマートフォン縦：基本・レイアウト指定 */
/* ------------------------------------------------------------ */
* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
/*ナビ表示のときはスクロールしないように*/
html.is-locked {
  overflow-y: hidden;
}
body {
  margin: 0;
  padding: 0;
  /* font-size: 1.4rem; */
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  font-family: "M PLUS 1p", YuGothic, "Yu Gothic Medium", "Yu Gothic",
    -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue",
    HelveticaNeue, Verdana, Meiryo, sans-serif !important;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: 0.8;/*headerfooter用*/
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
#header,
#footer {
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, sans-serif !important;
}
main {
  letter-spacing: 0.02em;
}
section img {
  width: 100%;
  border-style: none;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}
img,
video {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.sp_block {
  display: block;
}

.tablet_block {
  display: none;
}

.pc_block {
  display: none;
}

@media (min-width: 600px) {
  .tablet_block {
    display: block;
  }
}

@media (min-width: 767px) {
  .sp_block {
    display: none;
  }

  .pc_block {
    display: block;
  }
}

@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------------------------------ */
/* common layouts */
.wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.content_wrapper {
  position: relative;
  width: 100%;
  height: auto;
  color: var(--main-color);
}

.content_wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../img/bg.png);
  opacity: 0.2;
  z-index: -1;
}

.content_wrapper::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #00367e;
  z-index: -2;
}

.content_inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0 20px;
  margin: 0 auto;
  clear: both;
}

.base {
  position: relative;
  width: 100%;
  height: auto;
  padding: 3em 0;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.txt {
  font-size: 1em;
  line-height: 1.5;
  margin: 0.5em 0;
}
.txt-white {
  color: var(--wht-color);
}

/* a {
  color: #bb000b;
} */

/* a:hover {
  text-decoration: underline;
} */

/* ---------------------- */
/* font */

.m-plus {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
}

.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.eb-garamond {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* ------------------------------------------------------------ */
/* ここから オリジナル */
div#breadcrumb_container ol {
  text-align: left;
  font-weight: 700;
  color: #000;
}

div#breadcrumb_container a {
  color: #bb000b;
}

.content {
  text-align: center;
}

/* ---------------------- */
/* ttl / font */
.main_ttl {
  width: 36%;
  margin: 1em auto;
}

.sub_ttl {
  font-size: 2.5rem;
  color: var(--contrast-color);
  font-weight: 900;
  margin: 1em auto 2em;
}

.catch_txt {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5em;
}

@media (max-width: 430px) {
  .main_ttl {
    width: 80%;
  }
  .catch_txt {
    font-size: 14px;
    margin-bottom: 3em;
  }
}

.box_ttl {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
}

.txt_l {
  font-size: 2rem;
  font-weight: 700;
}

.txt_r {
  font-size: 1.9rem;
}

.txt_m {
  font-size: 1.6rem;
}
@media (max-width: 430px) {
  .txt_m {
    font-size: 1.4rem;
  }
}
.en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}
.caption {
  font-size: 12px;
}
.txt span {
  display: block;
  text-align: left;
}

.notice {
  font-weight: 700;
}

.shoptabBtn .tab {
  display: inline-block;
  padding: 0.2em 1em;
  background: var(--contrast-color);
  color: var(--wht-color);
  border-radius: 5px;
  font-weight: 700;
  margin: 0 0.5em 0 0;
}

.shoptabBtn .tab:last-child {
  margin: 0;
}

@media (max-width: 430px) {
  .shop_list {
    /* margin-top: 40px; */
    margin-top: 110px; /*キャラクター分ずらし*/
  }
}

/* ---------------------- */
/* btn */
.btn {
  display: block;
}

.btn a {
  display: inline-block;
  font-size: 2rem;
  background: var(--rj-color);
  color: var(--wht-color);
  padding: 1em 3em;
  transition: all 0.3s ease;
}

.btn a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.flx_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn:focus,
.btn:active {
  outline: none;
  outline-offset: inherit;
  box-shadow: none;
  text-decoration: none;
}
/* ---------------------- */
/* mainvisual */
.mainvisual {
  position: relative;
}

.mainvisual .content_inner {
  position: relative;
  z-index: 3;
}

.shareBox {
  width: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #00367e;
  border: solid 2px #fff;
  box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.3);
  padding: 55px 10px 25px;
  position: fixed;
  right: 1px;
  bottom: 10%;
  z-index: 99999;
}
.shareBox .shareBox_ttl {
  color: #fff;
  transform: rotate(90deg);
  font-size: 32px;
  font-weight: bold;
}
.shareBox .shareBox_x {
  /* width: 62%; */
  margin-top: 45px;
}
.shareBox .shareBox_line {
  /* width: 76%; */
  margin-top: 10px;
}
@media (max-width: 430px) {
  .shareBox {
    width: 50px;
    padding: 40px 10px 25px;
  }
  .shareBox .shareBox_x {
    margin-top: 35px;
  }
  .shareBox .shareBox_ttl {
    font-size: 22px;
  }
}

/* ---------------------- */
/* bn_area */
.bn_area {
  position: absolute;
  width: 140px;
  height: 30px;
  bottom: 35px;
  right: 10px;
  z-index: 100;
}

.bn_area a img {
  max-width: 180px;
  margin: 0 auto;
  transition: all 0.3s;
}

.bn_area a:hover img {
  opacity: 0.7;
}

/* ---------------------
characterArea
------------------------*/
section {
  position: relative;
}
.characterArea {
}
.characterArea .chara {
  width: 310px;
  position: absolute;
  z-index: 2;
}
.chara-sin {
}
.chara-eisei {
  right: 0;
  /* top: 12%; */
  top: 15%;
}
.chara-karyouten {
}
.chara-kanki {
  right: 0;
  bottom: -10%;
}
.chara-ouhon {
  left: 2%;
  top: -5%;
}
.chara-kyokai {
}
.chara-ouki {
  right: 0;
  bottom: -18%;
}
.chara-riboku {
  top: 13%;
  left: -1%;
}
.chara-mouten {
  bottom: 10%;
  left: -1%;
}
.chara-youtanwa {
  right: 2%;
  bottom: 1%;
}
@media (max-width: 1500px) {
  .characterArea .chara {
    /* width: 284.5px; */
    width: 239px;
  }
  .chara-sin {
    top: 10%;
    left: 5%;
  }
}
@media (max-width: 1100px) {
  .characterArea .chara {
    width: 21%;
  }
}
@media (max-width: 430px) {
  .characterArea .chara {
    width: 39%;
  }
  .chara-eisei,
  .chara-karyouten,
  .chara-ouhon,
  .chara-riboku,
  .chara-mouten {
    display: none;
  }
  .chara-sin {
    /* top: 16.5%; */
    top: 17.5%;
  }
  .chara-kanki {
    /* bottom: -12%; */
    bottom: -16%;
  }
  .chara-kyokai {
    left: -4.5%;
    top: -5%;
  }
  .chara-ouki {
    bottom: -10%;
  }
  .chara-youtanwa {
    bottom: -55px;
  }
}

/* ---------------------- 
room 
----------------------*/
.room {
  color: var(--contrast-color);
  position: relative;
}

.room .room-slider {
  position: relative;
}

.book .room-slider {
  color: var(--main-color);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--contrast-color);
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  opacity: 0.4;
}

.room .room_box {
  position: relative;
  min-height: 630px;
  background: #00367e;
  padding: 1em;
}

.room .room_box .box_ttl {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  height: 50px;
  margin: 0 0 10px;
}

.room .room_box .box_ttl small {
  width: 100%;
  color: #a67eb7;
  font-weight: bold;
}

.room .room_box .room_img img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.room .room_box .num {
  position: absolute;
  top: -19px;
  left: 14px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--main-color);
}

.room .room_box .num .number {
  font-size: 2.3rem;
}

.room .room_box .txt_area tr:first-of-type {
  height: 122px;
}

.room .room_box .txt_area tr th,
.room .room_box .txt_area tr td {
  display: block;
}

.room .room_box .txt_area tr td {
  padding: 0 0 1em 0;
}

.room .room_box .txt_area {
  text-align: left;
  margin-top: 1em;
}

.room .room_box .txt_l {
  color: var(--main-color);
  margin: 1em 0;
}

.room .item:nth-of-type(1),
.room .item:nth-of-type(2),
.room .item:nth-of-type(3) {
  width: calc(100% / 3 - 1em);
}

.room .item:nth-of-type(1) img,
.room .item:nth-of-type(2) img,
.room .item:nth-of-type(3) img {
  width: 80%;
  margin: 0 auto;
}

.room .item:nth-of-type(4),
.room .item:nth-of-type(5),
.room .item:nth-of-type(6),
.room .item:nth-of-type(7) {
  width: calc(100% / 4 - 0.2em);
}

/*-----------------------
  ページ内リンク
  ------------------------*/
.pageLink {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
.pageLink li {
  width: 23%;
}
.pageLink li:nth-child(n + 2) {
  margin-left: 4%;
}
@media (max-width: 430px) {
  .pageLink {
    margin-bottom: 50px;
  }
  .pageLink li {
    width: 31%;
  }
  .pageLink li:nth-child(n + 2) {
    margin-left: 3%;
  }
}

/*-----------------------
  タブ
  ------------------------*/
/*shoptab*/
.shoptab-btn {
  position: relative;
  display: flex;
  margin: 0;
  color: #000;
  z-index: 2;
}
.shoptab-btn {
}
.shoptabBtn {
  width: calc((100% - 20%) / 7);
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  margin: 0 6px;
  cursor: pointer;
}
.shoptabBtn span {
  display: block;
  padding: 0.8em 0;
  background-color: #b9d3e1;
  transition: 0.2s;
}
.shoptabBtn.active {
  box-shadow: 4px 4px 0 #000;
}
.shoptabBtn.active span,
.shoptabBtn span:hover {
  background-color: #d8e9f2;
}
/*shoptab-container*/
.shoptab-container {
  background-image: url(../img/room_deco_red-1.png),
    url(../img/room_deco_red-2.png);
  background-position: 103% -20px, 0 110%;
  background-size: 220px 200px, 205px 175px;
  background-repeat: no-repeat, no-repeat;
  background-color: #d8e9f2;
  padding: 50px 0;
  position: relative;
  transform: translateY(-1px);
  z-index: 2;
}
.shoptabCnt {
  visibility: hidden;
  height: 0;
}
.shoptabCnt.show {
  visibility: visible;
  height: auto;
}
@media (max-width: 430px) {
  .shoptabBtn {
    width: 5.3em;
    font-size: 18px;
    margin: 0 6px;
    flex-shrink: 0;
  }
  .shoptab-btn {
    overflow-x: scroll;
    -ms-overflow-style: none;
    overflow-y: hidden;
  }
}
/*-----------------------
  スライダー
  ------------------------*/
.no_slider {
  margin: 0 auto;
}

.swiper-wrapper {
  transition-timing-function: linear;
}
/*スライダーなし対応*/
.room-Noslider .swiper-wrapper {
  justify-content: center;
}
.room-Noslider .room_box {
  /* margin: 0 10px; */
}

.room-Noslider .swiper-slide.room_box {
  flex-shrink: inherit;
}

.room-Noslider .swiper-slide.room_box {
  margin: 0 auto;
}

.room-Noslider .swiper-slide.room_box {
  margin: 0 10px 0 0;
}

.room-Noslider .shop_card {
  width: 300px;
  margin: 0 auto;
}

.room-Noslider .swiper-slide.room_box:first-child .shop_card {
  margin: 0 0 0 auto;
}

.room-Noslider .swiper-slide.room_box:nth-of-type(2) .shop_card {
  margin: 0 auto 0 0;
}

.roomonly2.flx_box {
  display: flex;
  justify-content: center;
}

.roomonly2.flx_box .room_box {
  width: 20%;
  min-height: 415px;
  margin: 0 10px;
}

.shop_card {
  min-height: 415px;
  height: 100%;
}
@media (max-width: 1400px) {
  .roomonly2.flx_box .room_box {
    width: 30%;
  }
}
@media (max-width: 1000px) {
  .roomonly2.flx_box .room_box {
    width: 40%;
  }
}
@media (max-width: 430px) {
  .roomonly2.flx_box .room_box {
    min-height: 445px;
  }
  .shop_card {
    min-height: 600px;
  }
}

.no_slider .shop_card {
  width: 300px;
  margin: 0 auto;
}

.shop_name {
  text-align: left;
  color: var(--wht-color);
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--wht-color);
  margin-bottom: 15px;
}
.shop_concept {
  text-align: left;
}
@media (max-width: 430px) {
  .shop_concept {
    font-size: 1.8rem;
  }
}
.shop_roomimg {
  margin: 0.5em 0;
}
.shop_roomimg-not,.moji_none{
  position: relative;
}
.shop_roomimg-not:before,.moji_none:before{
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
/* .shop_roomimg-not:after {
  content: "COMING SOON";
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  background-color: #00367e;
  padding: 0.5em 0.7em;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 3;
} */
.shop_data {
  margin: 15px 0;
}
table {
  text-align: left;
  font-size: 14px;
}
tr:first-of-type td {
  height: 10em;
  vertical-align: top;
}
th {
  width: 5em;
  padding-bottom: 1em;
  vertical-align: top;
}
td {
  padding-bottom: 1em;
}
td {
  padding-left: 1em;
}
.shop_btn {
  width: 55%;
  margin: 28px auto 0;
}
.shop_btn a {
  display: block;
  background-color: var(--rj-color);
  color: var(--wht-color);
  font-size: 18px;
  padding: 0.5em;
}
.shop_btn-close {
  pointer-events: none;
}
.shop_btn-close a {
  background-color: #d9d9d9;
  color: #00367e;
}
@media (max-width: 430px) {
  /*room_box*/
  .room_box {
    /* width: 84% !important; */
  }
}

/*------------------------------
presentBlock
-------------------------------*/
.presentBlock {
  color: var(--contrast-color);
  padding: 70px 0 0;
  position: relative;
}
.presentBlock-room .sub_ttl {
  width: 35%;
  margin: 0 auto;
}
.presentBlock-room .presentgoods {
  width: 42%;
  margin: 0 auto;
}
.presentBlock-food {
  color: var(--main-color);
}
.presentBlock-food .sub_ttl {
  width: 27%;
  margin: 0 auto;
}
.presentBlock-food .presentgoods {
  width: 47%;
  margin: 30px auto 0;
}
@media (max-width: 430px) {
  .presentBlock {
    padding: 50px 0;
  }
  .presentBlock-room .sub_ttl {
    width: 80%;
  }
  .presentBlock-room .presentgoods {
    width: 76%;
  }
  .presentBlock-food .sub_ttl {
    width: 73%;
  }
  .presentBlock-food .presentgoods {
    width: 80%;
  }
}

/*------------------------------
food
-------------------------------*/
/* food */
.food {
  background-image: url(../img/bg_food.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.food_box {
  font-size: 18px;
  color: var(--wht-color);
  background-color: #00367e;
  padding: 30px 15px;
}
.food_box .food_img {
  margin-bottom: 15px;
}
.food_box .food_price {
  font-size: 20px;
}
.food_box .food_price span:before {
  content: "¥";
  margin-right: 0.5em;
}

@media (max-width: 430px) {
  .food-slider {
    margin-bottom: 30px;
  }
  .food_box {
    font-size: 16px;
  }
}

/*------------------------------
goods
-------------------------------*/
.goods {
  color: var(--contrast-color);
}
.goods .main_ttl {
  width: 59%;
}
/*goodsBlock*/
.goodsBlock {
  width: 74%;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 50px 40px;
  margin: 0 auto;
}
.goodsBlock:nth-child(n + 2) {
  margin-top: 50px;
}
.goodsBlock_catch {
  width: 50%;
  margin: 0 auto 30px;
}
.goodsBlock_ttl {
  width: 60%;
  margin: 20px auto 30px;
}
.goodsBlock_ttl:nth-child(n + 2) {
  margin-top: 40px;
}
.goodsBlock_img {
  width: 80%;
  margin: 0 auto 20px;
}
.goodsBlock_price {
  font-size: 24px;
  font-weight: bold;
  margin-top: 0.5em;
}
.goodsBlock_price:before {
  content: "各¥";
}
.goodsBlock_price:after {
  content: "（税込）";
  font-size: 0.5em;
}
@media (max-width: 430px) {
  .goodsBlock {
    width: 100%;
    padding: 40px 30px;
  }
  .goods .main_ttl {
    width: 100%;
  }
  .goodsBlock_catch {
    width: 100%;
  }
  .goodsBlock_ttl {
    width: 100%;
  }
  .goodsBlock_img {
    width: 100%;
  }
  .goodsBlock_size {
    font-size: 1.3em;
  }
  .goodsBlock_price {
    font-size: 18px;
  }
}

/* ---------------------- */
:root {
  scroll-padding: 60px;
}

.campaign.base {
  padding: 10em 0;
}

.campaign .sub_ttl {
  font-size: 2rem;
}

.campaign .img_box {
  margin: 3em 0;
}

.campaign .txt {
  margin: 2em 0;
}

/* .bg_rainbow {
  position: relative;
}

.bg_rainbow::before {
  position: absolute;
  content: "";
  background: linear-radient(-45deg, #fadce9, #fffcdb, #c7e8fa);
  width: 100%;
  height: 100%;
  z-index: 1;
} */

.bg_rainbow {
  background: linear-gradient(-45deg, #fadce9, #fffcdb, #c7e8fa);
  width: 100%;
  height: 100%;
  clip-path: circle(70% at 52% 43%);
}

/* ----------------------
store
---------------------- */
.store {
}
.storeTabs {
  width: 82%;
  margin: 40px auto 20px;
}
.storeTabs-btn {
  display: flex;
  justify-content: space-between;
  gap: .4px;
}
.storeTabs-btn .tab {
  /* width: calc((100% - 5%) / 5); */
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  background-color: #b9d3e1;
  cursor: pointer;
  transition: 0.2s;
}

.storeTabs-btn .tab.active,
.storeTabs-btn .tab:hover {
  background-color: #d8e9f2;
}
/*タブの中身*/
.storeTabs-container {
}
.storeTabs-container .content {
  display: none; /*必須*/
  background-color: #d8e9f2;
  padding: 40px 50px;
  animation: fadeIn 1s ease;
}
.storeTabs-container .content.show {
  display: block; /*必須*/
}
.storeTabs-container .content .scrollInner {
  height: 280px;
  padding-right: 10%;
  overflow-y: scroll;
}
.storeTabs-container .content .scrollInner dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  text-align: left;
  border-bottom: solid 1px #00000066;
  padding-bottom: 1em;
}
.storeTabs-container .content .scrollInner dl dt {
  font-weight: normal;
}
.storeTabs-container .content .scrollInner dl dt:first-child {
  width: 5em;
  margin-right: 2em;
}
.storeTabs-container .content .scrollInner dl dt:nth-child(2n) {
  min-width: 8em;
}
.storeTabs-container .content .scrollInner dl dd {
  width: 10em;
  text-align: center;
  clip-path: polygon(93% 0, 100% 50%, 93% 100%, 0% 100%, 0% 0%);
  margin-left: auto;
}
.storeTabs-container .content .scrollInner dl dd a {
  display: block;
  color: var(--wht-color);
  background-color: var(--main-color);
  padding: 0.2em 0;
}
.storeTabs-container .content .scrollInner dl dd a:hover {
  background-color: var(--rj-color);
}
@media (max-width: 430px) {
  .store {
    padding-bottom: 80px; /*キャラクター分ずらし*/
  }
  .storeTabs {
    width: 100%;
  }
  .storeTabs-btn{
    gap: initial;
  }
  .storeTabs-btn .tab {
    flex-shrink: 0;
  }
  .storeTabs-btn {
    overflow-x: scroll;
    -ms-overflow-style: none;
    overflow-y: hidden;
  }
  .storeTabs-btn .tab {
    font-size: 16px;
    margin-right: 10px;
  }
  .storeTabs-container .content {
    padding: 30px 25px;
  }
  .storeTabs-container .content .scrollInner {
    /* height: auto; */
    height: 290px;
    padding: 0;
  }
  .storeTabs-container .content .scrollInner dl {
    font-size: 14px;
  }
  .storeTabs-container .content .scrollInner dl dt:first-child {
    width: 4.5em;
    margin-right: 1em;
  }
  .storeTabs-container .content .scrollInner dl dt:nth-child(2n) {
    width: 8em;
  }
  .storeTabs-container .content .scrollInner dl dd {
    width: 6.5em;
  }
}

/* ----------------------
contact
---------------------- */
/* contact */
.contact.base {
  background-image: url(../img/bg_food.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact .main_ttl {
  margin: 1em auto 0;
}

.contact .bg_clear {
  max-width: 700px;
  position: relative;
  background: var(--bg-clear);
  padding: 5em 1em 3em;
  margin: 0 auto;
}

.contact .txt_m {
  line-height: 1.8;
  margin: 2em 0;
}

@media (max-width: 430px) {
  .contact {
    padding-top: 70px; /*キャラクター分ずらし*/
  }
  .contact .txt_m {
    margin: 1em 0;
  }
}
.contact .txt {
  text-align: left;
  padding: 0;
}

.contact .txt li {
  position: relative;
  padding: 0 0 0 1em;
  margin: 0 0 0.5em 0;
}

.contact .btn a {
  padding: 0.6em 3em;
  box-shadow: -2px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact .txt li::before {
  position: absolute;
  content: "";
  background: var(--main-color);
  width: 4px;
  height: 4px;
  left: 0;
  top: 9px;
  border-radius: 50%;
}

.credit {
  padding: 0 0 5em 0;
}

/* ----------------------
about
---------------------- */
#about {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
  .wrap {
    margin: 0;
  }
  h2 {
    width: 100%;
    font-size: 22px;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    padding: 0.5em 0;
    margin: 0;
  }
  .ttl_box {
    width: 42%;
    margin: 30px auto;
  }
  @media (max-width: 430px) {
    .ttl_box {
      width: 86%;
    }
  }

  /*flexBox*/
  .flexBox {
    width: 890px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }
  .txt_box {
    width: 54%;
    text-align: left;
  }
  .link_box {
    width: 37%;
  }
  .btn {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }
  .btn a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background: var(--rj-color);
    color: #fff;
    padding: 0.5em 1em;
    transition: 0.5s;
  }
  @media (max-width: 430px) {
    .btn a {
      padding: 1em;
    }
  }
  @media (max-width: 880px) {
    .btn a {
      font-size: 18px;
    }
  }
  @media (max-width: 800px) {
    .btn a {
      font-size: 16px;
    }
  }
  @media (max-width: 750px) {
    .btn a {
      font-size: 14px;
    }
  }
  @media (max-width: 600px) {
    .btn a {
      font-size: 12px;
    }
  }
  @media (max-width: 550px) {
    .btn a {
      font-size: 10px;
    }
  }
  .btn a:hover {
  }
  .btn a span {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn a span:after {
    content: "";
    width: 0.8em;
    height: 0.8em;
    display: inline-block;
    background-image: url(../img/about_link.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 0.7em;
  }
  .sns {
    border: solid 2px #000;
    background-color: var(--wht-color);
  }
  .sns_ttl {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #000;
    padding: 0.3em 0;
  }
  .sns ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }
  .sns ul li {
    width: 50px;
    margin: 0 15px;
  }
  .copyright {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin: 45px auto 0;
    padding-bottom: 20px;
  }
  @media (max-width: 1000px) {
    /*flexBox*/
    .flexBox {
      width: 100%;
    }
  }
  @media (max-width: 430px) {
    .txt_box {
      width: 100%;
      font-size: 1.3rem;
    }
    .link_box {
      width: 100%;
      margin-top: 30px;
    }
    .btn a span {
      font-size: 15px;
    }
    .copyright {
      font-size: 12px;
      margin: 25px auto 0;
    }
  }
}

@media screen and (min-width: 375px) {
  .mainvisual .mv_txt .extend {
    width: 180px;
  }
}

@media (max-width: 430px) {
}
/* ==============================================================
 スマホ　横
================================================================= */
@media screen and (min-width: 440px) {
  .mainvisual {
    position: relative;
  }

  .food.base {
  }

  .contact.base {
  }
}

/* ==============================================================
 タブレット
================================================================= */
@media screen and (min-width: 600px) {
  /* 600px以上(タブレット) */
  .base {
    padding: 5em 0 8em;
  }

  .content_inner {
    padding: 0 3em;
  }

  .sp-only {
    display: none;
  }

  .tablet {
    display: block;
  }
  .bn_area {
    bottom: 160px;
    right: 25px;
  }

  .food .box.card .flx_box {
    width: 60%;
  }

  .event .flx_box {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
  }

  .event .flx_box .item {
    position: relative;
    width: calc(100% / 2 - 1em);
    margin: 0 0 2em 0;
  }
}

@media screen and (min-width: 768px) {
  .food .menu_box .box_ttl {
    min-height: 110px;
  }

  .food .menu_box .txt_area p:last-child {
    min-height: 100px;
  }
}

.narrow {
  max-width: 63%;
  margin: 2em auto 0;
}
@media (max-width: 430px) {
  .narrow {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  /* 1024px以上（PC） */

  .content_inner {
    max-width: 1000px;
  }

  .pc {
    display: block;
  }
  .sp {
    display: none;
  }

  .width80 {
    max-width: 600px;
    margin: 0 auto;
  }

  /*--------------------------------------------------------------*/
  /* ------------------------------------------------------------ */
  /* ここからコンテンツ  ページ独自レイアウト */
  /* ------------------------------------------------------------ */

  .mainvisual {
  }
  .bn_area {
    width: 180px;
    bottom: 30%;
    right: 10%;
  }

  /* common */

  /* section */
  .room .room_box {
    min-height: 640px;
    padding: 2em;
  }

  .room .txt_area {
    display: table;
    border-collapse: collapse;
    width: 100%;
  }

  .room .room_box .txt_area tr {
    vertical-align: text-top;
  }

  .room .room_box .txt_area tr:first-of-type {
    height: 100px;
  }

  .room .room_box .txt_area tr th,
  .room .room_box .txt_area tr td {
    display: table-cell;
  }

  .room .room_box .txt_area tr th {
    width: 16%;
  }

  .room .flx_box {
    flex-wrap: nowrap;
    /* justify-content: space-between; */
    align-items: flex-start;
    margin: 0 0 2em 0;
  }

  .room .flx_box.mw500 {
    max-width: 380px;
    justify-content: center;
    margin: 0 auto 2em;
  }
  .food .flx_box {
    justify-content: center;
    margin: 2em 0;
  }

  .food .menu_box {
    margin: 2em 1em;
  }

  .food .box.card .flx_box {
    width: 100%;
    max-width: 750px;
  }

  .food .box.card .flx_box .item {
    width: calc(100% / 5 - 1em);
    /* margin: 0.5em; */
  }

  .event .flx_box .item img {
    width: 500px;
  }
}
@media screen and (min-width: 1100px) {
  .room .room_box .txt_area tr th {
    width: 21%;
  }
  .book::after {
    height: 380px;
    bottom: -320px;
  }
}
@media screen and (min-width: 1200px) {
}
@media screen and (min-width: 1300px) {
}

@media screen and (min-width: 1440px) {
}

@media screen and (min-width: 1600px) {
}
