@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --bg-gold-1: #FFFFFA;
  --bg-gold-2: #EDE6CF;
  --bg-gold-3: #D0B790;
  --bg-green-1: #E2F0DB;
  --bg-green-2: #CEDFFF;
  --common-btn-gold: linear-gradient(270deg, var(--bg-gold-1) -20%, var(--bg-gold-3) 3%, var(--bg-gold-2) 40%, var(--bg-gold-2) 50%, var(--bg-gold-3) 100%);
  --common-box-shadow: 0 5px 5px rgba(0, 0, 0, .16);
  --color-daimaru: #2C7A8B;
  --color-icon-parking: #805800;
  --color-gold: #805800;
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #151515;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 16px;
  }
  body.wrap {
    overflow: visible;
  }
}
body.wrap {
  overflow: hidden;
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) {
  #wrapper {
    overflow: hidden;
  }
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
}

@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* リンク */
a {
  display: inline-block;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a:hover {
    color: inherit;
    opacity: 0.75;
    text-decoration: none !important;
  }
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.serif {
  font-family: "Shippori Mincho", serif;
}

section,
.section {
  position: relative;
}

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

.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

br.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  br.pc {
    display: inline;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

br.sp {
  display: inline;
}
@media screen and (min-width: 769px) {
  br.sp {
    display: none;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* タブ切り替え */
.tab_content:not(.current) {
  display: none;
}

/*======== 共通パーツ ========*/
/* modal */
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.modal__bg {
  background: rgba(102, 102, 102, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
  opacity: 0.7;
}

.modal__content {
  background: #fff;
  padding: 30px 20px 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 769px) {
  .modal__content {
    width: 400px;
    padding: 30px 30px 80px;
  }
}
.modal__content .popup_date {
  font-family: "Inter", "Noto Sans JP";
  color: #B2B2B2;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.modal__content .popup_title {
  font-size: 19px;
  font-weight: bold;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.modal__content .popup_txt {
  margin: 28px 0 35px;
}
.modal__content .popup_btn_list li {
  text-align: center;
}
.modal__content .popup_btn_list li:not(:last-child) {
  margin-bottom: 8px;
}

.btn_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.btn_box ul li {
  width: calc((100% - 32px) / 5);
  height: calc((100vw - 162px) / 5);
}
.btn_box ul li a {
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn_box ul li a.current {
  color: #fff;
  background: #BC2245;
  border: 1px solid #E51A56;
}

.close_btn {
  width: 100%;
  height: 50px;
  background-color: #E8E8E8;
  color: inherit;
  font-size: 21px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.close_btn span {
  position: relative;
  line-height: 1;
  padding-left: 25px;
  display: inline-block;
}
.close_btn span:before, .close_btn span:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background-color: #383838;
  position: absolute;
  top: 50%;
  left: 0;
}
.close_btn span:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.close_btn span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ボタン共通デザイン */
a.btn {
  background-color: #fff;
  text-align: center;
  height: 50px;
  max-width: 310px;
  margin: auto;
  border: 1px solid;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
a.btn:after {
  content: "";
  display: inline-block;
  background: url(../img/btn_arw.svg) center/contain no-repeat;
  width: 23px;
  height: 4px;
  position: absolute;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
a.btn.pdf_btn:before {
  content: "";
  background: url(../img/icon_pdf.svg) center/contain no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 70%;
}
a.btn.btn_gold {
  background: var(--common-btn-gold);
  border: none;
}
@media screen and (min-width: 769px) {
  a.btn {
    height: 60px;
    width: 100%;
    max-width: 300px;
    font-size: 15px;
  }
}

a.btn_bd_gold {
  color: var(--color-gold) !important;
}
a.btn_bd_gold:after {
  background: url(../img/btn_arw_gold.svg) center/contain no-repeat;
}

/* 記事リンク一覧 */
.grid {
  display: grid;
}

.article_list {
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 13px;
}
@media screen and (min-width: 769px) {
  .article_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 30px;
  }
}
@media screen and (min-width: 769px) {
  .article_list.article_list_event {
    grid-template-columns: repeat(4, 1fr);
  }
}
.article_list.article_list_shop .article_thumb {
  padding-top: 75%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.article_list li,
.article_list a {
  position: relative;
}
.article_list .article_link {
  display: block;
  width: 100%;
}
.article_list .article_thumb {
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  position: relative;
}
.article_list .article_desc {
  margin-top: 12px;
}
.article_list .article_desc .tag {
  color: #fff;
  font-size: 10px;
  background-color: #969696;
  padding: 2px 6px;
  display: inline-block;
  border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .article_list .article_desc .tag {
    font-size: 13px;
    line-height: 1.4;
  }
}
.article_list .article_desc .ttl {
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
@media screen and (min-width: 769px) {
  .article_list .article_desc .ttl {
    font-size: 16px;
  }
}
.article_list .article_desc .caption,
.article_list .article_desc .category {
  font-size: 12px;
  line-height: 1.42;
  margin-top: 3px;
}
.article_list .article_desc .date {
  color: #969696;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 3px;
}
.article_list .article_desc .category {
  color: #707070;
}
@media screen and (min-width: 769px) {
  .article_list .article_desc .category {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  .article_list .article_desc .close_txt {
    font-size: 16px;
  }
}

/* タブ */
.page_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px 25px;
}
.page_tab li {
  width: 33.3333333333%;
  font-size: 13px;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
}
.page_tab li:not(:last-child) {
  border-right: 1px solid #DBDBDB;
}
.page_tab li:not(.current) {
  border-bottom: 1px solid #DBDBDB;
}
.page_tab li.current {
  background-color: #F8F8F8;
  border-top: 1px solid #E8E8E8;
}
.page_tab li a {
  display: block;
}
@media screen and (min-width: 769px) {
  .page_tab {
    margin: 0 auto 40px;
  }
  .page_tab li {
    font-size: 18px;
    padding: 12px 0;
  }
}

/* ピックアップスライド */
#pickup {
  background-color: #F8F8F8;
  padding: 30px 0;
}
#pickup .container {
  padding: 0 40px;
}
#pickup .pickup_ttl {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 2.3em;
}
#pickup .pickup_ttl:before {
  content: "Pick Up";
  display: block;
  font-size: 26px;
  letter-spacing: 0;
  margin-bottom: 7px;
}
#pickup .pickup_slide {
  overflow: hidden;
  margin-right: -40px;
  padding-right: 20px;
}
#pickup .pickup_slide .swiper {
  overflow: visible;
}
#pickup .pickup_slide .swiper-slide {
  max-width: 130px;
}
#pickup .pickup_slide .swiper-slide a {
  display: block;
}
#pickup .pickup_slide .swiper-slide a .thmub {
  margin-bottom: 10px;
}
#pickup .pickup_slide .swiper-slide a .thmub .thmub_img {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: relative;
}
#pickup .pickup_slide .swiper-slide a .genre {
  font-size: 11px;
  color: #707070;
  line-height: 1.4;
  border: 1px solid;
  display: inline-block;
  padding: 2px 5px;
  border-radius: 3px;
  margin-bottom: 5px;
}
#pickup .pickup_slide .swiper-slide a .title {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
#pickup .pickup_slide .swiper-pagination {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  #pickup {
    padding: 60px 0;
  }
  #pickup .container {
    padding: 0 20px;
  }
  #pickup .pickup_ttl {
    font-size: 16px;
  }
  #pickup .pickup_ttl:before {
    font-size: 36px;
    margin-bottom: 12px;
  }
  #pickup .pickup_slide {
    margin-right: 0;
    padding-right: 0;
  }
  #pickup .pickup_slide .swiper-slide {
    max-width: 210px;
  }
  #pickup .pickup_slide .swiper-slide a .genre {
    font-size: 14px;
    line-height: 1.2;
  }
  #pickup .pickup_slide .swiper-slide a .title {
    font-size: 16px;
  }
  #pickup .pickup_slide .swiper-pagination {
    margin-top: 40px;
  }
}

