@charset "utf-8";
/* CSS Document */
/*ヘッダー*/
.main_header {
	display: none;
  position: fixed;
  box-sizing: border-box;
}
.main_header_inner {
  display: flex;
  position: relative;
  width: 100vw;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.5);
}
.site_logo {
  width: 100px;
  padding: 8px;
}
.site_logo a img {
  width: 100%;
}
.header_nav {
  display: inline-block;
  position: absolute;
  right: 30px;
}
.header_lists {
  display: flex;
}
.list_item {
  padding: 13px 20px 12px;
}
.list_item a {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 16px;
}
.list_item :hover {
  font-size: 24px;
  opacity: 0.5;
  transition: all 0.3s;
}
.header_top a{
	color: #2D807C;
} 
.header_profile a {
  color: #649bff;
}
.header_works a {
  color: #b4c873;
}
.header_other a {
  color: #C79FD1;
}
.hamburger_menu {
  display: none;
}
/*ヘッダースマホ*/
@media(max-width:768px) {
  .main_header_inner {
    display: none;
  }
  .hamburger_menu {
    display: block;
  }
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: rgba(255, 255, 255, 1.00);
    color: #666666;
    transition: right 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
  }
  .menu.open {
    right: 0;
  }
  .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 20;
  }
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #666666;
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 20px;
  }
  /* バツ印 */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .menu ul {
    list-style-type: none;
    padding: 0;
    margin-top: 80px;
  }
  .menu li {
    padding: 30px 0 10px;
    border-bottom: 1px solid #444;
  }
  .menu li a {
    color: #666666;
    text-decoration: none;
    display: block;
  }
}
/*トップビュー*/
.section_main {
  width: 100%;
}
.main_view {
  margin: 0;
  padding: 0;
}
.main_view_pic {
  width: 100%;
  height: 100vh;
  background: url("../assets/mysite_bg_x.jpg")center center / cover no-repeat;
  background-size: cover;
}
.main_view_title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}
.main_view_title h1 {
  max-width: 500px;
}
.main_view_title h1 img {
  width: 100%;
}
.main_view_title p {
  max-width: 200px;
  margin: 0 auto;
  padding: 10px;
  color: #E0FFF1;
  font-size: 14px;
  letter-spacing: 3px;
}
.main_view_title p img {
  width: 100%;
}
.line {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 2px;
  height: 100px;
  background-color: #fff;
  justify-content: center;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*プロフィール*/
.section_profile {
  padding-top: 100px;
  margin: 0;
}
.profile_inner {
  padding: 0 100px;
  margin: 0 auto;
}
.profile_inner h2 {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 10px;
  color: #ADCCCA;
  padding: 20px;
}
.profile_flex {
  display: flex;
}
.self_image {
  width: 300px;
  padding: 0 50px;

}
.self_image img {
	  border-radius: 500px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0px 5px 15px 0px rgba(45, 128, 124, 0.35);
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.self_introduct {
  padding: 0 20px;
}
.self_introduct dt {
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #2D807C;
	font-family: "Zen Maru Gothic", sans-serif;
}
.self_introduct dt span{
	font-size: 12px;
	line-height: 44px;
}
.self_introduct dd {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #2D807C;
  margin: 20px 0;
	text-align: justify;
}
/*プロフィールスマホ*/
@media(max-width:768px) {
  .section_profile {
    padding-top: 50px;
  }
  .profile_inner {
    padding: 0;
    margin: 0;
  }
  .profile_inner h2 {
    font-weight: 600;
    letter-spacing: 5px;
    padding: 20px;
  }
  .profile_flex {
    display: block;
  }
  .self_image {
    width: 150px;
    margin: 0 auto;
    padding: 0;
  }
  .self_image img {
    object-fit: cover;
    width: 100%;
    box-shadow: 0px 5px 15px 0px rgba(45, 128, 124, 0.35);
  }
  .self_introduct {
    padding: 20px 30px;
    max-width: 400px;
  }
  .self_introduct dt {
    font-size: 16px;
    letter-spacing: 2px;
    padding: 10px 0;
  }
  .self_introduct dd {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #2D807C;
    margin: 0;
  }
}
/*作品*/
.section_works {
  margin: 0;
  padding-top: 100px;
}
.works_inner {
  margin: 0 auto;
  padding: 0;
  background-color: #ADCCCA;
}
.works_inner h2 {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 10px;
  color: #FFFFFF;
  padding: 20px 130px;
}
.works_view {
  padding: 20px;
}
.card_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.card_items li {
  background-color: #FFFFFF;
  width: 300px;
  margin: 15px;
  padding: 10px;
  display: block;
  border-radius: 5px;
}
.card_items li a {
  text-decoration: none;
  color: #2d807c;
	 corsor: pointer; 
}
.carditem_imagewrap{
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.carditem_imagewrap img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  object-fit: cover;
}
.carditem_imagewrap img:hover {
  opacity: 0.5;
  transition: all 0.5s;
}
.carditem_body {
  padding-top: 10px;
}
.carditem_body time{
	font-size: 12px;
	color: #666666;
}
.carditem_body h5{
	padding: 5px 0;
}
.carditem_body h5 a{
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.carditem_body h5 a:hover {
  opacity: 0.5;
  transition: all 0.5s;
}
.carditem_body p {
  font-size: 12px;
}
@media(max-width:768px) {
  .section_works {
    margin: 0;
    padding-top: 50px;
  }
  .works_inner {
    margin: 0;
    padding: 0;
  }
  .works_inner h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 5px;
    padding: 20px;
  }
  .works_view {
    padding: 0;
  }
  .card_items {
    padding: 20px;
    margin: 20px 0;
  }
  .card_items li {
    background-color: #FFFFFF;
    width: 300px;
    margin: 20px;
    padding: 10px;
    border-radius: 5px;
  }
  .carditem_link:hover .carditem_imagewrap::before {
    opacity: 1;
  }
  .carditem_link:hover .carditem_imagewrap::after {
    display: none;
  }
  .carditem_imagewrap {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
  }
  .carditem_imagewrap::before, .carditem_imagewrap::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    background-color: rgba(10, 10, 10, 0.3);
    font-size: 20px;
    transition: opacity .5s;
    opacity: 0;
  }
  .carditem_imagewrap img {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    object-fit: cover;
  }
  .carditem_body {
    padding-top: 10px;
  }
  .carditem_body h5 a{
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
  }
  .carditem_body h5 a:hover {
    opacity: 0.5;
    transition: all 0.5s;
  }
  .carditem_body p {
    font-size: 12px;
  }
}
/*その他*/
.section_other {
  text-align: center;
  padding: 100px 0;
}
.other_inner {
  margin: 0 auto;
  padding: 0 100px;
}
.other_inner h2 {
  margin: 0 auto;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 10px;
  color: #ADCCCA;
  padding: 20px;
}
.other_lists {
  display: flex;
  padding: 20px;
  justify-content: center;
}
.other_lists li a {
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 5px;
  color: #2D807C;
  padding: 0 30px;
}
.other_lists li a:hover {
  opacity: 0.5;
  transition: all 0.5s;
}
@media(max-width:768px) {
  .section_other {
    text-align: center;
    padding: 100px 0 50px;
  }
  .other_inner {
    margin: 0;
    padding: 0;
  }
  .other_inner h2 {
    margin: 0;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 10px;
    color: #ADCCCA;
    padding: 10px;
  }
  .other_lists {
    display: block;
    padding: 10px;
  }
  .other_lists li {
    padding: 30px 0;
  }
  .other_lists li a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #2D807C;
  }
  .other_lists li a:hover {
    opacity: 0.5;
    transition: all 0.5s;
  }
}
/*フッター*/
.footer {
  height: 60px;
  background-color: #666666;
}
/*プロフィールページ*/
.profile_top {
  margin: 0 auto;
  padding-top: 100px;
}
.pagetitle_profile {
  text-align: center;
  padding: 100px 0;
  margin: 0 auto;
}
.pagetitle_profile img {
  width: 20%;
}
.profile_selfimg {
  width: 200px;
  padding: 50px;
  margin: 0 auto;
}
.profile_selfimg img {
  object-fit: cover;
  width: 100%;
  box-shadow: 0px 5px 15px 0px rgba(173, 204, 255, 0.5);
	 border-radius: 500px;
}
.profile_top_inner {
  background-color: rgba(173, 204, 255, 0.2);
  color: #649bff;
  padding: 50px 200px;
  margin: 0 auto;
}
.profile_top_inner dt {
  font-size: 20px;
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
  padding-bottom: 20px;
}
.profile_top_inner dd {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 20px;
}
.personal, .hobby {
  margin: 0 auto;
  padding: 50px 200px;
}
.personal h1, .hobby h1 {
  padding: 20px;
  max-width: 150px;
  margin: 0 auto;
}
.personal h1 img, .hobby h1 img {
  width: 100%;
}
.personal_inner {
  margin-bottom: 50px;
}
.personal_inner h3 {
  padding: 20px;
  max-width: 110px;
}
.personal_inner h3 img {
  width: 100%;
  padding: 20px 0;
}
.profile_description {
  padding: 10px 20px;
}
.profile_description h5 {
  font-size: 16px;
  font-weight: 600;
  color: #649bff;
  position: relative;
  padding-left: 20px;
	font-family: "Zen Maru Gothic", sans-serif;
}
.profile_description h5:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 16px;
  margin-right: 10px;
  background-color: #649bff;
  border-radius: 100px;
}
.profile_description p {
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  padding: 10px 20px;
}
@media(max-width:768px) {
  .profile_top {
    padding-top: 80px;
  }
  .pagetitle_profile {
    padding: 40px 0;
  }
  .pagetitle_profile img {
    width: 40%;
  }
  .profile_top_inner {
    padding: 40px 30px;
  }
  .personal, .hobby {
    padding: 20px 10px;
  }
  .personal h1, .hobby h1 {
    padding-top: 40px;
    max-width: 130px;
  }
  .personal h1 img, .hobby h1 img {
    width: 100%;
  }
  .personal_inner h3 {
    padding: 10px;
    max-width: 90px;
  }
  .personal_inner h3 img {
    width: 100%;
    padding: 10px 0;
  }
  .profile_description {
    padding: 10px 20px;
  }
  .profile_description h5 {
    font-size: 16px;
    font-weight: 600;
    color: #649bff;
    position: relative;
    padding-left: 20px;
  }
  .profile_description h5:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 16px;
    margin-right: 10px;
    background-color: #649bff;
    border-radius: 100px;
  }
  .profile_description p {
    font-size: 12px;
    line-height: 20px;
    color: #666666;
    padding: 10px 20px;
  }
}
/*その他のページ*/
.pagetitle_other {
  text-align: center;
  padding: 100px 0;
  margin: 0 auto;
}
.pagetitle_other img {
  width: 13%;
}
.section_career, .section_skill, .section_policy {
  margin: 0;
  padding: 50px 200px;
}
.section_career h2, .section_skill h2, .section_policy h2 {
  font-size: 55px;
  font-weight: 600;
  color: #C79FD1;
  letter-spacing: 5px;
}
.career_inner {
  padding: 50px 0;
  color: #A768B6;
}
.career_inner h5 {
  font-size: 16px;
  font-weight: 600;
  padding: 30px 0 10px;
  border-bottom: solid 1px #C79FD1;
	font-family: "Zen Maru Gothic", sans-serif;
}
.career_year {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 0 10px;
}
.career_month {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0 0;
}
.career_description {
  font-size: 12px;
  line-height: 22px;
  padding: 5px 0 20px;
  color: #666666;
}
.career_description a {
  text-decoration: none;
  color: #C79FD1;
}
.section_skill {
  padding-top: 100px;
}
.skill_inner {
  text-align: left;
  padding: 30px 0;
}
.skill_title {
  position: relative;
  margin: 10px 0;
  width: 100%;
  background-color: #C79FD1;
  padding: 10px 20px;
  border-radius: 5px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.skill_title:hover {
  background-color: #A768B6;
  transform: translate(0, 5px);
}
.skill_title::after {
  content: '+';
  text-align: right;
  position: absolute;
  right: 10px;
}
.skill_title.selected::after {
  content: '-';
}
.skill_description {
  padding: 0px 10px 20px;
  font-size: 12px;
  color: #666666;
  line-height: 22px;
  display: none;
}
.policy_inner {
  padding: 40px 0 0;
}
.policy_inner h6 {
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #C79FD1;
  padding: 10px 0;
}
.policy_title {
  font-size: 14px;
  font-weight: 600;
  color: #A768B6;
  padding: 22px 15px 0;
  position: relative;
}
.policy_title:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 16px;
  margin: 20px 0;
  background-color: #A768B6;
  border-radius: 100px;
}
.policy_description {
  color: #666666;
  font-size: 12px;
  line-height: 22px;
  padding: 5px 10px 0;
}
@media(max-width:768px) {
  .pagetop_other {
    padding-top: 50px;
  }
  .pagetitle_other {
    padding: 50px 0;
  }
  .pagetitle_other img {
    width: 35%;
  }
  .section_career, .section_skill, .section_policy {
    margin: 0;
    padding: 25px 10px;
  }
  .career_inner {
    padding: 20px 0;
  }
  .career_inner h5 {
    padding: 35px 5px 5px;
  }
  .career_month {
    padding: 20px 10px 0;
  }
  .career_description {
    padding: 5px 10px;
  }
  .skill_inner {
    padding: 10px 0;
  }
  .skill_title {
    margin: 10px auto;
    width: 90%;
    padding: 20px;
  }
  .skill_title:hover {
    background-color: #A768B6;
    transform: translate(0, 5px);
  }
  .skill_title::after {
    content: '+';
    text-align: right;
    position: absolute;
    right: 10px;
  }
  .skill_title.selected::after {
    content: '-';
  }
  .skill_description {
    padding: 0px 10px 20px;
    font-size: 12px;
    color: #666666;
    line-height: 22px;
    display: none;
  }
  .policy_inner {
    padding: 40px 0 0;
  }
  .policy_inner h6 {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #C79FD1;
    padding: 10px 0;
  }
  .policy_title {
    font-size: 14px;
    font-weight: 600;
    color: #A768B6;
    padding: 22px 15px 0;
    position: relative;
  }
  .policy_title:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 16px;
    margin: 20px 0;
    background-color: #A768B6;
    border-radius: 100px;
  }
  .policy_description {
    color: #666666;
    font-size: 12px;
    line-height: 22px;
    padding: 10px;
  }
}
/*作品ページ*/
.section_pagetop_work {
  text-align: center;
  padding: 200px 0 50px;
  margin: 0 auto;
}
.pagetitle_work img {
  width: 13%;
}
.section_items {
  padding: 0 100px;
  margin: 0;
}
.galleryitem_allview {
  padding-bottom: 200px;
}
.gallery_lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery_listitem {
  display: block;
}
.galleryitem_imagewrap {
  background-color: #FFFFFF;
  width: 200px;
  height: 200px;
  margin: 15px;
  border-radius: 5px;
  box-shadow: 0px 5px 15px 0px rgba(180, 200, 115, 0.50);
}
.galleryitem_imagewrap:hover{
	transform: translateY(5%);
	transition: 0.5s;
}
.galleryitem_imagewrap img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.galleryitem_body{
	margin: 20px 15px;
	width: 200px;
}
.galleryitem_time{
	font-size: 12px;
	color: #999999;
}
.gallery_title{
	padding: 5px 0;
}
.gallery_title a{
	font-size: 16px;
	font-weight: 600;
	color: #666666;
		line-height: 22px;
	text-decoration: none;
}
@media(max-width:768px) {
  .header {
    display: none;
  }
  .section_pagetop_work {
    padding: 80px 0 20px;
  }
  .pagetitle_work img {
    width: 40%;
  }
  .section_items {
    padding: 20px;
  }
  .galleryitem_allview {
    padding-bottom: 50px;
  }
  .gallery_listitem {
    margin: 15px;
    padding: 10px;
  }
}
/*作品個別ページ*/
.section_work_article{
	margin: 0 auto;
	padding: 100px 0;
}
.work_article_inner{
	padding: 0 200px;
	color: #666666;
}
.works-thumbnail{
	margin: 0 auto;
}
.works-thumbnail img{
	width: 100%;
}
.works_content{
	padding: 20px;
	margin: 0 auto;
}
.works_time{
	font-size: 14px;
	letter-spacing: 2px;
	padding: 20px 0;
}
.works_title{
	font-size: 24px;
	line-height: 40px;
	font-weight: 600;
	letter-spacing: 2px;
	padding: 20px 0;
}
.works_category{
	padding-bottom: 20px;
}
.post-categories li a{
	font-size: 12px;
	color: #999999;
	text-decoration: none;
	background-color: #FFFFFF;
	padding: 5px 10px;
	border-radius: 5px;
	border: solid 1px #b4c873;
}
.works_content p{
	font-size: 14px;
	line-height: 24px;
}
.wp-block-heading{
	font-weight: 600;
}
.section_pagechange{
	padding: 0 0 100px;
}
.rl_button{
	display: flex;
	padding: 20px;
	margin: 0 auto;
	position: relative;
}
.next_button,.back_button{
	text-align: center;
}
.next_button a,.back_button a{
	background-color: #fff;
	border: solid 1px #b4c873;
	border-radius: 5px;
	width: 100px;
    height: 15px;
    padding: 10px 20px;
	text-decoration: none;
	font-size: 14px;
	color: #b4c873;
	font-weight: 600;
}
.next_button{
	position: absolute;
	right: 30%;
	bottom: 0;
}
.back_button{
	position: absolute;
	left: 30%;
	bottom: 0;
}
.back_gallery a{
	background-color: #b4c873;
	box-shadow: 0px 5px 30px 0px rgba(180,200,115,0.25);
	font-size: 14px;
}
.back_gallery a:hover{
	background-color: #89A03B;
	 transition : all 0.5s;
}
@media(max-width:768px){
.section_work_article{
	padding: 50px 0;
}
.work_article_inner{
	padding: 20px 5px;
}
.works-thumbnail img{
	width: 100%;
}
.works_content{
	padding: 20px;
	margin: 0 auto;
	width: 300px;
}
.works_time{
	font-size: 14px;
	letter-spacing: 2px;
	padding: 20px 0;
}
.works_title{
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 2px;
	padding: 20px 0;
}
	.next_button{
	position: absolute;
	right: 15%;
	bottom: 20%;
}
.back_button{
	position: absolute;
	left: 15%;
	bottom: 20%;
}
.rl_button{
	margin: 20px auto;
}
.back_gallery a{
	margin: 20px 0;
}
}