@charset "UTF-8";
/*============================
共通ページスタイル
============================*/
body {
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

article {
  background: #fff;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
}

p {
  color: #333;
}

a {
  color: #4E10FF;
}

a:hover {
  opacity: 0.8;
}

.bg {
  opacity: 0.8 !important;
}

h1, h2, h3 {
  text-shadow: none !important;
}

.card, .box {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e0e0e0;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

article img.bg {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  article img.bg {
    width: auto;
  }
}

article header {
  width: auto;
}

@media screen and (max-width: 768px) {
  article header {
    width: auto;
  }
}

article header h2 {
  width: auto;
  font-size: 3.6rem;
  letter-spacing: 8px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  article header h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 4px;
  }
}

article header i {
  width: auto;
  display: block;
  padding-top: 20px;
  font-size: 2rem;
  letter-spacing: 4px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  article header i {
    width: auto;
  }
}

h3 {
  width: auto;
}

@media screen and (max-width: 768px) {
  h3 {
    width: 100%;
  }
}

p {
  line-height: 2;
  font-size: 1.4rem;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
}

ul {
  width: auto;
}

@media screen and (max-width: 768px) {
  ul {
    width: 100%;
  }
}

details summary::-webkit-details-marker {
  display: none;
}

/*============================
#titleTop
============================*/
article#titleTop {
  width: auto;
  background: #000 !important;
  /*============================
#intro
============================*/
}

@media screen and (max-width: 768px) {
  article#titleTop {
    width: auto;
    padding-top: 72px;
  }
}

article#titleTop section#intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1280px;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  article#titleTop section#intro {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-height: 300px;
    padding: 40px 20px 0;
  }
}

article#titleTop section#intro div.wrap {
  width: auto;
  color: #fff;
  width: 100%;
  padding-left: 0px;
  padding-top: 40px;
  height: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  article#titleTop section#intro div.wrap {
    padding: 0 20px 0 0;
    width: 100%;
  }
}

article#titleTop section#intro div.wrap div {
  width: auto;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 2px;
  position: absolute;
  z-index: 1;
  left: 40px;
}

@media screen and (max-width: 768px) {
  article#titleTop section#intro div.wrap div {
    width: auto;
    font-size: 2.8rem;
    left: 20px;
    top: 40%;
    text-shadow: none;
  }
}

article#titleTop section#intro div.wrap h1.masthead {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 4px;
  padding: 40px 0;
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  article#titleTop section#intro div.wrap h1.masthead {
    font-size: 3.6rem;
    padding-top: 20px;
  }
}

article#titleTop section#intro div.wrap p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 4px;
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  article#titleTop section#intro div.wrap p {
    width: auto;
    padding-top: 20px;
    font-size: 1.4rem;
  }
}

article#titleTop section#intro div.scrolldown {
  position: absolute;
  right: 0;
  bottom: 10px;
  color: #ffffff;
  z-index: 10;
  height: 80px;
}

@media screen and (max-width: 768px) {
  article#titleTop section#intro div.scrolldown {
    width: auto;
  }
}

article#titleTop section#intro div.scrolldown span {
  width: auto;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: block;
  letter-spacing: 2px;
  font-size: 1.2rem;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  article#titleTop section#intro div.scrolldown span {
    width: auto;
  }
}

article#titleTop section#intro div.scrolldown:after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #ffffff;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 20px;
    opacity: 0;
  }
  30% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 20px;
    opacity: 0;
  }
  30% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}
/*# sourceMappingURL=common.css.map */