body {
  background: #eddbcd;
}

/* ========================================
   Stores
======================================== */
.p-stores__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========================================
   MV
======================================== */
.p-stores-mv {
  padding-top: 80px;
}

.p-stores-mv__title {
  margin: 0;
  text-align: center;
}

.p-stores-mv__title img {
  display: block;
  margin: 0 auto;
  width: 390px;
}

/* ========================================
   Intro
======================================== */
.p-stores-intro {
  margin-top: 50px;
}

.p-stores-intro__inner {
  text-align: center;
}

.p-stores-intro__text {
  margin: 0;
  font-size: 20px;
  line-height: 2;
}

.p-stores-intro__label {
  display: inline-block;
  width: 94px;
  margin: 0 4px;
  vertical-align: middle;
}

/* ========================================
   Filter
======================================== */
.p-stores-filter {
  margin-top: 34px;
}

.p-stores-filter__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-stores-filter__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 40px;
  padding: 0 20px;
  color: #3957cc;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  border: 2px solid #3957cc;
  border-radius: 999px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .p-stores-filter__item a:hover {
    background: #3957cc;
    color: #fff;
    border-color: #3957cc;
  }
}

/* ========================================
   Demo
======================================== */
.p-stores-demo {
  margin-top: 80px;
}

.p-stores-demo__inner {
  position: relative;
  padding: 88px 80px 80px;
  background: #fff;
  border-radius: 10px;
}

.p-stores-demo__title {
  position: absolute;
  top: 0;
  left: 50%;
  width: 840px;
  margin: 0;
  text-align: center;
  transform: translate(-50%, -50%);
}

.p-stores-demo__title img {
  width: 100%;
}

.p-stores-demo__head {
  text-align: center;
}

.p-stores-demo__lead {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
}

.p-stores-demo__text {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 2;
}

.p-stores-demo__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 50px;
  margin-top: 26px;
}

.p-stores-demo__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 24px 0;
  border-bottom: 1px solid #000;
}

.p-stores-demo__shopname {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.p-stores-demo__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 100px;
  min-height: 38px;

  /* ▼ 通常（青塗り） */
  background: #3957cc;
  color: #fff;
  border: 1px solid #3957cc;

  font-size: 14px;
  line-height: 1;
  text-decoration: none;

  outline: none;
  cursor: pointer;

  transition:
    background-color 0.3s,
    color 0.3s,
    border-color 0.3s;
}

/* ▼ hover（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  .p-stores-demo__button:hover {
    background: #fff;
    color: #3957cc;
    border-color: #3957cc;
  }
}

/* ========================================
   Area List
======================================== */
.p-stores-area-list {
  margin-top: 106px;
}

.p-stores-area + .p-stores-area {
  margin-top: 106px;
}

.p-stores-area__head {
  margin-bottom: 44px;
}

.p-stores-area__title {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  color: #3957cc;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.p-stores-area__title::before,
.p-stores-area__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #3957cc;
}

/* ========================================
   Accordion
======================================== */
.p-stores-accordion {
  overflow: hidden;
}

.p-stores-accordion + .p-stores-accordion {
  margin-top: 32px;
}

.p-stores-accordion__title {
  margin: 0;
}

.p-stores-accordion__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 72px 16px 24px;
  color: #fff;
  background: #3957cc;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.p-stores-accordion__label {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-stores-accordion__icon {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

.p-stores-accordion__icon::before,
.p-stores-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.p-stores-accordion__icon::before {
  width: 24px;
  height: 2px;
}

.p-stores-accordion__icon::after {
  width: 2px;
  height: 24px;
}

.p-stores-accordion__trigger[aria-expanded="true"]
  .p-stores-accordion__icon::after {
  display: none;
}

.p-stores-accordion__content {
  height: 0;
  overflow: hidden;
  padding-top: 32px;
  visibility: hidden;
  opacity: 0;
  transition:
    height 0.5s ease,
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.p-stores-accordion__trigger[aria-expanded="true"]
  + .p-stores-accordion__content {
  padding-top: 54px;
}

.p-stores-accordion.is-open .p-stores-accordion__content {
  visibility: visible;
  opacity: 1;
}

/* ========================================
   Store List
======================================== */
.p-stores-list {
  display: flex;
  flex-direction: column;
}

.p-stores-list__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 52px;
  align-items: stretch;
}

.p-stores-list__cell {
  display: flex;
  min-width: 0;
}

.p-stores-list__cell > .p-store-card {
  width: 100%;
}

/* ========================================
   Store Card
======================================== */
.p-store-card {
  display: flex;
  align-items: center;
  padding: 8px 8px 16px;
  background: transparent;
}

.p-stores-list__row.is-even .p-store-card {
  background: rgba(255, 255, 255, 0.5);
}

.p-store-card__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  flex: 1;
}

