@charset "UTF-8";

/*======================================================================
 * サイト全体共通レイアウト
======================================================================*/
body {
  overflow-x: hidden;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.parent-company {
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  transition: all .3s;
}
@media screen and (max-width: 768px) {
  .parent-company {
    height: 40px;
    padding: 0 10px;
  }
}
.parent-company.is_off {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.parent-company .parent-company__name {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .parent-company .parent-company__name {
    font-size: 12px;
  }
}
.parent-company .parent-company__link {
  width: 150px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .parent-company .parent-company__link {
    width: 100px;
  }
}
.parent-company .parent-company__image {
  display: block;
}


/*------------------------------------------------------------
 *23年3月1日 追記 お知らせバー
------------------------------------------------------------*/


.btn_container {
  color: #fff;
  text-align: center;
  cursor: pointer;
}


.close_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  background: url("../images/common/icon-close-red.svg") no-repeat center/12px auto;
}

.notice_box {
  background: #FAF4E5;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 30px 15px 10px;
}

.notice_title {
  background: #BC0000;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  margin: 0 2rem 0 0;
  padding: 0.5rem 1rem;
}

.notice_title::before {
  content: "";
  display: inline-block;
  width: 1.17em;
  height: 1.17em;
  background: url("../images/common/icon-ukiwa-white.svg") no-repeat center/contain;
  margin-right: 6px;
}

.notice_list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 30px;
  position: relative;
}

.notice_list::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../images/common/icon-attention.svg) no-repeat center center / 100% auto content-box;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.notice_list:not(:has(> li:nth-child(2)))::before {
  top: 0;
  transform: translateY(0);
}

.notice_item {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.33;
}

.notice_item:not(:first-child) {
  margin-top: 4px;
}

.notice_item p {
  font-weight: 500;
  margin: 0;
  color: #222;
}

.notice_item a {
  color: inherit;
  text-decoration: none;
}

.notice_date {
  color: #003A8F;
  margin-right: 1.8rem;
  padding-left: calc(1em + 6px);
  font-weight: bold;
  background: url("../images/common/btn-arrow.svg") no-repeat center left/1em auto;
}

.action_close {
  position: relative;
}

.action_close .btn_container {
  position: absolute;
  right: 5px;
  top: 5px;
}

.add_control .action_close #close:checked~.btn_container {
  display: none;
}

.add_control .action_close #close:checked~.notice_box {
  display: none;
}

.checkbox {
  display: none;
}

.g-body {}

.g-body.one {}


@media screen and (max-width: 768px) {

  .btn_container {
    color: #fff;
    text-align: center;
    cursor: pointer;
  }

  .close_btn {
    display: block;
    position: relative;
    bottom: 12px;
  }

  .notice_box {
    padding: 8px 30px 8px 8px;
    justify-content: flex-start;
  }

  .notice_title {
    font-size: 1.4rem;
    padding: 0.3rem 1rem;
    margin: 0;
  }

  .notice_title::before {
    margin-right: 4px;
  }

  .notice_list {
    width: 100%;
    padding-left: 25px;
  }

  /* .notice_list::before {
    top: 0;
    transform: translateY(0);
  } */

  .notice_item {
    /* font-size: 1.1rem; */
    font-size: 1.4rem;
  }

  .notice_item p {}

  .notice_date {
    margin-right: 1rem;
  }

  .action_close .btn_container {
    position: absolute;
    right: 0;
    top: 1em;
  }

  .g-body {}

  .g-body.one {}

}

/*------------------------------------------------------------
 * container
------------------------------------------------------------*/
.g-container {
  /* padding-top: 87px; */
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .g-container {
    /* padding-top: 50px; */
    padding-bottom: 60px;
  }
}

/*------------------------------------------------------------
 * swiper共通スタイル
------------------------------------------------------------*/
.slide-button-prev,
.slide-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.slide-button-prev {
  left: 0;
}

.slide-button-next {
  right: 0;
}

.slide-button-prev:hover,
.slide-button-next:hover {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {

  .slide-button-prev,
  .slide-button-next {
    display: none;
  }
}

.slide-button-prev::before,
.slide-button-next::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.slide-button-prev::before {
  background-image: url("../images/common/slide-arrow-prev.svg");
}

.slide-button-next::before {
  background-image: url("../images/common/slide-arrow-next.svg");
}

.slide-button-prev.swiper-button-disabled,
.slide-button-next.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}


@media screen and (max-width: 768px) {
  .slide-scrollbar {
    margin-top: 2.5rem;
    background-color: #F4F4F4;/*背景色によって変更*/
    border-radius: 5px;
    width: calc(100% - 5.5vw - 0.5vw);
  }
  .-bg-blue .slide-scrollbar,
  .slide-scrollbar.-bg-white {
    background-color: #fff;
  }
}

.slide-scrollbar .swiper-scrollbar-drag {
  height: 5px;
  background-color: #003A8F;
  border-radius: 5px;
}

.slide-scrollbar.swiper-scrollbar-disabled {
  display: none;
}

/*------------------------------------------------------------
 * header
------------------------------------------------------------*/
.g-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0;
  border-bottom: 3px solid #003A8F;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  z-index: 1001;
}

@media screen and (max-width: 768px) {
  .g-header {
    /* position: relative; */
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding-left: 40px;
  /*  */
  position: relative;
  border-top: 1px solid #003A8F;
}

@media screen and (max-width: 768px) {
  .header-inner {
    padding: 0;
  }
}

.header-inner .site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 10%;
  max-width: 135px;
}

.header-inner .site-logo a {
  display: block;
  width: 100%;
}

.header-inner .site-logo img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1250px) {
  .header-inner .site-logo {
    width: 16vw;
  }
}

@media screen and (max-width: 768px) {
  .header-inner .site-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    bottom: auto;
    left: 1rem;
  }
}

.header-inner a {
  text-decoration: none;
}

.header-inner ul {
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .header-inner .right-content {
    width: 100%;
  }
}

.header-inner .upper-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 36px;
  padding-right: 186px;
}

@media screen and (max-width: 768px) {
  .header-inner .upper-menu {
    display: none;
  }
}

.header-inner .upper-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 28px 0 0;
}

@media screen and (max-width: 768px) {
  .header-inner .upper-menu ul {
    margin: 0;
    padding: 0 5.5vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #707070;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
  }
}

.header-inner .upper-menu ul li {
  font-size: 1.4rem;
  margin-right: 2em;
}

@media screen and (max-width: 768px) {
  .header-inner .upper-menu ul li {
    font-size: 1rem;
    margin-right: 2%;
  }
}

.header-inner .upper-menu ul li:last-child {
  margin-right: 0;
}

.header-inner .upper-menu ul li a {
  color: inherit;
}

.header-inner .my-page,
.header-inner .sns,
.header-inner .language,
.header-inner .access,
.header-inner .event-space,
.header-inner .time,
.header-inner .pc_access {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.header-inner .my-page a,
.header-inner .sns a,
.header-inner .language a,
.header-inner .access a,
.header-inner .event-space a,
.header-inner .time a,
.header-inner .pc_access a {
  display: block;
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .header-inner .my-page a,
  .header-inner .sns a,
  .header-inner .language a,
  .header-inner .access a,
  .header-inner .event-space a,
  .header-inner .time a,
  .header-inner .pc_access a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 100px;
    height: 36px;
  }
  .header-inner .sns a {
    min-width: 86px;
  }
}

@media screen and (max-width: 768px) {
  .header-inner .my-page,
  .header-inner .sns,
  .header-inner .language,
  .header-inner .access {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 50px;
    margin: 0;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1rem;
  }
  .header-inner .sns,
  .header-inner .language {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 768px) {
  .header-inner .my-page span,
  .header-inner .sns span,
  .header-inner .language span,
  .header-inner .access span {
    padding-left: 0;
    display: inline-block;
  }
}

.header-inner .my-page::before,
.header-inner .sns::before,
.header-inner .language::before,
.header-inner .access::before,
.header-inner .event-space::before,
.header-inner .time::before,
.header-inner .pc_access::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 20px;
  margin: auto;
  background: #003A8F;
}

