@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;700&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  overflow-x: hidden;
}

p {
  font-size: 1.6rem;
  line-height: 3rem;
  color: #ffffff;
}

::-moz-selection {
  background-color: #ffe600;
  color: #ffffff;
}

::selection {
  background-color: #ffe600;
  color: #ffffff;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  z-index: 101;
  -webkit-transition: all 1s;
  transition: all 1s;
}

#loader::before, #loader::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100vw;
  height: 50vh;
  background-color: #000000;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 101;
}

#loader::before {
  top: 0;
}

#loader::after {
  bottom: 0;
}

#loader.active::before {
  -webkit-transform: translateY(-50vh);
          transform: translateY(-50vh);
}

#loader.active::after {
  -webkit-transform: translateY(50vh);
          transform: translateY(50vh);
}

#loader .img-wrapper {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 250px;
  height: 65px;
  margin: auto;
  overflow: hidden;
  z-index: 102;
}

#loader .img-wrapper img {
  -webkit-transform: translateY(65px);
          transform: translateY(65px);
  -webkit-transition: all .6s;
  transition: all .6s;
}

#loader .img-wrapper img.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#loader .img-wrapper img.close {
  -webkit-transform: translateY(65px);
          transform: translateY(65px);
}

#loader .load-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all .6s;
  transition: all .6s;
  z-index: 102;
}

#loader .load-border.active {
  width: 100vw;
}

#loader .load-border.close {
  width: 0;
}

.slide-up {
  position: relative;
  top: 10%;
  opacity: 0;
  -webkit-transition: top 860ms,opacity 1s;
  transition: top 860ms,opacity 1s;
}

.slide-up.is-show {
  top: 0;
  opacity: 1;
}

.opacity {
  opacity: 0;
  -webkit-transition: all .86s;
  transition: all .86s;
}

.opacity.is-show {
  opacity: 1;
}

header {
  position: relative;
  display: block;
  width: 100vw;
  height: 100vh;
}

header::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0000008a;
  z-index: -1;
}

header img {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 50;
}

@media screen and (max-width: 560px) {
  header img {
    top: 10px;
    left: 10px;
  }
}

header .video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  z-index: -2;
}

header .video-wrapper video {
  background: url("../img/bg.jpg") no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-width: 100vw;
  min-height: 100%;
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

header #title {
  position: absolute;
  top: 200px;
  left: 80px;
  color: #ffffff;
}

@media screen and (max-width: 560px) {
  header #title {
    left: 50px;
  }
}

header #title p {
  font-size: 4.5rem;
}

@media screen and (max-width: 960px) {
  header #title p {
    font-size: 3rem;
  }
}

@media screen and (max-width: 560px) {
  header #title p {
    font-size: 2rem;
  }
}

header #title h1 {
  font-size: 12rem;
}

@media screen and (max-width: 960px) {
  header #title h1 {
    font-size: 8rem;
  }
}

@media screen and (max-width: 560px) {
  header #title h1 {
    font-size: 4rem;
  }
}

header .scroll {
  position: absolute;
  right: 40%;
  bottom: 200px;
  color: #ffffff;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

header .scroll p {
  font-size: 1.8rem;
  position: absolute;
  top: 0;
  left: 0;
}

header .scroll p::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 62px;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  -webkit-animation: Roll 2s ease 0s infinite;
  animation: Roll 2s ease 0s infinite;
}

@-webkit-keyframes Roll {
  0% {
    width: 0;
  }
  100% {
    width: 100px;
  }
}

@keyframes Roll {
  0% {
    width: 0;
  }
  100% {
    width: 100px;
  }
}

main {
  width: 100%;
}

main #sectionFlex, main #sec1, main #sec2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 500px auto;
}

@media screen and (max-width: 960px) {
  main #sectionFlex, main #sec1, main #sec2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

main #sectionFlex h2, main #sec1 h2, main #sec2 h2 {
  font-size: 5rem;
  color: #ffffff;
}

@media screen and (max-width: 560px) {
  main #sectionFlex h2, main #sec1 h2, main #sec2 h2 {
    font-size: 3rem;
  }
}

