@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");
/* ===============================================
  base
=============================================== */
* {
  -webkit-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 {
  color: #343434;
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 820px) {
  body {
    font-size: 14px;
  }
  body.menu_fixed {
    position: fixed;
    top: 0;
    width: 100%;
  }
  body.wrap {
    overflow: hidden;
  }
}
body #wrapper {
  height: auto;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  content: " ";
  clear: both;
  height: 0;
}


/* ▼強制ポップアップ
--------------------------------------- */
#popup_wrap {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2500;
}

#popup_wrap .popup_bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

#popup_wrap .popup_content {
  background: #fff;
  padding: 35px 30px 45px;
  position: absolute;
  left: 50%;
  top: 140px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 70vh;
  overflow-y: scroll;
  border-radius: 12px;
  border: 1px solid #003462;
}

@media screen and (min-width: 769px) {
  #popup_wrap .popup_content {
    max-width: 500px;
    max-height: 645px;
  }
}
#popup_wrap .popup_content .date {
  font-family: "Inter", "Noto Sans JP";
  color: #B2B2B2;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

#popup_wrap .popup_content .head {
  font-size: 19px;
  font-weight: bold;
  color: #003462;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

#popup_wrap .popup_content .line_y {
  font-size: 16px;
  font-weight: 500;
  color: #003462;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFF9BA));
  background: linear-gradient(transparent 60%, #FFF9BA 60%);
  display: inline;
}

#popup_wrap .popup_content .txt {
  margin: 28px 0 35px;
}

#popup_wrap .popup_content ul li {
  text-align: center;
}

#popup_wrap .popup_content ul li:not(:last-of-type) {
  margin-bottom: 8px;
}

#popup_wrap .popup_content ul li a {
  font-size: 13px;
  line-height: 44px;
  color: #003462;
  background: #fff;
  text-align: center;
  max-width: 265px;
  width: 100%;
  height: 44px;
  border: 1px solid #003462;
  border-radius: 100px;
  position: relative;
}

#popup_wrap .popup_content ul li a::before {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  right: 12px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #003462;
  border-right: 1px solid #003462;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 769px) {
  #popup_wrap .popup_content ul li a:hover {
    background: #003462;
    color: #fff;
    opacity: 1;
  }
  #popup_wrap .popup_content ul li a:hover::before {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
#popup_wrap .popup_content ul li.pdf_link a::after {
  content: "";
  background-color: #003462;
  -webkit-mask: url(../img/icon_pdf.svg);
  mask: url(../img/icon_pdf.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 18px;
  height: 19px;
  position: absolute;
  right: 75px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  #popup_wrap .popup_content ul li.pdf_link a:hover {
    background: #003462;
    color: #fff;
    opacity: 1;
  }
  #popup_wrap .popup_content ul li.pdf_link a:hover::after {
    background-color: #fff;
  }
}
#popup_wrap .close_btn.force-popup-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  line-height: 1;
}

/* ▼強制ポップアップ
--------------------------------------- */
@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
.guidance {
  left: -999px;
  position: absolute;
  width: 990px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  pointer-events: none;
  image-rendering: auto;
}

/* レスポンシブ対応 */
img {
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0;
  /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0;
  /* IE7対応 */
}

/* Windows Chrome 画像ぼやけ防止 */
@media screen and (max-width: 820px) {
  img {
    /* image-rendering: -webkit-optimize-contrast; */
  }
}
/* リンク */
a {
  display: inline-block;
}

a:link,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
  opacity: 0.7;
}

/* CLEARFIX */
.container:after,
.row:after,
.col:after {
  content: "";
  display: table;
  clear: both;
}

#wrapper {
  width: 100%;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
}

@media screen and (max-width: 820px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}
@media screen and (max-width: 820px) {
  .sp {
    display: block;
  }
}

/* ===============================================
　　ヘッダー
=============================================== */
header {
  width: 50vw;
  top: 0;
  right: 0;
  position: fixed;
  z-index: 100;
}
@media screen and (max-width: 820px) {
  header {
    width: 100vw;
    height: 81px;
  }
  header .header_inner {
    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;
    border-bottom: 1px solid #EAD7A3;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2000;
  }
}
header #site_title, header .fav {
  display: none;
}
@media screen and (max-width: 820px) {
  header #site_title, header .fav {
    display: block;
  }
}
header .fav {
  background: url(../img/nav_fav.svg) no-repeat center 23px/23.81px;
  height: 80px;
  width: 80px;
  position: absolute;
  top: 0;
  left: 0;
}
header .fav a {
  display: block;
  padding: 49px 0 15px;
  color: #003462;
  font-size: 10px;
  text-align: center;
  font-family: "Outfit", sans-serif;
}

/* グローバルナビゲーション */
#gnav {
  background: #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-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  float: none;
  max-width: 375px;
  height: 819px;
  max-height: 100vh;
  width: 100%;
  margin: 0;
  color: #003462;
  font-size: 14px;
  position: absolute;
  top: -1000px;
  right: 0;
  z-index: 1000;
  overflow: auto;
  scrollbar-width: none;
}
#gnav::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 820px) {
  #gnav {
    max-width: 500px;
    max-height: 100vh;
    height: 100vh;
  }
}
#gnav.open {
  -webkit-transform: translateY(1000px);
  transform: translateY(1000px);
}
#gnav .nav_wrap {
  background: #fff;
  padding: 150px 18px 65px;
}
@media screen and (max-width: 820px) {
  #gnav .nav_wrap {
    padding-top: 125px;
    padding-bottom: 60px;
  }
}
#gnav .h_nav01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px 0;
  margin-bottom: 35px;
  line-height: 1.3;
}
#gnav .h_nav01 li {
  width: 33.3333333333%;
}
#gnav .h_nav01 a {
  display: grid;
  gap: 5px 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
#gnav .h_nav01 a img {
  margin: 0 auto;
}
#gnav .h_nav01 a span {
  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;
  min-height: 2.5em;
  text-align: center;
}
#gnav .h_nav02 {
  /* display: flex; */
  /* justify-content: center; */
  gap: 10px 10px;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: auto auto;
}
#gnav .h_nav02 li {
  position: relative;
}
#gnav .h_nav02 li a::before {
  content: "";
  display: inline-block;
  line-height: 1;
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: translateY(-25%) rotate(45deg);
          transform: translateY(-25%) rotate(45deg);
  margin-right: 10px;
}
#gnav .nav_wrap02 {
  background-image: linear-gradient(40deg, #C49750, #DEBF79);
  height: 100%;
  padding: 67px 18px 50px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 820px) {
  #gnav .nav_wrap02 {
    padding-bottom: 100px;
  }
}
#gnav .nav_wrap02::before {
  content: "";
  background: url(../img/bg01.svg) no-repeat center bottom/100% 100%;
  width: 100%;
  height: 44px;
  position: absolute;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: -1px;
  left: 0;
}
@media screen and (max-width: 820px) {
  #gnav .nav_wrap02::before {
    height: 25px;
  }
}
#gnav .nav_wrap02 .h_nav03 {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px 0;
  max-width: 312.5px;
  width: 100%;
  margin: 0 auto 90px;
  font-size: 13px;
}
#gnav .close_btn {
  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;
  border: 1px solid #fff;
  border-radius: 6px;
  background: transparent;
  max-width: 270px;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  cursor: pointer;
}
#gnav .close_btn::before {
  content: "";
  background: url(../img/nav_close.svg) no-repeat center/contain;
  width: 16px;
  height: 16px;
  margin-right: 15px;
}

.menu:not(.close_btn) {
  display: block;
  background-image: linear-gradient(13deg, #4A6B93, #809AB7);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 8px;
  z-index: 2000;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .menu:not(.close_btn) {
    background: #fff;
    border-radius: 0;
    width: 80px;
    height: 80px;
    -webkit-box-shadow: none;
            box-shadow: none;
    top: 0;
    right: 0;
  }
}
.menu:not(.close_btn) .icon {
  display: block;
  width: 32px;
  height: 1.5px;
  border-top: 1.5px solid #fff;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 43%;
  left: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 820px) {
  .menu:not(.close_btn) .icon {
    border-color: #003462;
    border-width: 1px;
    width: 30px;
    height: 1px;
  }
}
.menu:not(.close_btn) .icon::before, .menu:not(.close_btn) .icon::after {
  content: "";
  width: 32px;
  border-top: 1.5px solid #fff;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
}
@media screen and (max-width: 820px) {
  .menu:not(.close_btn) .icon::before, .menu:not(.close_btn) .icon::after {
    border-color: #003462;
    border-width: 1px;
    width: 30px;
  }
}
.menu:not(.close_btn) .icon::before {
  top: -10px;
}
.menu:not(.close_btn) .icon::after {
  bottom: -8px;
}
.menu:not(.close_btn) .icon span:before {
  content: "MENU";
  color: #fff;
  font-size: 12px;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
  position: absolute;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
@media screen and (max-width: 820px) {
  .menu:not(.close_btn) .icon span:before {
    color: #003462;
    font-size: 10px;
  }
}
.menu:not(.close_btn) .icon.active {
  border-color: transparent;
}
.menu:not(.close_btn) .icon.active:before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: -2px;
  right: 0;
}
.menu:not(.close_btn) .icon.active:after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 0;
  right: 0;
}
.menu:not(.close_btn) .icon.active span:before {
  content: "CLOSE";
}

