@charset "UTF-8";
@font-face {
  font-family: "Hello-Handmade";
  src: url(../font/Handmade-Sans.otf) format("opentype");
}
html {
  font-family: "ibm-plex-sans-jp", sans-serif;
  font-size: 10px;
  line-height: 10px;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 280px;
}
@media screen and (max-width: 780px) {
  html {
    font-size: 8px;
    line-height: 8px;
    scroll-padding-top: 20px;
  }
}

body {
  height: 100%;
}

button {
  outline: none;
  background: none;
}

a,
a:link,
a:visited {
  color: #232323;
  border: none;
}

button:focus-visible,
input:focus-visible,
form:focus-visible {
  outline: solid 1px #000;
  margin: 0px;
}

a:focus-visible {
  border: solid 1px #000;
  margin: 0px;
}

.g-container .g-main .adjust-width .emoji {
  width: 1em;
  height: 1em;
  margin: 0 0.1em 3px;
  vertical-align: middle;
}
.g-container ul,
.g-container li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.g-container img {
  width: 100%;
}

a {
  transition: all 0.5s;
}

.en {
  font-family: "Hello-Handmade";
  font-weight: 400;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ======================================================================
 *  メイン横幅調節用
====================================================================== */
.adjust-width {
  width: 95%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .adjust-width {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.g-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* ======================================================================
 *  ヘッダー
====================================================================== */
.header-notice {
  width: 100%;
  background: #CA0B1B;
  overflow: hidden;
}
.header-notice .splide__arrows {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -180px;
  width: 90px;
  margin: auto;
  display: flex;
}
@media screen and (max-width: 780px) {
  .header-notice .splide__arrows {
    right: -80px;
    width: 55px;
  }
}
.header-notice .splide__arrow--prev {
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  background: none;
  opacity: 1;
}
@media screen and (max-width: 780px) {
  .header-notice .splide__arrow--prev {
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
  }
}
.header-notice .splide__arrow--prev svg {
  display: none;
}
.header-notice .splide__arrow--prev:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/common/arrow_left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 14px;
  height: 12px;
  margin: auto;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 780px) {
  .header-notice .splide__arrow--prev:after {
    width: 10px;
    height: 8px;
  }
}
.header-notice .splide__arrow--prev:hover:after {
  transform: translateX(-2px);
}
.header-notice .splide__arrow--next {
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  background: none;
  opacity: 1;
}
@media screen and (max-width: 780px) {
  .header-notice .splide__arrow--next {
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
  }
}
.header-notice .splide__arrow--next svg {
  display: none;
}
.header-notice .splide__arrow--next:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/common/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 14px;
  height: 12px;
  margin: auto;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 780px) {
  .header-notice .splide__arrow--next:after {
    width: 10px;
    height: 8px;
  }
}
.header-notice .splide__arrow--next:hover:after {
  transform: translateX(2px);
}
.header-notice .splide__playpause {
  display: grid;
  place-items: center;
  width: 32px;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -80px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  margin: auto;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 780px) {
  .header-notice .splide__playpause {
    width: 26px;
    right: -30px;
  }
}
.header-notice .splide__playpause:hover {
  opacity: 0.7;
}
.header-notice .splide__playpause::before {
  content: "";
  width: 100%;
  background-image: url(../images/common/icon_play_w.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 17px;
  height: 17px;
}
@media screen and (max-width: 780px) {
  .header-notice .splide__playpause::before {
    width: 10px;
    height: 10px;
  }
}
.header-notice .splide__playpause {
  /* 再生中 */
}
.header-notice .splide__playpause.is-active::before {
  background-image: url(../images/common/icon_pause_w.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 17px;
  height: 17px;
}
@media screen and (max-width: 780px) {
  .header-notice .splide__playpause.is-active::before {
    width: 12px;
    height: 12px;
  }
}
.header-notice .header-notice-in {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header-notice .header-notice-in {
    padding: 6px 0;
  }
}
.header-notice .header-notice-in .header-notice__title {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #fff;
  position: relative;
  padding-left: 50px;
  display: block;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .header-notice .header-notice-in .header-notice__title {
    font-size: 1rem;
    padding-left: 38px;
    margin: 0 15px 0 0;
    padding: 22px 0 0;
  }
}
.header-notice .header-notice-in .header-notice__title:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-image: url(../images/common/icon_notice.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  width: 38px;
  height: 30px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .header-notice .header-notice-in .header-notice__title:before {
    width: 25px;
    height: 18px;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
  }
}
.header-notice .header-notice-in .header-notice__list {
  width: 65%;
  position: relative;
  margin-right: 15%;
}
@media screen and (max-width: 780px) {
  .header-notice .header-notice-in .header-notice__list {
    width: 60%;
    margin-right: 20%;
  }
}
.header-notice .header-notice-in .header-notice__list ul::-webkit-scrollbar {
  height: 6px;
}
.header-notice .header-notice-in .header-notice__list ul::-webkit-scrollbar-thumb {
  background: #d34955;
}
.header-notice .header-notice-in .header-notice__list ul::-webkit-scrollbar-track {
  background: #c5969a;
}
.header-notice .header-notice-in .header-notice__list ul li {
  list-style: none;
  margin-right: 15px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 780px) {
  .header-notice .header-notice-in .header-notice__list ul li {
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-right: 10px;
    margin: 0 40px;
  }
}
.header-notice .header-notice-in .header-notice__list ul li .notice__list {
  /* width: 380px; */
  display: flex;
  align-items: flex-start;
  color: #fff;
}
@media screen and (max-width: 780px) {
  .header-notice .header-notice-in .header-notice__list ul li .notice__list {
    width: 260px;
  }
}
.header-notice .header-notice-in .header-notice__list ul li span.notice__date {
  margin-right: 10px;
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 780px) {
  .header-notice .header-notice-in .header-notice__list ul li span.notice__date {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
.header-notice .header-notice-in .header-notice__list ul li span.notice__text {
  position: relative;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: 0.6px;
  display: inline;
  vertical-align: middle;
}
.header-notice .header-notice-in .header-notice__list ul li span.notice__text i.blank-icon {
  padding-left: 5px;
}
.header-notice .header-notice-in .header-notice__list ul li span.notice__text i.blank-icon img {
  width: 18px;
  height: auto;
  vertical-align: middle;
}
@media screen and (max-width: 780px) {
  .header-notice .header-notice-in .header-notice__list ul li span.notice__text i.blank-icon img {
    width: 13px;
  }
}
.header-notice .header-notice-in .header-notice__list ul li a {
  display: block;
  margin: 0;
  color: #fff;
  text-decoration: none;
}
.header-notice .header-notice-in .header-notice__list ul li a:hover {
  opacity: 0.7;
}

.swiper-container.swiper_main {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.swiper-container.swiper_main .swiper-wrapper {
  width: 100%;
}
.swiper-container.swiper_sub {
  overflow: hidden;
  height: 10px;
}
@media screen and (max-width: 780px) {
  .swiper-container.swiper_sub {
    height: 0px;
  }
}

.g-header {
  position: relative;
  width: 100%;
  margin-top: 0;
  transition: height 0.3s, border 0.2s;
  z-index: 97;
  background: #fff;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
  color: #414141;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 768px) {
  .g-header {
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);
  }
}
.g-header .header-main {
  width: 96%;
  height: 120px;
  max-width: 1650px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .g-header .header-main {
    width: 90%;
    height: 60px;
    padding: 1px 0;
  }
}
.g-header .header-main .message {
  width: 38%;
  position: absolute;
  top: 25px;
  bottom: 0;
  left: 5%;
  margin: auto;
}
.g-header .header-main .message p {
  width: 84%;
  max-width: 475px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .g-header .header-main .message p {
    display: none;
  }
}
.g-header .header-main .header-logo {
  width: 20%;
  max-width: 171px;
  margin-right: 25px;
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.g-header .header-main .header-logo a {
  display: block;
}
@media screen and (max-width: 780px) {
  .g-header .header-main .header-logo {
    width: 27%;
    max-width: 100px;
    top: 7px;
  }
}
.g-header .header-main .link-item {
  width: 40%;
  position: inherit;
}
.g-header .header-main .link-item ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.g-header .header-main .link-item ul li {
  width: 40px;
}
@media screen and (max-width: 768px) {
  .g-header .header-main .link-item ul li {
    width: 22px;
    height: 22px;
  }
}
.g-header .header-main .link-item ul li:first-child {
  margin-right: 30px;
  /* text-align: right;
  width: 50px; */
  /*  @media screen and (min-width: 769px) {

     &:hover,
     &:active {
       width: 350px;

       .search_container {

         width: 300px;
         position: relative;

         &:before {
           content: '';
           position: absolute;
           right: 0;
           bottom: 0;
           width: 0;
           border-bottom: solid 2px #E60000;
           animation: border_anim 0.4s linear forwards;
         }

         @keyframes border_anim {
           0% {
             width: 0%;
           }

           100% {
             width: 100%;
           }
         }


         input[type="text"] {
           display: block;
           font-size: 1.5rem;
           background: none;
         }
       }
     }

   }*/
}
@media screen and (max-width: 768px) {
  .g-header .header-main .link-item ul li:first-child {
    margin-right: 20px;
  }
}
.g-header .header-main .link-item ul li a {
  display: block;
}
.g-header .header-main .link-item ul li a:hover {
  opacity: 0.6;
}
.g-header .header-main .link-item ul li .icon_black {
  display: none;
}
.g-header .header-main .link-item ul li .search_container {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  margin: 0 0 0 auto;
  padding: 5px 0;
  height: 50px;
  width: 40px;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .g-header .header-main .link-item ul li .search_container {
    padding: 0;
    height: 23px;
    width: 21px;
  }
}
.g-header .header-main .link-item ul li .search_container input[type=text] {
  border: none;
  height: 40px;
  width: 250px;
  display: none;
}
.g-header .header-main .link-item ul li .search_container input[type=text]:focus {
  outline: none;
}
.g-header .header-main .link-item ul li .search_container button[type=submit] {
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  pointer-events: none;
  /*  background-image: url(../images/common/icon_serch.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left; */
  width: 40px;
  height: 40px;
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  .g-header .header-main .link-item ul li .search_container button[type=submit] {
    height: 25px;
    width: 25px;
  }
}
.g-header .header-main .link-item ul li .search_container ::-webkit-input-placeholder {
  color: #fff;
}

.g-header.-js-scroll {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .g-header.-js-scroll {
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
  }
}
@media screen and (max-width: 768px) {
  .g-header.-js-scroll {
    position: relative;
  }
}
.g-header.-js-scroll .header-notice {
  display: none;
}

.micromodal {
  position: relative;
}

.menu-toggle {
  width: 76px;
  height: 76px;
  margin: 0 0 0 0px;
  position: relative;
  /* -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; */
  z-index: 110;
  border: none;
  color: #414141;
  transition: all 0.5s;
  cursor: pointer;
  background: none;
}
@media screen and (max-width: 780px) {
  .menu-toggle {
    width: auto;
    height: 45px;
    padding: 0;
  }
  .menu-toggle.-js-scroll {
    width: 20%;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 10000;
    outline: none;
  }
  .menu-toggle.-js-scroll .btn-trigger span {
    background: #fff;
  }
}

.header-main .menu-toggle[aria-expanded=true] {
  position: fixed;
  top: 40px;
  left: 15px;
}
@media screen and (max-width: 780px) {
  .header-main .menu-toggle[aria-expanded=true] {
    top: 50px;
    left: 15px;
  }
  .header-main .menu-toggle[aria-expanded=true].-js-scroll {
    position: fixed;
    top: 50px;
    left: 15px;
    right: auto;
    bottom: auto;
  }
  .header-main .menu-toggle[aria-expanded=true].-js-scroll .btn-trigger span {
    background: #414141;
  }
}

.menu-toggle:hover {
  opacity: 0.7;
}

.btn-trigger {
  position: relative;
  width: 50px;
  height: 32px;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  transition: all 0.5s;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .btn-trigger {
    width: 36px;
    height: 25px;
  }
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #414141;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 15px;
}
@media screen and (max-width: 780px) {
  .btn-trigger span:nth-of-type(2) {
    top: 12px;
  }
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
@media screen and (max-width: 780px) {
  .btn-trigger span:nth-of-type(3) {
    top: 24px;
    bottom: auto;
  }
}
.btn-trigger span:nth-of-type(1) {
  animation: btn-close01 0.75s forwards;
}

@keyframes btn-close01 {
  0% {
    transform: translateY(15px) rotate(45deg);
  }
  50% {
    transform: translateY(15px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@media screen and (max-width: 780px) {
  @keyframes btn-close01 {
    0% {
      transform: translateY(12px) rotate(45deg);
    }
    50% {
      transform: translateY(12px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
}
.btn-trigger span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}

.btn-trigger span:nth-of-type(3) {
  animation: btn-close03 0.75s forwards;
}

@keyframes btn-close03 {
  0% {
    transform: translateY(-15px) rotate(-45deg);
  }
  50% {
    transform: translateY(-15px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@media screen and (max-width: 780px) {
  @keyframes btn-close03 {
    0% {
      transform: translateY(-12px) rotate(-45deg);
    }
    50% {
      transform: translateY(-12px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
}
.menu-toggle[aria-expanded=true] .btn-trigger span:nth-of-type(1) {
  animation: active-btn-close01 0.75s forwards;
}

@keyframes active-btn-close01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(15px) rotate(0);
  }
  100% {
    transform: translateY(15px) rotate(45deg);
  }
}
@media screen and (max-width: 780px) {
  @keyframes active-btn-close01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(12px) rotate(0);
    }
    100% {
      transform: translateY(12px) rotate(45deg);
    }
  }
}
.menu-toggle[aria-expanded=true] .btn-trigger span:nth-of-type(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded=true] .btn-trigger span:nth-of-type(3) {
  animation: active-btn-close03 0.75s forwards;
}

@keyframes active-btn-close03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(0);
  }
  100% {
    transform: translateY(-15px) rotate(-45deg);
  }
}
@media screen and (max-width: 780px) {
  @keyframes active-btn-close03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-12px) rotate(0);
    }
    100% {
      transform: translateY(-12px) rotate(-45deg);
    }
  }
}
.g-menu {
  font-size: 3rem;
  line-height: 2rem;
  text-align: center;
  max-width: 640px;
  width: 90%;
  height: 41%;
  max-height: 426px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 780px) {
  .g-menu {
    height: 36%;
    margin-bottom: 5px;
  }
}
.g-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  border-left: 1px solid #414141;
  border-top: 1px solid #414141;
  width: 100%;
  max-width: 640px;
  height: 100%;
}
.g-menu ul li {
  width: 33.333%;
  border-right: 1px solid #414141;
  border-bottom: 1px solid #414141;
  box-sizing: border-box;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.g-menu ul li a {
  text-decoration: none;
  color: #414141;
  padding: 30px 10px 5px;
  display: block;
  position: relative;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 780px) {
  .g-menu ul li a {
    padding: 20px 1px 5px;
  }
}
.g-menu ul li a:hover {
  transform: translateY(-8px);
}
.g-menu ul li a:hover .text {
  transform: translateY(-2px);
}
.g-menu ul li a::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 100px;
  min-width: 90px;
  max-height: 95px;
  min-height: 65px;
  margin-right: auto;
  margin-left: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 780px) {
  .g-menu ul li a::before {
    max-width: 70px;
    min-width: 50px;
    max-height: 70px;
    min-height: 50px;
  }
}
.g-menu ul li a .text {
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin: 1em 0;
  display: inline-block;
}
@media screen and (max-width: 780px) {
  .g-menu ul li a .text {
    margin-top: 5px;
  }
}
.g-menu ul li.navi-shop a::before {
  background-image: url(../images/common/menu_shop.png);
}
.g-menu ul li.navi-gourmet a::before {
  background-image: url(../images/common/menu_gourmet.png);
}
.g-menu ul li.navi-floor a::before {
  background-image: url(../images/common/menu_floor.png);
}
.g-menu ul li.navi-event a::before {
  background-image: url(../images/common/menu_event.png);
}
.g-menu ul li.navi-news a::before {
  background-image: url(../images/common/menu_news.png);
}
.g-menu ul li.navi-access a::before {
  background-image: url(../images/common/menu_access.png);
}

.sub-menu {
  width: 90%;
  max-width: 640px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 780px) {
  .sub-menu {
    width: 100%;
    margin-top: 15px;
  }
}
.sub-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  border-left: 1px solid #414141;
  border-top: 1px solid #414141;
  max-width: 640px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 780px) {
  .sub-menu ul {
    width: 100%;
    border-left: none;
  }
}
.sub-menu ul li {
  width: 33.333%;
  border-right: 1px solid #414141;
  border-bottom: 1px solid #414141;
  box-sizing: border-box;
}
@media screen and (max-width: 780px) {
  .sub-menu ul li:last-child {
    border-right: none;
  }
}
.sub-menu ul li a {
  text-decoration: none;
  color: #414141;
  padding: 7px 7px 7px;
  display: block;
  position: relative;
}
@media screen and (max-width: 780px) {
  .sub-menu ul li a {
    padding: 4px 1px 4px;
  }
}
.sub-menu ul li a:hover {
  background: #A9ACAB;
}
.sub-menu ul li a:hover .text:after {
  transform: translateX(8px);
}
@media screen and (max-width: 780px) {
  .sub-menu ul li a:hover .text:after {
    display: block;
  }
}
.sub-menu ul li a .text {
  font-size: 1.3rem;
  line-height: 1.8rem;
  text-align: center;
  font-weight: 600;
  position: relative;
  margin: 0.7em 0;
  padding-right: 30px;
  display: inline-block;
  color: #414141;
}
@media screen and (max-width: 780px) {
  .sub-menu ul li a .text {
    padding-right: 0px;
    padding-bottom: 18px;
    margin: 8px 0;
  }
}
.sub-menu ul li a .text:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/arrow_right_b.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 19px;
  height: 16px;
  margin: auto;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 780px) {
  .sub-menu ul li a .text:after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 14px;
    height: 12px;
  }
}
@media screen and (max-width: 780px) {
  .sub-menu ul li a[target=_blank] {
    padding-right: 0;
  }
}
.sub-menu ul li a[target=_blank] .text:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  background-image: url(../images/common/icon_blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 16px;
  height: 14px;
  margin: auto;
}
@media screen and (max-width: 780px) {
  .sub-menu ul li a[target=_blank] .text:before {
    top: auto;
    width: 15px;
    height: 12px;
    bottom: 0px;
    left: -10px;
  }
}
.sub-menu ul li a[target=_blank] .text:after {
  right: -14px;
}
@media screen and (max-width: 780px) {
  .sub-menu ul li a[target=_blank] .text:after {
    right: -22px;
  }
}

.logo-30th {
  width: 107px;
  margin: 10px auto;
  transition: transform 0.3s ease-in-out;
}
.logo-30th a {
  display: block;
}
@media screen and (max-width: 780px) {
  .logo-30th {
    width: 18%;
  }
}
.logo-30th:hover {
  transform: translateY(-5px);
}
.logo-30th img {
  width: 100%;
}

.other-menu {
  width: 100%;
  border-top: 1px solid #414141;
  border-bottom: 1px solid #414141;
}
.other-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.other-menu ul li {
  margin-right: 80px;
}
@media screen and (max-width: 780px) {
  .other-menu ul li {
    margin-right: 20px;
  }
}
.other-menu ul li:last-child {
  margin-right: 0;
}
.other-menu ul li a {
  display: block;
  color: #414141;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 20px 0;
  position: relative;
  transition: all 0.5s;
}
.other-menu ul li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 780px) {
  .other-menu ul li a {
    margin: 10px 0;
  }
  .other-menu ul li a .text {
    margin: 5px 0;
  }
}
.other-menu ul li a.blank-icon {
  padding-right: 30px;
  position: relative;
}
.other-menu ul li a.blank-icon:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/icon_blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 18px;
  height: 16px;
  margin: auto;
}
@media screen and (max-width: 780px) {
  .other-menu ul li a.blank-icon {
    padding-right: 15px;
  }
  .other-menu ul li a.blank-icon:after {
    width: 12px;
    height: 11px;
  }
}
.other-menu ul li a:hover {
  color: #000;
}

.copyright {
  font-size: 1.3rem;
  line-height: 1.8rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #414141;
  margin: 10px 0 0;
}

.sns-box {
  position: fixed;
  top: 40%;
  right: 0;
  text-align: center;
  background-color: #FDFCF8;
  border: 1px solid #000;
  border-right: none;
  width: 57px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}
@media screen and (max-width: 780px) {
  .sns-box {
    top: 50%;
    width: 34px;
  }
}
.sns-box .sns-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-family: "futura-pt-condensed", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 780px) {
  .sns-box .sns-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.sns-box ul li {
  width: 36px;
  margin-bottom: 20px;
}
@media screen and (max-width: 780px) {
  .sns-box ul li {
    width: 70%;
    margin: 0 auto 12px;
  }
}
.sns-box ul li a:hover {
  opacity: 0.7;
}

.pageTop {
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 90;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-name: fadein;
  transform: translateY(0);
}
@media screen and (max-width: 780px) {
  .pageTop {
    bottom: 65px;
  }
}
.pageTop a {
  display: block;
  width: 76px;
}
@media screen and (max-width: 780px) {
  .pageTop a {
    width: 50px;
    height: 50px;
  }
}
.pageTop img {
  width: 100%;
  vertical-align: bottom;
}

/* ======================================================================
 *  スマホメニュー
====================================================================== */
.sp-menu.js-sp-footer-menu {
  display: none;
}
@media screen and (max-width: 780px) {
  .sp-menu.js-sp-footer-menu {
    display: block;
    margin: 0px 0 0;
    padding: 7px 0;
    background: rgba(202, 11, 27, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    bottom: -200px;
    left: 0;
    z-index: 90;
    width: 100%;
    box-shadow: 0 -1px 3px rgba(196, 184, 163, 0.6);
    transition: bottom 0.3s;
    border-radius: 0;
  }
  .sp-menu.js-sp-footer-menu ul {
    display: flex;
  }
  .sp-menu.js-sp-footer-menu ul li {
    width: 25%;
    text-align: center;
    border-right: 1px solid #fff;
  }
  .sp-menu.js-sp-footer-menu ul li:last-child {
    border: none;
  }
  .sp-menu.js-sp-footer-menu ul li .menu-text {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin: 5px 0 0;
    display: block;
    font-family: "futura-pt-condensed", sans-serif;
    text-transform: uppercase;
  }
  .sp-menu.js-sp-footer-menu ul li a {
    display: block;
    padding: 1px 1px 0px;
    color: #fff;
    text-decoration: none;
  }
  .sp-menu.js-sp-footer-menu ul li a::before {
    content: "";
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 45px;
    min-width: 35px;
    max-height: 45px;
    min-height: 35px;
    margin-right: auto;
    margin-left: auto;
    flex-shrink: 0;
  }
  .sp-menu.js-sp-footer-menu ul li a .text {
    margin-bottom: 0;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-top: 7px;
    display: inline-block;
  }
  .sp-menu.js-sp-footer-menu ul li.navi-shop a::before {
    background-image: url(../images/common/menu_shop.png);
  }
  .sp-menu.js-sp-footer-menu ul li.navi-gourmet a::before {
    background-image: url(../images/common/menu_gourmet.png);
  }
  .sp-menu.js-sp-footer-menu ul li.navi-floor a::before {
    background-image: url(../images/common/menu_floor.png);
  }
  .sp-menu.js-sp-footer-menu ul li.navi-event a::before {
    background-image: url(../images/common/menu_event.png);
  }
}
.sp-menu.-js-scroll {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* ======================================================================
 *  フッター
====================================================================== */
.footer-notice {
  width: 100%;
  background: #FDFCF8;
  border: #414141 1px solid;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 780px) {
  .footer-notice {
    flex-direction: column;
  }
}
.footer-notice .section-title {
  display: block;
  width: 15%;
  margin: 0;
  text-align: center;
  color: #414141;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 780px) {
  .footer-notice .section-title {
    width: 100%;
    padding: 18px 0;
  }
}
.footer-notice .section-title .en {
  text-transform: uppercase;
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2em;
  font-family: "futura-pt-condensed", sans-serif;
  font-weight: 700;
}
.footer-notice .section-title .section-sub-title {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 2.3rem;
}
.footer-notice .notice-inner {
  width: 70%;
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner {
    width: 100%;
  }
}
.footer-notice .notice-inner ul {
  width: 100%;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner ul {
    flex-direction: column;
  }
}
.footer-notice .notice-inner ul li {
  width: 33.3333%;
  border-right: 1px solid;
  text-align: center;
  position: relative;
  transition: all 0.5s;
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner ul li {
    width: 100%;
  }
}
.footer-notice .notice-inner ul li:first-child {
  border-left: 1px solid #414141;
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner ul li:first-child {
    border-left: none;
  }
}
.footer-notice .notice-inner ul li:hover {
  opacity: 0.6;
  background-color: #fff;
}
.footer-notice .notice-inner ul li:hover:before {
  opacity: 0.8;
}
.footer-notice .notice-inner ul li:hover:after {
  transform: scaleX(1.05) translateX(3px);
}
.footer-notice .notice-inner ul li:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #E60000;
  border-top: #414141 1px solid;
  border-left: #414141 1px solid;
  margin: auto;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 1300px) {
  .footer-notice .notice-inner ul li:before {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner ul li:before {
    width: 25px;
    height: 25px;
  }
}
.footer-notice .notice-inner ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/arrow_right.svg);
  background-size: 21px 18px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 50px;
  height: 50px;
  margin: auto;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 1300px) {
  .footer-notice .notice-inner ul li:after {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner ul li:after {
    width: 25px;
    height: 25px;
    background-size: 14px 11px;
  }
}
.footer-notice .notice-inner ul li a {
  color: #414141;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner ul li a {
    flex-direction: row;
  }
}
.footer-notice .notice-inner ul li a[target=_blank] .title span {
  display: inline-block;
  position: relative;
  padding-right: 38px;
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner ul li a[target=_blank] .title span {
    padding-right: 20px;
  }
}
.footer-notice .notice-inner ul li a[target=_blank] .title span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/icon_blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 28px;
  height: 26px;
  margin: auto;
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner ul li a[target=_blank] .title span:after {
    top: auto;
    width: 16px;
    height: 14px;
    bottom: 2px;
  }
}
.footer-notice .notice-inner ul li .title {
  font-size: 2.4rem;
  line-height: 2.2rem;
  letter-spacing: 0.6px;
  font-weight: 700;
  padding: 20px 0 18px;
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner ul li .title {
    display: none;
  }
}
.footer-notice .notice-inner ul li .thumb {
  border-top: 1px solid #414141;
  border-bottom: 1px solid #414141;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner ul li .thumb {
    width: 46%;
    border-bottom: none;
  }
}
.footer-notice .notice-inner ul li .thumb img {
  vertical-align: bottom;
}
.footer-notice .notice-inner ul li .text {
  font-size: 1.5rem;
  line-height: 2.4rem;
  letter-spacing: 0.6px;
  font-weight: 600;
  padding: 20px 0;
}
@media screen and (max-width: 780px) {
  .footer-notice .notice-inner ul li .text {
    width: 54%;
    border-left: 1px solid #414141;
    border-top: 1px solid #414141;
    border-right: none;
    font-size: 10px;
    line-height: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    box-sizing: border-box;
  }
  .footer-notice .notice-inner ul li .text .title {
    display: inline-block;
    font-size: 13px;
    line-height: 1.8rem;
    margin: 0 0 5px;
    padding: 0;
  }
  .footer-notice .notice-inner ul li .text p {
    margin-top: 5px;
    margin-bottom: 0;
    text-align: left;
  }
}

.footer-container {
  background: #910915;
  width: 100%;
  padding: 5px 0;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 780px) {
  .footer-container {
    padding: 5px 0 65px;
  }
}
.footer-container .footer-menu {
  max-width: 1100px;
  width: 84%;
  margin: 60px auto;
}
@media screen and (max-width: 780px) {
  .footer-container .footer-menu {
    width: 86%;
    margin: 40px auto;
  }
}
.footer-container .footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
}
.footer-container .footer-menu ul li {
  width: 25%;
  height: 49px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 780px) {
  .footer-container .footer-menu ul li {
    width: 50%;
    height: 40px;
  }
}
.footer-container .footer-menu ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.footer-container .footer-menu ul li a .text {
  display: inline-block;
  min-width: 10em;
  margin: 0;
  padding-right: 40px;
  font-size: 1.5rem;
  line-height: 49px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 980px) {
  .footer-container .footer-menu ul li a .text {
    padding-right: 20px;
    min-width: 9em;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 780px) {
  .footer-container .footer-menu ul li a .text {
    min-width: 9em;
    line-height: 40px;
    text-align: left;
    padding-right: 15px;
  }
}
.footer-container .footer-menu ul li a .text:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 21px;
  height: 18px;
  margin: auto;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 780px) {
  .footer-container .footer-menu ul li a .text:after {
    width: 13px;
    height: 10px;
  }
}
.footer-container .footer-menu ul li:hover {
  background: #9C545B;
  border-bottom: 1px solid #fff;
}
.footer-container .footer-menu ul li:hover .text:after {
  transform: translateX(8px);
}
.footer-container .footer-other-menu {
  width: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.footer-container .footer-other-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-container .footer-other-menu ul li {
  margin-right: 80px;
}
@media screen and (max-width: 780px) {
  .footer-container .footer-other-menu ul li {
    margin-right: 25px;
  }
}
.footer-container .footer-other-menu ul li:last-child {
  margin-right: 0;
}
.footer-container .footer-other-menu ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 25px 0;
  position: relative;
  transition: all 0.5s;
  box-sizing: border-box;
}
@media screen and (max-width: 780px) {
  .footer-container .footer-other-menu ul li a {
    margin: 20px 0;
  }
}
.footer-container .footer-other-menu ul li a:hover {
  font-weight: 600;
  opacity: 0.7;
}
.footer-container .footer-other-menu ul li a.blank-icon {
  padding-right: 30px;
}
@media screen and (max-width: 780px) {
  .footer-container .footer-other-menu ul li a.blank-icon {
    padding-right: 20px;
  }
}
.footer-container .footer-other-menu ul li a.blank-icon:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/icon_blank_w.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 18px;
  height: 16px;
  margin: auto;
}
@media screen and (max-width: 780px) {
  .footer-container .footer-other-menu ul li a.blank-icon:after {
    width: 14px;
    height: 12px;
  }
}