/* ピックアップスライダー　slick変更 */
.pickup_slide .slick-slider {
  margin-bottom: 40px;
}
.pickup_slide .slick-list {
  overflow: visible;
}
@media screen and (min-width: 769px) {
  .pickup_slide .slick-list {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}
.pickup_slide .pickup_slide_item a {
  display: block;
  margin-right: 12px;
  width: 130px;
}
@media screen and (min-width: 769px) {
  .pickup_slide .pickup_slide_item a {
    margin-right: 40px;
    width: auto;
  }
}
.pickup_slide .pickup_slide_item a .thmub {
  margin-bottom: 10px;
}
.pickup_slide .pickup_slide_item a .thmub .thmub_img {
  display: block;
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100%;
}
.pickup_slide .pickup_slide_item a .title {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .pickup_slide .pickup_slide_item a .title {
    font-size: 16px;
  }
}
.pickup_slide .pickup_slide_item a .name {
  color: #707070;
  font-size: 13px;
  margin-top: 4px;
}
.pickup_slide .slick-dots {
  bottom: auto;
  margin-top: 10px;
}
.pickup_slide .slick-dots li {
  width: 6px;
  height: 6px;
  margin: 0 4px;
}
.pickup_slide .slick-dots li button {
  width: 6px;
  height: 6px;
  padding: 0;
}
.pickup_slide .slick-dots li button:before {
  content: "";
  font-family: inherit;
  font-size: 0;
  line-height: 1;
  width: 6px;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 1;
}
.pickup_slide .slick-dots li.slick-active button:before {
  background-color: #745e00;
}

/* swiperページネーション共通 */
.swiper-pagination {
  position: static !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 5px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #745E00;
}

/* 下層ページタイトル 共通スタイル */
.head_area {
  display: block;
}

.page_ttl {
  padding: 25px 0 40px;
  position: relative;
}
.page_ttl:before, .page_ttl:after {
  content: "";
  position: absolute;
  width: 85%;
  height: 80%;
  z-index: -1;
}
.page_ttl:before {
  background-color: #F8F8F8;
  bottom: 0;
  right: 0;
  z-index: -2;
}
.page_ttl:after {
  background: linear-gradient(70deg, var(--bg-gold-1) -15%, var(--bg-gold-2) 25%, var(--bg-gold-3) 120%);
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .page_ttl {
    padding: 55px 0 75px;
  }
  .page_ttl:before, .page_ttl:after {
    height: 170px;
  }
}
.page_ttl_main {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.page_ttl_main:before {
  display: block;
  font-size: 26px;
  margin-bottom: 7px;
}
.page_ttl_main_access::before {
  content: "ACCESS";
}
.page_ttl_main_event::before {
  content: "EVENT";
}
.page_ttl_main_faq::before {
  content: "Q&A/CONTACT";
}
.page_ttl_main_fav::before {
  content: "FAVORITE";
}
.page_ttl_main_feature::before {
  content: "FEATURE";
}
.page_ttl_main_info::before {
  content: "INFORMATION";
}
.page_ttl_main_newopen::before {
  content: "NEW&RENEWAL";
}
.page_ttl_main_popup::before {
  content: "POP UP SHOP";
}
.page_ttl_main_recruit::before {
  content: "SHOP STAFF";
}
.page_ttl_main_restaurant::before {
  content: "RESTAURANT&CAFE";
}
.page_ttl_main_search::before {
  content: "SEARCH";
}
.page_ttl_main_service::before {
  content: "FACILITY＆SERVICE";
}
.page_ttl_main_shopguide::before {
  content: "SHOP GUIDE";
}
.page_ttl_main_shopnews::before {
  content: "SHOP NEWS";
}
.page_ttl_main_sitemap::before {
  content: "SITE MAP";
}
.page_ttl_main_sitepoli::before {
  content: "SITE POLICY";
}
.page_ttl_main_privacypoli::before {
  content: "PRIVACY POLICY";
}
.page_ttl_main_access::before {
  content: "ACCESS";
}
.page_ttl_main_access::before {
  content: "ACCESS";
}
.page_ttl_main_access::before {
  content: "ACCESS";
}
@media screen and (min-width: 769px) {
  .page_ttl_main {
    font-size: 15px;
  }
  .page_ttl_main:before {
    font-size: 36px;
    margin-bottom: 15px;
  }
}

/* フリーワード検索 */
form {
  position: relative;
  margin-bottom: 15px;
  -webkit-box-shadow: var(--common-box-shadow);
          box-shadow: var(--common-box-shadow);
}
@media screen and (min-width: 769px) {
  form {
    margin-bottom: 45px;
  }
}
form .input_box {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 45px;
  padding: 7px 45px 7px 13px;
  background: #fff;
  border: none;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  form .input_box {
    height: 70px;
    padding: 20px 70px 20px 30px;
  }
}
form .search_btn {
  width: 45px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/btn_search.svg) center/auto no-repeat;
  border: none;
  padding: 0;
}
@media screen and (min-width: 769px) {
  form .search_btn {
    width: 70px;
  }
}

select,
input {
  font-size: 16px !important;
}

/* ページネーション */
.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px auto 0;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .pagenation {
    margin: 90px auto 0;
  }
}
.pagenation li {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .pagenation li {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.pagenation li a {
  font-size: 17px;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 769px) {
  .pagenation li a {
    font-size: 20px;
  }
}
.pagenation li.current {
  font-size: 17px;
  background-color: #707070;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .pagenation li.current {
    font-size: 20px;
  }
}
.pagenation li.prev a:before, .pagenation li.next a:before {
  content: "";
  display: inline-block;
  background: url(../img/pagenation_arw.svg) center/auto no-repeat;
  width: 15px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pagenation li.next a:before {
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
}

/* 新着記事のNEWマーク */
.date_circle {
  background-color: #A59569;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .date_circle {
    width: 60px;
    height: 60px;
  }
}
.date_circle p {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
  height: 100%;
  font-size: 12px;
}
.date_circle p span:first-child {
  font-size: 12px;
}
.date_circle p span:last-child {
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .date_circle p span:first-child,
  .date_circle p span:last-child {
    font-size: 14px;
  }
}
.date_circle.date_circle_close {
  background: #808080;
}

.date_new_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 45px;
  height: 17px;
  background: #A59569;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  position: absolute;
  left: 0;
  bottom: -8px;
}
@media screen and (min-width: 769px) {
  .date_new_icon {
    width: 45px;
    height: 25px;
    font-size: 14px;
    bottom: -10px;
  }
}

