﻿@charset "utf-8";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#wrap {
  width: 100%;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

ul,
li,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}


@media (max-width:599px) {
  #bg {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  header {
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    transition: 0.5s ease-in-out;
    width: 100%;
    height: auto;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }

  header.fixed {
    background: rgba(0, 0, 0, 0.9);
  }

  header>.head1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: calc(80/720*100vw);
    z-index: 3;
    padding: 0 35px;
  }

  header>.head1>.logo {
    margin: 15px 0 0 0;
  }

  .head2 {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: auto;
    display: none;
    padding: 0 25px;
  }

  nav ul li a {
    display: block;
    padding: 5%;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s ease;
  }

  nav>.header_menu>li:nth-of-type(1) a {
    color: #8c33f7;
  }

  nav>.header_menu>li>a:hover {
    color: #8c33f7;
    transition: all 0.3s ease;
  }

  .fa-bars {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
  }

  .fa-bars:hover {
    cursor: pointer;
  }

  .header_sub {
    display: none;
    background: rgba(199, 56, 216, 0.8);
  }

  .header_sub>li>a:hover {
    color: #222;
  }



  footer {
    background: #222;
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
  }

  footer>#footer_box {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
  }

  footer>#footer_box>#footer_1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
  }

  footer>#footer_box>#footer_1>.footer_menu {
    width: 90%;
    height: 250px;
    margin: 0 0 0 20px;
  }

  footer>#footer_box>#footer_1>.footer_menu>li:nth-of-type(1) {
    margin: 40px 0 30px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 200;
    font-family: 'Abril Fatface', cursive;
  }

  footer>#footer_box>#footer_1>.footer_menu>li {
    margin: 15px 0;
  }

  footer>#footer_box>#footer_1>.footer_menu>li a {
    text-decoration: none;
    color: #828bb2;
    font-size: 15px;
  }

  footer>#footer_box>#footer_1>.footer_menu>li a:hover {
    color: #fff;
    transition: all 0.3s ease;
  }

  footer>#footer_box>#footer_1>#footer_search {
    width: 90%;
    height: 250px;
    margin: 0 0 0 20px;
  }

  footer>#footer_box>#footer_1>#footer_search>h3 {
    margin: 40px 0 30px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 200;
    font-family: 'Abril Fatface', cursive;
  }

  footer>#footer_box>#footer_1>#footer_search>p {
    color: #828bb2;
    font-size: 15px;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input {
    background: #363a4b;
    width: 80%;
    height: 40px;
    margin-top: 25px;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>input {
    background: rgba(0, 0, 0, 0);
    padding: 0 20px;
    width: 68%;
    height: 40px;
    border: none;
    color: #828bb2;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>#footer_btn {
    border: none;
    width: 30%;
    height: 40px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    background: -webkit-linear-gradient(120deg, #7c32ff 0%, #c738d8 100%);
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>#footer_btn:hover {
    cursor: pointer;
    background: -webkit-linear-gradient(60deg, #7c32ff 0%, #c738d8 100%);
  }

  footer>#footer_box>#footer_2 {
    width: 90%;
    height: 170px;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    margin-left: 20px;
  }

  footer>#footer_box>#footer_2>p {
    color: #fff;
    font-size: 15px;
  }

  footer>#footer_box>#footer_2>#footer_icon {
    display: flex;
    width: 200px;
    height: 40px;
    margin: 30px 65px 0 0;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns {
    background: #363a48;
    width: 45px;
    height: 40px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns>i {
    color: #fff;
    font-size: 14px;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns:hover {
    cursor: pointer;
    background: -webkit-linear-gradient(90deg, #7c32ff 0%, #c738d8 100%);
  }

}

img {
  width: 100%;
  height: auto;
}

@media (min-width:600px) {

  #bg {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  header {
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    transition: 0.5s ease-in-out;
    width: 100%;
    height: auto;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }

  header.fixed {
    background: rgba(0, 0, 0, 0.9);
  }

  header>.head1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(80/720*100vw);
    z-index: 3;
    padding: 0 45px;
  }

  header>.head1>.logo {
    margin: 15px 0 0 0;
  }

  .head2 {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: auto;
    display: none;
    padding: 0 45px;
  }

  nav ul li a {
    display: block;
    padding: 5%;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s ease;
  }

  nav>.header_menu>li:nth-of-type(1) a {
    color: #8c33f7;
  }

  nav>.header_menu>li>a:hover {
    color: #8c33f7;
    transition: all 0.3s ease;
  }

  .fa-bars {
    color: rgba(255, 255, 255, 1);
    font-size: 45px;
  }

  .fa-bars:hover {
    cursor: pointer;
  }

  .header_sub {
    display: none;
    background: rgba(199, 56, 216, 0.8);
  }

  .header_sub>li>a:hover {
    color: #222;
  }



  footer {
    background: #222;
    width: 100%;
    height: auto;
  }

  footer>#footer_box {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
  }

  footer>#footer_box>#footer_1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
  }

  footer>#footer_box>#footer_1>.footer_menu {
    width: 45%;
    height: 300px;
    margin: 0 0 0 20px;
  }

  footer>#footer_box>#footer_1>.footer_menu>li:nth-of-type(1) {
    margin: 40px 0 30px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 200;
    font-family: 'Abril Fatface', cursive;
  }

  footer>#footer_box>#footer_1>.footer_menu>li {
    margin: 15px 0;
  }

  footer>#footer_box>#footer_1>.footer_menu>li a {
    text-decoration: none;
    color: #828bb2;
    font-size: 15px;
  }

  footer>#footer_box>#footer_1>.footer_menu>li a:hover {
    color: #fff;
    transition: all 0.3s ease;
  }

  footer>#footer_box>#footer_1>#footer_search {
    width: 100%;
    height: 250px;
    margin: 0 0 0 20px;
  }

  footer>#footer_box>#footer_1>#footer_search>h3 {
    margin: 40px 0 30px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 200;
    font-family: 'Abril Fatface', cursive;
  }

  footer>#footer_box>#footer_1>#footer_search>p {
    color: #828bb2;
    font-size: 15px;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input {
    background: #363a4b;
    width: 310px;
    height: 40px;
    margin-top: 25px;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>input {
    background: rgba(0, 0, 0, 0);
    padding: 0 20px;
    width: 210px;
    height: 40px;
    border: none;
    color: #828bb2;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>#footer_btn {
    border: none;
    width: 94px;
    height: 40px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    background: -webkit-linear-gradient(120deg, #7c32ff 0%, #c738d8 100%);
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>#footer_btn:hover {
    cursor: pointer;
    background: -webkit-linear-gradient(60deg, #7c32ff 0%, #c738d8 100%);
  }

  footer>#footer_box>#footer_2 {
    width: 90%;
    height: 200px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    margin-left: 20px;
  }

  footer>#footer_box>#footer_2>p {
    color: #fff;
    font-size: 15px;
  }

  footer>#footer_box>#footer_2>#footer_icon {
    display: flex;
    width: 200px;
    height: 40px;
    margin: 30px 65px 0 0;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns {
    background: #363a48;
    width: 45px;
    height: 40px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns>i {
    color: #fff;
    font-size: 14px;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns:hover {
    cursor: pointer;
    background: -webkit-linear-gradient(90deg, #7c32ff 0%, #c738d8 100%);
  }

}


@media (min-width:1000px) {

  #bg {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  header {
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    transition: 0.5s ease-in-out;
    width: 100%;
    height: 80px;
    position: absolute;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }

  header.fixed {
    background: rgba(0, 0, 0, 0.9);
  }

  header>.head1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    line-height: 40px;
    z-index: 3;
  }

  header>.head1>.logo {
    margin: 15px 80px 0 0;
    width: 25%;
  }

  .head2 {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: auto;
    display: block;
  }

  nav>.header_menu {
    display: flex;
    height: 60px;
    width: 100%;
    justify-content: space-between;
  }

  nav>.header_menu>li>a {
    display: block;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    margin: 0 5px;
    line-height: 60px;
  }

  nav>.header_menu>li {
    width: 90px;
  }

  nav>.header_menu>li:nth-of-type(1) a {
    color: #8c33f7;
  }

  nav>.header_menu>li>a:hover {
    color: #8c33f7;
    transition: all 0.3s ease;
  }

  .fa-bars {
    color: rgba(255, 255, 255, 1);
    display: none;
    font-size: 20px;
  }

  .fa-bars:hover {
    cursor: pointer;
  }

  .header_sub {
    background: rgba(199, 56, 216, 0.8);
    width: 130px;
    display: none;
  }

  .header_sub>li>a:hover {
    color: #222;
  }


  footer {
    background-image: url(../img/footer-bg.png);
    background-color: #fff;
    width: 100%;
    height: 800px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
  }

  footer>#footer_box {
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
  }

  footer>#footer_box>#footer_1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
  }

  footer>#footer_box>#footer_1>.footer_menu {
    width: 13%;
    height: 300px;
    margin: 0 0 0 30px;
  }

  footer>#footer_box>#footer_1>.footer_menu>li:nth-of-type(1) {
    margin: 40px 0 30px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 200;
    font-family: 'Abril Fatface', cursive;
  }

  footer>#footer_box>#footer_1>.footer_menu>li {
    margin: 15px 0;
  }

  footer>#footer_box>#footer_1>.footer_menu>li a {
    text-decoration: none;
    color: #828bb2;
    font-size: 15px;
  }

  footer>#footer_box>#footer_1>.footer_menu>li a:hover {
    color: #fff;
    transition: all 0.3s ease;
  }

  footer>#footer_box>#footer_1>#footer_search {
    width: 15%;
    height: 250px;
    margin: 0 0 0 20px;
  }

  footer>#footer_box>#footer_1>#footer_search>h3 {
    margin: 40px 0 30px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 200;
    font-family: 'Abril Fatface', cursive;
  }

  footer>#footer_box>#footer_1>#footer_search>p {
    color: #828bb2;
    font-size: 15px;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input {
    background: #363a4b;
    width: 310px;
    height: 40px;
    margin-top: 25px;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>input {
    background: rgba(0, 0, 0, 0);
    padding: 0 20px;
    width: 210px;
    height: 40px;
    border: none;
    color: #828bb2;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>#footer_btn {
    border: none;
    width: 94px;
    height: 40px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    background: -webkit-linear-gradient(120deg, #7c32ff 0%, #c738d8 100%);
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>#footer_btn:hover {
    cursor: pointer;
    background: -webkit-linear-gradient(60deg, #7c32ff 0%, #c738d8 100%);
  }

  footer>#footer_box>#footer_2 {
    width: 90%;
    height: 200px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    margin-left: 60px;
  }

  footer>#footer_box>#footer_2>p {
    color: #fff;
    font-size: 15px;
  }

  footer>#footer_box>#footer_2>#footer_icon {
    display: flex;
    width: 200px;
    height: 40px;
    margin: 30px 65px 0 0;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns {
    background: #363a48;
    width: 45px;
    height: 40px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns>i {
    color: #fff;
    font-size: 14px;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns:hover {
    cursor: pointer;
    background: -webkit-linear-gradient(90deg, #7c32ff 0%, #c738d8 100%);
  }

}


@media (min-width:1800px) {
  #bg {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  header {
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    transition: 0.5s ease-in-out;
    width: 100%;
    height: 60px;
    position: absolute;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }

  header.fixed {
    background: rgba(0, 0, 0, 0.9);
  }

  header>.head1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    line-height: 40px;
    z-index: 3;
  }

  header>.head1>.logo {
    margin: 15px 0 0 0;
  }

  .head2 {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: auto;
    display: block;
  }

  nav>.header_menu {
    display: flex;
    height: 60px;
    width: 80%;
    justify-content: space-between;
  }

  nav>.header_menu>li>a {
    display: block;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    margin: 0 5px;
    line-height: 60px;
  }

  nav>.header_menu>li {
    width: 90px;
  }

  nav>.header_menu>li:nth-of-type(1) a {
    color: #8c33f7;
  }

  nav>.header_menu>li>a:hover {
    color: #8c33f7;
    transition: all 0.3s ease;
  }

  .fa-bars {
    color: rgba(255, 255, 255, 1);
    display: none;
    font-size: 20px;
  }

  .fa-bars:hover {
    cursor: pointer;
  }

  .header_sub {
    background: rgba(199, 56, 216, 0.8);
    width: 130px;
    display: none;
  }

  .header_sub>li>a:hover {
    color: #222;
  }



  footer {
    background-image: url(../img/footer-bg.png);
    background-color: #fff;
    width: 100%;
    height: 800px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
  }

  footer>#footer_box {
    width: 1200px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
  }

  footer>#footer_box>#footer_1 {
    width: 100%;
    height: 300px;
    display: flex;
  }

  footer>#footer_box>#footer_1>.footer_menu {
    width: 190px;
    height: 300px;
    margin: 0 0 0 10px;
  }

  footer>#footer_box>#footer_1>.footer_menu>li:nth-of-type(1) {
    margin: 50px 0 30px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 200;
    font-family: 'Abril Fatface', cursive;
  }

  footer>#footer_box>#footer_1>.footer_menu>li {
    margin: 15px 0;
  }

  footer>#footer_box>#footer_1>.footer_menu>li a {
    text-decoration: none;
    color: #828bb2;
    font-size: 15px;
  }

  footer>#footer_box>#footer_1>.footer_menu>li a:hover {
    color: #fff;
    transition: all 0.3s ease;
  }

  footer>#footer_box>#footer_1>#footer_search {
    width: 350px;
    height: 300px;
    margin: 0 0 0 20px;
  }

  footer>#footer_box>#footer_1>#footer_search>h3 {
    margin: 50px 0 30px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 200;
    font-family: 'Abril Fatface', cursive;
  }

  footer>#footer_box>#footer_1>#footer_search>p {
    color: #828bb2;
    font-size: 15px;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input {
    background: #363a4b;
    width: 310px;
    height: 40px;
    margin-top: 25px;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>input {
    background: rgba(0, 0, 0, 0);
    padding: 0 20px;
    width: 210px;
    height: 40px;
    border: none;
    color: #828bb2;
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>#footer_btn {
    border: none;
    width: 94px;
    height: 40px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    background: -webkit-linear-gradient(120deg, #7c32ff 0%, #c738d8 100%);
  }

  footer>#footer_box>#footer_1>#footer_search>#footer_input>#footer_btn:hover {
    cursor: pointer;
    background: -webkit-linear-gradient(60deg, #7c32ff 0%, #c738d8 100%);
  }

  footer>#footer_box>#footer_2 {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: nowrap;
  }

  footer>#footer_box>#footer_2>p {
    color: #fff;
    font-size: 15px;
  }

  footer>#footer_box>#footer_2>#footer_icon {
    display: flex;
    width: 200px;
    height: 40px;
    margin-right: 65px;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns {
    background: #363a48;
    width: 45px;
    height: 40px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns>i {
    color: #fff;
    font-size: 14px;
  }

  footer>#footer_box>#footer_2>#footer_icon>.footer_icon_sns:hover {
    cursor: pointer;
    background: -webkit-linear-gradient(90deg, #7c32ff 0%, #c738d8 100%);
  }

}