@charset "UTF-8";
/* === 共通
==================================== */
.home-secttl {
  display: flex;
  flex-direction: column;
  color: #BD399C;
}
.home-secttl .en {
  font-family: "Cabin", sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.07em;
}
@media (min-width: 769px) {
  .home-secttl .en {
    font-size: 56px;
  }
}
.home-secttl .ja {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-weight: 700;
  font-size: 14px;
}

/* === テロップ
==================================== */
.telop {
  background: #FFE6E6;
  color: #FF3836;
  padding: 24px 22px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) {
  .telop {
    font-size: 13px;
    padding: 24px 150px 24px 20px;
  }
}
.telop .telop-in {
  position: relative;
}
@media (min-width: 769px) {
  .telop .telop-in {
    display: flex;
    align-items: center;
  }
}
.telop .telop-ttl {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media (min-width: 769px) {
  .telop .telop-ttl {
    padding: 0;
    margin: 0;
    flex-shrink: 0;
  }
}
.telop .telop-ttl::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../../assets-common/images/icon/notice.svg) center/100% no-repeat;
}
.telop .telop-ttl::after {
  content: "";
  width: 24px;
  height: 1px;
  background: #FF3836;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 769px) {
  .telop .telop-ttl::after {
    display: none;
  }
}
.telop .telop-text {
  position: relative;
  line-height: 1.57142857;
  transition: height 0.1s;
  overflow: hidden;
}
@media (min-width: 769px) {
  .telop .telop-text {
    flex: 1;
    padding-left: 16px;
    margin-left: 16px;
    border-left: 1px solid #FF3836;
  }
}
.telop .telop-item {
  position: absolute;
  top: 0;
  left: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  display: none;
}
@media (min-width: 769px) {
  .telop .telop-item {
    left: 16px;
    align-items: center;
  }
}
.telop .telop-handle {
  position: absolute;
  top: -8px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 769px) {
  .telop .telop-handle {
    top: 50%;
    right: -137px;
    transform: translateY(-50%);
    gap: 4px;
  }
}
.telop .telop-handle .counter {
  font-family: "Cabin", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-right: 4px;
}
@media (min-width: 769px) {
  .telop .telop-handle .counter {
    margin-right: 10px;
  }
}
.telop .telop-handle .prev,
.telop .telop-handle .next {
  position: relative;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 100%;
}
@media (min-width: 769px) {
  .telop .telop-handle .prev,
  .telop .telop-handle .next {
    width: 30px;
    height: 30px;
  }
}
.telop .telop-handle .prev::before,
.telop .telop-handle .next::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #FF3836;
  -webkit-mask: url(../../assets-common/images/icon/arrow.svg) center/12px no-repeat;
  mask: url(../../assets-common/images/icon/arrow.svg) center/12px no-repeat;
}
.telop .telop-handle .prev {
  transform: rotate(-90deg);
}
.telop .telop-handle .next {
  transform: rotate(90deg);
}
.telop.no-slide .telop-handle {
  display: none;
}
.telop.no-slide .telop-item {
  position: relative;
  display: block;
}