/* お気に入りボタン */
.bookmark_btn {
  position: absolute;
  right: 10px;
  bottom: 5px;
  z-index: 5;
}

/* お気に入りボタン（詳細ページ） */
.favorite_btn {
  width: 34px;
  height: 34px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 5;
}
.favorite_btn .check-box {
  /* position: relative; */
  display: block;
  height: auto;
}
.favorite_btn .check-box input {
  display: none;
}
.favorite_btn .check-box input + .check-text {
  position: relative;
  font-size: 0;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: block;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: var(--common-box-shadow);
          box-shadow: var(--common-box-shadow);
}
.favorite_btn .check-box input + .check-text::before {
  content: "";
  width: 13.2px;
  height: 15.6px;
  background-image: url(../img/favorite_mark_off.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.favorite_btn .check-box input:checked + .check-text::before {
  background-image: url(../img/favorite_mark.svg);
}
.favorite_btn .check-box input:checked + .check-text::after {
  content: "";
  border: 1px solid #805800;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  opacity: 1;
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-animation: 1s circleanime2 forwards;
          animation: 1s circleanime2 forwards;
}

/* お気に入りボタン（一覧ページ） */
.article_list .favorite_btn {
  right: -10px;
  bottom: -10px;
}
.article_list .favorite_btn .check-box {
  display: block;
  height: auto;
}
.article_list.article_list_shopnews .favorite_btn {
  bottom: -12px;
}

/*波形が広がるアニメーション*/
@-webkit-keyframes circleanime2 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
@keyframes circleanime2 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
.indent_list li {
  text-indent: -1em;
  padding-left: 1em;
}

.dot_list li::before {
  content: "・";
}

.kome_list li::before {
  content: "※";
}

.font_bold {
  font-weight: bold;
}
.font_red {
  color: #F00;
}

/* ▼▼▼ ヘッダー
====================================================== */
/* 重要なお知らせ */
#important_notice {
  background-color: #69635F;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
}
#important_notice p {
  padding: 5px;
  text-align: center;
  line-height: 1.5;
}
#important_notice p a {
  color: #fff;
  font-weight: 500;
}
#important_notice p a:before {
  content: "";
  display: inline-block;
  background: url(../img/icon_caution.svg) center bottom/contain no-repeat;
  width: 1em;
  height: 1em;
  margin-right: 5px;
}

