@charset "UTF-8";

/* ------------------------
BASE
------------------------ */
html {
  font-size: 64.5%;
  /* font-size: 10px; */
}

/* <uniquifier>: Use a unique and descriptive class name */
.noto-sans-jp {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', 'Meiryo', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #494746;
  background-color: #EBEEEB;
  line-height: 1.8;
}

a {
  color: #494746;
  font-size: 1.4rem;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 3.6rem;
  font-weight: normal;
}

h2 {
  font-size: 2.8rem;
  font-weight: normal;
}

h3 {
  font-size: 1.4rem;
  font-weight: normal;
}

p {
  font-size: 1.4rem;
}

span {
  font-size: 1.4rem;
  display: inline-block;
}

/* ------------------------
LAYOUT
------------------------ */
body {
  min-width: 768px;
  margin: 0 auto;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
  flex-wrap: wrap;
}

.headline--top {
  text-align: center;
  margin-bottom: 80px;
}

.headline {
  text-align: center;
  margin: 80px 0;
}

/* HEADER */
.header {
  width: 100%;
  height: 88px;
  top: 0;
  left: 0;
  margin: 0 auto;
  position:fixed;
  top:0;
  z-index: 1000;
  /* background-color: transparent;  */
  background-color: rgba(0, 0, 0, 0.6); /* ヘッダーの背景色 */
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.6);
  /* box-shadow: 左右の向きpx  上下の向きpx ぼかしpx 広がりpx 色 内側指定; */
}

.header__container{
  height: 100px;
  display: flex;
  justify-content: space-between;
  margin: 0 50px;
  align-items: first baseline;
}

.header__nav__link {
  display: flex;
  gap: 30px;
}

.header__symbol__img {
  height: 40px;
  width: auto;
  object-fit: cover;
}

.header__logo__img {
  height: 40px;
  width: auto;
  object-fit: cover;
  margin: 0 10px;
}

.header__nav a {
  color: #FAF5EF;
  text-decoration: none;
  font-size: 1em;
  text-transform: uppercase;
}

/* ハンバーガーメニューアイコン */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: transparent;
  color: #FAF5EF;
  transition: 0.3s;
}

/* MAIN VISUAL */
.main-visual__container {
  width: auto;
  height: 100vh;
  background-image: url("../images/site-images/iStock-841142316-edited.jpg"); /* 背景画像明度-100 */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.main-visual__contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px; /* 要素間のスペース */
  max-width: 800px; /* 横幅の制限 */
  padding: 20px;
  position: relative;
  left: 15%;
}

.main-visual__container h1 {
  color: #FAF5EF;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.main-visual__container p {
  color: #FAF5EF;
  line-height: 2.5em;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.header__x-link {
  display: flex;
  gap: 20px;
}

.header__x-link__img {
  height: 30px;
  width: auto;
}

.header__x-link a {
  color: #FAF5EF;
}

/* NEWS */
.news__list {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  gap: 20px;
  text-align: left;
  padding: 0 20px;
}

.news__item {
  display: contents; /* 子要素をグリッドに直接配置 */
}

.news__content {
  font-weight: bold;
}

.news__source {
  text-align: left;
}

/* ABOUT US */
.about-us__container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  background: url("../images/site-images/iStock-1314508018.jpg") center/cover no-repeat; /* 黒地の画像 */
  padding: 60px 40px 80px 40px;
  color: #FAF5EF;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  /* box-shadow: 左右の向きpx  上下の向きpx ぼかしpx 広がりpx 色 内側指定; */
}

.about-us__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* 黒のオーバーレイ */
  z-index: 0;
}

.about-us__contents {
  position: relative;
  z-index: 1;
}

.headline--about-us {
  text-align: center;
  margin-bottom: 48px;
  max-width: 80%; /* テキスト幅を制限 */
  margin-left: auto;
}

.about-us__description {
  position: relative;
  max-width: 70%; /* テキスト幅を制限 */
  margin-left: auto;
}

.about-us__description p {
  line-height: 2.0em;
  letter-spacing: 0.1em;
}

/* WORKS */
.works__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.works__description {
  margin-bottom: 80px;
  text-align: center;
}

.works__buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* SERVICE */
.service__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}

.service__img__container {
  flex: 1;
  max-width: 50%;
}

.service__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position:0% 0%;
}

.service__content {
  flex: 1;
  text-align: center;
}

.service__title {
  margin-bottom: 40px;
  text-align: center;
}

.service__description {
  margin-bottom: 40px;
}

/* CONTACT */