.p-store-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.p-store-card__name {
  margin: 0;
  min-width: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.p-store-card__text {
  margin-right: 0.35em;
}

.p-store-card__label {
  display: inline-block;
  padding: 4px 8px;
  background: #f08df4;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  vertical-align: 0.08em;
}

.p-store-card__tel {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
  flex-shrink: 0;
}

.p-store-card__side {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  flex-shrink: 0;
}

/* ========================================
   Map Link
======================================== */
.c-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #3957cc;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  border: 1px solid #3957cc;
  border-radius: 50%;
  transition: background 0.5s;
}

.c-map-link:hover {
  background: #fff;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .p-stores {
  }

  /* ========================================
     MV
  ======================================== */
  .p-stores-mv {
    padding-top: 48px;
  }

  .p-stores-mv__title img {
    width: 300px;
  }

  /* ========================================
     Intro
  ======================================== */
  .p-stores-intro {
    margin-top: 28px;
  }

  .p-stores-intro__inner {
    width: calc(100% - 80px);
    max-width: 688px;
    margin: 0 auto;
  }

  .p-stores-intro__text {
    font-size: 16px;
    line-height: 1.8;
  }

  .p-stores-intro__label {
    width: 82px;
    margin: 0 3px;
  }

  /* ========================================
     Filter
  ======================================== */
  .p-stores-filter {
    margin-top: 28px;
  }

  .p-stores-filter__inner {
    width: calc(100% - 80px);
    max-width: 688px;
    margin: 0 auto;
  }

  .p-stores-filter__list {
  }

  .p-stores-filter__item a {
    width: 100%;
    min-width: 80px;
    height: 36px;
    padding: 0 14px;
    font-size: 18px;
    border-width: 2px;
  }

  /* ========================================
     Demo
  ======================================== */
  .p-stores-demo {
    margin-top: 100px;
  }

  .p-stores-demo__inner {
    padding: 56px 32px 32px !important;
  }

  .p-stores-demo__title {
    width: 420px;
  }

  .p-stores-demo__head {
  }

  .p-stores-demo__lead {
    font-size: 22px;
    line-height: 1.6;
    text-align: center;
  }

  .p-stores-demo__text {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.8;
  }

  .p-stores-demo__list {
    display: block;
    margin-top: 20px;
  }

  .p-stores-demo__item {
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 16px;
    min-height: 0;
    padding: 16px 0;
  }

  .p-stores-demo__shopname {
    font-size: 18px;
    line-height: 1.6;
  }

  .p-stores-demo__button {
    width: 120px;
    min-width: 0;
    min-height: 34px;
    font-size: 16px;
  }

  /* ========================================
     Area
  ======================================== */
  .p-stores-area-list {
    margin-top: 64px;
  }

  .p-stores-area + .p-stores-area {
    margin-top: 64px;
  }

  .p-stores-area__head {
    width: calc(100% - 80px);
    max-width: 688px;
    margin: 0 auto 24px;
  }

  .p-stores-area__title {
    gap: 16px;
    font-size: 26px;
    line-height: 1.4;
  }

  /* ========================================
     Accordion
  ======================================== */
  .p-stores-area__body {
  }

  .p-stores-accordion + .p-stores-accordion {
    margin-top: 14px;
  }

  .p-stores-accordion__trigger {
    padding: 14px 56px 14px 20px;
    border-radius: 10px;
  }

  .p-stores-accordion__label {
    font-size: 20px;
    line-height: 1.4;
  }

  .p-stores-accordion__icon {
    right: 18px;
    width: 18px;
    height: 18px;
  }

  .p-stores-accordion__icon::before {
    width: 18px;
    height: 1px;
  }

  .p-stores-accordion__icon::after {
    width: 1px;
    height: 18px;
  }

  .p-stores-accordion__content {
    padding-top: 12px;
  }

  .p-stores-accordion__trigger[aria-expanded="true"]
    + .p-stores-accordion__content {
    padding-top: 12px;
  }

  /* ========================================
     Store List
  ======================================== */
  .p-stores-list {
    display: block;
  }

  .p-stores-list__row {
    display: contents;
  }

  .p-stores-list__cell {
    display: block;
  }

  /* ========================================
     Store Card
  ======================================== */
  .p-store-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 64px;
    gap: 16px;
    align-items: center;
    padding: 12px 14px;
  }

  .p-store-card__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
  }

  .p-store-card__head {
    min-width: 0;
  }

  .p-store-card__name {
    font-size: 18px;
    line-height: 1.5;
  }

  .p-store-card__label {
    width: 78px;
  }

  .p-store-card__tel {
    font-size: 18px;
    line-height: 1.5;
    white-space: normal;
    word-break: break-all;
  }

  .p-store-card__side {
    align-self: center;
    justify-content: center;
    margin-left: 0;
  }

  /* ========================================
     Map Link
  ======================================== */
  .c-map-link {
    width: 64px;
    height: 64px;
    font-size: 18px;
  }
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 767px) {
  .p-stores {
  }

  /* MV */
  .p-stores-mv {
    padding-top: 33px;
  }

  .p-stores-mv__title img {
    width: 228px;
  }

  /* Intro */
  .p-stores-intro {
    margin-top: 18px;
  }

  .p-stores-intro__inner {
  }

  .p-stores-intro__text {
    font-size: 14px;
    line-height: 1.85;
  }

  .p-stores-intro__label {
    width: 71px;
    margin: 0 2px;
  }

  /* Filter */
  .p-stores-filter {
    margin-top: 19px;
  }

  .p-stores-filter__inner {
    display: flex;
    justify-content: center;
  }

  .p-stores-filter__list {
  }

  .p-stores-filter__item a {
    width: 100%;
    min-width: 70px;
    height: 31px;
    padding: 0 10px;
    font-size: 14px;
    border-width: 2px;
  }

  /* Demo */
  .p-stores-demo {
    margin-top: 74px;
  }

  .p-stores-demo__inner {
    padding: 42px 18px 24px !important;
  }

  .p-stores-demo__title {
    width: 299px;
  }

  .p-stores-demo__head {
    text-align: left;
  }

  .p-stores-demo__lead {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
  }

  .p-stores-demo__text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.85;
  }

  .p-stores-demo__list {
    display: block;
    margin-top: 16px;
  }

  .p-stores-demo__item {
    grid-template-columns: minmax(0, 1fr) 93px;
    gap: 12px;
    min-height: 0;
    padding: 12px 0;
  }

  .p-stores-demo__shopname {
    font-size: 14px;
    line-height: 1.6;
  }

  .p-stores-demo__button {
    width: 93px;
    min-width: 0;
    min-height: 28px;
    font-size: 12px;
  }

  /* Area */
  .p-stores-area-list {
    margin-top: 44px;
  }

  .p-stores-area + .p-stores-area {
    margin-top: 48px;
  }

  .p-stores-area__head {
    margin-bottom: 18px;
  }

  .p-stores-area__title {
    gap: 12px;
    font-size: 20px;
    line-height: 1.4;
  }

  /* Accordion */
  .p-stores-accordion + .p-stores-accordion {
    margin-top: 10px;
  }

  .p-stores-accordion__trigger {
    padding: 16px 44px 16px 16px;
    border-radius: 10px;
  }

  .p-stores-accordion__label {
    font-size: 16px;
    line-height: 1.4;
  }

  .p-stores-accordion__icon {
    right: 16px;
    width: 14px;
    height: 14px;
  }

  .p-stores-accordion__icon::before {
    width: 14px;
    height: 1px;
  }

  .p-stores-accordion__icon::after {
    width: 1px;
    height: 14px;
  }

  .p-stores-accordion__content {
    padding-top: 10px;
  }

  .p-stores-accordion__trigger[aria-expanded="true"]
    + .p-stores-accordion__content {
    padding-top: 10px;
  }

  /* Store List */
  .p-stores-list {
    display: block;
  }

  .p-stores-list__col {
    display: block;
  }

  /* Store Card */
  .p-store-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
  }

  .p-store-card__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
  }

  .p-store-card__head {
    min-width: 0;
  }

  .p-store-card__name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }

  .p-store-card__label {
    font-size: 12px;
  }

  .p-store-card__tel {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    white-space: normal;
    word-break: break-all;
  }

  .p-store-card__side {
    align-self: center;
    justify-content: center;
    margin-left: 0;
  }

  /* Map Link */
  .c-map-link {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }
}