header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: visible;
  -webkit-transition: 0.45s;
  transition: 0.45s;
}
@media screen and (min-width: 769px) {
  header {
    position: fixed;
  }
}
header.scrolled {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (min-width: 769px) {
  header.scrolled {
    -webkit-transform: none;
            transform: none;
    background: rgba(255, 255, 255, 0.7);
  }
}
header > .container {
  padding: 0;
}
@media screen and (min-width: 769px) {
  header > .container {
    max-width: none;
    padding: 0 20px;
  }
}
header .header_inner {
  width: 100%;
  height: 70px;
  position: relative;
  z-index: 1001;
  background-color: #fff;
  border-bottom: 1px solid #E8E8E8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 60px 0 10px;
}
@media screen and (min-width: 769px) {
  header .header_inner {
    width: 100%;
    background: none;
    position: relative;
    top: auto;
    left: auto;
    z-index: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 17px 105px 17px 17px;
    border-bottom: none;
  }
}
header .header_inner #site_title {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  header .header_inner #site_title {
    left: 17px;
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
}
header .header_inner #site_title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  max-width: 230px;
  height: 100%;
}
header .header_inner .favorite {
  display: block;
  text-align: center;
  max-width: 60px;
  width: 100%;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media screen and (min-width: 769px) {
  header .header_inner .favorite {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 4px 20px 4px 26px;
    border-right: 1px solid #ccc;
  }
}
header .header_inner .favorite span {
  font-size: 12px;
  text-align: center;
  color: #707070;
}
@media screen and (min-width: 769px) {
  header .header_inner .favorite span {
    color: inherit;
    padding-left: 10px;
  }
}
header .hours_parking {
  display: none;
}
@media screen and (min-width: 769px) {
  header .hours_parking {
    display: block;
    background-color: transparent;
    padding: 0;
  }
  header .hours_parking ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
  header .hours_parking ul li {
    padding: 4px 18px 4px 22px;
    border-right: 1px solid #ccc;
  }
  header .hours_parking ul li a {
    font-size: 13px;
  }
  header .hours_parking ul li.hours {
    border-left: 1px solid #ccc;
  }
}
header #foreign_lang {
  display: none;
  background-color: #F7F7F7;
  padding: 14px;
  -webkit-box-shadow: 0 3px 6px rgba(56, 56, 56, 0.1);
          box-shadow: 0 3px 6px rgba(56, 56, 56, 0.1);
}
header #foreign_lang ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (min-width: 769px) {
  header #foreign_lang {
    position: absolute;
    right: 0;
    width: 30%;
    padding: 14px 0;
  }
  header #foreign_lang ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header #foreign_lang ul li {
    text-align: center;
    line-height: 1.2;
    width: 25%;
  }
  header #foreign_lang ul li:not(:last-child) {
    border-right: 1px solid #ccc;
  }
  header #foreign_lang ul li a {
    font-size: 12px;
  }
  header #foreign_lang ul li a:hover {
    text-decoration: underline !important;
  }
}

