@charset "UTF-8";
/* =========================================================
colors
========================================================= */
/* =========================================================
body
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
html {
  font-size: 62.5%;
  letter-spacing: 0.03em;
  line-height: 1.3rem;
}

body {
  color: #000;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  /*Medium*/
  font-style: normal;
  font-size: 1rem;
  background: #F9F5E4;
  -webkit-overflow-scrolling: touch;
}

img {
  width: 100%;
}

@media print {
  html, body {
    _zoom: 70% !important;
  }
}

main {
  display: block;
  /*IE*/
}

/* =========================================================
default
========================================================= */
/* =========================================================
PARCO Header
========================================================= */
.phd {
  padding: 0 10px;
  background: none;
  overflow: hidden;
}

.phd__in {
  height: 55px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

.phd__logo a {
  display: inline-block;
  line-height: 0;
  font-size: 0;
  text-decoration: none;
}

.phd__logo__txt {
  width: 13px;
  height: 26px;
  margin-right: 2px;
}

.phd__logo__img {
  width: 92px;
  height: 27px;
  vertical-align: bottom;
  margin-bottom: -1px;
}

.phd__logo__img.parcoya-ueno {
  width: 155px;
  height: 25px;
}

.phd__sns {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phd__sns li a {
  display: block;
  aspect-ratio: 1/1;
  width: clamp(10px, 7.9vw, 35px);
}

@media screen and (min-width: 769px) {
  .phd__sns li a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 769px) {
  .phd {
    padding: 0 20px;
  }
  .phd__in {
    height: 64px;
  }
  .phd__logo__txt {
    display: inline-block;
    font-size: 1.5rem;
    width: 14px;
    height: 32px;
    margin-right: 4px;
    vertical-align: middle;
  }
  .phd__logo__img {
    width: 120px;
    height: 36px;
    vertical-align: middle;
  }
  .phd__logo__img.parcoya-ueno {
    width: 205px;
    height: 34px;
  }
}

/* =========================================================
PARCO Footer
========================================================= */
.pft {
  margin-top: 52px;
  padding: 45px 0 58px;
  background: #ABCCD0;
  position: relative;
  font-family: "futura-pt", sans-serif;
  font-weight: 300;
  font-style: normal;
  border-radius: 40px 40px 0 0;
}

@media screen and (min-width: 769px) {
  .pft {
    margin-top: 70px;
    padding: 50px 0 40px;
  }
}

.pft__in {
  position: relative;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .pft__in {
    max-width: 930px;
  }
}

.pft__logo {
  text-align: center;
}

.pft__logo svg {
  fill: #fff;
}

.pft__logo a {
  text-decoration: none;
}

.pft__logo__txt {
  width: 14px;
  height: 32px;
  margin-right: 4px;
}

.pft__logo__img {
  width: 120px;
  height: 36px;
  vertical-align: bottom;
  margin-bottom: -1px;
}

.pft__logo__img.parcoya-ueno {
  width: 205px;
  height: 34px;
}

.pft__logo.nagoya .pft__logo__txt {
  margin-right: 5px;
}

.pft__pageTop {
  display: none;
  position: fixed;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 10;
}

.pft__pageTop a {
  display: inline-block;
  position: relative;
  background: url(../../assets/images/page-top.png) no-repeat;
  background-size: cover;
  width: 79px;
  height: 87px;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.3s all;
}

@media screen and (min-width: 769px) {
  .pft__pageTop a {
    text-indent: 100%;
    width: 119px;
    height: 131px;
  }
}

.pft__pageTop a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 769px) {
  .pft__pageTop {
    right: 6px;
  }
}

.pft__copyright {
  margin-top: 30px;
  text-align: center;
  line-height: 0;
}

.pft__copyright svg {
  height: 11px;
  fill: #fff;
  overflow: hidden;
}

/* =========================================================
layout
========================================================= */
/* =========================================================
colors
========================================================= */
.pc-disp {
  display: none;
}

.sp-disp {
  display: block;
}

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

.txt-link {
  color: #292929;
  text-decoration: underline;
  transition: 0.3s all;
}

.txt-link:hover {
  color: #ABCCD0;
}

/* =========================================================
header
========================================================= */
.header {
  margin-top: 71px;
}

.header__title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header__title .mv-cat {
  margin-bottom: 14px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.header__title img {
  vertical-align: bottom;
  width: revert-layer;
}

@media screen and (min-width: 769px) {
  .header {
    margin-top: 123px;
  }
  .header__title {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1008px;
    margin: auto;
  }
  .header__title img {
    width: auto;
    max-width: 100%;
  }
}

/* =========================================================
Main
========================================================= */
/* =========================================================
ヘッダー下バナー
========================================================= */
.top-bnr-block {
  max-width: 596px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.top-bnr-block .bnr {
  margin: 0 auto 5px;
}

.top-bnr-block .bnr:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .top-bnr-block {
    max-width: 930px;
    padding: 60px 0 0;
  }
  .top-bnr-block .bnr {
    margin: 0 auto 20px;
  }
}

/* =========================================================
YouTube
========================================================= */
.youtube-block {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.youtube-wrap {
  padding-top: 56.25%;
  position: relative;
}

.youtube-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 769px) {
  .youtube-block {
    padding: 60px 0 0;
  }
}

/* =========================================================
Local navigation
========================================================= */
.localnav-wrap, .lead_area {
  max-width: 1052px;
  padding: 30px 24px 0;
  margin: 0 auto;
}

.lead_area {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.localnav {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.localnav__item {
  width: 100%;
  position: relative;
}

.localnav__item a {
  display: block;
  text-align: center;
  align-content: center;
  background: #FFFFFF;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.1em;
  position: relative;
  color: #292929;
  border-radius: 50px;
  text-decoration: none;
  height: 60px;
}

.localnav__item a:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../../assets/images/arrow.svg) no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .localnav-wrap, .lead_area {
    padding: 60px 0 0;
  }
  .lead_area {
    font-size: 16px;
    line-height: 2;
  }
  .localnav {
    padding: 0;
    flex-direction: row;
    gap: 10px;
  }
  .localnav__item {
    width: 248px;
  }
  .localnav__item a {
    height: 70px;
  }
  .localnav__item a:after {
    right: 24px;
  }
  .localnav__item a:hover {
    opacity: 0.7;
    text-decoration: none;
    background: #FFFFFF;
    color: #292929;
  }
}

/* current */
body.page-sale .localnav__item01 a,
body.page-tag .localnav__item02 a {
  background: #FFFFFF;
  color: #292929;
}

body.page-sale .localnav__item01 a:after,
body.page-tag .localnav__item02 a:after {
  border-color: #FFFFFF transparent transparent transparent;
}

/* =========================================================
タイトルアニメーション
========================================================= */
.handwriting {
  width: 100%;
  height: auto;
}

.handwriting_mask_line {
  fill: none;
  stroke-width: 40;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 4000px;
  stroke-dashoffset: 4000px;
}

.js-display.active .handwriting_mask_line {
  -webkit-animation: handwriting 2s linear forwards;
  animation: handwriting 2s linear forwards;
}

@-webkit-keyframes handwriting {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes handwriting {
  to {
    stroke-dashoffset: 0;
  }
}

/* =========================================================
Contents block
========================================================= */
#present {
  background: #FFFFFF;
}

#present::after {
  background: #FFFFFF;
}

#present .handwriting_text {
  -webkit-mask: url(#mask01);
  mask: url(#mask01);
}

#present .handwriting_text {
  fill: #F9F5E4;
}

#present_mask_line {
  stroke: #fff;
}

