@charset "utf-8";
/*----------------------------------------------------------------------------------------------------

  マニフェストについて
  
----------------------------------------------------------------------------------------------------*/
.about {
  background-color: #f9e4c2;
  text-align: center;
}
.about__hd {
  display: inline-flex;
  text-align: left;
}
.about__hd .img {
	align-self: flex-end;
}
.about__hd .ttl {
  order: 1;
  flex: 1;
  align-self: center;
  padding-left: var(--box-space-m);
  padding-top: 0.75rem;
}
.about__hd .ttl b {
  display: inline-block;
  position: relative;
  margin-right: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}
.about__hd .ttl b:after {
  content: "";
  width: 100%;
  height: 3px;
  display: inline-block;
  background-color: var(--color-red);
  position: absolute;
  left: 0;
  bottom: 0;
}
.about__body img {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media print, screen and (min-width:641px) {
  .about {
    padding: var(--box-space-l);
  }
  .about__hd .img {
    width: 80px;
  }
}
@media screen and (max-width:640px) {
  .about {
    padding-top: var(--box-space-l);
    padding-bottom: var(--box-space-l);
  }
  .about__hd .img {
    width: calc(80 / 640 * 100vw);
    max-width: 80px;
    min-width: 45px;
  }
  .about__hd .ttl {
    font-size: var(--fs-2m);
  }
  .about__hd .ttl b {
    font-size: var(--fs-l);
  }
}