.menu {
  display: block;
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2000;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .menu {
    width: 80px;
    height: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.menu .icon {
  display: block;
  width: 25px;
  height: 1px;
  background: #151515;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #151515;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: -8px;
}
.menu .icon::after {
  bottom: -8px;
}
.menu .icon.active {
  background: transparent;
}
.menu .icon.active::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 0;
}
.menu .icon.active::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  bottom: 0;
}
@media screen and (min-width: 769px) {
  .menu .icon {
    -webkit-transform: none;
            transform: none;
    top: 50%;
    left: 0;
  }
}
.menu p {
  color: #707070;
  font-size: 12px;
  display: inline-block;
  line-height: 1;
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .menu p {
    color: inherit;
    bottom: 50%;
    right: 10px;
    left: auto;
    -webkit-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
}

/* グローバルナビゲーション */
#gnav {
  display: block !important;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  float: none;
  width: 100%;
  max-height: 100vh;
  padding-top: 70px;
  padding-bottom: 30px;
  margin: 0;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#gnav.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 769px) {
  #gnav {
    width: 40%;
    max-width: 450px;
    left: auto;
    right: 0;
    background: none;
    padding-top: 0;
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
  #gnav.open {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
#gnav .nav_all_wrap {
  position: relative;
}
@media screen and (min-width: 769px) {
  #gnav .nav_all_wrap {
    background-color: #fff;
  }
}
#gnav .nav_all_wrap .close_btn {
  bottom: 50px;
}
#gnav .nav_search_wrap {
  padding: 25px 10px;
  background: #F5F5F5;
}
#gnav .nav_search_wrap form {
  margin-bottom: 0;
}
#gnav .bg_grade {
  padding: 15px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bg-gold-1)), color-stop(30%, var(--bg-gold-2)), to(var(--bg-gold-3)));
  background: linear-gradient(180deg, var(--bg-gold-1) 0%, var(--bg-gold-2) 30%, var(--bg-gold-3) 100%);
}
#gnav .bg_grade .nav_wrap .main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
}
#gnav .bg_grade .nav_wrap .main li a {
  width: 100%;
  height: 100px;
  padding-top: 55px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  font-size: 11px;
  text-align: center;
}
#gnav .bg_grade .nav_wrap .main li a:before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 36px;
  height: 36px;
}
#gnav .bg_grade .nav_wrap .main li a.shopguide:before {
  background-image: url(../img/icon_shopguide.svg);
}
#gnav .bg_grade .nav_wrap .main li a.restaurant:before {
  background-image: url(../img/icon_restaurant.svg);
}
#gnav .bg_grade .nav_wrap .main li a.floormap:before {
  background-image: url(../img/icon_floormap.svg);
}
#gnav .bg_grade .nav_wrap .main li a.link_popup:before {
  background-image: url(../img/icon_popup.svg);
}
#gnav .bg_grade .nav_wrap .main li a.link_plaza:before {
  background-image: url(../img/icon_plaza.svg);
}
#gnav .bg_grade .nav_wrap .main li a.link_daimaru {
  background: url(../img/icon_daimaru.webp) no-repeat center center/contain, #FFF;
}
#gnav .bg_grade .nav_wrap .main li a.link_event:before {
  background-image: url(../img/icon_event.svg);
}
#gnav .bg_grade .nav_wrap .main li a.link_shopnews:before {
  background-image: url(../img/icon_shopnews.svg);
}
#gnav .bg_grade .nav_wrap .main li a.link_service:before {
  background-image: url(../img/icon_service.svg);
}
#gnav .h_nav02 {
  padding: 20px 0;
}
#gnav .h_nav02 .btn_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 26px;
}
#gnav .h_nav02 .btn_list a {
  display: block;
  text-align: center;
}
#gnav .h_nav02 .btn_list a img {
  vertical-align: middle;
  width: 100%;
}
@media screen and (min-width: 769px) {
  #gnav .h_nav02 .btn_list {
    gap: 10px;
  }
}
#gnav .h_nav02 .sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 0;
  margin-bottom: 20px;
}
#gnav .h_nav02 .sub li a {
  line-height: 1.4;
  padding-left: 11px;
  position: relative;
}
#gnav .h_nav02 .sub li a:before {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  left: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid #313131;
  border-right: 1px solid #313131;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  #gnav .h_nav02 .sub li a {
    font-size: 14px;
  }
  #gnav .h_nav02 .sub li a:hover {
    text-decoration: underline !important;
  }
}
#gnav .h_nav02 .sns_wrap {
  padding: 20px 0;
}
#gnav .h_nav02 .sns_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#gnav .h_nav02 .sns_wrap ul li a {
  width: 30px;
  display: inline-block;
}
#gnav .h_nav02 .other_wrap {
  margin-top: 12px;
  padding: 30px 0 100px;
  border-top: 1px solid #DEDEDE;
}
@media screen and (min-width: 769px) {
  #gnav .h_nav02 .other_wrap {
    margin-top: 20px;
    padding-top: 20px;
  }
}
#gnav .h_nav02 .other_wrap ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
#gnav .h_nav02 .other_wrap ul li {
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  #gnav .h_nav02 .other_wrap ul li {
    line-height: 1;
  }
}
#gnav .h_nav02 .other_wrap ul li a {
  color: #808080;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  #gnav .h_nav02 .other_wrap ul li a:hover {
    text-decoration: underline !important;
  }
}
#gnav .h_nav02 .other_wrap ul li a.tb {
  position: relative;
  padding-right: 21px;
}
#gnav .h_nav02 .other_wrap ul li a.tb::after {
  content: "";
  background: url(../img/tb.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #gnav .close_btn {
    display: none;
  }
}

