@charset "utf-8";

html {
  color-scheme: dark;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1;
  font-family: sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  display: block;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  margin-inline: auto;
}

/* ==================reset======================= */
body{
  background: url(../img/window.gif) no-repeat center/ cover fixed;
  /* height: 100vh;
  height: 100dvh; */
}

.container{
  max-width: 1000px;
  margin-inline: auto;
}

.wrap{
  display: flex;
  justify-content: space-between;
}

header{
  text-align: center;
  margin-block: 30px 50px;
}
h1{
  display: inline;
  color:#fff;
  padding-block: 0 10px;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 4em;
  letter-spacing:5px;
  border-bottom: 1px solid rgb(249, 149, 77);
}

h1 span{
  color: rgb(249, 149, 77);
  text-shadow: 
  0px 0px 5px #500,
  0px 0px 5px #500,
  0px 0px 5px #500;
}

h1 i{
  font-size: 0.6em;
  margin-inline: 0 5px;
}

.right nav li{
  margin-bottom: 10px;
  text-align: right;
}

.right nav a::after {
  content: "";
  display: block;
  height: 2px;
  scale: 0 1;
  background: rgb(249, 149, 77);
  margin-bottom: 1px;
  transform-origin: right;
  transition: 200ms;
}

.right nav a:hover::after {
  scale: 1;
}

.left{
  background: linear-gradient(to left,rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  /* background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)); */
  color: rgb(249, 149, 77);
  font-size: 1.5em;
  padding: 20px;
}


.left p+p{
  color:#fff;
  font-size: 0.5em;
  margin-top: 20px;
  line-height: 1.8;
}

.left p:nth-last-child {
  margin-bottom: none;
}

footer{
  width: fit-content;
    position: absolute;
    bottom: 20px;
    margin: auto;
    left: 0;
    right: 0;
}




/*                                                       */
/*                                                       */

@media (width <=743px) {

.pcnav{
    display: none;
  }

  .btn {
    display: block;
    width: 50px;
    height: 50px;
    font-size: 35px;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 5px;
    position: absolute;
    top: 5px;
    right: 5px;
    overflow: hidden;
    z-index: 9999;
  }

  .btn i {
    display: block;
    line-height: 50px;
  }

  .close {
    color: #000;
    border-color: #000;
  }

  .close i:first-child {
    display: none;
  }

  /* Sp nav */
  .spnav {
    /* display: block; */
    position: absolute;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    top: 0;
    left: 0;
    background:
      rgb(0% 0% 0% / 0.5);
    padding-top: 100px;
    box-sizing: border-box;
  }

  .spnav li {
    font-size: 24px;
    font-weight: bold;
    line-height: 70px;
    text-align: center;
  }

  .spnav a {
    display: block;
  }

}