/* headline タイトル
---------------------------------------------------------*/
.headline01 {
  font-size: 5rem;
  color: var(--red);
  font-family: var(--font-en);
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--red);
}
.headline02 {
  font-size: 4.8rem;
  color: var(--black);
  font-family: var(--font-en);
  line-height: 1;
  margin-bottom: 40px;
}
.headline02 > span {
  color: var(--red);
}
.headline02 .sub {
  font-size: 1.6rem;
  color: var(--black);
  font-family: var(--font-jp);
  font-weight: 400;
  padding-bottom: 10px;
}
.headline02 .sub span {
  font-weight: 700;
}

/* profile/index.html
---------------------------------------------------------*/
#profile .skills_wrap .headline03 {
  font-size: 2rem;
  font-family: var(--font-en);
  color: var(--red);
  margin-bottom: 30px;
}
#profile .skills_wrap {
  background: #FFF9F1;
  padding: 40px;
  margin: 0 0 40px 24%;
  border-radius: 20px;
}
#profile .skills_wrap .headline03 span {
  font-size: 1.6rem;
}
#profile .skills_wrap .tools {
  color: var(--brown);
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 600;
}
@media only print, screen and (max-width: 750px){
  #profile .skills_wrap {
    margin-left: 0;
  }
}


/* works/works00.html
---------------------------------------------------------*/
#works .works_ttl01 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
#works .works_ttl01 span {
  font-size: 1.8rem;
  padding-left: 20px;
  font-weight: 500;
  /* font-weight: 700; */
}
#works .duties_list {
  display: flex;
  gap: 10px 10px;
  flex-wrap: wrap;
}
#works .duties_list .item {
  border: 2px solid var(--red);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 1.4rem;
  font-family: var(--font-en);
  line-height: 1;
  color: var(--red);
}
#works .duties_list .item.item_on {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0px 6px 0 rgba(207, 65, 14, 0.4);
}
#works .image_area figure img {
  box-shadow: 0 8px 30px 0 rgba(71, 53, 46, 0.3);
}
#works .image_area figure.sp {
  text-align: center;
}
#works .image_area figure.sp img {
  width: 40%;
}
#works .image_area .link {
  font-size: 1.4rem;
}
@media only print, screen and (max-width: 750px){
  #works .image_area figure.sp img {
    width: 100%;
  }
  #works .works_ttl01 span {
    display: block;
    padding-left: 0;
  }
}