@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
}

html, body {
  overflow: hidden;
}

p {
  font-size: 3vw;
}

body::before {
  content: "";
  background-image: url("images/background.png");
  background-size: cover;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  max-width: 1920px;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

body {
  height: auto;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', 'sans-serif';
}

.col-xl-11 {
  height: 900px;
  width: 100%;
}

.container {
  max-width: 1920px;
  width: 100%;
}

.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 300ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.top-header {
  height: 65px;
  width: 100%;
  background-color: rgba(150, 49, 52, 0.9);
  position :fixed;
  top: 0;
  z-index: 10;
}

.header-left {
  float: left;
  color: aliceblue;
}

.header-right {
  float: right;
  margin-right: 10px;
}

.header-right a {
  line-height: 65px;
  padding: 0 25px;
  color: white;
  display: block;
  float: left;
  transition: all 0.5s;
}

.header-right a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.menu-icon {
  color: white;
  float: right;
  font-size: 25px;
  padding: 21px 0;
  display: none;
}

#top-image {
  display: none;
  height: 100vh;
  width: auto;
  background-image: url("images/7.jpg");
  background-size: cover;
}

#top-text {
  margin-top: 350px;
  width: 50%;
  display: none;
  text-align: center;
  color: white;
  opacity: 0.7;
  font-size: 5vw;
  letter-spacing: 5px;
}

#top-image h2 {
  padding-top: 150px;
  float: left;
  width: 100%;
  text-align: center;
  font-weight: normal;
}

#top-right {
  display: none;
  float: right;
  width: 50%;
}

#top-right p {
  text-align: left;
  margin-top: 750px;
  padding: 10px;
  width: 80%;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  line-height: 50px;
}

.btn {
  padding: 8px 24px;
  margin-top: 60px;
  color: white;
  display: inline-block;
  opacity: 0.8;
  border-radius: 4px;
  text-align: center;
}

.btn:hover {
  opacity: 1;
}

.message {
  padding: 15px 40px;
  background-color: pink; /*#5dca88*/
  cursor: pointer;
  box-shadow: 0 7px hotpink; /*#1a7940*/
}

.message:active {
  position: relative;
  top: 7px;
  box-shadow: none;
}

#back-color1, #back-color2, #back-color3 {
    display: none;
    width: 100%;
    height: 5px;
    background: pink;
    margin-bottom: -5px;
}

#back-color3 {
  background: #fff;
}

a {
  color: black;
  text-decoration: none;
}

.clear {
  clear: left;
}

/*レスポンシブデザイン*/
@media all and (min-width: 980px) {
  
  p {
    font-size: 30px;
  }
  
  #top-text {
    font-size: 50px;
  }
}

@media all and (max-width: 668px) {
  
  .top-header {
    height: 100px;
  }
}

@media all and (max-width: 992px) {
  
  .col-xl-11 {
    height: 100%; /*800*/
  }
  
  #top-right {
    float: none;
    width: 100%;
    margin: 0 auto;
  }
  
  #top-right p {
    margin-top: 200px;
    margin-left: 10%;
    margin-right: 10%;
    padding: 10px;
    width: 80%;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    line-height: 50px;
  }
}

@media all and (max-width: 768px) {
  
  #top-right p {
    margin-top: 200px;
  }
  
}

@media all and (max-width: 350px) {
  
  #top-right p {
    margin-top: 600px;
  }
  
  footer li {
    font-size: 12px;
  }
}

@media print {
  
  .fadein {
    opacity : 1;
    transform : translate(0, 0);
  }
  
  * {
    display: block;
  }
  
  body {
    zoom: 50%;
  }
}
