#main_contents {
  overflow: hidden;
}
#company {
  scroll-margin-top: 150px;
}
#ceo,
#sdgs {
  scroll-margin-top: 350px;
}
.header_fix #ceo,
.header_fix #sdgs {
  scroll-margin-top: 150px;
}

#company .target_btn {
  position: fixed;
  top: 200px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1000;

  /* 少しだけ画面内に残す */
  transform: translateX(-65%);
  transition: transform .3s ease;
}

/* target_btn 自体にホバーしたら表示 */
#company .target_btn:hover {
  transform: translateX(0);
}

#company .target_btn a {
  padding: 10px 15px;
  background: #009942;
  color: #fff;
  box-shadow: 1px 1px 5px 0 #00000070;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  gap: 15px;
  transform: translateX(0);
  transition: transform .3s ease, background .3s ease;
  align-items: center;
  justify-content: space-between;
}

/* aタグ単体ホバー */
#company .target_btn a:hover {
  transform: translateX(10px);
  background: #00b050;
}

#company .target_btn a.company:after {
  content: "\f1ad";
  font-family: FontAwesome;
}
#company .target_btn a.ceo:after {
  content: "\f2bb";
  font-family: FontAwesome;
}
#company .target_btn a.sdgs:after {
  content: "\f06c";
  font-family: FontAwesome;
}

#company h2,
#company h3 {
  font-size: 1.4rem;
  font-weight: 600;
  /* text-align: left; */
}
#company h4 {
  font-size: 1.3rem;
  display: flex;
  gap: 15px;
  align-items: baseline;
  font-style: italic;
  border-bottom: 1px #ddd solid;
  line-height: 2.1rem;
  justify-content: flex-end;
  font-weight: 500;
}
#company h4 span {
  font-size: 0.8rem;
  font-family: 'YuGothic';
  font-weight: 300;
}
#company .style5a {
  background: transparent;
  box-shadow: none;
}

.flex {
  display: flex;
  gap: 20px;
}
.flex .txt_area {
  width: 60%;
}
.flex .txt_area p {
  font-size: 1rem;
  /* margin-bottom: 0; */
}
.flex .img_area {
  margin: auto;
  position: relative;
  
}
.flex .img_area img {
  width: 100%;
  border-radius: 10px;
  max-width: 300px;
}
/* .flex .img_area:after {
  position: absolute;
  content: "";
  width: 1500px;
  height: 1500px;
  background: #d2c0ad29;
  top: 10px;
  right: -1000px;
  border-radius: 50%;
  filter: blur(10px);
  z-index: -1;
  object-fit: cover;
} */

@media (max-width: 768px) {
  .flex {
    flex-direction: column;
    gap: 10px;
  }
  #company .target_btn {
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: row;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: opacity .6s ease, transform .6s ease;
  }

  /* 表示状態 */
  #company .target_btn.is-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  #company .target_btn a {
    width: 100%;
    background: rgba(0,153,59,0.9);
    box-shadow: none;
    padding: 3px 15px;
  }
  .flex .txt_area {
    width: 100%;
  }
  .flex .txt_area p {
    font-size: 0.9rem;
  }
  #company .target_btn a:hover {
    transform: none;
  }
  /* .flex .img_area:after {
    width: 800px;
    height: 800px;
    right: -500px;
  } */
  .header_fix #ceo, .header_fix #sdgs,
  #ceo, #sdgs {
    scroll-margin-top: 80px;
  }
}