@charset "UTF-8";
/* CSS Document */

/*//////////////////////////////

common

//////////////////////////////*/

html {
	font-size: 62.5%;
}

body {
	height: 100%;
	color: #2F2C2A;
	font-family: “YakuHanJPs”, “游ゴシック”, “YuGothic”, “Hiragino Kaku Gothic ProN”, “Hiragino Kaku Gothic Pro”, “ＭＳ ゴシック”, sans-serif;
	background-color: #fff;
	text-rendering: optimizeLegibility;
    letter-spacing: .05em;
    line-height: 1.5em;
    font-size: 1.4rem;
	box-sizing: border-box;
}

* {
  -webkit-appearance: none;
}

.wrapper {
	margin: 0 auto;
	max-width: 1280px;
}
a {
	text-decoration: none;
	color: #2F2C2A;
}

img {
	width: 100%;
}

.b-line {
	background-color: rgba(1,179,205,30%);
}

.r-line {
	background-color: rgba(237,47,130,30%);
}

.y-line {
	background-color: rgba(254,241,2,30%);
}

/*.b-line {
	background-color: rgba(222,255,254,100%);
}

.r-line {
	background-color: rgba(255,222,240,100%);
}

.y-line {
	background-color: rgba(255,254,222,100%);
}*/

.pc {
    display: none;
}

.sp {
    display: block;
}

@media screen and (min-width: 768px) {
    .pc {
        display: block;
    }
	
    .sp {
        display: none;
    }
}


/*//////////////////////////////

index

//////////////////////////////*/

/*/////////////
header
/////////////*/

.header {
	position: relative;
}

.logo {
	margin-left: 15px;
	font-size: 1.8rem;
	line-height: 5rem;
	letter-spacing: 0.08em;
	font-family: 'PT Sans', sans-serif;
}

.b-1 {
	max-width: 718px;
	width: 95.7%;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -10;
}

.r-1 {
	max-width: 542px;
	width: 72.2%;
	height: 50px;
	position: absolute;
	top: 50px;
	left: 0;
	z-index: -10;
}

.y-1 {
	max-width: 366px;
	width: 48.8%;
	height: 50px;
	position: absolute;
	top: 100px;
	left: 0;
	z-index: -10;
}


/*/////////////
navi -sp-
/////////////*/

.nav-sp {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open .nav-sp {
  left: 0;
  opacity: 1;
}
.nav-sp .inner {
  padding: 25px;
}
.nav-sp .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-sp .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #2F2C2A;
}
.nav-sp .inner ul li a {
  display: block;
  color: #2F2C2A;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
.nav-sp .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  .nav-sp {
    left: -220px;
    width: 220px;
  }
}
/*/////////////
toggle_btn
/////////////*/

.toggle_btn {
  display: block;
  position: fixed;
  top: 60px;
  right: 40px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.open .toggle_btn span {
  background-color: #fff;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}

.open .toggle_btn span:nth-child(1) {
   -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(2) {
  left: 200%;
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-animation: active-btn-bar02 .8s forwards;
  animation: active-btn06-bar02 .8s forwards;
}
@-webkit-keyframes active-btn-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-btn-bar02 {
  100% {
    height: 0;
  }
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

/*/////////////
mask
/////////////*/

#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #2F2C2A;
  width: 100%;
  height: 100%;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

/*/////////////
navi -pc-
/////////////*/

.nav {
	width: 100%;
	padding: 20px 0;
	margin-bottom: 25px;
}

.nav-list {
	display: flex;
	justify-content: center;
}

.nav-item {
	position: relative;
}

.nav-item a {
	display: block;
	padding: 0 1rem 0.3rem;
	margin: 0 0.5rem;
}

 .nav-item a::before {
    content: "";
    position: absolute;
    left: 25%;
    bottom: -5px;
    width: 50%;
    height: 1px;
    background: #2F2C2A;
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.2s
}
	
.nav-item a:hover {
    opacity: 1;
}
	
.nav-item a:hover::before {
    transform: scale(1)	;
}


/*/////////////
main_visual
/////////////*/
.main-vis-box {
	position: relative;
	max-width: 1280px;
}

.main-vis {
	width: 100%;
	height: 0;
	padding-top: 66%;
	background:  url( "../images/main-vis-sp02.jpg") no-repeat center;
	background-size: cover;
}

.line-box {
	width: 150px;
	height: 100px;
	position: absolute;
	top: 95%;
	right: 0;
}

.catch-copy {
	width: 50%;
	background-color: rgba(255,255,255,0.5);
	position: absolute;
	top: 17%;
	left: 70%;
	transform: translateX(-50%);
	padding: 1.5% 1.5% 0;
}

.y-2 {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -10;
}

.r-2 {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 50px;
	z-index: -10;
}

.b-2 {
	width: 50px;
	height: 100px;
	position: absolute;
	top: 0;
	left: 100px;
	z-index: -10;
}

/*/////////////
sns_icon
/////////////*/

.t-icon a {
	width: 25px;
	position: absolute;
	top: 60px;
	right: 42%;
	opacity: 0.9;
	z-index: 100;
}

.i-icon a {
	width: 25px;
	position: absolute;
	top: 60px;
	right: 75%;
	opacity: 0.9;
	z-index: 100;
}

/*/////////////
about
/////////////*/

.about {
	margin-top: 100px;
}
.con-tit {
	padding-top: 100px;
	margin-bottom: 35px;
	font-size: 4.2rem;
	font-weight: bolder;
	line-height: normal;
	text-align: center;
	letter-spacing: 0.2rem;
	font-family: 'PT Sans', sans-serif;
}

.about-inner {
	padding: 0 15px;
}

.about-img {
	width: 100%;
}

.about-tit {
	margin-top: 30px;
	font-size: 2.4rem;
	font-family: 'PT Sans', sans-serif;
}

.about-txt {
	margin-top: 10px;
}

.btn {
	text-align: center;
}

.more-btn a {
	display: inline-block;
	position: relative;
	width: 44.8%;
	max-width: 344px;
	padding: 2.5rem 0;
	background: #fff;
	margin: 60px auto 0;
	font-size: 1.4rem;
	border: 2px solid #2F2C2A;
	transition: .2s;
}

.more-btn a::after {
	position: absolute;
 	top: 50%;
 	right: .2em;
  	content: '';
 	margin-top: -5px;
 	border: 7px solid transparent;
 	border-top-width: 5px;
 	border-bottom-width: 5px;
 	border-left-color: #666;
 	transition: all .3s;
}

.more-btn a:hover {
	background-color: #666;
	border-color: #fff;
	color: #FFF;
}

.more-btn a:hover::after {
	border-left-color: #fff;
}

.bk-btn a {
	display: inline-block;
	position: relative;
	width: 44.8%;
	max-width: 344px;
	padding: 2.5rem 0;
	background: #fff;
	margin: 60px auto 0;
	font-size: 1.4rem;
	border: 2px solid #2F2C2A;
	transition: .2s;
}

.bk-btn a::after {
  position: absolute;
  top: 50%;
  left: .2em;
  content: '';
  margin-top: -5px;
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-right-color: #666;
  transition: all .3s;
}

.bk-btn a:hover {
	background-color: #666;
	border-color: #fff;
	color: #FFF;
}

.bk-btn a:hover::after {
	border-right-color: #fff;
}

.about-skset {
	display: flex;
	justify-content: flex-start;
	margin-top: 10px;
}


.about-skset .skset-txt::after {
	content: "/";
	display: inline-block;
	width: 1em;
	margin: 0 5px 0 10px;
}

.about-skset .skset-txt:last-child::after {
	display: none;
}

.skset-box {
	width: 35px;
	height: 35px;
	background-color: #2F2C2A;
	line-height: 35px;
	margin: 0 5px;
	border-radius: 5px;
	text-align: center;
}

.skset-box p {
	color: #fff;
}

.skill dt {
	font-size: 1.6rem;
	line-height: 1.8em;
	font-weight: bold;
	display: inline-block;
	padding: 0 1em;
	margin-top: 20px;
}

.skill dd {
	padding: 15px 0;
	border-bottom: 1px dashed #2F2C2A;
}

.ps {
	width: 70%;
	background-color: rgba(1,179,205,50%);
}

.ai {
	width: 50%;
	background-color: rgba(254,241,2,60%);
}

.xd {
	width: 45%;
	background-color: rgba(237,47,130,50%);
}

.dw {
	width: 60%;
	background-color: rgba(1,179,205,50%);
}

.pp {
	width: 40%;
	background-color: rgba(254,241,2,60%);
}

.html {
	width: 70%;
	/*background-color: rgba(0,215,65,50%);*/
	background-color: rgba(237,47,130,50%);
}

.css {
	width: 70%;
	background-color: rgba(1,179,205,50%);
}

.jq {
	width: 30%;
	background-color: rgba(237,47,130,50%);
}

/*/////////////
works
/////////////*/

#index-page .works {
	margin-top: 100px;
	padding-bottom: 90px;
	background-color: #F4F4F4;
	position: relative;
}

#works-page .works {
	margin-top: 50px;
	padding-bottom: 90px;
	background-color: #f4f4f4;
	position: relative;
}


#index-page .line-box2 {
	width: 150px;
	height: 50px;
	position: relative;
	position: absolute;
	top: -50px;
	left: 15px;
	z-index: -10
}

#index-page .b-3 {
	width: 50px;
	height: 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -10;	
}
#index-page .r-3 {
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 50px;
	z-index: -10;
}

#index-page .y-3 {
	width: 50px;
	height: 30px;
	position: absolute;
	bottom: 0px;
	left: 100px;
	z-index: -10;
}

#index-page .line-box3 {
	width: 150px;
	height: 50px;
	position: absolute;
	bottom: -50px;
	right: 15px;
	z-index: -10
}

#index-page .b-4 {
	width: 50px;
	height: 30px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -10;	
}

#index-page .r-4 {
	width: 50px;
	height: 30px;
	position: absolute;
	top: 0;
	left: 50px;
	z-index: -10;
}

#index-page .y-4 {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0px;
	left: 100px;
	z-index: -10;
}

.works-inner {
	padding: 0 15px;
}
.works-box-item {
	width: 100%;
}

.works-img a {
	overflow: hidden;
	width: 100%;
	display: block;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
}

.works-img a img {
	transition:all 0.2s;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.works-img a img:hover {
	-webkit-filter: brightness(0.8);
    -moz-filter: brightness(0.8);
    -o-filter: brightness(0.8);
    -ms-filter: brightness(0.8);
    filter: brightness(0.8);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.works-card {
	margin-top: 15px;
	margin-bottom: 30px;
}

.works-card a {
	display: block;
	font-size: 1.4rem;
	position: relative;
}

.works-card-tit {
	padding-bottom: 5px;
	font-weight: normal;
	font-size: 1.6rem;
}

.cl {
	display: inline-block;
	max-width: 95px;
	padding: 5px 30px;
	background: #fff;
	border: 1px solid #2F2C2A;
	transition: .3s;
	text-align: center;
	position: absolute;
	bottom: 0;
	right: 0;
}

.cl:hover {
	background-color: #666;
	border-color: #fff;
	color: #FFF;
}

/*/////////////
contact
/////////////*/

.contact {
	position: relative;
}

.cont-txt {
	padding: 0 15px;
	text-align: center;
	line-height: 1.8em;
}


/*/////////////
form
/////////////*/

form {
	padding: 0 15px;
}

.form-tit {
	display: inline-block;
	margin: 30px 0 10px;
}
.wpcf7-text {
	width: 100%;
	height: 50px;
	background-color: #f4f4f4;
	border: none;	
}

.wpcf7-textarea {
	width: 100%;
	height: 200px !important;
	background-color: #f4f4f4;
	border: none;
}

.wpcf7-form-control {
	box-sizing: border-box;
	height: 50px;
	font-size: 1.4rem;
	padding: 10px 10px;
}
.en {
	text-align: center;
}

input[type="submit"]{
-webkit-appearance: none;
}

.button-primary {
	display: inline-block;
	width: 44.8%;
	max-width: 344px;
	padding: 2.5rem 0;
	background: #fff;
	margin: 60px auto 0;
	font-size: 1.4rem;
	border: 2px solid #2F2C2A;
	transition: .3s;	
}

.button-primary:hover {
	background-color: #666;
  	border-color: #fff;
  	color: #fff;
}


/*/////////////
footer
/////////////*/

footer {
	height: auto;
	text-align: center;
	background-color: #E6EAE3;
	margin-top: 100px;
	position: relative;
}

.footer-inner {
	display: inline-block;
	padding: 15px 0;
}

.sm {
	font-size: 0.8rem;
	letter-spacing: 0.3em;
}

.line-box4 {
	width: 150px;
	height: 100px;
	position: relative;
	position: absolute;
	bottom: 50px;
	right: 0;
	z-index: -10
}

.b-5 {
	width: 50px;
	height: 100px;
	position: absolute;
	bottom: 0;
	left: 100px;
	z-index: -10;	
}
.r-5 {
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 0px;
	z-index: -10;
}

.y-5 {
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 50px;
	z-index: -10;
}


#page-top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30px;
  bottom: 0;
  background: #333;
  opacity: 0.5;
  border-radius: 50%;
}
#page-top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page-top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


/*///////////////////////////
min-width 768px
///////////////////////////*/

@media screen and (min-width: 768px) {
	.b-1 {
		max-width: 45%;
	}
	.r-1 {
		max-width: 30%;
	}
	.y-1 {
		max-width: 20%;
	}
	
	.main-vis {
		width: 100%;
		height: 0;
		padding-top: 39%;
		background:  url( "../images/main-vis02.jpg") no-repeat center;
		background-size: cover;
	}
	
	.catch-copy {
		width: 30%;
		background-color: rgba(255,255,255,0.5);
		position: absolute;
		top: 30%;
		left: 70%;
		transform: translateX(-50%);
		padding: 1.5% 1.5% 0;
	}
	
	.about-inner-box {
		display: flex;
		flex-wrap: nowrap;
		margin: auto;
		justify-content: space-around;
		padding: 0;
	}
	.about-pr-box {
		max-width: 430px;
		padding: 60px;
		background-color: #f2f2f2;
		line-height: 1.8em;
		margin: auto;
	}
	.about-img {
		max-width: 500px;
		margin: auto;
		margin-right: 3%;
	}
	.about-tit {
		margin: 0 0 15px;
	}
	
	.works-inner {
		padding: 0;
		margin-top: 70px;
	}
	.about-tit, .about-txt {
		padding: 0;
	}
	
	.about-inner-sk-box {
		text-align: center;
		margin-top: 60px;
	}
	.about-skset {
		justify-content: center;
		padding-top: 10px;
	
	}

	.works-inner-box {
		display: flex;
		width: 100%;
	}
	.works-box-item {
		padding-left: 30px;
	}
	.works-box-item:last-child {
		padding-right: 30px;		
	}
	.works-img {
		width: 100%;
		box-sizing: border-box;
	}
	.cl {
		padding: 3px 10px;
	}
	
	form {
		max-width: 830px;
		margin: 0 auto ;
		padding: 0 15px;
	}
}

@media screen and (min-width: 992px) {
	.btn a {
		width: 16.5%;
	}
	.button-primary {
		width: 24%;
	}
	.cl {
		display: none;
	}
}


/*//////////////////////////////

about

//////////////////////////////*/

/*/////////////
about
/////////////*/

#about-page .ab-about {
	background-color: #f2f2f2;
}

.ab-about {
	margin-top: 50px;
	padding-bottom: 50px;
	position: relative;
}



#about-page .line-box3 {
	width: 150px;
	height: 50px;
	position: relative;
	position: absolute;
	bottom:  -50px;
	right: 15px;
	z-index: -10
}

#about-page .b-6 {
	width: 50px;
	height: 30px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -10;	
}
#about-page .r-6 {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 50px;
	z-index: -10;
}

#about-page .y-6 {
	width: 50px;
	height: 30px;
	position: absolute;
	top: 0px;
	left: 100px;
	z-index: -10;
}


/*/////////////
vision
/////////////*/

.vision {
	padding: 0 15px;
}
.vision-txt {
	text-align: center;
	padding: 0 15px;
	line-height: 1.8em;
}

.beca {
	text-align: center;
	padding: 45px 30px;
	margin: 35px auto 0;
	max-width: 830px;
	background-color: #f4f4f4;
	position: relative;
	line-height: 1.8em;
}

.beca::before {
	content: "";
	background: url("../images/Because.svg") no-repeat;
	width: 90%;
	height: 48px;
	display: inline-block;
	position: absolute;
	top: -15px;
	left: 15px;	
}

/*/////////////
career
/////////////*/

.career-inner {
	padding: 0 15px;
	position: relative;
}

.career-box {
	margin: 0 auto 20px;
	padding: 45px 30px;
	max-width: 830px;
	position: relative;
	line-height: 1.8em;
}

.career-box:last-child {
	margin-bottom: 0;
}

.vision span {
	background-color: rgba(254,241,2,30%);
}

.career span {
	background-color: rgba(254,241,2,30%);
}

.career-box.co {
	background-color: #E6EAE3;
}

.career-box::after {
	content: "";
	width: 40px;
	height: 70px;
	background: url("../images/arrow.svg")no-repeat;
	position: absolute;
	top: 95%;
	left: 50%;
	z-index: 2;
	transform: translateX(-50%);
}

.career-box:last-child::after {
	display: none;
}

.check::before {
	content: "";
	width: 50px;
	height: 30px;
	background: url("../images/check.svg")no-repeat;
	position: absolute;
	top: 10px;
	left: 15px;
}

.point::before {
	content: "";
	width: 50px;
	height: 40px;
	background: url("../images/point.svg")no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 10px;
	z-index: 2;
}

/*/////////////
like
/////////////*/

.like-box {
	width: 100%;
	margin: 20px auto;
	background-color: #f4f4f4;
	padding: 30px 15px;
	box-sizing: border-box;
	position: relative;
}

.like-inner {
	padding: 0 15px;
}

.like-tit {
	font-size: 2.4rem;
	font-family: 'PT Sans', sans-serif;
	text-align: center;
	margin-bottom: 30px;
}

.like-txt {
	line-height: 1.8em;
	text-align: center;
}

.reading::before {
	content: "";
	background: url("../images/reading.svg")no-repeat;
	background-position: center center;
	background-size: 100%;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	opacity: 0.1;
}

.camera::before {
	content: "";
	background: url("../images/camera.svg")no-repeat;
	background-position: center center;
	background-size: 100%;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	opacity: 0.1;
}

.anime::before {
	content: "";
	background: url("../images/anime.svg")no-repeat;
	background-position: center center;
	background-size: 100%;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	opacity: 0.1;
}



/*///////////////////////////
min-width 768px
///////////////////////////*/

@media screen and (min-width: 768px) {
	
	#about-page .about-pr-box {
		background-color: #fff;
	}
	.skill {
		width: 84.3%;
		max-width: 890px;
		margin: 0 auto;
	}
	.sk-tit {
		margin: 0 0 15px;
	}
	.vision-txt {
		max-width: 830px;
		padding: 0 30px;
		margin: 0 auto;
	}
	.like-inner {
		display: flex;
	}
	.like-box {
		margin-left: 15px;
		margin-top: 0;
		margin-bottom: 0;
	}
	.like-box:last-child {
		margin-right: 15px;
	}
	
	}


/*///////////////////////////
min-width 992px
///////////////////////////*/

@media screen and (min-width: 992px) {
	
	.like-box:last-child {
		margin-right: 0;
	}
	.like-box:first-child {
		margin-left: 0; 
	}
}


/*//////////////////////////////

works

//////////////////////////////*/


#works-page .line-box2 {
	width: 150px;
	height: 50px;
	position: absolute;
	top: -50px;
	right: 15px;
	z-index: -10
}

#works-page .b-3 {
	width: 50px;
	height: 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -10;	
}
#works-page .r-3 {
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 50px;
	z-index: -10;
}

#works-page .y-3 {
	width: 50px;
	height: 30px;
	position: absolute;
	bottom: 0px;
	left: 100px;
	z-index: -10;
}

#works-page .line-box3 {
	width: 150px;
	height: 50px;
	position: absolute;
	bottom: -50px;
	left: 15px;
	z-index: -10
}

#works-page .b-4 {
	width: 50px;
	height: 30px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -10;	
}
#works-page .r-4 {
	width: 50px;
	height: 30px;
	position: absolute;
	top: 0;
	left: 50px;
	z-index: -10;
}

#works-page .y-4 {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0px;
	left: 100px;
	z-index: -10;
}


/*//////////////////////////////

work01〜works09

//////////////////////////////*/

.works-item-tit {
	margin-bottom: 20px;
	font-size: 2.4rem;
	line-height: normal;
	text-align: center;
	letter-spacing: 0.2rem;
	padding-top: 100px;
	font-family: 'PT Sans', sans-serif;
}

.works-item-tag {
	font-size: 1.8rem;
	line-height: normal;
	text-align: center;
	padding-bottom: 20px;
}

.container {
	padding: 0 15px;
	position: relative;
	max-width: 1040px;
	margin:  0 auto;
}

.works-item-img {
	margin: 50px auto 0;
}

.site-link {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

.site-link a {
	display: inline-block;
	padding: 10px;
	border-bottom: 1px dotted #afafaf;
}

.works-list-box {
	padding-top: 50px;
	padding-bottom: 25px;
	margin: 0 auto;
	line-height: 1.8;
}

.works-list {
	display: flex;
}

.works-list dt {
	display: block;
	width: 31%;
	padding: 15px 0;
	color: #afafaf;
}

.works-list dd {
	display: block;
	width: 69%;
	padding: 15px 0;
	word-wrap: break-word;
}


.works-list span {
	background-color: rgba(254,241,2,30%);
}

.movie-wrap {
	position:relative;
	width: 100%;
	max-width: 560px;
	margin: 100px auto 0;
}

.movie-wrap::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 56.25%;
	
}

.movie-wrap iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

#works-list-page .line-box2 {
	width: 90px;
	height: 50px;
	position: absolute;
	top: -50px;
	right: 30px;
	z-index: 2;
}

#works-list-page .b-3 {
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;	
}
#works-list-page .r-3 {
	width: 30px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 30px;
	z-index: 2;
}

#works-list-page .y-3 {
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 0px;
	left: 60px;
	z-index: 2;
}

.fa-external-link-alt {
	margin-left: 0.3em;
	opacity: 0.3;
	color: #2F2C2A;
}

/*///////////////////////////
min-width 768px
///////////////////////////*/

@media screen and (min-width: 768px) {
	
	.works-list {
		max-width: 608px;
		margin: auto;
	}
	.works-list dd {
	width: 90%;	
}
}

/*///////////////////////////
min-width 992px
///////////////////////////*/

@media screen and (min-width: 992px) {
	
	.works-list {
		max-width: 860px;
		margin: auto;
	}
}


/*//////////////////////////////

contact

//////////////////////////////*/

.contact {
	margin-top: 50px;
}


