@keyframes telopSlideUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes telopSlideUpHide {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes telopSlideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes telopSlideDownHide {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
/* === ページ上部、季節ごとの背景
==================================== */
.home-bg-top {
  position: relative;
}
@media (max-width: 768px) {
  .home-bg-top {
    display: none;
  }
}
.home-bg-top img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 394px;
  object-fit: cover;
}

/* === メインバナー
==================================== */
.home-main-bnr {
  padding: 32px 0 40px;
}
@media (min-width: 769px) {
  .home-main-bnr {
    padding: 50px 0 60px;
  }
}
.home-main-bnr .splide {
  padding: 8% 20%;
  overflow: hidden;
}
@media (min-width: 769px) {
  .home-main-bnr .splide {
    padding: 64px 0;
  }
}
.home-main-bnr .splide.no-slide .slide-in {
  transform: scale(1.245);
}
@media (min-width: 769px) {
  .home-main-bnr .splide.no-slide .slide-in {
    transform: scale(1.39);
  }
}
@media (min-width: 769px) {
  .home-main-bnr .splide-wrapper {
    width: 328px;
    margin: 0 auto;
  }
}
.home-main-bnr .splide__track {
  border-radius: 0;
  overflow: visible;
  border: 0;
}
.home-main-bnr .splide__slide .bg-img, .home-main-bnr .splide__slide img {
  transition: opacity 0.4s;
}
@media (min-width: 769px) {
  .home-main-bnr .splide__slide a:hover {
    opacity: 1;
  }
  .home-main-bnr .splide__slide a:hover .bg-img, .home-main-bnr .splide__slide a:hover img {
    opacity: 0.6;
  }
}
.home-main-bnr .splide__slide .slide-in {
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.8s;
  transform: scale(1);
  background: #FFF4F0;
}
.home-main-bnr .splide__slide.is-active .slide-in {
  transform: scale(1.245);
}
@media (min-width: 769px) {
  .home-main-bnr .splide__slide.is-active .slide-in {
    transform: scale(1.39);
  }
}
.home-main-bnr .thumbnails {
  margin: 24px 14px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, calc((100% - 35px) / 6));
  gap: 7px;
  justify-content: center;
}
@media (min-width: 769px) {
  .home-main-bnr .thumbnails {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 40px 0 0;
  }
}
.home-main-bnr .thumbnails li {
  width: 100%;
}
@media (min-width: 769px) {
  .home-main-bnr .thumbnails li {
    width: 70px;
    transition: opacity 0.4s;
  }
  .home-main-bnr .thumbnails li:hover {
    opacity: 0.6;
  }
}
.home-main-bnr .splide__arrow {
  width: 50px;
  height: 50px;
}
@media (min-width: 769px) {
  .home-main-bnr .splide__arrow {
    width: 70px;
    height: 70px;
  }
}
.home-main-bnr .splide__arrow::before {
  width: 14px;
  height: 10px;
}
@media (min-width: 769px) {
  .home-main-bnr .splide__arrow::before {
    width: 18px;
    height: 12px;
  }
}
.home-main-bnr .splide__arrow--prev {
  margin-left: -30%;
  transform: scale(-1, 1) translateY(-50%);
}
@media (min-width: 769px) {
  .home-main-bnr .splide__arrow--prev {
    margin-left: -160px;
  }
}
.home-main-bnr .splide__arrow--next {
  margin-right: -30%;
}
@media (min-width: 769px) {
  .home-main-bnr .splide__arrow--next {
    margin-right: -160px;
  }
}