/* ▼ 営業時間／駐車場
--------------------------------------- */
.hours_parking {
  background-color: #F7F7F7;
  padding: 14px;
}
.hours_parking ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.hours_parking ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.hours_parking ul li:before {
  content: "";
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.hours_parking ul li.hours:before {
  background-image: url(../img/icon_hours.svg);
  width: 20px;
  height: 20px;
}
.hours_parking ul li.parking:before {
  background-image: url(../img/icon_parking.svg);
  width: 30px;
  height: 21px;
}
.hours_parking .close_btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.hours_parking .modal_hours .modal__content h3:before {
  background: url(../img/icon_hours.svg) center/contain no-repeat;
  width: 18px;
  height: 18px;
}
.hours_parking .modal_parking .modal__content h3:before {
  background: url(../img/icon_parking.svg) center/contain no-repeat;
  width: 28px;
  height: 21px;
}
.hours_parking .modal__content h3 {
  text-align: center;
  margin-bottom: 20px;
}
.hours_parking .modal__content h3:before {
  content: "";
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 6px;
}
.hours_parking .modal__content .attention {
  font-size: 13px;
  line-height: 1.46;
}
.hours_parking .closed_day {
  color: #805800;
  font-size: 13px;
  text-align: center;
  border: 1px solid;
  padding: 5px;
  line-height: 1.46;
  margin-bottom: 20px;
}
.hours_parking .hours_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid #ccc;
}
.hours_parking .hours_list dt,
.hours_parking .hours_list dd {
  line-height: 1.6;
}
.hours_parking .parking_box:not(:last-child) {
  margin: 0 auto 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #ccc;
}
.hours_parking .parking_box p {
  font-weight: 500;
  text-align: center;
}
.hours_parking .parking_box a {
  text-decoration: underline;
}
.hours_parking .parking_list dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 60px;
  height: 60px;
  margin: 50px auto 0;
  border: 1px solid var(--color-icon-parking);
  border-radius: 10px;
  color: var(--color-icon-parking);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