/* ===============================================
　　共通パーツ
=============================================== */
/* タイトル */
.subject {
  background: url(../img/bg_other.svg) no-repeat right top/auto;
  padding: 60px 0 50px;
  color: #003462;
  font-size: 45px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  letter-spacing: 0.045em;
}
.subject span {
  display: block;
  font-size: 15px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 820px) {
  .subject {
    background-size: 106px;
    padding: 30px 0;
    font-size: 36px;
    line-height: 1.3;
  }
  .subject span {
    font-size: 14px;
  }
}

.contents_ttl {
  margin-bottom: 35px;
  color: #003462;
  font-size: 45px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  letter-spacing: 0.045em;
}
.contents_ttl span {
  display: block;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 820px) {
  .contents_ttl {
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 1.3;
  }
  .contents_ttl span {
    font-size: 14px;
  }
}

.sect_ttl {
  background-image: linear-gradient(45deg, #C49750, #DEBF79);
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 25px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 820px) {
  .sect_ttl {
    padding: 3px;
    margin-bottom: 20px;
    font-size: 16px;
  }
}

/* テキスト */
.txt_centerd {
  text-align: center;
}

.b_txt {
  font-weight: bold;
}

/* ボタン */
.btn {
  background: #003462;
  border-radius: 31px;
  width: 194.49px;
  margin: 30px auto 0;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 820px) {
  .btn {
    width: 150px;
    margin-top: 25px;
  }
}
.btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 58px;
  padding: 0 60px 0 30px;
  color: #fff;
  font-size: 18px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  .btn a {
    height: 45px;
    padding: 0 40px 0 20px;
    font-size: 17px;
  }
}
.btn a::before, .btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .btn a::before, .btn a::after {
    right: 15px;
  }
}
.btn a::before {
  border-top: 1px solid #fff;
  width: 27px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 820px) {
  .btn a::before {
    width: 21px;
  }
}
.btn a::after {
  display: inline-block;
  color: #fff;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}
@media screen and (max-width: 820px) {
  .btn a::after {
    width: 7px;
    height: 7px;
  }
}
.btn a:hover {
  opacity: 1;
}
.btn a:hover::before, .btn a:hover::after {
  right: 15px;
}

.btn_detail_wrap {
  margin-top: 30px;
}
.btn_detail_wrap .btn_detail:not(:first-of-type) {
  margin-top: 15px;
}
@media screen and (max-width: 820px) {
  .btn_detail_wrap .btn_detail:not(:first-of-type) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 820px) {
  .btn_detail_wrap {
    margin-top: 25px;
  }
}

.btn_detail, .back_btn {
  border: 1px solid;
  border-radius: 6px;
  max-width: 302px;
  width: 100%;
  margin: 0 auto;
  color: #BF934F;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 820px) {
  .btn_detail, .back_btn {
    max-width: 270px;
  }
}
.btn_detail::before, .btn_detail::after, .back_btn::before, .back_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_detail::before, .back_btn::before {
  border-top: 1px solid;
  width: 24px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 820px) {
  .btn_detail::before, .back_btn::before {
    width: 21px;
  }
}
.btn_detail::after, .back_btn::after {
  display: inline-block;
  color: #707070;
  line-height: 1;
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 820px) {
  .btn_detail::after, .back_btn::after {
    width: 7px;
    height: 7px;
  }
}
.btn_detail a, .back_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 67px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  .btn_detail a, .back_btn a {
    height: 45px;
  }
}
.btn_detail:hover, .back_btn:hover {
  opacity: 1;
}

.btn_detail {
  border-color: #BF934F;
}
.btn_detail::before, .btn_detail::after {
  right: 20px;
}
@media screen and (max-width: 820px) {
  .btn_detail::before, .btn_detail::after {
    right: 15px;
  }
}
.btn_detail::before {
  border-color: #BF934F;
}
.btn_detail::after {
  color: #BF934F;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}
.btn_detail:hover {
  opacity: 1;
}
.btn_detail:hover::before, .btn_detail:hover::after {
  right: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_detail a {
  padding: 0 40px 0 20px;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  .btn_detail a {
    height: 45px;
    line-height: 1.4;
  }
}
.btn_detail a[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  background: url(../img/icon_pdf.png) no-repeat -2px center/contain;
  width: 27px;
  height: 27px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 5px;
}
@media screen and (max-width: 820px) {
  .btn_detail a[href$=".pdf"]::after {
    width: 24px;
    height: 24px;
  }
}
.btn_detail.nvy {
  border-color: #003462;
  background: #003462;
  color: #fff;
}
.btn_detail.nvy::before, .btn_detail.nvy::after {
  border-color: #fff;
}
.btn_detail.centerd a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.back_btn {
  background: #fff;
  border-color: #707070;
}
.back_btn::before, .back_btn::after {
  left: 20px;
}
@media screen and (max-width: 820px) {
  .back_btn::before, .back_btn::after {
    left: 15px;
  }
}
.back_btn::before {
  border-color: #707070;
}
.back_btn::after {
  color: #707070;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translate(0, -50%) rotate(-135deg);
          transform: translate(0, -50%) rotate(-135deg);
}
.back_btn:hover {
  opacity: 1;
}
.back_btn:hover::before, .back_btn:hover::after {
  left: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.back_btn a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 25px 0 35px;
  color: #000;
}
@media screen and (max-width: 820px) {
  .back_btn a {
    padding: 0 25px;
  }
}

a.link_under {
  text-decoration: underline;
  color: #BF934F;
}
a.link_arrow {
  display: inline-block;
  padding: 0 0 0 15px;
  position: relative;
}
a.link_arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid #BF934F;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 11px;
  left: 0;
}
@media screen and (max-width: 820px) {
  a.link_arrow::before {
    width: 7px;
    height: 7px;
    top: 10px;
  }
}

/* お気に入りボタン */
.icon_fav {
  cursor: pointer;
  position: relative;
}
.icon_fav.check::before {
  content: "";
  -webkit-animation: shine 0.6s ease;
          animation: shine 0.6s ease;
  position: absolute;
  top: 0;
  left: -95%;
  width: 70%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.icon_fav.check svg path {
  fill: #BF934F;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
/* リスト */
.dots_list li {
  text-indent: -1.5em;
  padding-left: 1.5em;
  line-height: 1.6;
}
.dots_list li:not(:last-child) {
  margin-bottom: 3px;
}
.dots_list li::before {
  content: "・";
  display: inline-block;
  text-indent: 0;
  margin-right: 0.5em;
  color: #BF934F;
}
.dots_list li a, .dots_list li span {
  text-indent: 0;
}

.count_list {
  counter-reset: count 0;
}
.count_list li {
  padding-left: 3em;
  position: relative;
}
.count_list li:before {
  content: "（" counter(count) "）";
  counter-increment: count 1;
  position: absolute;
  top: 0;
  left: 0;
}

/* アコーディオン */
.accordion {
  border: 1px solid #E5D8C3;
  border-radius: 10px;
  padding: 0 25px;
}
.accordion:not(:last-of-type) {
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  .accordion {
    padding: 0 20px;
  }
}
.accordion dt {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #BF934F;
  letter-spacing: 0.1em;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.accordion dt::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 0;
}
.accordion dt.open::after {
  background: url(../img/open.svg) no-repeat center/contain;
}
.accordion dt.close::after {
  background: url(../img/close.svg) no-repeat center/contain;
}
.accordion dt.first + dd {
  display: block;
}
.accordion dd {
  display: none;
  border-top: 1px solid #E5D8C3;
  padding-top: 15px;
  padding-bottom: 20px;
}
.accordion dd .ttl {
  background-image: linear-gradient(45deg, #4A6B93, #809AB7);
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.accordion dd p {
  line-height: 1.8;
}
.accordion .btn_detail {
  max-width: 270px;
  margin-top: 20px;
  line-height: 1.3;
}
.accordion .btn_detail a {
  height: 50px;
}
@media screen and (max-width: 820px) {
  .accordion .btn_detail {
    max-width: 220px;
    margin-top: 15px;
  }
  .accordion .btn_detail a {
    height: 45px;
  }
}

/* パンくず */
#path {
  padding: 80px 33px 30px;
  position: relative;
}
@media screen and (max-width: 820px) {
  #path {
    padding: 60px 18px 60px;
  }
}
#path ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 12px;
}
#path ol a:hover {
  opacity: 1;
  text-decoration: underline;
}
#path ol li:not(:last-child) {
  position: relative;
}
#path ol li:not(:last-child)::after {
  content: ">";
  padding: 0 3px;
}

/* その他コンテンツ */
.container {
  max-width: 500px;
  width: 100%;
  padding: 0 18px;
  margin: 0 auto;
}

.sect_wrap {
  line-height: 1.8;
}
.sect_wrap:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  .sect_wrap:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

.sp_menu {
  display: none;
}
@media screen and (max-width: 820px) {
  .sp_menu {
    background: #fff;
    border-top: 1px solid #EAD7A3;
    width: 100%;
    color: #003462;
    font-size: 12px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
  }
  .sp_menu ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
  }
  .sp_menu ul 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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 80px;
  }
  .sp_menu ul a span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 2.5em;
    margin-top: 2px;
    text-align: center;
    line-height: 1.2;
  }
}

.menu_fixed .sp_menu {
  display: none !important;
}

