@charset "UTF-8";
/*-----------------------------------------------------
	shop list (~768px)
-----------------------------------------------------*/
/* intro
-----------------------------------------------------*/
.p-shop-header {
  padding: 2.1875rem 0 1.25rem;
}

/* type
-----------------------------------------------------*/
.p-shop-type {
  background-color: #fff;
  position: sticky;
  top: 3.75rem;
}
.p-shop-type__list {
  display: flex;
  position: relative;
  z-index: 1;
}
.p-shop-type__list::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.p-shop-type__item {
  flex-basis: 50%;
  text-align: center;
}
.p-shop-type__item a,
.p-shop-type__item button {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  box-sizing: content-box;
  line-height: 1.25;
  padding: 0.25em 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  cursor: pointer;
  color: inherit;
}
.p-shop-type__item a.is-active,
.p-shop-type__item button.is-active {
  color: #221D35;
  border-color: #221D35;
}
.p-shop-type__item.authorized a.is-active,
.p-shop-type__item.authorized button.is-active {
  color: #ff1900;
  border-color: #ff1900;
}
.p-shop-type.club {
  top: 5.625rem;
  padding-top: 0.625rem;
  background-color: #fff;
}
.p-shop-type.club .p-shop-type__list {
  justify-content: space-between;
}
.p-shop-type.club .p-shop-type__item {
  flex-basis: auto;
}
.p-shop-type.club .p-shop-type__item a,
.p-shop-type.club .p-shop-type__item button {
  font-size: 0.875rem;
  padding: 0 0.25em;
}
.p-shop-type.club + .p-shop-nav {
  top: 7.5rem;
}

/* nav
-----------------------------------------------------*/
.p-shop-nav {
  position: sticky;
  top: 5.625rem;
}

/* notice
-----------------------------------------------------*/
.p-shop-notice {
  margin: 1.25rem auto 0;
  font-size: 0.75rem;
}

/* area
-----------------------------------------------------*/
.p-shop-area {
  padding: 1.875rem 0;
}
.p-shop-area__text {
  text-align: center;
  font-size: 0.75rem;
  margin-bottom: 1.5em;
}
.p-shop-area__text img {
  display: inline-block;
  height: 1em;
  margin-right: 0.25em;
}
.p-shop-area__table {
  width: 100%;
  border-top: 1px solid #ccc;
  font-size: 0.75rem;
}
.p-shop-area__table thead {
  display: none;
}
.p-shop-area__table tbody tr {
  display: flex;
  flex-wrap: wrap;
  padding: 4vw;
  gap: 0.3125rem 0.625rem;
}
.p-shop-area__table tbody tr.separate {
  border-top: 1px solid #ccc;
}
.p-shop-area__table tbody tr .area {
  flex-basis: 100%;
  font-weight: 600;
}
.p-shop-area__table tbody tr .pref {
  flex-basis: 100%;
}
.p-shop-area__table tbody tr .name {
  flex-basis: 100%;
  font-weight: 600;
}
.p-shop-area__table tbody tr .name a {
  text-decoration: none;
  color: #3e6dbb;
}
.p-shop-area__table tbody tr .name.rc::before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../images/icon.gif) center center no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 0.5em;
}
.p-shop-area__table tbody tr .zip {
  flex-basis: 5em;
}
.p-shop-area__table tbody tr .tel {
  flex-basis: 100%;
}

/* map
-----------------------------------------------------*/
.p-shop-map {
  padding-bottom: 3.75rem;
}
.p-shop-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}

