@charset "UTF-8";

/* Theme Name: seren */

/*= base =*/

body{
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: center;
  color : #1b1b1b;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

a{
  color : #1b1b1b;
  text-decoration:none;
}

.center{
  text-align: center;
}


/*= fonts =*/

.p12{
  font-size: 0.750rem;
}

.p16{
  font-size: 1rem;
}

.bold{
  font-weight : bold;
}


/*= space =*/

.mt2{
  margin-top : 2rem;
}

.mt5{
  margin-top : 5rem;
}

.mtb2{
  margin: 2rem 0;
}

/*= waku =*/

#container{
  width: 40%;
  margin-right : auto;
  margin-left : auto;
}

header{
  position: relative;
}

.top_img img{
  max-width : 100% ;
  height : auto ;
}

.member{
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-right : auto;
  margin-left : auto;
  bottom: -30px;
  position: absolute;
}

.member li{
  width: 19%;
}

.member img{
  max-width : 60% ;
  height : auto ;
  border-radius: 50%;
}


/*= blog =*/

#blog{
  border-top-width : 1px;
  border-top-style : solid;
  border-top-color : #999999;
}

.blog_entry{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog_entry .post{
  width: 33.3%;
  overflow: hidden;
  cursor: pointer;
  transition-duration: 0.3s;
}

.blog_entry img{
  max-width : 100% ;
  height : auto ;
}

.blog_entry .post:hover{
  opacity: 0.6;
  transition-duration: 0.3s;
}


/*= nav =*/

  .navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* 最前面に表示 */
  opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines{
    display: block;
  }

  .navbar-container{
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"]{
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines{
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line{
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items{
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
  }

  .navbar .menu-items li{
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(35deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-35deg);
  }


/*= top =*/

html {
    scroll-behavior: smooth;
}

.pagetop{
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop_arrow{
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}








/*= blog =*/
/*= breadcrumbs =*/

.breadcrumbs{
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.750rem;
  text-align: left;
}

.breadcrumbs a{
  display: inline-block;
  position: relative;
  transition: .3s;
}

.breadcrumbs a::after{
	position: absolute;
	bottom: -2px;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #7a7a7a;
	transition: .3s;
	transform: translateX(-50%);
}

.breadcrumbs a:hover::after{
	width: 100%;
}

/*= blog,index =*/

.box_blog{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.box_blog .post{
  width : 33.3%;
  margin-right : auto;
  margin-left : auto;
  text-align: left;
  margin-bottom : 1.5rem;
}

.box_blog .post img{
  max-width : 100% ;
  height : auto ;
}

.box_blog .post:hover{
  opacity: 0.6;
  transition-duration: 0.3s;
}




/*= pagenation =*/

.pagenation ul{
  display: flex;
  justify-content: center;
    gap: 0 8px;
}

.pagenation a{
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: .3s;
}

.current{
  color : #7a7a7a;
}

.pagenation a::after{
	position: absolute;
	bottom: -2px;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #7a7a7a;
	transition: .3s;
	transform: translateX(-50%);
}

.pagenation a:hover::after{
	width: 100%;
}




/*= single =*/

.single_entry{
  text-align: left;
  line-height: 1.8;
}

.single_entry p{
  margin-bottom : 1rem;
}


.single_eye img{
  max-width : 50% ;
  height : auto ;
}


.sub_area{
  text-align: left;
  font-size: 0.750rem;
  margin-bottom : 2rem;
}


.rand_entry ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.rand_entry .post{
  width : 33.3%;
  margin-right : auto;
  margin-left : auto;
  text-align: left;
  margin-bottom : 1.5rem;
}

.rand_entry .post img{
  max-width : 100% ;
  height : auto ;

}

.rand_entry .post:hover{
  opacity: 0.6;
  transition-duration: 0.3s;
}


.inner_profile{
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding-top : 20px;
  padding-bottom : 20px;border-width : 1px;border-style : solid;border-color : #999999;
}

.inner_profile .left{
  width: 30%;
}

.inner_profile .left img{
  max-width : 50% ;
  height : auto ;
}

.inner_profile .right{
  width: 68%;
  text-align: left;
}



.comment{
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.comment .left{
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment .left img{
  max-width : 100% ;
  height : auto ;
  border-radius: 50%;
}

.comment .right{
  width: 88%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding:5px;
  border-width : 1px;border-style : solid;border-color : #999999;
  box-sizing: border-box;
  text-align: left;
}





@media (max-width: 480px) {

/*= waku =*/

#container{
  width: 90%;
}

.member img{
  max-width : 70% ;
}


/*= blog =*/

.blog_entry .post{
  width: 48%;
}


/*= single =*/

.single_eye img{
  max-width : 50% ;
  height : auto ;
}

.rand_entry .post{
  width : 48%;
}






}


