#main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 820px) {
  #main {
    display: block;
    padding-top: 81px;
  }
}
#main .pc_menu, #main .main_wrap {
  width: 50%;
  margin-left: auto;
}
@media screen and (max-width: 820px) {
  #main .pc_menu, #main .main_wrap {
    width: 100%;
  }
}
#main .pc_menu {
  background: url(../img/menu_bg.webp) no-repeat center/cover;
  padding: 30px;
  height: 100vh;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  scrollbar-width: none;
}
#main .pc_menu::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 820px) {
  #main .pc_menu {
    display: none;
  }
}
#main .pc_menu .scroll {
  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;
  min-height: 550px;
  height: 100%;
}
#main .pc_menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  max-height: 565px;
  min-height: 470px;
  max-width: 519px;
  width: 100%;
  height: 47vw;
  padding: 25px 15px;
  margin: 0 auto;
}
#main .pc_menu .inner .logo {
  text-align: center;
}
#main .pc_menu .inner nav {
  max-width: 445px;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
}
#main .pc_menu .inner nav 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;
  line-height: 1.3;
  gap: 45px 0;
}
#main .pc_menu .inner nav ul li {
  width: 33.3333333333%;
}
#main .pc_menu .inner nav ul li:not(:nth-child(3n)):not(:last-child) {
  border-right: 1px solid #9D9D9D;
}
#main .pc_menu .inner nav ul li a {
  display: grid;
  gap: 5px 0;
  width: 100%;
  height: 100%;
  color: #003462;
  text-align: center;
}
#main .pc_menu .inner nav ul li a img {
  margin: 0 auto;
}
#main .pc_menu .inner nav ul li a span {
  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;
  min-height: 2.5em;
  text-align: center;
}

.item .ph_cover, .item .txt_wrap {
  width: 90%;
  margin: 0 auto;
}
.item .ph_cover {
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .item .ph_cover {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px){
.item .ph_cover, .item .txt_wrap {
  width: 100%;
  padding: 0 10px;
}
}
.item .ph_cover_inner {
  padding-top: 100%;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}
.item .ph_cover a, .item .ph_cover span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.item .ph_cover a img, .item .ph_cover span img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.item .txt_wrap {
  position: relative;
}
.item .txt_wrap .icon_fav {
  position: absolute;
  top: -5px;
  right: 0;
}
@media screen and (max-width: 820px) {
  .item .txt_wrap .icon_fav {
    top: -3px;
  }
}
.item .period {
  margin-bottom: 10px;
  color: #BF934F;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .item .period {
    margin-bottom: 8px;
    font-size: 12px;
  }
}
.item .period time {
  font-family: "Outfit", sans-serif;
  font-weight: normal;
}
.item .period + .ttl {
  width: 100%;
}
.item .ttl {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  width: calc(100% - 30px);
}
.item.bdr_btm .ttl{
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.item .ttl.bdl{
  border-left: 5px solid #BF934F ;
  padding-left: 10px;
  font-weight: 500;
  line-height: 1.2;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin: 30px 0;
}
@media screen and (max-width: 820px) {
  .item .ttl {
    font-size: 18px;
    width: 100%;
  }
  .item .ttl.bdl{
    font-size: 16px;
  }
}
.item p {
  line-height: 2;
}
.item .detail_txt{
  line-height: 1.9;
}
.list_col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 20px;
}
.list_col2 .close_shop_only{
  margin: 10px 0;
  font-size: 12px;
  /* display: none; */
}
.list_col2 .close_shop_only.show{
  display: block;
}
.list_col2 .close_shop_only a{
  display: inline-block;
}
@media screen and (max-width: 820px) {
  .list_col2 {
    gap: 30px 20px;
  }
}
.list_col2 li.new {
  position: relative;
}
.list_col2 li.new::before {
  content: "NEW!";
  background-image: linear-gradient(13deg, #90B0D1, #0B4272);
  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;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .list_col2 li.new::before {
    width: 45px;
    height: 45px;
    font-size: 11px;
    top: -8px;
    left: -8px;
  }
}
.list_col2 a {
  display: block;
  line-height: 1.4;
}
.list_col2 .ph_cover {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .list_col2 .ph_cover {
    margin-bottom: 10px;
  }
}
.list_col2 .ph_cover_inner {
  padding-top: 100%;
  position: relative;
  border-radius: 17px;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.list_col2 li {position: relative;}
.date_circle {
    background-image: linear-gradient(13deg, #90B0D1, #0B4272);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 1;
}
.date_circle.close {background: #999;}
.date_circle p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  line-height: 1.3;
  text-align: center;
  height: 100%;
}
.list_col2 .ph_cover img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.list_col2 .period {
  margin-top: 5px;
  color: #BF934F;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .list_col2 .period {
    font-size: 12px;
  }
}
.list_col2 .period time {
  font-family: "Outfit", sans-serif;
  font-weight: normal;
}

.recruit_wrap {
  padding: 27px 17px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.recruit_wrap .ph_cover {
  margin-bottom: 15px;
}
.recruit_wrap .ph_cover_inner {
  padding-top: 68.8%;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.recruit_wrap .shop_data a {
  color: #BF934F;
  text-decoration: underline;
}
.recruit_ac_block {
  position: relative;
}
.recruit_ac_icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #003462;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.recruit_ac_icon::before, .recruit_ac_icon::after {
  content: "";
  width: 12px;
  height: 1px;
  background: #FFFFFF;
  position: absolute;
  left: 50%;
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.recruit_ac_open, .recruit_ac_close {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  cursor: pointer;
}
.recruit_ac_open {
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.recruit_ac_open + .recruit_ac_inner {
  height: 150px;
  overflow: hidden;
}
.recruit_ac_open .recruit_ac_icon::after {
  -webkit-transform: translate(-50%, 50%) rotate(90deg);
          transform: translate(-50%, 50%) rotate(90deg);
}
.recruit_ac_close {
  height: 60px;
}
.recruit_ac_close + .recruit_ac_inner {
  padding-bottom: 30px;
}
.recruit_ac_inner {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.floor {
  display: inline-block;
  background: #BF934F;
  padding: 0 5px;
  margin: 9px 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 820px) {
  .floor {
    margin: 0 0 8px;
    font-size: 12px;
  }
}

.cat {
  margin: 5px 0 0;
  color: #BF934F;
  font-size: 14px;
}
@media screen and (max-width: 820px) {
  .cat {
    font-size: 12px;
  }
}

.sns_wrap {
  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: #EDEEF0;
  border-radius: 10px;
  padding: 15px 0;
  margin-top: 35px;
}
@media screen and (max-width: 820px) {
  .sns_wrap {
    margin-top: 25px;
  }
}
.sns_wrap p {
  color: #003462;
  font-size: 15px;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 820px) {
  .sns_wrap p {
    font-size: 13px;
  }
}
.sns_wrap .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  margin-left: 25px;
}
@media screen and (max-width: 820px) {
  .sns_wrap .sns_list {
    gap: 0 13px;
    margin-left: 20px;
  }
}
.sns_wrap .sns_list img {
  width: 37px;
}
@media screen and (max-width: 820px) {
  .sns_wrap .sns_list img {
    width: 27px;
  }
}
.sns_wrap .sns_list .copy {
  width: 110px;
}
.sns_wrap .sns_list .copy button {
  background: #fff;
  border: 1px solid #B4BABF;
  border-radius: 20px;
  padding: 0 20px 0 0;
  width: 100%;
  height: 35px;
  color: #003462;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .sns_wrap .sns_list .copy button {
    padding: 0 15px 0 0;
  }
}
.sns_wrap .sns_list .copy button::after {
  display: inline-block;
  content: "";
  background: url(../img/icon_copy.svg) no-repeat right center/contain;
  width: 12px;
  height: 15px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 15px;
}
.sns_wrap .sns_list .copy button.check::after {
  background: none;
  width: 10px;
  height: 5px;
  border: 1px solid #003462;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
@media screen and (max-width: 820px) {
  .sns_wrap .sns_list .copy button.check::after {
    top: 47%;
  }
}
@media screen and (max-width: 820px) {
  .sns_wrap .sns_list .copy {
    width: 105px;
  }
  .sns_wrap .sns_list .copy button {
    height: 32px;
    font-size: 12px;
  }
  .sns_wrap .sns_list .copy button::after {
    width: 12px;
    height: 15px;
    margin-left: 5px;
  }
}

.other {
  background: #FDF8EA;
  padding: 70px 0 55px;
  color: #BF934F;
  position: relative;
}
@media screen and (max-width: 820px) {
  .other {
    padding: 50px 0;
  }
}
.other::before {
  content: "";
  background-image: url(../img/bg01.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  width: 100%;
  height: 44px;
  position: absolute;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: -1px;
  left: 0;
}
@media screen and (max-width: 820px) {
  .other::before {
    background-size: 100% 100%;
    height: 25px;
  }
}
.other * {
  text-align: center;
}
.other p {
  margin-bottom: 15px;
  font-size: 14px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  .other p {
    font-size: 12px;
  }
}
.other .line {
  margin-bottom: 25px;
}
@media screen and (max-width: 820px) {
  .other .line img {
    width: 46.57px;
  }
}
.other .btn_wrap div {
  max-width: 308px;
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.05em;
}
.other .btn_wrap div:nth-of-type(2) {
  letter-spacing: 0.02em;
}
.other .btn_wrap div:not(:last-of-type) {
  margin-bottom: 10px;
}
.other .btn_wrap div a {
  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: 0 10px;
  background: #fff;
  border: 1px solid #BF934F;
  border-radius: 10px;
  width: 100%;
  height: 79px;
  font-size: 19px;
  line-height: 1.3;
}
@media screen and (max-width: 820px) {
  .other .btn_wrap div {
    max-width: 217px;
  }
  .other .btn_wrap div a {
    height: 45px;
    font-size: 15px;
  }
  .other .btn_wrap div a img {
    width: 29.19px;
  }
}

/* ===============================================
  #home TOPページ
=============================================== */
#home .attention {
  background: #F8E025;
  color: #D62F5C;
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: bold;
}
#home .attention a {
  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;
  height: 40px;
  text-align: center;
}
#home .attention a::before {
  display: inline-block;
  content: "";
  background: url(../img/icon_attention.svg) no-repeat center/contain;
  width: 22px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  #home .attention {
    font-size: 12px;
    position: relative;
    z-index: 2000;
  }
  #home .attention a {
    width: 100%;
  }
  #home .attention a::before {
    width: 20px;
    height: 18px;
    margin-right: 8px;
  }
}
#home .mv {
  background: #fff;
  padding: 20px 0;
}
@media screen and (max-width: 820px) {
  #home .mv {
    padding: 10px 0;
  }
}
#home .other {
  background: #FDF8EA;
}
#home footer::before {
  background-image: url(../img/bg_footer_top.svg);
}