@media screen and (max-width: 768px) {
  .header-inner .my-page::before,
  .header-inner .sns::before,
  .header-inner .language::before,
  .header-inner .access::before {
    height: 100%;
  }
}

.header-inner .event-space a {
  padding: 0 13px 0 36px;
  background: url("../images/common/icon-space-black.svg") no-repeat 14px center/ auto 18px;
}
.header-inner .time a {
  padding: 0 0 0 calc(36px + 4px);
  background: url("../images/common/icon-time-black.svg") no-repeat 14px center/ auto 20px;
}
.header-inner .pc_access a {
  padding: 0 0 0 calc(40px + 4px);
  background: url("../images/common/icon-car-black.svg") no-repeat 14px center/ auto 16px;
}

/* language */
.header-inner .language {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header-inner .language {
    position: relative;
  }

}
.header-inner .language>a {
  padding: 0 0 0 40px;
  background: url("../images/common/icon-language-black.svg") no-repeat 14px center/ auto 18px;
}

@media screen and (max-width: 768px) {
  .header-inner .language>a {
    width: 100%;
    height: 100%;
    padding: 29px 0 0;
    text-align: center;
    background-position: 50% 9px;
  }
}

.header-inner .language .language-list {
  display: none;
  position: absolute;
  top: 36px;
  right: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -99;
  background: #ffffff;
  border: 1px solid #D6D6D6;
}

@media screen and (max-width: 768px) {
  .header-inner .language .language-list {
    top: 50px;
  }
}

.header-inner .language .language-list.-open {
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 4;
  right: -10px;
}

@media screen and (max-width: 768px) {
  .header-inner .language .language-list.-open {
    right: 0;
  }
}

.header-inner .language .language-list li {
  display: block;
  border-top: 1px solid #D6D6D6;
  margin: 0;
  font-size: 1.2rem;
  padding: 4px;
  color: #858585;
}

.header-inner .language .language-list li:first-child {
  border-top: none;
}

.header-inner .language .language-list li a {
  display: block;
  width: 100%;
  height: auto;
  padding: 4px;
  color: #858585;
}

/* sns */
.header-inner .sns {
  position: absolute;
  top: 0;
  right: 100px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header-inner .sns {
    position: relative;
    right: inherit;
  }

}
.header-inner .sns>a {
  padding: 0 0 0 48px;
  background: url("../images/common/icon-sns.svg") no-repeat 18px center/ 13px;
}

@media screen and (max-width: 768px) {
  .header-inner .sns>a {
    width: 100%;
    height: 100%;
    padding: 29px 0 0;
    text-align: center;
    background-position: 50% 9px;
    background-size: 12px;
  }
}

.header-inner .sns .sns-list {
  display: none;
  position: absolute;
  top: 36px;
  right: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -99;
  background: #ffffff;
  border: 1px solid #D6D6D6;
}

@media screen and (max-width: 768px) {
  .header-inner .sns .sns-list {
    top: 50px;
  }
}

.header-inner .sns .sns-list.-open {
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  .header-inner .sns .sns-list.-open {
    right: 0;
  }
}

.header-inner .sns .sns-list li {
  display: block;
  border-top: 1px solid #D6D6D6;
  margin: 0;
  padding-block: 12.5px;
}

.header-inner .sns .sns-list li:first-child {
  border-top: none;
}

.header-inner .sns .sns-list li a {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
}

.header-inner .sns .sns-list li a img {
  max-width: 30px;
}

.header-inner .header-search {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100px;
  overflow: hidden;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.header-inner .header-search.-js-active {
  width: 461px;
}
@media screen and (max-width: 1000px) {
  .header-inner .header-search.-js-active {
    width: calc(461px - 200px);
  }
}

.header-inner .header-search.-js-active .search-inner {
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
}

.header-inner .header-search .search-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 561px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.header-inner .header-search .search-inner>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.header-inner .header-search button {
  background: transparent;
  border: none;
  border-radius: 0;
}

.header-inner .header-search .search-toggle {
  position: relative;
  width: 103px;
  height: 36px;
  padding: 8px 13px 8px 30px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  background: url("../images/common/icon-search-black.svg") no-repeat 5px center/auto 20px;
}

/* .header-inner .header-search .search-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 20px;
  margin: auto;
  background: #D6D6D6;
} */
.header-inner .header-search .header-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.header-inner .header-search .header-search-form input {
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 420px;
  margin-top: 3px;
  padding: 2px 0 2px 32px;
  color: #A6A6A6;
  border: 1px solid #707070;
}
@media screen and (max-width: 1000px) {
  .header-inner .header-search .header-search-form input {
    width: calc(420px - 200px);
  }
}
.header-inner .header-search .header-search-form input::-webkit-input-placeholder {
  color: #A6A6A6;
}

.header-inner .header-search .header-search-form input::-moz-placeholder {
  color: #A6A6A6;
}

.header-inner .header-search .header-search-form input:-ms-input-placeholder {
  color: #A6A6A6;
}

.header-inner .header-search .header-search-form input::-ms-input-placeholder {
  color: #A6A6A6;
}

.header-inner .header-search .header-search-form input::placeholder {
  color: #A6A6A6;
}

.header-inner .header-search .header-search-form button[type=submit] {
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url("../images/common/icon-search-black.svg") 50% 50%/auto 15px no-repeat;
}

.header-inner .header-search .search-close {
  position: relative;
  width: 41px;
  height: 36px;
}

.header-inner .header-search .search-close::before,
.header-inner .header-search .search-close::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  height: 1px;
  margin: auto;
  background: #003A8F;
}

.header-inner .header-search .search-close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header-inner .header-search .search-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .header-inner .header-search {
    display: none;
  }
}

.header-inner .lower-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-inner .lower-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-inner .lower-menu .header-menu {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-menu {
    display: none;
  }
}

.header-inner .lower-menu .header-menu li {
  margin-right: 30px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1250px) {
  .header-inner .lower-menu .header-menu li {
    margin-right: 2em;
    font-size: 1.1vw;
  }
}

@media screen and (max-width: 860px) {
  .header-inner .lower-menu .header-menu li {
    margin-right: 1em;
  }
}

.header-inner .lower-menu .header-menu li a {
  display: block;
  text-decoration: none;
  color: #003A8F;
}

.header-inner .lower-menu .header-menu li.-current {
  border-bottom: 2px solid;
}

@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-menu li {
    width: 50%;
  }
}

.header-inner .lower-menu .header-nav {
  position: absolute;
  padding: 40px;
  right: 0;
  left: 100%;
  top: 90px;
  width: 100%;
  min-height: 445px;
  background-color: #003A8F;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
  z-index: -1;
}

.header-inner .lower-menu .header-nav.one {
  margin-top: 0 !important;
}

@media screen and (max-width: 1250px) {
  .header-inner .lower-menu .header-nav {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav {
    /* top:77px; */
    padding: 15px 0 120px;
  }


}

@media screen and (max-width: 488px) {
  .header-inner .lower-menu .header-nav {
    /* top: 134px; */
    padding: 15px 0 120px;
  }
}


.header-inner .lower-menu .header-nav.-open {
  position: absolute;
  opacity: 1;
  z-index: 0;
  width: 100%;
  left: 0;
}

@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav.-open {
    position: fixed;
    height: 100%;
    overflow-y: scroll;
  }
}

.header-inner .lower-menu .header-nav.-fixed {
  position: fixed;
}

.header-inner .lower-menu .header-nav .adjust-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .adjust-width {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.header-inner .lower-menu .header-nav .main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 65%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .main-menu {
    width: 100vw;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 calc(50% - 50vw);
    font-weight: bold;
  }
}

.header-inner .lower-menu .header-nav .main-menu a {
  text-decoration: none;
  color: #ffffff;
  display: block;
}

.header-inner .lower-menu .header-nav .main-menu .left-content,
.header-inner .lower-menu .header-nav .main-menu .right-content {
  width: 46%;
}

@media screen and (max-width: 768px) {

  .header-inner .lower-menu .header-nav .main-menu .left-content,
  .header-inner .lower-menu .header-nav .main-menu .right-content {
    width: 100%;
  }
}

.header-inner .lower-menu .header-nav .main-menu .left-content ul,
.header-inner .lower-menu .header-nav .main-menu .right-content ul {
  display: block;
}

@media screen and (max-width: 768px) {

  .header-inner .lower-menu .header-nav .main-menu .left-content ul,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.header-inner .lower-menu .header-nav .main-menu .left-content ul li,
.header-inner .lower-menu .header-nav .main-menu .right-content ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {

  .header-inner .lower-menu .header-nav .main-menu .left-content ul li,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li {
    width: 50%;
    border-top: none;
    border-bottom: 1px solid #F7F7F7;
    border-right: 1px solid #F7F7F7;
  }

  .header-inner .lower-menu .header-nav .main-menu .left-content ul li:first-child,
  .header-inner .lower-menu .header-nav .main-menu .left-content ul li:nth-child(2),
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:first-child,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:nth-child(2) {
    border-top: 1px solid #F7F7F7;
  }

  .header-inner .lower-menu .header-nav .main-menu .left-content ul li:nth-child(2n),
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:nth-child(2n) {
    border-right: none;
  }
}

.header-inner .lower-menu .header-nav .main-menu .left-content ul li a,
.header-inner .lower-menu .header-nav .main-menu .right-content ul li a {
  position: relative;
  padding: 16px 30px 16px 20px;
}

@media screen and (max-width: 768px) {

  .header-inner .lower-menu .header-nav .main-menu .left-content ul li a,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    padding: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 1.4rem;
  }
}

.header-inner .lower-menu .header-nav .main-menu .left-content ul li a::after,
.header-inner .lower-menu .header-nav .main-menu .right-content ul li a::after {
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #ffffff #ffffff transparent transparent;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {

  .header-inner .lower-menu .header-nav .main-menu .left-content ul li a::after,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li a::after {
    content: none;
  }
}

.header-inner .lower-menu .header-nav .main-menu .left-content ul li:last-child a,
.header-inner .lower-menu .header-nav .main-menu .right-content ul li:last-child a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {

  .header-inner .lower-menu .header-nav .main-menu .left-content ul li:last-child a,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:last-child a {
    border: none;
  }
}

@media screen and (max-width: 768px) {

  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:first-child,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:nth-child(2) {
    border-top: none;
  }

  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:nth-last-child(2),
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:last-child {
    border-bottom: 1px solid #F7F7F7;
  }
}

.header-inner .lower-menu .header-nav .sub-menu {
  width: 18.5%;
  margin-right: 12%;
}

@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .sub-menu {
    width: 100%;
    margin-right: 0;
  }
}

.header-inner .lower-menu .header-nav .sub-menu a {
  color: #ffffff;
}

.header-inner .lower-menu .header-nav .sub-menu ul {
  display: block;
}

.header-inner .lower-menu .header-nav .sub-menu ul li {
  margin-bottom: 0.3em;
  text-indent: -1.2em;
  padding-left: 1.2em;
}

@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .sub-menu ul li:last-child {
    margin-bottom: 1em;
  }
}

.header-inner .lower-menu .header-nav .sub-menu ul li a {
  position: relative;
  font-size: 1.3rem;
  padding-left: 1.5em;
}

.header-inner .lower-menu .header-nav .sub-menu ul li a.external {
  padding-right: 15px;
  background: url('../images/common/icon-external-wh.svg') no-repeat right 5px;
  background-size: 10px auto;
}

.header-inner .lower-menu .header-nav .sub-menu ul li a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #ffffff #ffffff transparent transparent;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.header-inner .lower-menu .header-nav a.info-button {
  display: block;
  border: 1px solid #ffffff;
  border-radius: 5px;
  padding: 10px;
  color: #ffffff;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

.header-inner .lower-menu .header-nav a.info-button:first-child {
  margin-top: 0;
}

.header-inner .lower-menu .header-nav a.info-button span {
  position: relative;
  padding-left: 30px;
}

.header-inner .lower-menu .header-nav a.info-button span::before {
  position: absolute;
  content: "";
  width: 33px;
  height: 35px;
  left: -1.5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("../images/common/icon-access.svg") no-repeat;
  background-size: 100%;
}

.header-inner .lower-menu .header-nav a.info-button.business-hours span::before {
  width: 23px;
  height: 23px;
  background: url("../images/common/icon-time.svg") no-repeat;
  background-size: 100%;
}

.header-inner .lower-menu .header-nav a.info-button.parking span {
  padding-left: 36px;
}

.header-inner .lower-menu .header-nav .qsmall-site {
  background: #ffffff;
}

.header-inner .lower-menu .header-nav .qsmall-site p.heading {
  display: block;
  width: 100%;
  text-align: center;
  margin: 1em 0;
}

.header-inner .lower-menu .header-nav .qsmall-site ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
}

.header-inner .lower-menu .header-nav .qsmall-site ul li {
  width: 50%;
  text-align: center;
}

.header-inner .lower-menu .header-nav .qsmall-site ul li:last-child {
  width: 100%;
}

.header-inner .lower-menu .header-nav .qsmall-site ul li a {
  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;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  color: #ffffff;
  font-weight: bold;
  min-height: 81px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .qsmall-site ul li a {
    font-size: 1.4rem;
    min-height: 60px;
  }
}

.header-inner .lower-menu .header-nav .qsmall-site ul li a span {
  opacity: 0.15;
  color: #ffffff;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  font-weight: bold;
  font-size: 3.6rem;
}

@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .qsmall-site ul li a span {
    font-size: 2rem;
  }
}

.header-inner .lower-menu .header-nav .sns-link {
  background: #ffffff;
  padding: 40px 0;
}

.header-inner .lower-menu .header-nav .sns-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-inner .lower-menu .header-nav .sns-link ul li {
  font-weight: 500;
  margin-right: 20px;
}

.header-inner .lower-menu .header-nav .sns-link ul li:last-child {
  margin-right: 0;
}

.header-inner .lower-menu .header-nav .sns-link ul li {
  padding: 0;
}

.header-inner .lower-menu .header-nav .sns-link ul li a::after {
  content: none;
}

.header-inner .lower-menu .header-nav .info-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.header-inner .lower-menu .header-nav .info-button-group .info-button {
  margin: 0;
  width: 46.8%;
}

.sp-content {
  width: 100%;
}

.sp-content .search-form {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
}

.sp-content .search-form button[type=submit] {
  /* top: 0;
  bottom: 0;
  margin: auto; */
  padding-right: 12px;
}

.icon-menu {
  position: relative;
  display: block;
  height: 50px;
  width: 60px;
  background: #003A8F;
  padding: 12px 18px;
  cursor: pointer;
}

.icon-menu i {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
}

.icon-menu i:nth-child(1) {
  top: 11px;
}

.icon-menu i:nth-child(2) {
  top: 18px;
}

.icon-menu i:nth-child(3) {
  top: 25px;
}

.icon-menu span {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0;
  color: #ffffff;
  position: absolute;
  bottom: 3px;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  text-align: center;
}

.icon-menu .close {
  opacity: 0;
}

.icon-menu.-active .open {
  opacity: 0;
}

.icon-menu.-active .close {
  opacity: 1;
}

.icon-menu.-active i:nth-child(1) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon-menu.-active i:nth-child(2) {
  opacity: 0;
}

.icon-menu.-active i:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.g-header.-js-scroll {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

/* .icon-menu.-js-scroll {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
} */
/* .icon-menu.-js-scroll + .header-nav {
  top: 50px !important;
} */

/*------------------------------------------------------------
 * footer
------------------------------------------------------------*/
.pagetop-fix {
  position: fixed;
  bottom: 34px;
  right: 20px;
  z-index: 4;
  margin: 0;
  width: 80px;
  height: 80px;
  cursor: pointer;
  filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.25));
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 30px);
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