.foot-bottom {
  text-align: center;
}
.foot-bottom .copyright {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-weight: 600;
  margin: 28px 0 26px;
}

/* -----
 *modal
----------------------------------------------------------------------------- */
.g-header .header-main .micromodal-slide .modal__container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 50%;
  height: 100vh;
  background: #fff;
  margin: 0 auto;
  padding: 28px 0 20px;
  z-index: 100;
  color: #414141;
  text-align: center;
  overflow: auto;
  line-height: 1.31;
  transition: transform 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  box-sizing: border-box;
}
.g-header .header-main .micromodal-slide .modal__container .menu-title {
  font-size: 3rem;
  line-height: 2.7rem;
  border: 1px solid #414141;
  padding: 10px 30px 6px;
  display: inline-block;
  margin: 20px auto 30px;
  text-transform: uppercase;
}
@media screen and (max-width: 780px) {
  .g-header .header-main .micromodal-slide .modal__container .menu-title {
    margin-top: 28px;
    padding: 8px 20px 6px;
    line-height: 2rem;
    font-size: 2.4rem;
  }
}
.g-header .header-main .micromodal-slide[aria-hidden=false] .modal__container {
  min-width: 680px;
  max-width: 825px;
  transform: translateX(0);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
}
@media screen and (min-height: 1400px) {
  .g-header .header-main .micromodal-slide[aria-hidden=false] .modal__container {
    padding: 5% 0 10%;
  }
}
@media screen and (max-width: 780px) {
  .g-header .header-main .micromodal-slide[aria-hidden=false] .modal__container {
    min-width: auto;
    max-width: 100%;
    padding-bottom: 5%;
  }
}
.g-header .header-main .micromodal-slide[aria-hidden=false] .modal__container .link-item {
  display: none;
}
@media screen and (max-width: 780px) {
  .g-header .header-main .micromodal-slide[aria-hidden=false] .modal__container .link-item {
    display: block;
    width: 25%;
    top: 68px;
    right: 20px;
  }
}
@media screen and (max-width: 780px) {
  .g-header .header-main .micromodal-slide[aria-hidden=false] .link-item {
    /* animation: mmslideIn 0.8s cubic-bezier(0, 0, 0.2, 1); */
    /*   .search_container button[type="submit"] {
      background-image: url(../images/common/icon_serch_black.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center left;

    } */
  }
  .g-header .header-main .micromodal-slide[aria-hidden=false] .link-item .icon_black {
    display: block;
  }
  .g-header .header-main .micromodal-slide[aria-hidden=false] .link-item.-js-scroll {
    width: 40%;
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 1000;
    animation: mmslideIn 0.5s cubic-bezier(0, 0, 0.2, 1);
    transform: translateX(0);
  }
}
.g-header .header-main .micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
  display: none;
}
.g-header .header-main .micromodal-slide[aria-hidden=true] {
  /* .link-item {
          @media screen and (max-width:780px) {
            animation: mmslideOut 0.6s cubic-bezier(0, 0, 0.2, 1);
  }
  } */
}