#present .item-in {
  background: #ABCCD0;
}

#present .item-in .cat-img {
  display: none;
}

#present .item-in .txt-item {
  color: #fff;
}

#present .item-in .txt-item .ttl-txt::after {
  background: url(../../assets/images/dot-line-w.svg) repeat-x;
}

#present .item-in .txt-item .sub-txt .txt {
  margin-top: 10px;
}

#present .item-in .txt-item .btn-txt a {
  color: #292929;
  background: #fff;
}

#present .item-in .txt-item .btn-txt a:after {
  background: url(../../assets/images/icon_more-b.svg) no-repeat;
}

#present .item-in .custom-dots li button .dot-icon {
  background-image: url(../../assets/images/icon_off-w.svg);
}

#present .item-in .custom-dots li.slick-active button .dot-icon {
  background-image: url(../../assets/images/icon_on.svg);
}

@media screen and (min-width: 769px) {
  #present .item-in .cat-img {
    display: block;
    width: 185px;
    height: 240px;
    right: 71px;
    top: -182px;
  }
  #present .item-in .col-box {
    flex-direction: row-reverse;
  }
}

#event {
  background: none;
}

#event:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F9F5E4;
  z-index: 2;
}

#event::after {
  background: #F9F5E4;
  z-index: 1;
}

#event .handwriting_text {
  -webkit-mask: url(#mask02);
  mask: url(#mask02);
}

#event .handwriting_text {
  fill: #fff;
}

#event_mask_line {
  stroke: #F9F5E4;
}

#event .cat-img.sp-disp {
  width: 150px;
  height: 106px;
  left: 50%;
  top: -159px;
  z-index: 1;
}

#event .cat-img.sp-disp.active {
  -webkit-animation-name: slideInUp-c;
  animation-name: slideInUp-c;
}

#event .item-in {
  background: #FFFFFF;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  #event {
    background: #F9F5E4;
  }
  #event .item-in {
    background: none;
  }
  #event .item-in:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 20px;
    z-index: 2;
  }
  #event .item-in .col-box {
    position: relative;
    z-index: 3;
  }
  #event .item-in .cat-img {
    width: 240px;
    height: 177px;
    left: 34px;
    top: -177px;
    z-index: 1;
  }
}

#shop {
  background: #ABCCD0;
  padding-bottom: 148px;
}

#shop::after {
  background: #ABCCD0;
  z-index: 3;
}

#shop .handwriting_text {
  -webkit-mask: url(#mask03);
  mask: url(#mask03);
}

#shop .handwriting_text {
  fill: rgba(255, 255, 255, 0.3);
}

#shop_mask_line {
  stroke: #ABCCD0;
}

#shop .contents-ttl {
  letter-spacing: 0.1em;
}

#shop .item-in {
  background: #FFFFFF;
}

@media screen and (min-width: 769px) {
  #shop {
    padding-bottom: 288px;
  }
  #shop .item-in .col-box {
    flex-direction: row-reverse;
  }
}

#items {
  background: #F9F5E4;
}

#items::after {
  background: #F9F5E4;
}

#items .handwriting_text {
  -webkit-mask: url(#mask04);
  mask: url(#mask04);
}

#items .handwriting_text {
  fill: #fff;
}

#items_mask_line {
  stroke: #F9F5E4;
}

#items .contents-ttl {
  letter-spacing: 0.1em;
}

#items .cat-img {
  width: 173px;
  height: 111px;
  left: 50%;
  top: -126px;
  z-index: 1;
}

#items .cat-img.active {
  -webkit-animation-name: slideInUp-c;
  animation-name: slideInUp-c;
}

#items .item-in {
  background: #FFFFFF;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  #items::after {
    height: 138px;
    top: -138px;
  }
  #items .cat-img {
    width: 300px;
    height: 192px;
    top: -240px;
  }
}

.contents-wrap {
  width: 100%;
  margin: 40px auto 0;
}

.contents-wrap a {
  text-decoration: none;
}

.contents-block {
  margin: 0 0 40px;
}

.contents-block:last-child {
  margin-bottom: 0;
}

.contents-block .item-box {
  position: relative;
  padding-bottom: 108px;
}

.contents-block .item-box:first-child {
  margin-top: 106px;
  padding-bottom: 170px;
}

.contents-block .item-box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.contents-block .item-box::after {
  content: '';
  width: 100%;
  height: 53px;
  display: inline-block;
  border-radius: 40px 40px 0 0;
  position: absolute;
  top: -51px;
  left: 0;
}

.contents-block .item-box .contents-ttl {
  padding: 0;
  position: relative;
  z-index: 4;
}

.contents-block .item-box .contents-ttl .handwriting {
  position: absolute;
  width: 309px;
  height: 66px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.contents-block .item-box .item-box03 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 0 24px 16px;
  box-sizing: border-box;
}

.contents-block .item-box .item-box03 .item-in {
  width: 100%;
  max-width: 100%;
  padding: 16px;
  margin: 0;
  overflow: auto;
  box-sizing: border-box;
}

.contents-block .item-box .item-box03 .item-in .col-box {
  flex-direction: column;
  height: 100%;
}

.contents-block .item-box .item-box03 .item-in .col-box .img-item {
  width: 100%;
}