@media screen and (max-width: 768px) {
  .pagetop-fix {
    width: 50px;
    height: 50px;
    bottom: 70px;
    right: 10px;
  }
}

.pagetop-fix span {
  display: block;
}

.pagetop-fix span img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 769px) {
  .pagetop-fix:hover {
    opacity: 0.5;
  }
}

.pagetop-fix.-js-fadein {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.pagetop-fix.-js-fixed {
  position: fixed;
  /* bottom: 140px; */
  z-index: 1000;
  /* right: 50px; */
}

@media screen and (max-width: 768px) {
  .pagetop-fix.-js-fixed {
  position: absolute;
    bottom: 102px;
    right: 10px;
  }
}

.g-footer {
  position: relative;
  text-align: center;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .g-footer {
    background: #ffffff;
  }
}

.g-footer ul {
  padding: 0;
  list-style: none;
}

.g-footer ul a {
  text-decoration: none;
}
.footer-banner-container {
  background-color: #F1F7FF;
}

.footer-banner-container .adjust-width {
  position: relative;
}

.footer-banner-container .swiper-button-disabled {
  display: none;
}

@media screen and (max-width: 768px) {
  .footer-banner-container {
    margin: 0 auto;
  }
}

.footer-banner-container .swiper-button-next,
.footer-banner-container .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  margin: 0;
  z-index: 3;
  width: 30px;
  height: 30px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer-banner-container .swiper-button-prev {
  left: -55px;
}

.footer-banner-container .swiper-button-next {
  right: -55px;
}
@media  screen and (max-width: 1140px) {
  .footer-banner-container .swiper-button-prev {
    left: -3vw;
  }
  
  .footer-banner-container .swiper-button-next {
    right: -3vw;
  }
}
.footer-banner-container .swiper-button-next:hover,
.footer-banner-container .swiper-button-prev:hover {
  opacity: 0.5;
}

.footer-banner-container .swiper-button-next::before,
.footer-banner-container .swiper-button-prev::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-banner-container .swiper-button-prev::before {
  background-image: url("../images/common/slide-arrow-prev.svg");
}

.footer-banner-container .swiper-button-next::before {
  background-image: url("../images/common/slide-arrow-next.svg");
}

.footer-banner-container .swiper-button-next::after,
.footer-banner-container .swiper-button-prev::after {
  content: none;
}

.footer-banner-container .footer-banner {
  overflow-x: hidden;
}

.footer-banner-container .footer-banner ul {
  padding: 0;
  list-style: none;
}

.footer-banner-container .footer-banner ul li img {
  width: 100%;
}

.footer-banner-container .footer-banner .swiper-wrapper {
  max-width: 1000px;
  margin: 40px auto;
}

@media screen and (max-width: 768px) {
  .footer-banner-container .footer-banner .swiper-wrapper {
    margin: 28px auto;
  }
}
/* SP時無効 */
@media screen and (max-width: 768px) {
  .footer-banner-container .footer-banner .swiper-wrapper {
    flex-wrap: wrap !important;
    justify-content: space-around !important;
  }
  .footer-banner-container .footer-banner .swiper-slide {
    width: 46% !important;
    margin: 10px auto !important;
  }
  .footer-banner-container .swiper-button-prev,
  .footer-banner-container .swiper-button-next {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .footer-banner-container .footer-banner .swiper-slide {
    width: 100% !important;
    margin: 0 auto !important;
  }
  .footer-banner-container .footer-banner .swiper-slide:not(:first-child) {
    margin-top: 20px !important;
  }
}

.g-footer .footer-card-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .g-footer .footer-card-links ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.g-footer .footer-card-links ul li {
  margin-right: 20px;
  width: 150px;
}

@media screen and (max-width: 768px) {
  .g-footer .footer-card-links ul li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 46.8%;
    margin-right: 6.4%;
  }

  .g-footer .footer-card-links ul li:nth-child(2n) {
    margin-right: 0;
  }

  .g-footer .footer-card-links ul li:nth-child(n+3) {
    margin-top: 20px;
  }

  .g-footer .footer-card-links ul li:last-child {
    margin-right: 53.2% !important;
  }
}

.g-footer .footer-card-links ul li:last-child {
  margin-right: 0;
}

.g-footer .footer-card-links ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px 0 0;
  background: #ffffff;
  color: #222;
  line-height: 1.42;
  width: 100%;
  height: 60px;
  font-size: 1.4rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .g-footer .footer-card-links ul li a {
    width: 100%;
    color: #222;
    background: #F4F4F4;
  }
}

.g-footer .footer-card-links ul li a::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 12px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("../images/common/icon-blank.svg") no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .g-footer .footer-card-links ul li a::after {
    right: 10px;
  }
}
.g-footer .footer-links-outer {
  background: #FAF4E5;
  padding: 36px 0;
}
.g-footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .g-footer .footer-links {
    display: none;
  }
}

.g-footer .footer-links ul {
  margin: 0;
}

.g-footer .footer-links ul a {
  color: inherit;
}

.g-footer .footer-links .left-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.g-footer .footer-links .left-content .upper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.g-footer .footer-links .left-content .upper-content ul {
  margin-right: 4.8%;
}

.g-footer .footer-links .left-content .upper-content ul:last-child {
  margin-right: 0;
}