.hours_parking .parking_list dt.rush {
  --color-icon-parking:#69635F;
}
.hours_parking .parking_list dt.full {
  --color-icon-parking:#D41265;
}
.hours_parking .parking_list dd {
  margin-top: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  #main .hours_parking {
    display: none;
  }
}
/* ▼▼▼ footer
====================================================== */
.footer {
  background: #fff;
  border-top: 1px solid #E2E2E2;
  padding: 40px 0 70px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 60px 0 0;
  }
}
.footer_addr_area {
  padding: 20px 0 0;
  margin: 0 0 30px;
}
@media screen and (min-width: 769px) {
  .footer_addr_area {
    padding: 0;
  }
}
.footer_addr_top {
  margin-bottom: 10px;
}
.footer_addr_logo {
  display: block;
  max-width: 199px;
  margin: 0 auto 10px;
}
.footer_addr_txt {
  font-size: 13px;
  text-align: center;
}
.footer_addr_btnwrap {
  max-width: 248px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .footer_addr_btnwrap {
    max-width: 100%;
  }
}
.footer_sns_ttl {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .footer_sns_ttl {
    max-width: 100%;
    font-size: 26px;
  }
}
.footer_sns_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .footer_sns_link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}
.footer_sns_link li a {
  max-width: 30px;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .footer_sns_link li a {
    max-width: 45px;
    display: inline-block;
  }
}
.footer_menu_area {
  background: #fff;
  margin: 30px auto;
}
.footer_menu_list {
  max-width: 248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}
