@charset "utf-8";

@font-face {
  /*フォントの名前*/
  font-family: "makinas";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../css/font/Makinas-4-Square_re.otf");
}
/*
====================================
カラー
====================================
*/
:root {
  --main-color: #333;
  /* header */
  --sub-color: #00cc47;
  --box-color-01: #afe2c6;
  /* background */
  --background-color-02: #f2f2f2;
  --other-color-01: #24bf93;
}
html {
  font-size: 16px;
}
body {
  color: #fff;
  font-family: 'Open Sans','Hiragino Kaku Gothic ProN','游ゴシック  Medium',meiryo,sans-serif;
  line-height: 1.6;
  background: #333;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #fff;
  text-decoration: none;
}
li {
  list-style: none;
}
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}
main .fab {
  color: #24bf93;
}
main .fas {
  color: #24bf93;
}
header .sp {
  display: none;
}
/*
====================================
header
====================================
*/
/* YouTube Movie */
/* wrap */
.hero {
  position: relative;
}
/* video */
.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  z-index: -100;
}
.youtube-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-width: 1920px;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: -100;
}
/* overlay */
.overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
}
/* text */
.name_text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
h1 {
  position: relative;
  font-family: Roboto;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  padding: 0 50px;
  text-align: center;
  color: #fff;
}
header h1 img {
  width: 150px;
  position: fixed;
  top: 8px;
  left: 1rem;
  z-index: 2;
}
header ul {
  display: flex;
  position: fixed;
  gap: 0 1rem;
  top: 8px;
  right: 1rem;
  z-index: 2;
}
header .pc a {
  font-family: 'makinas', sans-serif;
  color: #24bf93;
  font-size: 20px;
  text-decoration: none;
/*   text-shadow: 0 0 5px rgba(0, 204, 71, 0.8),0 0 25px rgba(0, 204, 71, 1); */
/*   text-shadow: 0 0 1px rgba(0, 0, 0, 0.8),0 0 1px rgba(0, 0, 0, 1); */
  position: relative;
  display: inline-block;
}
header .pc a::after {
/*   text-shadow: 0 0 5px rgba(0, 204, 71, 0.8),0 0 25px rgba(0, 204, 71, 1); */
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 100%;
  height: 2.5px;
  background: #24bf93;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
header .pc a:hover::after {
  transform: scale(1, 1);
}
header .top-img h2 {
  font-family: 'makinas', sans-serif;
	color: #fff;
	text-align: center;
	letter-spacing: 4px;
	font-size: 2rem;
	font-weight: bold;
	text-shadow: 0 0 5px rgba(255,255,255,0.8),0 0 25px rgba(255,255,255,1);
	line-height: 1.2;
}
/* ハンバーガーメニュー 非表示*/
#overlay-button {
  display: none;
}