/* FOOTER */
.footer {
  background-color: #494746;
  color: #FAF5EF;
  padding: 30px 0;
  text-align: center;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* width: 100%; */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__logo__img {
  height: 40px;
  width: auto;
  object-fit: cover;
  margin: 0 10px;
}

.footer__symbol__img {
  height: 50px;
  width: auto;
  object-fit: cover;
}

.footer__x-link__img {
  height: 30px;
  width: auto;
}

.footer__icon {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer__nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer__nav a {
  color: #FAF5EF;
  text-decoration: none;
  font-size: 1em;
  text-transform: uppercase;
}

.footer__copyright {
  margin-top: 40px;
}

/* COMPANY */
.headline p {
  font-size: 2.8rem;
}

.company__contents {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.company__contents--info tr {
  border-bottom: 1px solid #989490;
}

.company__contents--info th, .company__contents--info td {
  padding: 24px 0;
  border: none;
}

.company__contents--info th {
  width: 30%;
}

/* STAFF */
.staff__list__container {
  max-width: 1200px;
}

.staff__top {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.staff__editor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.staff__manager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.staff__member {
  max-width: 540px;
  text-align: left;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

.staff__name__top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.staff__name {
  font-size: 2.0rem;
}

.staff__role {
  font-size: 1.2rem;
}

.staff__name__roman {
  font-size: 1.0rem;
  font-style: italic;
  margin-top: -5px;
}

.staff__works {
  margin-top: 10px;
}

.staff__works__description{
  margin: 4px 0;
  width: 140px;
}

.staff__works__content {
  display: flex;
  flex-wrap: nowrap;
  padding: 4px 0;
}

.staff__works__category {
  width: 140px;
}

.staff__works__title li {
  max-width: 400px;
}

.btn--more--staff {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #494746;
  border: 1px solid #494746;
  padding: 5px 10px;
  transition: background-color 0.3s, color 0.3s;
  margin-left: auto;
}

.btn--more--staff:hover {
  background-color: #494746;
  color: #EBEEEB;
}

/* WORKS ARCHIVE */
.works__items__container {
  margin: 0 auto ;
  max-width: 800px;
  /* padding: 40px 0; */
}

.works__item__container {
  margin-bottom: 16px;
}

.works__items {
  position: relative;
  left: 15%;
}

.works__media__title {
  font-size: 2.0rem;
  text-align: center;
  padding: 56px 0 20px 0;
}

.works__year__title {
  position: relative;
  left: 5%;
  font-weight: bold;
  margin: 40px 0 16px 0;
}

.works__list__title {
  flex-wrap: wrap;
}

/* ACCESS */
.access__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 100px;
  padding: 40px 20px;
}

.access__map__container {
  flex: 1;
  max-width: 50%;
}

.access__map__container iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.access__description {
  text-align: left;
  line-height: 2.5em;
  letter-spacing: 0.1em;
}

/* RECRUIT */

/* 採用セクション */
.recruit {
  text-align: center;
  padding: 50px 20px;
}

.recruit__title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 50px;
}

/* 採用カードコンテナ */
.recruit__cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* 採用カード */
.recruit__card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  flex: 1;
}

.recruit__card__title {
  margin-bottom: 20px;
}

.recruit__card__text {
  margin-bottom: 30px;
  line-height: 1.5em;
}

/* EDITING */

/* カード部分 */
.editing__cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  padding-bottom: 80px;
}

.editing__card {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 300px;
}

.editing__headline {
  margin-bottom: 60px; /* 下にスペースを確保 */
}

.editing__headline h2 {
  font-size: 2.0rem;
}

.editing__line {
  width: 100%;
  height: 2px;
  background-color: #494746;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.editing__card__container {
  display: flex; /* Flexbox を使用して子要素を中央揃え */
  justify-content: center; /* 横方向の中央揃え */
  align-items: center; /* 縦方向の中央揃え */
  position: relative; /* 子要素の絶対配置の基準 */
  width: 350px; /* .circle と同じ幅を指定 */
  height: 350px; /* .circle と同じ高さを指定 */
  margin: 0 auto; /* 中央寄せ */
}

.editing__card__container p {
  position: relative; /* コンテナ（.editing__card__container）を基準 */
  line-height: 2.0; /* 行間 */
  text-align: center; /* テキストの中央揃え */
  z-index: 2; /* .circle より上に配置 */
}

/* 円形デザイン */
.circle {
  position: absolute; /* コンテナ内に絶対配置 */
  top: 0;
  left: 0;
  width: 100%; /* 親要素（.editing__card__container）と同じ幅 */
  height: 100%; /* 親要素（.editing__card__container）と同じ高さ */
  border-radius: 50%;
  z-index: 1; /* テキストより下に配置 */
  opacity: 0.7;
}

.circle--left {
  background-color: #219C90;
  box-shadow: 0px 0px 10px 10px #219C90;
  /* box-shadow: 左右の向きpx  上下の向きpx ぼかしpx 広がりpx 色 内側指定; */
}

.circle--center {
  background-color: #E9B824;
  box-shadow: 0px 0px 10px 10px #E9B824;
}

.circle--right {
  background-color: #EE9322;
  box-shadow: 0px 0px 10px 10px #EE9322;
}

/* フッターとテキストボタン */
.editing__footer__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.editing__footer__container p {
  margin-bottom: 80px;
  letter-spacing: 0.1em;
}

/* STUDIO */
.studio__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.studio__img__container {
  flex: 1;
  max-width: 50%;
}

.studio__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position:0% 0%;
}

