@charset "utf-8";
/*ワークページ*/
.p_main_blue01 {
  background-color: #4480BC;
}

.p_main_orange01 {
  background-color: #D47228;
}

.p_main_orange02 {
  background-color: #D44328;
}

.p_main_gray01 {
  background-color: #A0A0A0;
}

.p_work {
  padding: 100px 0 150px;
  color: #fff;
}

.p_work .main_title {
  color: #fff;
}

.p_work .section_subtitle {
  color: #fff;
}

.p_work_name {
  font-size: 3rem;
  margin-bottom: 20px;
}

.p_work_hash {
  font-size: 1.4rem;
}

.p_work_inner {
  max-width: 800px;
  margin: 100px auto;
}

.p_work_flex {
  display: flex;
  margin-bottom: 40px;
}

.p_work_block {
  width: 30%;
  line-height: 1.5;
}

.p_work_info {
  width: 70%;
}

.p_work_txt {
  line-height: 1.5;
}

.p_work_url {
  margin-top: 20px;
}

.p_work_url a {
  color: fff;
  padding-bottom: 5px;
  background-image: linear-gradient(#ffffff,#ffffff);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: background-size .5s cubic-bezier(.22,1,.36,1);
}

.p_work_url a:hover {
  background-position: 100% 100%;
  background-size: 0 1px;
}

.p_work_img {
  display: flex;
  justify-content: space-between;
}

.p_work_imgPc {
  width: 45%;
}

.p_work_imgSp {
  width: 35%;
}

.p_work_imgPc img,
.p_work_imgSp img {
width: 100%;
}

.p_work_img_one img {
  width: 100%;
}

@media screen and (max-width:768px) {
  .p_work {
    padding: 80px 0 100px;
  }

  .p_work_name {
    font-size: 2.4rem;
  }

  .p_work_inner {
    margin: 80px auto;
  }

  .p_work_flex {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .p_work_block {
    width: 100%;
    margin-bottom: 20px;
  }

  .p_work_info {
    width: 100%;
  }
}