/* ========================================
   Demo Store Modal - Stores
======================================== */
.p-stores .p-demo-store-modal {
  padding: 24px;
}

.p-stores .p-demo-store-modal__overlay {
  background: rgba(242, 220, 255, 0.94);
  backdrop-filter: blur(6px);
}

.p-stores .p-demo-store-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(930px, calc(100% - 48px));
  max-height: calc(100vh - 48px);
  margin: 0;
  overflow-y: auto;
  background: #fff;
  border: 8px solid #3d5ad6;
  border-radius: 56px;
  transform: translate(-50%, -50%) translateY(24px);
}

.p-demo-store-modal.is-open .p-demo-store-modal__dialog {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.p-stores .p-demo-store-modal__inner {
  position: relative;
  padding: 34px;
}

.p-stores .p-demo-store-modal__close {
  position: absolute;
  top: 20px;
  right: 16px;
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #3d5ad6;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.p-stores .p-demo-store-modal__title {
  margin: 0;
  padding: 0 56px 16px;
  border-bottom: 4px solid #3d5ad6;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  color: #3d5ad6;
}

.p-stores .p-demo-store-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 28px;
  margin-top: 34px;
  align-items: start;
}

.p-stores .p-demo-store-modal__info {
  display: grid;
  gap: 30px;
}