.g-footer .footer-links .left-content .upper-content ul li {
  line-height: 1.68;
  font-size: 1.6rem;
  font-weight: 500;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.g-footer .footer-links .left-content .upper-content ul li:not(:first-child) {
  margin-top: 20px;
}
.g-footer .footer-links .left-content .upper-content ul li a {
  position: relative;
  padding-left: 1.2em;
}

.g-footer .footer-links .left-content .upper-content ul li a.external {
  padding-right: 15px;
  background: url('../images/common/icon-external.svg') no-repeat right 5px;
  background-size: 10px auto;
}

.g-footer .footer-links .left-content .upper-content ul li a::before {
  content: "";
  display: block;
  width: calc(1em - 2px);
  height: calc(1em - 2px);
  background: url("../images/common/btn-arrow.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.4em;
}
/* sub */
.g-footer .footer-links .left-content .upper-content ul.sub {
  padding-left: 4.8%;
}
.g-footer .footer-links .left-content .upper-content ul.sub li {
  line-height: 1.83;
  font-size: 1.2rem;
  font-weight: normal;
}
.g-footer .footer-links .left-content .upper-content ul.sub li:not(:first-child) {
  margin-top: 14px;
}
/* lower-content */
.g-footer .footer-links .left-content .lower-content {
  margin-top: 32px;
}

.g-footer .footer-links .left-content .lower-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.g-footer .footer-links .left-content .lower-content ul li {
  margin-right: 25px;
}

.g-footer .footer-links .left-content .lower-content ul li:last-child {
  margin-right: 0;
}

/* .g-footer .footer-links .right-content {
  width: 230px;
  margin-left: 8%;
}

.g-footer .footer-links .right-content ul li {
  margin-top: 20px;
}

.g-footer .footer-links .right-content ul li:first-child {
  margin-top: 0;
} */

.g-footer .other-malls {
  padding: 50px 0;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .g-footer .other-malls {
    padding: 46px 0 35px;
  }
}

.g-footer .other-malls .adjust-width {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .g-footer .other-malls .adjust-width {
    max-width: 370px;
    flex-wrap: wrap;
  }
}

.g-footer .other-malls .other-malls-logo {
  width: 219px;
}
.g-footer .other-malls .other-malls-logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .g-footer .other-malls .other-malls-logo {
    width: 130px;
  }
}

.g-footer .other-malls .other-malls-logo>a {
  display: block;
}

.g-footer .other-malls .other-malls-text {
  font-size: 1.6rem;
  text-align: left;
  margin: 0 0 0 50px;
  font-weight: 500;
  line-height: 1.6875;
}

@media screen and (max-width: 768px) {
  .g-footer .other-malls .other-malls-text {
    font-size: 1.3rem;
    text-align: center;
    margin: 13px 0 0 0;
    font-weight: normal;
    line-height: 1.3846;
  }
}

.g-footer .footer-sp-links {
  background: #FAF4E5;
  padding: 36px 0;
}
.g-footer .footer-sp-links ul {
  margin: 0;
}
.g-footer .footer-sp-links ul li {
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.84;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.g-footer .footer-sp-links ul li:not(:first-child) {
  margin-top: 16px;
}
.g-footer .footer-sp-links ul li a {
  color: inherit;
  position: relative;
  padding-left: 1.2em;
}

.g-footer .footer-sp-links ul li a.external {
  padding-right: 15px;
  background: url('../images/common/icon-external.svg') no-repeat right 6px;
  background-size: 10px auto;
}

.g-footer .footer-sp-links ul li a::before {
  content: "";
  display: block;
  width: calc(1em - 3px);
  height: calc(1em - 3px);
  background: url("../images/common/btn-arrow.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.4em;
}
/* lower-content._sp */
.g-footer .footer-sp-links .lower-content {
  margin-top: 30px;
}

.g-footer .footer-sp-links .lower-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

.g-footer .footer-sp-links .lower-content ul li {
  margin-right: 25px;
  text-indent: 0;
  padding-left: 0;
}
.g-footer .footer-sp-links .lower-content ul li:not(:first-child) {
  margin-top: 0;
}
.g-footer .footer-sp-links .lower-content ul li:last-child {
  margin-right: 0;
}
.g-footer .footer-sp-links .lower-content ul li a {
  padding-left: 0;
}
.g-footer .footer-sp-links .lower-content ul li a::before {
  content: none;
}
/*  */
.g-footer .footer-bottom {
  background: #222;
}

.g-footer .footer-bottom .inner {
  margin: auto;
  padding: 10px 36px 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .g-footer .footer-bottom .inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px;
  }
}

/* .g-footer .footer-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .g-footer .footer-bottom ul {
    display: none;
  }
}

.g-footer .footer-bottom ul li {
  margin-right: 3em;
  line-height: 1;
}

.g-footer .footer-bottom ul li:last-child {
  margin-right: 0;
}

.g-footer .footer-bottom ul li a {
  position: relative;
  font-size: 1.3rem;
  color: #ffffff;
  text-decoration: none;
  padding-left: 1.5em;
}

.g-footer .footer-bottom ul li a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #003A8F #003A8F transparent transparent;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
} */

.g-footer .footer-bottom .copyright {
  margin: 0;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .g-footer .footer-bottom .copyright {
    font-size: 1.1rem;
  }
}

.g-footer .sp-fixed-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #003A8F;
  left: 0;
  z-index: 8;
}

.g-footer .sp-fixed-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.g-footer .sp-fixed-menu ul li {
  width: 25%;
  padding-bottom: 5px;
  border-right: 1px solid #ffffff;
}

.g-footer .sp-fixed-menu ul li:last-child {
  border-right: none;
}

.g-footer .sp-fixed-menu ul li:last-child a {
  padding-bottom: 3px;
}

.g-footer .sp-fixed-menu ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  height: 55px;
  padding-top: 32px;
  letter-spacing: 0;
}

@media screen and (max-width: 320px) {
  .g-footer .sp-fixed-menu ul li a {
    font-size: 1rem;
  }
}

.g-footer .sp-fixed-menu ul li a span {
  line-height: 1.16;
}

.g-footer .sp-fixed-menu ul li a::before {
  position: absolute;
  content: "";
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

.g-footer .sp-fixed-menu ul li a.-shopguide::before {
  top: 5px;
  width: 23px;
  height: 28px;
  background: url("../images/common/icon-shopguide.svg") no-repeat;
  background-size: 100%;
}

.g-footer .sp-fixed-menu ul li a.-gourmetguide::before {
  top: 6px;
  width: 41px;
  height: 23px;
  background: url("../images/common/icon-gourmetguide.svg") no-repeat;
  background-size: 100%;
}

.g-footer .sp-fixed-menu ul li a.-floormap::before {
  top: 5px;
  width: 25px;
  height: 25px;
  background: url("../images/common/icon-floormap.svg") no-repeat;
  background-size: 100%;
}
.g-footer .sp-fixed-menu ul li a.-eventcampaign {
  padding-top: 26px;
}
.g-footer .sp-fixed-menu ul li a.-eventcampaign::before {
  top: 5px;
  width: 16px;
  height: 22px;
  background: url("../images/common/icon-eventcampaign.svg") no-repeat;
  background-size: 100%;
}

.g-footer .sp-fixed-menu ul li a.-parking::before {
  top: 6px;
  width: 28px;
  height: 29px;
  background: url("../images/common/icon-access.svg") no-repeat;
  background-size: 100%;
}

.pagetop {
  position: relative;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 1;
  margin: 0;
  padding: 7px 20px 8px;
  background: #185ABB;
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.pagetop::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../images/common/pagetop-arrow.svg") no-repeat center/contain;
  margin: 0 auto 5px;
}

/*------------------------------------------------------------
 * sidebar
------------------------------------------------------------*/
/*------------------------------------------------------------
 * button
------------------------------------------------------------*/
.link-button {
  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;
  min-height: 60px;
  border: 3px solid #003A8F;
  border-radius: 5px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto 50px;
  background: #ffffff;
  -webkit-box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.12);
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: #003A8F;
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: bold;
  transition: 0.3s;
  padding: 0 42px 0 36px;
}
.link-button:hover {
  opacity: 1;
  background: #FFFF4A;
}
@media screen and (max-width: 768px) {
  .link-button {
    margin: 0 auto 40px;
  }
}
.link-button::after {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  right: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/common/btn-arrow.svg");
  top: 50%;
  transform: translateY(-50%);
}
.link-button.-arrow-down::after {
  transform: translateY(-50%) rotate(90deg);
}

/* pdf */
.link-button.-pdf {
  padding: 0 30px 0 24px;
}

.link-button.-pdf::after {
  width: 18px;
  height: 22px;
  background: url("../images/common/icon-pdf.svg") no-repeat center/contain;
}

.link-button.-calendar::before {
  content: none;
}

.link-button.-calendar::after {
  /* top: 50%; */
  /* right: 20px; */
  width: 28px;
  height: 28px;
  background: transparent url("../images/common/icon-calendar.svg") no-repeat;
  /* transform: translate(0, 0) rotate(0deg); */
}

.link-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 680px;
  margin: 0 auto 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .link-button-group {
    margin-bottom: 40px;
  }
}
.link-button-group.-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.link-button-group.-center>* {
  width: 100%;
  max-width: 320px;
}
.link-button-group.-center>*:nth-child(n+2) {
  margin-left: 40px;
}

.link-button-group.-center .link-button:first-child {
  margin-right: 0 !important;
}