@keyframes mmslideIn {
  from {
    transform: translateX(-100%);
    display: none;
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
    display: flex;
  }
}
@keyframes mmslideOut {
  from {
    transform: translateX(0);
    display: flex;
  }
  to {
    transform: translateX(-100%);
    display: none;
  }
}
.overlay {
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.8s, visibility 0.8s;
  visibility: hidden;
  width: 100vw;
  z-index: 10;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
}

.g-header.-js-scroll .overlay.active {
  background-color: rgba(255, 255, 255, 0.9);
}

/* ======================================================================
 *  g-main
====================================================================== */
.g-main {
  /* padding-top: 194px;  */
  padding-top: 0px;
  width: 100%;
  overflow: hidden;
  flex: 1;
  color: #414141;
  letter-spacing: 0.6px;
  word-wrap: break-word;
}

/* ------------------------------------------------------------
 * ぱんくず
------------------------------------------------------------ */
.breadcrumb {
  padding: 15px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 780px) {
  .breadcrumb {
    padding: 15px 0 0;
  }
}
.breadcrumb ul {
  width: 92%;
  max-width: 1100px;
  display: flex;
  flex-flow: wrap;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
.breadcrumb ul li,
.breadcrumb ul li a {
  color: #A9ACAB;
  text-decoration: none;
  list-style: none;
  font-size: 1rem;
  line-height: 1.3em;
  letter-spacing: 0.3px;
  font-weight: 600;
  white-space: nowrap;
  padding: 10px 10px 0px 0;
}
@media screen and (max-width: 780px) {
  .breadcrumb ul li,
  .breadcrumb ul li a {
    padding: 0px 5px 0px 0;
    font-size: 9px;
    line-height: 1.7em;
  }
}
.breadcrumb li {
  position: relative;
}
.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  padding-left: 1em;
  content: "＞";
}
.breadcrumb a:hover {
  color: #414141;
}
.breadcrumb a:hover:not(:last-child)::after {
  color: #A9ACAB;
}

