@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  overflow-x: hidden;
}

*::selection, *::-moz-selection {
  background: #68003B;
}

.section_title {
  text-align: center;
  padding-top: 50px;
}
.section_title span {
  display: block;
  width: 60px;
  height: 6px;
  margin: 4px auto;
  background-color: #68003B;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  .section_title span {
    font-size: 3vw;
  }
}
@media only screen and (max-width: 749px) {
  .section_title span {
    font-size: 3vw;
  }
}
.section_title h2 {
  font-size: 2.5vw;
  font-weight: bold;
  color: #222222;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  .section_title h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 749px) {
  .section_title h2 {
    font-size: 35px;
  }
}

#top {
  height: 100vh;
  width: 100%;
  text-align: center;
  background-image: url("../img/main.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#top::before {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}
#top nav {
  position: relative;
  display: block;
  text-align: right;
  line-height: 70px;
  padding: 10px 20px 0 0;
}
#top nav :link, #top nav :visited {
  margin: 0 20px;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  vertical-align: top;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#top nav :link:hover, #top nav :visited:hover {
  color: #68003B;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  #top nav :link, #top nav :visited {
    display: none;
  }
}
@media only screen and (max-width: 749px) {
  #top nav :link, #top nav :visited {
    display: none;
  }
}
#top nav h1 {
  position: absolute;
  left: 0;
  display: inline-block;
  height: 70px;
  width: 200px;
  color: rgba(0, 0, 0, 0);
  user-select: none;
  background-image: url("../img/logo_wh.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: top;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  #top nav h1 {
    height: 60px;
    width: 150px;
  }
}
@media only screen and (max-width: 749px) {
  #top nav h1 {
    height: 60px;
    width: 150px;
  }
}
#top .title_contents {
  text-align: left;
  margin: 20vh 0 0 15vw;
  position: absolute;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  #top .title_contents {
    margin: 30vh 0 0 5%;
  }
}
@media only screen and (max-width: 749px) {
  #top .title_contents {
    margin: 30vh 0 0 5%;
  }
}
#top .title_contents h2 {
  font-size: 40px;
  font-weight: bold;
  color: #FFFFFF;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  #top .title_contents h2 {
    font-size: 6.2vw;
    width: 90%;
  }
}
@media only screen and (max-width: 749px) {
  #top .title_contents h2 {
    font-size: 6.2vw;
    width: 90%;
  }
}
#top .title_contents p {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  font-weight: bolder;
  line-height: 36px;
  color: #FFFFFF;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  #top .title_contents p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 749px) {
  #top .title_contents p {
    font-size: 14px;
  }
}

#news ul {
  display: block;
  margin: 5vh auto 0;
  width: 60vw;
  min-width: 700px;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  #news ul {
    width: 96vw;
    min-width: 300px;
  }
}
@media only screen and (max-width: 749px) {
  #news ul {
    width: 96vw;
    min-width: 300px;
  }
}
#news ul li {
  padding: 10px 0;
  border-bottom: solid #aaaaaa 1px;
}
#news ul li:first-child {
  border-top: solid #aaaaaa 1px;
}
#news ul li .news_date {
  display: inline-block;
  padding-left: 50px;
  color: #888888;
}
#news ul li .news_category {
  display: inline-block;
  background-color: #eeeeee;
  color: #888888;
  margin-left: 50px;
  height: 30px;
  width: 140px;
  line-height: 30px;
  text-align: center;
  border-radius: 3px;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  #news ul li .news_category {
    margin-left: 20px;
    height: 30px;
    width: 140px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 749px) {
  #news ul li .news_category {
    margin-left: 20px;
    height: 30px;
    width: 140px;
    line-height: 30px;
  }
}
#news ul li .news_title {
  display: inline-block;
  margin-left: 50px;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  #news ul li .news_title {
    display: block;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 749px) {
  #news ul li .news_title {
    display: block;
    margin-top: 10px;
  }
}