/* ===  お知らせ
==================================== */
.sec-information {
  position: relative;
  padding: 80px 24px;
  background-image: repeating-linear-gradient(90deg, rgba(155, 80, 0, 0.3), rgba(155, 80, 0, 0.3) 1px, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0) 12px);
}
@media (min-width: 769px) {
  .sec-information {
    padding: 146px 24px;
  }
}
.sec-information::before, .sec-information::after {
  content: "";
  width: 100%;
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/home/information-bg-t-sp.svg) center top/375px 32px repeat-x;
}
@media (min-width: 769px) {
  .sec-information::before, .sec-information::after {
    height: 66px;
    background: url(../images/home/information-bg-t-pc.svg) center top/683px 66px repeat-x;
  }
}
.sec-information::after {
  top: auto;
  bottom: 0;
  background: url(../images/home/information-bg-b-sp.svg) center bottom/375px 32px repeat-x;
}
@media (min-width: 769px) {
  .sec-information::after {
    background: url(../images/home/information-bg-b-pc.svg) center bottom/683px 66px repeat-x;
  }
}
.sec-information .inner {
  z-index: 2;
  position: relative;
}
@media (min-width: 769px) {
  .sec-information .inner {
    max-width: 1366px;
    margin: 0 auto;
  }
}
.sec-information .deco-t,
.sec-information .deco-b {
  position: absolute;
  transform: scale(0.7);
  transition: 0.8s 0.2s;
}
.sec-information .deco-t.in-view,
.sec-information .deco-b.in-view {
  transform: scale(1);
  opacity: 1;
}
.sec-information .deco-t {
  top: 100px;
  left: 50%;
}
.sec-information .deco-t img {
  width: 175px;
  height: 58px;
}
@media (min-width: 769px) {
  .sec-information .deco-t img {
    width: 128px;
    height: 220px;
  }
}
.sec-information .deco-t.in-view {
  top: -85px;
  left: -7px;
}
@media (min-width: 769px) {
  .sec-information .deco-t.in-view {
    top: -160px;
    left: 0;
  }
}
@media screen and (min-width: 1366px) {
  .sec-information .deco-t.in-view {
    left: 31px;
  }
}
.sec-information .deco-b {
  bottom: 50px;
  right: 50%;
}
.sec-information .deco-b img {
  width: 153px;
  height: 56px;
}
@media (min-width: 769px) {
  .sec-information .deco-b img {
    width: 123px;
    height: 190px;
  }
}
.sec-information .deco-b.in-view {
  bottom: -94px;
  right: -10px;
}
@media (min-width: 769px) {
  .sec-information .deco-b.in-view {
    bottom: -120px;
    right: 0;
  }
}
@media screen and (min-width: 1366px) {
  .sec-information .deco-b.in-view {
    right: 64px;
  }
}
.sec-information .inner-box {
  z-index: 2;
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 40px 24px;
}
@media (min-width: 769px) {
  .sec-information .inner-box {
    max-width: 864px;
    margin: 0 auto;
    padding: 60px 94px;
  }
}
@media (max-width: 768px) {
  .sec-information .home-secttl {
    align-items: center;
  }
}
.sec-information .home-secttl .en {
  font-size: min(9.6vw, 36px);
}
@media (min-width: 769px) {
  .sec-information .home-secttl .en {
    font-size: 44px;
  }
}
@media (min-width: 769px) {
  .sec-information .home-secttl .ja {
    font-size: 13px;
  }
}
.sec-information .information-list {
  margin-top: 20px;
  border-top: 1px solid #DDDDDD;
}
@media (min-width: 769px) {
  .sec-information .information-list {
    margin-top: 32px;
  }
}
.sec-information .information-list li {
  border-bottom: 1px solid #DDDDDD;
  padding: 18px 0;
  font-size: 16px;
}
@media (min-width: 769px) {
  .sec-information .information-list li {
    padding: 24px 16px;
    display: flex;
    align-items: baseline;
    gap: 24px;
    font-size: 14px;
  }
}
.sec-information .information-list li.hide {
  display: none;
}
@media (min-width: 769px) {
  .sec-information .information-list a {
    display: flex;
    align-items: baseline;
    gap: 24px;
  }
}
.sec-information .information-list .date {
  font-family: "Cabin", sans-serif;
  font-weight: 600;
  color: #BD399C;
  margin-bottom: 2px;
}
@media (min-width: 769px) {
  .sec-information .information-list .date {
    flex-shrink: 0;
  }
}
.sec-information .information-list .text {
  line-height: 1.375;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (min-width: 769px) {
  .sec-information .cmn-btn {
    width: 280px;
  }
}
.sec-information .cmn-btn-in {
  margin-top: 30px;
}

/* === イベント
==================================== */
.sec-event {
  margin: 30px auto 50px;
}
@media (min-width: 769px) {
  .sec-event {
    margin: 40px 30px 72px;
  }
}
.sec-event .home-secttl {
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .sec-event .home-secttl {
    margin-bottom: 42px;
  }
}
.sec-event .event-block {
  position: relative;
  padding: 74px 24px 40px;
  background: #fff;
  border-radius: 30px;
}
@media (min-width: 769px) {
  .sec-event .event-block {
    padding: 100px 0px 72px;
  }
}
@media (max-width: 768px) {
  .sec-event .event-block .cmn-card-list {
    grid-template-areas: "item1 item1" "item2 item2" "item3 item4" "item5 item6";
    gap: 0 20px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card {
    margin-top: 35px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card .floor {
    margin-top: 4px;
    font-size: 12px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card .main-txt {
    font-size: 14px;
    margin-top: 6px;
    -webkit-line-clamp: 3;
  }
  .sec-event .event-block .cmn-card-list .cmn-card .sub-txt {
    margin-top: 4px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card .period {
    margin-top: 4px;
    display: block;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(1), .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) {
    grid-area: item1;
    margin-top: 0;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(1) .icon-new, .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) .icon-new {
    top: -35px;
    left: 10px;
    width: 70px;
    font-size: 14px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(1) .photo.w-shadow, .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) .photo.w-shadow {
    margin: 0 16px 30px 0;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(1) .photo.w-shadow::before, .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) .photo.w-shadow::before {
    top: 16px;
    left: 16px;
    border-radius: 30px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(1) .photo .photo-in, .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) .photo .photo-in {
    border-radius: 30px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(1) .event-label, .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) .event-label {
    font-size: 14px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(1) .period, .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) .period {
    font-size: 15px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(1) .period + .main-txt, .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) .period + .main-txt {
    margin-top: 2px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(1) .sub-txt, .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) .sub-txt {
    font-size: 16px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(1) .main-txt, .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) .main-txt {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.44444444;
    -webkit-line-clamp: 2;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(1) .floor, .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) .floor {
    font-size: 14px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(2) {
    grid-area: item2;
    margin-top: 64px;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(n+3) .label-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(3) {
    grid-area: item3;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(4) {
    grid-area: item4;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(5) {
    grid-area: item5;
  }
  .sec-event .event-block .cmn-card-list .cmn-card:nth-child(6) {
    grid-area: item6;
  }
}
@media (min-width: 769px) {
  .sec-event .event-block .cmn-card-list {
    gap: 50px 4.7%;
    width: calc(100% - 36px);
    max-width: 1160px;
    margin: 0 auto;
  }
  .sec-event .event-block .cmn-card-list .main-txt {
    margin-top: 8px;
  }
  .sec-event .event-block .cmn-card-list .floor {
    margin-top: 6px;
  }
  .sec-event .event-block .cmn-card-list .sub-txt,
  .sec-event .event-block .cmn-card-list .period {
    margin-top: 4px;
  }
  .sec-event .event-block .cmn-card-list .period {
    font-size: 14px;
  }
}
.sec-event .event-block .cmn-btn {
  margin-top: 30px;
}
@media (min-width: 769px) {
  .sec-event .event-block .cmn-btn {
    margin-top: 50px;
    width: 320px;
  }
}

/* === ショップニュース
==================================== */
.sec-shopnews {
  background: #fff;
}
.sec-shopnews::before, .sec-shopnews::after {
  content: "";
  display: block;
  aspect-ratio: 375/70;
  width: 100%;
  background: url(../images/home/shopnews-bg-t-sp.svg) center top/100% repeat-x;
}
@media (min-width: 769px) {
  .sec-shopnews::before, .sec-shopnews::after {
    aspect-ratio: 1366/225;
    background: url(../images/home/shopnews-bg-t-pc.svg) center top/100% repeat-x;
  }
}
.sec-shopnews::after {
  background: url(../images/home/shopnews-bg-b-sp.svg) center bottom/100% repeat-x;
}
@media (min-width: 769px) {
  .sec-shopnews::after {
    background: url(../images/home/shopnews-bg-b-pc.svg) center bottom/100% repeat-x;
  }
}
.sec-shopnews .inner {
  padding: 45px 24px 30px;
}
@media (min-width: 769px) {
  .sec-shopnews .inner {
    position: relative;
    padding: 0 0 25px;
    width: calc(100% - 96px);
    max-width: 1160px;
    margin: 0 auto;
  }
  .sec-shopnews .inner::before {
    content: "";
    position: absolute;
    top: -100px;
    right: 0;
    aspect-ratio: 186/182;
    width: 186px;
    background: url(../images/home/illust-01.svg) center/100% no-repeat;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0, 0, 0.26, 0.98) 0.3s, opacity 0.4s cubic-bezier(0, 0, 0.26, 0.98) 0.3s;
  }
  .sec-shopnews .inner.in-view::before {
    opacity: 1;
    transform: translateY(0);
  }
  .sec-shopnews .inner .deco-ft {
    content: "";
    position: absolute;
    bottom: clamp(-189px, -16.9050715215vw, -130px);
    left: -29px;
    aspect-ratio: 360/198;
    width: clamp(260px, 33.8101430429vw, 360px);
    background: url(../images/home/illust-02.svg) center/100% no-repeat;
  }
}
.sec-shopnews .ttl-wrap {
  z-index: 2;
  position: relative;
  width: max-content;
}
@media (min-width: 769px) {
  .sec-shopnews .ttl-wrap {
    margin-top: -34px;
  }
}
.sec-shopnews .ttl-wrap .deco-t {
  top: 0;
  right: 50%;
  position: absolute;
  transform: scale(0.7);
  transition: 0.8s 0.2s;
  opacity: 0;
}
.sec-shopnews .ttl-wrap .deco-t img {
  width: 124px;
  height: 72px;
}
@media (min-width: 769px) {
  .sec-shopnews .ttl-wrap .deco-t img {
    width: 170px;
    height: 110px;
  }
}
.sec-shopnews .ttl-wrap .deco-t.in-view {
  transform: scale(1);
  opacity: 1;
  top: -74px;
  right: -64px;
}
@media (min-width: 769px) {
  .sec-shopnews .ttl-wrap .deco-t.in-view {
    top: -115px;
    right: -95px;
  }
}
.sec-shopnews .home-secttl {
  z-index: 2;
  position: relative;
  display: flex;
  margin-bottom: 60px;
}
@media (min-width: 769px) {
  .sec-shopnews .home-secttl {
    margin-bottom: 46px;
  }
}
.sec-shopnews .shopnews-card-list {
  display: grid;
  grid-template-areas: "item1 item1" "item2 item3" "item4 item5";
  gap: 30px 22px;
}
@media (min-width: 769px) {
  .sec-shopnews .shopnews-card-list {
    grid-template-areas: "item1 item2 item3" "item1 item4 item5";
    gap: 0 3.4%;
    grid-template-columns: clamp(300px, 43.1034482759vw, 500px) 1fr 1fr;
  }
}
.sec-shopnews .shopnews-card-list .cmn-card:nth-child(1) {
  grid-area: item1;
}
@media (min-width: 769px) {
  .sec-shopnews .shopnews-card-list .cmn-card:nth-child(1) {
    margin-right: 24px;
  }
}
.sec-shopnews .shopnews-card-list .cmn-card:nth-child(2) {
  grid-area: item2;
}
.sec-shopnews .shopnews-card-list .cmn-card:nth-child(3) {
  grid-area: item3;
}
.sec-shopnews .shopnews-card-list .cmn-card:nth-child(4) {
  grid-area: item4;
}
@media (min-width: 769px) {
  .sec-shopnews .shopnews-card-list .cmn-card:nth-child(4) {
    margin-top: 40px;
  }
}
.sec-shopnews .shopnews-card-list .cmn-card:nth-child(5) {
  grid-area: item5;
}
@media (min-width: 769px) {
  .sec-shopnews .shopnews-card-list .cmn-card:nth-child(5) {
    margin-top: 40px;
  }
}
.sec-shopnews .shopnews-card-list .cmn-card .photo {
  margin-bottom: 13px;
}
@media (min-width: 769px) {
  .sec-shopnews .shopnews-card-list .cmn-card .photo {
    margin-bottom: 16px;
  }
}
.sec-shopnews .shopnews-card-list .cmn-card .photo img {
  object-fit: cover;
}
.sec-shopnews .shopnews-card-list .cmn-card .period {
  margin-top: 4px;
  display: block;
}
.sec-shopnews .shopnews-card-list .cmn-card .sub-txt {
  margin-top: 4px;
}
@media (max-width: 768px) {
  .sec-shopnews .shopnews-card-list .cmn-card .main-txt {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
  .sec-shopnews .shopnews-card-list .cmn-card .floor {
    margin-top: 4px;
    font-size: 13px;
  }
}
.sec-shopnews .shopnews-card-list .cmn-card:first-child .icon-new {
  top: -35px;
  left: 10px;
  width: 70px;
  font-size: 14px;
}
.sec-shopnews .shopnews-card-list .cmn-card:first-child .photo {
  margin-bottom: 20px;
}
.sec-shopnews .shopnews-card-list .cmn-card:first-child .photo .photo-in {
  border-radius: 30px;
}
.sec-shopnews .shopnews-card-list .cmn-card:first-child .category-label {
  font-size: 14px;
  margin-bottom: 8px;
}
.sec-shopnews .shopnews-card-list .cmn-card:first-child .period {
  font-size: 15px;
  margin-top: 4px;
}
@media (min-width: 769px) {
  .sec-shopnews .shopnews-card-list .cmn-card:first-child .period {
    font-size: 16px;
  }
}
.sec-shopnews .shopnews-card-list .cmn-card:first-child .main-txt {
  font-size: 18px;
  line-height: 1.44444444;
  -webkit-line-clamp: 2;
}
@media (min-width: 769px) {
  .sec-shopnews .shopnews-card-list .cmn-card:first-child .main-txt {
    font-size: 22px;
  }
}
.sec-shopnews .shopnews-card-list .cmn-card:first-child .sub-txt {
  font-size: 16px;
  margin-top: 4px;
}
.sec-shopnews .shopnews-card-list .cmn-card:first-child .floor {
  margin-top: 4px;
  font-size: 14px;
}
@media (min-width: 769px) {
  .sec-shopnews .shopnews-card-list .cmn-card:first-child .floor {
    font-size: 13px;
  }
}
.sec-shopnews .cmn-btn {
  margin-top: 30px;
}
@media (min-width: 769px) {
  .sec-shopnews .cmn-btn {
    width: 250px;
    margin: 40px 0 0;
  }
}

/* === サブバナー、googlemap
==================================== */
.home-footer-top .cmn-sub-bnr {
  margin: 40px auto 60px;
}
@media (min-width: 769px) {
  .home-footer-top .cmn-sub-bnr {
    margin: 30px auto 100px;
  }
}
.home-footer-top .googlemap {
  position: relative;
  margin-top: 40px;
  padding-bottom: 30px;
  background-image: repeating-linear-gradient(90deg, rgba(155, 80, 0, 0.3), rgba(155, 80, 0, 0.3) 1px, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0) 12px);
}
@media (min-width: 769px) {
  .home-footer-top .googlemap {
    padding-bottom: 120px;
  }
  .home-footer-top .googlemap::before, .home-footer-top .googlemap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 127px;
    background: #FFF4F0;
  }
  .home-footer-top .googlemap::after {
    top: 127px;
    aspect-ratio: 1366/170;
    height: auto;
    -webkit-mask: url(../../assets-common/images/clip-01.svg) center top/100% no-repeat;
    mask: url(../../assets-common/images/clip-01.svg) center top/100% no-repeat;
  }
}
.home-footer-top .googlemap .inner {
  z-index: 1;
  position: relative;
}
@media (min-width: 769px) {
  .home-footer-top .googlemap .inner {
    position: relative;
    width: calc(100% - 48px);
    max-width: 1116px;
    margin: 0 auto;
    padding-bottom: 42px;
  }
}
.home-footer-top .googlemap iframe {
  aspect-ratio: 375/375;
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .home-footer-top .googlemap iframe {
    aspect-ratio: 1116/490;
    border-radius: 30px;
  }
}
.home-footer-top .googlemap .store-info {
  position: relative;
  width: calc(100% - 48px);
  margin: 30px auto 0;
  background: #fff;
  border-radius: 30px;
  padding: 40px 15px 40px 30px;
}
@media (min-width: 769px) {
  .home-footer-top .googlemap .store-info {
    position: absolute;
    bottom: 0;
    right: -20px;
    padding: 40px;
    width: auto;
    display: flex;
    gap: 40px;
  }
}
.home-footer-top .googlemap .store-info .logo {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
@media (min-width: 769px) {
  .home-footer-top .googlemap .store-info .logo {
    margin-bottom: 0;
  }
}
.home-footer-top .googlemap .store-info .logo .aeontown img {
  width: 218px;
}
@media (min-width: 769px) {
  .home-footer-top .googlemap .store-info .logo .aeontown img {
    width: 233px;
  }
}
.home-footer-top .googlemap .store-info .logo .store img {
  height: 14px;
}
.home-footer-top .googlemap .store-info .address, .home-footer-top .googlemap .store-info .tel {
  font-size: 16px;
  line-height: 1.625;
}
@media (min-width: 769px) {
  .home-footer-top .googlemap .store-info .address, .home-footer-top .googlemap .store-info .tel {
    font-size: 14px;
    line-height: 1.57142857;
  }
}
/*# sourceMappingURL=map/home.css.map */