@charset "utf-8";

html, body {
  margin: 0;
  padding: 0;
  font-family: "minion-pro", "minion-variable-concept", "Minion Pro", "Times New Roman", serif;
  background-color: #fff;
  color: #a0a0a0;;
  height: 100%;
}

.color-g{
  color: #e6dcad;
}
a{
}
h2{
    margin:0.5vh auto;
}
h3{
    margin:0.5vh auto;
}
.logo {
  font-size: 20rem;
}
.center{
 text-align: center;
}
.left{
 text-align: left;
}

.right{
	text-align: right;
}
.bold{
 font-weight: bold;
}
.t-none{
 text-decoration: none;
}
.margin0 p{
  margin:0;
}
.margin0{
  margin:0;
}

.shadow{
    text-shadow: rgba(0, 0, 0, 0.18) 0.77px 2.52px 4px;
}
.flex{
  display: flex;
  justify-content: center;
  align-items: center;
}
main{
  margin:5vw;
  margin-top:10vh;
}

/*--------------------hamberger-------------------------*/
.hidden {
  display: none;
}

.hamburger {
  position: fixed;
  top: 5vw;
  right: 5vw;
  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: 999;
}

.bar {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
  transition: all 5s ease;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.18);
}

.menu {
  position: fixed;
  left: 0;
  background-color: rgba(255,255,255,0.92);
  filter: blur(0.7px);
  height:100vh;
  width: 100vw;
  transition: opacity 1.5s ease, transform 1.5s ease;
  opacity: 0;
  z-index: 9999;
  padding: 20vh 5vw;
  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 {
  color: inherit;
  font-family: "minion-pro", "minion-variable-concept", "Minion Pro", serif;
  font-size: 2rem;
  text-decoration: none;
  position: relative;
  transition: opacity 5s ease;
  cursor: pointer;
  text-shadow: rgba(0, 0, 0, 0.18) 0.77px 2.52px 4px;
}

footer {
  padding: 1rem 5vw;
  text-align: center;
  font-size: 1rem;
  position: fixed;
  bottom: 0;
  width: 90vw;
}
/*--------------------header-------------------------*/

header{
  font-size: 1.8rem;
  position: fixed;
    background-color: #fff;
    width: 100vw;
    height: 6vh;
    padding: 2vh 0vw;
    top: 0%;
    z-index: 9999;
}


/*--------------------ul li-------------------------*/
.works-menu {
  padding: 5vh 5vw;
  pointer-events: none;
  text-shadow: rgba(0, 0, 0, 0.18) 0.77px 2.52px 4px;
  list-style: none;
}
.works-menu li{
  margin-top: 2vh;
}
.works-menu li a{
  font-size: 0.9rem;
  text-decoration: none;
}


/*--------------------box-------------------------*/
.box2 {
    padding: 0.5em 1em;
    margin: 1em 0;
    font-weight: bold;
    background: #FFF;
    border: solid 1px #c4c4c4;/*線*/
    border-radius: 3px;/*角の丸み*/
    text-shadow: rgba(0, 0, 0, 0.18) 0.77px 2.52px 4px;
}
.box2 a{
  color: inherit;
}
  .box2 p {
    margin: 0;
    padding: 0;
}
.img-para{
  height:10vh;
  background-image: url("https://tomohikosugino.work/wp-content/uploads/2023/05/comp4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


/*--------------------投稿まとめbox-------------------------*/
.post{
    padding: 0.5em 1em;
    margin: 1em 1.6%;
    font-weight: bold;
    background: #FFF;
    border: solid 1px #c4c4c4;/*線*/
    border-radius: 3px;/*角の丸み*/
    text-shadow: rgba(0, 0, 0, 0.18) 0.77px 2.52px 4px;
}

.post p {
    margin: 0;
    padding: 0;
}

.img-post{
  height:25vh;
  background-image: url("https://tomohikosugino.work/wp-content/uploads/2023/05/comp4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


/*--------------------投稿個別box-------------------------*/

.box-post{
    padding: 0.5em 1em;
    margin: 1em 1.6%;
    font-weight: bold;
    background: #FFF;
    border: solid 1px #c4c4c4;/*線*/
    border-radius: 3px;/*角の丸み*/
    text-shadow: rgba(0, 0, 0, 0.18) 0.77px 2.52px 4px;
    width:98%;
    height:50vh;
}

.box-post p {
    margin: 0;
    padding: 0;
}
.img-para{
  height:30vh;
  background-image: url("https://tomohikosugino.work/wp-content/uploads/2023/05/comp4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}





#bg-canvas{
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;           /* 背景レイヤー */
  pointer-events: none;
  }
main, .center-line{
  position: relative;
  z-index: 3;           /* canvasより前 */
}

@media (min-width: 768px) {
  body {
    font-size: 15px;
  }

  .img-para{
  height:15vh;
  }
  .box-post{
    height:40vh;
    width:45%;
  }
  .img-post{
    height:35vh;
	background-size: contain;
  }
  header{
  font-size: 2.5rem;
  }
  .hamburger {
    top: 3vw;
  }

  .post-flex{
    display: flex;
    flex-wrap: wrap;
  }
}

/* =========================
   2. PC
   ========================= */
@media (min-width: 1025px) {
  body {
    font-size: 16px;
  }
  .img-para{
  height:25vh;
  }
  .box-post{
    height:60vh;
    width:30%;
  }
  .img-post{
    height:40vh;
	background-size: contain;
  }
  .hamburger {
    top: 2vw;
  }
  .post-flex{
    display: flex;
    flex-wrap: wrap;
  }
}