.top_slide {
  opacity: 0;
}
.top_slide.swiper-initialized {
  opacity: 1;
}
.top_slide .swiper-slide {
  overflow: hidden;
  position: relative;
  height: auto;
}
.top_slide .swiper-slide a{
  width: 100%;
  height: 100%;
}
.top_slide .swiper-slide a:hover {
  opacity: 1;
}
.top_slide .swiper-slide a:hover img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.top_slide .swiper-slide .blur_item {
  -webkit-filter: blur(7px);
          filter: blur(7px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 102%;
  height: 102%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}
.top_slide .swiper-slide .blur_item::after {
  content: "";
  background: rgba(255, 255, 255, 0.36);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.top_slide .swiper-slide img {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .top_slide .swiper-slide {
    overflow: hidden;
    position: relative;
  }
  .top_slide .swiper-slide a:hover {
    opacity: 1;
  }
  .top_slide .swiper-slide a:hover img {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .top_slide .swiper-slide-active a:hover {
    opacity: 1;
  }
  .top_slide .swiper-slide-active a:hover img {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
.top_slide .swiper-button-next, .top_slide .swiper-button-prev {
  width: 43px;
  height: 43px;
}
@media screen and (max-width: 820px) {
  .top_slide .swiper-button-next, .top_slide .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
}
.top_slide .swiper-button-next::after, .top_slide .swiper-button-prev::after {
  content: "";
  background: url(../img/top/slide_arrow.svg) no-repeat center/contain;
  width: 100%;
  height: 100%;
}
.top_slide .swiper-button-next {
  right: calc(17% + 11.5px);
}
@media screen and (max-width: 820px) {
  .top_slide .swiper-button-next {
    right: calc(9% + 6.5px);
  }
}
.top_slide .swiper-button-next::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.top_slide .swiper-button-prev {
  left: calc(17% + 11.5px);
}
@media screen and (max-width: 820px) {
  .top_slide .swiper-button-prev {
    left: calc(9% + 6.5px);
  }
}

/* top_info */
#top_info {
  padding: 40px 0 60px;
}
@media screen and (max-width: 820px) {
  #top_info {
    padding-bottom: 50px;
  }
}
#top_info::before {
  content: "";
  display: block;
  background: url(../img/top/top_info.webp) no-repeat center/cover;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 50vw;
  height: 100vh;
}
@media screen and (max-width: 820px) {
  #top_info::before {
    width: 100vw;
  }
}
#top_info .container {
  text-align: center;
}
#top_info .contents_ttl {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
          box-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
  color: #BF934F;
}
#top_info .info_list {
  background: #fff;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 15px;
}
#top_info .info_list .when_null{
  padding: 30px 0;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #top_info .info_list {
    font-size: 14px;
  }
}
#top_info .info_list li:not(:last-child) {
  background-image: linear-gradient(to right, #BF934F 1px, transparent 1px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
#top_info .info_list li a {
  display: block;
  padding: 13px 0 15px;
}
#top_info .info_list li a time {
  color: #003462;
  font-size: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* top_guide */
#top_guide {
  background: url(../img/top/top_guide_bg.webp) no-repeat center/100% 100%;
  padding: 80px 0 90px;
  position: relative;
}
@media screen and (max-width: 820px) {
  #top_guide {
    padding: 50px 0 75px;
  }
}
#top_guide::after {
  content: "";
  background: #fff;
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: -2px;
  z-index: -1;
}
#top_guide .container {
  position: relative;
}
#top_guide .contents_ttl {
  color: #fff;
}
.category.tab {
  background: transparent;
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  font-size: 17px;
  line-height: 1.3;
  text-align: center;
  position: relative;
  padding-top: 35px;
  margin-bottom: 0;
  border: 1px solid #fff;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .category.tab {
    font-size: 14px;
  }
}
.category.tab::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%,-100%);
}
.category.tab.active{
  background: #fff;
  color: #003462;
}
.category.tab.shopping::before{
  background-image: url(../img/icon_shopping_white.svg);
  width: 20px;
  height: 19px;
}
.category.tab.active.shopping::before{
  background-image: url(../img/icon_shopping.svg);
  width: 20px;
  height: 19px;
}
.category.tab.gourmet::before{
  background-image: url(../img/icon_gourmet_white.svg);
  width: 15px;
  height: 17px;
}
.category.tab.active.gourmet::before{
  background-image: url(../img/icon_gourmet.svg);
  width: 15px;
  height: 17px;
}
.category.tab.service::before{
  background-image: url(../img/icon_service_white.svg);
  width: 20px;
  height: 17px;
}
.category.tab.active.service::before{
  background-image: url(../img/icon_service.svg);
  width: 20px;
  height: 17px;
}

.category {
  background: #fff;
  border-radius: 10px;
  padding: 12px 0;
  margin-bottom: 30px;
  color: #003462;
  font-size: 17px;
  line-height: 1.3;
  text-align: center;
}
.category img {
  margin-right: 8px;
}
@media screen and (max-width: 820px) {
  .category {
    padding: 8px 0;
    margin-bottom: 20px;
    font-size: 16px;
  }
  .category img {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    margin-right: 5px;
  }
}
.col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 20px;
  color: #fff;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
@media screen and (max-width: 820px) {
  .col3 {
    gap: 10px;
  }
}

.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 35px;
  color: #fff;
}
@media screen and (max-width: 820px) {
  .col2 {
    gap: 20px;
  }
}
.col2.category_wrap {
  margin-bottom: 46px;
  padding-bottom: 15px;
  margin-bottom: 25px;
  display: none;
}
.col2.category_wrap.active{
  display: grid;
}
.col2.category_wrap .ph_cover_inner {
  -webkit-box-shadow: 3px 3px 13px #346A83;
          box-shadow: 3px 3px 13px #346A83;
}
.col2 a {
  display: block;
  width: calc(100% - 16px);
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .col2 a {
    width: calc(100% - 8px);
  }
}
.col2 .ph_cover {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .col2 .ph_cover {
    margin-bottom: 5px;
  }
}
.col2 .ph_cover_inner {
  padding-top: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 3px 3px 13px #054777;
          box-shadow: 3px 3px 13px #054777;
}
.col2 .ph_cover img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* top_about */
#top_about {
  padding: 40px 0 80px;
  background: url(../img/top/about_bg.svg) no-repeat center 30px/100%, #fff;
}
@media screen and (max-width: 820px) {
  #top_about {
    background-position: center 35px;
    background-size: 115%;
    padding: 30px 0 80px;
  }
}
#top_about .contents_ttl {
  margin-bottom: 50px;
  color: #BF934F;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  #top_about .contents_ttl {
    margin-bottom: 40px;
  }
}
#top_about .wrap {
  display: grid;
  grid-template-columns: 55% 45%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}
#top_about .wrap .about_txt {
  text-align: center;
}
@media screen and (max-width: 820px) {
  #top_about .wrap {
    margin-bottom: 55px;
  }
  #top_about .wrap .about_txt img {
    max-width: 39px;
    width: 20%;
  }
}
#top_about .img {
  position: relative;
}
#top_about .img p {
  border: 1px solid #BF934F;
  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;
  background: rgba(255, 255, 255, 0.9);
  min-width: 148px;
  min-height: 62px;
  padding: 0 25px;
  color: #BF934F;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  bottom: -20px;
}
@media screen and (max-width: 820px) {
  #top_about .img p {
    min-width: 100px;
    min-height: 43px;
    padding: 0 20px;
    font-size: 12px;
  }
}
#top_about .about01 p {
  border-left: none;
  border-radius: 0 10px 10px 0;
  left: 0;
}
#top_about .about02 {
  width: 65%;
  margin-left: auto;
  margin-bottom: 80px;
}
#top_about .about02 p {
  border-right: none;
  border-radius: 10px 0 0 10px;
  right: 0;
}
@media screen and (max-width: 820px) {
  #top_about .about02 {
    margin-bottom: 55px;
  }
}
#top_about .img_wrap {
  margin-bottom: 76px;
}
@media screen and (max-width: 820px) {
  #top_about .img_wrap {
    margin-bottom: 60px;
  }
}
#top_about .img_wrap p {
  border-left: none;
  border-radius: 0 10px 10px 0;
  left: 0;
}
#top_about .txt_area {
  margin-bottom: 80px;
  position: relative;
  background: url(../img/top/about_txt_area.svg) no-repeat calc(100% + 50px) -20px/auto;
}
@media screen and (max-width: 820px) {
  #top_about .txt_area {
    margin-bottom: 60px;
    background-size: 166px;
    background-position: calc(100% + 80px) top;
  }
}
#top_about .txt_area p {
  text-align: center;
}
#top_about .txt_area .ttl {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #top_about .txt_area .ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
#top_about .txt_area .txt {
  letter-spacing: 0.05em;
  line-height: 2.25;
}
#top_about .map {
  position: relative;
  padding-bottom: 51.55%;
  margin-bottom: 30px;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  #top_about .map {
    padding-bottom: 70%;
    margin-bottom: 25px;
  }
}
#top_about .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#top_about .top_access .logo {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #top_about .top_access .logo {
    margin-bottom: 20px;
  }
  #top_about .top_access .logo img {
    width: 70px;
  }
}
#top_about .top_access p {
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
}
#top_about .btn {
  margin-top: 45px;
}
@media screen and (max-width: 820px) {
  #top_about .btn {
    margin-top: 20px;
  }
}

