```css
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

/* ========================================
   Base
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 50px 20px 20px 105px;
  max-width: 1024px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  font-family: "Roboto Condensed", sans-serif;
  color: #111;
  background: #fff;

  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* ========================================
   Typography
======================================== */

/* タイトル */

h1 {
  font-size: 40px;
  font-weight: normal;
  letter-spacing: 0.08em !important;
  margin: 0 0 36px 0;
  line-height: 1.1;
}

/* タイトル画像 */

h1 img,
.title img {
  width: 58%;
  max-width: 220px;
  height: auto;
  display: block;
}

/* A small design studio based in Tokyo */

h2 {
  font-size: 12px;
  font-weight: normal;
  margin: 0 0 36px 0;
  line-height: 1.2;
}

/* Yumi Tanaka */

h3 {
  font-size: 12px;
  font-weight: normal;
  margin: 0 0 0px 0;
  line-height: 1.2;
}

/* editorial designer */

h4 {
  font-size: 12px;
  margin: 0 0 0px 0;
  font-weight: normal;
  text-transform: lowercase;
  line-height: 1.2;
}

/* 本文 */

p {
  font-size: 12px;
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* ========================================
   Links
======================================== */

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.6;
}

/* ========================================
   Email
======================================== */

.at::before {
  content: "@";
  margin-right: 0.1em;
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 768px) {

  body {
    padding: 32px;
  }

  h1 img,
  .title img {
    width: 52%;
    max-width: 180px;
  }

  h2,
  h3,
  h4,
  p {
    font-size: 12px;
  }

}
```
