@charset "utf-8";

/* GLOBAL
---------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  cursor: default;
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "游ゴシック", YuGothic,
      "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック",
      "MS PGothic", sans-serif;
  }
}

.barlow {
  font-family: "Barlow Semi Condensed", sans-serif;
  color: #919191;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  z-index: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  letter-spacing: 0.02em;
  height: auto !important;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* Misc.
---------------------------------------------------------- */
a {
  color: #000;
  outline: none;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

a[href^="tel:"] {
  pointer-events: none;
}

label {
  cursor: pointer;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

ul,
li {
  list-style: none;
}

address {
  font-style: normal;
}

img {
  display: block;
}

/*表示非表示*/
.show_mobile_inline,
.show_mobile {
  display: none;
}

.hide_mobile {
  display: block;
}

.hide_mobile_inline {
  display: inline-block;
}

/* 共通
---------------------------------------------------------- */
main {
  padding-top: 127px;
  display: block;
  height: 100%;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
}

.obj_fit_img,
.pick_up_items_img img,
.pick_up_items_img_none img {
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

/*画面スクロール時*/
.when_scroll .header_wrap {
  height: 87px;
}

.when_scroll .header_logo img {
  max-width: 200px;
}

.when_scroll .nav_content,
.when_scroll .nav_close {
  top: 87px;
}

.when_scroll main {
  padding-top: 97px;
}

/*青ボタン*/
.bl_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 240px;
  height: 44px;
  padding-right: 44px;
  padding-left: 12px;
  position: relative;
  border-radius: 22px;
  background: #1bb8ce;
}

.bl_btn.center {
  margin: auto;
}

.bl_btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  background: #e60012;
  transform-origin: right top;
  transform: skewX(-30deg);
  transition: all 0.3s;
}

.bl_btn:hover::before {
  width: 100%;
}

.bl_btn span {
  z-index: 2;
  font-weight: bold;
}

.bl_btn span:last-child {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background-color: #000;
  background-image: url(../img/right_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px 12px;
}

/*hover*/
a:not(.bl_btn),
label,
button,
.hv_opacity {
  transition: opacity 0.3s;
}

a:not(.bl_btn):hover,
label:hover,
button:hover,
.hv_opacity:hover {
  text-decoration: none;
  opacity: 0.5;
}

/* header
---------------------------------------------------------- */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.header_wrap {
  padding: 0.625rem 5% 0;
  height: 127px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #fff;
  -moz-transition: height 0.3s;
  -o-transition: height 0.3s;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}

.header_wrap::before {
  content: "";
  position: absolute;
  display: block;
  height: 10px;
  width: 50%;
  top: 0;
  left: 0;
  background-color: #1bb8ce;
}

.header_wrap::after {
  content: "";
  position: absolute;
  display: block;
  height: 10px;
  width: 50%;
  top: 0;
  right: 0;
  background-color: #e60012;
}

/*ハンバーガーメニュー、検索ボタン*/
.menu_search {
  width: 30%;
  display: flex;
  align-items: center;
}

/*ハンバーガーメニュー*/
.nav_drawer {
  position: relative;
}

.nav_unshown {
  display: none;
}

/*アイコンスペース*/
.nav_open {
  display: block;
  margin: auto 0;
  width: 36px;
  height: 32px;
}

/*ハンバーガーアイコン*/
.nav_open span,
.nav_open span:before,
.nav_open span:after {
  position: absolute;
  width: 36px;
  height: 6px;
  background: #e60012;
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s;
}

.nav_open span:before {
  bottom: -13px;
  background: #1bb8ce;
}

.nav_open span:after {
  bottom: -26px;
  background: #000;
}

.header_search .nav_open span {
  display: none;
}

/*閉じる用の薄黒カバー*/
.nav_close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 127px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/*中身*/
.nav_content {
  overflow: auto;
  position: fixed;
  top: 127px;
  left: 0;
  z-index: 100;
  width: 90%;
  max-width: 290px;
  height: auto;
  max-height: calc(100% - 127px);
  background: #fff;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

/*項目*/
.menu_ul {
  padding-bottom: 1rem;
}

.menu_ul li {
  border-bottom: dashed 1px #d8d8d8;
  margin: 0 1.125rem;
}

.menu_ul li:last-child {
  border: none;
}

.menu_ul li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 69px;
  padding: 0 0.625rem;
}

.menu_ul li a:after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: 0.3rem;
  transform: translateY(-50%);
  background: url(../img/gy_right_arrow.svg) no-repeat center;
  width: 14px;
  height: 14px;
}

.menu_ul li .menu_icon {
  width: 23%;
  margin-right: 1.75rem;
}

.menu_ul li .menu_text_img {
  height: 18px;
}

.menu_ul .min_wrap a {
  padding: 0 1.25rem;
  height: 58px;
  font-size: 0.875rem;
  font-weight: bold;
}

/*follow us*/
.menu_ul .follow_us_wrap a {
  display: flex;
  align-items: center;
  padding: 2.34375rem 0.625rem 0.5625rem 0;
  height: auto;
}

.menu_ul .follow_us_wrap a::after, .menu_ul .hbg_translation_btn a::after {
  content: none;
}



.follow_us_text {
  background: url(../img/follow_us.svg) no-repeat center;
  background-size: 100%;
  width: 160px;
  height: 28px;
  margin-right: 1.6875rem;
}

.bk_insta_icon {
  background: url(../img/insta_bk_icon.svg) no-repeat center;
  background-size: 100%;
  width: 40px;
  height: 40px;
}

/*チェックが入った場合表示*/
#nav_input:checked~.nav_close {
  display: block;
  opacity: 0.5;
}

#nav_input:checked~.nav_content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

/*closeアイコン*/
#nav_input:checked~.nav_open span,
#search_nav:checked~.nav_open span {
  display: block;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 13px;
}

#nav_input:checked~.nav_open span:before,
#search_nav:checked~.nav_open span:before {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
  bottom: 0;
}

#nav_input:checked~.nav_open span:after,
#search_nav:checked~.nav_open span:after {
  content: none;
}

/*検索ボタン*/
.header_search {
  margin-left: 10.6194690265%;
}

.search_icon {
  transition: opacity 0.3s;
  width: 30px;
  height: 30px;
}

/*中身*/
.header_search .nav_content {
  display: none;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: 160px;
  -webkit-transform: translateY(-127px);
  transform: translateY(-127px);
  z-index: -100;
}

/*フォーム*/
.words_search {
  position: relative;
  height: auto;
  width: 66.1%;
  margin: 0 auto;
}

.words_search input {
  width: 100%;
  height: 65px;
  margin: 2.8125rem auto 3.125rem;
  border: solid 1px #979797;
  padding: 0 16.6414523449% 0 5.2631578947%;
}

.words_search input[type="search"] {
  -webkit-appearance: none;
  border-radius: 3px;
  line-height: normal;
}

/*プレースホルダー*/
.words_search input::placeholder,
.words_search input:-ms-input-placeholder,
.words_search input::-ms-input-placeholder {
  color: #b6b6b6;
}

/*submitボタン*/
.words_search button {
  position: absolute;
  top: 2.8125rem;
  right: 0;
  width: 110px;
  height: 65px;
  padding: 0 1.375rem 0 3.125rem;
  background-color: #000;
  border-radius: 0 3px 3px 0;
  color: #fff;
  font-weight: bold;
}

.words_search button::before {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 24px;
  width: 20px;
  height: 20px;
  background: url(../img/wh_search_icon.svg) no-repeat;
  background-size: 100%;
}

/*チェックが入った場合表示*/
#search_nav:checked~.nav_open .search_icon {
  opacity: 0;
}

#search_nav:checked~.nav_close {
  display: block;
  opacity: 0.5;
}

#search_nav:checked~.nav_content {
  display: block;
  z-index: 100;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#search_nav:checked~.nav_content .words_search {
  display: block;
}

/*ロゴ*/
.header_logo {
  width: 240px;
}

.header_logo img {
  width: 100%;
  max-width: 240px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/*翻訳ボタン*/
.translation_btn_wrap {
  width: 30%;
  display: flex;
  justify-content: flex-end;
}

.english {
  background: url(../img/english_icon.svg) no-repeat;
  margin-right: 4.9275362319%;
}

.korean {
  background: url(../img/korean_icon.svg) no-repeat;
  margin-right: 4.9275362319%;
}

.traditional {
  background: url(../img/traditional_icon.svg) no-repeat;
  margin-right: 4.9275362319%;
}

.hbg_translation_btn .simplified,
.translation_btn_wrap .simplified {
  background: url(../img/simplified_icon.svg) no-repeat;
  background-size: 100%;
}

/* Footer
---------------------------------------------------------- */
footer {
  background-color: #1a1c1e;
  color: #fff;
  width: 100%;
  margin-top: auto;
}

footer .container {
  padding: 2.3125rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer_left {
  display: flex;
  align-items: center;
  width: 54%;
}

/*ロゴ*/
.footer_logo {
  width: 31.8302387268%;
  max-width: 140px;
  margin-right: 10%;
}

.footer_logo img {
  width: 100%;
}

/*住所、営業時間*/
.address_business_hours_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.address_business_hours_wrap p {
  margin-bottom: 0.1875rem;
  line-height: 17px;
  letter-spacing: 0.51px;
  font-size: 0.8125rem;
}

/*住所*/
.address_box {
  margin-bottom: 1.5625rem;
}

.address_box .title,
.business_hours_wrap .title {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  line-height: 20px;
  letter-spacing: 0.05rem;
  font-weight: bold;
}

.business_hours_wrap .subtitle {
  font-weight: bold;
}

.business_hours_wrap address {
  font-size: 0.875rem;
}

.business_hours_wrap:last-child {
  margin-top: 1rem;
}

/*営業時間*/
.business_hours_wrap p {
  margin: 0 0 0.1875rem 0;
}

.business_hours_wrap p:last-child {
  margin-bottom: 0;
}

/*リンク親*/
.footer_link {
  width: 46%;
  max-width: 408px;
}

.footer_link a {
  color: #fff;
}

/*リンク上*/
.link_top {
  display: flex;
  flex-wrap: wrap;
}

.link_top li {
  width: calc((100% - 0.75rem) / 3);
  width: -webkit-calc((100% - 0.75rem) / 3);
  margin: 0 0 1.3rem 0.25rem;
}

.link_top li a {
  display: block;
  position: relative;
  padding: 0.1rem 0 0.1rem 1.1rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
}

.link_top li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  height: 10px;
  width: 10px;
  transform: translateY(-50%);
  background-image: url(../img/footer_list_mark.svg);
  background-size: 10px;
}

.link_top li a .link_top_text_s {
  letter-spacing: -0.06em;
}

/*リンク下*/
.link_bottom {
  display: flex;
  font-size: 0.875rem;
  padding-top: 0.9375rem;
  margin-top: 0.625rem;
  border-top: solid 1px #d8d8d8;
}

.link_bottom li {
  margin-bottom: 1.3125rem;
}

.link_bottom li a {
  display: block;
  position: relative;
  padding: 0.3125rem 0.625rem;
}

.link_bottom li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  height: 2px;
  width: 2px;
  background-color: #fff;
  border-radius: 50px;
}

/*コピーライト*/
.copyright {
  background-color: #000;
  color: #fff;
  font-size: 0.625rem;
  font-weight: bold;
  text-align: center;
  padding: 0.9375rem;
  letter-spacing: 0.06rem;
}

/* ファーストビュー
---------------------------------------------------------- */
/*メインスライダー*/
.main_slider {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 1200px;
}

.main_slider_wrapper button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 137px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
}

.main_slider_wrapper {
  position: relative;
  overflow: hidden;
}

.main_slider_wrapper .previous {
  left: 0;
  background-color: #1bb8ce;
  background-image: url(../img/left_arrow.svg);
  background-size: 9px 14px;
}

.main_slider_wrapper .next {
  right: 0;
  background-color: #e60012;
  background-image: url(../img/right_arrow.svg);
  background-size: 9px 14px;
}

.slider_box .swiper-slide {
  width: 84%;
  margin: 0 0.917%;
  border: solid 4px #e60012;
  border-radius: 8px;
}

.slider_box img {
  width: 100%;
}

.main_slider .swiper-slide:not(.swiper-slide-active) {
  pointer-events: none;
}

.slider_box .swiper-slide-next,
.slider_box .swiper-slide-prev {
  opacity: 0.7;
  border: solid 4px #1bb8ce;
}

/*ページリンク*/
.top_page_link {
  display: flex;
  justify-content: space-around;
  max-width: 800px;
  width: 90%;
  margin: 1.25rem auto;
}

.top_page_link div {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.top_page_link img {
  margin: 0 auto;
  height: 100%;
}

/*本日の営業時間*/
.today_hours {
  text-align: center;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-size: 0.8125rem;
  height: 40px;
}

.today_hours p {
  display: inline-block;
  padding: 0.125rem 0 0.125rem 1.875rem;
  /* background: url(../img/time_icon.svg) no-repeat left;
  background-size: 20px; */
  letter-spacing: 0.05rem;
}

.today_hours .sales_status {
  margin-left: 0.9375rem;
  padding: 0.1875rem 0.625rem 0.1875rem 0.8525rem;
  border: solid 1px #fff;
  border-radius: 3px;
  white-space: nowrap;
}

.today_business_hours_condition {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/*concept
---------------------------------------------------------- */
.top_concept {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: url(../img/consept_back.svg) no-repeat center;
  background-size: auto 100%;
}

.top_concept .left {
  padding: 3.4375rem 0 4.1875rem 5%;
  width: 54.8%;
}

.top_concept .right {
  width: 45.2%;
}

.concept_top_wrap {
  margin: 1.625rem 0 2.8125rem;
  display: flex;
  align-items: center;
}

.concept_title {
  display: block;
  height: 27px;
  width: 124px;
  background: url(../img/concept.svg) no-repeat;
  margin-right: 1.625rem;
}

.concept_ja {
  display: block;
  height: 12px;
  width: 64px;
  background: url(../img/concept_ja.svg) no-repeat;
  background-size: 100%;
}

.top_concept .title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  letter-spacing: 2.14px;
  font-weight: bold;
}

.top_concept .text {
  margin-bottom: 1.875rem;
  line-height: 31px;
}

/*コンセプト下*/
.back_gy {
  background-color: #f5f5f5;
}

.bottom_concept_wrap {
  display: flex;
  padding: 4.375rem 0 3.75rem;
}

.bottom_concept_wrap .bottom_concept:first-child {
  margin-right: 8%;
}

.bottom_concept {
  width: 46%;
}

/*内容*/
.bottom_concept .title {
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
}

.bottom_concept .img_text {
  display: flex;
  align-items: flex-start;
}

.bottom_concept .img_text img {
  margin-right: 1.625rem;
  width: 160px;
}

.bottom_concept .img_text .text {
  letter-spacing: -0.05rem;
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: justify;
  width: calc(100% - 186px);
}

/*ボタン*/
.bottom_concept .bl_btn {
  margin: 1rem 0 0 auto;
}

/*payどん
---------------------------------------------------------- */
.pc_banner_wrap {
  display: flex;
  justify-content: space-between;
  height: 400px;
  background-color: #e60012;
  position: relative;
}

.paydon_content {
  margin: 0 auto;
  padding: 0 5%;
}

.wh_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  font-size: 0.9rem;
  width: 220px;
  height: 44px;
  padding-right: 40px;
  padding-left: 12px;
  position: relative;
  border-radius: 22px;
  background-image: linear-gradient(to right, #ffffff 50%, #000000 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: all 0.3s ease 0s;
}

.wh_btn span {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background-color: #000;
  background-image: url(../img/right_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px 12px;
}

.banner_title {
  padding-top: 3rem;
  width: 260px;
}

.banner_text {
  color: #fff;
  font-size: 1.8125rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 1.2rem 0 1.2rem 0;
}

.banner_irust {
  width: 160px;
  position: absolute;
  bottom: 0;
}

.paydon_capture {
  height: 100%;
}

/* pick up items
---------------------------------------------------------- */
.pick_up_items_title {
  display: block;
  height: 27px;
  width: auto;
  margin: 5rem auto 0.9375rem;
}

.pick_up_items_ja {
  display: block;
  height: 13px;
  width: auto;
  margin: 0 auto 3rem;
}

.pick_up_items_wrap {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.pick_up_items_wrap li {
  width: calc((100% - 3.9rem) / 4);
  width: -webkit-calc((100% - 3.9rem) / 4);
}

.pick_up_items_wrap a {
  display: block;
}

/*画像*/
.pick_up_items_img,
.pick_up_items_img_none {
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}

.pick_up_items_img img,
.pick_up_items_img_none img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

/*画像装飾*/
.pick_up_items_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 100%;
  z-index: 100;
  background-color: #1cb7cd;
}

.pick_up_items_img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 5px;
  z-index: 99;
  background-color: #e60012;
}

/*商品名、店舗名*/
.product_name {
  margin: 0.9375rem 0 0.5rem 0.3125rem;
  font-weight: bold;
  line-height: 1.3;
  font-size: 1.25rem;
}

.category_store_name {
  margin-left: 0.3125rem;
  font-size: 0.8125rem;
  letter-spacing: 0;
}

.category_store_name span:first-child {
  margin-right: 1.75rem;
  position: relative;
}

.category_store_name span:first-child::after {
  content: "";
  display: block;
  position: absolute;
  right: -15px;
  top: 2px;
  width: 1px;
  height: 15px;
  background-color: #d8d8d8;
}

/* information
---------------------------------------------------------- */
#sec_information,
#sec_recommend,
#sec_movie {
  overflow: hidden;
  padding: 5rem 0;
}