/*-----------------------------------------------------
	shop list (768px~)
-----------------------------------------------------*/
@media (min-width: 768px) {
  /* header
  -----------------------------------------------------*/
  .p-shop-header {
    padding: 5rem 0 3.75rem;
  }
  /* type
  -----------------------------------------------------*/
  .p-shop-type {
    top: 5rem;
    margin-bottom: 1.25rem;
  }
  .p-shop-type__list {
    max-width: 53.125rem;
    margin: 0 auto;
    justify-content: center;
    gap: 5rem;
  }
  .p-shop-type__item {
    flex-basis: 10rem;
  }
  .p-shop-type__item a,
  .p-shop-type__item button {
    font-size: 1.25rem;
  }
  .p-shop-type.club {
    margin-top: 5rem;
    top: 7.3125rem;
    padding-top: 0.625rem;
    background-color: #fff;
  }
  .p-shop-type.club .p-shop-type__list {
    justify-content: space-between;
    width: 45.625rem;
    margin: 0 auto;
    gap: 0;
  }
  .p-shop-type.club .p-shop-type__item {
    flex-basis: auto;
  }
  .p-shop-type.club .p-shop-type__item a,
  .p-shop-type.club .p-shop-type__item button {
    font-size: 1.25rem;
    padding: 0 0.5em;
  }
  .p-shop-type.club + .p-shop-nav {
    top: 9.5625rem;
  }
  /* nav
  -----------------------------------------------------*/
  .p-shop-nav {
    position: sticky;
    top: 7.25rem;
  }
  /* notice
  -----------------------------------------------------*/
  .p-shop-notice {
    font-size: 0.75rem;
    text-align: center;
  }
  /* area
  -----------------------------------------------------*/
  .p-shop-area {
    padding: 3.75rem 0;
  }
  .p-shop-area__table thead {
    display: table-row-group;
    font-size: 0.8125rem;
  }
  .p-shop-area__table thead th {
    padding: 1em;
    font-weight: 600;
    text-align: left;
    border-bottom: solid 1px #ccc;
  }
  .p-shop-area__table tbody tr {
    display: table-row;
    padding: 0;
  }
  .p-shop-area__table tbody tr.separate {
    border: none;
  }
  .p-shop-area__table tbody tr td {
    padding: 1em;
    border-bottom: solid 1px #ccc;
  }
  .p-shop-area__table tbody tr .area {
    flex-basis: 100%;
    font-weight: 600;
  }
  .p-shop-area__table tbody tr .pref {
    flex-basis: 100%;
  }
  .p-shop-area__table tbody tr .name {
    flex-basis: 100%;
    font-weight: 600;
  }
  .p-shop-area__table tbody tr .name a {
    text-decoration: none;
    color: #3e6dbb;
  }
  .p-shop-area__table tbody tr .zip {
    flex-basis: 5em;
  }
  .p-shop-area__table tbody tr .tel {
    flex-basis: 100%;
  }
  /* map
  -----------------------------------------------------*/
  .p-shop-map {
    padding-bottom: 3.75rem;
  }
  .p-shop-map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
/* #
-----------------------------------------------------*/
/*-----------------------------------------------------
	content (1200px~)
-----------------------------------------------------*/
/* #
-----------------------------------------------------*/
/*-----------------------------------------------------
	shop detail (~768px)
-----------------------------------------------------*/
/* shop detail
-----------------------------------------------------*/
.p-shop-detail {
  padding-top: 1.25rem;
}
.p-shop-detail__header {
  margin-bottom: 1.25rem;
}
.p-shop-detail__image {
  margin-bottom: 1.25rem;
}
.p-shop-detail__info {
  font-size: 0.875rem;
  line-height: 1.5;
}
.p-shop-detail__info-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-shop-detail__tag {
  margin-bottom: 0.9375rem;
}
.p-shop-detail__address {
  margin-bottom: 0.625rem;
}
.p-shop-detail__address a {
  font-weight: 600;
  color: #3e6dbb;
  text-decoration: none;
}
.p-shop-detail__table th,
.p-shop-detail__table td {
  padding-bottom: 0.3125rem;
  padding-right: 0.625rem;
}
.p-shop-detail__table th {
  font-weight: 600;
  text-align: left;
}
.p-shop-detail__sns {
  padding-bottom: 0.3125rem;
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  line-height: 0;
}
.p-shop-detail__sns img {
  width: 2.375rem;
}
.p-shop-detail__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.25rem;
  margin-top: 1.875rem;
}
.p-shop-detail__button .c-link-square {
  width: 11.5rem;
  min-width: 0;
}
.p-shop-detail__notice {
  margin-top: 3em;
}