.contents-block .item-box .item-box03 .item-in .col-box .txt-item {
  margin-top: 14px;
  width: 100%;
}

.contents-block .item-box .item-box03 .item-in .col-box .txt-item .subttl-txt {
  font-size: 10px;
  font-weight: 500;
  padding: 5px 10px;
}

.contents-block .item-box .item-box03 .item-in .col-box .txt-item .sub-txt {
  margin-top: 6px;
}

.contents-block .item-box .item-box03 .item-in .col-box .txt-item .sub-txt .name {
  font-size: 12px;
  font-weight: 500;
}

.contents-block .item-box .item-box03 .item-in .col-box .txt-item .sub-txt .txt {
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
  overflow-wrap: break-word;
}

.contents-block .item-box .item-box03 .item-in .col-box .txt-item .sub-txt .price {
  font-size: 14px;
  font-weight: 500;
  margin-top: 6px;
}

.contents-block .item-box .item-box03 .item-in .col-box .txt-item .sub-txt .price span {
  font-size: 10px;
}

.contents-block .item-box .item-box03 .item-in .col-box .txt-item .btn-txt {
  margin-top: 16px;
  font-size: 14px;
}

.contents-block .item-box .item-box03 .item-in .col-box .txt-item .btn-txt a {
  margin: auto;
}

.contents-block .item-box .item-in {
  max-width: 1052px;
  box-sizing: border-box;
  margin: auto;
  border-radius: 20px;
  padding: 32px 32px 40px;
  margin: 0 24px 16px;
  position: relative;
}

.contents-block .item-box .item-in:last-child {
  margin-bottom: 0;
}