.information_title {
  display: block;
  height: 32px;
  width: auto;
  margin: 0 auto 0.9375rem;
}

.information_ja {
  display: block;
  height: 13px;
  width: auto;
  margin: 0 auto 3rem;
}

/*記事一覧*/
.information_ul {
  background-color: #fff;
  border-radius: 4px;
  padding: 0.1875rem 1.3125rem;
  margin-bottom: 0;
  width: 100%;
}

.information_ul li {
  border-bottom: dotted 1px #d8d8d8;
}

.information_ul a {
  padding: 1.25rem 0.625rem;
  display: flex;
  align-items: center;
}

.information_ul li:last-child {
  border: none;
}

.time_label {
  display: flex;
  justify-content: space-between;
  margin-right: 1.25rem;
}

.information_ul p {
  width: calc(100% - 220px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.information_ul .date {
  width: 4.6875rem;
  font-size: 0.9375rem;
  color: #a1a1a1;
  letter-spacing: 0.05rem;
}

/*ラベル*/
.information_ul .label,
.label_time_wrap .label {
  display: block;
  width: 110px;
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 3px;
  padding: 0.36rem 0 0 0;
  margin: 0 0 0 1.25rem;
  line-height: 1;
}

.label.campaign_label {
  background: #ff004a;
}

.label.information_label {
  background: #229f9b;
}

.label.event_label {
  background: #f5a623;
}

/*もっと見るボタン*/
#sec_information .bl_btn {
  margin: 0 auto;
}

/* event
---------------------------------------------------------- */
.top_event_pd {
  padding-bottom: 3.75rem;
}

.top_event_title {
  display: block;
  height: 27px;
  width: auto;
  margin: 5rem auto 0.9375rem;
}

.top_event_ja {
  display: block;
  height: 13px;
  width: auto;
  margin: 0 auto 3rem;
}

.top_event_wrap li {
  width: 22.7272727273%;
  margin: 18px 0 1rem 2.2%;
}

.top_event_pd .bl_btn {
  margin: 0 auto;
}

/*画像*/
.top_event_img {
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}

.top_event_wrap li>span::before {
  content: "NEW";
  font-family: "Barlow Semi Condensed", sans-serif;
  position: absolute;
  top: -18px;
  left: -18px;
  transform: rotate(-15deg);
  z-index: 100;
  font-size: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  font-weight: bold;
  background: #ec4a4a;
  border-radius: 50% 50%;
  letter-spacing: 1px;

}

.top_event_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

/*swiper解除、リニューアル*/
.top_event_wrap li a div:not(.top_event_img) p {
  font-weight: bold;
}

.top_event_wrap .label,
.event_detail .label {
  display: block;
  width: 110px;
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 3px;
  padding: 0.36rem 0 0.36rem 0;
  margin: 0.5rem 0;
  line-height: 1;
}

.event_title {
  font-weight: bold;
}

.label.kagin_label {
  background: #E50113;
}

.label.culture_label {
  background: #f5a623;
}

.label.business_label {
  background: #663A88;
}

.label.e-sports_label {
  background: #ff004a;
}

.label.gourmet_label {
  background: #229F9B;
}

.label.others_label {
  background: #1BB8CE;
}

/* sliderのページネーション  */
.circle_pager {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2rem 0;
}

.circle_pager .swiper-pagination {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.circle_pager span {
  display: block;
  margin: .5rem;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background-color: #ddd;
  opacity: 1;
}

.circle_pager .active,
.circle_pager .swiper-pagination-bullet-active {
  background-color: #000 !important;
  pointer-events: none;
}

.circle_pager .event_prev {
  position: static;
  border: none;
  width: 1rem;
  height: 1.625rem;
  margin-top: 0;
  margin-right: 2rem;
  background: url(../img/p_left_arrow.svg) no-repeat;
  background-size: cover;
}

.circle_pager .event_next {
  position: static;
  border: none;
  width: 1rem;
  height: 1.625rem;
  margin-top: 0;
  margin-left: 2rem;
  background: url(../img/p_right_arrow.svg) no-repeat;
  background-size: cover;
}


/*instagram
---------------------------------------------------------- */
#sec_instagram {
  border-bottom: solid 1px #d8d8d8;
}

.instagram_title {
  display: block;
  height: 28px;
  width: 198px;
  background: url(../img/instagram.svg) no-repeat right;
  margin: 3.625rem auto 1.5rem;
  position: relative;
}

.instagram_title:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
  background: url(../img/instagram_icon.svg) no-repeat;
  background-size: 100%;
  width: 27px;
  height: 28px;
}

.instagram_description {
  text-align: center;
  line-height: 22px;
  margin-bottom: 2.375rem;
  font-size: 0.875rem;
  padding-top: 4px;
}

.instagram_contents {
  position: relative;
}

.instagram_wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.instagram_wrap div {
  float: left;
  width: 20%;
  height: 50%;
}

.instagram_wrap div:first-of-type {
  width: 40%;
  height: 100%;
}

.instagram_wrap div img {
  width: 100%;
  height: 100%;
}

.insta_btn {
  margin: 2rem auto 6rem;
}

/*バナー
---------------------------------------------------------- */
.banner_wrap {
  position: relative;
  margin: 2.375rem auto 2.9375rem;
}

.banner_wrap button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 42px;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
}

.banner_wrap .previous {
  left: 0;
  background-image: url(../img/left_arrow.svg);
  background-size: 9px 14px;
}

.banner_wrap .next {
  right: 0;
  background-image: url(../img/right_arrow.svg);
  background-size: 9px 14px;
}

.banner_slide {
  display: block;
  margin: 0 28px;
}

.banner_box a {
  width: 24%;
  margin-right: 4.6666666667%;
  margin-left: 4.6666666667%;
}

.banner_box img {
  width: 100%;
  margin: auto;
}

/* FACILITIES
---------------------------------------------------------- */
/*くずリスト*/
.breadcrumb_wrap {
  background: #f6f6f6;
  border-top: solid 5px #000;
  font-size: 0.75rem;
}

.breadcrumb {
  display: flex;
  padding: 0.625rem 0;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb li {
  position: relative;
  padding-right: 1.25rem;
}

.breadcrumb li:after {
  content: ">";
  color: #555;
  position: absolute;
  top: 0;
  right: 5px;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li a {
  color: #1cb7cd;
}

/*ページタイトル*/
.page_title {
  margin: 4.4rem 0 4rem 0;
}

.facilities_title {
  display: block;
  height: 32px;
  width: auto;
  margin: 0 auto 1.1875rem;
}

.facilities_ja {
  display: block;
  height: 13px;
  width: auto;
  margin: 0 auto;
}

.contents_center {
  margin: 2.4rem auto;
}

/*top画像*/
.top_img {
  position: relative;
  margin-bottom: 5rem;
}

.top_img:before {
  content: "";
  display: block;
  padding-top: 44.4444444444%;
}

.top_img img {
  position: absolute;
  top: 0;
  width: 100%;
}

/*営業時間*/
.sec_min_wrap {
  width: 80%;
  max-width: 900px;
  margin: 0 auto 3.75rem;
}

.mark_title {
  position: relative;
  font-size: 1.1875rem;
  letter-spacing: 0.81px;
  line-height: 20px;
  margin-bottom: 1.25rem;
  padding-left: 1.4375rem;
  font-weight: bold;
}

.mark_title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  background-image: url(../img/footer_list_mark.svg);
}

.business_hours_text {
  letter-spacing: 0.64px;
  margin-left: 0.3rem;
  padding-bottom: 0.9rem;
}

.information_sec_min_wrap {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto 3.75rem;
  padding-bottom: 0.5rem;
}

.information_caption {
  background-color: #ececec;
  margin: 2.3rem 0 0.7rem 0;
  padding: 0.75rem 0 0.75rem 1rem;
  font-weight: bold;
  border-radius: 3px;
}

.contact_information {
  text-align: center;
  padding-bottom: 1rem;
}

/*決済方法*/
.settlement_img_wrap {
  display: flex;
  margin-top: 1rem;
}

.settlement_img_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.settlement_img_wrap li {
  margin-right: 1.25rem;
  height: 60px;
}

.brd_top_dotted .settlement_img_wrap li {
  height: 74px;
}

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

.paydon_information {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.sec_settlement_method {
  margin-bottom: 4rem;
}

/*画像*/
.paydon_icon {
  width: 90px;
  margin-right: 1.25rem;
}

/*項目*/
.settlement_method_wrap .item {
  padding: 0 1rem 0 0.625rem;
  position: relative;
  white-space: nowrap;
}

.settlement_method_wrap .item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
}

/*QRコード決済*/
.paydon_detail {
  display: flex;
  flex-wrap: wrap;
}

.paydon_detail>div {
  margin-top: 0.3125rem;
}

.paydon_detail>div:first-child {
  margin-right: 1.25rem;
}

.fc_red {
  color: #e60012;
  white-space: nowrap;
  margin-left: -0.5625rem;
}

.brd_top_dotted {
  border-top: dotted 1px #231815;
  padding-top: 1rem;
}

#payment_information {
  padding-top: 127px;
  margin-top: -127px;
}

#payment_information dd {
  margin-left: 0.3rem;
}

/* ACCESS
---------------------------------------------------------- */
/*ページタイトル*/
.access_title {
  display: block;
  height: 32px;
  width: auto;
  margin: 0 auto 1.1875rem;
}

.access_ja {
  display: block;
  height: 12px;
  width: auto;
  margin: 0 auto;
}

.map_image {
  margin-bottom: 7rem;
}

.map_image_wrap {
  display: block;
  width: 70%;
  height: auto;
  margin: auto;
}

.map_image_wrap img {
  width: 100%;
}

.building_address {
  color: #555;
  font-size: 1.1rem;
  letter-spacing: 0.6px;
  text-align: center;
  margin: 1.3rem 0 1.5625rem;
}

.map_image .bl_btn {
  width: 270px;
}

/*交通手段表*/
.traffic_method {
  display: flex;
  flex-wrap: wrap;
  padding: 0 2.2222222222%;
  margin: 1.7rem auto 4.375rem;
}

.traffic_method li {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 50%;
  padding: 2rem 3% 2.4rem 3%;
}

.icon_heading_wrap {
  display: flex;
  align-items: center;
  height: 40px;
  margin-bottom: 1rem;
}

/*交通手段アイコン*/
.transportation_icon {
  width: 72px;
}

.transportation_icon img {
  width: 100%;
}

.car_wrap .transportation_icon {
  width: 66px;
  margin-right: 0.7rem;
}

.icon_heading_wrap p {
  font-size: 1.1875rem;
  letter-spacing: 0.05rem;
  line-height: 20px;
  font-weight: bold;
}

.traffic_method li .text {
  color: #555;
  letter-spacing: 0.6px;
  line-height: 1.6;
}

.traffic_method .text_indent {
  margin-left: 0.3rem;
}

/*点線*/
.traffic_method li::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border: dashed 1px #d8d8d8;
}

.traffic_method .car_wrap::before {
  width: 100%;
}

.traffic_method .bus_wrap::before,
.traffic_method .airplane_wrap::before {
  width: 97%;
  left: 48.7%;
}

.traffic_method .tram_wrap::before,
.traffic_method .train_wrap::before {
  width: 98%;
  left: 52%;
}

.traffic_method li:nth-child(even)::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: dashed 1px #d8d8d8;
  height: 85%;
}

.traffic_method.odd li:last-child::before,
.traffic_method.odd li:nth-last-child(2)::before {
  content: initial;
}

.traffic_method.even li:last-child::before {
  content: initial;
}

.parking_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  color: #555555;
  text-align: center;
  margin: 2rem 0 1rem 0;
}

.caution_message {
  color: #e60012;
}

.caution_message {
  font-size: 1rem;
}

.discount_description {
  font-size: 1rem;
}

.parking_table th,
.parking_table td {
  border: solid 1px #979797;
  font-weight: normal;
  padding: 0.6rem;
}

.parking_table th {
  background-color: #d8d8d8;
}

.traffic_method .car_wrap {
  width: 100%;
  padding: 1.5rem 0 3rem 0;
}

/* SHOP GUIDE
---------------------------------------------------------- */
/*ページタイトル*/
.shop_guide_title {
  display: block;
  height: 32px;
  width: auto;
  margin: 0 auto 1.1875rem;
}

.shop_guide_ja {
  display: block;
  height: 14px;
  width: auto;
  margin: 0 auto;
}

/*大タブ*/
.shop_guide_tab_wrap {
  border-bottom: solid 4px #000;
}

.shop_guide_tab_wrap .container {
  display: flex;
  justify-content: center;
}

.shop_guide_tab_wrap .shop_guide_tab {
  width: 33.3333333333%;
  height: 90px;
  padding-bottom: 0.25rem;
  margin-bottom: -0.25rem;
  border: solid 1px #000;
  cursor: pointer;
}

.shop_guide_tab>div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.shop_guide_tab_wrap .shop_guide_tab:nth-child(2) {
  border-left: none;
  border-right: none;
}

.shop_guide_tab_wrap .shop_guide_tab:nth-child(4) {
  border-left: none;
}

.shop_guide_tab_wrap .floor_map_icon {
  height: 37px;
}

.shop_guide_tab_wrap .recommend_icon {
  height: 37px;
}

.shop_guide_tab_wrap .free_word_icon {
  height: 40px;
}

/*選択時*/
.shop_guide_tab_wrap .shop_guide_tab.active {
  border: solid 4px #000;
  border-bottom: none;
  padding-bottom: 0.5rem;
  position: relative;
}

.shop_guide_tab_wrap .shop_guide_tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 6px;
  background: #fff;
}

/*タブの中身*/
.shop_guide_tab_wrap .tab_icon {
  margin-right: 0.8125rem;
}

.tab_text {
  font-size: 0.8125rem;
  letter-spacing: 0;
  line-height: 16px;
  font-weight: bold;
}

.tab_text span {
  font-size: 1.2rem;
}

/*タブ選択時の切り替え*/
.search_body {
  display: none;
}

.search_body.active {
  display: block;
}

/* フロアマップ内のタブ */
#floor_map_body input[type="radio"] {
  display: none;
}

.floor_guide_wrap {
  margin-bottom: 2rem;
}

.tab_label_wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.floor_map_tab {
  width: 26%;
  position: relative;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  border: 1px solid #000;
}

.floor_map_tab::before,
.floor_map_tab::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
}