.p-stores .p-demo-store-modal__description {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #000;
  text-align: justify;
  text-spacing-trim: trim-start;
  font-feature-settings: "palt";
}

.p-stores .p-demo-store-modal__info-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 16px;
  align-items: start;
}

.p-stores .p-demo-store-modal__info-text {
  display: grid;
  gap: 12px;
}

.p-stores .p-demo-store-modal__row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.p-stores .p-demo-store-modal__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #3d5ad6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.p-stores .p-demo-store-modal__label--dealer {
  width: 100%;
}

.p-stores .p-demo-store-modal__value {
  min-height: 32px;
  padding-top: 3px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  word-break: break-word;
}

.p-stores .p-demo-store-modal__value a {
  color: #000;
  text-decoration: none;
}

.p-stores .p-demo-store-modal__dealer {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.p-stores .p-demo-store-modal__dealer-image {
  width: 144px;
}

.p-stores .p-demo-store-modal__dealer-image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-stores .p-demo-store-modal__dealer-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  text-align: center;
}

.p-stores .p-demo-store-modal__map {
  display: block;
}

.p-stores .p-demo-store-modal__map-embed {
  overflow: hidden;
  background: #e5e5e5;
}

.p-stores .p-demo-store-modal__map-embed iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-stores .p-demo-store-modal {
    padding: 20px;
  }

  .p-stores .p-demo-store-modal__dialog {
    width: min(720px, calc(100% - 40px));
    max-height: calc(100vh - 40px);
    margin: 0;
  }

  .p-stores .p-demo-store-modal__inner {
    padding: 30px 36px;
  }

  .p-stores .p-demo-store-modal__close {
    top: 27px;
    right: 24px;
    width: 40px;
    height: 40px;
    font-size: 36px;
  }

  .p-stores .p-demo-store-modal__title {
    padding: 0 40px 14px;
    font-size: 32px;
  }

  .p-stores .p-demo-store-modal__body {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 22px;
  }

  .p-stores .p-demo-store-modal__description {
    font-size: 15px;
  }

  .p-stores .p-demo-store-modal__info-main {
    grid-template-columns: minmax(0, 1fr) 128px;
    gap: 16px;
  }

  .p-stores .p-demo-store-modal__row {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .p-stores .p-demo-store-modal__label {
    min-height: 30px;
    font-size: 13px;
  }

  .p-stores .p-demo-store-modal__value {
    min-height: 30px;
    font-size: 14px;
  }

  .p-stores .p-demo-store-modal__dealer-image {
    width: 128px;
  }

  .p-stores .p-demo-store-modal__map-embed iframe {
    height: 240px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .p-stores .p-demo-store-modal {
    padding: 0;
  }

  .p-stores .p-demo-store-modal__dialog {
    top: calc(50% + 48px);
    width: calc(100% - 26px);
    max-height: calc(100vh - 160px);
    border-width: 5px;
    border-radius: 30px;
  }

  .p-stores .p-demo-store-modal__inner {
    padding: 30px 20px;
  }

  .p-stores .p-demo-store-modal__close {
    position: fixed;
    top: calc(50% - (100vh - 120px) / 2 - -15px);
    right: 21px;
    width: 26px;
    height: 26px;
    font-size: 36px;
    color: #3d5ad6;
  }

  .p-stores .p-demo-store-modal__title {
    padding: 0 26px 10px;
    border-bottom-width: 3px;
    font-size: 24px;
    line-height: 1.4;
  }

  .p-stores .p-demo-store-modal__body {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 16px;
  }

  .p-stores .p-demo-store-modal__info {
    gap: 20px;
  }

  .p-stores .p-demo-store-modal__description {
    font-size: 14px;
    line-height: 1.85;
  }

  .p-stores .p-demo-store-modal__info-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .p-stores .p-demo-store-modal__info-text {
    gap: 14px;
  }

  .p-stores .p-demo-store-modal__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .p-stores .p-demo-store-modal__label {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 14px;
  }

  .p-stores .p-demo-store-modal__label--dealer {
    width: 100%;
  }

  .p-stores .p-demo-store-modal__value {
    min-height: 0;
    padding-top: 0;
    font-size: 14px;
    line-height: 1.7;
  }

  .p-stores .p-demo-store-modal__dealer {
    justify-items: stretch;
  }

  .p-stores .p-demo-store-modal__dealer-image {
    width: 104px;
    margin: 0 auto;
  }

  .p-stores .p-demo-store-modal__dealer-name {
    font-size: 14px;
  }

  .p-stores .p-demo-store-modal__map-embed iframe {
    height: 180px;
  }
}
