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

/* 大枠 */
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: -webkit-optimize-contrast;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* リンク */
a {
  display: inline-block;
  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;
  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: 960px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) {
  .container {
    max-width: 1000px;
  }
}

.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: flex;
}

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

/*======== 共通パーツ ========*/
/*--- modal ---*/
.md_btn {
  cursor: pointer;
}

.md_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(255, 250, 224) 0%, rgb(217, 241, 247) 95%, rgb(206, 246, 255) 100%);
  opacity: 0.7;
  z-index: 5000;
}

.md_contents {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100% - 40px, 400px);
  height: auto;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  z-index: 6000;
}

.md_inner {
  padding: 30px 20px 80px;
}
@media screen and (min-width: 769px) {
  .md_inner {
    padding: 30px 30px 90px;
  }
}

.btn_box ul {
  display: flex;
  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: flex;
  align-items: 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;
}
.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 {
  transform: rotate(45deg);
}
.close_btn span:after {
  transform: rotate(-45deg);
}

/* ボタン共通デザイン */
a.btn {
  background-color: #fff;
  text-align: center;
  height: 50px;
  max-width: calc(100% - 80px);
  margin: auto;
  border: 1px solid;
  font-size: 13px;
  display: flex;
  justify-content: 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;
  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%;
}
@media screen and (min-width: 769px) {
  a.btn {
    height: 60px;
    width: 100%;
    max-width: 300px;
    font-size: 15px;
  }
}

a.btn_pink {
  color: #D41265 !important;
}
a.btn_pink:after {
  background: url(../img/btn_arw_pink.svg) center/contain no-repeat;
}

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

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

/* タブ */
.page_tab {
  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 .thmub {
  margin-bottom: 10px;
}
#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 .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;
  }
}

/* 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: #B71F59;
}

/* 下層ページタイトル 共通スタイル */
.head_area a {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .head_area {
    margin-bottom: 60px;
  }
}

.page_ttl {
  padding: 35px 0 50px;
  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(90deg, rgb(255, 250, 224) 0%, rgb(217, 241, 247) 95%, rgb(206, 246, 255) 100%);
  top: 0;
  left: 0;
}
.page_ttl h1 {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .page_ttl {
    padding: 55px 0;
  }
  .page_ttl:before, .page_ttl:after {
    height: 170px;
  }
  .page_ttl:before {
    bottom: -50px;
  }
  .page_ttl h1 {
    font-size: 36px;
  }
  .page_ttl h1:before {
    content: none;
  }
}

.head_area.pb .page_ttl:after {
  background: linear-gradient(50deg, rgb(255, 237, 249) 0%, rgb(237, 236, 250) 35%, rgb(185, 232, 253) 100%);
}

/* フリーワード検索 */
form {
  position: relative;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
}
form .input_box {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 45px;
  padding: 13px 45px 13px 13px;
  background: #fff;
  border: none;
  font-size: 16px;
}
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 {
    margin-bottom: 45px;
  }
  form .input_box {
    height: 70px;
    padding: 20px 70px 20px 30px;
  }
  form .search_btn {
    width: 70px;
  }
}

/* ページネーション */
.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
  gap: 10px;
}
.pagenation li {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}
.pagenation li a {
  font-size: 17px;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.pagenation li.current {
  font-size: 17px;
  background-color: #707070;
  color: #fff;
}
.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%;
  transform: translate(-50%, -50%);
}
.pagenation li.next a:before {
  transform: translate(-50%, -50%) scale(-1, 1);
}
@media screen and (min-width: 769px) {
  .pagenation {
    margin: 90px auto 0;
  }
  .pagenation li {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
  .pagenation li a {
    font-size: 20px;
  }
  .pagenation li.current {
    font-size: 20px;
  }
}

/* 新着記事のNEWマーク */
.date_circle {
  background-color: #fff;
  border: 1px solid #D41265;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 1;
}
.date_circle p {
  color: #D41265;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .date_circle {
    width: 70px;
    height: 70px;
  }
  .date_circle p {
    font-size: 16px;
  }
}

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

/* お気に入りボタン（詳細ページ） */
.favorite_btn {
  width: 22px;
  height: 26px;
  position: absolute;
  right: 10px;
  bottom: 5px;
  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: 22px;
  height: 26px;
  display: block;
}
.favorite_btn .check-box input + .check-text::before {
  content: "";
  width: 22px;
  height: 26px;
  background-image: url(../img/favorite_mark_off.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
}
.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 #D41265;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  opacity: 1;
  position: absolute;
  top: -1px;
  left: -3px;
  animation: 1s circleanime2 forwards;
}

