/*
** .summary
*/

.summary__contents::before {
  content: 'MISHIMAYA';
  display: block;
  font-family: var(--barlow);
  font-size: 3.125em;
  font-weight: bold;
  color: var(--red);
  line-height: 0.785;
  letter-spacing: -0.03em;
  margin-bottom: 0.35em;
}

.summary__store-name-container {
  display: flex;
  align-items: center;
  column-gap: 0.625em;
  margin-bottom: 1.625em;
}

.summary__store-name {
  font-size: 1.625em;
  font-weight: 500;
  line-height: 1.2;
}

.summary__store-new {
  font-size: 1.25em;
  font-weight: bold;
  color: #fff;
  letter-spacing: -0.03em;
  white-space: nowrap;
  background-color: var(--red);
  border-radius: 0.4em;
  padding: 0.35em 0.5em;
}

.summary__body {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  grid-row-gap: 0.67em;
  margin-bottom: 1.625em;
}

.summary__body > p {
  position: relative;
  padding-left: 2em;
}

.summary__body i {
  position: absolute;
  top: calc((1.56em - 1em) / 2 * 1.25);
  left: 0.2em;
  width: 1em;
  font-weight: bold;
  color: var(--red);
  text-align: center;
  transform: scale(1.25);
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
}

.summary__details-container {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  grid-row-gap: 1.875em;
}

.summary__details-title {
  font-weight: 500;
  border-bottom: 0.1rem solid var(--l-gray02);
  padding-bottom: 0.625em;
  margin-bottom: 0.9375em;
}

.summary__details-items {
  font-size: 0.9375em;
}

.summary__details-items span:not(:last-child)::after {
  content: '\02f';
  padding-left: 0.25em;
  padding-right: 0.25em;
}

.summary__details-note {
  font-size: 0.8125em;
  color: var(--gray);
  margin-top: 1em;
}

.summary__comments {
  color: #fff;
  background-color: var(--green);
  border-radius: 1.875em;
  padding: 1.125em 1em 1.5em;
}

.summary__store_manager {
  margin-bottom: 0.8em;
}

.summary__message {
  text-align: justify;
}


/*
** .access
*/

.access {
  position: relative;
  z-index: -1;
  margin-top: -2.1875em;
  margin-bottom: 5em;
}

.access #map {
  width: 100%;
  height: 20em;
}


/*
** #storenews
*/

#storenews {
  margin-bottom: 5em;
}

.storenews__header {
  margin-bottom: 2.375em;
}

.storenews__list-container {
  background-color: var(--green);
  border-top-left-radius: 1.875em;
  border-bottom-left-radius: 1.875em;
  padding-top: 2em;
  padding-bottom: 2em;
  margin-bottom: 2.25em;
}

.storenews__item {
  width: 18.75em;
  background-color: #fff;
  border-radius: 1.25em;
  overflow: hidden;
}

.storenews__item:not(:last-child) {
  margin-right: 1.625em;
}

.storenews__item-inner {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: max-content 1fr max-content;
  height: 100%;
}

.storenews__item-header {
  display: grid;
  grid-template-columns: 3.125em 1fr max-content;
  grid-auto-rows: max-content;
  align-items: center;
  grid-column-gap: 0.625em;
  padding: 0.8125em 0.9375em;
}

.storenews__item-store-icon img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.storenews__item-image {
  position: relative;
  border-radius: 1.25em;
  overflow: hidden;
}

.storenews__item-image::before {
  content: '';
  display: block;
  padding-top: calc((3 / 4) * 100%);
}

.storenews__item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.storenews__item-contents a {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr max-content;
  grid-row-gap: 0.625em;
  padding-bottom: 0.9375em;
  padding-left: 0.8125em;
  padding-right: 0.8125em;
}

.storenews__item-title {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.2;
}

.storenews__item-news-body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.9375em;
  text-align: justify;
  overflow: hidden;
}

.storenews__item-footer {
  background-color: var(--l-gray01);
  padding: 0.6875em 0.8125em 0.9375em;
}

.storenews__item-post-time {
  display: block;
  font-size: 0.9375em;
  font-weight: 500;
  color: var(--green);
  text-align: right;
}

.storenews__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-column-gap: 1em;
}


/*
** .flyer-saving
*/

.flyer-saving:not(:last-child) {
  margin-bottom: 3.375em;
}

.flyer-saving__header {
  margin-bottom: 2.375em;
}

.flyer-saving__list-container {
  background-color: var(--beige);
  border-top-left-radius: 1.875em;
  border-bottom-left-radius: 1.875em;
  padding-top: 1.625em;
  padding-bottom: 2em;
  margin-bottom: 2.25em;
}

.flyer-saving__item {
  width: 18.75em;
  background-color: #fff;
  border-radius: 1.875em;
  overflow: hidden;
}

.flyer-saving__item:not(:last-child) {
  margin-right: 1.625em;
}

.flyer-saving__item a {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: max-content 1fr;
  grid-row-gap: 0.625em;
  height: 100%;
  padding: 0.8125em 0.8125em 1em;
}

.flyer-saving__item-thumbnail {
  position: relative;
  border-radius: 1.25em;
  overflow: hidden;
}

.flyer-saving__item-thumbnail::before {
  content: '';
  display: block;
  padding-top: calc((1 / 1.414) * 100%);
}

.flyer-saving__item-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.flyer-saving__item-contents {
  position: relative;
  display: grid;
  grid-template-columns: calc(100% - 3em);
  grid-template-rows: max-content 1fr;
  grid-row-gap: 0.625em;
  height: 100%;
}

.flyer-saving__item-contents::after {
  content: '\2b';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: calc((2.75em / 2.25));
  height: calc((2.75em / 2.25));
  font-size: 2.25em;
  color: var(--red);
  line-height: calc((2.75em / 2.25 * 0.95));
  text-align: center;
  border: 0.2rem solid var(--red);
  border-radius: 50%;
  transition: var(--transition);
}

.flyer-saving__item-title {
  font-size: 1.125em;
  font-weight: 500;
}

.flyer-saving__item-summary {
  font-size: 0.9375em;
}