/* shop feature
-----------------------------------------------------*/
.p-shop-feature {
  padding: 2.5rem 0;
}
.p-shop-feature .l-container--narrow {
  padding: 1.25rem 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
}
.p-shop-feature__title {
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  position: absolute;
  top: -0.625em;
  left: 0;
  padding-right: 0.5em;
  background-color: #fff;
  font-weight: 600;
  z-index: 1;
}

/* shop craftman
-----------------------------------------------------*/
.p-shop-craftman__image {
  line-height: 0;
}
.p-shop-craftman__content {
  background: url(../images/bg01.png) right 4vw top 1.875rem no-repeat #221D35;
  background-size: 88%;
  padding: 1.875rem 4vw;
  color: #fff;
}
.p-shop-craftman__name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1em;
}

/* shop photo
-----------------------------------------------------*/
.p-shop-photo {
  padding-top: 3.125rem;
}
.p-shop-photo__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1em;
}
.p-shop-photo__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 2.5rem;
}
.p-shop-photo__image img {
  width: 100%;
}
.p-shop-photo__image figcaption {
  font-size: 0.875rem;
  line-height: 1.5;
  display: block;
  margin-top: 0.75em;
}
.p-shop-photo__button {
  margin-top: 2.5rem;
  text-align: center;
}
.p-shop-photo__carousel[data-slick-carousel]:not(.slick-initialized) {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.p-shop-photo__carousel[data-slick-carousel]:not(.slick-initialized) .p-shop-photo__item:nth-child(n+4) {
  display: none;
}

.p-shop-photo__button.is-hidden {
  display: none;
}

/* shop demo
-----------------------------------------------------*/
.p-shop-demo {
  padding: 3.75rem 0;
}
.p-shop-demo__title {
  font-size: 1rem;
  font-weight: 600;
}
.p-shop-demo__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5rem 1.5rem;
  margin-top: 3.125rem;
}
.p-shop-demo__pattern {
  flex-basis: calc(50% - 0.75rem);
}
.p-shop-demo__pattern-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1em;
}
.p-shop-demo__list {
  font-size: 1rem;
}
.p-shop-demo__list dt,
.p-shop-demo__list dd {
  box-sizing: border-box;
  padding: 0 0.5em;
}
.p-shop-demo__list dt {
  background-color: #908ba1;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.p-shop-demo__list dd {
  border: 1px solid #908ba1;
  border-top: none;
}
.p-shop-demo__list dd.small {
  font-size: 0.75rem;
  line-height: 1.25;
  padding: 0 0.75em;
}
.p-shop-demo__cross {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  margin: 1.25rem auto;
  line-height: 0;
}
.p-shop-demo__cross img {
  width: 100%;
}
.p-shop-demo__button {
  text-align: center;
  margin-top: 3.125rem;
}

/* shop product table
-----------------------------------------------------*/
.p-shop-product__table {
  width: 100%;
  font-size: 0.75rem;
}
.p-shop-product__table thead {
  display: none;
}
.p-shop-product__table tbody tr {
  display: block;
  border-bottom: 1px solid #ccc;
  padding: 1em 0;
}
.p-shop-product__table tbody td.name {
  display: block;
  font-weight: 700;
  color: #3e6dbb;
}
.p-shop-product__table tbody td.material {
  display: flex;
}
.p-shop-product__table tbody td.material::before {
  content: "Material：";
  font-weight: 400;
}
.p-shop-product__table tbody td.color {
  display: flex;
}
.p-shop-product__table tbody td.color::before {
  content: "Color：";
  font-weight: 400;
}
.p-shop-product__table tbody td.stock {
  display: flex;
}
.p-shop-product__table tbody td.stock::before {
  content: "在庫状況：";
  font-weight: 400;
}
.p-shop-product .p-product-detail__button .p-product__text {
  margin-top: 1em;
  font-weight: 700;
}