.studio__content {
  flex: 1;
  text-align: center;
}

.studio__title {
  margin-bottom: 40px;
}

.studio__description {
  text-align: left;
  margin-bottom: 40px;
}

.studio__description th, .studio__description td {
  padding: 10px;
  border: none;
}

.studio__description th {
  white-space: nowrap;
}

/* ------------------------
MODULE
------------------------ */
/* HEADER */
/* .header.scrolled { */
  /* background-color: rgba(0, 0, 0, 0.6);  */
  /* スクロール時の背景色 */
  /* box-shadow: 0 5px 5px rgba(0, 0, 0, 0.6);  */
  /* スクロール時のぼやけた影 */
/* } */

.header__nav__link a:hover {
  color: #989490;
}

/* reCAPTCHA v3のバッジ非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

/* BUTTON */
.button__container {
  text-align: center;
}

.btn--more {
  display: inline-block;
  padding: 24px 48px;
  background-color: transparent;
  border: 1px solid #494746;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
}

.btn--more:hover {
  background-color: #494746;
  color: #FAF5EF;
}

/* MAIN VISUAL */
/* フェードインアニメーション用の初期状態 */
.main-visual__contents {
  opacity: 0; /* 初期状態で非表示 */
  transform: translateY(50px); /* 下からの位置 */
  transition: opacity 1s ease, transform 1s ease; /* アニメーションの設定 */
}

.main-visual__contents.fade-in {
  opacity: 1; /* 表示 */
  transform: translateY(0); /* 元の位置に移動 */
}

/* ABOUT US */
/* スクロールで下からフェードイン */
.about-us__contents {
  opacity: 0;
  transform: translateY(50px); /* 50px下から登場 */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.about-us__contents.fade-in-about {
  opacity: 1;
  transform: translateY(0);
}

/* SERVICE */
.service__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FOOTER */
.footer__nav a:hover {
  color: #989490;
}

.footer__copyright p {
  color: #FAF5EF;
  font-size: 1.0rem;
}

/* WORKS ARCHIVES */
.tab-menu {
  display: flex;
  gap: 40px;
  text-align: center;
  justify-content: center;
  margin-bottom: 80px;
}

.tab-menu__selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  max-width: 230px;
}

.tab-menu__selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #989490;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}

.tab-menu__selectbox select {
  appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: .4em calc(.8em + 30px) .4em .8em;
  border: none;
  border-bottom: 2px solid #989490;
  cursor: pointer;
}

.tab-menu__selectbox select:focus {
  outline: none;
}

/* CONTACT */
.contact__container {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.contact__container p {
  margin-bottom: 40px;
}

/* フォーム全体のスタイル */
.wpcf7 {
  padding: 20px;
  border-radius: 10px;
  max-width: 640px;
  margin: auto;
  }

/* ラベルのスタイル */
.wpcf7-form label {
  display: block;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: left;
  }

.wpcf7-form .label-text {
  display: block;
  font-weight: bold;
  text-align: left;
  }

/* インプットフィールドのスタイル */
.wpcf7-text,
.wpcf7-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #989490;
  border-radius: 3px;
  background-color: #D9D9D9;
  box-sizing: border-box;
}

.wpcf7-form textarea {
  height: 150px;
  resize: none;
}

.wpcf7-list-item {
  margin: 0 0 40px 0;
  text-align: center;
}

.wpcf7-form-control-wrap {
  display: inline;
}

.wpcf7-list-item span {
  display: inline;
}

.wpcf7-spinner {
  display: block;
}

/* 個人情報取扱 */
/* .contact__confirmation {
  text-align: left;
  margin-bottom: 40px;
} */

/* details {
  width: 100%;
  max-width: 700px;
} */

/* details > div {
  background-color: #D9D9D9;
  padding: 15px;
  margin-top: 10px;
} */

/* チェックボックスと説明文 */
/* input[type="checkbox"] {
  margin-right: 10px;
} */

/* 必須マークの色 */
.contact__span {
  color: #ce2222;
  padding-left: 3px;
  padding-right: 3px;
}