@media screen and (max-width: 768px) {
  .link-button-group.-center>* {
    max-width: none;
    margin: 0 auto;
  }

  .link-button-group.-center>*:not(:first-child) {
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .link-button-group {
    display: block;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.link-button-group .link-button {
  margin: 0;
}

.link-button-group .link-button:first-child {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .link-button-group .link-button {
    width: 100%;
    margin: 20px auto 0;
  }

  .link-button-group .link-button:first-child {
    margin: 0 auto;
  }
}
/* -fit-content */
.link-button-group.-max-none {
  max-width: none;
  width: auto;
}
.link-button-group>*.-fit-content,
.link-button-group.-center>*.-fit-content {
  max-width: none;
  width: fit-content;
}
.link-button.-fit-content,
.link-button-group .link-button.-fit-content {
  max-width: none;
  width: fit-content;
  padding: 0 48px 0 30px;
  min-width: 320px;
}
@media screen and (max-width: 768px) {
  .link-button-group.-max-none {
    width: 100%;
  }
  .link-button-group>*.-fit-content,
  .link-button-group.-center>*.-fit-content {
    width: 100%;
  }
  .link-button.-fit-content,
  .link-button-group .link-button.-fit-content {
    width: 100%;
    min-width: auto;
  }
}
/*======================================================================
 * 下層ページ
======================================================================*/
.l-page-title,
.l-section-title {
  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;
  padding: 0 0 56px;
}

.l-section-title {
  padding: 0 0 30px;
}

@media screen and (max-width: 768px) {
  .l-page-title {
    padding: 0 0 30px;
  }

  .l-section-title {
    padding: 0 0 20px;
  }
}

.l-page-title h1,
.l-page-title p,
.l-section-title p {
  text-align: center;
}

.l-page-title h1,
.l-page-title p,
.l-section-title p {
  font-size: 1.8rem;
  color: #003A8F;
  margin-bottom: 0;
  font-weight: 900;
  line-height: 1.333;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .l-section-title p {
    font-size: 1.6rem;
  }
}

.l-page-title h1 span:first-child,
.l-page-title p span:first-child,
.l-section-title p span:first-child {
  display: block;
  font-size: 2.4em;
  color: #BC0000;
}

@media screen and (max-width: 768px) {
  .l-section-title p span:first-child {
    font-size: 2.125em;
  }
}

.l-page-title h1 .ff-en,
.l-page-title p .ff-en,
.l-section-title p .ff-en {
  letter-spacing: 0.1em;
  line-height: 1.295;
}

.l-page-title .l-page-title-deco,
.l-section-title .l-section-title-deco {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-page-title .l-page-title-deco::before,
.l-page-title .l-page-title-deco::after,
.l-section-title .l-section-title-deco::before,
.l-section-title .l-section-title-deco::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../images/common/icon-ukiwa.svg") no-repeat center/contain;
}

.l-page-title .l-page-title-deco::before,
.l-section-title .l-section-title-deco::before {
  margin-right: 0.5em;
}

.l-page-title .l-page-title-deco::after,
.l-section-title .l-section-title-deco::after {
  margin-left: 0.5em;
}

.breadcrumbs ul {
  padding: 18px 0 20px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}

@media screen and (max-width: 768px) {
  .breadcrumbs ul {
    margin: 0 calc(50% - 50vw) 10px 0;
    padding: 10px 0 10px;
  }
}

.breadcrumbs ul li {
  position: relative;
  color: #727272;
  font-size: 1.2rem;
  margin-left: 1.4em;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .breadcrumbs ul li {
    font-size: 1.2rem;
  }
}

.breadcrumbs ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 75%;
  right: -8px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #727272;
  border-right: 1px solid #727272;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  transform: translate(50%, -50%) rotate(45deg);
  margin: -4px 0 0 -8px;
}

.breadcrumbs ul li:first-child {
  margin-left: 0;
}

.breadcrumbs ul li:last-child::after {
  content: none;
}

.breadcrumbs ul li a {
  color: #727272;
}

.l-tab-content {
  margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
  .l-tab-content {
    margin: 0 -5.5vw 2rem;
  }
}

@media screen and (max-width: 768px) {
  .l-tab-content .adjust-width {
    padding: 0;
  }

  .l-tab-content .adjust-width ul {
    padding: 0 5.5vw;
  }
}

.l-tab-content ul {
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #003A8F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .l-tab-content ul {
    padding: 0 5.5vw;
  }
}

.l-tab-content ul li {
  position: relative;
  font-size: 1.6rem;
  border-radius: 5px 5px 0 0;
  color: #003A8F;
  background: #F1F7FF;
  padding: 12px 0 10px;
  text-align: center;
  margin-right: 21px;
  cursor: pointer;
  width: 310px;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .l-tab-content ul li {
    width: 31.2%;
    margin-right: 3.1%;
  }
}

.l-tab-content ul li:last-child {
  margin-right: 0;
}

.l-tab-content ul li.-active {
  color: #BC0000;
  border: 1px solid #003A8F;
  border-bottom: none;
  font-weight: bold;
  background: #ffffff;
  padding-top: 14px;
}
.l-tab-content ul li.-active::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  background: #ffffff;
  height: 3px;
  bottom: -2px;
}
.l-tab-content ul li.-active a {
  color: #BC0000;
}

.l-tab-content ul li a {
  text-decoration: none;
  color: #003A8F;
  display: block;
}

.l-content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -30px -10px 0 0;
}
@media screen and (max-width: 768px) {
  .l-content-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: -20px 0 0 0;
  }
}

.l-content-list>* {
  position: relative;
  width: calc(20% - 10px);
  margin: 30px 10px 0 0;
}

@media screen and (max-width: 980px) {
  .l-content-list>* {
    width: calc(25% - 10px);
  }
}

@media screen and (max-width: 768px) {
  .l-content-list>* {
    width: calc(50% - 5px);
    margin: 20px 0 0 0;
  }
}

@media screen and (max-width: 768px) {
  .l-content-list.-sp-col1>* {
    width: 100%;
  }

  .l-content-list.-sp-col1 .l-content-item a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 2rem;
  }

  .l-content-list.-sp-col1 .l-content-item a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid #003A8F;
    border-right: 2px solid #003A8F;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -0.4rem;
  }

  .l-content-list.-sp-col1 .l-content-item .image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 40%;
    max-width: 120px;
  }

  .l-content-list.-sp-col1 .l-content-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0 0 0 1.7rem;
  }

  .l-content-list.-sp-col1 .l-content-item .title {
    margin-top: 0.8rem;
    line-height: 1.3;
  }

  .l-content-list.-sp-col1 .l-content-item .shop {
    font-size: 1.2rem;
  }

  .l-content-list.-sp-col1 .l-content-item .info .open._sp-only {
    width: 100%;
    margin-top: 0.4rem;
  }
}
/* info */
.l-content-list.-news {
  display: block;
  margin: 0;
  border-top: 3px solid #003A8F;
  border-bottom: 3px solid #003A8F;
}

.l-content-list.-news .l-content-item {
  width: 100%;
  margin: 0;
  background: #fff;
  position: relative;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.l-content-list.-news .l-content-item:not(:first-child)::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #003A8F 4px, transparent 4px);
  background-size: 8px 100%;
  background-repeat: repeat-x;
  background-position: left bottom;
}

@media screen and (max-width: 768px) {
  .l-content-list.-news .l-content-item:not(:first-child)::before {
    height: 1px;
    background-image: linear-gradient(to right, #003A8F 3px, transparent 3px);
    background-size: 6px 100%;
  }
}
.l-content-list.-news .l-content-item a {
  display: block;
  position: relative;
  padding: 17px 52px 17px 10px;
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .l-content-list.-news .l-content-item a {
    padding: 17px 36px 17px 10px;
  }
}
.l-content-list.-news .l-content-item a::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/common/btn-arrow.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .l-content-list.-news .l-content-item a::after {
    width: 16px;
    height: 16px;
  }
}

.l-content-list.-news .l-content-item.-new::before {
  content: none;
}