/* お気に入りボタン（一覧ページ） */
.article_list .favorite_btn {
  width: 22px;
  height: 26px;
  position: absolute;
  right: 5px;
  bottom: -25px;
}
@media screen and (min-width: 769px) {
  .article_list .favorite_btn {
    width: 22px;
    height: 26px;
  }
}
.article_list .favorite_btn .check-box {
  display: block;
  height: auto;
}
.article_list.article_list_shopnews .favorite_btn {
  bottom: -12px;
}

/*波形が広がるアニメーション*/
@keyframes circleanime2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* ▼▼▼ ヘッダー
====================================================== */
/* 重要なお知らせ */
#important_notice {
  background-color: #567898;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  padding: 5px;
}
#important_notice p {
  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;
  transition: 0.45s;
}
header.scrolled {
  transform: translateY(-100%);
}
header > .container {
  padding: 0;
}
header .header_inner {
  width: 100%;
  height: 70px;
  position: relative;
  z-index: 1001;
  background-color: #fff;
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px 0 10px;
}
header .header_inner #site_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .header_inner #site_title a {
  display: inline-block;
  max-width: 94px;
}
header .header_inner .favorite {
  display: block;
  text-align: center;
  max-width: 60px;
  width: 100%;
  order: -1;
}
header .header_inner .favorite span {
  font-size: 12px;
  text-align: center;
  color: #707070;
}
header .header_inner .language {
  display: block;
  text-align: center;
  max-width: 60px;
  width: 100%;
  cursor: pointer;
}
header .header_inner .language span {
  font-size: 12px;
  color: #707070;
}
@media screen and (min-width: 769px) {
  header {
    position: fixed;
  }
  header > .container {
    max-width: none;
    padding: 0 20px;
  }
  header .header_inner {
    width: 100%;
    background: none;
    position: relative;
    top: auto;
    left: auto;
    z-index: 0;
    justify-content: flex-end;
    padding: 17px 105px 17px 17px;
    border-bottom: none;
  }
  header .header_inner #site_title {
    transform: none;
    left: 17px;
    top: 24px;
  }
  header .header_inner #site_title a {
    max-width: 150px;
  }
  header .header_inner .favorite {
    order: 2;
    max-width: fit-content;
    display: flex;
    padding: 4px 20px 4px 26px;
    border-right: 1px solid #ccc;
  }
  header .header_inner .favorite span {
    color: inherit;
    padding-left: 10px;
  }
  header .header_inner .language {
    max-width: fit-content;
    display: flex;
    padding: 4px 20px 4px 26px;
    border-right: 1px solid #ccc;
    position: relative;
  }
  header .header_inner .language span {
    color: inherit;
    padding-left: 10px;
  }
  header.scrolled {
    transform: none;
    background: rgba(255, 255, 255, 0.7);
  }
  header.scrolled .header_inner #site_title {
    position: static;
    margin-right: auto;
    transition: transform 0.35s linear;
  }
  header.scrolled .header_inner #site_title a {
    max-width: 100px;
  }
}
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: flex;
    gap: 0;
  }
  header .hours_parking ul li {
    padding: 4px 18px 4px 22px;
    border-right: 1px solid #ccc;
    font-size: 14px;
  }
  header .hours_parking ul li.hours {
    border-left: 1px solid #ccc;
  }
}
header #foreign_lang {
  display: none;
  background-color: #F7F7F7;
  padding: 14px;
  box-shadow: 0 3px 6px rgba(56, 56, 56, 0.1);
  position: absolute;
  top: 70px;
  left: 0px;
  width: 100%;
}
header #foreign_lang ul {
  display: flex;
  justify-content: space-around;
}
@media screen and (min-width: 769px) {
  header #foreign_lang {
    top: 50px;
    padding: 5px 10px;
  }
  header #foreign_lang ul {
    flex-direction: column;
  }
  header #foreign_lang ul li {
    text-align: center;
    line-height: 1.2;
  }
  header #foreign_lang ul li:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  header #foreign_lang ul li a {
    font-size: 12px;
    padding: 10px;
    display: block;
  }
  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;
}
.menu .icon {
  display: block;
  width: 25px;
  height: 1px;
  background: #151515;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  transition: all 0.3s;
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #151515;
  position: absolute;
  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 {
  transform: rotate(-135deg);
  top: 0;
}
.menu .icon.active::after {
  transform: rotate(135deg);
  bottom: 0;
}
.menu p {
  color: #707070;
  font-size: 12px;
  display: inline-block;
  line-height: 1;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .menu {
    width: 80px;
    height: 100%;
    order: 3;
  }
  .menu .icon {
    transform: none;
    top: 50%;
    left: 0;
  }
  .menu p {
    color: inherit;
    bottom: 50%;
    right: 10px;
    left: auto;
    transform: translate(0, 50%);
  }
}

/* グローバルナビゲーション */
#gnav {
  display: block !important;
  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;
  transform: translateY(-100%);
}
#gnav.open {
  transform: translateY(0);
}
@media screen and (min-width: 769px) {
  #gnav {
    width: 40%;
    left: 60%;
    background: none;
    padding-top: 0;
    margin-top: 70px;
    transform: translate(100%, 0);
  }
  #gnav.open {
    transform: translate(0, 0);
  }
}
#gnav .nav_all_wrap {
  position: relative;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 769px) {
  #gnav .nav_all_wrap {
    height: 100%;
    background-color: #fff;
    overflow: visible;
  }
}
#gnav .bg_grade {
  padding: 20px 0;
  background: linear-gradient(180deg, rgb(255, 250, 224) 0%, rgb(217, 241, 247) 95%, rgb(206, 246, 255) 100%);
}
@media screen and (min-width: 769px) {
  #gnav .bg_grade {
    padding: 35px 0;
  }
}
@media screen and (min-width: 769px) {
  #gnav .bg_grade .container {
    padding: 0 30px;
  }
}
#gnav .bg_grade .container .form_wrap form {
  margin-bottom: 20px;
}
#gnav .bg_grade .container .form_wrap form .input_box {
  background: rgba(255, 255, 255, 0.2);
}
#gnav .bg_grade .container .nav_wrap .main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  line-height: 1.4;
}
#gnav .bg_grade .container .nav_wrap .main li a {
  font-size: 11px;
  width: 100%;
  height: 70px;
  padding-top: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ddd;
  margin-bottom: 12px;
}
@media screen and (min-width: 769px) {
  #gnav .bg_grade .container .nav_wrap .main li a {
    height: 80px;
  }
}
#gnav .bg_grade .container .nav_wrap .main li a:before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 769px) {
  #gnav .bg_grade .container .nav_wrap .main li a:before {
    top: 10px;
  }
}
#gnav .bg_grade .container .nav_wrap .main li a.shopguide:before {
  background-image: url(../img/icon_shopguide.svg);
}
#gnav .bg_grade .container .nav_wrap .main li a.restaurant:before {
  background-image: url(../img/icon_restaurant.svg);
}
#gnav .bg_grade .container .nav_wrap .main li a.floormap:before {
  background-image: url(../img/icon_floormap.svg);
}
#gnav .bg_grade .container .nav_wrap .main li a.event:before {
  background-image: url(../img/icon_event.svg);
}
#gnav .bg_grade .container .nav_wrap .main li a.service:before {
  background-image: url(../img/icon_service.svg);
}
#gnav .bg_grade .container .nav_wrap .main li a.access:before {
  background-image: url(../img/icon_access.svg);
}
#gnav .bg_grade .container .nav_wrap .main li:nth-of-type(3n) a {
  border-right: none;
}
#gnav .bg_grade .container .nav_wrap .main li:nth-of-type(-n+3) {
  margin-bottom: 0;
  border-bottom: none;
}
#gnav .bg_grade .container .nav_wrap .main li:nth-of-type(n+4) a {
  margin-bottom: 0;
}
#gnav .h_nav02 {
  padding: 20px 0 40px;
}
@media screen and (min-width: 769px) {
  #gnav .h_nav02 {
    padding: 30px 0 140px;
  }
  #gnav .h_nav02 .container {
    padding: 0 30px;
  }
}
#gnav .h_nav02 .btn_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 26px;
}
#gnav .h_nav02 .btn_list li {
  width: calc(50% - 8px);
  border: 1px solid #D9D9D9;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.16);
}
#gnav .h_nav02 .btn_list li a {
  display: block;
  padding: 13px 20px;
  text-align: center;
}
#gnav .h_nav02 .btn_list li a img {
  vertical-align: middle;
  width: 100%;
}
#gnav .h_nav02 .btn_list li:first-child {
  width: 100%;
}
#gnav .h_nav02 .btn_list li:first-child a {
  padding: 0;
}
@media screen and (min-width: 769px) {
  #gnav .h_nav02 .btn_list {
    justify-content: space-between;
    gap: 10px 0;
  }
  #gnav .h_nav02 .btn_list li {
    width: calc(50% - 5px);
  }
}
#gnav .h_nav02 .sub {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-bottom: 20px;
}
#gnav .h_nav02 .sub li {
  width: 50%;
}
#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;
  transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  #gnav .h_nav02 .sub {
    gap: 7px 0;
  }
  #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 ul {
  display: flex;
  justify-content: 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: 25px;
  padding-top: 25px;
  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 li {
  line-height: 1.4;
}
#gnav .h_nav02 .other_wrap ul li:not(:last-child) {
  margin-bottom: 15px;
}
@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: 11px;
}
#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.png) center/contain no-repeat;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #gnav .h_nav02 .other_wrap ul li a:hover {
    text-decoration: underline !important;
  }
}
@media screen and (min-width: 769px) {
  #gnav .close_btn {
    display: none;
  }
}