.loopSlide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.loopSlide img {
  width: 127%;
  min-width: 127%;
  max-width: 100vw;
}
@media screen and (max-width: 820px) {
  .loopSlide img {
    min-width: 585px;
  }
}
.loopSlide img:first-child {
  -webkit-animation: slide1 40s -20s linear infinite;
          animation: slide1 40s -20s linear infinite;
}
.loopSlide img:last-child {
  -webkit-animation: slide2 40s linear infinite;
          animation: slide2 40s linear infinite;
}

@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
/* ===============================================
　　#information お知らせ
=============================================== */
#information .subject {
  background: url(../img/bg_information.svg) no-repeat right top/auto;
}
@media screen and (max-width: 820px) {
  #information .subject {
    background-position: calc(100% + 30px) top;
    background-size: 130px;
  }
}
#information .item {
  border-top: 1px solid #F7F0DF;
  padding: 30px 0 45px;
}
@media screen and (max-width: 820px) {
  #information .item {
    padding: 25px 0 30px;
  }
}
#information .item:last-of-type {
  padding-bottom: 0;
}
#information .item .ph_cover {
  margin-bottom: 28px;
}
@media screen and (max-width: 820px) {
  #information .item .ph_cover {
    margin-bottom: 20px;
  }
}
#information .item time {
  display: block;
  margin-bottom: 10px;
  color: #BF934F;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  font-weight: normal;
}
@media screen and (max-width: 820px) {
  #information .item time {
    margin-bottom: 3px;
    font-size: 12px;
  }
}
#information .item .ttl {
  margin-bottom: 15px;
  width: 100%;
}
@media screen and (max-width: 820px) {
  #information .item .ttl {
    margin-bottom: 10px;
  }
}

/* ===============================================
　　#event イベント
=============================================== */
#event .subject {
  background: url(../img/bg_event.svg) no-repeat left top/auto;
}
@media screen and (max-width: 820px) {
  #event .subject {
    background-size: 127px;
  }
}
#event .list_col2 li .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#event .list_col2 li .ttl .txt {
  width: 80%;
}
#event .list_col2 li .ttl .img {
  margin-left: 10px;
  width: 20%;
}
#event .item.bdr_btm .ph_cover{
  margin-bottom: 50px;
  width: 80%;
}
#event .item .ph_cover{
  margin: 20px auto;
}
#event .item .ph_cover.no_shadow .ph_cover_inner{
  padding-top: 0;
  box-shadow: none;
  -webkit-box-shadow:none;
}
#event .item .ph_cover.no_shadow .ph_cover_inner span{
  position: relative;
}
.other_event {
  padding-top: 70px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .other_event {
    padding-top: 50px;
  }
}
.other_event::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#FDF8EA), to(#fff));
  background: linear-gradient(to bottom, #FDF8EA, #fff);
  width: 50vw;
  height: calc(100% + 130px - 210px);
  position: absolute;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  top: 160px;
}
@media screen and (max-width: 820px) {
  .other_event::before {
    width: 100vw;
    height: calc(100% + 140px - 170px);
  }
}
.other_event h2, .other_event .list_col2 {
  position: relative;
  z-index: 1;
}
.other_event h2 {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 820px) {
  .other_event h2 {
    margin-bottom: 25px;
    font-size: 18px;
  }
}
.other_event .back_btn {
  margin-top: 35px;
}
@media screen and (max-width: 820px) {
  .other_event .back_btn {
    margin-top: 25px;
  }
}

.pager {
  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;
  gap: 0 13px;
  margin-top: 70px;
}
@media screen and (max-width: 820px) {
  .pager {
    margin-top: 43px;
  }
}
.pager > div {
  position: relative;
}
.pager > div a {
  width: 30px;
  height: 30px;
}
.pager > div a::before {
  display: block;
  content: "";
  background: url(../img/pager_arrow.svg) no-repeat center/contain;
  width: 9px;
  height: 17px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.pager > div.next a::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.pager ol {
  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;
  gap: 0 13px;
}
.pager ol li {
  border: 1px solid #003462;
  border-radius: 50%;
  color: #003462;
  position: relative;
}
.pager ol li a {
  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;
  width: 33px;
  height: 33px;
  text-align: center;
  font-family: "Outfit", sans-serif;
}
.pager ol li a:hover {
  opacity: 1;
}
.pager ol li.now, .pager ol li:hover {
  background: #003462;
  color: #fff;
}

/* ===============================================
　　#shopguide イベント
=============================================== */
#shopguide .subject {
  background: url(../img/bg_shopguide.svg) no-repeat right top/auto;
}
@media screen and (max-width: 820px) {
  #shopguide .subject {
    background-position: calc(100% + 30px) top;
    background-size: 130px;
  }
}
#shopguide .notice {
  margin: 0 20px 15px;
  border: 1px solid #BF934F;
}
#shopguide .notice .txt {
  text-align: center;
  color: #BF934F;
  font-size: 19px;
  padding: 4px 0;
}
#shopguide .list_col2 li {position: relative;}
#shopguide .list_col2 li .b_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#shopguide .list_col2 li .b_txt .txt {
  width: 80%;
}
#event .list_col2 li .icon_fav,
#shopguide .list_col2 li .icon_fav {
  width: 20%;
  margin-left: 10px;
}
#shopguide .list_col2.f_number li .b_txt {
  position: relative;
}
#shopguide .list_col2.f_number li .b_txt .txt {
  width: 100%;
}
/* #event .list_col2 li .icon_fav,
#shopguide .list_col2 li .icon_fav,
#shopguide .list_col2.f_number li .icon_fav {
  width: 22px;
  position: absolute;
  top: 242px;
  right: 0;
  z-index: 2000;
} */
#favorite .favorite_btn,
#event .favorite_btn,
#shopguide .favorite_btn,
#shopguide .list_col2.f_number li .favorite_btn{
  width: 34px;
  height: 34px;
  right: -10px;
  bottom: -10px;
  position: absolute;
  z-index: 2;
}
#favorite .favorite_btn .check-box,
#event .favorite_btn .check-box,
#shopguide .favorite_btn .check-box,
#shopguide .list_col2.f_number li .favorite_btn .check-box{
  display: block;
  height: auto;
}
#favorite .favorite_btn .check-box input,
#event .favorite_btn .check-box input,
#shopguide .favorite_btn .check-box input,
#shopguide .list_col2.f_number li .favorite_btn .check-box input{
  display: none;
}
#favorite .favorite_btn .check-box input + .check-text,
#event .favorite_btn .check-box input + .check-text,
#shopguide .favorite_btn .check-box input + .check-text,
#shopguide .list_col2.f_number li .favorite_btn .check-box input + .check-text{
  width: 34px;
  height: 34px;
  position: relative;
  font-size: 0;
  cursor: pointer;
  display: block;
}
#event .fav_lrg .favorite_btn .check-box input + .check-text,
#shopguide .shop_slide .favorite_btn .check-box input + .check-text{
    width: 52px;
    height: 52px;
}
#favorite .favorite_btn .check-box input + .check-text::before,
#event .favorite_btn .check-box input + .check-text::before,
#shopguide .favorite_btn .check-box input + .check-text::before,
#shopguide .list_col2.f_number li .favorite_btn .check-box input + .check-text::before{
    background-image: url(../img/btn_favorite_g.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    position: absolute;
    width: 34px;
    height: 34px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 50%;
}
#shopguide .shop_slide .favorite_btn .check-box input + .check-text::before,

#shopguide .shop_slide .favorite_btn .check-box input:checked + .check-text::before,
#event .fav_lrg .favorite_btn .check-box input + .check-text::before{
    width: 52px;
    height: 52px;
}
#favorite .favorite_btn .check-box input:checked + .check-text::before,
#event .favorite_btn .check-box input:checked + .check-text::before,
#shopguide .favorite_btn .check-box input:checked + .check-text::before,
#shopguide .list_col2.f_number li .favorite_btn .check-box input:checked + .check-text::before{
  background-image: url(../img/btn_favorite.png);
}
#favorite .favorite_btn .check-box input:checked + .check-text::after,
#event .favorite_btn .check-box input:checked + .check-text::after,
#shopguide .favorite_btn .check-box input:checked + .check-text::after,
#shopguide .list_col2.f_number li .favorite_btn .check-box input:checked + .check-text::after{
  content: "";
  position: absolute;
  border: 1px solid #BF934F;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  opacity: 1;
  -webkit-animation: 1s circleanime2 forwards;
  animation: 1s circleanime2 forwards;
}
#shopguide .shop_slide .favorite_btn .check-box input:checked + .check-text::after,
#event .fav_lrg .favorite_btn .check-box input:checked + .check-text::after{
  width: 52px;
  height: 52px;
}
@keyframes circleanime2 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
}
100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
}
}