.tab_1f::before,
.tab_2f::before {
  bottom: -13px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  border-width: 13px 13px 0px 13px;
}

.tab_1f::after,
.tab_2f::after {
  bottom: -12px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 12px 12px 0 12px;
  z-index: 10;
}

#select1:checked~.tab_label_wrap .floor_map_tab.tab_1f::after,
#select2:checked~.tab_label_wrap .floor_map_tab.tab_2f::after {
  border-color: #000 transparent transparent transparent;
}

#select1:checked~.tab_label_wrap .floor_map_tab.tab_1f,
#select2:checked~.tab_label_wrap .floor_map_tab.tab_2f {
  background-color: #000;
  color: #fff;
}

#select1:checked~#floor_map_1f {
  display: block;
}

#select1:checked~#floor_map_2f {
  display: none;
}

#select2:checked~#floor_map_1f {
  display: none;
}

#select2:checked~#floor_map_2f {
  display: block;
}

/*フロアマップ*/
.floor_guide_wrap {
  margin: 3.6rem auto;
}

.floor_guide_wrap .building_name {
  font-weight: bold;
  font-size: 1.2rem;
  margin: 3rem 0 .5rem 0;
}

.floor_guide_1f {
  padding-bottom: 6.25rem;
}

.floor_guide_2f {
  padding-bottom: 3.125rem;
}

.floor_map_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 5rem auto;
}

.floor_map_wrap img {
  width: 100%;
}

.floor_guide_title strong {
  font-size: 2rem;
}

.floor_guide_1f .floor_guide_title {
  padding-top: 5rem;
}

.floor_guide_title {
  font-size: 1.3rem;
  font-weight: normal;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: solid 4px #1CB7CD;
  position: relative;
}

.floor_guide_title::after {
  content: "";
  display: inline-block;
}

.floor_guide_title::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 4px #E50113;
  bottom: -4px;
  width: 50%;
}

/*階、マップ*/
.floor_map_number {
  width: 6.6666666667%;
  margin: 0 1.125rem 0 0;
}

.floor_map {
  margin: 0 auto;
  height: auto;
}

/*店舗リスト*/
.floor_guide_wrap ul {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.floor_guide_wrap li {
  border-radius: 3px;
  margin-bottom: 0.875rem;
  width: 48.8888888889%;
  background-color: #f2f2f2;
}

.store_name {
  display: flex;
  padding: 0.625rem 2.5rem 0.625rem 0.9375rem;
  width: 100%;
  margin: 0 auto;
  font-size: 0.6875rem;
  position: relative;
}

.floor_guide_1f a.store_name:after,
.floor_guide_2f a.store_name:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 9px;
  height: 14px;
  transform: translateY(-50%);
  background-image: url(../img/b_right_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.floor_guide_2f .store_name:after {
  background-image: url(../img/r_right_arrow.svg);
}

.store_name div p {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.store_name div span {
  margin-left: -5px;
  white-space: nowrap;
  font-size: 0.75rem;
  color: #333;
}

.store_name .store_logo {
  width: 60px;
  margin-right: 0.9375rem;
}

.store_name>div {
  display: flex;
  align-items: center;
  padding-left: 2.875rem;
  background-size: 32px 32px;
}

/*店番号*/
.store_1 {
  background: url(../img/map_icon1.svg) no-repeat center left;
}

.store_2 {
  background: url(../img/map_icon2.svg) no-repeat center left;
}

.store_3 {
  background: url(../img/map_icon3.svg) no-repeat center left;
}

.store_3 {
  background: url(../img/map_icon3.svg) no-repeat center left;
}

.store_4 {
  background: url(../img/map_icon4.svg) no-repeat center left;
}

.store_5 {
  background: url(../img/map_icon5.svg) no-repeat center left;
}

.store_6 {
  background: url(../img/map_icon6.svg) no-repeat center left;
}

.store_7 {
  background: url(../img/r_map_icon7.svg) no-repeat center left;
}

.store_8 {
  background: url(../img/r_map_icon8.svg) no-repeat center left;
}

.store_9 {
  background: url(../img/r_map_icon9.svg) no-repeat center left;
}

.store_10 {
  background: url(../img/r_map_icon10.svg) no-repeat center left;
}

.store_11 {
  background: url(../img/r_map_icon11.svg) no-repeat center left;
}

.store_12 {
  background: url(../img/r_map_icon12.svg) no-repeat center left;
}

.store_13 {
  background: url(../img/r_map_icon13.svg) no-repeat center left;
}

.store_14 {
  background: url(../img/r_map_icon14.svg) no-repeat center left;
}

.store_15 {
  background: url(../img/r_map_icon15.svg) no-repeat center left;
}

.store_16 {
  background: url(../img/r_map_icon16.svg) no-repeat center left;
}

.store_17 {
  background: url(../img/r_map_icon17.svg) no-repeat center left;
}

.store_18 {
  background: url(../img/r_map_icon18.svg) no-repeat center left;
}

.store_19 {
  background: url(../img/r_map_icon19.svg) no-repeat center left;
}

.store_20 {
  background: url(../img/r_map_icon20.svg) no-repeat center left;
}

.store_21 {
  background: url(../img/r_map_icon21.svg) no-repeat center left;
}

.store_22 {
  background: url(../img/r_map_icon22.svg) no-repeat center left;
}

.store_23 {
  background: url(../img/r_map_icon23.svg) no-repeat center left;
}

.store_24 {
  background: url(../img/r_map_icon24.svg) no-repeat center left;
}

.store_25 {
  background: url(../img/r_map_icon25.svg) no-repeat center left;
}

.store_26 {
  background: url(../img/r_map_icon26.svg) no-repeat center left;
}

.store_27 {
  background: url(../img/r_map_icon27.svg) no-repeat center left;
}

.store_28 {
  background: url(../img/r_map_icon28.svg) no-repeat center left;
}

.store_29 {
  background: url(../img/r_map_icon29.svg) no-repeat center left;
  height: 60px;
  justify-content: center;
}

.store_30 {
  background: url(../img/r_map_icon30.svg) no-repeat center left;
}

/*おすすめタグ*/
.shop_tab_wrap {
  width: 100%;
  padding: 0.8rem;
  margin: 2.0625rem 0 3.125rem;
  display: flex;
  flex-wrap: wrap;
  background: #f5f4f4;
}

.shop_tab_wrap input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
}

.shop_tab_wrap input[type="checkbox"] {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.shop_tab_wrap label,
.store_detail_tab a {
  background: #fff;
  border: solid 1px #d3d3d3;
  border-radius: 50px;
  font-size: 0.8125rem;
  letter-spacing: 0.6px;
  padding: 0.32rem 0.73rem 0.32rem 0.73rem;
  margin: 0.4% 0.3%;
  line-height: 1;
}

.shop_tab_wrap label {
  margin: 0.4% 0.2%;
}

.shop_tab_wrap input:checked+label {
  color: #fff;
  background: #000;
  border: solid 1px #000;
}

/*店舗一覧*/
.rate_change {
  margin-bottom: 1.875rem;
}

.rate_change .pick_up_items_img,
.rate_change .pick_up_items_img_none {
  padding-top: 75.3846153846%;
}

.store_information {
  margin: 0.5625rem 0 0.3125rem 0;
}

.store_information span {
  font-size: 0.75rem;
}

.store_information span:first-child {
  color: #fff;
  background: #000;
  border-radius: 2px;
  padding: 0.19rem 0.7rem;
  margin-right: 0.625rem;
  font-weight: bold;
  font-size: 0.6rem;
}

.shop_name {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: bold;
}

/*フリーワード*/
.shop_search input {
  margin: 3.4375rem 0 4.0625rem;
}

.shop_search button {
  top: 3.4375rem;
}

/* 店舗詳細
---------------------------------------------------------- */
.container.store_detail {
  margin-bottom: 80px;
}

.store_detail_head {
  display: flex;
  align-items: center;
  margin: 1.75rem 0 1.5rem;
}

.store_detail_head .store_logo {
  margin-right: 0.9375rem;
  position: relative;
  width: 70px;
}

.store_detail_head .store_logo:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.store_detail_head .store_logo img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #f2f2f2;
}

.store_detail_head span {
  font-size: 0.8125rem;
  letter-spacing: 0.05rem;
}

.store_detail_head p {
  font-size: 1.6875rem;
  letter-spacing: 1.3px;
  font-weight: bold;
}

/*画像*/
.store_detail_img {
  display: flex;
  margin-bottom: 3.5rem;
  position: relative;
}

.min .select {
  opacity: 0.5;
}

.store_detail_img img {
  cursor: pointer;
}

.store_detail_img .big_wrap {
  width: 69.2645444566%;
  height: 100%;
  position: relative;
  pointer-events: none;
}

.store_detail_img .big_wrap::before {
  content: "";
  display: block;
  padding-top: 66.6667541665%;
}

.store_detail_img .big {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.selection_product {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 20%;
  padding: 1% 3%;
  background-color: #0009;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1.4;
}

.store_detail_img .min {
  position: absolute;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 30.7354555434%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.store_detail_img .min img {
  height: 33.3333333333%;
  width: 50%;
  padding: 0.375rem 0 0 0.375rem;
}

.store_detail_img .min img:first-child,
.store_detail_img .min img:nth-child(2) {
  padding-top: 0;
}

/*サムネイル選択時*/
.store_detail_img_select {
  border: solid 3px #e60012;
}

/*説明文*/
.store_detail_text {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

.store_detail_text .title {
  font-size: 1.3125rem;
  letter-spacing: 2px;
  margin-bottom: 1.75rem;
  font-weight: bold;
}

.store_detail_text .text {
  letter-spacing: 0.64px;
  line-height: 27px;
  margin-bottom: 1.9375rem;
}

/*関連タグ*/
.store_detail_tab {
  width: 90%;
  margin: 0 auto 5rem;
  padding: 0.32rem 1rem 0.44rem 1rem;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
}

/*ショップのおすすめメニュー*/
/*下線デコレーション*/
.under_deco {
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.08rem;
  padding-bottom: 2rem;
  line-height: 1;
  font-weight: bold;
}

.under_deco::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-150px);
  height: 4px;
  width: 150px;
  background: #1cb7cd;
}

.under_deco::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 4px;
  width: 150px;
  background: #e60012;
}

/*おすすめメニュー内容*/
.recommend_menu {
  margin: 2.625rem 0 5rem;
  display: flex;
}

.recommend_menu_img {
  width: 46.6666666667%;
  margin-right: 6.6666666667%;
}

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

.recommend_menu_text {
  width: 46.6666666666%;
}

.recommend_menu .title {
  margin: 0.5rem 0 0.9rem;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1.4;
}

.recommend_menu .text {
  font-size: 0.9375rem;
  letter-spacing: 0.6px;
  line-height: 27px;
  color: #555;
}

/*詳細表*/
.store_detail_table {
  background: #f9f9f9;
  padding: 1.875rem 4.1111111111%;
  margin: 1.5rem 0;
}

.store_detail_table table {
  width: 100%;
  font-size: 0.9375rem;
  letter-spacing: 0.64px;
  border-top: dotted 1px #c0c0c0;
  border-collapse: collapse;
}

.store_detail_table tr {
  border-bottom: dotted 1px #c0c0c0;
  font-weight: normal;
  text-align: left;
}

.store_detail_table th {
  width: 18.6746987952%;
  font-weight: normal;
}

.store_detail_table th,
.store_detail_table td {
  padding: 1.4375rem 0.3125rem;
}

.sns_wrap {
  height: 100%;
  display: flex;
  align-items: center;
}

.sns_wrap a {
  width: 28px;
  margin-right: 1.6875rem;
}

.sns_wrap img {
  width: 100%;
}

/*related articles*/
.related_articles_top {
  padding-top: 1.25rem;
}

.related_articles {
  display: block;
  height: 32px;
  width: auto;
  margin: 0 auto 1.1875rem;
}

.related_articles_ja {
  display: block;
  height: 13px;
  width: auto;
  margin: 0 auto;
}

.shop_article .date {
  margin: 0.5rem 0 0.2rem 0.2rem;
  font-size: 0.9375rem;
  letter-spacing: 1.15px;
  color: #919191;
}

.shop_article .article_title {
  margin-left: 0.2rem;
}

/*関連する特集記事*/
.related_articles_list li {
  width: 30%;
  margin: 0 5% 5rem 0;
}

.related_articles_list a {
  display: block;
}

/* お知らせ一覧
---------------------------------------------------------- */
.information_page .information_ul {
  padding: 0;
  margin-bottom: 1.9375rem;
}

/*リスト*/
.information_page .information_ul {
  border-top: dotted 1px #d8d8d8;
  border-bottom: dotted 1px #d8d8d8;
}

.information_page .information_ul a {
  padding: 1.74rem 0.625rem;
}

/*ページネーション*/
.pagination_wrap {
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
}

.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: solid 1px #1cb7cd;
  border-radius: 50px;
  margin-right: 1.25rem;
  padding-bottom: 2px;
}

.pagination li .active {
  background: #1cb7cd;
  color: #fff;
  pointer-events: none;
}

/*前へ、次へ*/
.pagination .pre {
  border: none;
  background: url(../img/b_left_arrow.svg) no-repeat center;
  background-size: 9px 14px;
}

.pagination .pre.invalid {
  background: url(../img/gy_left_arrow.svg) no-repeat center;
  background-size: 9px 14px;
  pointer-events: none;
}

.pagination .next {
  border: none;
  background: url(../img/b_right_arrow.svg) no-repeat center;
  margin-right: 0;
  background-size: 9px 14px;
}

.pagination .next.invalid {
  background: url(../img/gy_right_arrow.svg) no-repeat center;
  background-size: 9px 14px;
}

/* お知らせ詳細
---------------------------------------------------------- */
.article_list {
  max-width: 1000px;
  margin: 0 auto 10rem;
}

.news_head {
  margin: 3rem 0 1.3rem;
}

/*カテゴリー、日時*/
.label_time_wrap {
  display: flex;
  margin-bottom: 0.7rem;
}

.label_time_wrap .label {
  margin: 0 0.9375rem 0 0;
}

.label_time_wrap .date {
  font-size: 1rem;
  letter-spacing: 1.31px;
  color: #a1a1a1;
}

.news_title {
  font-size: 1.4375rem;
  letter-spacing: 1.4px;
  line-height: 1.6;
  padding: 0.2rem 0 0.6rem 0;
  border-bottom: dotted 1px #979797;
  font-weight: bold;
}

/*記事内*/
.news_content {
  padding: 0 0 3rem;
}

.news_content h2,
.news_content h3,
.news_content h4 {
  letter-spacing: 1.4px;
  line-height: 27px;
  margin-bottom: 1rem;
  color: #555;
}

.news_content h2 {
  font-size: 1.375rem;
}

.news_content h3 {
  font-size: 1.25rem;
}

.news_content h4 {
  font-size: 1.125rem;
}

.news_content .wp-block-separator {
  margin: 1rem 0;
}

.news_content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.6;
  color: #555;
}

.news_content a {
  word-break: break-all;
}

.news_content img {
  margin-bottom: 1.3rem;
}

.news_content ul {
  margin: 0.5rem 0;
}

.news_content li {
  list-style: disc;
  margin-left: 20px;
}

.news_content .wp-block-embed-youtube {
  max-width: 600px;
  margin: 1rem 0;
}

.news_content .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.news_content .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.news_content blockquote {
  position: relative;
  padding: 15px;
  box-sizing: border-box;
  font-style: italic;
  background: #f5f5f5;
  color: #777777;
  border-left: 4px solid #555;
  margin: 1rem 0;
}

.news_content .wp-block-pullquote blockquote {
  border: none;
  text-align: left;
}

.news_content .wp-block-image img {
  max-width: 60%;
  margin: 1.3rem auto 0 auto;
  height: auto !important;
}

.news_content a {
  text-decoration: underline;
}

.news_content .wp-block-button__link {
  text-decoration: none !important;
  background-color: #1bb8ce;
  color: #fff;
  font-weight: bold;
}

