@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap);
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  background: #ffdde7;
  color: #2b2b2b;
  line-height: 1.5;
  letter-spacing: .05em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #2b2b2b;
  text-decoration: none;
  transition: opacity .4s ease;
}
a:hover {
  opacity: .7;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}

.is-tab {
  display: none;
}

.is-sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .is-tab {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}

/*------------------------------------------
  modules
------------------------------------------*/
.l-grid {
  display: -moz-flex;
  display:      flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}

/* ===== layout ===== */
[class*="l-in"] {
  margin: auto;
  padding: 0 20px;
}

@media only screen and (max-width: 768px) {
  [class*="l-in"] {
    padding: 0 11px;
  }
}

/* ===== modal ===== */
.js-modal-open {
  cursor: pointer;
}

.js-modal-close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  background: url(../images/close.svg) no-repeat center;
  background-size: 100%;
}

.js-modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(240, 202, 210, .84);
  z-index: 100;
}
.js-modal .modal-wrapper {
  display: table;
  width: 100%;
  height: 100vh;
}
.js-modal .modal-inner {
  display: table-cell;
  vertical-align: middle;
  padding: 0 40px;
}
.js-modal .modal-contents {
  position: relative;
  background: #fff;
  max-width: 790px;
  margin: auto;
  box-sizing: border-box;
  padding: 40px;
}

