/*
Theme Name: ポートフォリオサイト用テーマ
*/

@charset "UTF-8";
/* CSS Document */
/*全体的なレイアウト*/
body {
  background-color: #FAFAFA;
  background-repeat: no-repeat;
  background-position: center;
}
.wrapper {
  margin: 0px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
p, th, td, dd {
  font-family: 'Yusei Magic', sans-serif;
  font-size: 1.2em;
  line-height: 1.7em;
}
.yuseimagic-font {
  font-family: 'Yusei Magic', sans-serif;
}
.imapact-font {
  font-family: 'Impact', sans-serif;
}
@media (max-width:750px){
	p, th, td, dd{
		font-size: 1em;
		line-height: 1.5em;
	}
}

/*ヘッダー*/
div.title-icon img {
  position: fixed;
  left: 20px;
  top: 15px;
  z-index: 70;
}
/*ハンバーガーメニュー(三本線実装)*/
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: rgba(0,0,0,0.8);
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: white;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
/*ハンバーガーメニュー(Xボタン実装)*/
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
/*ハンバーガーメニュー(チェックボックス非表示)*/
#menu-btn-check {
  display: none;
}
/*ハンバーガーメニュー(メニュー実装)*/
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  /*background-image: url("../img/menu_BG.png");*/
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.menu-content ul {
  padding: 70px 50px 0 100px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.menu-content ul li {
  list-style: none;
  padding: 100px 100px 0 0;
}
.menu-content ul li a {
  display: block;
  max-width: 300px;
  position: relative;
}
/*.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}*/

.menu-content ul li a img {
  max-width: 450px;
}
/*ハンバーガーメニュー(ボタン押下時にメニュー表示)*/
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #323232;
  transition: all 0.5s; /*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
  left: 0 !important; /*メニューを画面内へ*/
}
@media(max-width:1350px){
	.menu-content ul {
  		padding: 40px 50px 0 80px;
  		display: flex;
}
	.menu-content ul li a img{
		max-width: 400px;
	}
}
@media (max-width:960px ){
	.menu-content ul {
  		padding: 30px 0 0 50px;
  		display: flex;
		flex-direction: column;
  		flex-wrap: nowrap;
		margin: 0 auto;
}
	.menu-content ul li{
		padding: 20px 0 0 0;
		width: 300px;
	}
	.menu-content ul li a img{
		max-width: 300px;
	}
}
@media(max-width:460px){
	.menu-content ul li a img{
		width: 200px;
	}
	.menu-content ul li{
		padding: 10px 10px 0 0;
	}
	.menu-content ul{
		text-align: center;
	}
}

/*メインコンテンツ共有内容*/
div.container {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  text-align: center;
  padding-bottom: 80px;
}
@media(min-width:1024px){
.grayscale-on {
  filter: grayscale(100%);
  transition: all 0.3s ease-in;
}
.grayscale-on:hover {
  filter: grayscale(0%);
}
}
.headline {
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 40px;
  text-align: center;
}
.lm-button {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 200px;
}
@media (max-width:960px ) {
  .headline {
    padding-top: 30px;
    padding-bottom: 20px;
  }
	.headline img{
		width: 150px;
	}
	.lm-button{
		width: 150px;
		padding: 0px;
		position: absolute;
		right: 0px;
		bottom: 40px;
	}
	h2{
		font-size:2.0em;
	}
}
@media(max-width:400px){
	label.menu-btn{
		width: 40px;
		height: 40px;
	}
	.title-icon img{
		width:40px;
		height: 40px;
	}
}
/*メインコンテンツ(Work)*/
.work-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shadow-effect {
  box-shadow: 0 4px 19px 0 rgb(0 0 0 / 7%);
}
.work-item dt {
  width: 300px;
  height: 240px;
  text-align: center;
}
.movie-item {
  position: relative;
}
.playback-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.playback-icon i {
  color: rgba(0, 0, 0, 0.6);
  font-size: 100px;
}
@media (max-width: 960px) {
  .work-content {
    flex-direction: column;
  }
  .work-item {
    padding: 20px;
  }
}
/*メインコンテンツ(About)*/
@media(min-width: 760px) {
  .about-container {
    max-width: 760px;
    margin: auto;
  }
}
.about-object {
  display: flex;
}
@media(max-width: 759px) {
  .about-object {
    flex-direction: column;
  }
  .about-object img {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.about-object img {
  padding-right: 10px;
}
.about-text p {
  text-align: left;
  padding-top: 15px;
}
.keireki h4 {
  padding: 30px 0 20px 0;
  font-size: 20px;
}
.keireki table {
  margin-left: auto;
  margin-right: auto;
}
.keireki tbody {
  background-color: #D3D3D3;
}
.keireki th {
  padding: 15px;
	vertical-align: middle;
}
.keireki td {
  padding: 15px;
	vertical-align: middle;
}
@media (max-width: 760px){
	.keireki th{
	    width: 100px;
		padding: 10px;
	}
	.keireki td{
		padding: 10px;
	}
}

/*メインコンテンツ(Blog)*/
.blog-content {
  display: flex;
  justify-content: space-between;
}
.blog-item {
  width: 30%;
}
.blog-item img {
  max-width: 100%;
  text-align: center;
}
.blog-item p {
  text-align: left;
  font-size: 1.1em;
}
@media (max-width: 960px) {
  .blog-content {
    flex-direction: column;
	 align-items: center;
  }
  .blog-item{
	width: 80%;
    text-align: center;
	margin-bottom:20px;
  }
	.blog-item img{
		width: 250px;
	}
	.blog-item p{
		text-align: left;
	}
}

/*メインコンテンツ(Skill)*/
.skill-icon {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.text-group {
  max-width: 70%;
  margin-right: auto;
  margin-left: auto;
}
.skill-text {
  padding-top: 20px;
}
.skill-text p {
  text-align: left;
}

/*フッター*/
footer {
  background-color: black;
}
.copyright {
  text-align: center;
  color: #fff;
}

/*HTML→WordPress化に伴って追加*/
/*.mw_wp_form_input form{
	margin: 0 auto;
	text-align: center;
} */

.contact-group{
	text-align: center;
	margin-top: 50px;
}

.contact-item{
	text-align: left;
	display: inline-block;
}
.contact-item li{
	margin-bottom: 35px;
}
.contact-item li imput{
	line-height: 5.5em;
}
