section.content {
  padding: 0 0 60px 0;
}
section.content .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.content .container .text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  section.content .container img {
    width: 100%;
  }
}
section.content .container .map-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  section.content .container .map-detail {
    max-width: 100%;
  }
}
section.content .container .map-detail .map-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--yellow);
  padding: 1rem 0.5rem;
}
@media screen and (max-width: 767px) {
  section.content .container .map-detail .map-header {
    flex-direction: column;
  }
}
section.content .container .map-detail .map-header .left, section.content .container .map-detail .map-header .right {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
}
@media screen and (max-width: 767px) {
  section.content .container .map-detail .map-header .left {
    display: none;
  }
}
section.content .container .map-detail .map-header img {
  margin-right: 4px;
  max-height: 30px;
  max-width: 30px;
}
section.content .container .map-detail .map-header span {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
}
section.content .container .map-detail .map-header .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 1.5rem;
}
section.content .container .map-detail .map-header .item:last-child {
  margin-right: 0;
}
section.content .container .map-detail .map-view {
  border: 5px solid var(--yellow);
}
@media screen and (max-width: 767px) {
  section.content .container .map-detail .map-view {
    width: 100%;
  }
}
section.content .container .map-detail .button-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.5rem;
}
section.content .container .map-detail .button-area > * {
  padding: 8px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 1rem;
  border-radius: 5px;
}
section.content .container .map-detail .button-area .button-type-1 {
  background-color: var(--black);
  color: var(--yellow);
}
section.content .container .map-detail .button-area .button-type-2 {
  background-color: var(--yellow);
  color: var(--black);
}
section.content .container .step-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 10rem 3rem;
}
@media screen and (max-width: 767px) {
  section.content .container .step-area {
    padding: 0 0 3rem;
  }
}
section.content .container .step-area > * {
  padding: 8px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 5px;
  background-color: var(--yellow);
  color: var(--black);
}
section.content .container .step-area > *:hover {
  opacity: 0.75;
}
section.content .container iframe {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  section.content .container iframe {
    width: 100%;
  }
}
section.content .container .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section.content .container .gallery {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  section.content .container .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.content .container .gallery img {
  border-radius: 1em;
  width: 100%;
}
section.content .container .gallery h3 {
  margin-top: 0;
}
section.content .container p {
  font-size: 18px;
  opacity: 0.75;
}
@media screen and (max-width: 560px) {
  section.content .container p {
    font-size: 16px;
  }
}