.news_content .wp-block-table {
  width: 80%;
  margin: 1rem 0;
}

.news_content .wp-block-table table td {
  padding: 1rem 0.3rem;
  border: 1px solid #ddd;
}

.news_content .wp-block-table.is-style-stripes table td {
  border: none;
}

.news_content .wp-block-table table td .news_content .wp-block-image figcaption {
  max-width: 60%;
  margin: 1rem auto;
  color: #555;
}

.news_content a {
  color: #555;
}

.news_content .wp-block-table table {
  border-spacing: 0 !important;
}

.news_content .wp-block-table.is-style-stripes table {
  border-spacing: 2px !important;
}

/*ページ遷移バー*/
.page_transition_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0.1875rem 5.3125rem;
  padding: 0 1.25rem;
  width: 100%;
  height: 60px;
  background-color: #f6f6f6;
  font-size: 0.9375rem;
  border-radius: 5px;
}

.page_transition_bar {
  position: relative;
}

.page_transition_bar a span {
  display: inline;
}

.page_transition_bar .pre {
  padding-left: 1.375rem;
  background: url(../img/b_left_arrow.svg) no-repeat left;
  background-size: 9px 14px;
}

.page_transition_bar .to_list {
  padding: 1rem 0 1rem 1.875rem;
  background: url(../img/list_icon.svg) no-repeat left;
  background-size: 21px 19px;
}

.page_transition_bar .next {
  padding-right: 1.375rem;
  background: url(../img/b_right_arrow.svg) no-repeat right;
  background-size: 9px 14px;
}

.instagram-media.instagram-media-rendered {
  min-width: inherit !important;
}

/* 404エラーページ
---------------------------------------------------------- */
.error_page {
  padding: 6rem 0;
  text-align: center;
}

.error_title {
  font-size: 1.5625rem;
  letter-spacing: 2px;
  line-height: 1;
}

.error_text {
  padding: 2rem 0;
  letter-spacing: 0.6px;
  line-height: 1.8rem;
}

.error_page .bl_btn {
  margin: 0 auto;
}

.sp a:not(.bl_btn):hover,
.sp label:hover,
.sp button:hover,
.sp .hv_opacity:hover {
  opacity: 1;
}

.sp .bl_btn:hover::before {
  content: none;
}

/* 特集記事　一覧
---------------------------------------------------------- */
.feature_wrap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 10rem;
}

.feature_list .thumbnail {
  width: 100%;
  position: relative;
  margin-bottom: .5rem;
}

.feature_list .thumbnail:after {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
}

.feature_list .thumbnail img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.feature_list .tag_time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .2rem;
}

.feature_tag {
  display: block;
  font-size: .75rem;
  line-height: 1.125rem;
  letter-spacing: .040625rem;
  color: #fff;
  background-color: #1BB8CE;
  padding: .188rem .6856rem;
  border-radius: 2px;
  margin-right: .5rem;
}

.feature_date {
  margin-left: auto;
  font-size: .85rem;
}

.feature_title {
  font-size: 1.125rem;
  line-height: 1.625rem;
  letter-spacing: .048125rem;
}

/* 検索結果
---------------------------------------------------------- */
.search_empty {
  text-align: center;
  padding: 80px 10px;
}

/* 特集記事 検索
---------------------------------------------------------- */
.tagpege_title {
  display: block;
  font-size: 1.5rem;
  line-height: 2.25rem;
  letter-spacing: .09375rem;
  text-align: center;
}

/* 特集記事詳細
---------------------------------------------------------- */
.feature_page .container {
  max-width: 800px;
}

/*ページトップ*/
.feature_bunner {
  display: flex;
  margin: 1.875rem auto 0;
}

.feature_bunner .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 5rem 0 3.75rem;
  background-color: #1bb8ce;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.feature_bunner .right {
  width: 50%;
}

.feature_bunner .right img {
  width: 100%;
  height: 100%;
}

.story_logo {
  width: 30.6666666667%;
  height: auto;
  margin: 0 auto 3.375rem;
}

.story_no {
  font-size: 0.8125rem;
  margin-bottom: 1.3rem;
  color: #fff;
}

.story_title {
  font-size: 1.875rem;
  letter-spacing: 0.08rem;
  line-height: 2.625rem;
  margin-bottom: 2.0625rem;
  padding-bottom: 2.0625rem;
  position: relative;
}

.story_title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 16px;
  background-color: #fff;
}

.story_name {
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
}

.story_name span {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.086rem;
}

/*見出し*/
.feature_page .under_deco {
  font-size: 1.3125rem;
  letter-spacing: 0.125rem;
  padding-top: 6.25rem;
  margin-top: 0;
}

/*内容*/
.feature_text {
  line-height: 2.3rem;
  letter-spacing: 0.04rem;
  margin: 2.6875rem 0 0.5rem;
  text-align: justify;
}

/*画像*/
.column_1 {
  margin-top: 1.875rem;
}

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

.column_2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1.875rem;
}

.column_2 .child {
  width: 48.75%;
}

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

.img_description {
  font-size: 0.8125rem;
  letter-spacing: -0.002rem;
  color: #555;
  text-align: justify;
  position: relative;
  padding-left: 1rem;
}

.img_description::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  border-right: 0.4rem solid transparent;
  border-bottom: 10px solid #555;
  border-left: 0.4rem solid transparent;
}

/*店舗情報*/
.feature_store {
  margin-top: 6.25rem;
  padding: 3.125rem 0 3.3125rem;
}

.feature_store .container {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1000px;
}

.feature_store .left_img {
  width: 32.5%;
  height: auto;
}

.feature_store .left_img img {
  height: 100%;
  width: 100%;
}

.feature_store .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 67.5%;
  padding: 1.7rem 1rem;
  background-color: #fff;
}

.feature_store_head {
  display: flex;
  align-items: center;
  margin-bottom: 0.6875rem;
}

.feature_store_head .store_logo {
  width: 3.75rem;
  border: solid 2px #d4d4d4;
  margin-right: 0.8125rem;
}

.feature_store_head p {
  font-size: 1.125rem;
  letter-spacing: 0.055rem;
}

.feature_store_head span {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.088rem;
}

.feature_store .text {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8rem;
  text-align: justify;
}

.feature_store .bl_btn {
  margin: 0.75rem auto 0;
}

/* イベント一覧
---------------------------------------------------------- */
.calender_search_layer {
  background: #f6f6f6;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.calendar_search_input input[type='date'] {
  padding: 10px;
  width: 100%;
  color: #000;
  border: none;
}

.calendar_search_input {
  display: flex;
  align-items: center;
}

.calendar_search_input_wrap {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 0 auto 2rem auto;
}

.category_select {
  background-color: #fff;
  padding: .8rem 3rem .8rem 1rem;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 2px;
  ;
  outline: none;
}

.category_search {
  margin-left: 36px;
  padding-left: 36px;
  position: relative;
  border-left: solid 1px #e6e6e6;
}

.calendar_search_box button {
  display: block;
  width: 200px;
  height: 44px;
  margin: 0 auto;
  background-color: #000;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  letter-spacing: .3rem;
}

.calendar_search_box {
  font-size: 0.875rem;
}

.calendar_search_box button {
  position: relative;
}

.calendar_search_box button::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 30%;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/wh_search_icon.svg) no-repeat;
  background-size: 100%;
}

.search_title {
  font-weight: bold;
  margin-bottom: 8px;
  text-indent: 2px;
}

.between {
  padding: 0 10px;
}

.week_event_list_title {
  font-size: 1.4rem;
  text-align: center;
  padding: 20px 0;
  letter-spacing: 0.1em;
}

.week_event_list_title span {
  font-size: 2.0rem;
  font-family: "Barlow Semi Condensed", sans-serif;
}

.week_event_list_wrap {
  border-bottom: solid 1px #e6e6e6;
  width: 100%;
  margin: 20px 0 5rem 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.week_event_list_wrap tr {
  border-top: solid 1px #e6e6e6;
}

.week_event_day {
  position: relative;
  width: 10%;
  padding: 12px 0;
  text-align: center;
  vertical-align: middle;
}

.week_event_day.month_first_day {
  padding: 40px 0 20px 0;
}

.week_event_list {
  padding: 30px 10px;
  vertical-align: middle;
}

.week_event_img {
  margin-right: 15px;
  width: 25%;
  height: 25%;
  max-width: 150px;
  min-width: 90px;
  overflow: hidden;
}

.week_event_list .label {
  display: block;
  width: 110px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 0.36rem 0 0.36rem 0;
  border-radius: 3px;
  line-height: 1;
}

.week_event_list .week_event_title {
  display: block;
  color: #000;
  font-weight: bold;
  font-size: 1.07rem;
  padding-top: 1.5625rem;
  line-height: 1.4;
  cursor: pointer;
}

.week_event_day .month {
  top: 10px;
  position: absolute;
  font-size: .7rem;
  left: 10px;
  font-weight: bold;
}

.week_event_day .month span.t-bold {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.6rem;
}

.week_event_day .date {
  font-weight: bold;
  font-size: 2.1rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  display: block;
  padding-right: 0;
  color: #000;
}

.week_event_day .week {
  font-weight: bold;
}

.week_event_list p.week_event_period {
  display: block;
  color: #808080;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding-top: 0.9rem;
}

.week_event_img img {
  height: 100%;
  width: 100%;
  vertical-align: middle;
  margin: 0 auto;
  object-fit: cover;
  object-position: top center;
  font-family: "object-fit: cover; object-position: top center;";
}

.post_image {
  width: auto;
  height: auto;
  line-height: 1.0;
}

.event_row {
  display: flex;
}

.event_row_text {
  display: flex;
  flex-direction: column;
  width: calc(75% - 15px);
}

.event_saturday {
  background-color: #ADE1E9;
  border-bottom: solid 1px #e6e6e6;
}

.event_sunday {
  background-color: #F26969;
}

.event_description {
  font-size: 0.8rem;
}

.event_description {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 1.5625rem;
  width: 100%;
}

.category_search::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(10px);
  width: 16px;
  height: 12px;
  background: url(../img/select_triangle.svg) no-repeat center;
  background-size: 12px;
  pointer-events: none;
}

/* イベント詳細
---------------------------------------------------------- */
.container.event_detail {
  margin-bottom: 80px;
}

.event_detail_img img {
  width: 100%;
  max-width: 60%;
  margin: 0 auto;
}

.event_detail_img p {
  text-align: center;
}

.event_detail_text {
  text-align: center;
}

.event_detail_text .text {
  letter-spacing: 0.64px;
  line-height: 27px;
  margin: 1.9375rem auto;
}

/* レンタルスペース
---------------------------------------------------------- */
.ahbfield_service {
  background-color: #fff;
  padding: .8rem 3rem .8rem 1rem;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #ddd;
  border-radius: 2px;
  outline: none;
}

.fieldCalendarServicefieldname1_1 {
  position: relative;
}

#fbuilder .r {
  color: #e60012;
  font-weight: bold;
}

#fbuilder .medium,
#fbuilder .large,
#fbuilder .small,
.dfield input {
  padding-top: .5rem;
  padding-bottom: .5rem;

}

#fbuilder .fields label {
  font-size: 0.85rem;
  font-weight: bold;
}

#fbuilder .usedSlotsfieldname1_1 {
  padding: 1rem;
  border: 3px solid #e60012;
  margin-top: 2rem;
  position: relative;
}

#fbuilder .usedSlotsfieldname1_1::before {
  content: '選択中の日時';
  display: block;
  width: 100%;
  position: absolute;
  top: -27px;
  left: -5px;
}

.pbSubmit {
  background: #000 !important;
  color: #fff !important;
  font-weight: bold;
  border-radius: 3px;
  margin-bottom: 2rem !important;
  transition: all 0.4s;
}

.pbSubmit:hover {
  opacity: 0.7;
}

#fbuilder .fields,
#fbuilder .fform {
  padding: 10px 0px !important;
}

.fieldCalendarfieldname1_1.notranslate.hasDatepicker {
  margin-top: 1rem;
}

.flow dd {
  margin-left: 0;
}

.flow {
  padding-left: 10px;
  position: relative;
}

.flow li {
  list-style: none;
}

.flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #1bb8ce;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 30px;
}

.flow>li {
  position: relative;
}

.flow>li:not(:last-child) {
  margin-bottom: 5vh;
}

.flow>li dl {
  padding-left: 70px;
  position: relative;
}

.flow>li dl::before,
.flow>li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow>li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #000;
  border-radius: 50%;
  left: -4px;
}

.flow>li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow>li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #1bb8ce;
  margin-bottom: 1vh;
}

.rental_title {
  background-color: #efefef;
  font-weight: bold;
  padding: .5rem;
}

#rental_price,
#flow,
#rental_attention,
#rental_method,
#rental_payment,
#top_rental_form {
  margin-bottom: 4rem;
}

.ui-datepicker td span,
.ui-datepicker td a {
  height: 60px !important;
}

.rental_form_text {
  color: #ff0000 !important;
  font-weight: bold;
}

.form_img {
  max-width: 450px;
  width: 100%;
  border: 2px solid #ddd;
}

#rental_btn a {
  color: #fff;
  text-decoration: none;
}

#fbuilder .ui-datepicker-inline {
  max-width: 1100px !important;
}

.rentalspace_img {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 10px;
}

.rentalspace_img>div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc((100% - 30px) / 4);
  width: -webkit-calc((100% - 30px) / 4);
}


.rentalspace_img>div p {
  font-weight: bold;
  font-size: 0.8rem;
}

.rentalspace_img img {
  width: 100%;
}

.rental_btn {
  margin-top: 1rem;
}

#top_rental_form .d_flex {
  display: flex;
}

#top_rental_form .wp-block-button {
  width: calc(100% / 3);
  width: -webkit-calc(100% / 3);
}

#top_rental_form .wp-block-button:not(:last-child) {
  margin-right: 20px;
}

#top_rental_form .wp-block-button img {
  width: 100%;
  margin-bottom: 0;
}

/* レンタルスペース 料金表
---------------------------------------------------------- */
.rental-space-price_title {
  position: relative;
  width: 100%;
  max-width: 175px;
  padding: 10px 10px 10px 0;
  font-size: 1.2rem !important;
  border-bottom: 4px solid #1CB7CD;
}

.rental-space-price_title.price_mb {
  margin-bottom: 30px !important;
}

.rental-space-price_title.price_mt {
  margin-top: 30px !important;
}

.rental-space-price_title::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 50%;
  height: 4px;
  content: "";
  background: #E50113;
}

.rental-space-price,
.rental-space-price tbody,

.rental-space-price td,
.rental-space-price th {
  border-collapse: collapse;
}

.rental-space-price,
.rental-space-price * {
  border-collapse: collapse;
  word-break: break-all;
  word-break: break-word;
  box-sizing: border-box;
}

.rental-space-price {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  font-size: 0.95rem;
  text-align: left;
}

.rental-space-price thead tr {
  width: 100%;
  display: flex;
}

.rental-space-price thead tr th {
  width: calc(100% / 3);
  padding: 10px;
  border: 1px solid #1CB7CD;
}

.rental-space-price thead tr th:first-child {
  width: 205px;
}

.rental-space-price thead tr th:not(:first-child) {
  width: calc((100% - 205px) / 2);
}

.rental-space-price thead tr th:nth-child(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.rental-space-price.flex {
  display: flex;
}

.rental-space-price tbody {
  display: flex;
}

.rental-space-price tbody:first-child {
  width: 205px;
}

.rental-space-price tbody:not(:first-child) {
  width: calc((100% - 205px) / 2);
}

.rental-space-price tbody tr {
  display: grid;
  width: 100%;
  vertical-align: top;
}

.rental-space-price tr {
  width: calc(100% / 3);
}

.rental-space-price tbody tr th,
.rental-space-price tbody tr td {
  border: 1px solid #dddddd;
  display: flex;
  align-items: center;
  padding: 10px;
}

.rental-space-price tbody:first-child tr {
  grid-template-columns: 88px 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
}

.rental-space-price tbody:first-child tr th {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.rental-space-price tbody:first-child tr td:nth-child(2) {
  grid-column: 1 / 2;
  grid-row: 2 / 5;
}

.rental-space-price tbody:first-child tr td:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: #fafafa;
}

.rental-space-price tbody:first-child tr td:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  background: #fafafa;
}