/*
====================================
snsアイコン
====================================
*/
.follow-me {
  list-style: none;
  display: list-item;
  margin: 3rem 0 -8px;
  padding: 0;
  z-index: 6;
}
.follow-me li {
  margin: 0 8px 8px 0;
  padding: 0;
}
.follow-me li a::before {
  border-style: solid;
  border-width: 1px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 16px;
  height: 42px; /* Button height */
  line-height: 42px; /* Button height */
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  text-align: center;
  width: 42px; /* Button width */
}
.follow-me li a[href*="instagram.com"]::before      { border-color: #125688; background-color: #125688; content: "\f16d"; }
.follow-me li a[href*="nicovideo.jp"]::before       { border-color: #eaeaea; background-color: #eaeaea; content: "\f047"; font-family: blogicon; }
.follow-me li a[href*="twitch.tv"]::before          { border-color: #6441a5; background-color: #6441a5; content: "\f1e8"; }
.follow-me li a[href*="twitter.com"]::before        { border-color: #55acee; background-color: #55acee; content: "\f099"; }
.follow-me li a[href*="youtube.com"]::before        { border-color: #cd201f; background-color: #cd201f; content: "\f16a"; }
.follow-me li a:hover::before {
  background-color: #fff;
}
.follow-me li a[href*="instagram.com"]:hover::before      { color: #125688; }
.follow-me li a[href*="nicovideo.jp"]:hover::before       { color: #eaeaea; }
.follow-me li a[href*="twitch.tv"]:hover::before          { color: #6441a5; }
.follow-me li a[href*="twitter.com"]:hover::before        { color: #55acee; }
.follow-me li a[href*="youtube.com"]:hover::before        { color: #cd201f; }
/*
====================================
main
====================================
*/
main .inner {
  max-width: 1000px;
  margin: 0 auto;
}
/* ====================================多分ここがはみ出てる==================================== */
main .contents-01 {
  display: flex;
  /* margin: 0 auto;
  width: 100%; */
  justify-content: space-around;
  align-items: center;
  margin-top: 10rem;
  /* display: none; */
}
main .contents-01 .left {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.contents-01 .left img {
  /* position: absolute; */
  /* top: -8rem;
  left: -4rem; */
  margin: 0 auto;
  margin-bottom: 2rem;
}

main .contents-01 .left p {
  margin-bottom: 2rem;
  /* text-align: center; */
}
/*
.contents-01 .left .live {
  border-right: 5px solid red;
  border-left: 5px solid red;
  text-align: center;
  position: relative;
  width: 80%;
  margin: 24px;
}
.left .live .live-text-01 {
  position: absolute;
  color: red;
  font-weight: bold;
}
.left .live .live-text-02{
  padding: 16px 0;
} */
main .btn_margin {
  margin-bottom: 10rem;
}
.btn-01 a{
  border: 1px solid #fff;
  padding: 8px 16px;
  display: inline;
	transition: all 0.2s linear;
}
.btn-01 a:hover {
  background: rgba(255, 255, 255, 1);
  color: #333;
}
main .contents-01 .right {
  width: 40%;
  position: relative;
}
main .contents-01 .right::after {
  content: "";
	position: absolute;
	z-index: -999;
	background-image: url(../img/top_bgimg.png);
  background-size: contain;
  display: inline-block;/*忘れずに！*/
  vertical-align: middle;
}
.contents-01 .right .mande-sign {
  position: absolute;
  right: 0;
  bottom: -40%;
  transform: rotate( -20deg );
  width: 70%;
}
main .bg-color {
  background: url(../img/triangle_left.png) no-repeat left top,
  url(../img/triangle_right.png) no-repeat right bottom,
  #f2f2f2;
  margin-top: 10rem;
  padding-bottom: 150px;
  /* max-width: 100%; */
  /* background-size: 300px 40%; */
}
h3 {
  font-family: 'makinas', sans-serif;
  background-size: 40px;
  letter-spacing: 4px;
  padding-top: 150px;
  font-size: 24px;
  color: #333;
  text-align: center;
  position: relative;
}
h3:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #24bf93;
}
main .contents-02 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8rem;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
main .contents-02 .con-02-box {
  width: 45%;
  border: 1px solid #333;
  text-align: center;
  padding: 4rem;
  position: relative;
}
.con-02-box .btn-01 {
  margin-top: 24px;
}
.con-02-box .btn-01 a{
  border: 1px solid #333;
  color: #333;
  padding: 8px 16px;
  display: inline;
	transition: all 0.2s linear;
}
.con-02-box .btn-01 a:hover {
  background: rgba(51, 51, 51, 1);
  color: #fff;
}
.contents-02 .con-02-box p {
  color: #333;
}
main .contents-02 span {
  font-family: "makinas", sans-serif;
  font-size: 32px;
  background: #f2f2f2;
  color: #24bf93;
  position: absolute;
  top: -24px;
  left: 50%;
  width: 100px;
  transform: translate(-50%, 0);
}
main .contents-03 {
  text-align: center;
}
.title-01 {
  color: #fff;
}
.contents-03 .contents-03_sns {
  display: flex;
  justify-content: center;
  margin: 8rem 1rem 0 1rem;
  gap: 0 2rem;
}
.contents-03 .contents-03_sns .contents-03_youtube {
  aspect-ratio: 16 / 9;
}
.contents-03 .contents-03_sns .contents-03_twitter {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contents-03 .twitter-follow-button {
  margin-top: 1rem;
}
main .bg-design-none {
  background-image: none;
}
.owl-carousel {
  margin: 8rem 0 5rem 0;
}
.owl-carousel .item {
  padding: 20px;
}

/*
====================================
footer
====================================
*/
footer {
  background: #24bf93;
  padding: 0.5rem 3rem 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'makinas', sans-serif;
}
footer img {
  width: 10%;
}
footer ul {
  display: flex;
  gap: 0 1rem;
  width: 80%;
}
footer ul li a{
  color: #333;
}
footer .footer_right {
  text-align: right;
  color: #333;
}
/*
====================================
ptop
====================================
*/
/***追従するトップへ戻るボタン***/
.ptop {
  font-family: "makinas", sans-serif;
  position: fixed;
  right: 5px;
  bottom: 20px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: #ddd;
  padding: 0 0 0 35px;
  border-top: solid 1px;
}
.ptop::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
/***トップへ戻るボタンここまで***/

/*
====================================
prifile.html
====================================
*/
main .contents-pr-01 p {
  color: #333;
}
main .profile-top-img {
  background: #fff url(../img/profire_bannar.png) no-repeat center;
  width: 100vw;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .profile-top-img::after {
  content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 400px;
}
main .profile-top-img p {
  color: #fff;
  font-size: 24px;
  z-index: 2;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),0 0 5px rgba(255, 255, 255, 1);
}
main .pro-inner {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 8rem;
  align-items: center;
}
main .pro-inner div {
  width: 50%;
  margin-top: 8rem;
}
main .pro-inner h3 {
  width: 100%;
}
.pro-left .name-ja  {
  font-size: 2rem;
  border-bottom: 1px solid #333;
  color: #24bf93;
}
.pro-left .name-en {
  color: transparent;
  -webkit-text-stroke: 1px #333;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 4rem;
}
.pro-left p {
  font-size: 20px;
  margin-bottom: 3rem;
}
.pro-inner dl {
  float: left;
  overflow: hidden;
  font-size: 1rem;
  width: 100%;
}
.pro-inner dt {
  float: left;
}
.pro-inner dd {
  padding-left: 18rem;
  border-bottom: 1px solid #333;
}
.pro-right {
  position: relative;
}
.pro-right .bacon-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
}
.bacon-img:hover {
  display: inline-block;
  animation: hurueru .1s  infinite;
}
.history {
  display: none;
}
.year {
  width: 100%;
  cursor: pointer;
}
.year:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  padding-left : 1rem;/*文字との隙間*/
  color: #24bf93;/*アイコンの色*/
}
@keyframes hurueru {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(2px, 2px) rotateZ(1deg)}
  50% {transform: translate(0px, 2px) rotateZ(0deg)}
  75% {transform: translate(2px, 0px) rotateZ(-1deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
.pro-right .bacon-name {
  position: absolute;
  width: 100px;
  right: 50px;
  bottom: 180px;
}
.pro-inner .year {
  margin: 2rem 0;
  font-size: 28px;
  padding-left: 1rem;
  border-left: 10px solid #24bf93;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
/*
====================================
contents.html
====================================
*/
main .contents-top-img {
  background: #fff url(../img/contents_bannar.png) no-repeat center;
  width: 100vw;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .contents-top-img::after {
  content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 400px;
}
main .contents-top-img  p {
  color: #fff;
  font-size: 24px;
  z-index: 2;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),0 0 5px rgba(255, 255, 255, 1);
}
main .contentspg-con-01 {
  margin-top: 8rem;
  /* display: flex; */
}
main .contentspg-con-01 p {
  text-align: center;
  margin-bottom: 4rem;
}
/*
main .contents-left {
  width: 60%;
}
main .contents-right {
  width: 40%;
  margin-left: 2rem;
} */
main .contents-right p {
  border-left: 10px solid #24bf93;
  border-right: 10px solid #24bf93;
  padding: 0 1rem;
  margin-top: 2rem;
}
main .contents-right span {
  font-size: 1.5rem;
  line-height: 36px;
}
/*
====================================
goods.html
====================================
*/
main .goods-top-img {
  background: #fff url(../img/goods_bannar.png) no-repeat center;
  width: 100vw;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .goods-top-img::after {
  content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 400px;
}
main .goods-top-img p {
  color: #fff;
  font-size: 24px;
  z-index: 2;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),0 0 5px rgba(255, 255, 255, 1);
}
main .contents-goods-01 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 8rem;
  justify-content: center;
}
main .contents-goods-01 li {
  /* border: 1px solid #333; */
  width: calc((100% - 6px - 2rem) / 3);
  padding: 1rem;
}
main .contents-goods-01 .new {
  position: absolute;
  width: 80px;
}
.contents-goods-01 .goods-bg {
  background: #fff;
}
.contents-goods-01 li p {
  text-align: center;
  color: #555;
}
.contents-goods-01 li .none::before {
  content: "\f00d";
  font-family: 'Font Awesome 5 Free';
  color: red;
  font-weight: 900;
  margin-right: 0.5rem;
  position: relative;
  top: 1px;
}
main .con-02-box .goods-btn {
  margin-top: 8rem;
  text-align: center;
}
.contents-goods-01 li h4{
  text-align: center;
}
/*
====================================
contact.html
====================================
*/
main .con-top-img {
  background: #fff url(../img/contact_bannar.png) no-repeat center;
  width: 100vw;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .con-top-img::after {
  content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 400px;
}
main .con-top-img p {
  color: #fff;
  font-size: 24px;
  z-index: 2;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),0 0 5px rgba(255, 255, 255, 1);
}
main .fa-bolt {
  color: #fff;
}
main .contact-bg {
  padding-bottom: 0;
}
main .contact-bg {
  color: #333;
  margin-top: 0;
}
main .con-inner {
  padding: 0 8rem 10rem 8rem;
  margin-top: 0;
}
main h3 {
  font-size: 2rem;
}
main .contents-con-01 {
  margin-top: 4rem;
}
main .contents-con-01 span {
  color: #24bf93;
}
main .contents-con-01 .accent-text {
  color: red;
  margin-bottom: 2rem;
}
main .contents-con-01 .contact-accent-box {
    border: 1px solid var(--main-color);
    margin-bottom: 4rem;
    padding: 4rem;
}
.contents-con-01 .contact-accent-box p {
  margin-bottom: 2rem;
  line-height: 1.5;
}
.contents-con-01 .contact-accent-box li {
  list-style: disc;
}
main .contact-bg dt {
  font-size: 20px;
}
main .contact-bg input {
  border: 1px solid #333;
  padding: 2px 0.5rem;
  width: 50%;
}
main .contact-bg textarea {
  border: 1px solid #333;
  padding: 2px 0.5rem;
}
main .contact-bg dd {
  margin-bottom: 2rem;
}
main .contact-bg button {
  border: 1px solid #333;
  padding: 8px 16px;
  display: inline;
	transition: all 0.2s linear;
}
main .contact-bg button:hover {
  background: rgba(51, 51, 51, 1);
  color: #fff;
}
.footer-black {
  background: #333;
}
.footer-black .footer_right a {
  color: #fff;
}
.footer-black .footer_right {
  color: #fff;
}
/*
====================================
other.html
====================================
*/
main .other-top-img {
  background: #fff url(../img/other_bannar.png) no-repeat center;
  width: 100vw;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .other-top-img::after {
  content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 400px;
}
main .other-top-img p {
  color: #fff;
  font-size: 24px;
  z-index: 2;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),0 0 5px rgba(255, 255, 255, 1);
}
main .other-left {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.other-left img {
  width: 70%;
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
}
@keyframes yurayura {
  0% , 100%{
      transform: rotate(5deg);
  }
  50%{
      transform: rotate(-5deg);
  }
}
.other-right p {
  font-size: 20px;
}
main .other-right .pixivfanbox {
  margin: 4rem 0 2rem 0;
  width: 100%
}
main .other-right .pixivfanbox img {
  width: 80%;
}
main .other-right .discord{
  width: 100%;
  margin: 0;
}
/*
====================================
レスポンシブ 600px-700px
====================================
*/
/* そのまま縮小していく */
/* @media  screen and (max-width: 600px) {
  #wrapper {
    min-width: auto;
  }
} */
@media screen and (max-width: 1000px){ 
  .fan-art {
    display: none;
  }
  .contents-03 .contents-03_sns {
    margin-bottom: 8rem;
  }

  main .pro-inner {
    padding: 4rem;
  }
}
@media screen and (max-width: 800px){ 
  html {
		font-size: 15px;
	}
  header .pc {
    display: none;
  }
  #overlay-button {
    display: block;
  }
  .contents-01 .left img {
    max-width: 300px;
  }
  .contents-03 .contents-03_sns {
    display: inline;
  }
  .contents-03 .contents-03_sns .contents-03_youtube {
    position: relative;
    width: 100%;
    padding: calc(315 / 560 * 100%) 0 0;
  }
  .contents-03_sns .contents-03_youtube iframe {
    position: absolute;
    margin-top: 4rem;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .contents-03 .contents-03_sns .contents-03_twitter {
    position: relative;
    width: 100%;
    margin-top: 5rem;
    /* padding: calc(315 / 560 * 100%) 0 0; */
  }
  main .pro-inner {
    flex-direction: column;
  }
  main .pro-inner p {
    width: 100%;
  }
  .pro-left .name-ja {
    font-size: 1.5rem;
  }
  .pro-left .name-en {
    font-size: 1.5rem;
  }
  .pro-left p {
    font-size: 16px;
    margin-bottom: 2rem;
  }
  .pro-inner .contents-03_youtube iframe{
    margin: 0 auto;
  }
  main .pro-inner div {
    width: 90%;
  }
  .pro-inner dd {
    padding-left: 10rem;
  }
  main .contents-goods-01 {
    flex-direction: column;
  }
  main .contents-goods-01 li {
    width: 100%;
    text-align: center;
  }
  main .con-inner {
    padding: 0;
  }
  main .contents-con-01 {
    padding: 4rem 4rem;
  }
  main .other-right {
    margin-bottom: 10rem;
  }
  footer img {
    display: none;
  }
}
@media screen and (max-width: 600px){
  html p {
		font-size: 12px;
	}
  .hero {
    margin-bottom: 10rem;
  }
  main .contents-01 {
    display: inline;
    text-align: center;
  }
  main .contents-01 .right {
    display: block;
    margin: 0 auto;
  }
  main .contents-01 .right img {
    margin-top: 2rem;
  }
  main .contents-02 {
    flex-direction: column;
  }
  main .contents-02 .con-02-box {
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 70%;
  }
  .pro-inner .year {
    font-size: 24px;
  }
  .pro-right .bacon-name {
    display: none;
  }
  .contents-con-01 dd input {
    width: 300px;
  }
  .contents-con-01 dd textarea {
    width: 300px;
  }
}
@media screen and (max-width: 400px){
  main h3 {
    font-size: 24px;
  }
  .contents-01 .left img {
    max-width: 200px;
  }
  .btn-01 a {
    font-size: 8px;
  }
  footer {
    display: block;
  }
  .footer_left {
    display: none;
  }
  .footer_right ul {
    display: inline;
    text-align: center;
  }
  .footer_right p{
    text-align: center;
  }
}
@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}

/* ハンバーガーメニュー CSS*/
#overlay-button {
  right: 16px;
  top: 2px;
  padding: 26px 11px;
  z-index: 5;
  cursor: pointer;
  user-select: none;
  position: fixed;
}
#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: white;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: white;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #fff;
}
input[type=checkbox] {
  display: none; 
}
input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}
input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}
#overlay {
  height: 100vh;
  width: 100vw;
  background: var(--other-color-01);
  z-index: 4;
  visibility: hidden;
  position: fixed;
}
/* #overlay.active {
} */
#overlay ul {
  display: flex;
  justify-content: center;
  align-items: right;
  flex-direction: column;
  text-align: right;
  /* height: 100vh; */
  list-style-type: none;
  top: 250px;
}
#overlay ul li {
  padding: 1em;
}
#overlay ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
  font-family: 'makinas', sans-serif;
}
#overlay ul li a:hover {
  color: #000;
}