main #sectionFlex h3, main #sec1 h3, main #sec2 h3 {
  margin: 30px auto;
  font-size: 2.2rem;
  color: #b6b6b6;
}

@media screen and (max-width: 560px) {
  main #sectionFlex h3, main #sec1 h3, main #sec2 h3 {
    font-size: 2rem;
  }
}

main #sectionFlex .txt-wrapper, main #sec1 .txt-wrapper, main #sec2 .txt-wrapper {
  display: inline-block;
  width: 50%;
  max-width: 700px;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 960px) {
  main #sectionFlex .txt-wrapper, main #sec1 .txt-wrapper, main #sec2 .txt-wrapper {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

main #sectionFlex .img-wrapper, main #sec1 .img-wrapper, main #sec2 .img-wrapper {
  display: inline-block;
  width: 45%;
  max-width: 600px;
  height: 400px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 960px) {
  main #sectionFlex .img-wrapper, main #sec1 .img-wrapper, main #sec2 .img-wrapper {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 30px;
  }
}

main #sec1 .img-wrapper {
  background-image: url(../img/1.jpg);
}

main #sec2 .img-wrapper {
  background-image: url(../img/2.jpg);
}

main #sec3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

main #sec3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #00000070;
}

main #sec3 .txt-wrapper {
  display: block;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

main #sec3 .txt-wrapper p {
  display: block;
  margin: 50px auto;
  font-size: 3rem;
}

@media screen and (max-width: 960px) {
  main #sec3 .txt-wrapper p {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 560px) {
  main #sec3 .txt-wrapper p {
    margin: 10px auto;
  }
}

main #sec3 .txt-wrapper strong {
  display: inline;
  padding: 0 50px;
  font-size: 15rem;
  line-height: 15rem;
  color: #FFD800;
}

@media screen and (max-width: 960px) {
  main #sec3 .txt-wrapper strong {
    font-size: 8rem;
    line-height: 8rem;
  }
}

main #sec4 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 960px) {
  main #sec4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

main #sec4 h2 {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 5rem;
}

main #sec4 #web,
main #sec4 #youtube {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
  padding-bottom: 100px;
}

@media screen and (max-width: 960px) {
  main #sec4 #web,
  main #sec4 #youtube {
    width: 100%;
  }
}

main #sec4 #web .img-wrapper,
main #sec4 #youtube .img-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  margin-bottom: 50px;
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
}

main #sec4 #web .img-wrapper::before,
main #sec4 #youtube .img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0000004b;
  z-index: 1;
}

main #sec4 #web .img-wrapper::after,
main #sec4 #youtube .img-wrapper::after {
  position: absolute;
  top: 100px;
  left: 0;
  display: inline-block;
  padding: 20px 100px;
  font-size: 4rem;
  text-align: center;
  z-index: 2;
}

@media screen and (max-width: 560px) {
  main #sec4 #web .img-wrapper::after,
  main #sec4 #youtube .img-wrapper::after {
    padding: 20px 50px;
    font-size: 3rem;
  }
}

main #sec4 #web p,
main #sec4 #youtube p {
  padding: 0 100px;
}

@media screen and (max-width: 560px) {
  main #sec4 #web p,
  main #sec4 #youtube p {
    padding: 0 20px;
  }
}

main #sec4 #web p span,
main #sec4 #youtube p span {
  font-size: 3rem;
  color: #FFD800;
}

main #sec4 #web {
  background-color: black;
}

main #sec4 #web .img-wrapper {
  background-image: url(../img/web.jpg);
}

main #sec4 #web .img-wrapper::after {
  content: "ホームページ";
  background-color: black;
  color: #ffffff;
}

main #sec4 #web p {
  color: #ffffff;
}

main #sec4 #youtube {
  background-color: white;
}

main #sec4 #youtube .img-wrapper {
  background-image: url(../img/youtube.jpg);
}

main #sec4 #youtube .img-wrapper::after {
  content: "YouTube";
  background-color: white;
  color: #333333;
}

main #sec4 #youtube p {
  color: #333333;
}

main #sec4 #youtube p::-moz-selection,
main #sec4 #youtube span::-moz-selection {
  color: #ffe600;
  background-color: #333333;
}