.l-content-list.-news .l-content-item.-new .date::after {
  position: absolute;
  content: "NEW";
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  background: #BC0000;
  padding: 3px 6px 2px;
  margin-left: 10px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.l-content-list.-news .l-content-item .content {
  padding-top: 0;
}

.l-content-list.-news .l-content-item .date {
  position: relative;
  font-size: 1.6rem;
  color: #BC0000;
  margin: 0 0 0.25em 0;
}
.l-content-list.-news .l-content-item .title {
  margin-top: 0;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.68;
  padding-top: 0;
}
/*------------------------------------------------------------
 * l-content-slider
------------------------------------------------------------*/
.l-content-slider {
  margin-bottom: -10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .l-content-slider {
    margin-left: -55px;
    margin-right: -55px;
    padding-left: 55px;
    padding-right: 55px;
  }
  .l-content-slider::before,
  .l-content-slider::after {
    content: "";
    display: block;
    width: 55px;
    height: 100%;
    top: 0;
    position: absolute;
    z-index: 2;
    background: #fff;
  }
  .-bg-blue .l-content-slider::before,
  .-bg-blue .l-content-slider::after {
    background: #F1F7FF;
  }
  .l-content-slider::before {
    left: 0;
  }
  .l-content-slider::after {
    right: -10px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1140px) {
  .l-content-slider {
    margin-left: -3vw;
    margin-right: -3vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .l-content-slider::before,
  .l-content-slider::after {
    width: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .l-content-slider {
    margin-right: calc(50% - 50vw);
  }
}
.l-content-slider .l-content-item {
  width: 18rem;
}

@media screen and (max-width: 768px) {
  .l-content-slider .l-content-item {
    width: 15.2rem;
  }
}
/*  */
.l-content-item {
  background: #fff;
  padding: 10px 10px 12px;
  border-radius: 8px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 768px) {
  .l-content-item {
    padding: 8px 8px 12px;
  }
}

.l-content-item.-new::backdrop {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 50px;
  height: 50px;
  display: block;
  background: url("../images/common/icon-new.svg") no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .l-content-item.-new::before {
    width: 40px;
    height: 40px;
  }
}
.l-content-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.l-content-item .image {
  position: relative;
  overflow: hidden;
}

.l-content-item .image::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.l-content-item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.l-content-item .image img.-blur {
  width: 100%;
  height: 100%;
  filter: blur(2px);
  z-index: 1;
}

.l-content-item .image.-size-landscape::before {
  padding-top: 75%;
}

.l-content-item .image.-size-portrait::before {
  padding-top: 142%;
}

.l-content-item .image.-border {
  border: 1px solid #D6D6D6;
}

.l-content-item .content {
  padding-top: 1rem;
}

@media screen and (max-width: 768px) {
  .l-content-item .content {
    padding-top: 0.8rem;
  }
}

.l-content-item .content>*:first-child {
  margin-top: 0;
}

.l-content-item .event_cat {
  font-size: 1rem;
  margin: 0 0 2px;
  padding: 1px 10px;
  border: 1px solid #000;
  border-radius: 5px;
  display: inline-block;
}
.l-content-item .event_cat.-popup {
  color: #FD4D4F;
  border: 1px solid #FD4D4F;
}

.l-content-item .title {
  margin: 0.5rem 0 0;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .l-content-item .title {
    font-size: 1.6rem;
  }
}

.l-content-list.-sp-col1 .l-content-item .title .namekana {
  font-size: 1.1rem;
  display: block;
}

@media screen and (max-width: 768px) {
  .l-content-list.-sp-col1 .l-content-item .title .namekana {
    font-size: 1.1rem;
    display: block;
  }
}

.l-content-item .text {
  margin-top: 0.9rem;
  color: #003A8F;
  font-size: 1.4rem;
  line-height: 1.28;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .l-content-item .text {
    margin-top: 0.4rem;
  }
}

.l-content-item .text span {
  display: inline-block;
}

.l-content-item .text span:not(:last-child) {
  margin-right: 0.3em;
}

.l-content-item .-limit-2line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.l-content-item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.3rem;
  font-size: 1.2rem;
}

.l-content-item .info>* {
  margin: 0;
}

.l-content-item .info>*:not(:last-child) {
  margin-right: 1.8rem;
}

.l-content-item .info .category+.open {
  width: 100%;
  margin: 0.5rem 0 0;
}

.l-content-item .info .open {
  margin-left: auto;
  color: #003A8F;
  font-weight: 500;
}

.l-content-item .floor {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.1rem;
  line-height: 1;
}

.l-content-item .floor::before {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 1.2rem;
  top: 50%;
  left: 0;
  margin-top: -0.6rem;
  background: url("../images/common/icon-floor.svg") no-repeat center center;
  background-size: contain;
}

.l-content-item .shop {
  color: #727272;
}

.l-content-item .category {
  color: #727272;
}

.l-content-item .date {
  margin-bottom: -10px;
  color: #727272;
  font-size: 1.4rem;
}

.l-content-item .shop-name {
  margin: -9px 0 -12px 0;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 1.71;
  background: url("../images/common/icon-shop-name.svg") 0 50%/16px 16px no-repeat;
}

.l-content-item .news-title {
  color: #003A8F;
  line-height: 1.375;
  word-break: break-all;
  font-weight: bold;
}

.more-button {
  margin-top: 4rem;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .more-button {
    margin-top: 3rem;
  }
}

.l-title-line {
  position: relative;
  font-size: 2.2rem;
  font-weight: normal;
  margin: 0;
  padding: 0 0 10px;
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: bold;
}

.l-title-line::after {
  position: absolute;
  content: "";
  border-radius: 1px;
  width: 100%;
  height: 2px;
  background: #003A8F;
  left: 0;
  bottom: -2px;
}

.l-title-bg-blue {
  margin: 0;
  padding: 10px 12px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.02em;
  background: #003A8F;
  border-radius: 5px;
}

.l-title-bg-gray {
  margin: 0;
  padding: 7px 20px;
  font-size: 1.6rem;
  line-height: 1.6875;
  background: #F4F4F4;
}

.l-unker-link {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-unker-link li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-unker-link a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 50px;
  width: 100%;
  padding: 0.4em 40px 0.4em 20px;
  color: #003A8F;
  background: #fff;
  border: 2px solid currentColor;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
}
.l-unker-link a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 6px;
  height: 6px;
  margin: auto;
  border: 2px solid currentColor;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (max-width: 768px) {
  .l-unker-link a::after {
    right: 20px;
  }
}

@media screen and (max-width: 350px) {
  .l-unker-link a::after {
    right: 12px;
  }
}
/* con3 */
.l-unker-link.-col3::after {
  content: "";
  display: block;
  width: 32%;
}

.l-unker-link.-col3 li {
  width: 32%;
}

.l-unker-link.-col3 a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 60px;
  text-align: center;
  line-height: 1.28;
}

@media screen and (max-width: 768px) {
  .l-unker-link.-col3 a {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 6px 0 12px;
    font-size: 1.4rem;
  }
}

.l-unker-link.-col3 a::after {
  right: 21px;
  top: -3px;
  width: 6px;
  height: 6px;
}

@media screen and (max-width: 768px) {
  .l-unker-link.-col3 a::after {
    top: auto;
    bottom: 6px;
    right: 0;
    left: 0;
    margin: auto;
  }
}
/* col4 */
@media screen and (min-width: 769px) {

  .l-unker-link.-col4::before,
  .l-unker-link.-col4::after {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    content: "";
    display: block;
    width: calc((100% - 40px) / 4);
  }

  .l-unker-link.-col4 li {
    width: calc((100% - 40px) / 4);
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .l-unker-link.-col4 li {
    width: calc(50% - 5px);
  }

  .l-unker-link.-col4 li:nth-child(n+3) {
    margin-top: 10px;
  }
}

.l-unker-link.-col4 a {
  line-height: 1.23;
  letter-spacing: 0.02em;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .l-unker-link.-col4 a {
    /* padding-right: 20px; */
    line-height: 1.29;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 359px) {
  .l-unker-link.-col4 a {
    /* padding-right: 26px; */
    /* padding-left: 10px; */
    font-size: 1.3rem;
  }
}

/*------------------------------------------------------------
 * SEARCH
------------------------------------------------------------*/
.search-form {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  border: 3px solid #003A8F;
  display: block;
  border-radius: 5px;
  height: 35px;
  width: 320px;
  overflow: hidden;
  margin: 0 auto;
}

.search-form input[type=text] {
  border: none;
  padding: 0 10px;
  font-size: 1.4rem;
  font-weight: 500;
  height: 100%;
  width: 100%;
}

.search-form input[type=text]::-webkit-input-placeholder {
  color: #CBCBCB;
}

.search-form input[type=text]::-moz-placeholder {
  color: #CBCBCB;
}

.search-form input[type=text]:-ms-input-placeholder {
  color: #CBCBCB;
}

.search-form input[type=text]::-ms-input-placeholder {
  color: #CBCBCB;
}

.search-form input[type=text]::placeholder {
  color: #CBCBCB;
}

.search-form input[type=text]:focus {
  outline: 0;
}

.search-form button[type=submit] {
  cursor: pointer;
  font-size: 1.3em;
  border: none;
  background: none;
  color: #3879D9;
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
  outline: none;
}

.search-form button[type=submit] i {
  position: relative;
  display: block;
}

.search-form button[type=submit] i::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
  background: url("../images/common/icon-search.svg") no-repeat;
  background-size: 100%;
}


/*------------------------------------------------------------
 * recommend-keywords, related-keywords
------------------------------------------------------------*/
.recommend-keywords {
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 946px;
  width: 100%;
  margin: 1.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .recommend-keywords {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: initial;
  }
}
.recommend-keywords .heading,
.related-keywords .heading {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 2rem 0 0;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recommend-keywords .heading,
  .related-keywords .heading {
    width: 100%;
    text-align: center;
    margin: 0 0 1.5rem;
    font-size: 1.6rem;
  }
}
.recommend-keywords .heading span {
  position: relative;
}
.related-keywords .heading {
  font-weight: 500;
  text-align: left;
  width: 100%;
  margin-bottom: 1.6rem;
}
.recommend-keywords ul,
.related-keywords ul {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.6rem -0.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .recommend-keywords ul,
  .related-keywords ul {
    width: 100%;
  }
}
.recommend-keywords ul li,
.related-keywords ul li {
  margin: 0.6rem 0.5rem;
}
.recommend-keywords ul li a,
.related-keywords ul li a {
  display: block;
  border: 2px solid #003A8F;
  border-radius: 20px;
  padding: 3px 12px;
  background: #fff;
  text-decoration: none;
  color: #003A8F;
  font-size: 1.4rem;
  font-weight: bold;
}


.parking_box {
  position: fixed;
  right: 0;
  bottom: 140px;
}

.parking_box a {
  position: relative;
  display: block;
  text-decoration: none;
  width: 45px;
  /* height: 214px; */
  padding: 37px 0 33px;
  margin: 0 auto;
  text-align: center;
  font-weight: normal;
  font-size: 1.6rem;
  writing-mode: vertical-rl;
  background: url("../images/common/icon-access.svg") top 7px center/27px auto no-repeat #003A8F;
  color: #FFF;
  line-height: 45px;
  letter-spacing: 0.2em;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.12);
}

.parking_box a:hover {
  opacity: 1;
}

.parking_box a::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url("../images/common/btn-arrow-white.svg") no-repeat center/contain;
  position: absolute;
  left: calc(50% + 1px);
  bottom: 7px;
  transform: translate(-50%,0);
}

@media screen and (max-width: 768px) {
  .parking_box {
    display: none;
  }
}

/*------------------------------------------------------------
 * LINE Found
------------------------------------------------------------*/
.founditem {
  display: block;
  position: fixed;
  bottom: 34px;
  left: 20px;
  z-index: 10;
}
.founditem.-js-fixed {
  position: absolute;
  bottom: 94px;
}
@media screen and (max-width: 768px) {
  .founditem {
    margin-bottom: 20px;
    bottom: 51px;
    left: 10px;
  }
  .founditem.-js-fixed {
    bottom: 82px;
  }
}

.founditem_link {
  color: inherit;
  width: 100%;
  text-decoration: none;
  display: block;
  position: relative;
  filter: drop-shadow(3px 2px 3px rgba(0, 0, 0, 0.4));
}
.founditem_link:hover {
  opacity: 1;
}
.founditem_link dl {
  width: 100%;
  margin: 0;
}
.founditem_logo {
  width: 80px;
  height: 80px;
  margin: 0;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  z-index: 1;
  transform: translateX(-2px);
}
@media screen and (max-width: 768px) {
  .founditem_logo {
    width: 70px;
    height: 70px;
  }
}
.founditem_logo img {
  max-width: 50px;
}
@media screen and (max-width: 768px) {
  .founditem_logo img {
    max-width: 40px;
  }
}
.founditem_text {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: right;
  margin: 0 0 0 auto;
  padding: 8px 10px 8px 90px;
  border-radius: 25px;
  background-image: linear-gradient(180deg, #DC7B7B 0%, #BE0808 80%);
  transform: translate(2px, -10px);
}
@media screen and (max-width: 768px) {
  .founditem_text {
    font-size: 13px;
    padding: 8px 10px 8px 80px;
  }
}
@media screen and (max-width: 768px) {
  html[lang='en'] .founditem_text {
    padding: 8px 10px 8px 75px;
  }
}
.founditem_text span {
  padding-right: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  html[lang='en'] .founditem_text span {
    padding-right: 15px;
  }
}
.founditem_text span::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(-45deg) translateY(-65%);
}
@media screen and (max-width: 768px) {
  html[lang='en'] .founditem_text span::after {
    right: -3px;
  }
}
.founditem_close {
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  appearance: none;
  background: none;
  cursor: pointer;
  position: absolute;
  top: -40px;
  right: 12px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .founditem_close {
    width: 12px;
    height: 12px;
    top: -33px;
  }
}
.founditem_close::before,
.founditem_close::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #231815;
  position: absolute;
  top: 6px;
  left: 0;
}
.founditem_close::before {
  transform: rotate(45deg);
}
.founditem_close::after {
  transform: rotate(-45deg);
}