@media only screen and (max-width: 768px) {
  .js-modal-close {
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
  .js-modal .modal-inner {
    padding: 35px 20px;
  }
}

/*------------------------------------------
  header
------------------------------------------*/
.page-header {
  height: 100vh;
  height: 100dvh;
  position: relative;
}
.page-header .header-bg {
  opacity: 0;
  transform: scale(1.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 77.08333vw;
  min-height: calc(100vh + 356px);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
  background-image: url(../images/header-bg.png);
}
.page-header .header-txt {
  position: absolute;
  width: 953px;
  height: 646px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transform: scale(.8) translate(-50%, -50%);
  transform-origin: left top;
}
.page-header .header-ttl span {
  position: absolute;
  left: 0;
  opacity: 0;
}
.page-header .header-ttl .ttl01 {
  top: 0;
}
.page-header .header-ttl .ttl02 {
  top: 228px;
}
.page-header .header-ttl .ttl03 {
  top: 422px;
}
.page-header .header-catch {
  opacity: 0;
  transform: translateY(50px);
  position: absolute;
  top: 25px;
  right: -26px;
  width: 343px;
}

.wrapper {
  opacity: 0;
}
.wrapper.is-active .page-header .header-bg {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s 1s, transform 1s 1s;
}
.wrapper.is-active .page-header .header-txt span {
  opacity: 1;
  transition-duration: 1s;
  transition-property: opacity;
}
.wrapper.is-active .page-header .header-txt .ttl01 {
  transition-delay: 2s;
}
.wrapper.is-active .page-header .header-txt .ttl02 {
  transition-delay: 3s;
}
.wrapper.is-active .page-header .header-txt .ttl03 {
  transition-delay: 4s;
}
.wrapper.is-active .page-header .header-catch {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s 5s, transform 1s 5s;
}

@media only screen and (max-width: 1024px) {
  .page-header .header-txt {
    transform: scale(.8) translate(-50%, -50%);
    transform-origin: left top;
  }
}

@media only screen and (max-width: 768px) {
  .page-header {
    height: 138.66667vw;
  }
  .page-header .header-bg {
    height: 234.93333vw;
    min-height: auto;
    background-image: url(../images/header-bg-sp.png);
  }
  .page-header .header-txt {
    width: 100%;
    height: 94.66667vw;
    top: 49.86667vw;
    left: 0;
    transform: translate(0);
  }
  .page-header .header-ttl .ttl01 {
    top: 0;
  }
  .page-header .header-ttl .ttl02 {
    top: 22.93333vw;
  }
  .page-header .header-ttl .ttl03 {
    top: 42.66667vw;
  }
  .page-header .header-catch {
    top: -27.73333vw;
    right: 4.53333vw;
    width: 56.8vw;
  }
}

/*------------------------------------------
  footer
------------------------------------------*/
.page-footer {
  text-align: center;
  background: #fff;
  padding: 50px 0 55px;
}
.page-footer .footer-logo {
  margin-bottom: 20px;
}
.page-footer .footer-sns {
  margin-bottom: 20px;
}
.page-footer .footer-sns li {
  display: inline-block;
  margin: 0 5px;
}
.page-footer .footer-txt {
  line-height: 2;
}

@media only screen and (max-width: 768px) {
  .page-footer .footer-logo img {
    width: 105px;
  }
  .page-footer .footer-sns {
    margin-bottom: 30px;
  }
}

/*------------------------------------------
  contents
------------------------------------------*/
.wrapper {
  overflow: hidden;
  opacity: 0;
}
.wrapper.is-active {
  opacity: 1;
  transition: opacity 1s;
}

.page-main {
  position: relative;
  z-index: 1;
  padding-top: 4.86111vw;
}

@media only screen and (max-width: 768px) {
  .page-main {
    padding-top: 0;
    background: url(../images/bg-bottom-sp.png) no-repeat center bottom;
    background-size: 100%;
  }
}

.sec {
  position: relative;
}
.sec .sec-in {
  position: relative;
}

/* ===== nav ===== */
.sec-bnr .bnrlist {
  justify-content: center;
}
.sec-bnr .bnrlist li {
  width: 48%;
  max-width: 480px;
}
.sec-bnr .bnrlist a {
  display: block;
}

.sec-bnr__top {
  margin-bottom: 60px;
}
.sec-bnr__top .bnrlist li:last-child {
  margin-left: 2%;
}

.sec-bnr__bottom {
  padding: 175px 0 150px;
  background-image: url(../images/bnr-bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.sec-bnr__bottom .bnrlist li:first-child {
  margin-top: 35px;
}

@media only screen and (max-width: 768px) {
  .sec-bnr .sec-in {
    padding: 0 20px;
  }
  .sec-bnr .bnrlist li {
    width: 100%;
    max-width: 100%;
  }
  .sec-bnr__top {
    margin-bottom: 20.8vw;
  }
  .sec-bnr__top .bnrlist li:last-child {
    margin-left: 0;
  }
  .sec-bnr__bottom {
    padding: 29.33333vw 0 17.33333vw;
    background: none;
  }
  .sec-bnr__bottom .bnrlist li:first-child {
    margin-top: 0;
  }
}

/* ===== shop ===== */
.sec-shop {
  padding: 0 0 70px;
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.sec-shop .sec-in {
  max-width: 1166px;
}

.shop-block {
  margin-bottom: 120px;
}
.shop-block:last-child {
  margin-bottom: 0;
}
.shop-block .block-ttl {
  text-align: center;
  margin-bottom: 50px;
}

.shoplist {
  gap: 80px 0;
}
.shoplist .item {
  width: 23%;
  position: relative;
  margin-right: 2.666%;
  background-repeat: repeat-y;
  background-size: 100%;
}
.shoplist .item:before, .shoplist .item:after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100%;
}
.shoplist .item:before {
  top: -9px;
  background-position: center bottom;
}
.shoplist .item:after {
  bottom: -9px;
  background-position: center top;
}
.shoplist .item-in {
  position: relative;
  display: block;
  padding: 23px 26px 23px 16px;
  z-index: 2;
}
.shoplist .item:nth-child(2n) {
  transform: translateY(40px);
}
.shoplist .item:nth-child(4n-3) {
  background-image: url(../images/item-bg-pink02.png);
}
.shoplist .item:nth-child(4n-3):before {
  background-image: url(../images/item-bg-pink01.png);
}
.shoplist .item:nth-child(4n-3):after {
  background-image: url(../images/item-bg-pink03.png);
}
.shoplist .item:nth-child(4n-2) {
  background-image: url(../images/item-bg-gray02.png);
}
.shoplist .item:nth-child(4n-2):before {
  background-image: url(../images/item-bg-gray01.png);
}
.shoplist .item:nth-child(4n-2):after {
  background-image: url(../images/item-bg-gray03.png);
}
.shoplist .item:nth-child(4n-1) {
  background-image: url(../images/item-bg-yellow02.png);
}
.shoplist .item:nth-child(4n-1):before {
  background-image: url(../images/item-bg-yellow01.png);
}
.shoplist .item:nth-child(4n-1):after {
  background-image: url(../images/item-bg-yellow03.png);
}
.shoplist .item:nth-child(4n) {
  margin-right: 0;
  background-image: url(../images/item-bg-green02.png);
}
.shoplist .item:nth-child(4n):before {
  background-image: url(../images/item-bg-green01.png);
}
.shoplist .item:nth-child(4n):after {
  background-image: url(../images/item-bg-green03.png);
}
.shoplist .item-img {
  padding: 0 17px 4px;
  border-bottom: 1px solid #f5f5f5;
}
.shoplist .item-txt {
  padding: 15px 0 0;
  text-align: center;
  font-weight: 700;
}
.shoplist .item-txt .open {
  font-size: 18px;
}
.shoplist .item-txt .floor {
  font-size: 16px;
}
.shoplist .item-txt .open, .shoplist .item-txt .floor {
  color: #e50238;
}
.shoplist .item-txt .open span, .shoplist .item-txt .floor span {
  display: inline-block;
  border-bottom: 1px solid #e50238;
}
.shoplist .item-txt .name {
  font-size: 19px;
  margin-top: 5px;
}
.shoplist .item-txt .category {
  font-size: 12px;
  font-weight: 400;
  margin-top: 8px;
}
.shoplist .item-txt .category span {
  display: inline-block;
  background: #ffe1eb;
  border-radius: 11px;
  padding: 3px 1.5em;
}
.shoplist .item-txt .btn {
  margin-top: 10px;
}
.shoplist .item-txt .btn a {
  display: inline-block;
  width: 116px;
  max-width: 100%;
  line-height: 40px;
  text-align: left;
  box-sizing: border-box;
  background: #e50238 url(../images/arrow-right.svg) no-repeat right 11px center;
  background-size: 16px;
  color: #fff;
  font-size: 16px;
  border-radius: 40px;
  padding-left: 20px;
}

.shop-modal {
  justify-content: space-between;
}
.shop-modal_img {
  width: 48%;
}
.shop-modal_img .img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.shop-modal_img .img-wrap .bg {
  display: none;
}
.shop-modal_cont {
  width: 48%;
}
.shop-modal .shop-info {
  margin-bottom: 20px;
  font-weight: 700;
}
.shop-modal .shop-info .logo {
  width: 41%;
}
.shop-modal .shop-info .logo img {
  border: 1px solid #dbdbdb;
}
.shop-modal .shop-info .info {
  width: 55%;
  margin-left: auto;
}
.shop-modal .shop-info .open, .shop-modal .shop-info .floor {
  color: #e50238;
}
.shop-modal .shop-info .open span, .shop-modal .shop-info .floor span {
  display: inline-block;
  border-bottom: 1px solid #e50238;
}
.shop-modal .shop-info .open {
  font-size: 16px;
}
.shop-modal .shop-info .name {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 5px;
}
.shop-modal .shop-info .category {
  font-size: 12px;
  font-weight: 400;
  margin-top: 8px;
}
.shop-modal .shop-info .category span {
  display: inline-block;
  background: #ffe1eb;
  border-radius: 11px;
  padding: 3px 1.5em;
}
.shop-modal .shop-txt {
  line-height: 1.6;
}
.shop-modal .shop-sns {
  margin-top: 20px;
}
.shop-modal .shop-sns li {
  margin-right: 10px;
}

@media only screen and (max-width: 1024px) {
  .shoplist .item {
    width: 32%;
    margin-right: 2%;
  }
  .shoplist .item:nth-child(4n) {
    margin-right: 2%;
  }
  .shoplist .item:nth-child(3n) {
    margin-right: 0;
  }
  .shoplist .item:nth-child(2n) {
    transform: translateY(0);
  }
}

@media only screen and (max-width: 768px) {
  .sec-shop {
    padding: 0;
    background-image: url(../images/bg-sp.png);
    background-position: center top 46.4vw;
    background-size: 100%;
  }
  .shop-block {
    margin-bottom: 55px;
  }
  .shop-block .block-ttl {
    margin-bottom: 25px;
  }
  .shop-block .block-ttl img {
    width: 255px;
  }
  .shoplist {
    gap: 40px 0;
    justify-content: space-between;
  }
  .shoplist .item {
    width: 48.5%;
    margin-right: 0 !important;
  }
  .shoplist .item:before, .shoplist .item:after {
    height: 6px;
  }
  .shoplist .item:before {
    top: -5px;
  }
  .shoplist .item:after {
    bottom: -5px;
  }
  .shoplist .item-in {
    padding: 10px 15px 10px 10px;
  }
  .shoplist .item-img {
    padding: 0 6px 4px;
  }
  .shoplist .item-txt {
    padding: 10px 0 0;
  }
  .shoplist .item-txt .open {
    font-size: 12px;
  }
  .shoplist .item-txt .floor {
    font-size: 10px;
  }
  .shoplist .item-txt .name {
    font-size: 13px;
  }
  .shoplist .item-txt .category {
    font-size: 10px;
    margin-top: 4px;
  }
  .shoplist .item-txt .btn {
    margin-top: 10px;
  }
  .shoplist .item-txt .btn a {
    width: 95px;
    line-height: 28px;
    background: #e50238 url(../images/arrow-right.svg) no-repeat right 6px center;
    background-size: 16px;
    font-size: 14px;
    padding-left: 16px;
  }
  .shop-modal_img {
    width: 100%;
    margin-bottom: 15px;
  }
  .shop-modal_cont {
    width: 100%;
  }
  .shop-modal .shop-info {
    margin-bottom: 20px;
  }
  .shop-modal .shop-info .logo {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  .shop-modal .shop-info .logo .img {
    width: 32%;
  }
  .shop-modal .shop-info .logo .txt {
    width: 62%;
    margin-left: auto;
  }
  .shop-modal .shop-info .info {
    width: 100%;
  }
  .shop-modal .shop-info .open {
    font-size: 14px;
  }
  .shop-modal .shop-info .floor {
    font-size: 12px;
  }
  .shop-modal .shop-info .name {
    font-size: 16px;
    margin: 0;
  }
  .shop-modal .shop-info .category {
    margin-top: 15px;
  }
  .shop-modal .shop-txt {
    line-height: 1.6;
  }
  .shop-modal .shop-sns {
    margin-top: 15px;
  }
}