.rental-space-price tbody:first-child tr td:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
  background: #fafafa;
}

/*2*/
.rental-space-price tbody:nth-child(2) tr {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
}

.rental-space-price tbody:nth-child(2) tr th:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  background: #fafafa;
}

.rental-space-price tbody:nth-child(2) tr th:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.rental-space-price tbody:nth-child(2) tr td:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.rental-space-price tbody:nth-child(2) tr td:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.rental-space-price tbody:nth-child(2) tr td:nth-child(5) {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
}

.rental-space-price tbody:nth-child(2) tr td:nth-child(6) {
  grid-column: 2 / 3;
  grid-row: 2 / 5;
}

/*3*/
.rental-space-price tbody:nth-child(3) tr {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
}

.rental-space-price tbody:nth-child(3) tr th:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  background: #fafafa;
}

.rental-space-price:nth-child(3) tbody tr th:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.rental-space-price tbody:nth-child(3) tr td:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 2 / 5;
}

.rental-space-price thead tr th {
  background: #1CB7CD;
  color: #fff;
  border-collapse: collapse;
}

.rental-space-price tbody tr th {
  font-weight: normal;
}

.rental-space-price tbody:first-child tr:first-child th,
.rental-space-price tbody:first-child tr td:nth-child(2) {
  background: #ededed;
}

.rental-space-price_title1,
.rental-space-price_title2 {
  display: none;
}

.rental-space-tel,
.rental-space-tel-box {
  display: flex;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 1.1rem !important;
  font-weight: bold;
  color: #000 !important;
}

.rental-space-tel {
  max-width: 700px;
  margin: 50px auto 50px auto !important;
}

.rental-space-tel>li {
  list-style: none;
  align-items: center;
  margin-left: 0
}

.rental-space-tel>li:first-child {
  padding-right: 20px;
}

.rental-space-tel>li:first-child span {
  display: inline-block;
  vertical-align: middle;
}

.news_content a.rental-space-tel-box {
  text-decoration: none;
  cursor: none;
}

.rental-space-tel-box img {
  width: 100%;
  max-width: 26px;
  display: block;
  margin-right: 10px;
  margin-bottom: 0;
}

.rental-space-tel-box span {
  font-size: 0.8rem;
  display: inline-block;
  padding-top: 5px;
}

/* テナント
---------------------------------------------------------- */
.p-tenant__wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.u-mgt-m {
  margin-top: 30px;
}

.u-mgt-l {
  margin-top: 40px;
}

.u-mgt-xl {
  margin-top: 50px;
}

.u-mgt-xxl {
  margin-top: 60px;
}

.u-mgt-xxxl {
  margin-top: 80px;
}

.u-mgb-m {
  margin-bottom: 30px;
}

.u-mgb-l {
  margin-bottom: 40px;
}

.u-mgb-xl {
  margin-bottom: 50px;
}

.u-mgb-xxl {
  margin-bottom: 60px;
}

.u-mgb-xxxl {
  margin-bottom: 80px;
}
.u-mgl-s {
  margin-left: 18px;
}

.p-tenant__wrapper-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-tenant__form-wrapper {
  width: 100%;
}

.p-tenant__form-inner {
  width: 100%;
  background: #F9F9F9;
  padding-top: 5.5rem;
  padding-bottom: 8rem;
}

.p-tenant__title {
  display: block;
  height: 32px;
  width: auto;
  margin: 0 auto 2rem;
}

.p-tenant__title-ja {
  display: block;
  height: 15px;
  width: auto;
  margin: 0 auto 3rem;
}

.p-tenant__form-box .wpcf7 {
  width: 90%;
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 4vw;
}

.p-tenant__form-box-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.p-tenant__form-box-inner>p {
  width: 100%;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.p-tenant__form-box-inner:not(:last-child)>p {
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #D8D8D8;
  margin-bottom: 1.5rem;
}

.p-tenant__form-box-title {
  width: 100%;
  max-width: 280px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.7rem;
}

.p-tenant__form-box-name {
  font-weight: bold;
  display: inline-block;
}

.p-tenant__form-box-required {
  display: inline-block;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.25rem 0.6rem;
  background: #E60012;
  border-radius: 0.2rem;
  margin-left: auto;
}

.p-tenant__form-box-inner>p>.wpcf7-form-control-wrap {
  width: calc(100% - 280px);
}

.wpcf7-form-control-wrap>.p-tenant__form-box-text {
  width: 100%;
  max-width: 630px;
  border: 1px solid #D8D8D8;
  padding: 1rem;
  border-radius: 0.3rem;
}

.p-tenant__form-box-radio input[type="radio"] {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  position: relative;
  vertical-align: sub;
  margin-right: 5px;
}

.p-tenant__form-box-radio input[type="radio"]::before,
.p-tenant__form-box-radio input[type="radio"]::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.p-tenant__form-box-radio input[type="radio"]::before {
  background-color: #fff;
  border: 1px solid #1CB7CD;
  height: 20px;
  width: 20px;
  left: 0px;
}

.p-tenant__form-box-radio input[type="radio"]::after {
  background-color: #1CB7CD;
  opacity: 0;
  height: 14px;
  width: 14px;
  left: 4px;
}

.p-tenant__form-box-radio input[type="radio"]:checked::after {
  opacity: 1;
}

.p-tenant__form-box-radio-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
}

.p-tenant__form-box-radio-contents>span {
  width: calc((100% - 1rem) / 2);
}

.p-tenant__main-title {
  font-size: 1.5rem;
  letter-spacing: 0.08rem;
  padding-bottom: 0.5rem;
  font-weight: bold;
  border-bottom: 1px dotted #D8D8D8;
}

.p-tenant__main-text {
  margin-top: 1rem;
  font-size: 1.4rem;
}

.p-tenant__banner-hidden {
  display: none;
}

.p-form__underline {
  text-decoration: underline;
}