/* ------------------------------------------------------------
 * タイトル
------------------------------------------------------------ */
.page-title {
  margin: 60px auto 43px;
  text-align: center;
  color: #414141;
  position: relative;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 780px) {
  .page-title {
    margin: 10px auto 10px;
  }
}
.page-title .en {
  text-transform: uppercase;
  font-size: 6.2rem;
  font-weight: 400;
  line-height: 1em;
}
@media screen and (max-width: 780px) {
  .page-title .en {
    font-size: 38px;
  }
}
.page-title .section-sub-title {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 2.3rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 780px) {
  .page-title .section-sub-title {
    font-size: 19px;
    padding-top: 5px;
  }
}
.page-title::before {
  display: block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 10px;
  flex-shrink: 0;
}
.page-title.information-title::before {
  width: 45px;
  height: 69px;
  background-image: url(../images/common/icon_information.png);
}
@media screen and (max-width: 780px) {
  .page-title.information-title::before {
    width: 32px;
    height: 55px;
  }
}
.page-title.shopnews-title {
  margin: 0px auto 43px;
}
.page-title.shopnews-title::before {
  width: 89px;
  height: 100px;
  background-image: url(../images/common/menu_news.png);
}
@media screen and (max-width: 780px) {
  .page-title.shopnews-title::before {
    width: 55px;
    height: 67px;
  }
}