.contents-block .item-box .item-in .col-box {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.contents-block .item-box .item-in .col-box .img-item {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.contents-block .item-box .item-in .col-box .img-item .slider {
  width: 100%;
}

.contents-block .item-box .item-in .col-box .img-item .slider .slick-list {
  overflow: hidden;
}

.contents-block .item-box .item-in .col-box .img-item .slider .slick-track {
  display: flex;
}

.contents-block .item-box .item-in .col-box .img-item .slider .img {
  outline: none;
  width: 100%;
}

.contents-block .item-box .item-in .col-box .img-item .slider .img img {
  width: 100%;
  height: auto;
  display: block;
}

.contents-block .item-box .item-in .col-box .txt-item {
  color: #292929;
  width: 100%;
  margin-top: 16px;
}

.contents-block .item-box .item-in .col-box .txt-item .subttl-txt {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: #292929 1px solid;
  border-radius: 50px;
  padding: 9px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  display: flex;
}

.contents-block .item-box .item-in .col-box .txt-item .subttl-txt .name {
  padding-left: 10px;
  margin-left: 10px;
  border-left: #292929 1px solid;
}

.contents-block .item-box .item-in .col-box .txt-item .ttl-txt {
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 500;
  width: 100%;
  padding-bottom: 10px;
  position: relative;
}

.contents-block .item-box .item-in .col-box .txt-item .ttl-txt::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: url(../../assets/images/dot-line-b.svg) repeat-x;
  bottom: 0;
}

.contents-block .item-box .item-in .col-box .txt-item .sub-txt {
  margin-top: 16px;
}

.contents-block .item-box .item-in .col-box .txt-item .sub-txt .day {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contents-block .item-box .item-in .col-box .txt-item .sub-txt .day span {
  font-size: 13px;
}

.contents-block .item-box .item-in .col-box .txt-item .sub-txt .area {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-top: 8px;
}

.contents-block .item-box .item-in .col-box .txt-item .sub-txt .txt {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin-top: 16px;
}

.contents-block .item-box .item-in .col-box .txt-item .sub-txt .note {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-top: 16px;
}

.contents-block .item-box .item-in .col-box .txt-item .btn-txt {
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 24px;
}

.contents-block .item-box .item-in .col-box .txt-item .btn-txt a {
  width: 100%;
  height: 50px;
  color: #fff;
  background: #ABCCD0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: 0.3s all;
  position: relative;
}

.contents-block .item-box .item-in .col-box .txt-item .btn-txt a:after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 10px;
  background: url(../../assets/images/icon_more-w.svg) no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .contents-block .item-box .item-in .col-box .txt-item .btn-txt a:hover {
    opacity: 0.7;
  }
}

.contents-ttl {
  margin: 0 auto 25px;
  padding: 9px 0;
  color: #292929;
  line-height: 1.2;
  text-align: center;
  font-family: "futura-pt", sans-serif;
  font-weight: 300;
  font-size: 40px;
  letter-spacing: 0.2em;
  position: relative;
}

.cat-img {
  opacity: 0;
  position: absolute;
  z-index: 2;
  /*the animation definition*/
}

.cat-img.active {
  opacity: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInUp {
  0% {
    transform: translate3d(0, 50%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 50%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInUp-c {
  0% {
    transform: translateX(-50%) translate3d(0, 50%, 0);
    visibility: visible;
  }
  100% {
    transform: translateX(-50%) translate3d(0, 0, 0);
  }
}

@keyframes slideInUp-c {
  0% {
    transform: translateX(-50%) translate3d(0, 50%, 0);
    visibility: visible;
  }
  100% {
    transform: translateX(-50%) translate3d(0, 0, 0);
  }
}

@media screen and (min-width: 769px) {
  .contents-wrap {
    margin: 80px auto 0;
  }
  .contents-block {
    margin: 0 0 100px;
  }
  .contents-block .item-box {
    padding-bottom: 208px;
  }
  .contents-block .item-box:first-child {
    margin-top: 144px;
    padding-bottom: 208px;
  }
  .contents-block .item-box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .contents-block .item-box::after {
    height: 88px;
    top: -88px;
  }
  .contents-block .item-box .contents-ttl .handwriting {
    width: 400px;
    height: 86px;
  }
  .contents-block .item-box .item-box03 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 31px;
    max-width: 1052px;
    margin: 0 auto;
  }
  .contents-block .item-box .item-box03 .item-in {
    width: calc(1052px / 3);
    padding: 32px;
  }
  .contents-block .item-box .item-box03 .item-in .col-box .txt-item {
    margin-top: 16px;
  }
  .contents-block .item-box .item-box03 .item-in .col-box .txt-item .subttl-txt {
    font-size: 14px;
    padding: 6px 20px;
  }
  .contents-block .item-box .item-box03 .item-in .col-box .txt-item .sub-txt {
    margin-top: 10px;
  }
  .contents-block .item-box .item-box03 .item-in .col-box .txt-item .sub-txt .name {
    font-size: 14px;
  }
  .contents-block .item-box .item-box03 .item-in .col-box .txt-item .sub-txt .txt {
    font-size: 20px;
    margin-top: 10px;
    line-height: 1.4;
  }
  .contents-block .item-box .item-box03 .item-in .col-box .txt-item .sub-txt .price {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.2;
  }
  .contents-block .item-box .item-box03 .item-in .col-box .txt-item .sub-txt .price span {
    font-size: 12px;
  }
  .contents-block .item-box .item-box03 .item-in .col-box .txt-item .btn-txt {
    margin-top: 24px;
    font-size: 16px;
  }
  .contents-block .item-box .item-in {
    padding: 64px 64px 40px;
    margin: 0 auto 40px;
  }
  .contents-block .item-box .item-in:last-child {
    margin-bottom: 0;
  }
  .contents-block .item-box .item-in .col-box {
    flex-direction: row;
  }
  .contents-block .item-box .item-in .col-box .img-item {
    width: 400px;
  }
  .contents-block .item-box .item-in .col-box .txt-item {
    width: 477px;
    margin-top: 0;
  }
  .contents-block .item-box .item-in .col-box .txt-item .subttl-txt {
    font-size: 16px;
  }
  .contents-block .item-box .item-in .col-box .txt-item .ttl-txt {
    font-size: 38px;
    padding-bottom: 15px;
  }
  .contents-block .item-box .item-in .col-box .txt-item .sub-txt {
    margin-top: 24px;
  }
  .contents-block .item-box .item-in .col-box .txt-item .sub-txt .day {
    font-size: 20px;
  }
  .contents-block .item-box .item-in .col-box .txt-item .sub-txt .day span {
    font-size: 14px;
  }
  .contents-block .item-box .item-in .col-box .txt-item .sub-txt .area {
    font-size: 18px;
    margin-top: 10px;
  }
  .contents-block .item-box .item-in .col-box .txt-item .btn-txt a {
    width: 220px;
  }
  .contents-ttl {
    margin: 0 auto 70px;
    font-size: 54px;
  }
}

/* =========================================================
タグ集約
========================================================= */
.taglist {
  overflow: hidden;
}

.taglist__item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  list-style: none;
  display: none;
}

.taglist__item:first-child {
  border-top: 1px solid #ccc;
}

.taglist__item:last-child {
  margin-bottom: 0;
}

.taglist__item:nth-child(-n+6) {
  /* 初期表示6件 */
  display: block;
}

.taglist__item__in {
  height: 100%;
}

.taglist__item a {
  display: block;
  position: relative;
  height: 100%;
  padding: 15px;
  color: #555;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  text-decoration: none;
  box-sizing: border-box;
}

.taglist__item a:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #555 transparent;
  position: absolute;
  right: 4px;
  bottom: 4px;
}

.taglist__txt {
  margin-top: 15px;
}

.taglist__photo {
  position: relative;
  padding: 0 40px;
}

.taglist__kaeru {
  position: absolute;
  top: 0;
  left: 40px;
  font-size: 10px;
  font-size: 1rem;
  color: #fff;
  line-height: 1.1;
  display: inline-block;
  background: #ea5550;
  padding: 7px 5px;
}

.taglist__name {
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.taglist__title {
  font-weight: bold;
  margin-bottom: 6px;
}

@media screen and (min-width: 769px) {
  .taglist {
    display: flex;
    flex-wrap: wrap;
  }
  .taglist__item {
    width: calc(33.33% - 10px);
    margin: 15px 15px 0 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  .taglist__item:nth-child(-n+3) {
    margin-top: 0;
  }
  .taglist__item:nth-child(3n) {
    margin-right: 0;
  }
  .taglist__photo {
    padding: 0;
  }
}

.btn-taglist-more {
  display: none;
  width: calc(100% - 150px);
  max-width: 435px;
  margin: 30px auto 0;
  padding: 15px 0;
  background: #000;
  border-radius: 10px;
  border: none;
  color: #fff;
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  cursor: pointer;
  letter-spacing: 0.15em;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .btn-taglist-more {
    margin: 40px auto 0;
  }
  .btn-taglist-more:hover {
    opacity: 0.7;
  }
}

/* =========================================================
OWNLY
========================================================= */
.ownly-wrap {
  padding: 0 10px;
}

@media screen and (min-width: 769px) {
  .ownly-wrap {
    padding: 0;
  }
}

/* =========================================================
値書き
========================================================= */
/* 館ナビ */
.floornav {
  width: calc(100% - 40px);
  max-width: 620px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  border: 1px solid #000;
  border-radius: 4px;
}

.floornav li {
  list-style: none;
  width: 50%;
  margin: 0;
}

.floornav li a {
  display: block;
  width: 100%;
  padding: 3px 0;
  display: inline-block;
  text-align: center;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .floornav {
    margin: 0 auto 50px;
  }
  .floornav li a {
    font-size: 2.0rem;
    text-decoration: none;
    color: #000;
  }
  .floornav li a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

/* current */
body.type1 .floornav .floornav__item01 a,
body.type2 .floornav .floornav__item02 a,
body.type3 .floornav .floornav__item03 a,
body.type4 .floornav .floornav__item04 a {
  background: #000;
  color: #FFF;
}

body.type1 .floornav .floornav__item01 a:after,
body.type2 .floornav .floornav__item02 a:after,
body.type3 .floornav .floornav__item03 a:after,
body.type4 .floornav .floornav__item04 a:after {
  border-color: #000 transparent transparent transparent;
}

/* 値書き*/
.salelist-container {
  margin: 50px 0 0;
}

.salelist-info1, .salelist-info2 {
  font-size: 1.5rem;
  padding: 0 10px;
  line-height: 1.6;
}

.salelists {
  margin: 20px auto 0;
}

@media screen and (min-width: 769px) {
  .salelists {
    margin: 60px auto 0;
  }
}

.salelist {
  padding: 0 0 10px;
}

.salelist__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 9px 20px;
  background: #000;
  color: #fff;
  line-height: 1.1;
}

.salelist__title .ico-arr {
  text-align: center;
  background: #fff;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-block;
  position: relative;
}

.salelist__title .ico-arr:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  left: calc(50% - 4px);
  top: calc(50% - 3px);
  transition-duration: 200ms;
}

.salelist__title__floor {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.15em;
}

.salelist__shop {
  font-size: 1.4rem;
  border-top: 1px solid #ccc;
}

.salelist__shop:first-child {
  margin-top: 0;
  border-top: none;
}

.salelist__link {
  padding: 30px 15px;
  display: block;
  text-decoration: none;
  color: #000;
}

.salelist__data {
  display: table;
  width: 100%;
}

.salelist__data__item01 {
  display: table-cell;
  width: 80px;
  padding-right: 15px;
  vertical-align: middle;
}

.salelist__data__item01 img {
  border: 1px solid #ccc;
}

.salelist__data__item02 {
  display: table-cell;
  vertical-align: middle;
}

.salelist__shopname {
  font-size: 1.2rem;
  font-weight: bold;
}

.salelist__text {
  margin-top: 5px;
}

@media screen and (min-width: 769px) {
  .salelist {
    padding: 0 0 40px;
  }
  .salelist__title__floor {
    font-size: 3rem;
  }
  .salelist__cont__in {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .salelist__shop {
    width: 50%;
    margin-top: 0;
    padding: 30px 20px;
    box-sizing: border-box;
  }
  .salelist__shop:nth-child(-n+2) {
    border: none;
  }
  .salelist__link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .salelist__data__item01 {
    width: 120px;
    padding-right: 25px;
  }
  .salelist__data__item01 img {
    width: 100%;
    border: none;
  }
  .salelist__shopname {
    font-size: 1.3rem;
  }
  .salelist__text {
    font-size: 1.5rem;
    margin-top: 10px;
    line-height: 1.6;
  }
}

/* 開閉時の矢印*/
.salelist__title.is-open .ico-arr:after {
  transform: rotate(180deg);
}

/* =========================================================
フッター上バナー
========================================================= */
.footer-bnr {
  max-width: 1024px;
  margin: 30px auto 0;
  padding: 0 10px;
}

.ft-bnr {
  margin: 0 auto 10px;
}

.ft-bnr:last-child {
  margin-bottom: 0;
}

.ft-bnr a {
  display: block;
}

@media screen and (min-width: 769px) {
  .footer-bnr {
    margin: 60px auto 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .ft-bnr {
    width: calc(50% - 10px);
    margin: 0 20px 0 0;
  }
  .ft-bnr:last-child {
    margin-right: 0;
  }
  .ft-bnr a:hover {
    opacity: .7;
  }
}

/* =========================================================
フッター上SNSボタン
========================================================= */
.footer__social {
  text-align: center;
  font-size: 0;
  line-height: 0;
}

.footer__social .social__item {
  display: inline-block;
  height: 20px;
  margin: 0 2px;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

@media screen and (min-width: 769px) {
  .footer__social .social__item {
    margin: 0 11px;
  }
}

.footer__social .social__item a:hover {
  opacity: 0.6;
}

.footer__social .social__item img {
  height: 100%;
}

/* =========================================================
固定メニュー
========================================================= */
.sticky-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0;
  z-index: 1000;
  transform: translateY(-100%);
  transition: 0.3s all;
}

.sticky-menu.visible {
  transform: translateY(0);
}

.sticky-menu nav {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  .sticky-menu nav {
    flex-wrap: nowrap;
  }
}

.sticky-menu a {
  color: #292929;
  text-decoration: none;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  align-content: center;
  width: 50%;
  height: 50px;
  transition: 0.3s all;
}

@media (hover: hover) {
  .sticky-menu a:hover {
    background: #ABCCD0;
    color: #fff;
  }
}

.sticky-menu a.current {
  background: #ABCCD0;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .sticky-menu a {
    font-size: 20px;
    width: 263px;
    height: 60px;
  }
}

@media screen and (min-width: 769px) {
  .sticky-menu {
    border-radius: 0 0 40px 40px;
  }
}

/* =========================================================
画像スライダー
========================================================= */
.slick-dots {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}

.custom-dots li button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

.custom-dots li button:focus {
  outline: none;
}

/* 非アクティブ時のSVG */
.custom-dots li button .dot-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../../assets/images/icon_off-g.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* アクティブ時のSVG */
.custom-dots li.slick-active button .dot-icon {
  background-image: url(../../assets/images/icon_on.svg);
}

/*# sourceMappingURL=maps/style.css.map */