main #sec4 #youtube p::selection,
main #sec4 #youtube span::selection {
  color: #ffe600;
  background-color: #333333;
}

main #sec5 h2 {
  font-size: 5rem;
  margin-top: 100px;
  margin-bottom: 200px;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 560px) {
  main #sec5 h2 {
    font-size: 3rem;
  }
}

main #sec5 #meritBox, main #sec5 #merit1, main #sec5 #merit2, main #sec5 #merit3 {
  position: relative;
  margin-left: 200px;
  margin-bottom: 500px;
  display: block;
  width: 50%;
  max-width: 800px;
  height: 400px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 960px) {
  main #sec5 #meritBox, main #sec5 #merit1, main #sec5 #merit2, main #sec5 #merit3 {
    width: 80%;
    margin: 200px auto;
  }
}

@media screen and (max-width: 560px) {
  main #sec5 #meritBox, main #sec5 #merit1, main #sec5 #merit2, main #sec5 #merit3 {
    width: 100%;
    margin: 0 auto;
  }
}

main #sec5 #meritBox::before, main #sec5 #merit1::before, main #sec5 #merit2::before, main #sec5 #merit3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000004b;
  z-index: 1;
}

@media screen and (max-width: 960px) {
  main #sec5 #meritBox::before, main #sec5 #merit1::before, main #sec5 #merit2::before, main #sec5 #merit3::before {
    background-color: #00000073;
  }
}

main #sec5 #meritBox h3, main #sec5 #merit1 h3, main #sec5 #merit2 h3, main #sec5 #merit3 h3 {
  position: absolute;
  top: 50px;
  left: -50px;
  padding: 20px 40px;
  font-size: 3rem;
  text-align: center;
  background-color: black;
  color: #ffffff;
  z-index: 2;
}

@media screen and (max-width: 960px) {
  main #sec5 #meritBox h3, main #sec5 #merit1 h3, main #sec5 #merit2 h3, main #sec5 #merit3 h3 {
    top: 0;
    left: 0;
  }
}

main #sec5 #meritBox p, main #sec5 #merit1 p, main #sec5 #merit2 p, main #sec5 #merit3 p {
  position: absolute;
  right: -250px;
  bottom: -50px;
  display: inline-block;
  width: 500px;
  font-size: 2rem;
  z-index: 2;
}

main #sec5 #meritBox p span, main #sec5 #merit1 p span, main #sec5 #merit2 p span, main #sec5 #merit3 p span {
  margin: 0 5px;
  padding: 0 10px;
  font-size: 2.2rem;
  color: #ff3939;
  background-color: #ffffff;
}

@media screen and (max-width: 960px) {
  main #sec5 #meritBox p, main #sec5 #merit1 p, main #sec5 #merit2 p, main #sec5 #merit3 p {
    left: 0;
    right: 0;
    bottom: 10px;
    margin: auto;
  }
}

@media screen and (max-width: 560px) {
  main #sec5 #meritBox p, main #sec5 #merit1 p, main #sec5 #merit2 p, main #sec5 #merit3 p {
    width: auto;
    padding: 0 10px;
    font-size: 1.6rem;
  }
}

main #sec5 #merit1 {
  background-image: url(../img/merit1.jpg);
}

main #sec5 #merit2 {
  background-image: url(../img/merit2.jpg);
}

main #sec5 #merit3 {
  background-image: url(../img/merit3.jpg);
}

@media screen and (max-width: 960px) {
  main #sec6 {
    margin-top: 300px;
  }
}

main #sec6 .txt-wrapper {
  text-align: center;
  margin-bottom: 500px;
}

@media screen and (max-width: 560px) {
  main #sec6 .txt-wrapper {
    margin-bottom: 200px;
  }
}

main #sec6 .txt-wrapper p {
  font-size: 2rem;
  margin-bottom: 100px;
}

@media screen and (max-width: 560px) {
  main #sec6 .txt-wrapper p {
    margin-bottom: 30px;
  }
}

main #sec6 .txt-wrapper p span {
  font-size: 6rem;
  margin: 0 5px;
}

@media screen and (max-width: 560px) {
  main #sec6 .txt-wrapper p span {
    font-size: 2rem;
  }
}