.section-title {
  margin: 20px auto 40px;
  text-align: center;
  color: #414141;
  position: relative;
  z-index: 1;
  position: relative;
}
.section-title .en {
  text-transform: uppercase;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1em;
}
.section-title .section-sub-title {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 2.3rem;
  position: relative;
  z-index: 1;
}

.eventArea {
  position: relative;
}
.eventArea .section-title {
  padding-top: 95px;
}
@media screen and (max-width: 780px) {
  .eventArea .section-title {
    padding-top: 68px;
    margin-bottom: 15px;
  }
}
.eventArea .section-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: url(../images/common/menu_event.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 90px;
  height: 90px;
  margin: auto;
}
@media screen and (max-width: 780px) {
  .eventArea .section-title:before {
    width: 72px;
    height: 66px;
  }
}

.illust01_1 {
  position: absolute;
  top: -120px;
  right: 80%;
  width: 173px;
  height: 200px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.illust01_1:hover {
  transform: translateY(-10px);
}
@media screen and (max-width: 780px) {
  .illust01_1 {
    top: -50px;
    right: 76%;
    width: 65px;
    height: 75px;
  }
}

.illust01_2 {
  position: absolute;
  top: 10px;
  right: 74%;
  width: 163px;
  height: 173px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.illust01_2:hover {
  transition: transform 0.5s;
  transform: rotate(15deg);
}
@media screen and (max-width: 780px) {
  .illust01_2 {
    top: -10px;
    right: 68%;
    width: 62px;
    height: 66px;
  }
}

.illust02 .illust02_1 {
  position: absolute;
  top: -70px;
  left: 70%;
  width: 108px;
  height: 232px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 780px) {
  .illust02 .illust02_1 {
    top: -30px;
    left: 70%;
    width: 41px;
    height: 90px;
  }
}
.illust02 .illust02_2 {
  position: absolute;
  top: 48px;
  left: 72%;
  width: 103px;
  height: 122px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 780px) {
  .illust02 .illust02_2 {
    top: 16px;
    left: 74%;
    width: 40px;
    height: 47px;
  }
}
.illust02 .illust02_3 {
  position: absolute;
  top: -80px;
  left: 76%;
  width: 121px;
  height: 245px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 780px) {
  .illust02 .illust02_3 {
    top: -36px;
    left: 81%;
    width: 48px;
    height: 10px;
  }
}
.illust02:hover .illust02_1 {
  transition: transform 0.5s;
  transform: rotate(-7deg);
}
.illust02:hover .illust02_2 {
  transform: translateY(-3px);
}
.illust02:hover .illust02_3 {
  transition: transform 0.5s;
  transform: rotate(7deg);
}

.illust03_1 {
  position: absolute;
  top: -30px;
  right: 83%;
  width: 83px;
  height: 229px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.illust03_1:hover {
  transition: transform 0.3s;
  transform: rotate(-7deg);
}
@media screen and (max-width: 780px) {
  .illust03_1 {
    top: -30px;
    right: 83%;
    width: 41px;
    height: 114px;
  }
}

.illust03_2 {
  position: absolute;
  top: -40px;
  right: 76%;
  width: 95px;
  height: 145px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.illust03_2:hover {
  transition: transform 0.5s;
  transform: rotate(10deg);
}
@media screen and (max-width: 780px) {
  .illust03_2 {
    top: -10px;
    right: 70%;
    width: 47px;
    height: 72px;
  }
}

.illust03_3 {
  position: absolute;
  top: 70px;
  right: 71%;
  width: 97px;
  height: 100px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.illust03_3:hover {
  transition: transform 0.5s;
  transform: rotate(-10deg);
}
@media screen and (max-width: 780px) {
  .illust03_3 {
    display: none;
  }
}

.illust04_1 {
  position: absolute;
  top: 18px;
  left: 71%;
  width: 90px;
  height: 82px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.illust04_1:hover {
  transition: transform 0.5s;
  transform: rotate(10deg);
}
@media screen and (max-width: 780px) {
  .illust04_1 {
    top: -12px;
    left: 70%;
    width: 47px;
    height: 72px;
  }
}

.illust04_2 {
  position: absolute;
  top: -20px;
  left: 79%;
  width: 57px;
  height: 81px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.illust04_2:hover {
  transition: transform 0.5s;
  transform: scale(0.95);
}
@media screen and (max-width: 780px) {
  .illust04_2 {
    display: none;
  }
}

.illust04_3 {
  position: absolute;
  top: 80px;
  left: 76%;
  width: 94px;
  height: 76px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.illust04_3:hover {
  transition: transform 0.5s;
  transform: rotate(10deg);
}
@media screen and (max-width: 780px) {
  .illust04_3 {
    display: none;
  }
}

.illust04_4 {
  position: absolute;
  top: -40px;
  left: 84%;
  width: 103px;
  height: 223px;
  margin: auto;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.illust04_4:hover {
  transition: transform 0.5s;
  transform: scale(0.95);
}
@media screen and (max-width: 780px) {
  .illust04_4 {
    top: -20px;
    left: 82%;
    width: 51px;
    height: 111px;
  }
}

.shopnewsArea .section-title {
  padding-top: 80px;
}
@media screen and (max-width: 780px) {
  .shopnewsArea .section-title {
    padding-top: 65px;
    margin-bottom: 30px;
  }
}
.shopnewsArea .section-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: url(../images/common/menu_news.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 74px;
  height: 70px;
  margin: auto;
}
@media screen and (max-width: 780px) {
  .shopnewsArea .section-title:before {
    width: 61px;
    height: 58px;
  }
}

.newstoreArea .section-title {
  padding-top: 80px;
}
.newstoreArea .section-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: url(../images/common/menu_newstore.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 70px;
  height: 72px;
  margin: auto;
}

.instaArea {
  position: relative;
}
.instaArea .section-title {
  padding-top: 70px;
}
@media screen and (max-width: 780px) {
  .instaArea .section-title {
    padding-top: 55px;
  }
}
.instaArea .section-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: url(../images/common/icon_insta.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 58.5px;
  height: 58.5px;
  margin: auto;
}
@media screen and (max-width: 780px) {
  .instaArea .section-title:before {
    width: 49px;
    height: 49px;
  }
}

/* ------------------------------------------------------------
 * ボタン
------------------------------------------------------------ */
.post-list-link {
  text-align: center;
}
.post-list-link .button-link {
  width: 250px;
  height: 55px;
  display: inline-block;
  margin: 15px auto;
  background: #E60000;
  border: #414141 solid 1px;
  text-decoration: none;
  box-sizing: border-box;
}
@media screen and (max-width: 780px) {
  .post-list-link .button-link {
    padding: 0px 50px;
    width: auto;
    height: auto;
  }
}
.post-list-link .button-link span {
  color: #fff;
  position: relative;
  padding-right: 30px;
  font-size: 1.5rem;
  line-height: 5.5rem;
  letter-spacing: 0.6px;
  font-weight: 800;
}
.post-list-link .button-link span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 22px;
  height: 18px;
  margin: 0;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 780px) {
  .post-list-link .button-link span:after {
    width: 16px;
    height: 12px;
    margin: auto;
  }
}
.post-list-link .button-link:hover {
  background: #910915;
  box-shadow: 6px 2px 10px 0px rgba(0, 0, 0, 0.12);
}
.post-list-link .button-link:hover span:after {
  transform: translateX(5px);
}

/* ------------------------------------------------------------
 * タブ
------------------------------------------------------------ */
.head-group {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto 50px;
  position: relative;
}
@media screen and (max-width: 780px) {
  .head-group {
    margin: 0 auto 40px;
  }
}
.head-group .tab-switch {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  border-bottom: #A9ACAB 1px solid;
}
.head-group .tab-switch li.tab-item {
  width: 25%;
  list-style: none;
  display: block;
  margin: 0;
  padding: 20px 20px 34px;
  text-align: center;
  transition: all 0.5s;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.3rem;
  letter-spacing: 0.6px;
  color: #A9ACAB;
  border: none;
  box-sizing: border-box;
  pointer-events: none;
}
@media screen and (max-width: 780px) {
  .head-group .tab-switch li.tab-item {
    padding: 10px 10px 16px;
    font-size: 12px;
  }
}
.head-group .tab-switch li.tab-item a {
  pointer-events: all;
  padding: 10px 10px 2px;
  transition: all 0.5s;
  text-decoration: none;
}
@media screen and (max-width: 780px) {
  .head-group .tab-switch li.tab-item a {
    padding: 2px 5px 2px;
  }
}
.head-group .tab-switch li.tab-item a:hover {
  color: #414141;
  font-weight: 800;
}
.head-group .tab-switch li.tab-item.-js-current {
  color: #414141;
  font-weight: 800;
  pointer-events: none;
}
.head-group .tab-switch li.tab-item.-js-current a {
  border-bottom: 3px solid #E60000;
  pointer-events: none;
}
.head-group.shop-head-group {
  position: relative;
  margin: 100px auto 60px;
}
@media screen and (max-width: 780px) {
  .head-group.shop-head-group {
    margin: 18px auto 20px;
  }
}
.head-group.shop-head-group .tab-switch {
  width: 80%;
  max-width: 730px;
  margin: 0 auto;
  border-bottom: none;
}
.head-group.shop-head-group .tab-switch li.tab-item {
  width: 30%;
  max-width: 216px;
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
  transition: all 0.5s;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.3rem;
  letter-spacing: 0.6px;
  color: #A9ACAB;
  border: none;
  box-sizing: border-box;
  pointer-events: none;
  background: #EBEBEB;
}
@media screen and (max-width: 780px) {
  .head-group.shop-head-group .tab-switch li.tab-item {
    padding: 5px 10px 7px;
    font-size: 14px;
  }
}
.head-group.shop-head-group .tab-switch li.tab-item a {
  display: block;
  pointer-events: all;
  padding: 25px 20px 25px;
  transition: all 0.5s;
  font-weight: 600;
  color: #797979;
}
@media screen and (max-width: 780px) {
  .head-group.shop-head-group .tab-switch li.tab-item a {
    padding: 2px 5px 2px;
    line-height: 2rem;
  }
}
.head-group.shop-head-group .tab-switch li.tab-item a:hover {
  color: #414141;
  background: #d1d1d1;
}
.head-group.shop-head-group .tab-switch li.tab-item.-js-current {
  position: relative;
  z-index: 1;
  border-bottom: none;
  background: #fff;
  border: #414141 1px solid;
  border-bottom: none;
  pointer-events: none;
}
@media screen and (max-width: 780px) {
  .head-group.shop-head-group .tab-switch li.tab-item.-js-current {
    bottom: -0.5px;
  }
}
.head-group.shop-head-group .tab-switch li.tab-item.-js-current a {
  border: none;
  color: #414141;
  font-weight: 800;
  pointer-events: none;
}
.head-group.shop-head-group .tab-switch li.tab-item.-js-current a:hover {
  background: #fff;
}
.head-group.shop-head-group:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0%;
  width: 100%;
  height: 1px;
  border-bottom: #414141 1px solid;
  z-index: 0;
}

.js-tab-box {
  display: none;
}
.js-tab-box.is-open {
  display: block;
  animation: fadeIn 0.3s ease 0.3s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}
/* ------------------------------------------------------------
 * 一覧
------------------------------------------------------------ */
/* &.swiper-slide{
padding: 10px 11px 0;
} */
.category {
  position: absolute;
  top: -20px;
  left: -11px;
  z-index: 10;
}
@media screen and (max-width: 780px) {
  .category {
    top: -18px;
  }
}
.category p,
.category span {
  border: 1px solid #414141;
  font-size: 1.3rem;
  line-height: 1.6rem;
  font-weight: 700;
  padding: 1px 4px;
  display: inline-block;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 780px) {
  .category p,
  .category span {
    padding: 2px 4px 1px;
  }
}
.category p:after,
.category span:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  background-image: url(../images/common/icon_op.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 11px;
  height: 10px;
}
.category p.-food,
.category span.-food {
  background: #F39800;
}
.category p.-exhibition,
.category span.-exhibition {
  background: #9D8DFD;
}
.category p.-facility,
.category span.-facility {
  background: #E60000;
}
.category p.-music,
.category span.-music {
  background: #5CC1F8;
}
.category p.-kids,
.category span.-kids {
  background: #FD94B2;
}
.category p.-pop,
.category span.-pop {
  background: #41DB6C;
}
.category p.-sale,
.category span.-sale {
  background: #FA7878;
}

.contents .property .new {
  color: #E60000;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-top: 5px;
  margin-bottom: 0px;
  margin-right: 15px;
  font-family: "futura-pt-condensed", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 780px) {
  .contents .property .new {
    margin-right: 10px;
  }
}
.contents .property .event-progress {
  color: #414141;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.3rem;
  margin-top: 5px;
  margin-bottom: 0px;
  border: 1px solid #414141;
  padding: 1px 5px 0px;
}
.contents .property .event-progress {
  color: #414141;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.3rem;
  margin-top: 5px;
  margin-bottom: 0px;
  border: 1px solid #414141;
  padding: 1px 5px 0px;
}
.contents .property .event-end {
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.3rem;
  margin-top: 5px;
  margin-bottom: 0px;
  background: #414141;
  border: 1px solid #414141;
  padding: 1px 5px 0px;
}

/* ------------------------------------------------------------
 * ショップ
------------------------------------------------------------ */
.shopArea {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .shopArea {
    width: 100%;
  }
}
.shopArea .shop-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 150px;
}
@media screen and (max-width: 768px) {
  .shopArea .shop-inner {
    width: 100%;
    padding: 0;
    margin: 0 auto 100px;
  }
}

/* ------------------------------------------------------------
 * ショップニュース
------------------------------------------------------------ */
.shopnewsArea {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .shopnewsArea {
    width: 100%;
  }
}
.shopnewsArea .shopnews-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 150px;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .shopnewsArea .shopnews-inner {
    width: 100%;
    padding: 0;
    margin: 0 auto 100px;
  }
}
@media screen and (max-width: 768px) {
  .shopnewsArea .shopnews-inner .shop-container {
    width: 90%;
    margin: 0 auto;
  }
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 780px) {
  .shopnewsArea .shopnews-inner .shop-container .shop-wrapper {
    margin-bottom: 0px;
  }
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 20px;
  border: 1px solid #414141;
  box-sizing: border-box;
  background: #fff;
  transition: transform 0.3s ease-in-out;
  height: auto;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li:nth-child(4n) {
  margin-right: 0;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li:hover {
  transform: translateY(-8px);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.17);
}
@media screen and (max-width: 768px) {
  .shopnewsArea .shopnews-inner .shop-container .shop-wrapper li {
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 15px;
  }
  .shopnewsArea .shopnews-inner .shop-container .shop-wrapper li:nth-child(2n) {
    margin-right: 0;
  }
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li .thumb {
  border-bottom: 1px solid #343434;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li .thumb img {
  vertical-align: middle;
  width: auto;
  max-width: 80%;
  max-height: 60%;
  position: relative;
  -o-object-fit: contain;
  object-fit: contain;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li .thumb img + img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
  filter: blur(5px);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li .thumb img:has(+ img) {
  vertical-align: middle;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a {
  text-decoration: none;
  color: #343434;
  display: block;
  margin: 0;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .contents {
  padding: 5px 10px 10px;
  min-height: 80px;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .info-top {
  display: flex;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .new {
  color: #E60000;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-top: 5px;
  margin-bottom: 0px;
  margin-right: 20px;
  font-family: "futura-pt-condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
@media screen and (max-width: 780px) {
  .shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .new {
    margin-right: 15px;
  }
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .date {
  color: #A9ACAB;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-family: "futura-pt-condensed", sans-serif;
  letter-spacing: 0.6px;
  margin-top: 5px;
  margin-bottom: 0px;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .title {
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.6px;
  margin-top: 5px;
  margin-bottom: 0px;
  text-align: left;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .shop-name {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin-top: 5px;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .shop-link {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin-top: 5px;
  text-align: right;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .shop-link span {
  color: #414141;
  text-decoration: underline;
  position: relative;
  margin-right: 30px;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .shop-link span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  margin: auto;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .shop-link span.icon-image:after {
  background-image: url(../images/common/icon_image.svg);
  width: 16px;
  height: 16px;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .shop-link span.icon-blank:after {
  background-image: url(../images/common/icon_blank.svg);
  width: 16px;
  height: 16px;
}
.shopnewsArea .shopnews-inner .shop-container .shop-wrapper li a .shop-link span.icon-pdf:after {
  background-image: url(../images/common/icon_pdf.svg);
  width: 20px;
  height: 22px;
}

/* ------------------------------------------------------------
 * お知らせ詳細
------------------------------------------------------------ */
.info-inner {
  margin-bottom: 110px;
}

.notice-detail {
  margin: 75px 0 60px;
}
@media screen and (max-width: 780px) {
  .notice-detail {
    margin: 40px 0 30px;
  }
}
.notice-detail .notice-detail_top {
  width: 100%;
  border-bottom: 1px solid #707070;
}
.notice-detail .notice-detail_top .icon-new {
  color: #E60000;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "futura-pt-condensed", sans-serif;
  letter-spacing: 0.5px;
  margin-right: 20px;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_top .icon-new {
    font-size: 21px;
  }
}
.notice-detail .notice-detail_top .notice__date {
  color: #A9ACAB;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.2rem;
  font-family: "futura-pt-condensed", sans-serif;
  letter-spacing: 0.5px;
  margin-top: 5px;
  margin-bottom: 0px;
}
.notice-detail .notice-detail_top .notice__title {
  color: #414141;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 4.1rem;
  margin-top: 25px;
  margin-bottom: 0px;
  padding-bottom: 45px;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_top .notice__title {
    font-size: 17px;
    line-height: 26px;
    margin-top: 15px;
    padding-bottom: 20px;
  }
}
.notice-detail .notice__text {
  display: block;
  padding: 45px 0 50px;
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 3.2rem;
  margin-top: 5px;
  margin-bottom: 0px;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice__text {
    padding: 25px 0 20px;
  }
}
.notice-detail .notice-detail_bottom {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_bottom {
    flex-wrap: wrap;
  }
}
.notice-detail .notice-detail_bottom .notice__link,
.notice-detail .notice-detail_bottom .notice__pdf {
  width: 100%;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.notice-detail .notice-detail_bottom .notice__link:nth-child(2),
.notice-detail .notice-detail_bottom .notice__pdf:nth-child(2) {
  margin-left: 4%;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_bottom .notice__link,
  .notice-detail .notice-detail_bottom .notice__pdf {
    width: 100%;
  }
  .notice-detail .notice-detail_bottom .notice__link:nth-child(2),
  .notice-detail .notice-detail_bottom .notice__pdf:nth-child(2) {
    margin-left: 0%;
  }
}
.notice-detail .notice-detail_bottom a {
  text-decoration: none;
  display: block;
  padding: 12px 0;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_bottom a {
    padding: 8px 0;
  }
}
.notice-detail .notice-detail_bottom a:hover {
  opacity: 0.7;
}
.notice-detail .notice-detail_bottom a.blank-icon dl dd:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/icon_blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 23px;
  height: 21px;
  margin: auto;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_bottom a.blank-icon dl dd:after {
    width: 18px;
    height: 15px;
  }
}
.notice-detail .notice-detail_bottom a.pdf-icon dl dd:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/icon_pdf.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 22px;
  height: 25px;
  margin: auto;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_bottom a.pdf-icon dl dd:after {
    width: 18px;
    height: 20px;
  }
}
.notice-detail .notice-detail_bottom a dl {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.notice-detail .notice-detail_bottom a dt {
  display: block;
  width: 15%;
  color: #414141;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.8rem;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_bottom a dt {
    width: 16%;
  }
}
.notice-detail .notice-detail_bottom a dd {
  display: block;
  width: auto;
  font-family: "futura-pt-condensed", sans-serif;
  color: #414141;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 2.8rem;
  letter-spacing: 0.6px;
  margin-left: 0;
  position: relative;
  word-break: break-all;
  padding-right: 15%;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_bottom a dd {
    width: 80%;
    text-align: center;
    font-size: 16px;
    line-height: 1.4em;
  }
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_bottom:has(> :nth-child(2)) div:last-child {
    border-top: none;
  }
}
.notice-detail .notice-detail_bottom:has(> :nth-child(2)) div.notice__link a dt, .notice-detail .notice-detail_bottom:has(> :nth-child(2)) div.notice__pdf a dt {
  width: 15%;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_bottom:has(> :nth-child(2)) div.notice__link a dt, .notice-detail .notice-detail_bottom:has(> :nth-child(2)) div.notice__pdf a dt {
    width: 20%;
  }
}
.notice-detail .notice-detail_bottom:has(> :nth-child(2)) div.notice__link a dd, .notice-detail .notice-detail_bottom:has(> :nth-child(2)) div.notice__pdf a dd {
  width: 85%;
  padding-right: 6%;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice-detail_bottom:has(> :nth-child(2)) div.notice__link a dd, .notice-detail .notice-detail_bottom:has(> :nth-child(2)) div.notice__pdf a dd {
    width: 80%;
    text-align: left;
  }
}
.notice-detail .notice__pdf a dd {
  font-size: 1.6rem;
}
@media screen and (max-width: 780px) {
  .notice-detail .notice__pdf a dd {
    font-size: 12px;
  }
}
.notice-detail .notice__link a dd {
  font-family: "futura-pt-condensed", sans-serif;
  font-weight: 600;
}

/* ------------------------------------------------------------
 * 404ページ
------------------------------------------------------------ */
.errorArea {
  text-align: center;
}
.errorArea .error-title {
  font-size: 2.8rem;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 5.6rem;
  color: #E60000;
  margin: 110px auto 35px;
}
@media screen and (max-width: 780px) {
  .errorArea .error-title {
    font-size: 20px;
    margin: 70px auto 25px;
  }
}
.errorArea .error-container {
  margin-bottom: 90px;
}
@media screen and (max-width: 780px) {
  .errorArea .error-container {
    margin-bottom: 40px;
  }
}
.errorArea .error-container .text {
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 3.8rem;
}
@media screen and (max-width: 780px) {
  .errorArea .error-container .text {
    font-size: 14px;
  }
}
.errorArea .button-link {
  width: 222px;
  height: 55px;
  display: inline-block;
  box-sizing: border-box;
  margin: 0px auto 120px;
  background: #fff;
  border-width: 1px;
  border-radius: 27.5px;
  border-style: solid;
  border-color: #707070;
  -o-border-image: initial;
     border-image: initial;
  text-decoration: none;
}
@media screen and (max-width: 780px) {
  .errorArea .button-link {
    width: 60%;
    max-width: 240px;
    height: 45px;
    margin: 20px auto 70px;
  }
}
.errorArea .button-link .text {
  font-size: 1.5rem;
  line-height: 55px;
  letter-spacing: 0.3px;
  font-weight: 600;
  color: #414141;
  position: relative;
  padding-right: 30px;
}
@media screen and (max-width: 780px) {
  .errorArea .button-link .text {
    font-size: 12px;
    line-height: 45px;
    padding-right: 20px;
  }
}
.errorArea .button-link .text::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  background-image: url(../images/common/arrow_right_b.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 22px;
  height: 18px;
  background-position: right center;
  margin: auto;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 780px) {
  .errorArea .button-link .text::after {
    width: 13px;
    height: 11px;
  }
}
.errorArea .button-link:hover {
  background: #A9ACAB;
}
.errorArea .button-link:hover .text::after {
  transform: translateX(8px);
}
@media screen and (max-width: 780px) {
  .errorArea .button-link:hover .text::after {
    display: block;
  }
}

/* ------------------------------------------------------------
 * PC/SP表示切替
------------------------------------------------------------ */
@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(120px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100px);
  }
}/*# sourceMappingURL=layout.css.map */