@charset "UTF-8";
/* -----------------------------------------------
  Variables
--------------------------------------------------*/
/* color */
/* size */
/* -----------------------------------------------
  Mixins
--------------------------------------------------*/
/* media queries
  ブレークポイントの使い方
  @include mq("sp"){ ここに書く } */
/* form スタイルリセット */
/**************************************************
tour
***************************************************/
.tour__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 50px 40px;
}
.tour__item a:hover, .tour__item a:focus-visible {
  opacity: 0.7;
}
.tour__item-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.tour__item-title {
  font-weight: bold;
  background-image: url("/museum/assets/img/tour/course_title_bg_green.png");
  background-position: left center;
  background-repeat: no-repeat;
  padding: 20px;
  min-height: 98px;
  line-height: 1.5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.tour__item-title._blue {
  background-image: url("/museum/assets/img/tour/course_title_bg_blue.png");
}
.tour__item-headline {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 0 10px;
}
.tour__item-number {
  grid-area: 1/1/3/2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}
.tour__item-number span {
  background: #6E6E6E;
  color: #fff;
  font-size: 26px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}
.tour__item-place {
  grid-area: 1/2/2/3;
}
.tour__item-info {
  grid-area: 2/2/3/3;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.tour__item-info dt {
  font-size: 13px;
}
.tour__item-info dt::before {
  content: "【";
}
.tour__item-info dt::after {
  content: "】";
}
@media screen and (min-width: 1025px) {
  .tour__article .tour__item-headline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  .tour__article .tour__item-place {
    padding-top: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .tour__article .tour__item-info {
    padding-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.tour__article .tour__item-title {
  font-size: 30px;
  text-shadow: 0px 0px 5px rgb(255, 255, 255);
  background-size: contain;
  padding: 30px 0 30px 40px;
}
@media screen and (max-width: 767px) {
  .tour__article .tour__item-title {
    font-size: 5vw;
    padding: 30px 0 30px 30px;
  }
}
.tour__article__name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-block: 20px;
}
.tour__article__name p {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .tour__article__name p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 5px;
  }
}
.tour__article__name h2 {
  position: relative;
  font-size: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
  padding-left: 1.7em;
}
@media screen and (max-width: 767px) {
  .tour__article__name h2 {
    font-size: 22px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.tour__article__name h2::before {
  content: "";
  display: block;
  width: 1.3em;
  height: 1.3em;
  background: #0060ae;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.tour__article__name h2 span {
  font-size: 15px;
}
.tour__article__name._green h2::before {
  background: #C1D768;
}
.tour__article__name._nomark h2 {
  padding-left: 0;
}
.tour__article__name._nomark h2::before {
  content: none;
}
.tour__article .c-img-left {
  max-width: 60%;
}
@media screen and (max-width: 1024px) {
  .tour__article .c-img-left {
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .tour__article .c-img-left {
    clear: both;
    max-width: 100%;
    margin-right: 0;
  }
}
.tour__article__imgs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px;
  margin-block: 30px;
}
@media (min-width: 1728px) {
  .tour__article__imgs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.tour__article__imgs img {
  width: 100%;
}
.tour__article__imgs figcaption {
  font-size: 12px;
  margin-top: 10px;
}
.tour__anchor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-block: 20px;
}
.tour__anchor li {
  position: relative;
}
.tour__anchor li:not(:last-of-type)::after {
  content: ">";
  margin-inline: 10px;
}
.tour__anchor a {
  text-decoration: none;
}
.tour__anchor a::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  aspect-ratio: 1/1;
  background: url("/museum/assets/img/icon/arrow_circle.svg") no-repeat center/contain;
  vertical-align: -0.2em;
  margin-right: 0.1em;
}
.tour__anchor a:hover, .tour__anchor a:focus-visible {
  opacity: 0.7;
}
.tour__hr {
  text-indent: -9998px;
  height: 100px;
  background-image: url("/museum/assets/img/icon/arrow_tour.png");
  background-size: 20px 70px;
  background-repeat: no-repeat;
  background-position: center center;
  clear: both;
  margin: 40px auto;
}
.tour__access {
  margin-top: 60px;
}
.tour__access__headline {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
}
.tour__access__info {
  text-align: center;
  margin-block: 20px;
}
.tour__access__course {
  margin-block: 30px;
  text-align: center;
}

.tour__accordion {
  clear: both;
  margin-block: 30px;
}
.tour__accordion .c-accordion-btn {
  background-color: #cad9ec;
  padding: 15px;
  font-size: 90%;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.tour__accordion .c-accordion-btn::before {
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: #333;
  content: "";
  display: inline-block;
  position: absolute;
  height: 8px;
  width: 8px;
  rotate: 45deg;
  position: static;
}
.tour__accordion .c-accordion-content {
  background-color: #cad9ec;
  padding: 20px;
}
.tour__accordion .c-accordion-content table {
  width: 100%;
}
.tour__accordion .c-accordion-content table tr {
  border-bottom: 1px solid #cad9ec;
}
.tour__accordion .c-accordion-content table th,
.tour__accordion .c-accordion-content table td {
  background: #e5ecf6;
  padding: 10px;
}
.tour__accordion .c-accordion-content table th {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .tour__accordion .c-accordion-content table th {
    white-space: nowrap;
  }
}
.tour__accordion._green .c-accordion-btn,
.tour__accordion._green .c-accordion-content {
  background: #E2ECB8;
}
.tour__accordion._green .c-accordion-content table tr {
  border-color: #E2ECB8;
}
.tour__accordion._green .c-accordion-content table th,
.tour__accordion._green .c-accordion-content table td {
  background: #F1F6DD;
}/*# sourceMappingURL=tour.css.map */