/* ▼ 営業時間／駐車場
--------------------------------------- */
.hours_parking {
  background-color: #F7F7F7;
  padding: 14px;
}
.hours_parking ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.hours_parking ul li {
  display: flex;
  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 .md_inner .md_ttl:before {
  background: url(../img/icon_hours.svg) center/contain no-repeat;
  width: 18px;
  height: 18px;
}
.hours_parking .modal_parking .md_inner .md_ttl:before {
  background: url(../img/icon_parking.svg) center/contain no-repeat;
  width: 28px;
  height: 21px;
}
.hours_parking .md_inner .md_ttl {
  text-align: center;
  margin-bottom: 20px;
}
.hours_parking .md_inner .md_ttl:before {
  content: "";
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 6px;
}
.hours_parking .md_inner .attention {
  font-size: 13px;
  line-height: 1.46;
}
.hours_parking .closed_day {
  color: #D41265;
  font-size: 13px;
  text-align: center;
  border: 1px solid;
  padding: 5px;
  line-height: 1.46;
  margin-bottom: 20px;
}
.hours_parking .hours_list {
  display: flex;
  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 {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 20px;
}
.hours_parking .parking_box p {
  font-weight: 500;
  text-align: center;
}
.hours_parking .parking_box a {
  text-decoration: underline;
}
.hours_parking .parking_list {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 70%;
  margin: 0 auto 17px;
}
.hours_parking .parking_list:last-child {
  margin-bottom: 0;
}
.hours_parking .parking_list dt {
  font-size: 24px;
  font-weight: 500;
  border: 1px solid;
  text-align: center;
  line-height: 1;
  padding: 1rem;
  border-radius: 10px;
}
.hours_parking .parking_list dt.full {
  color: #D41265;
}
.hours_parking .parking_list dt.emp {
  color: #2068CB;
}
.hours_parking .parking_list dt.rush {
  color: #69635F;
}
.hours_parking .parking_list dd {
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  #main .hours_parking {
    display: none;
  }
}
/* ▼▼▼ footer
====================================================== */
footer {
  background: #fff;
  border-top: 1px solid #E2E2E2;
  padding-bottom: 65px;
  position: relative;
}
footer .about_area {
  background: #fff;
  padding: 40px 0 30px;
}
footer .about_area .address {
  margin-bottom: 14px;
  text-align: center;
}
footer .about_area .address .logo_footer {
  max-width: 82px;
}
footer .about_area .address .addr {
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
}
footer .about_area .sns_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer .about_area .sns_link li:first-child {
  font-size: 22px;
}
footer .about_area .sns_link li a {
  max-width: 30px;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  footer {
    padding-bottom: 0;
  }
  footer .about_area .address .logo_footer {
    max-width: 125px;
  }
}

.copyright_area {
  background-color: #575757;
  padding: 14px 0 18px;
}
.copyright_area .copyright {
  font-size: 10px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}

.fixed_menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  z-index: 999;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .fixed_menu {
    display: none;
  }
}
.fixed_menu ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.fixed_menu ul li a {
  display: flex;
  flex-direction: column;
  align-items: 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(90deg, rgb(255, 250, 224) 0%, rgb(217, 241, 247) 95%, rgb(206, 246, 255) 100%);
}
#path.pb {
  background: linear-gradient(50deg, rgb(255, 237, 249) 0%, rgb(237, 236, 250) 35%, rgb(185, 232, 253) 100%);
}
#path ul {
  display: flex;
  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;
  transform: rotate(45deg);
}
#path ul li a {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  #path ul li {
    font-size: 14px;
  }
}

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

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

/* ▼ コピーライト
--------------------------------------- */
#copyright {
  font-size: 12px;
  color: #fff;
}

/* ▼▼▼ 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;
}