:root {
  --color: #bda360;
}

html {
  color: #1D1D1D;
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  font-size: 16px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.wp-embed a {
  color: inherit;
  text-decoration: none;
}

.wp-embed a:hover,
.wp-embed a:focus {
  opacity: 0.8;
  text-decoration: none;
}

.wp-embed[class*="_menu"] {
  box-shadow: none;
  padding: 0;
  border: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
}

.embed-menu {
  display: block;
  display: grid;
  grid-template-areas: "image name"
  "image btn";
  grid-template-columns: 6.5625em 1fr;
  grid-template-rows: 1fr auto;
  gap: 0 1.125em;
  padding: 1.125em;
  border: 1px solid #bda360;
  border-color: var(--color);
}

.embed-menu__name {
  grid-area: name;
  font-size: .75em;
}

.embed-menu__name .en {
  display: block;
  color: var(--color);
  font-family: "FuturaLTPro-Light", Futura, "Century Gothic", sans-serif;
  font-weight: 300;
  font-size: 1.5em;

}

.embed-menu__image {
  grid-area: image;
  aspect-ratio: 1/1;
}

.embed-menu__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.embed-menu__btn {
  grid-area: btn;
  line-height: 2.1667;
  background: var(--color);
  color: #fff;
  font-size: 0.75em;
  text-align: center;
}