#shopguide .floor_map {
  margin-bottom: 10px;
  border: 1.5px solid #EDF2F7;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

#draggable {
  padding: 20px 20px 65px;
  position: relative;
}
#draggable img{
  image-rendering: auto;
}
#draggable svg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px;
}
#draggable svg a:hover {
  opacity: 0.4;
}
#draggable svg a path, #draggable svg a rect, #draggable svg a polyline, #draggable svg a polygon {
  pointer-events: all;
}
#draggable svg path, #draggable svg rect, #draggable svg polyline, #draggable svg polygon {
  pointer-events: none;
}

.zoom_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .zoom_btn {
    display: none;
    right: 15px;
    bottom: 15px;
  }
}

#zoom-out, #zoom-in {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  background: #003462;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
}

#zoom-in {
  font-size: 20px;
}

/* パーツ */
.tab_layout, .floor_num li a, .cat_tab .tab-label2, .area_tab li a, .tab_wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  cursor: pointer;
}

/* タブ */
.tab_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 10px;
  margin-bottom: 30px;
}
.tab_wrap li {
  border: 1px solid #003462;
  border-radius: 6px;
  color: #003462;
  position: relative;
}
.tab_wrap li.active, .tab_wrap li:hover {
  background: #003462;
  color: #fff;
}
.tab_wrap li.active::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #003462 transparent transparent transparent;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
  left: 50%;
}
.tab_wrap a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
}
.tab_wrap a:hover {
  opacity: 1;
}

.floormap {
  margin: 30px auto;
}
.floormap svg {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.area_tab {
  border-bottom: 2px solid #003462;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  width: 100%;
}
.area_tab li {
  background: #fff;
  width: 100%;
}
.area_tab li a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  color: #003462;
  text-align: center;
  line-height: 1.2;
}
.area_tab li a:hover {
  opacity: 1;
}
.area_tab li.active, .area_tab li:hover {
  background: #EDF2F7;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.area_tab li span {
  text-align: center;
  line-height: 1.3;
}
.area_tab li small {
  display: block;
  text-align: center;
  font-size: 12px;
}
.area_tab li.disable:hover {
  background: #fff;
}
.area_tab li.disable a {
  cursor: inherit;
}

.cat_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
.cat_tab .tab-label2 {
  width: 33.3333333333%;
  background: #fff;
  border-bottom: 2px solid #003462;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  color: #003462;
}

.floor_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 14px;
  margin-bottom: 18px;
}
.floor_num li a {
  background: #fff;
  border: 1px solid #BF934F;
  color: #BF934F;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
}
.floor_num li a:hover {
  background: #BF934F;
  color: #fff;
  opacity: 1;
}
.floor_num li.active a {
  background: #BF934F;
  color: #fff;
  font-weight: 600;
}

/* 詳細ページ */
.swiper.shop_slide {
  margin: 0 1%;
  padding: 0 3% 60px;
}
#shopguide .swiper.shop_slide .favorite_btn{
  bottom: 55px;
  right: 30px;
}
.swiper.shop_slide .swiper-slide {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.swiper.shop_slide .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.swiper.shop_slide .swiper-horizontal > .swiper-pagination-bullets, .swiper.shop_slide .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper.shop_slide .swiper-pagination-custom, .swiper.shop_slide .swiper-pagination-fraction {
  bottom: 20px;
}
.swiper.shop_slide .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper.shop_slide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}
.swiper.shop_slide .swiper-pagination-bullet {
  border: 1px solid #AFAFAF;
  background: #fff;
  width: 10px;
  height: 10px;
  opacity: 1;
}
@media screen and (max-width: 820px) {
  .swiper.shop_slide .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.swiper.shop_slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #AFAFAF;
}

.shop_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 15px;
  margin-bottom: 18px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop_detail .icon_fav {
  position: absolute;
  top: -45px;
  right: 10px;
  z-index: 1;
  width: 35px;
}
@media screen and (max-width: 820px) {
  .shop_detail .icon_fav {
    top: -43px;
  }
}
.shop_detail .shop_logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  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;
  border: 1px solid #EDF2F7;
  width: 100px;
  height: 100px;
  text-align: center;
}
.shop_detail .shop_logo img {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
.shop_detail .b_txt {
  font-size: 18px;
}
@media screen and (max-width: 820px) {
  .shop_detail .b_txt {
    font-size: 16px;
  }
}

.tel_area {
  background: #F7F0DF;
  border-radius: 10px;
  margin-bottom: 15px;
  height: 58px;
  text-align: center;
  color: #BF934F;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  position: relative;
  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;
}
.tel_area::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_phone.svg) no-repeat center/contain;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 820px) {
  .tel_area {
    height: 45px;
    font-size: 18px;
  }
  .tel_area::before {
    display: none;
  }
  .tel_area a {
    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;
    text-decoration: underline;
    height: 68px;
  }
  .tel_area a:hover {
    opacity: 1;
  }
  .tel_area a::before {
    content: "";
    display: inline-block;
    background: url(../img/icon_phone.svg) no-repeat center/contain;
    width: 26px;
    height: 26px;
    margin-right: 10px;
    vertical-align: middle;
  }
}

.link_area {
  background: #EDEEF0;
  border-radius: 10px;
  padding: 15px 15px;
  margin-bottom: 24px;
  width: 100%;
  color: #003462;
  text-align: center;
}
.link_area .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 25px;
}
.link_area .sns_list img {
  width: 37px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
@media screen and (max-width: 820px) {
  .link_area .sns_list img {
    width: 27px;
  }
}

.txt_description {
  line-height: 2;
  margin: 35px auto;
}
.txt_description a {
  color: #0000FF;
  text-decoration: underline;
}

.open_benifit .txt_ttl{
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}
.open_benifit .bdr_shadow{
  border: 1px solid #D9D9D9;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 60px;
}
.open_benifit .txt_ttl .sml{
  font-size: 14px;
  font-weight: 400;
}
.open_benifit .benifit_txt{
  padding: 20px;
}
.open_benifit .benifit_txt .lrg.bold{
  font-size: 19px;
  color: #BF934F;
  margin-bottom: 15px;
}
.shop_data {
  border-top: 1px solid #BF934F;
  margin-bottom: 40px;
  width: 100%;
}
.shop_data th, .shop_data td {
  border-bottom: 1px solid #BF934F;
  padding: 20px 0;
  word-break: break-all;
  vertical-align: middle;
}
.shop_data th {
  width: 9em;
  color: #BF934F;
  font-weight: 500;
}
.shop_data th:last-of-type {
  vertical-align: top;
}
.shop_data td .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.shop_data td .sns_list li {
  margin-right: 15px;
}
.shop_data td .sns_list li:last-of-type {
  margin-right: 0;
}
.shop_data td .bg_txt {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  padding: 4px 0;
  background-color: #003462;
}
.shop_data td .btn_detail {
  color: #BF934F;
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
}
.shop_data td .btn_detail a {
  height: 30px;
}
.shop_data .price p {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 0 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop_data .price p span {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  text-align: center;
  line-height: 1;
}
.shop_data .price p span::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-top: 2px;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent #BF934F;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: -10px;
}

.tokten_wrap {
  margin-bottom: 40px;
}
.tokten_title {
  width: 360px;
  max-width: 80%;
  margin: 0 auto 10px;
}
.tokten_title_green {
  color: #4FA46F;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin: 10px 0px 12px;
  text-align: center;
}
.tokten_title_green_kome {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}
.tokten_title_green_small {
  font-size: 18px;
}
.tokten_around:not(:last-child) {
  border-bottom: 2px dashed #E0E0E0;
  padding-bottom: 8px;
}
.tokten_voice {
  text-align: center;
  margin-top: 14.7px;
  margin-bottom: 9.7px;
}
.tokten_voice p {
  display: inline-block;
  position: relative;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0px 28px;
  text-align: center;
}
.tokten_voice p span {
  font-size: 20px;
  font-weight: 700;
}
.tokten_voice p::before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
  border-radius: 3px;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
.tokten_voice p::after {
  position: absolute;
  content: "";
  right: 0;
  top: 3px;
  width: 1px;
  height: 100%;
  background: #000;
  border-radius: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.tokten_voice .when_voice {
  line-height: 2;
}
.tokten_block {
  display: block;
  width: 100%;
  padding: 21px 16px;
  margin-bottom: 12px;
  border-radius: 24px;
  background-color: #CCEDD8;
  text-align: center;
  color: #000;
}
.tokten_block:first-child {
  margin-top: 25px;
}
.tokten_block_txt {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.45;
}
.tokten_block_txt_big {
  font-size: 22px;
}
.tokten_block_txt_small {
  font-size: 13px;
}
.tokten_block_txt_light {
  font-size: 13px;
  font-weight: normal;
}
.tokten_block_txt_tax {
  font-size: 12px;
  font-weight: normal;
}
.tokten_block_txt mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(154, 217, 181, 0)), color-stop(70%, rgba(154, 217, 181, 0)), color-stop(70%, rgb(154, 217, 181)), to(rgb(154, 217, 181)));
  background: linear-gradient(rgba(154, 217, 181, 0) 0, rgba(154, 217, 181, 0) 70%, rgb(154, 217, 181) 70%, rgb(154, 217, 181) 100%);
  color: inherit;
}
.tokten_block_kome {
  margin-top: 10px;
  font-size: 13px;
}