/*-----------------------------------------------------
	shop detail (~768px)
-----------------------------------------------------*/
@media (min-width: 768px) {
  /* shop detail
  -----------------------------------------------------*/
  .p-shop-detail {
    padding-top: 3.125rem;
  }
  .p-shop-detail__inner {
    display: grid;
    grid-template: "title image" "info image"/1fr 33.75rem;
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
  }
  .p-shop-detail__header {
    margin-bottom: 2.5rem;
  }
  .p-shop-detail__image {
    grid-area: image;
    margin-bottom: 0;
    align-self: flex-end;
  }
  .p-shop-detail__info {
    grid-area: info;
  }
  .p-shop-detail__button {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1.875rem;
  }
  /* shop feature
  -----------------------------------------------------*/
  .p-shop-feature {
    padding: 3.125rem 0;
  }
  /* shop craftman
  -----------------------------------------------------*/
  .p-shop-craftman__inner {
    display: flex;
    align-items: stretch;
  }
  .p-shop-craftman__image {
    flex-basis: 26.5625rem;
  }
  .p-shop-craftman__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-shop-craftman__content {
    flex-basis: calc(100% - 26.5625rem);
    box-sizing: border-box;
    background-position: right bottom;
    background-size: 77%;
    padding: 1.875rem 1.25rem;
  }
  /* shop photo
  -----------------------------------------------------*/
  .p-shop-photo {
    padding-top: 3.75rem;
  }
  .p-shop-photo .l-container--narrow {
    position: relative;
  }
  .p-shop-photo__carousel .slick-slide {
    margin: 0 0.625rem;
  }
  .p-shop-photo__carousel .slick-list {
    margin: 0 -0.625rem;
  }
  .p-shop-photo__carousel .slick-prev {
    display: none !important;
  }
  .p-shop-photo__carousel .slick-next {
    position: absolute;
    top: 45%;
    right: -1.4375rem;
    transform: translateY(-50%);
    width: 2.8125rem;
    height: 2.8125rem;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: #fff;
    z-index: 1;
    cursor: pointer;
  }
  .p-shop-photo__carousel .slick-next:before {
    content: "";
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    margin: auto;
    background: url(../images/arrow.svg) center center no-repeat;
    background-size: contain;
    transform: rotate(90deg);
    opacity: 1;
    filter: brightness(0);
  }
  .p-shop-photo__button {
    display: none;
  }
  /* shop demo
  -----------------------------------------------------*/
  .p-shop-demo {
    padding: 5rem 0;
  }
  .p-shop-demo__inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 3.125rem;
  }
  .p-shop-demo__pattern {
    flex-basis: calc(20% - 2.5rem);
  }
  /* shop product table
  -----------------------------------------------------*/
  .p-shop-product__table {
    width: 100%;
  }
  .p-shop-product__table thead {
    display: table-header-group;
  }
  .p-shop-product__table thead tr {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  .p-shop-product__table thead th {
    padding: 0.75em;
    font-weight: 700;
    text-align: left;
  }
  .p-shop-product__table thead th.stock {
    padding: 0.75em 0;
    text-align: center;
  }
  .p-shop-product__table tbody tr {
    display: table-row;
    border-bottom: 1px solid #ccc;
    padding: 1em 0;
  }
  .p-shop-product__table tbody td {
    width: 30%;
    box-sizing: border-box;
    padding: 0.75em;
  }
  .p-shop-product__table tbody td.name {
    display: table-cell;
    font-weight: 700;
  }
  .p-shop-product__table tbody td.material {
    display: table-cell;
  }
  .p-shop-product__table tbody td.material::before {
    display: none;
  }
  .p-shop-product__table tbody td.color {
    display: table-cell;
  }
  .p-shop-product__table tbody td.color::before {
    display: none;
  }
  .p-shop-product__table tbody td.stock {
    width: 10%;
    display: table-cell;
    padding: 0.75em 0;
    text-align: center;
  }
  .p-shop-product__table tbody td.stock::before {
    display: none;
  }
}/*# sourceMappingURL=shop.css.map */