main #sec6 .txt-wrapper h2 {
  display: inline;
  font-size: 3rem;
  color: #ffffff;
}

@media screen and (max-width: 560px) {
  main #sec6 .txt-wrapper h2 {
    font-size: 2rem;
  }
}

main #sec6 .txt-wrapper h2 span:not(#caution) {
  margin: 0 10px;
  font-size: 15rem;
  color: #FFD800;
}

@media screen and (max-width: 960px) {
  main #sec6 .txt-wrapper h2 span:not(#caution) {
    font-size: 8rem;
  }
}

@media screen and (max-width: 560px) {
  main #sec6 .txt-wrapper h2 span:not(#caution) {
    font-size: 4rem;
  }
}

main #sec6 .txt-wrapper h2 span#caution {
  display: block;
  margin-top: 50px;
  font-size: 1.4rem;
  text-align: center;
}

main #sec6 h3 {
  margin-bottom: 100px;
  font-size: 5rem;
  color: #ffffff;
  text-align: center;
  line-height: 4rem;
}

@media screen and (max-width: 560px) {
  main #sec6 h3 {
    font-size: 3rem;
  }
}

main #sec6 h3 span {
  font-size: 2.5rem;
}

@media screen and (max-width: 560px) {
  main #sec6 h3 span {
    font-size: 1.6rem;
  }
}

main #sec6 p.tax {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  text-align: right;
}

main #sec6 table#pc-table {
  width: 80%;
  max-width: 800px;
  margin: 0 auto 500px auto;
  table-layout: fixed;
  overflow-x: scroll;
}

@media screen and (max-width: 560px) {
  main #sec6 table#pc-table {
    display: none;
  }
}

main #sec6 table#pc-table th,
main #sec6 table#pc-table td {
  min-width: 100px;
  padding: 30px 10px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ffffff;
  color: #ffffff;
}

main #sec6 table#sp-table {
  display: none;
  width: 90%;
  margin: 0 auto 200px auto;
}

@media screen and (max-width: 560px) {
  main #sec6 table#sp-table {
    display: block;
  }
}

main #sec6 table#sp-table th,
main #sec6 table#sp-table td {
  min-width: 100px;
  padding: 10px 5px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 1.4rem;
}

main #sec7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  text-align: center;
  color: #ffffff;
}

main #sec7 h2 {
  width: 100%;
  font-size: 5rem;
  line-height: 3rem;
  margin-bottom: 100px;
}

@media screen and (max-width: 560px) {
  main #sec7 h2 {
    font-size: 3rem;
  }
}

main #sec7 h2 span {
  font-size: 2rem;
}

@media screen and (max-width: 560px) {
  main #sec7 h2 span {
    font-size: 1.6rem;
  }
}

main #sec7 .contact-wrapper {
  display: inline-block;
  width: 45%;
  padding: 50px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  border: 1px solid #ffffff;
  -webkit-transition: all .6s;
  transition: all .6s;
}

@media screen and (max-width: 960px) {
  main #sec7 .contact-wrapper {
    width: 70%;
    margin: 50px auto;
  }
}

main #sec7 .contact-wrapper:hover {
  color: #333333;
  background-color: #ffffff;
}

main #sec7 .contact-wrapper:hover p {
  color: #333333;
}

main #sec7 .contact-wrapper h3 {
  font-size: 3rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 560px) {
  main #sec7 .contact-wrapper h3 {
    font-size: 2rem;
  }
}

main #sec7 .contact-wrapper p {
  -webkit-transition: all .6s;
  transition: all .6s;
}

main #sec7 .contact-wrapper .tel-num {
  font-size: 3rem;
}

@media screen and (max-width: 560px) {
  main #sec7 .contact-wrapper .tel-num {
    font-size: 2rem;
  }
}

footer {
  margin-top: 300px;
  padding: 100px;
  width: 100vw;
  color: #ffffff;
  background-color: black;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 560px) {
  footer {
    padding: 100px 20px;
  }
}

footer ul {
  padding: 0;
  width: 50%;
  margin: auto;
}

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

footer h2 {
  font-size: 3rem;
}

footer li {
  margin-top: 30px;
  font-size: 1.8rem;
}
/*# sourceMappingURL=style.css.map */