.contents-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.6rem
}
section {
  margin-top: 6rem
}
h3 {
  font-family: "Funnel Sans", "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.6vw, 2.2rem);
  color: #0078ff;
  letter-spacing: .03em
}
.ceo-heading {
  position: relative;
  padding: .5rem 0;
  font-size: 1.6rem
}
.ceo-heading:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background-image: linear-gradient(to right, #0078ff 0, #5f5fff 100%)
}
.ceo-profile {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 2rem
}
.bio {
  flex: 1 1 420px;
  min-width: 280px
}
.bio p {
  margin: 1rem 0 0;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-ideograph
}
.ceo-name {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem
}
.ceo-name h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.4rem
}
.ceo-name img {
  width: 20px;
  height: 20px;
  transition: opacity .2s
}
.ceo-name img:focus, .ceo-name img:hover {
  filter: brightness(1.2);
  transform: translateY(-1px)
}
.ceo-name img:active {
  filter: brightness(.9);
  transform: translateY(1px)
}
.ceo-image-wrapper {
  flex: 0 0 320px;
  max-width: 400px;
  width: 100%;
  align-self: flex-start;
  margin: 0 auto
}
.ceo-image-inner {
  position: relative;
  overflow: hidden;
  clip-path: circle(50% at 50% 50%)
}
.ceo-image-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1) brightness(1.05);
  transition: transform .6s ease-out, filter .6s ease-out
}
.ceo-image-inner:hover img {
  transform: scale(1.08) translateY(-4px);
  filter: grayscale(0%) contrast(1.15) brightness(1.1)
}
@media (max-width:499px) {
  .ceo-profile {
    display: block;
    padding: 0
  }
  .ceo-image-wrapper {
    flex: none;
    width: 90% !important;
    max-width: none;
    float: none;
    margin: 1rem auto
  }
  .ceo-image-inner, .ceo-image-inner img {
    width: 100%;
    height: auto
  }
}