/* TOP共通 */
.p-top-section {
  box-sizing: content-box;
  margin: 64px 0;
  @media screen and (min-width: 768px) { margin: 96px 0; }
}

.p-top-section__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.p-top-section__header {
  display: flex;
  justify-content: center;
  align-items: center;
}



.p-top-section__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
}



/* スライドショー */
.p-main-slider {
  width: 100%;
  margin: 0;
  padding: 0;
}

.p-main-slider img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* bxSlider reset */
.p-main-slider .bx-wrapper {
  border: none;
  box-shadow: none;
  margin-bottom: 0;
}

.p-main-slider .bx-wrapper .bx-viewport {
  border: 0;
  box-shadow: none;
  left: 0;
}

.p-main-slider .bx-pager {
  box-sizing: border-box;
  padding-top: 0;
  padding-right: 25px;
  bottom: 30px;
  text-align: right;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-main-slider .bx-pager { display: block; }
}

.p-main-slider .bx-pager.bx-default-pager a {
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.5);
}

.p-main-slider .bx-pager.bx-default-pager a.active {
  position: relative;
  background: #fff;
}

.p-main-slider .bx-pager.bx-default-pager a:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* インフォメーション */
.p-top-news {
  margin: 16px 0;
}

.p-top-news .splide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .p-top-news .splide {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }
}

.p-top-news .splide__track {
  display: flex;
  flex: 1;
  width: 100%;
}

.p-top-news .splide__list {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.p-top-news .splide__arrows {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media screen and (min-width: 600px) {
  .p-top-news .splide__arrows { align-self: center; }
}

.p-top-news .splide__arrow {
  position: static;
  transform: translateY(0);
  background: transparent;
  width: 24px;
  height: 24px;
  transition: 0.3s ease;
}

.p-top-news .splide__arrow svg {
  width: 14px;
  height: 14px;
  fill: #02294e;
}

.p-top-news .splide__arrow:hover:not(:disabled) {
  opacity: 1;
  background: #f0f0f0;
}

.p-top-news__container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 max(16px, 2%);
}

.p-top-news__header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.p-top-news__body {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.p-top-news-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
  width: 100%;
  min-width: 0;

  @media screen and (min-width: 768px) {
    flex-direction: row;
    gap: 16px;
    font-size: 14px;
  }
}

.p-top-news-list a {
  text-decoration: underline;
}
.p-top-news-list a:hover { opacity: 0.7; }

.p-top-news-list__date { flex: 0 0 auto; }

.p-top-news-list__title {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* スマホ等でタップ時に全文表示するクラス */
.p-top-news-list__title.is-expanded {
  white-space: normal;
  overflow: visible;
}

/* コンセプト */
.p-concept {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 64px 0;

  @media screen and (min-width: 1024px) {
    flex-direction: row-reverse;
    align-items: center;
    gap: 0;
    margin-top: 80px;
    margin-bottom: 120px;
  }
}

.p-concept__img {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
  background-image: url(https://img.shop-pro.jp/tmpl_img/91/no-image-concept.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  @media screen and (min-width: 1024px) {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    width: 50%;
    min-height: 600px;
  }
}

.p-concept__text {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 max(16px, 2%);
  line-height: 2;
  text-align: center;

  @media screen and (min-width: 1024px) {
    padding: 80px 32px;
    width: 50%;
    max-width: 650px;
    max-height: 600px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: left;
  }
}

.p-concept__title {
  margin: 0;
  font-size: 18px;
  font-weight: normal;
  @media screen and (min-width: 1024px) { font-size: 26px; }
}

.p-concept--writing-mode-horizontal .p-concept__text {
  writing-mode: horizontal-tb;
}



/* おすすめ商品 */
.p-top-highly-recommended {
  align-self: center;
  max-width: 100%;
  @media screen and (min-width: 600px) { max-width: 950px; }
}

/* フリースペース */
.p-top-free {
  max-width: 1280px;
  margin: 96px auto;
  padding: 0 max(16px, 2%);
}

/* 店舗情報 */
.p-shop {
  margin: 64px 0;
  @media screen and (min-width: 1024px) { margin: 80px 0; }
}

.p-shop__container {
  display: flex;
  flex-direction: column-reverse;
  @media screen and (min-width: 1024px) {
    flex-direction: row-reverse;
    align-items: center;
  }
}

.p-shop__text {
  background-color: #02294e;
  width: 100%;
  padding: 48px 0;

  @media screen and (min-width: 1024px) { padding: 80px 0; }

.p-shop__image + .p-shop__text {
  @media screen and (min-width: 1024px) {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-right: -20%;
    padding: 80px 20% 80px 0;
  }
}
@media screen and (min-width: 1800px) {
  .p-shop__image + .p-shop__text {
    display: flex;
    justify-content: flex-end;
    padding-right: 25%;
  }
}
}

.p-shop__text-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.p-shop__image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 280px;

  @media screen and (min-width: 1024px) {
    flex: 0 0 50%;
    height: auto;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    @media screen and (min-width: 1024px) {
      max-width: 820px;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
    }
    @media screen and (min-width: 1640px) {
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
    }
  }
}

.p-shop__header {
  max-width: 600px;
  margin-inline: auto;
}

.p-shop__body,
.p-shop__footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  margin-inline: auto;
  padding: 0 max(16px, 2%);
}

.p-shop__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.2;
}
