@charset "UTF-8";
/* CSS Document */

/* Map の場合 */
body#map header nav li:nth-of-type(2) a {
  font-weight: 600;
}
body#map header nav li:nth-of-type(2) a::after {
  width: 0;
}

/* List の場合 */
body#list header nav li:nth-of-type(3) a {
  font-weight: 600;
}
body#list header nav li:nth-of-type(3) a::after {
  width: 0;
}



.title_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.title_wrap .arrow_left,
.title_wrap .arrow_right {
  display: block;
  font-family: "neue-haas-grotesk-display", Helvetica, "sans-serif";
  font-size: 2.0rem;
  font-weight: 300;
  width: 30px;
  transition: opacity 0.3s;
}
.title_wrap .arrow_left:hover,
.title_wrap .arrow_right:hover {
  opacity: 0.5;
}
.title_wrap .arrow_left {
  text-align: left;
}
.title_wrap .arrow_right {
  text-align: right;
}
.title_wrap .arrow_left span,
.title_wrap .arrow_right span {
  display: none;
}
.title_wrap h2.page_title {
  width: calc(100% - 30px - 30px);
}
.title_wrap h2.page_title span {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", "Helvetica Neue", sans-serif;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.00em;
  margin-left: 10px;
}



.width100 {
  width: 100vw;
}

.gallery_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.main_wrap {
  width: 100%;
}
#main_image {
  width: 100%;
  height: auto;
  opacity: 1.0;
  transition: opacity 0.3s ease;
}

/* サムネイル */
.thumb_wrap {
  display: flex;
  justify-content: space-between;
  margin: 17px 5% 0;
  width: calc(100% - 5.5% - 5.5%);
}

.thumb_image {
  width: 20%;
  height: auto;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 1.0;
  transition: border 0.3s;
}

.thumb_image.active {
  border: 2px solid #fe3500;
  opacity: 1.0;
}

/* フェード効果 */
.fade {
  opacity: 0;
}



.overview_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  
}
.overview_wrap dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  line-height: 1.25;
  width: 100%;
}
.overview_wrap dl dt {
  font-weight: 700;
  margin-bottom: 0.75em;
  width: 6.0em;
}
.overview_wrap dl dd {
  margin-bottom: 0.75em;
  width: calc(100% - 6.0em);
}
.overview_wrap dl dd a {
  cursor: pointer;
  text-decoration: underline;
}




@media (min-width: 600px) and (max-width: 999px) {
  
}





@media print, screen and (min-width:1000px) {

  .title_wrap {
    
  }
  .title_wrap .arrow_left,
  .title_wrap .arrow_right {
    font-size: 2.5rem;
    font-weight: 300;
    width: 100px;
  }
  .title_wrap .arrow_left {
    text-align: left;
    margin-left: -10px;
  }
  .title_wrap .arrow_right {
    text-align: right;
    margin-right: -10px;
  }
  .title_wrap .arrow_left span,
  .title_wrap .arrow_right span {
    display: inline;
    font-size: 2.0rem;
    font-weight: 400;
    vertical-align: 2px;
  }
  .title_wrap .arrow_left span {
    margin-left: 2px;
  }
  .title_wrap h2.page_title {
    width: calc(100% - 100px - 100px);
  }
  .title_wrap h2.page_title span {
    font-size: 5.0rem;
    margin-left: 20px;
  }
  
  

  section.width100 {
    margin: 0 auto;
    width: 1000px;
  }

  .gallery_wrap {
    justify-content: space-between;
    width: 1000px;
    margin-top: 100px;
  }

  .main_wrap {
    width: 750px;
  }
  #main_image {
    width: 750px;
    height: 750px;
  }

  /* サムネイル */
  .thumb_wrap {
    align-content: space-between;
    flex-wrap: wrap;
    margin: 0;
    width: 150px;
  }

  .thumb_image {
    width: 150px;
    height: 150px;
    cursor: pointer;
  }
  
  
  
  .overview_wrap {
    margin-top: 100px;
  }
  .overview_wrap dl {
    font-size: 1.8rem;
    line-height: 1.5;
    width: calc((1000px - 50px) / 2);
  }
  .overview_wrap dl:nth-of-type(even) {
    margin-left: 50px;
  }
  .overview_wrap dl:last-of-type {
    width: 1000px;
  }
  .overview_wrap dl dt {
    margin-bottom: 1.0em;
  }
  .overview_wrap dl dd {
    margin-bottom: 1.0em;
    width: calc(((1000px - 50px) / 2) - 6.0em);
  }
  .overview_wrap dl:last-of-type dd {
    margin-bottom: 1.0em;
    width: calc(1000px - 6.0em);
  }
  
}