.p-tenant__checkbox {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.p-tenant__checkbox>.wpcf7-list-item {
  margin: 0;
}

.p-tenant__checkbox>.wpcf7-list-item {
  width: calc((100% - 0.5rem) / 2);
}

.p-tenant__checkbox>.wpcf7-list-item input[type="radio"] {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  position: relative;
  vertical-align: sub;
  margin-right: 5px;
}

.p-tenant__checkbox>.wpcf7-list-item input[type="radio"]::after,
.p-tenant__checkbox>.wpcf7-list-item input[type="radio"]::before {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.p-tenant__checkbox>.wpcf7-list-item input[type="radio"]::before {
  background-color: #fff;
  border: 1px solid #1CB7CD;
  height: 20px;
  width: 20px;
  left: 0px;
}


.p-tenant__checkbox>.wpcf7-list-item input[type="radio"]::after {
  opacity: 0;
  height: 14px;
  width: 14px;
  left: 4px;
  background-color: #1CB7CD;
}

.p-tenant__checkbox>.wpcf7-list-item input:checked::after {
  opacity: 1;
}

.p-form__button {
  position: relative;
  overflow: hidden;
  margin: 3rem auto 0;
}

.p-form__button>p {
  position: relative;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

.p-form__button .wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 240px;
  max-width: 240px;
  height: 44px;
  padding-right: 44px;
  padding-left: 12px;
  border-radius: 22px;
  background: #1bb8ce;
  background: linear-gradient(90deg, #1bb8ce 0%, #1bb8ce 83.5%, #ffffff 12.5%, #ffffff 100%);
  margin: 0 auto;
  font-weight: bold;
  border: none;
  appearance: none;
  cursor: pointer;
}

.p-form__button span::after {
  content: "";
  display: block;
  right: -192px;
  width: 40px;
  height: 44px;
  background-color: #000;
  background-image: url(../img/right_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px 12px;
  z-index: 1;
  position: absolute;
  top: -44px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  visibility: initial;
}

.p-form__button .wpcf7-submit:disabled,
.p-form__button .wpcf7-submit:disabled+span::after {
  opacity: 0.4;
}

.p-tenant__introduction-inner {
  display: flex;
  gap: 0 0.8rem;
  padding-top: 1.8rem;
  width: 100%;
}

.p-tenant__introduction-box {
  width: 100%;
  max-width: calc((100% - 2.4rem) / 4);
  background: #F9F9F9;
}

.p-tenant__introduction-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-tenant__introduction-text-box {
  width: 100%;
  display: flex;
  gap: 0 0.5rem;
  padding: 0 1rem;
  align-items: flex-start;
  font-size: 0.8rem;
}

.p-tenant__introduction-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #229F9B;
  color: #fff;
  line-height: 1.2;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  width: 47px;
}

.p-tenant__introduction-text {
  word-break: break-all;
  line-height: 1.5;
  width: calc((100% - 0.5rem) - 47px);
  padding: 0.1rem 0;
}

.p-tenant__introduction-box .p-tenant__introduction-text-box:not(:last-child) {
  margin-bottom: 0.5rem;
}

.p-tenant__introduction-box .p-tenant__introduction-text-box:last-child {
  padding-bottom: 1rem;
}

.p-tenant__introduction-main-text {
  padding: 2rem 0 4rem;
}

.p-facilities__sub-title {
  font-size: 1rem;
  margin-top: 15px;
}

.p-facilities__event-wrapper {
  background: #F9F9F9;
  width: 100%;
  padding: 35px 30px;
  margin-top: 5px;
}

.p-facilities__event-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
}

.p-facilities__event-contents {
  width: calc((100% - 30px) / 2);
  display: flex;
  gap: 20px;
  position: relative;
}

.p-facilities__event-contents figure {
  width: 217px;
  margin: 0;
}

.p-facilities__event-contents-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-facilities__event-contents-text {
  width: calc(100% - 217px);
}

.p-facilities__event-box>.p-facilities__event-contents:first-child::after,
.p-facilities__event-box>.p-facilities__event-contents:nth-child(3)::after {
  content: "";
  display: block;
  position: absolute;
  right: -15px;
  top: 0;
  height: 100%;
  border-right: 1px dotted #D8D8D8;
}

.p-facilities__event-box>.p-facilities__event-contents:first-child:before,
.p-facilities__event-box>.p-facilities__event-contents:nth-child(2):before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  border-bottom: 1px dotted #D8D8D8;
}

.p-facilities__event-button {
  margin: 3rem auto;
  width: 100%;
  max-width: 240px;
}

.p-facilities__tenant-box {
  width: 100%;
  display: flex;
  gap: 10px;
}

.p-facilities__tenant-box>figure {
  width: calc((100% - 20px) / 3);
}

.u-display-none {
  display: none;
}

.p-form__check-box {
  width: 100%;
  padding-top: 30px;
}

.p-form__check-box>p {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.p-form__check[type="checkbox"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.p-form__check-text {
  padding-left: 20px;
}

.p-form__check-text a {
  text-decoration: underline;
}

.p-form__check[type="checkbox"]::before,
.p-form__check[type="checkbox"]::after {
  content: "";
  position: absolute;
  display: block;
  cursor: pointer;
}

.p-form__check[type="checkbox"]::before {
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #1CB7CD;
  border-radius: 2px;
}

.p-form__check[type="checkbox"]::after {
  opacity: 0;
  top: 4px;
  left: 7px;
  width: 7px;
  height: 12px;
  border-bottom: 2px solid #1CB7CD;
  border-right: 2px solid #1CB7CD;
  transform: rotate(45deg);
}

.p-form__check[type="checkbox"]:checked::after {
  opacity: 1;
}

/* Store Guide （外国語）
---------------------------------------------------------- */
.p-store-guide__introduction-text {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}
.p-store-guide__google-map {
  position: relative;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
  margin-bottom: 80px;
}
.p-store-guide__google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.c-translation-button-item {
  background-size: 100%;
  width: 36px;
  height: 37px;
}

.c-back-button {
  margin-bottom: 6rem;
}
.chinese_traditional_text {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
}
.chinese_simplified_text {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 300;
}
.chinese_simplified_text .under_deco, .chinese_simplified_text .information_caption, .chinese_traditional_text .under_deco, .chinese_traditional_text .information_caption {
  font-weight: 500;
}

@media screen and (max-width:999px) {
  .rentalspace_img {
    flex-wrap: wrap;
    gap: 15px;
  }

  .rentalspace_img>div {
    width: calc((100% - 15px) / 2);
    width: -webkit-calc((100% - 15px) / 2);
  }

  /* テナント
---------------------------------------------------------- */
  .p-tenant__introduction-inner {
    gap: 1rem 0.8rem;
    flex-wrap: wrap;
  }

  .p-tenant__introduction-box {
    max-width: calc((100% - 0.8rem) / 2);

  }

  .p-tenant__form-box-inner>p {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .p-tenant__form-box-required {
    margin-left: inherit;
  }

  .p-tenant__form-box-inner>p>.wpcf7-form-control-wrap {
    width: 100%;
  }

  .p-tenant__form-box .wpcf7 {
    width: 100%;
  }

  .wpcf7-form-control-wrap>.p-tenant__form-box-text {
    max-width: 100%;
  }

  .p-facilities__event-box {
    flex-wrap: wrap;
    gap: 50px 0;
  }

  .p-facilities__event-contents {
    width: 100%;
  }

  .p-facilities__event-box>.p-facilities__event-contents:first-child::after,
  .p-facilities__event-box>.p-facilities__event-contents:nth-child(3)::after {
    display: none;
  }

  .p-facilities__event-box>.p-facilities__event-contents:first-child:before,
  .p-facilities__event-box>.p-facilities__event-contents:nth-child(2):before,
  .p-facilities__event-box>.p-facilities__event-contents:nth-child(3):before {
    bottom: -25px;
  }

  .p-facilities__event-box>.p-facilities__event-contents:nth-child(3):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    border-bottom: 1px dotted #D8D8D8;
  }
}

@media screen and (max-width:769px) {

  .rental-space-price thead,
  .rental-space-price tbody:first-child {
    display: none;
  }

  .rental-space-price.flex {
    display: block;
  }

  .rental-space-price,
  .rental-space-price tbody:not(:first-child) {
    display: block;
    width: 100%
  }

  .rental-space-price tbody tr {
    width: 100%;
  }

  .rental-space-price tbody:nth-child(2) tr,
  .rental-space-price tbody:nth-child(3) tr {
    grid-template-columns: 100px 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }

  .rental-space-price tbody:nth-child(2)::before,
  .rental-space-price tbody:nth-child(3)::before {
    width: 100%;
    display: grid;
    background: #1CB7CD;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    box-sizing: border-box;
  }

  .rental-space-price tbody:nth-child(2)::before {
    content: "ご利用区分：オープンスペース";
  }

  .rental-space-price tbody:nth-child(3)::before {
    content: "ご利用区分：個室";
  }

  .rental-space-price tbody:nth-child(2) tr::before,
  .rental-space-price tbody:nth-child(3) tr::before,
  .rental-space-price tbody:nth-child(2) tr::after,
  .rental-space-price tbody:nth-child(3) tr::after {
    grid-column: 1 / 2;
    background: #ededed;
    border: 1px solid #dddddd;
    border-collapse: collapse;
    display: grid;
    align-items: center;
    padding: 10px;
  }

  .rental-space-price tbody:nth-child(2) tr::before,
  .rental-space-price tbody:nth-child(3) tr::before {
    content: "ご利用目的";
    grid-row: 1 / 2;
  }

  .rental-space-price tbody:nth-child(2) tr::after,
  .rental-space-price tbody:nth-child(3) tr::after {
    content: "利用料金（税込）";
    grid-row: 2 / 5;
  }

  /*2*/
  .rental-space-price tbody:nth-child(2) tr th:first-child {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .rental-space-price tbody:nth-child(2) tr th:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .rental-space-price tbody:nth-child(2) tr td:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: #fafafa;
  }

  .rental-space-price tbody:nth-child(2) tr td:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    background: #fafafa;
  }

  .rental-space-price tbody:nth-child(2) tr td:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    background: #fafafa;
  }

  .rental-space-price tbody:nth-child(2) tr td span {
    display: inline-block;
    vertical-align: middle;
  }

  .rental-space-price tbody:nth-child(2) tr td:nth-child(3)::before,
  .rental-space-price tbody:nth-child(2) tr td:nth-child(4)::before,
  .rental-space-price tbody:nth-child(2) tr td:nth-child(5)::before {
    content: attr(data-label);
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    width: auto;
  }

  .rental-space-price tbody:nth-child(2) tr td:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 2 / 5;
  }

  .rental-space-price tbody:nth-child(2) tr td:nth-child(7) {
    grid-column: 1 / 2;
    grid-row: 2 / 5;
  }

  /*3*/
  .rental-space-price tbody:nth-child(3) tr th:first-child {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .rental-space-price tbody:nth-child(3) tr th:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .rental-space-price tbody:nth-child(3) tr td:nth-child(3) {
    grid-column: 2 / 4;
    grid-row: 2 / 5;
  }

  /* テナント
---------------------------------------------------------- */
  .p-facilities__event-contents {
    flex-wrap: wrap;
  }

  .p-facilities__event-contents figure,
  .p-facilities__event-contents-text {
    width: 100%;
  }

  .p-facilities__tenant-box {
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .p-facilities__tenant-box>figure {
    width: 100%;
  }

  .p-form__check[type="checkbox"]::after {
    top: 1px;
  }

  .p-tenant__wrapper {
    margin-top: 2.25rem;
  }

  .p-tenant__form-box-inner>p {
    gap: 0.5rem 0;
  }

  .p-tenant__checkbox>.wpcf7-list-item {
    width: 100%;
  }
  
/* Store Guide （外国語）
---------------------------------------------------------- */
.p-store-guide__introduction-text {
  margin-top: 60px;
  margin-bottom: 40px;
}
.p-store-guide__google-map {
  margin-bottom: 50px;
}
/* SP nav menu
---------------------------------------------------------- */
.menu_ul li:nth-last-child(-n+2) {
  border: none;
}
}

@media screen and (max-width:700px) {
  .rental-space-tel {
    display: block;
  }

  .rental-space-tel>li:first-child {
    padding-right: 0;
    padding-bottom: 10px;
  }

  .rental-space-tel-box {
    text-align: center;
    justify-content: center;
  }
}

@media screen and (max-width:375px) {

  .rental-space-price tbody:nth-child(2) tr,
  .rental-space-price tbody:nth-child(3) tr {
    grid-template-columns: 100px 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }

  .rental-space-price tbody tr td:nth-child(3),
  .rental-space-price tbody tr td:nth-child(4),
  .rental-space-price tbody tr td:nth-child(5) {
    display: block;
  }

  .rental-space-tel {
    margin: 30px auto 40px auto !important;
  }
}

/* リニューアル追加2207
---------------------------------------------------------- */
/* information*/
.info_contents_box {
  display: flex;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.info_contents_box>div:first-child {
  width: 244px;
}

.info_contents_box>div:nth-child(2) {
  width: calc(100% - 244px);
  padding-left: 45px;
}


/* pickup */
#sec_pickup {
  overflow: hidden;
  padding: 5rem 0 4rem 0;
}

.pickup_title {
  display: block;
  height: 32px;
  width: auto;
}

.pickup_ja {
  display: block;
  height: 13px;
  width: auto;
}

.sec_pickup_box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 50px;
}

.sec_pickup_box .sec_pickup_box__title img {
  display: inline-block;
  vertical-align: middle;
}

.sec_pickup_box .sec_pickup_box__title {
  flex: 1;
}

.sec_pickup_box .sec_pickup_box__title img:first-child {
  padding-right: 15px;
}

.sec_pickup_box .sec_pickup_box__article {
  display: flex;
  gap: 1rem;
  min-width: 740px;
}

.sec_pickup_box .sec_pickup_box__article a {
  padding: 35px 30px;
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  background: #fff;
}

.sec_pickup_box .sec_pickup_box__article a::before,
.sec_pickup_box .sec_pickup_box__article a::after {
  content: "";
  display: block;
  position: absolute;
}

.sec_pickup_box .sec_pickup_box__article a::before {
  top: 0;
  left: 0;
  display: block;
  width: calc(100% - 5px);
  width: -webkit-calc(100% - 5px);
  height: calc(100% - 5px);
  height: -webkit-calc(100% - 5px);
  z-index: 3;
  border-top: 5px solid #1cb7cd;
  border-left: 5px solid #1cb7cd;
}

.sec_pickup_box .sec_pickup_box__article a::after {
  bottom: 0;
  left: 0;
  display: block;
  width: calc(100% - 5px);
  width: -webkit-calc(100% - 5px);
  height: calc(100% - 5px);
  height: -webkit-calc(100% - 5px);
  z-index: 3;
  border-bottom: 5px solid #e60012;
  border-right: 5px solid #e60012;
}

.sec_pickup_box .sec_pickup_box__article a figure {
  width: 149px;
}

.sec_pickup_box .sec_pickup_box__article a figure img {
  max-width: 149px;
  height: auto;
  width: 100%;
  margin: 0 auto;
}

.sec_pickup_box .sec_pickup_box__article a dl {
  width: calc(100% - 149px);
  width: -webkit-calc(100% - 149px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sec_pickup_box .sec_pickup_box__article a dl dt {
  display: block;
  width: calc(100% - 10px);
  width: -webkit-calc(100% - 10px);
  padding-bottom: 12px;
}

.sec_pickup_box .sec_pickup_box__article a dl dt p {
  width: auto;
  display: inline-block;
  font-size: 0.9rem;
  vertical-align: middle;
}

.sec_pickup_box .sec_pickup_box__article a dl dt .post-name {
  max-width: 85px;
  text-align: center;
  color: #fff;
  background: #E60012;
  border-radius: 3px;
  font-weight: bold;
  padding: 2px 5px;
  margin-right: 10px;
}

.sec_pickup_box .sec_pickup_box__article a dl dt .post-date {
  color: #919191;
}

.sec_pickup_box .sec_pickup_box__article a dl .sec_pickup_box__article-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-width: 580px;
  overflow: hidden;
}

/*movie*/
.back_movie {
  background-image: url("../img/back_movie.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.recommend_contents_box,
.movie_contents_box {
  display: block;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.recommend_title_box,
.recommend_title_box>li:first-child h2,
.movie_title_box,
.movie_title_box>li:first-child h2,
.movie_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.recommend_title_box,
.movie_title_box {
  margin-bottom: 30px;
}

.recommend_title_box>li:first-child,
.movie_title_box>li:first-child {
  width: 100%;
  width: calc(100% - 250px);
  width: -webkit-calc(100% - 250px);
  padding-right: 3rem;
}

.recommend_title_box>li:first-child img,
.movie_title_box>li:first-child img {
  max-width: 100%;
}

.recommend_title_box>li:first-child img:first-child,
.movie_title_box>li:first-child img:first-child {
  padding-right: 1.5rem;
}

.recommend_title_box>li:last-child,
.movie_title_box>li:last-child {
  width: 250px;
}

.recommend_title,
.movie_title {
  display: block;
  height: 32px;
  width: auto;
}

.recommend_ja,
.movie_ja {
  display: block;
  height: 13px;
  width: auto;
}

.movie_box {
  width: 100%;
  align-items: stretch;
}

.movie_box>li:first-child {
  max-width: 650px;
}

.movie_box>li:last-child {
  width: calc(100% - 650px);
  width: -webkit-calc(100% - 650px);
  padding: 60px 30px;
  background: #000;
  color: #fff;
}

.movie_box>li:last-child .title_text {
  font-size: 1.3rem;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: solid 3px #1CB7CD;
  position: relative;
}

.movie_box>li:last-child .title_text span {
  font-size: 1rem;
}

.movie_box>li:last-child .title_text::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #E50113;
  bottom: -3px;
  width: 50%;
}

.movie_box>li:last-child p {
  font-size: 1rem;
  line-height: 2;
}

.movie_img_box {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.movie_img_box iframe {
  width: 100%;
  height: 100%;
}

a.movie-modal__close {
  color: #fff;
  width: 100%;
  max-width: 100%;
  display: block;
  position: relative;
  margin-left: auto;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 10px;
  pointer-events: none;
  cursor: pointer;
}

a.movie-modal__close::before,
a.movie-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #fff;
}

a.movie-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

a.movie-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.movie_btn {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  display: block;
}

.movie_btn a::before {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  display: block;
  width: 80px;
  height: 80px;
  content: '';
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../img/youtube_icon.png) no-repeat center center;
  background-size: 100%;
}

.movie_btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 150%;
  max-height: 150%;

}

/*モーダル*/
.movie_md_content {
  margin: 0 auto;
}

.movie_md_content a {
  display: block;
  width: 100%;
}

.movie-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.movie-modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.movie-modal__content {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}

/*スライダー*/
.slider_box_recommend.swiper-wrapper {
  transition-timing-function: linear;
}

.slider_box_recommend .recommend_text {
  position: relative;
  display: block;
  border-right: 1px solid #fff;
}

.slider_box_recommend .recommend_text figure {
  margin-bottom: 0;
}

.slider_box_recommend .recommend_text figure img {
  height: auto;
  min-width: 100%;
}

.slider_box_recommend .recommend_text p {
  width: 100%;
  height: 3em;
  line-height: 1.2;
  position: absolute;
  padding: 0 10px;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
}

.slider_box_recommend .recommend_text .recommend_text_box span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.slider_box_recommend .recommend_text p::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0.6em;
  height: 0.6em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.d_inline span {
  display: block;
}

.u-display-sp {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .movie_box>li:first-child {
    width: 600px;
  }

  .movie_box>li:last-child {
    width: calc(100% - 600px);
    width: -webkit-calc(100% - 600px);
    padding: 50px 30px;
  }
}

@media only screen and (max-width: 999px) {
  .sec_pickup_box .sec_pickup_box__title {
    width: 250px;
  }

  .sec_pickup_box .sec_pickup_box__article {
    width: calc((100% - 10px) - 250px);
    width: -webkit-calc((100% - 10px) - 250px);
    min-width: auto;
    flex-wrap: wrap;
  }

  .movie_box {
    display: block;
  }

  .movie_box>li:first-child,
  .movie_box>li:last-child {
    max-width: 100%;
    width: 100%;
  }

  .movie_box>li:first-child {
    padding-bottom: 56.25%;
    overflow: hidden;
  }

  .movie-modal__content {
    width: 90%;
  }

  .pick_up_items_wrap li {
    width: calc((100% - 2.6rem) / 3);
    width: -webkit-calc((100% - 2.6rem) / 3);
  }

  .d_inline span {
    display: inline;
  }

}

@media only screen and (max-width: 767px) {

  .sec_pickup_box,
  .recommend_title_box>li:first-child h2,
  .movie_title_box>li:first-child h2 {
    display: block;
    width: 100%;
    gap: 0;
  }

  .sec_pickup_box .sec_pickup_box__title,
  .sec_pickup_box .sec_pickup_box__article,
  .recommend_title_box>li:first-child,
  .movie_title_box>li:first-child {
    width: 100%;
  }

  .sec_pickup_box .sec_pickup_box__title img {
    display: block;
  }

  .sec_pickup_box .sec_pickup_box__title img:first-child,
  .recommend_title_box>li:first-child,
  .recommend_title_box>li:first-child img:first-child,
  .movie_title_box>li:first-child,
  .movie_title_box>li:first-child img:first-child {
    padding-right: 0;
    margin: 0 auto 15px;
  }

  .pickup_ja {
    margin: 0 auto 3rem;
  }

  .sec_pickup_box .sec_pickup_box__article a {
    display: block;
    gap: 0;
    padding: 25px;
  }

  .sec_pickup_box .sec_pickup_box__article a figure,
  .sec_pickup_box .sec_pickup_box__article a dl {
    width: 100%;
  }

  .sec_pickup_box .sec_pickup_box__article a dl dt {
    padding: 15px 0;
    width: 100%;
  }

  .slider_box_recommend.swiper-wrapper,
  .movie_box {
    margin-bottom: 2rem;
  }

  .movie_box>li:last-child {
    padding: 30px 13px;
  }

  .movie_box>li:last-child p {
    font-size: inherit;
  }

  .movie_btn a::before {
    width: 60px;
    height: 60px;
  }

  .recommend_title,
  .recommend_ja,
  .movie_title,
  .movie_ja {
    margin: 0 auto;
  }

  /* テナント
  ---------------------------------------------------------- */
  .p-tenant__introduction-inner {
    gap: 1rem 0;
  }

  .p-tenant__introduction-box {
    max-width: 100%;
  }

  .u-display-pc {
    display: none;
  }

  .u-display-sp {
    display: block;
  }

  .store_29 {
    height: auto;
  }
}

@media all and (-ms-high-contrast: none) {

  /*青ボタン*/
  /*information ラベル*/
  .bl_btn,
  .information_ul .label,
  .label_time_wrap .label {
    padding-top: 0.3125rem;
  }
}

@media only screen and (min-width: 1200px) {

  /* header
	---------------------------------------------------------- */
  .header_search {
    margin-left: 2.25rem;
  }

  .english,
  .korean,
  .traditional {
    margin-right: 1.0625rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 940px) {

  /* footer
	------------------------------------------------------------ */
  .footer_left {
    width: 60%;
  }

  .footer_logo {
    width: 25%;
    margin-right: 7%;
  }

  .footer_link {
    width: 40%;
  }

  .link_top li,
  .link_bottom li {
    width: 50%;
    margin: 0;
  }

  /* concept
	------------------------------------------------------------ */
  .top_concept {
    background-image: none;
  }

  /*コンセプト下*/
  .bottom_concept_wrap {
    flex-direction: column;
    padding: 2.25rem 0 2.625rem;
  }

  .bottom_concept {
    width: 100%;
  }

  .bottom_concept_wrap .bottom_concept:last-child {
    margin-top: 3.4375rem;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }

  main {
    padding-top: 58px;
  }

  /*表示非表示*/
  .show_mobile {
    display: block;
  }

  .show_mobile_inline {
    display: inline-block;
  }

  .hide_mobile {
    display: none;
  }

  .hide_mobile_inline {
    display: none;
  }

  a[href^="tel:"] {
    pointer-events: all;
  }

  /*画面スクロール時*/
  .when_scroll .header_wrap {
    height: 58px;
  }

  .when_scroll .header_logo img {
    max-width: 122px;
  }

  .when_scroll .nav_content,
  .when_scroll .nav_close {
    top: 58px;
  }

  .when_scroll main {
    padding-top: 58px;
  }

  /* 共通
	---------------------------------------------------------- */
  .container {
    margin: 0 auto;
    width: 90.6666666667%;
  }

  /*青ボタン*/
  .bl_btn {
    margin: 0 auto;
    width: 100%;
    max-width: 250px;
    height: 46px;
    border-radius: 23px;
  }

  /* header
	---------------------------------------------------------- */
  .header_wrap {
    height: 58px;
    padding: 0.375rem 4.6666666667% 0;
  }

  .header_wrap::before,
  .header_wrap::after {
    height: 6px;
  }

  .header_logo {
    width: 122px;
  }

  .header_logo img {
    width: 100%;
    max-width: 122px;
  }

  /*検索ボタン*/
  .header_search {
    margin-left: 0;
    width: 22px;
    height: 22px;
  }

  /*ハンバーガーメニュー*/
  .sp_hbg_menu {
    width: 30%;
    display: flex;
    justify-content: flex-end;
  }

  /*アイコンスペース*/
  .nav_open {
    width: 26px;
    height: 23px;
  }

  /*ハンバーガーアイコン*/
  .nav_open span,
  .nav_open span:before,
  .nav_open span:after {
    width: 26px;
    height: 3px;
  }

  .nav_open span:before {
    bottom: -10px;
  }

  .nav_open span:after {
    bottom: -20px;
  }

  /*close アイコン*/
  .nav_close {
    top: 58px;
    left: auto;
    right: 0;
  }

  /*中身*/
  .nav_content {
    top: 58px;
    right: 0;
    left: auto;
    height: 100%;
    max-width: 255px;
    max-height: 100%;
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
    padding-bottom: 58px;
  }

  .menu_ul li a {
    height: 60px;
    padding: 0 0.3rem;
  }

  .menu_ul li .menu_icon {
    width: 20%;
    margin-right: 1.25rem;
  }

  .menu_ul .min_wrap a {
    height: 47px;
    padding: 0 0.625rem;
    font-size: 0.8125rem;
  }

  /*follow us*/
  .menu_ul .follow_us_wrap a {
    padding: 0.8125rem 0.625rem 0.8125rem 0;
  }

  .menu_ul .follow_us_wrap img {
    width: 100%;
  }

  .bk_insta_icon {
    width: 34px;
    height: 34px;
  }

  /*チェックが入った場合表示*/
  #sp_nav_input:checked~.nav_close {
    display: block;
    opacity: 0.5;
  }

  #sp_nav_input:checked~.nav_content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  /*closeアイコン*/
  #sp_nav_input:checked~.nav_open span,
  #sp_nav_input:checked~.nav_open span {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
  }

  #nav_input:checked~.nav_open span:before,
  #sp_nav_input:checked~.nav_open span:before {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: 0;
  }

  #sp_nav_input:checked~.nav_open span:after {
    content: none;
  }

  /*メニュー内翻訳ボタン*/
  .hbg_translation_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    padding: 0 0.625rem;
  }

  /*検索ボタン*/
  .search_icon {
    width: 22px;
    height: 22px;
  }

  /*中身*/
  .header_search .nav_content {
    max-height: 80px;
    padding: 0;
  }

  .words_search {
    width: 100%;
  }

  .words_search input {
    width: 100%;
    height: 50px;
    margin: 0.9375rem auto;
    padding: 0 3.125rem 0 3.5%;
    font-size: 0.8125rem;
  }

  /*submitボタン*/
  .words_search button {
    top: 0.9375rem;
    width: 50px;
    height: 50px;
    padding: 0;
    background-position: center;
  }

  .words_search button::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* footer
	---------------------------------------------------------- */
  footer .container {
    flex-direction: column;
    width: 100%;
    padding-bottom: 0;
  }

  .footer_left {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
    width: 90.6666666667%;
  }

  /*上*/
  .footer_logo {
    width: 60%;
    max-width: 240px;
    margin: 0 0 2.0625rem 0;
  }

  /*下*/
  .footer_link {
    width: 100%;
    max-width: none;
  }

  /*上リンク*/
  .link_top {
    padding: 0.7rem 0;
    margin: 1.5rem 0 0.2rem 0;
    border-top: solid 1px #d8d8d8;
  }

  .link_top li {
    width: 38%;
  }

  .link_top li,
  .link_bottom li {
    margin: 0 0 0 5.3333333334%;
  }

  .link_top li a {
    padding: 0.8rem 0 0.8rem 1.25rem;
  }

  .link_top li a .link_top_text_s {
    letter-spacing: 0.05rem;
  }

  /*下リンク*/
  .link_bottom {
    margin: 0;
    padding: 0.5rem 0;
  }

  .link_bottom li a {
    padding: 0.625rem 0.8125rem;
  }

  .link_bottom li a::before {
    content: "";
    position: absolute;
    top: 52%;
    left: 0;
    transform: translateY(-50%);
    height: 8px;
    width: 5px;
    background: url(../img/right_arrow.svg) no-repeat center;
    background-size: 100%;
  }

  /* ファーストビュー
	---------------------------------------------------------- */
  /*スライダー*/
  .slider_box .swiper-slide {
    width: 100%;
    border: none;
    border-radius: 0;
    margin: 0;
  }

  .main_slider_wrapper button {
    width: 23px;
  }

  /*メニュー*/
  .top_page_link {
    flex-wrap: wrap;
    width: 94%;
    margin: 1rem auto 1.2rem auto;
  }

  .top_page_link a,
  .top_page_link .sp_translation_btn_wrap {
    width: calc(100% / 2);
    width: -webkit-calc(100% / 2);
    height: auto;
  }

  .top_page_link a {
    position: relative;
  }

  .top_page_link div {
    width: initial;
    height: initial;
  }

  .top_page_link a:nth-child(n+1):nth-child(-n+2) div {
    padding: 0 10px 10px 10px;
  }

  .top_page_link a:nth-child(n+3):nth-child(-n+4) div {
    padding: 10px;
  }

  .top_page_link a:nth-child(n+5):nth-child(-n+6) div {
    padding: 10px 10px 0 10px;
  }

  .top_page_link img {
    width: 100%;
  }

  .top_page_link a .concept_icon {
    width: 50%;
  }

  .top_page_link a .information_icon {
    width: 65%;
  }

  /*点線*/
  .top_page_link a:nth-child(3)::before,
  .top_page_link a:nth-child(4)::before,
  .top_page_link a:nth-child(5)::before,
  .top_page_link a:nth-child(6)::before {
    content: "";
    display: block;
    border: dashed 1px #d8d8d8;
    width: 95%;
    margin: 0 auto;
  }

  .top_page_link a:first-child::after,
  .top_page_link a:nth-child(3)::after,
  .top_page_link a:nth-child(5)::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: dashed 1px #d8d8d8;
    height: calc(100% - 10px);
  }

  .traffic_method li:nth-child(even)::after {
    content: none;
  }

  .today_hours .sales_status {
    margin-left: 0.5rem;
  }

  .today_hours p {
    padding: 0.125rem 0 0.125rem 1.5rem;
    background-size: 16px;
  }

  /* concept
	---------------------------------------------------------- */
  .top_concept {
    background-image: none;
  }

  .concept_top_wrap {
    flex-direction: column;
    margin-top: 1.3rem;
    margin-bottom: 2.2rem;
  }

  .concept_title {
    margin: 0 auto 0.5625rem;
  }

  .top_concept .left {
    padding: 2.5625rem 4.6666666667% 2.3125rem;
    width: 100%;
  }

  /*画像*/
  .top_concept .right {
    width: 100%;
    margin-bottom: 1.625rem;
  }

  /*コンセプト上*/
  .top_concept .title {
    font-size: 1.6rem;
    letter-spacing: 1.57px;
    margin-bottom: 1rem;
  }

  .top_concept .text {
    font-size: 0.8125rem;
    line-height: 24px;
  }

  /*コンセプト下*/
  .bottom_concept_wrap {
    flex-direction: column;
    padding: 3rem 0 3.6rem;
  }

  .bottom_concept {
    width: 100%;
  }

  .bottom_concept_wrap .bottom_concept:last-child {
    margin-top: 3.6rem;
  }

  /*画像*/
  .bottom_concept .img_text img {
    margin-right: 5.5882352941%;
    width: 38.2352941176%;
  }

  /*テキスト*/
  .bottom_concept .title {
    font-size: 1rem;
    margin-bottom: 1.4rem;
  }

  .bottom_concept .img_text .text {
    font-size: 0.8125rem;
    line-height: 1.6;
    width: 56.1764705883%;
  }

  /*青ボタン*/
  .bottom_concept .bl_btn {
    margin: 1.25rem auto 0;
  }

  .bottom_concept_wrap .bottom_concept:first-child {
    margin: 0;
  }

  /*payどん
	---------------------------------------------------------- */
  .paydon_link {
    position: relative;
    display: block;
    width: 100%;
  }

  .paydon_link::before {
    content: "";
    display: block;
    padding-top: 52.6595744681%;
  }

  .paydon_link img {
    position: absolute;
    top: 0;
    width: 100%;
  }

  /* pick up items
	---------------------------------------------------------- */
  .pick_up_items_wrap {
    gap: 1rem;
  }

  .pick_up_items_wrap li {
    width: calc((100% - 1rem) / 2);
    width: -webkit-calc((100% - 1rem) / 2);
  }

  .pick_up_items_img::before {
    width: 3px;
  }

  .pick_up_items_img::after {
    height: 3px;
  }

  /*テキスト*/
  .product_name {
    margin: 0.375rem 0 0.375rem 0.3125rem;
    font-size: 1rem;
  }

  .category_store_name span:nth-child(2) {
    margin: 0 0 0.1875rem -0.4375rem;
    display: inline-block;
    color: #868686;
  }

  .category_store_name span:last-child {
    display: block;
  }

  /* information
	---------------------------------------------------------- */
  #sec_instagram {
    border-bottom: none;
  }

  .information_ul {
    margin-bottom: 2rem;
  }

  .information_ul a {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.25rem 0;
  }

  .time_label {
    margin-bottom: 0.625rem;
  }

  /* event
  ---------------------------------------------------------- */
  .top_event_wrap li {
    width: 100%;
  }

  .top_event_wrap {
    margin-bottom: 2rem;
    display: block;
  }

  .top_event_wrap li.new::before {
    left: -8px;
  }

  .top_event_wrap li {
    margin: 18px auto 0 auto;
  }

  /*swiper解除、リニューアル*/
  #swiper-outer.noSwiper .swiper-wrapper {
    display: flex;
    justify-content: center;
  }

  #swiper-outer.noSwiper .swiper-slide {
    flex: 0 0 32%;
    max-width: 32%;
    margin-right: 2%;
  }

  #swiper-outer.noSwiper .swiper-slide:last-child {
    margin-right: 0;
  }

  .top_event_wrap li a {
    display: flex;
  }

  .top_event_wrap li a .top_event_img {
    width: 140px;
    display: block;
    position: inherit;
    padding-top: 0;
  }

  .top_event_wrap li a .top_event_img img {
    position: inherit;
    top: 0;
    left: 0;
    transform: inherit;
    width: 100%;
    height: auto;
    max-width: 140px;
    object-fit: contain;
    margin: 0 auto;
  }

  .top_event_wrap li a div:not(.top_event_img) {
    width: calc(100% - 140px);
    width: -webkit-calc(100% - 140px);
    padding-left: 10px;
  }


  /* instagram
	---------------------------------------------------------- */
  .instagram_title {
    margin: 3.625rem auto 1.125rem;
  }

  .instagram_description {
    width: 72.5333333333%;
    margin: 0 auto 1.25rem;
    line-height: 19px;
    font-size: 0.75rem;
    letter-spacing: 0.34px;
  }

  /*画像*/
  .instagram_wrap {
    overflow: inherit;
    width: 100%;
  }

  .instagram_wrap div {
    float: left;
    width: 33.33333%;
    height: 0;
    padding-top: 33.33333%;
    position: relative;
  }

  .instagram_contents.container {
    margin: 0 auto 2rem auto;
  }

  .instagram_wrap div:first-of-type {
    width: 66.66666%;
    height: 0;
    padding-top: 66.66666%;
    position: relative;
  }

  .instagram_wrap div a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
  }

  .instagram_wrap div img {
    height: 100%;
    width: auto;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .instagram_wrap div:last-of-type {
    display: none;
  }

  .instagram_contents::before {
    padding-top: 100%;
  }

  /* バナー
	---------------------------------------------------------- */
  .banner_wrap {
    width: 100%;
    margin: 2.25rem 0;
    overflow: hidden;
  }

  /*矢印*/
  .banner_wrap .previous,
  .banner_wrap .next {
    width: 22px;
    height: 80px;
    background-size: 8px 12px;
  }

  /*画像*/
  .banner_slide {
    margin: 0 22px;
  }

  .banner_box a {
    width: 53.7764350453%;
    margin-right: 6.9%;
    margin-left: 6.9%;
  }

  /* FACILITIES
	---------------------------------------------------------- */
  .page_title {
    margin: 2.8rem auto 2.6rem;
  }

  .facilities_title {
    height: 27px;
    margin-bottom: 0.7rem;
  }

  .sec_min_wrap {
    width: 90%;
    margin-bottom: 2rem;
  }

  .sec_settlement_method {
    margin-bottom: 2rem;
  }

  .top_img {
    margin-bottom: 3rem;
    width: 100%;
  }

  .map_image {
    width: 100%;
    margin-bottom: 5rem;
  }

  .under_deco::before {
    transform: translateX(-60px);
    width: 60px;
  }

  .under_deco::after {
    width: 60px;
  }

  .business_hours_text p {
    line-height: 1.25rem;
  }

  .information_sec_min_wrap {
    width: 90%;
  }

  .settlement_img_wrap {
    margin: 0.2rem 0;
  }

  .settlement_img_wrap li {
    width: 25%;
    margin: 0.3125rem 0;
  }

  .settlement_img_wrap img {
    margin: 0 auto;
  }

  .brd_top_dotted .settlement_img_wrap li {
    height: 100px;
    width: 50%;
    margin: 0;
  }

  #payment_information {
    padding-top: 58px;
  }

  /* ACCESS
	---------------------------------------------------------- */
  .access_title {
    height: 27px;
    margin-bottom: 0.7rem;
  }

  /*google map*/
  .map_image_wrap {
    width: 100%;
    height: auto;
  }

  .building_address {
    font-size: 0.875rem;
    text-align: left;
    line-height: 18px;
    margin: 1rem 5% 1.6rem;
  }

  /*交通手段表*/
  .parking_table {
    font-size: 0.75rem;
  }

  .traffic_method {
    padding: 0;
    margin: 2rem auto 4.375rem;
  }

  .traffic_method li {
    width: 100%;
    height: auto;
    padding: 1.2rem 2%;
  }

  .traffic_method .car_wrap {
    padding: 0 0 2rem;
  }

  .icon_heading_wrap {
    height: auto;
    margin-bottom: 0.6rem;
  }

  /*交通手段アイコン*/
  .car_wrap .transportation_icon {
    width: 46px;
    margin-right: 10px;
  }

  .transportation_icon {
    width: 44px;
    margin-right: 0.625rem;
  }

  /*交通手段内容*/
  .icon_heading_wrap p {
    font-size: 1rem;
    letter-spacing: 0.03rem;
  }

  .caution_message {
    font-size: 0.85rem;
  }

  .traffic_method li .text {
    letter-spacing: 0.56px;
    font-size: 0.875rem;
    line-height: 20px;
  }

  /*交通手段　点線*/
  .traffic_method li:first-child::before,
  .traffic_method li:nth-child(2)::before,
  .traffic_method li:nth-child(3)::before,
  .traffic_method li:nth-child(4)::before,
  .traffic_method li:nth-child(5)::before,
  .traffic_method li:nth-child(6)::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: dashed 1px #d8d8d8;
    width: 100%;
  }

  .traffic_method li:first-child::after,
  .traffic_method li:nth-child(3)::after,
  .traffic_method li:nth-child(5)::after {
    content: none;
  }

  /* SHOP GUIDE
	---------------------------------------------------------- */
  .shop_guide_title {
    height: 27px;
    margin-bottom: 0.7rem;
  }

  /*大タブ*/
  .shop_guide_tab_wrap .container {
    width: 100%;
  }

  .shop_guide_tab_wrap {
    border-bottom: solid 3px #000;
  }

  .shop_guide_tab_wrap .shop_guide_tab {
    flex-direction: column;
    height: 110px;
    margin-bottom: -0.1875rem;
  }

  .shop_guide_tab_wrap .shop_guide_tab.active {
    border: solid 3px #000;
    border-bottom: none;
    padding-bottom: 0.2rem;
  }

  .shop_guide_tab>div {
    flex-direction: column;
  }

  .shop_guide_tab_wrap .tab_icon {
    margin: 0 0 0.25rem 0;
    height: 31px;
  }

  .shop_guide_tab_wrap .recommend_icon {
    height: 26px;
    margin: 0.3125rem 0 0.25rem 0;
  }

  .tab_text {
    text-align: center;
    font-size: 0.6875rem;
    letter-spacing: 0.55px;
    line-height: 14px;
  }

  .tab_text span {
    display: block;
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0;
  }

  /*フロアマップ*/
  .floor_guide_wrap {
    margin: 1.5rem auto;
  }

  .floor_guide_1f {
    padding-bottom: 3.4375rem;
  }

  .floor_guide_2f {
    padding-bottom: 1.9375rem;
  }

  .floor_map_wrap {
    display: block;
  }

  .floor_guide_wrap li {
    width: 100%;
    margin-bottom: 0.125rem;
  }

  /* フロアマップ内タブ */
  .floor_map_tab {
    width: 50%;
    padding: .5rem;
  }

  /*階、マップ*/
  .floor_map_number {
    margin: 0 0 0.7rem 0;
    width: 50px;
  }

  .floor_map {
    width: 100%;
  }

  .floor_guide_1f .floor_guide_title {
    padding-top: 3rem;
  }

  .floor_guide_title {
    font-size: 1.1rem;
    padding-bottom: 0.8rem;
    max-width: 320px;
  }

  .floor_guide_title strong {
    font-size: 1.5rem;
  }

  /*店舗リスト*/
  .store_name {
    font-size: 0.875rem;
    padding: 0.3125rem 2rem 0.3125rem 0.9375rem;
  }

  .store_name .store_logo {
    width: 50px;
  }

  .store_name div p {
    font-size: 1rem;
    margin-bottom: 0;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .store_15 {
    height: 50px;
  }

  /*おすすめタグ*/
  .shop_tab_wrap {
    position: relative;
    padding-bottom: 2.375rem;
    border-radius: 3px;
    overflow: hidden;
  }

  .shop_tab_wrap label,
  .store_detail_tab a {
    font-size: 0.75rem;
    letter-spacing: 0.55px;
    margin: 0.1rem;
    padding: 0.4rem 0.73rem;
  }

  .shop_tab_wrap.close {
    height: 5.8rem;
  }

  /*開閉ボタン*/
  .open_close_btn_wrapper {
    background-color: #f5f4f4;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding-top: 0.1rem;
  }

  .open_close_btn {
    position: static;
    vertical-align: bottom;
    width: 100px;
    height: 23px;
    background-color: #1cb7cd;
    background-image: url(../img/wh_top_arrow.svg);
    background-size: 14px 9px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .close .open_close_btn {
    background-image: url(../img/wh_bottom_arrow.svg);
    background-size: 14px 9px;
  }

  /*フリーワード*/
  .shop_search input {
    margin: 2.1875rem 0;
  }

  .shop_search button {
    top: 2.1875rem;
  }

  .shop_name {
    font-size: 1rem;
  }

  /* 店舗詳細
	---------------------------------------------------------- */
  .store_detail_head .store_logo {
    width: 60px;
  }

  .store_detail_head span {
    font-size: 0.75rem;
    padding: 0;
  }

  .store_detail_head p {
    font-size: 1.1875rem;
    letter-spacing: 0.94px;
    line-height: 29px;
    margin-left: -0.25rem;
  }

  .mark_title {
    font-size: 1rem;
  }

  /*画像*/
  .store_detail_img {
    flex-direction: column;
    margin-bottom: 0.7rem;
  }

  .store_detail_img .big_wrap {
    width: 100%;
    height: auto;
    margin-bottom: 0.4375rem;
  }

  .selection_product {
    min-height: 15%;
    font-size: 0.875rem;
    letter-spacing: 0.6px;
  }

  .store_detail_img .min {
    width: 100%;
    position: static;
    align-content: space-between;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .store_detail_img .min img {
    width: 30%;
    padding: 0 0.625rem 0.4375rem 0;
  }

  /*説明文*/
  .store_detail_text {
    width: 100%;
    text-align: left;
  }

  .store_detail_text .title {
    font-size: 1rem;
    letter-spacing: 0.69px;
    line-height: 29px;
    margin-bottom: 0.9375rem;
  }

  .store_detail_text .text {
    font-size: 0.875rem;
    letter-spacing: 0.6px;
    line-height: 24px;
    margin-bottom: 0.9375rem;
  }

  /*関連タブ*/
  .store_detail_tab {
    width: 100%;
    padding: 0.625rem 1.125rem;
    margin-bottom: 2.5rem;
  }

  .store_detail_tab span {
    margin: 0.15625rem 0.3125rem 0.15625rem 0;
  }

  /*ショップのおすすめメニュー*/
  /*下線デコレーション*/
  .under_deco {
    font-size: 1.1875rem;
    letter-spacing: 0.81px;
    padding-bottom: 1.9rem;
  }

  /*おすすめメニュー内容*/
  .recommend_menu {
    flex-direction: column;
    margin: 1.7rem 0;
  }

  .recommend_menu_img {
    width: 100%;
    margin: 0 0 0.3125rem 0;
  }

  .recommend_menu_text {
    width: 100%;
  }

  .recommend_menu .title {
    font-size: 1rem;
    letter-spacing: 0.69px;
    margin: 0.9rem 0;
  }

  /*詳細表*/
  .recommend_menu .text {
    font-size: 0.875rem;
    letter-spacing: 0.6px;
    line-height: 24px;
  }

  .store_detail_table {
    padding: 1.25rem 0.9rem;
  }

  .store_detail_table table {
    font-size: 0.875rem;
    letter-spacing: 0.6px;
    line-height: 23px;
  }

  .store_detail_table th,
  .store_detail_table td {
    padding: 0.7rem 0.125rem;
  }

  .store_detail_table th {
    width: 25%;
  }

  .contact_address_table th {
    width: 40%;
  }

  .sns_wrap a {
    width: 26px;
    margin-right: 1.5625rem;
  }

  /*related articles*/
  .related_articles {
    height: 24px;
    width: 235px;
    margin: 0 auto 0.5rem;
  }

  .related_articles_ja {
    height: 12px;
  }

  /*カード*/
  .dummy_0614 {
    transform: translateX(-28%);
  }

  .shop_article {
    flex-wrap: nowrap;
    overflow: hidden;
    margin-left: -4.6666666667%;
    margin-right: -4.6666666667%;
    width: 245.3333333333%;
    justify-content: space-between;
  }

  .shop_article li {
    width: 31.5217391304%;
    padding: 0.75rem 1rem;
    margin: 0.125rem 0 2.4375rem !important;
    box-shadow: 3px 2px 4px 0 #979797;
  }

  .shop_article .pick_up_items_img,
  .shop_article .pick_up_items_img_none {
    padding-top: 100%;
  }

  .shop_article .article_title {
    letter-spacing: 0.6px;
    line-height: 21px;
  }

  /*関連する特集記事*/
  .related_articles_list {
    width: 245.3333333333%;
  }

  .related_articles_list li {
    width: 31.5217391304%;
    padding: 0.75rem 1rem;
    margin: 0.125rem 0 2.4375rem !important;
    box-shadow: 3px 2px 4px 0 #979797;
  }

  .related_slide_one li {
    margin-left: 4.5% !important;
  }

  /* お知らせ一覧
  ---------------------------------------------------------- */
  #sec_information,
  #sec_recommend,
  #sec_movie,
  #sec_pickup {
    padding: 4rem 0;
  }

  .article_list {
    margin-bottom: 4rem;
  }

  .information_page .page_title {
    margin: 3.2rem 0 2.6rem 0;
  }

  .information_title {
    height: 27px;
    margin-bottom: 0.7rem;
  }

  .information_ja {
    height: 12px;
  }

  .information_page .information_ul {
    padding: 0;
    width: 100%;
    margin-bottom: 1.625rem;
  }

  .information_page .information_ul a {
    padding: 1.125rem 4.6666666667%;
  }

  .information_ul p {
    width: 100%;
    letter-spacing: 0.6px;
    line-height: 20px;
  }

  /*ページネーション*/
  .pagination {
    margin-bottom: 2.0625rem;
  }

  /* お知らせ詳細
	---------------------------------------------------------- */
  .news_head {
    margin: 1.7rem 0 0.9375rem;
  }

  .label_time_wrap {
    margin-bottom: 0.4375rem;
  }

  .label_time_wrap .date {
    margin-right: 1rem;
    font-size: 0.9rem;
    margin: auto 0;
  }

  /*内容*/
  .news_content {
    padding: 0 0 2rem;
  }

  .news_title {
    font-size: 1rem;
    line-height: 23px;
    padding-bottom: 0.7rem;
  }

  .news_subtitle {
    font-size: 0.875rem;
    line-height: 21px;
    font-weight: bold;
    margin-bottom: 0.6rem;
  }

  .news_text {
    font-size: 0.875rem;
    color: #333;
    margin-bottom: 1rem;
  }

  .news_content .wp-block-image img,
  .news_content .wp-block-image figcaption {
    max-width: 90%;
  }

  .news_content .wp-block-button__link {
    font-size: 14px;
  }

  /*ページ遷移バー*/
  .page_transition_bar {
    font-size: 0.875rem;
  }

  .page_transition_bar .pre,
  .page_transition_bar .next {
    width: 20px;
    height: 20px;
  }

  .page_transition_bar a span {
    display: none;
  }

  /* 404エラーページ
	---------------------------------------------------------- */
  .error_page {
    padding: 4rem 0;
  }

  .error_title {
    font-size: 1rem;
    letter-spacing: 0.81px;
  }

  .error_text {
    font-size: 0.8125rem;
    padding: 1.5rem 0;
    line-height: 1.5rem;
  }

  /* 特集記事　一覧
  ---------------------------------------------------------- */
  .feature_tag {
    font-size: .6875rem;
    padding: .1rem .3rem;
    margin-right: .3rem;
  }

  .feature_date {
    font-size: .6875rem;
  }

  .feature_title {
    font-size: 1rem;
  }

  /* 特集記事 検索
  ---------------------------------------------------------- */
  .tagpege_title {
    font-size: 1rem;
  }

  /* 特集記事　詳細
  ---------------------------------------------------------- */
  /*ページトップ*/
  .feature_bunner {
    margin-top: 0.625rem;
    display: block;
    position: relative;
  }

  .feature_bunner .left {
    position: absolute;
    right: 0;
    bottom: -10rem;
    width: 76.2666666667%;
    padding: 0.75rem 0.75rem 1.125rem 1.4375rem;
    text-align: left;
    z-index: 100;
  }

  .feature_bunner .right {
    margin-bottom: 10rem;
    position: relative;
    width: 100%;
  }

  .feature_bunner .right img {
    position: absolute;
    top: 0;
  }

  .feature_bunner .right:before {
    content: "";
    display: block;
    padding-top: 60%;
  }

  .logo_number {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row-reverse;
  }

  .story_logo {
    margin: 0;
  }

  .story_no {
    font-size: 0.6875rem;
    margin-bottom: 0.3rem;
  }

  .story_title {
    font-size: 0.9375rem;
    letter-spacing: -0.007rem;
    line-height: 1.25rem;
    padding-bottom: 0.875rem;
    margin-bottom: 1rem;
  }

  .story_title:after {
    left: 0;
    transform: translateX(0%);
  }

  .story_name {
    font-size: 0.75rem;
    letter-spacing: 0.08rem;
  }

  .story_name span {
    font-size: 0.75rem;
    letter-spacing: 0.04rem;
  }

  /*見出し*/
  .feature_page .under_deco {
    font-size: 1rem;
    letter-spacing: 0.044rem;
    line-height: 1.5rem;
    font-weight: normal;
    padding: 3.125rem 0 1.5625rem;
  }

  /*内容*/
  .feature_text {
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: 0.036rem;
    margin: 1.875rem 0 0;
    padding-bottom: 0.625rem;
  }

  /*画像*/
  .column_1,
  .column_2 {
    margin-top: 1.0625rem;
  }

  .column_2 .child {
    width: 49.1228070175%;
  }

  .img_description {
    font-size: 0.75rem;
    line-height: 1rem;
    color: #000;
    padding-left: 0.75rem;
  }

  .img_description::before {
    top: 3px;
    left: 0;
    border-right: 0.35rem solid transparent;
    border-bottom: 9px solid #000;
    border-left: 0.35rem solid transparent;
  }

  /*店舗情報*/
  .feature_store {
    margin-top: 2.5rem;
    padding: 3rem 0;
  }

  .feature_store .container {
    flex-direction: column;
  }

  .feature_store .left_img {
    width: 100%;
    height: 200px;
  }

  .feature_store .right {
    width: 100%;
    padding: 1.75rem 1.4375rem;
  }

  .feature_store_head p {
    font-size: 0.875rem;
    letter-spacing: 0.042rem;
  }

  .feature_store_head span {
    font-size: 0.6875rem;
    letter-spacing: 0.074rem;
  }

  .feature_store .text {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }

  /* イベント一覧
  ---------------------------------------------------------- */
  .calendar_search_input_wrap {
    flex-direction: column;
    width: 100%;
  }

  .calender_search_layer {
    margin-bottom: 1.1rem;
  }

  .category_select {
    width: 100%;
  }

  .category_search {
    margin: 1rem 0 0 0;
    padding-left: 0;
    border-left: none;
  }

  .week_event_list {
    padding: 10px;
  }

  .week_event_list .label {
    font-size: 0.625rem;
  }

  .week_event_list_title span {
    font-size: 1.1rem;
  }

  .week_event_list_title {
    font-size: 1rem;
  }

  .week_event_day {
    width: 55px;
  }

  .week_event_day .date {
    font-size: 1.8rem;
  }

  .week_event_img {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }

  .week_event_list .week_event_title {
    font-size: 0.875rem;
    padding-top: .5rem;
  }

  .event_description {
    padding-top: .5rem;
  }

  .week_event_day .month,
  .week_event_day .week {
    font-size: 0.75rem;
  }

  .week_event_list p.week_event_period {
    padding-top: 0.5rem;
  }

  .calendar_search_input input[type='date'] {
    width: 45%;
  }

  .event_row_text {
    width: calc(100% - 95px);
  }

  /* イベント詳細
  ---------------------------------------------------------- */
  .event_detail_img img {
    width: 90%;
    max-width: 100%;
  }

  /* レンタルスペース
  ---------------------------------------------------------- */
  .news_content .wp-block-table {
    width: 100%;
  }

  .flow {
    padding-left: 0;
  }

  .flow::before {
    left: 20px;
  }

  .flow>li dl {
    padding-left: 45px;
  }

  .flow>li dl::after {
    width: 30px;
  }

  #fbuilder .medium,
  #fbuilder .large,
  #fbuilder .small,
  .dfield input {
    border: 1px solid #ddd;
  }

  /* 施設情報のレンタルスペース案内 */
  .rentalspace_img {
    flex-direction: column;
  }

  .rentalspace_img>div {
    width: 100%;
  }

  #top_rental_form .d_flex {
    flex-direction: column;
  }

  #top_rental_form .wp-block-button {
    width: 100%;
    margin: 0 0 2rem 0;
  }

  /* リニューアル追加220413
  ---------------------------------------------------------- */
  .info_contents_box,
  .recommend_contents_box,
  .movie_contents_box {
    display: block;
  }

  .info_contents_box>div:first-child {
    width: 100%;
  }

  .info_contents_box>div:nth-child(2) {
    width: 100%;
    padding-left: 0;
  }

}

@media only screen and (max-width: 320px) {

  /* ホーム
  ---------------------------------------------------------- */
  /*本日の営業時間*/
  .today_hours .sales_status {
    margin-left: 0.4rem;
  }

  .today_hours p {
    padding: 0.125rem 0 0.125rem 1.2rem;
    letter-spacing: 0;
  }

  /* FACILITIES
  ---------------------------------------------------------- */
  /*決済方法画像*/
  .settlement_img_wrap img {
    height: 90%;
  }

  .brd_top_dotted .settlement_img_wrap img {
    height: 100%;
  }

  /* 検索フォーム
  ---------------------------------------------------------- */
  .words_search input {
    padding: 0 3.125rem 0 2%;
  }

  /* 特集記事　一覧
  ---------------------------------------------------------- */
  .feature_tag,
  .feature_date {
    font-size: .625rem;
  }

  .feature_title {
    font-size: .875rem;
  }
}

/* ReCaptcha badge
---------------------------------------------------------- */
.grecaptcha-badge { 
  visibility: hidden; 
}