@charset "UTF-8";
@import url(style.css);
/* メニュー部 */
nav ul li:has(.current) {
  border-bottom: #ffee00 solid 5px;
}

/* パンくず*/
.bread {
  background-color: var(--sub-color);
}
.bread ul {
  display: flex;
  font-size: small;
  color: #fff;
}
.bread ul li {
  padding-left: 5px;
}
.bread ul li:not(:last-child)::after {
  content: " >";
}

/* メイン部　*/
main.sub {
  flex: 1;
}

main {
  margin-bottom: 0;
}
main .pc, main .sp {
  opacity: 0.8;
}
main .wrapper {
  background: url(../images/prof_image.jpg) no-repeat;
  background-size: cover;
}
main .wrapper .news {
  position: static;
  margin: auto;
  padding: 15px;
  border-radius: 5px;
  width: 90%;
  opacity: 0.9;
}
main .wrapper .news ul li {
  text-align: left;
}
main .news_topics, main .contact {
  padding: 15px;
  min-height: 350px;
}
main .news_topics h3, main .contact h3 {
  color: var(--sub-color);
  border-left: var(--sub-color) double 8px;
  padding-left: 15px;
}
main .news_topics .readmore, main .contact .readmore {
  margin-top: 15px;
  text-align: right;
}
main .news_topics .readmore a, main .contact .readmore a {
  color: var(--sub-color);
}
main .news_topics .readmore a:hover, main .contact .readmore a:hover {
  opacity: 0.8;
}
main .news_topics .center, main .contact .center {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
main .news_topics .center .work, main .contact .center .work {
  width: 30%;
  text-align: center;
}
main .news_topics .photo, main .contact .photo {
  width: 100%;
}
main .text {
  white-space: pre-line;
  padding: 15px;
  font-family: serif;
}
main .text .small {
  font-size: small;
}
main .line_br {
  display: inline-block;
}
main.prof {
  background: url(../images/prof_image.jpg) no-repeat;
  background-size: cover;
}
main.prof .prof_info {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.9);
}
main.prof .prof_info dl {
  display: flex;
  margin-bottom: 5px;
}
main.prof .prof_info dl dt {
  width: 280px;
  border-left: #fff double 8px;
  border-right: #fff double 8px;
  background-color: var(--sub-color);
  color: #fff;
  padding: 5px;
  text-align: center;
}
main.prof .prof_info dl dd {
  padding: 5px;
}
main.prof .prof_info dl dd strong {
  font-size: 24px;
}
main.prof .prof_info .info_text {
  white-space: pre-line;
  padding: 10px;
}
main.prof .prof_info .info_text strong {
  font-size: 24px;
}
main .gallery {
  padding: 35px;
  padding-bottom: 0;
}
main .gallery .gallery_picture {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
main .gallery .gallery_picture li {
  margin-bottom: 15px;
}
main .gallery .gallery_picture li img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}
main .gallery .gallery_picture li .detail {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: var(--sub-color);
}
main .gallery .gallery_picture li .detail:hover {
  color: var(--hover-color);
}
main .contact dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
  margin-left: 15px;
}
main .contact dl:not(:last-child) {
  margin-top: 15px;
}
main .contact dl dt {
  font-weight: bold;
  min-width: 150px;
  background-color: var(--sub-color);
  color: #fff;
  text-align: center;
}
main .contact dl dd {
  padding-left: 15px;
}

@media screen and (max-width: 800px) {
  main .wrapper .news br {
    display: block;
  }
  main .wrapper .news ul li {
    border-bottom: #fff solid 1px;
  }
  main .wrapper .news ul li:not(:first-child) {
    display: block;
  }
  main .news_topics .center .work {
    width: 100%;
  }
  main .gallery {
    padding: 35px;
    padding-bottom: 0;
  }
  main .gallery .gallery_picture {
    display: block;
  }
  main .gallery .gallery_picture li {
    margin-bottom: 15px;
  }
  main .gallery .gallery_picture li img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
  }
  main.prof {
    background: url(../images/prof_image.jpg) repeat-y;
    background-position-x: -50px;
  }
  main.prof .prof_info {
    margin: 15px;
  }
  main.prof .prof_info dl {
    display: block;
  }
  main.prof .prof_info dl dt {
    width: 100%;
  }
  footer ul li {
    width: 25%;
  }
}/*# sourceMappingURL=subStyle.css.map */