@charset "UTF-8";
/* -----------------------------------------------
  Variables
--------------------------------------------------*/
/* color */
/* size */
/* -----------------------------------------------
  Mixins
--------------------------------------------------*/
/* media queries
  ブレークポイントの使い方
  @include mq("sp"){ ここに書く } */
/* form スタイルリセット */
/**************************************************
appreciation__detail
***************************************************/
.detail-hero__image {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2rem;
  text-align: center;
}
.detail-hero__image img {
  border-radius: 5px;
}
.detail-hero__image small {
  display: block;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 0.5rem;
}

.detail-notice,
.detail-description {
  max-width: 760px;
  margin-inline: auto;
  margin-top: 2rem;
}

.detail-notice {
  border: 1px solid red;
  color: red;
  padding-inline: 0.5em;
  font-size: 90%;
}

.detail-liks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-inline: auto;
  margin-block: 5rem;
}
@media screen and (max-width: 1100px) {
  .detail-liks {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-block: 2.4rem;
  }
}
.detail-liks a {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 80px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid #fff;
  color: #333;
  position: relative;
  padding-left: 7rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .detail-liks a {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  }
}
.detail-liks a:hover, .detail-liks a:focus {
  color: #0060ae;
  border-color: #0060ae;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
}
.detail-liks a:hover::before, .detail-liks a:focus::before {
  background-color: #0060ae;
}
.detail-liks a:hover::after, .detail-liks a:focus::after {
  background-color: #0060ae;
}
.detail-liks a::before {
  content: "";
  width: 25px;
  height: 17px;
  background-color: #333;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  transition: all 0.3s ease;
}
.detail-liks a.is-episode::before {
  mask-image: url("/museum/assets/img/icon/book.svg");
}
.detail-liks a.is-enjoy::before {
  mask-image: url("/museum/assets/img/icon/telescope.svg");
}
.detail-liks a.is-child::before {
  mask-image: url("/museum/assets/img/icon/pencil.svg");
}
.detail-liks a::after {
  content: "";
  width: 20px;
  height: 20px;
  mask-image: url("/museum/assets/img/icon/arrow.svg");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  background-color: #333;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.detail-liks a span {
  font-size: 1rem;
  font-weight: 400;
}

.detail-info__wrap {
  border-top: 1px solid #dde0d7;
}
@media screen and (max-width: 1100px) {
  .detail-info__wrap {
    border-color: #0060ae;
  }
}
.detail-info-table {
  display: flex;
  border-bottom: 1px solid #dde0d7;
  padding-block: 2rem;
}
@media screen and (max-width: 1100px) {
  .detail-info-table {
    flex-direction: column;
  }
}
@media screen and (max-width: 1100px) {
  .detail-info-table:last-child {
    border-color: #0060ae;
  }
}
.detail-info-table:last-child .detail-info-table__head::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #0060ae;
  position: absolute;
  left: 0;
  bottom: -2.1rem;
}
@media screen and (max-width: 1100px) {
  .detail-info-table:last-child .detail-info-table__head::before {
    display: none;
  }
}
.detail-info-table__head {
  width: 186px;
  flex: none;
  font-weight: 700;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .detail-info-table__head {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.detail-info-table__head::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #0060ae;
  position: absolute;
  left: 0;
  top: -2.1rem;
}
@media screen and (max-width: 1100px) {
  .detail-info-table__head::after {
    display: none;
  }
}
.detail-info-table__body {
  padding-inline: 2rem;
}
.detail-info-table__body.is-access {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 1100px) {
  .detail-info-table__body.is-access {
    grid-template-columns: 1fr;
  }
}
.detail-info-table__body dt {
  font-weight: 700;
  position: relative;
  padding-left: 2rem;
}
.detail-info-table__body dt::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #0060ae;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1.2rem;
}
.detail-info-table__body li {
  padding-left: 2rem;
  position: relative;
}
.detail-info-table__body li::before {
  content: "−";
  position: absolute;
  left: 0;
  top: 0;
  color: #0060ae;
}

.detail-gmap {
  width: calc(100% + 160px);
  margin-top: 5rem;
  transform: translateX(-80px);
}
@media screen and (max-width: 1100px) {
  .detail-gmap {
    width: 100vw;
    transform: translateX(-25px);
  }
}
.detail-gmap iframe {
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .detail-related .c-grid__col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*# sourceMappingURL=museum.css.map */