@media screen and (min-width: 769px) {
  .footer_menu_list {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.footer_menu_link_staff {
  background: url(../img/icon_footer_staff.svg) no-repeat left 20px center;
}
.footer_menu_link_contact {
  background: url(../img/icon_footer_contact.svg) no-repeat left 20px center;
}
.footer_menu_link_shop {
  background: url(../img/icon_footer_shop.svg) no-repeat left 20px center;
}
.footer_other_area .other_wrap {
  padding: 40px 0;
  background: #F7F7F7;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap {
    position: relative;
  }
}
.footer_other_area .other_wrap .section_head {
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap .section_head {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: left;
  }
}
.footer_other_area .other_wrap .section_head .en {
  display: block;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap .section_head .en {
    font-size: 32px;
  }
}
.footer_other_area .other_wrap .facility_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 27px;
  width: calc(100% + 15px);
  margin-bottom: 27px;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap .facility_list {
    width: 690px;
    margin-left: auto;
  }
}
.footer_other_area .other_wrap .facility_list li a {
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.footer_other_area .other_wrap .facility_list li:nth-of-type(odd) {
  width: 50%;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap .facility_list li:nth-of-type(odd) {
    width: auto;
  }
}
.footer_other_area .other_wrap .facility_list li:nth-of-type(even) {
  width: 41.5%;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap .facility_list li:nth-of-type(even) {
    width: auto;
  }
}
.footer_other_area .other_wrap .logo_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap .logo_list {
    width: 690px;
    margin-left: auto;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 35px;
  }
}
.footer_other_area .other_wrap .logo_list li.logo_list_piole {
  width: 62px;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap .logo_list li.logo_list_piole {
    width: auto;
  }
}
.footer_other_area .other_wrap .logo_list li.logo_list_liv {
  width: 48px;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap .logo_list li.logo_list_liv {
    width: auto;
  }
}
.footer_other_area .other_wrap .logo_list li.logo_list_tete {
  width: 49px;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap .logo_list li.logo_list_tete {
    width: auto;
  }
}
.footer_other_area .other_wrap .logo_list li.logo_list_gp {
  width: 140px;
  margin-top: -14px;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap .logo_list li.logo_list_gp {
    width: auto;
    margin-top: 0;
  }
}
.footer_other_area .other_wrap .logo_list li.logo_list_plico {
  width: 62px;
}
@media screen and (min-width: 769px) {
  .footer_other_area .other_wrap .logo_list li.logo_list_plico {
    width: auto;
    margin-bottom: 10px;
  }
}
.footer_link_area {
  padding: 15px 0 20px;
}
@media screen and (min-width: 769px) {
  .footer_link_area {
    padding: 18px 0;
  }
}
.footer_link_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3px 18px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .footer_link_area ul {
    gap: 20px;
    width: auto;
  }
}
@media screen and (min-width: 769px) {
  .footer_link_area ul li {
    line-height: 1;
  }
}
.footer_link_area ul a {
  color: #808080;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .footer_link_area ul a {
    font-size: 14px;
  }
  .footer_link_area ul a:hover {
    text-decoration: underline !important;
  }
}

.copyright {
  font-size: 10px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
.copyright_area {
  background-color: #69635F;
  padding: 14px 0 18px;
}
@media screen and (min-width: 769px) {
  .copyright_area {
    padding: 18px 0;
  }
}
@media screen and (min-width: 769px) {
  .copyright {
    font-size: 12px;
  }
}

.fixed_menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 999;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .fixed_menu {
    display: none;
  }
}
.fixed_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fixed_menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  height: 70px;
}
.fixed_menu ul li a img {
  max-height: 28px;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 0 auto;
  clear: both;
  overflow: hidden;
  padding-bottom: 65px;
}
@media screen and (min-width: 769px) {
  #main {
    padding-bottom: 100px;
  }
}

.menu_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .menu_fixed {
    position: relative;
    width: auto;
    height: auto;
  }
}

/* ▼ パンくず
--------------------------------------- */
#path {
  padding: 18px 0;
  border-top: 1px solid #E2E2E2;
  background: linear-gradient(70deg, var(--bg-gold-1) -15%, var(--bg-gold-2) 25%, var(--bg-gold-3) 120%);
}
#path ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 8px;
}
#path ul li {
  font-size: 12px;
  font-weight: 500;
  color: #505050;
  line-height: 1.4;
}
#path ul li:not(:first-child) {
  position: relative;
  padding-left: 15px;
}
#path ul li:not(:first-child):before {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  left: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid #505050;
  border-right: 1px solid #505050;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  #path ul li {
    font-size: 14px;
  }
}
#path ul li a {
  text-decoration: underline;
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  width: 60px;
  height: 60px;
  bottom: 90px;
  right: 20px;
  z-index: 998;
  position: fixed;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .pagetop {
    bottom: 25px;
  }
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 100px 20px 60px;
}
@media screen and (min-width: 769px) {
  #not_found {
    padding: 8vw 20px;
  }
}
#not_found p {
  font-size: 14px;
  text-align: center;
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #not_found p.txt {
    line-height: 1.9;
  }
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}