@charset 'UTF-8';/*  */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

/* リセットと共通設定 */
* {
  box-sizing: border-box;
}

canvas{
	height:100vh;
	width:100vw;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  background: #fff;
  transition: background 3s ease;
  font-family: sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  filter: blur(1px);
}
h1{
  font-size:1.5em;
}

body.dark {
  background: #111;
}
a{
  color: inherit;
  text-decoration: none;
}
footer{
  color:#fff;
  padding: 1rem 5vw;
  text-align: left;
  bottom:0;
  font-size: 1.2rem;
  text-shadow: rgba(0, 0, 0, 0.4) 0.77px 2.52px 4px;
}

article{
  padding:0vh 5vw;
  text-shadow: rgb(0 0 0 / 40%) 8px 8px 4px;
  color: #626262;
}
canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}


.btn {
  width: 33px;
  height: 33px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: all 5s ease;
  touch-action: manipulation;
  z-index: 10;
}

body:not(.dark) .btn {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

body.dark .btn {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(120, 120, 120, 0.3);
  transition: border-color 5s ease;
}

body.dark .btn::before {
  border-color: rgba(200, 200, 200, 0.3);
}

.btn:active {
  box-shadow: none;
  transform: scale(0.95);
}

.btn:active::before {
  border-color: inherit;
  height:85vh;
}

.container {
  width: 100%;
  height:85vh;
}

.main {
  padding: 0 5vw;
  flex: 1;
  position: relative;
  overflow: hidden;
  font-size: 3rem;
  font-weight: bold;
  user-select: none;
  transition: opacity 1.5s ease;
  filter: blur(1px);
}
.main-flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-div {
  font-size: 3rem;
  color: #fff;
}

.shadow{
  opacity: 0;
  transition: opacity 5s ease;
  transition: color 3s ease;
}
.show-shadow {
  opacity: 1;
}

header {
  padding: 0 5vw;
  height: 8vh;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  user-select: none;
  filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: filter 5s ease;
  z-index: 99;
}

.hamburger.focused {
  filter: blur(0px);
}

.bar {
  height: 4px;
  border-radius: 2px;
  transition: all 5s ease;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
.dark-font{
  color: #000;
  text-shadow: rgba(255, 255, 255, 0.4) 0.77px 2.52px 4px;
  background-color: #000;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}
.menu {
  position: fixed;
  left: 0;
  top: 8vh;
  background-color: #fff;
  filter: blur(1px);
  width: 100vw;
  height: 100vh;
  transition: opacity 1.5s ease, transform 1.5s ease;
  opacity: 0;
  z-index: 98;
  padding: 20vh 5vw;
  text-align: left;
  pointer-events: none;
}

.menu.open {
  opacity: 1;
  pointer-events: auto;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  margin-bottom: 1.5rem;
}

.menu ul li a {
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: opacity 5s ease;
  cursor: pointer;
  text-shadow: rgba(0, 0, 0, 0.4) 0.77px 2.52px 4px;
}

.menu-open{
  transition: opacity 1.5s ease;
  opacity: 0;
}

.works-flex{
  display: flex;
  align-items: center;
}
 
.works-menu{
  padding: 10vh 5vw;
  list-style: none;
}

.works-menu li {
  margin-bottom: 1.5rem;
}

.works-menu li a {
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-shadow: rgba(0, 0, 0, 0.4) 0.77px 2.52px 4px;
}

.para-aural a{
  font-size: 1.25rem;
}

.menu-open{
  transition: opacity 1.5s ease;
  opacity: 0;
}

/* 色反転時 */
  .color-inverted {
    color: #000 !important;
    text-shadow: rgba(255, 255, 255, 0.4) 0.77px 2.52px 4px !important;
  }
  .menu-inverted{
    background-color: #111 !important;
  }

  /* barの色反転 */
  .color-inverted-bar {
    background-color: rgba(0, 0, 0, 0.4) 12.51px 3.13px 4px !important;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
  }



@media (max-width: 767px) {
  .container {
    flex-direction: column-reverse;
  }

  .right {
    color: #fff;
    font-size: 2.5rem;
    filter: blur(1px);
  }

  .menu-open2 {
    color: black;
    font-size: 0;
  }

  .btn {
    width: 33px;
    height: 33px;
  }
  .works-flex{
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .works-menu {
    padding: 0vh 5vw;
    margin:0;
  }
  .para-aural{
    padding:0vh 5vw;
    font-weight: 400;
  }
  .para-aural div{
    font-size: 1.45rem;
  }
  .para-aural a{
    font-size: 1rem;
    display: inline-block;
    line-height: 1.25;
  }
  footer{
    font-size: 0.9rem;
  }


}

/*------Wardpress-----------*/
.blog-content {
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* -----Wardpress画像------- */
.img.wp-image {
  width: 30vw;
  height: auto;
  max-width: 30vw;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wp-block-image img {
  width: 90vw;
  height: auto;
  max-width: 90vw;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  max-width: 100%;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  max-width: 100%;
}

.size-medium,
.size-large,
.size-full {
  max-width: 100%;
  height: auto;
  width: 100%;
}


@media (min-width: 768px) {
  .img.wp-image,
  .wp-block-image img {
  width:30vw;
  max-width: 30vw;
}
}

#content {
  max-width: 100vw;
  font-size: 1.25rem;
  margin: 0 auto;
  padding: 0 5vw;
}
main{
    padding: 0 5vw;
    font-size: 1.25rem;
    text-shadow: rgb(0 0 0 / 40%) 8px 8px 4px;
    color: #626262;
}