/*------------------------------------------------------------
 * search-box（検索） subcategory
------------------------------------------------------------*/
.search-box .subcategory {
  display: none;
  margin: 0;
}
.search-box ul li input[type=checkbox]:checked + label + .subcategory {
  width: 100%;
  display: inline;
}
.search-box .subcategory li {
  width: auto;
  margin-bottom: 14px;
  padding: 0;
  font-size: 1.4rem;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #000;
  padding-bottom: 14px;
}
.search-box .subcategory li:first-child {
  margin-top: 14px;
}
.search-box .subcategory li:last-child {
  margin-top: 0;
}
.search-box .subcategory li label {
  text-align: left;
  border: none;
  max-width: initial;
  min-height: initial;
  width: auto;
  padding: 2px 2px 2px 23px;
  display: inline-block;
  position: relative;
}
.search-box .subcategory li input[type=checkbox] {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
}
.search-box .subcategory li input[type=checkbox]:checked + label,
.search-box .subcategory li input[type=radio]:checked + label {
  color: #003A8F;
  background-color: transparent;
}
.search-box .subcategory li label::before,
.search-box .subcategory li label::after {
  content: "";
  display: block;
  position: absolute;
  transform: translateY(-50%);
}
.search-box .subcategory li label::before {
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  top: 12px;
  left: 0;
}
.search-box .subcategory li label::after {
  width: 4px;
  height: 8px;
  top: 0.42em;
  left: 0.35em;
  opacity: 0;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(50deg);
  transition: opacity .1s;
}
.search-box .subcategory li input[type=checkbox]:checked + label::after,
.search-box .subcategory li input[type=radio]:checked + label::after {
  opacity: 1;
}
.search-box .subcategory li:last-child p.bottom-button,
.search-box .subcategory li:last-child .bottom-button {
  margin-bottom: 0;
}

/*------------------------------------------------------------
 * sns-link, share-link
------------------------------------------------------------*/
.article .share-link {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 34px auto 30px;
}
.article .share-link li {
  margin-right: 9px;
}
.article .share-link li:first-child {
  width: 93px;
}
.article .share-link li:last-child {
  margin-right: 0;
}
.article .share-link li table {
  margin: 0;
}
.article .share-link li a {
  display: inline-block;
}
.article .share-link li img {
  display: block;
}