/* 必須フィールドのラベルスタイル */
.wpcf7-form .required {
  color: #ce2222;
  padding-left: 3px;
  padding-right: 3px;
  }

/* 送信ボタン */
.wpcf7-submit {
  display: inline-block;
  padding: 24px 48px;
  background-color: transparent;
  border: 1px solid #494746;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
}

.wpcf7-submit:hover {
  background-color: #494746;
  color: #FAF5EF;
}

/* バリデーションエラーや送信メッセージのデザイン */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Style for Smartphones */
@media screen and (max-width:768px) {
  body {
    min-width: 375px;
    margin: 0 auto;
  }

  .header__container{
    margin: 0 30px;
  }

  .section__container {
    padding: 0 24px 50px
  }

  .headline {
    margin: 160px 0 80px;
  }

  .headline--top {
    margin: 60px auto;
  }

  /* HEADER */
  .menu-icon {
    cursor: pointer;
    position: relative;
    width: 27px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* z-index: 1000; */
  }

  .menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #FAF5EF;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* メニューアイコンのクローズボタンスタイル */
  .menu-icon.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .menu-icon.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-icon.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  /* ナビゲーションメニュー */
  .header__nav {
    position: fixed;
    top: 88px;
    right: -100%; /* 初期は画面外 */
    width: 75%; /* メニュー幅 */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* メニューの背景色 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: right 0.3s ease; /* スライドインアニメーション */
    padding-top: 40px;
  }

  .header__nav.open {
    right: 0; /* 表示時に画面内に移動 */
  }

  .header__nav__link {
    flex-direction: column; /* 縦並び */
  }

  .header__nav a {
    font-size: 1.2em;
    color: #FAF5EF;
    padding: 24px 48px;
  }
  
  /* MAIN VISUAL */
  .main-visual__container {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    padding: 0 32px;
  }


  .main-visual__contents {
    top: 5%;
    left: 0;
    padding: 0;
  }

  .main-visual__container h1 {
    font-size: 2.4rem;
  }

  .main-visual__container span {
    font-size: 1.2rem;
  }

  /* NEWS */
  .news__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .news__item {
    display: block;
  }

  .news__date, .news__content, .news__source {
    text-align: left;
    margin-bottom: 10px;
  }

  /* ABOUT US */
  .about-us__container {
  background-position: 25%;
  padding: 20px;
  margin-top: 60px;
  }

  .headline--about-us {
    max-width: 100%;
  }

  .about-us__description {
    max-width: 100%;
    margin-bottom: 20px;
  }

  /* SERVICE */
  .service__items {
    gap: 80px;
  }

  .service__item {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .service__content {
    order: 2;
  }

  .service__img__container {
    max-width: 100%;
    order: 1;
  }

  /* WORKS */
  .works__buttons {
    display: flex;
    flex-direction: column;
  }

  /* FOOTER */
  .footer__nav {
    display: none;
  }

  /* COMPANY */
  .company__contents--info th, .company__contents--info td {
    width: 100%;
    display: block;
  }

  .company__contents--info th {
    width: 100%;
  }

  .company__contents--info td {
    padding-top: 0;
  }

  /* STAFF */
  .staff__editor {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  .staff__manager {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
  
  .staff__works__description {
    width: 120px;
    font-size: 1.2rem;
  }
  
  .staff__works__content {
    display: flex;
    flex-wrap: nowrap;
    padding: 8px 0;
  }
  
  .staff__works__category {
    width: 80px;
  }

  .staff__works__category p {
    font-size: 1.2rem;
  }
  
  .staff__works__title li {
    font-size: 1.2rem;
    max-width: 250px;
  }

  /* WORKS ARCHIVES */
  .tab-menu {
    flex-direction: column;
    align-items: center;
  }

  .works__items__container {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .works__item__container {
    display: block;
  }

  .works__items {
    position: relative;
    left: 5%;
  }
  
  .works__year__title {
    left: 0;
    margin: 10px 0;
  }
  
  /* ACCESS */
  .access__item {
    display: block;
    padding: 0;
  }

  .access__map__container {
    max-width: 100%;
    margin-bottom: 40px;
  }

  /* RECRUIT */
  .recruit__cards {
    flex-direction: column;
    gap: 20px;
  }

  /* STUDIO */
  .studio__items {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  .studio__item {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 20px;
  }

  .studio__img__container {
    max-width: 100%;
  }

  .studio__content {
    order: 2;
  }

  .studio__img__container {
    order: 1;
  }

  /* EDTING */
  .editing__cards {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
  
  .editing__card {
    width: 90%;
  }

  .editing__card__container {
    width: 300px;
    height: 300px;
  }

  .circle {
    width: 300px;
    height: 300px;
  }

  .editing__headline {
    margin-bottom: 20px;
  }

}