#service {
  text-align: center;
  background-color: #ECECEC;
  margin-top: 50px;
  padding: 0 0 50px;
}
#service .service_content {
  display: inline-block;
  width: 35vw;
  vertical-align: top;
  text-align: left;
  margin: 40px 20px 0;
}
@media only screen and (max-width: 749px) {
  #service .service_content {
    width: 80vw;
    margin: 40px 0;
  }
}
#service .service_content .service_window {
  position: relative;
}
#service .service_content .service_window:link, #service .service_content .service_window:visited {
  color: #FFFFFF;
  font-weight: bold;
}
#service .service_content .service_window .service_shutter {
  position: absolute;
  display: block;
  width: 100%;
  height: 18.375vw;
  line-height: 18.375vw;
  background-color: #68003Baf;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
@media only screen and (min-width: 900px) {
  #service .service_content .service_window .service_shutter:hover {
    opacity: 1;
  }
}
@media only screen and (max-width: 749px) {
  #service .service_content .service_window .service_shutter {
    height: 42vw;
    line-height: 42vw;
  }
}
#service .service_content img {
  width: 100%;
}
#service .service_content h3 {
  margin: 10px 0 0;
  font-size: 24px;
  font-weight: bold;
}
#service .service_content p {
  margin: 10px 0 0;
  font-size: 15px;
  color: #686868;
}

#company ul {
  display: block;
  width: 700px;
  margin: 20px auto 0;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  #company ul {
    width: 90vw;
    max-width: 700px;
    margin: 0;
  }
}
@media only screen and (max-width: 749px) {
  #company ul {
    width: 90vw;
    max-width: 700px;
    margin: 0;
  }
}
#company ul li {
  margin: 20px 0 0 0;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  #company ul li {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 749px) {
  #company ul li {
    margin-top: 30px;
  }
}
#company ul li h3 {
  display: inline-block;
  background-color: #E6E6E6;
  margin-left: 50px;
  height: 40px;
  width: 140px;
  line-height: 40px;
  text-align: center;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  #company ul li h3 {
    display: block;
    height: 30px;
    width: 140px;
    line-height: 30px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 749px) {
  #company ul li h3 {
    display: block;
    height: 30px;
    width: 140px;
    line-height: 30px;
    margin-bottom: 5px;
  }
}
#company ul li p {
  display: inline-block;
  margin-left: 50px;
}

#contact {
  width: 90%;
  background-color: #ECECEC;
  margin-top: 50px;
  padding: 0 5% 50px;
}
#contact .form {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 550px;
}
#contact .form p {
  margin: 20px 0 0;
}
#contact .form p :link, #contact .form p :visited {
  display: inline-block;
  white-space: nowrap;
}
#contact .form .error_message {
  display: none;
  color: #e0008c;
  font-weight: bold;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  margin-left: 20px;
}
#contact .form input[type=email], #contact .form input[type=text] {
  width: calc(100% - 40px);
  height: 50px;
  line-height: 50px;
  margin: 30px 0 0;
  padding: 0 20px;
  background: none;
  border: none;
  outline: none;
  border-bottom: solid 1px #888888;
}
#contact .form textarea {
  width: calc(100% - 40px);
  height: 200px;
  line-height: 30px;
  margin: 30px 0 0;
  padding: 0 20px;
  background: none;
  border: none;
  outline: none;
  border-bottom: solid 1px #888888;
}
#contact .form button {
  display: block;
  margin: 20px auto 0;
  height: 50px;
  line-height: 50px;
  padding: 0 50px;
  border-radius: 25px;
  background-color: #68003B;
  color: #FFFFFF;
  font-weight: bold;
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#contact .form button:hover {
  background-color: #9a006a;
}

.complete_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(9, 0, 0, 0.5);
}
.complete_modal .modal_window {
  position: relative;
  display: block;
  width: 90%;
  max-width: 350px;
  margin: calc(50vh - 175px) auto 0;
  padding: 30px 0;
  background-color: #FFFFFF;
  border-radius: 10px;
}
.complete_modal .modal_window .close_button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.complete_modal .modal_window .complete_image {
  display: block;
  width: 80%;
  margin: 0 auto;
}
.complete_modal .modal_window p {
  display: block;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

footer {
  text-align: center;
  height: 80px;
  line-height: 80px;
  color: #FFFFFF;
  background-color: #222222;
}
@media only screen and (max-width: 899px) and (min-width: 750px) {
  footer {
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 749px) {
  footer {
    height: 50px;
    line-height: 50px;
  }
}

/*# sourceMappingURL=style.css.map */