.icon_tokten_open::after {
  content: "";
  width: 80px;
  height: 22px;
  background: url(../img/shopguide/icon_tokten_open.png) no-repeat left center/contain;
  position: absolute;
  left: -6px;
  bottom: 17px;
}

#shopguide.detail .floor_map {
  border: 1.5px solid #EDF2F7;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 33px;
  position: relative;
  overflow: hidden;
}
#shopguide.detail .floor_map svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  height: auto;
}
#shopguide.detail .back_btn::before, #shopguide.detail .back_btn::after {
  left: 15px;
}
@media screen and (max-width: 820px) {
  #shopguide.detail .back_btn::before, #shopguide.detail .back_btn::after {
    left: 10px;
  }
}
#shopguide.detail .back_btn:hover::before, #shopguide.detail .back_btn:hover::after {
  left: 10px;
}
#shopguide.detail svg {
  width: 100%;
  height: auto;
}
#shopguide.detail svg a:hover {
  opacity: 0.4;
}
#shopguide.detail svg a path, #shopguide.detail svg a rect, #shopguide.detail svg a polyline, #shopguide.detail svg a polygon {
  pointer-events: all;
}
#shopguide.detail svg path, #shopguide.detail svg rect, #shopguide.detail svg polyline, #shopguide.detail svg polygon {
  pointer-events: none;
}

.pin {
  position: absolute;
  -webkit-transform: translate(-15.5px, -42.75px);
          transform: translate(-15.5px, -42.75px);
  z-index: 1;
}
.pin.floor1-1 {
  top: 30%;
  left: 25.5%;
}
.pin.floor1-2 {
  top: 24%;
  left: 62%;
}
.pin.floor1-3 {
  top: 47%;
  left: 53.5%;
}
.pin.floor1-4 {
  top: 47%;
  left: 76.5%;
}
.pin.floor1-6 {
  top: 68%;
  left: 39%;
}
.pin.floor1-5 {
  top: 83%;
  left: 30%;
}
.pin.floor2-7 {
  top: 21%;
  left: 58%;
}
.pin.floor2-8 {
  top: 38%;
  left: 58%;
}
.pin.floor2-9 {
  top: 51.5%;
  left: 48.5%;
}
.pin.floor2-10 {
  top: 72%;
  left: 41.5%;
}
.pin.floor2-11 {
  top: 82%;
  left: 21%;
}
.pin.floor3-12 {
  top: 45%;
  left: 51%;
}
/*南　*/

.pin.south.floor1-1 {
  top: 19%;
  left: 17.5%;
}
.pin.south.floor1-2 {
  top: 32%;
  left: 17.5%;
}
.pin.south.floor1-3 {
  top: 40%;
  left: 14.5%;
}
.pin.south.floor1-4 {
  top: 39%;
  left: 23.5%;
}
.pin.south.floor1-5 {
  top: 65%;
  left: 18%;
}
.pin.south.floor1-6 {
  top: 73%;
  left: 18%;
}
.pin.south.floor1-7 {
  top: 89%;
  left: 18%;
}
.pin.south.floor1-8 {
  top: 82%;
  left: 21%;
}
.pin.south.floor1-9 {
  top: 82%;
  left: 50%;
}
.pin.south.floor1-10 {
  top: 68%;
  left: 50%;
}
.pin.south.floor2-11 {
  top: 21%;
  left: 17.5%;
}
.pin.south.floor2-12 {
  top: 37%;
  left: 17.5%;
}
.pin.south.floor2-13 {
  top: 68%;
  left: 15.5%;
}
.pin.south.floor2-14 {
  top: 78%;
  left: 17.5%;
}
.pin.south.floor2-15 {
  top: 88%;
  left: 17.5%;
}
.pin.south.floor2-16 {
  top: 90%;
  left: 46.5%;
}
.pin.south.floor2-17 {
  top: 69%;
  left: 55%;
}
.pin.south.floor2-18 {
  top: 29%;
  left: 55%;
}

/* ===============================================
　　#access アクセス
=============================================== */
#access .subject {
  background: url(../img/bg_access.svg) no-repeat left top/auto;
}
@media screen and (max-width: 820px) {
  #access .subject {
    background-size: 104px;
  }
}
#access .anchor_link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #access .anchor_link {
    margin-bottom: 15px;
  }
}
#access .anchor_link li {
  border: 1px solid #BF934F;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 820px) {
  #access .anchor_link li {
    border-radius: 6px;
  }
}
#access .anchor_link 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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 9px 0 18px;
  height: 70px;
  color: #BF934F;
  font-weight: 500;
}
#access .anchor_link li a::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(-50%) rotate(135deg);
          transform: translateX(-50%) rotate(135deg);
  position: absolute;
  left: 50%;
  bottom: 9px;
}
@media screen and (max-width: 820px) {
  #access .anchor_link li a {
    height: 60px;
    padding: 8px 0 18px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #access .anchor_link li a::after {
    width: 7px;
    height: 7px;
    bottom: 7px;
  }
}
#access .anchor_link li a img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and (max-width: 820px) {
  #access .anchor_link li a img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#access .dots_list li:not(:last-child) {
  margin-bottom: 8px;
}
#access .dots_list li.bold-color{
  font-weight: bold;
  color:#D55139;
}
#access .map {
  position: relative;
  padding-bottom: 60%;
  margin-bottom: 20px;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  #access .map {
    margin-bottom: 15px;
  }
}
#access .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#access .map_bike {
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #access .map_bike {
    margin-bottom: 15px;
  }
}
#access .addr {
  margin-bottom: 70px;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 820px) {
  #access .addr {
    margin-bottom: 45px;
  }
}

/* ===============================================
　　#service 施設・サービス
=============================================== */
#service .subject {
  background: url(../img/bg_service.svg) no-repeat right top/auto;
}
@media screen and (max-width: 820px) {
  #service .subject {
    background-size: 86px;
  }
}
#service .sect_ttl span {
  display: block;
  text-align: center;
  line-height: 1;
  margin: 4px 0 2px;
}
#service .anchor_link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}
#service .anchor_link li {
  border: 1px solid #003462;
  background: #fff;
  border-radius: 6px;
  color: #003462;
  font-size: 15px;
  line-height: 1.3;
  position: relative;
}
#service .anchor_link li::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  top: 50%;
  right: 20px;
}
@media screen and (max-width: 820px) {
  #service .anchor_link li::after {
    width: 7px;
    height: 7px;
    right: 10px;
  }
}
#service .anchor_link li.out_page::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
#service .anchor_link li:hover {
  background: #003462;
  color: #fff;
}
@media screen and (max-width: 820px) {
  #service .anchor_link li {
    font-size: 13px;
  }
}
#service .anchor_link li a {
  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;
  height: 50px;
  padding-right: 15px;
  text-align: center;
}
#service .anchor_link li a:hover {
  opacity: 1;
}
@media screen and (max-width: 820px) {
  #service .anchor_link li a {
    height: 42px;
    padding: 0 20px 0 10px;
  }
}
#service .col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 0;
}
#service .col3 figure {
  text-align: center;
  line-height: 1.3;
}
#service .col3 figure img {
  width: 65px;
}
#service .col3 figure figcaption {
  margin-top: 5px;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #service .col3 figure figcaption {
    margin-top: 5px;
    font-size: 0.7rem;
  }
}
#service .red {
  color: #D55139;
}
#service .url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #BF934F;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.5;
  gap: 0 10px;
  word-wrap: break-word;
  word-break: break-all;
}
#service .url span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #BF934F;
  width: 49px;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
#service .url a {
  text-decoration: underline;
}
#service .url a:hover {
  opacity: 1;
  text-decoration: none;
}
#service .map {
  margin-top: 10px;
  position: relative;
}
#service .map .pin{
  position: absolute;
}
#service .map .pin img{
  width: 32px;
}
#service .map .pin.first{
  top: 50%;
  left: 72%;
}
#service .map .pin.second{
  top: 65%;
  left: 76%;
}
#service .map .pin.third{
  top: 50%;
  left: 72%;
}
#service .map .pin.forth{
  top: 74%;
  left: 12.5%;
}

.pin.pin_multi_south{
  top: 79.0%;
  left: 43.6%;
}
.pin.pin_nurs_south{
  top: 87.0%;
  left: 71.5%;
}
.pin.pin_atm01_south{
  top: 23.0%;
  left: 37.5%;
}
.pin.pin_locker01_south{
  top: 17.0%;
  left: 37.5%;
}

#service .merit_list{
  margin: 20px 0 0;
}
#service .merit_list li{
  background: #F5F5F5;
  border-radius: 12px;
  padding: 15px 0 25px 120px;
  position: relative;
}
#service .merit_list li .bg_pink{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 19px;
  height: 19px;
  width: 85px;
  background: #DD7B98;
  text-align: center;
  border-radius: 100px;
  margin-bottom: 5px;
}
#service .merit_list li .merit_head {
  font-weight: 500;
  line-height: 1.4;
}
 #service .merit_list li .kome {
  font-size: 10px;
}
 #service .merit_list li:not(:last-of-type) {
  margin-bottom: 12px;
}
 #service .merit_list .merit01 {
  padding-bottom: 15px;
}
 #service .merit_list .merit01::before {
  content: "";
  background: url(../img/service/icon_merit01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 70px;
  height: 75px;
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
 #service .merit_list .merit02::before {
  content: "";
  background: url(../img/service/icon_merit02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 58px;
  height: 59px;
  position: absolute;
  left: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
 #service .merit_list .merit03::before {
  content: "";
  background: url(../img/service/icon_merit03.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 70px;
  height: 83px;
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
/* ===============================================
　　#sitemap サイトマップ
=============================================== */
#sitemap .list {
  border-top: 1px solid #E5D8C3;
  letter-spacing: 0.05em;
}
#sitemap .list > li {
  border-bottom: 1px solid #E5D8C3;
  position: relative;
}
#sitemap .list > li a {
  display: block;
}
#sitemap .list > li > a {
  padding: 10px 0 10px 20px;
}
#sitemap .list > li > a::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid #BF934F;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 19px;
  left: 0;
}
@media screen and (max-width: 820px) {
  #sitemap .list > li > a::before {
    width: 7px;
    height: 7px;
    top: 18px;
  }
}
#sitemap .list > li ul {
  padding-left: 15px;
  margin-bottom: 10px;
}
#sitemap .list > li ul li {
  color: #909090;
}
#sitemap .list > li ul li:not(:last-child) {
  margin-bottom: 3px;
}
#sitemap .list > li ul li a {
  text-indent: -1em;
  padding-left: 1em;
}
#sitemap .list > li ul li a:not(:last-child) {
  margin-bottom: 8px;
}
#sitemap .list > li ul li a::before {
  content: "・";
  color: #BF934F;
}

/* ===============================================
　　#favorite お気に入り一覧
=============================================== */
#favorite .subject {
  background: url(../img/bg_event.svg) no-repeat left top/auto;
}
@media screen and (max-width: 820px) {
  #favorite .subject {
    background-size: 127px;
  }
}
#favorite .fav_list {
  background-color: #FCF9F4;
  padding: 35px 0 40px;
}
#favorite .fav_list .fav_ttl {
  text-align: center;
  color: #313131;
  font-size: 20px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  font-style: normal;
}
#favorite .fav_list .list_col2 {
  margin-top: 27px;
}
#favorite .fav_list .list_col2.shop {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E5D8C3;
}
#favorite .fav_list .list_col2 .image {
  /* overflow: hidden; */
  position: relative;
  width: 100%;
  padding-top: 65%;
  border-radius: 3px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#favorite .fav_list .list_col2 .image .bg_wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-size: 100%;
}
#favorite .fav_list .list_col2 .name {
  margin: 10px 0 5px;
}
#favorite .fav_list .list_col2 .cat {
  color: #BF934F;
  font-size: 12px;
  font-weight: 500;
}
#favorite .fav_list .list_col2.event .img {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
}
#favorite .fav_list .list_col2 .relative {
  position: relative;
}

#favorite .fav_list .list_col2.event .img img {
  border-radius: 3px;
}
#favorite .fav_list .list_col2.event .ttl {
  font-weight: 400;
  margin: 12px 0 8px;
}
#favorite .fav_list .list_col2.event .period span {
  background-color: #BF934F;
  color: #fff;
  padding: 0 6px 2px;
  line-height: 1.5;
  font-size: 10px;
  margin-right: 4px;
}
#favorite .fav_list .list_col2.event .period time {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  color: #BF934F;
}
#favorite .pickup {
  margin: 50px 0 0;
}
#favorite .pickup .fav_ttl {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #313131;
  font-family: "Rubik", sans-serif;
  font-style: normal;
  letter-spacing: 0.1em;
}
#favorite .pickup .fav_ttl small {
  font-size: 10px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #505050;
}
#favorite .pickup .slider {
  margin-top: 27px;
}
#favorite .pickup .slider .slider_item {
  padding: 0 7px;
}
#favorite .pickup .slider .slider_item img {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 3px;
}
#favorite .pickup .slider .slider_item .ttl{
  margin: 12px 0 0;
}
#favorite .pickup .slider .slick-next {
  right: -5px;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border: 1px solid #081F05;
  border-radius: 50%;
  z-index: 1;
}
#favorite .pickup .slider .slick-next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
          transform: translate(-75%, -50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-top: 1.2px solid #081F05;
  border-right: 1.2px solid #081F05;
}
#favorite .pickup .slider .slick-prev {
  left: -5px;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border: 1px solid #081F05;
  border-radius: 50%;
  z-index: 1;
}
#favorite .pickup .slider .slick-prev:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-bottom: 1.2px solid #081F05;
  border-left: 1.2px solid #081F05;
}
#favorite .text {
  padding: 0 20px 25px;
}
#favorite .add_fav {
  padding: 0 20px 25px;
  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;
}
#favorite .add_fav img {
  width: 46px;
  height: 46px;
}
#favorite .add_fav .add_fav_txt {
  color: #BF934F;
  font-weight: bold;
  margin-left: 3px;
}

/* ===============================================
　　#policy サイトポリシー
=============================================== */
.btm_line {
  border-bottom: 1px solid #E5D8C3;
  padding-bottom: 9px;
  margin-bottom: 9px;
}

.notes {
  font-size: 14px;
}
@media screen and (max-width: 820px) {
  .notes {
    font-size: 12px;
  }
}

.box_contact {
  border: 1px solid #E5D8C3;
  border-radius: 10px;
  padding: 12px 20px 20px;
  margin-top: 60px;
}
@media screen and (max-width: 820px) {
  .box_contact {
    padding: 12px 15px 16px;
    margin-top: 40px;
  }
}
.box_contact dt {
  background: url(../img/icon_mail.svg) no-repeat left 8px/auto;
  border-bottom: 1px solid #E5D8C3;
  padding-left: 32px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: #BF934F;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .box_contact dt {
    background-position: left 5px;
  }
}

/* ===============================================
　　#contact よくある質問 / お問い合わせ
=============================================== */
#contact .accordion {
  padding: 0 20px;
}
@media screen and (max-width: 820px) {
  #contact .accordion {
    padding: 0 15px;
  }
}
#contact .accordion dt, #contact .accordion dd p {
  padding-left: 35px;
  text-indent: -35px;
  position: relative;
}
#contact .accordion dt::before, #contact .accordion dd p::before {
  color: #BF934F;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  line-height: 1;
  vertical-align: top;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  #contact .accordion dt, #contact .accordion dd p {
    padding-left: 30px;
    text-indent: -30px;
  }
  #contact .accordion dt::before, #contact .accordion dd p::before {
    font-size: 26px;
  }
}
#contact .accordion dt::before {
  content: "Q";
  padding-right: 10px;
}
#contact .accordion dd p::before {
  content: "A";
  padding-right: 15px;
}

#inquiry h3 {
  border-bottom: 1px solid #E5D8C3;
  padding-bottom: 8px;
  margin-bottom: 10px;
  font-weight: bold;
}

.border_box {
  border: 1px solid #E5D8C3;
  border-radius: 10px;
  padding: 20px 20px 30px;
}
.border_box:not(:last-of-type) {
  margin-bottom: 10px;
}
.border_box_no {
  border: none;
  padding: 0 21px;
}
.border_box .btn_detail {
  max-width: 270px;
  line-height: 1.2;
}
@media screen and (max-width: 820px) {
  .border_box .btn_detail {
    max-width: 220px;
  }
  .border_box .btn_detail a {
    height: 48px;
  }
}

/* ===============================================
　　フッター
=============================================== */
.pagetop {
  background: #fff;
  border: 1px solid #003462;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  padding-top: 28px;
  color: #003462;
  font-size: 12px;
  font-family: "Outfit", sans-serif;
  text-align: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .pagetop {
    bottom: 15px;
    right: 15px;
  }
}
.pagetop::before, .pagetop::after {
  content: "";
  position: absolute;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 10px;
  left: 50%;
}
.pagetop::before {
  border-left: 1px solid #003462;
  height: 17px;
}
.pagetop::after {
  display: inline-block;
  color: #003462;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
}

footer {
  background-image: linear-gradient(50deg, #C49750, #DEBF79);
  padding: 70px 18px 15px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 820px) {
  footer {
    padding: 55px 18px 96px;
  }
}
footer::before {
  content: "";
  background-image: url(../img/bg02.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  width: 100%;
  height: 44px;
  position: absolute;
  top: -1px;
  left: 0;
}
@media screen and (max-width: 820px) {
  footer::before {
    background-size: 100% 100%;
    height: 25px;
  }
}
footer #footer_inner {
  max-width: 485px;
  margin: 0 auto;
}
footer #footer_inner > p {
  margin-bottom: 15px;
  font-weight: 500;
  text-align: center;
}
footer #footer_inner .f_nav {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 363px;
  margin: 0 auto;
  gap: 15px 5px;
  font-size: 14px;
}
@media screen and (max-width: 820px) {
  footer #footer_inner .f_nav {
    max-width: 300px;
    gap: 10px 5px;
    font-size: 12px;
  }
}
footer #footer_inner .box {
  background: #fff;
  border-radius: 16px;
  padding: 35px 20px;
  margin-bottom: 35px;
}
@media screen and (max-width: 820px) {
  footer #footer_inner .box {
    padding: 25px 10px;
    margin-bottom: 20px;
  }
}
footer #footer_inner .box ul {
  margin-bottom: 30px;
  color: #BF934F;
}
@media screen and (max-width: 820px) {
  footer #footer_inner .box ul {
    margin-bottom: 20px;
    font-size: 13px;
  }
}
footer #footer_inner .box .mall_logo {
  max-width: 363px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  footer #footer_inner .box .mall_logo {
    max-width: 262px;
  }
}
footer #footer_inner #copyright {
  margin: 60px 0 0;
  font-size: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  letter-spacing: 0;
}
@media screen and (max-width: 820px) {
  footer #footer_inner #copyright {
    margin-top: 30px;
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */
