@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: aliceblue;
}

@media only screen and (min-width: 768px) {
  .global_foot {
    height: 284px;
  }
}

.bold {
  font-weight: 700;
}

.title {
  background: url(../img/shr_sky.jpg);
  background-size: cover;
  height: 25vh;
  color: rgb(255, 255, 255);
  position: relative;
}
.title::before {
  content: "";
  position: absolute;
  z-index: 1;
  background: rgba(0, 0, 0, 0.247);
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.title__text {
  z-index: 5;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  margin: auto;
}
.title__text h1 {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .title__text h1 {
    font-size: 50px;
  }
}
.title__text h2 {
  text-align: center;
}

.wrap {
  background-color: rgb(255, 255, 255);
}
@media only screen and (min-width: 768px) {
  .wrap {
    box-shadow: 0px -5px 5px 5px rgba(51, 51, 51, 0.116);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 25px;
  }
}

.main {
  padding: 25px;
}
@media only screen and (min-width: 768px) {
  .main p {
    font-size: 20px;
    line-height: 2em;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .main p {
    font-size: 15px;
    line-height: 2em;
    margin: 10px auto;
  }
}
@media only screen and (min-width: 768px) {
  .main__image {
    margin: 50px 0;
    text-align: center;
  }
}
.main__image img {
  width: 75vh;
  transition: 0.2s;
}
.main__image img:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .main__image img {
    margin: 10px auto;
  }
}
.main__fleximage {
  text-align: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .main__fleximage {
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .main__fleximage img {
    margin: 10px;
    width: 35vh;
    transition: 0.2s;
  }
  .main__fleximage img:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .main__fleximage img {
    margin: 10px auto;
    width: 75vh;
    transition: 0.2s;
  }
  .main__fleximage img:hover {
    opacity: 0.8;
  }
}

.modal {
  z-index: 1;
  display: none;
  padding-top: 10px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
}
.modal__content {
  width: 100%;
  height: 100%;
}
.modal__content img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) {
  .modal__content img {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .modal__content img {
    width: 100%;
  }
}
.modal__hoveropacity {
  opacity: 1;
  filter: alpha(opacity=100);
}
.modal__hoveropacity :hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.modal__close {
  text-decoration: none;
  float: right;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.back {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .back {
    margin: 150px auto 50px;
  }
}
@media only screen and (max-width: 767px) {
  .back {
    margin: 50px auto 50px;
  }
}
.back a {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  margin: 0 auto;
  background-color: #979797;
  border-radius: 5px;
  font-weight: 700;
  color: black;
  text-decoration: none;
  transition: 0.2s;
}
@media only screen and (min-width: 768px) {
  .back a {
    padding: 20px 40px;
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  .back a {
    padding: 10px 20px;
    font-size: 1em;
  }
}
.back a:hover {
  opacity: 0.8;
  color: black;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */