@charset "utf-8";
/* CSS Document */
body { /*アニメーション*/
	animation: fadein 1s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
.works{
  max-width: 700px;
  margin: 0 auto;  
}
.works .overview{
  padding: 0 5%;
  /*border-bottom: 2px solid #000;*/
}
.works .overview .main-img{
  width: 100%;
  height: 74.666667vw;
  max-height: 400px;
  object-fit: cover;
  border: 2px solid #000;
  border-radius: 4px;
  background-color: #fff;
  /*display: flex;
  align-items: center;*/
  margin-bottom: 30px;
/*JQでふわっと動かす用*/
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s,visibility 1s, transform 1s;
}
.works .overview .main-img.active{
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
/*.works .overview .img-area img{
  width: 78.4vw;
  height: auto;
  margin: 0 auto;
}*/
.works .overview .text-area{
  text-align: left;
}
.works .overview h2{
  /*font-size: 2.4rem;*/
  font-size: 2.0rem;
}
.works .overview .subtext{
  font-size: 1.2rem;
  color: #757575;
  margin-bottom: 15px;
}
.works .overview .lead{
  margin-bottom: 30px;
}
.works .overview .title{
  /*font-size: 2.0rem;*/
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.works .overview .text-area .text-bottom-space{
  margin-bottom: 30px;
}
.works .overview .script-slider{
  /*margin-bottom: 30px;*/
}
/*.works .overview .script-slider .slide-img{
  width: 100%;
  height: 74.666667vw;
  max-height: 400px;
  object-fit: cover;
}*/

/*ページネーション*/
.arrow_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 20px 0 30px;
    position: relative;
}

.prev-arrow,
.next-arrow {
    display: block;
    width: 50px;
    height: 50px;
    background: #ffeb3b;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
}

.prev-arrow {
    transform: rotate(180deg);
    margin-right: 20px;
}

.prev-arrow::before,
.next-arrow::before{
    position:absolute;
    content: "";
    width:5px;
    height:5px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}


/*デザイン画像 ※バナー作品は関係なし*/
.works .overview .design_pc{
  margin-bottom: 70px;
}
.works .overview .design_pc h3{
  font-size: 2.0rem;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.works .overview .design_pc h3::before{
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #ffd650;
  position: absolute;
  top: 10px;
  left: 0;
}
.works .overview .design_pc .slider img{
  max-width: 100%;
  height: auto;
  /*filter:drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.3));*/
}

.works .overview .btn{
  width: 200px;
  margin: 40px 0 110px;
  background-color: #ffeb3b;
  border-radius: 500px;
  overflow: hidden;
}
.works .overview .btn a{
  display: block;
  background-color: #ffeb3b;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 50px;
  border-radius: 500px;
  padding-left: 40px;
  color: #000;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: .3s;
}
.works .overview .btn span{
  vertical-align: middle;
  margin: 0 0 3px 20px;
}
.works .overview .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 500px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #252525;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.works .overview .btn a:hover {
  color: #ffeb3b;
  opacity: 1.0;
}
.works .overview .btn a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
/*.works .overview .text-area .underline{
  width: 100%;
  height: 2px;
  background-color: #000;
  margin: 25px 0 70px;
}*/
@media (min-width: 900px){
  .works .overview h2{
    font-size: 2.8rem;
  }
  .works .overview .subtext{
    font-size: 1.4rem;
  }
  .works .overview .lead,
  .works .overview .text{
    font-size: 1.5rem;
  }
  .works .overview .title{
    font-size: 2.0rem;
  }
}




/*制作過程をCHECK！※使ってない*/
.process{
  text-align: left;
/*JQでふわっと動かす用*/
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s,visibility 1s, transform 1s;
}
.process.active{
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.process h2{
  background-color: #252525;
  border-radius: 4px;
  font-size: 2.2rem;
  color: #ffeb3b;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  margin-bottom: 20px;
}
/*ヒアリング情報*/
.process .section01{
  padding: 0 5%;
  margin-bottom: 70px;
}
.process .section01 .lead{
  margin-bottom: 25px;
}
.process .section01 h3{
  font-size: 2.0rem;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.process .section01 h3::before{
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #ffd650;
  position: absolute;
  top: 10px;
  left: 0;
}
.process .section01 .list{
  width: 100%;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 4px;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 1);
  padding: 20px;
  margin: 0 0 20px;
}
@media (min-width: 900px){
  .process p{
    font-size: 1.5rem;
  }
}
/*サイトマップ*/
.process .section02{
  padding: 0 5%;
  margin-bottom: 70px;
}
.process .section02 .lead{
  margin-bottom: 25px;
}
.process .section02 h3{
  font-size: 2.0rem;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.process .section02 h3::before{
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #ffd650;
  position: absolute;
  top: 10px;
  left: 0;
}
.process .section02 .img01{
  width: 100%;
  max-width: 480px;
  height: 74.666667vw;
  max-height: 400px;
  object-fit: cover;
  border: 2px solid #000;
  border-radius: 4px;
  margin: 10px 0 30px;
}
/*@media (min-width: 900px){
  .process .section01{
    margin-bottom: 50px;
  }
}*/
/*デザイン*/
.process .section03{
  padding: 0 5%;
  margin-bottom: 70px;
}
.process .section03 h3{
  font-size: 2.0rem;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.process .section03 h3::before{
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #ffd650;
  position: absolute;
  top: 10px;
  left: 0;
}
.process .section03 .img02{
  width: 100%;
  max-width: 480px;
  height: 74.666667vw;
  max-height: 400px;
  object-fit: cover;
  object-position: top;
  border: 2px solid #000;
  border-radius: 4px;
  margin: 10px 0 0;
}
.process .section03 .caption{
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.process .section03 .img03{
  width: 100%;
  max-width: 480px;
  height: 74.666667vw;
  max-height: 400px;
  object-fit: cover;
  border: 2px solid #000;
  border-radius: 4px;
  margin: 10px 0;
}

/*工夫した点*/
.process .section04{
  padding: 0 5%;
  margin-bottom: 70px;
}
.process .section04 h3{
  font-size: 2.0rem;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.process .section04 h3::before{
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #ffd650;
  position: absolute;
  top: 10px;
  left: 0;
}
.process .section04 .img04{
  width: 100%;
  max-width: 480px;
  height: 74.666667vw;
  max-height: 400px;
  object-fit: cover;
  object-position: top -243px left 0;
  border: 2px solid #000;
  border-radius: 4px;
  margin: 10px 0 50px;
}
.process .section04 .img05{
  width: 100%;
  max-width: 480px;
  height: 74.666667vw;
  max-height: 400px;
  object-fit: cover;
  border: 2px solid #000;
  border-radius: 4px;
  margin: 10px 0;
}

/*苦労した点*/
.process .section05{
  padding: 0 5%;
  margin-bottom: 70px;
}
.process .section05 h3{
  font-size: 2.0rem;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.process .section05 h3::before{
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #ffd650;
  position: absolute;
  top: 10px;
  left: 0;
}
.process .section05 .img06{
  width: 100%;
  max-width: 480px;
  height: 74.666667vw;
  max-height: 400px;
  object-fit: cover;
  border: 2px solid #000;
  border-radius: 4px;
  margin: 10px 0;
}
.process .section05 p span{
  font-weight: 700;
}












