@charset "UTF-8";

/* ==========================================================
   Gorilla-hearts 1枚ものHP
   トンマナ：キャラクター準拠（バナナイエロー × ブラウン）
========================================================== */

:root {
  --color-yellow: #ffd52e;
  --color-yellow-light: #fff3c4;
  --color-yellow-pale: #fffdf5;
  --color-brown: #4a3226;
  --color-brown-light: #7a5c48;
  --color-navy: #2b3a67;
  --color-white: #ffffff;
  --color-red: #e05a47;
  --font-base: "Noto Sans JP", sans-serif;
  --font-round: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  --width-content: 1080px;
  --header-height: 72px;
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  font-family: var(--font-base);
  color: var(--color-brown);
  background: var(--color-yellow-pale);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ----- 共通ボタン ----- */
.btn {
  display: inline-block;
  font-family: var(--font-round);
  font-weight: 700;
  text-align: center;
  padding: 14px 40px;
  border-radius: 999px;
  border: 3px solid var(--color-brown);
  transition: transform .2s, box-shadow .2s, background-color .2s, color .2s;
  cursor: pointer;
}
.btn--primary {
  background: var(--color-brown);
  color: var(--color-yellow);
  box-shadow: 0 4px 0 rgba(74, 50, 38, .35);
}
.btn--primary:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(74, 50, 38, .35);
}
.btn--outline {
  background: var(--color-white);
  color: var(--color-brown);
  box-shadow: 0 4px 0 rgba(74, 50, 38, .2);
}
.btn--outline:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(74, 50, 38, .2);
  background: var(--color-yellow-light);
}
.btn--large { padding: 18px 72px; font-size: 18px; }

/* ----- ヘッダー ----- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255, 253, 245, .92);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 2px solid rgba(74, 50, 38, .08);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.header__logo-mark { width: 40px; height: 40px; border-radius: 50%; }
.header__logo-text {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .02em;
}
.header__nav-list {
  display: flex;
  gap: 28px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 15px;
}
.header__nav-list a { position: relative; padding: 4px 0; }
.header__nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  border-radius: 2px;
  background: var(--color-yellow);
  transform: scaleX(0);
  transition: transform .25s;
}
.header__nav-list a:hover::after { transform: scaleX(1); }
.header__cta {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 15px;
  background: var(--color-yellow);
  border: 2.5px solid var(--color-brown);
  border-radius: 999px;
  padding: 8px 24px;
  box-shadow: 0 3px 0 rgba(74, 50, 38, .3);
  transition: transform .2s, box-shadow .2s;
}
.header__cta:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 0 rgba(74, 50, 38, .3);
}
.header__hamburger { display: none; }

/* ----- スマホメニュー ----- */
.sp-menu {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  background: var(--color-yellow-pale);
  border-bottom: 3px solid var(--color-yellow);
  z-index: 99;
  padding: 16px 24px 24px;
}
.sp-menu.is-open { display: block; }
.sp-menu ul { display: flex; flex-direction: column; gap: 4px; }
.sp-menu a {
  display: block;
  padding: 12px 8px;
  font-family: var(--font-round);
  font-weight: 700;
}
.sp-menu__cta {
  margin-top: 8px;
  text-align: center;
  background: var(--color-yellow);
  border: 2.5px solid var(--color-brown);
  border-radius: 999px;
}

/* ----- ヒーロー ----- */
.hero {
  position: relative;
  background: var(--color-yellow);
  padding: calc(var(--header-height) + 64px) 24px 120px;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
}
.hero::before { width: 420px; height: 420px; top: -140px; left: -120px; }
.hero::after { width: 300px; height: 300px; bottom: -80px; right: 8%; }
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--width-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero__text { flex: 1 1 60%; }
.hero__sub {
  display: inline-block;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 15px;
  background: var(--color-white);
  border-radius: 999px;
  padding: 6px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 0 rgba(74, 50, 38, .15);
}
.hero__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.45;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.hero__title-line { display: block; }
.hero__title em {
  font-style: normal;
  color: var(--color-navy);
  background: linear-gradient(transparent 62%, var(--color-white) 62%);
  padding: 0 2px;
}
.hero__lead { font-size: 16px; margin-bottom: 36px; }
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__image { flex: 0 0 320px; }
.hero__image img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(74, 50, 38, .25);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 80px; display: block; }

/* ----- セクション共通 ----- */
.section { padding: 104px 24px; }
.section--yellow { background: var(--color-yellow-light); }
.section__inner { max-width: var(--width-content); margin: 0 auto; }
.section__inner--narrow { max-width: 800px; }
.section__head { text-align: center; margin-bottom: 56px; }
.section__en {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .18em;
  color: var(--color-brown-light);
  margin-bottom: 8px;
}
.section__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: .04em;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section__title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 56px; height: 6px;
  border-radius: 3px;
  background: var(--color-yellow);
}
.section--yellow .section__title::after { background: var(--color-white); }
.section__desc { margin-top: 20px; }

/* ----- 事業内容 ----- */
.service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: service;
}
.service__item {
  position: relative;
  background: var(--color-white);
  border: 3px solid rgba(74, 50, 38, .1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.service__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(74, 50, 38, .12);
}
.service__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%; right: -19px;
  width: 14px; height: 14px;
  border-top: 4px solid var(--color-yellow);
  border-right: 4px solid var(--color-yellow);
  transform: translateY(-50%) rotate(45deg);
}
.service__step {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--color-brown-light);
  margin-bottom: 16px;
}
.service__icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--color-yellow);
  display: grid;
  place-items: center;
  color: var(--color-brown);
}
.service__icon svg { width: 38px; height: 38px; }
.service__name {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 12px;
}
.service__text { font-size: 14px; text-align: left; }

/* ----- 選ばれる理由 ----- */
.reason__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.reason__item {
  background: var(--color-white);
  border-radius: 20px;
  padding: 32px 32px 28px;
  box-shadow: 0 4px 0 rgba(74, 50, 38, .08);
}
.reason__num {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 30px;
  color: var(--color-yellow);
  -webkit-text-stroke: 1.5px var(--color-brown);
  line-height: 1;
  margin-bottom: 12px;
}
.reason__name {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
}
.reason__text { font-size: 15px; }

/* ----- 制作実績 ----- */
.works__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}
.works__item {
  background: var(--color-white);
  border: 3px solid rgba(74, 50, 38, .1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.works__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(74, 50, 38, .14);
}
.works__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 3px solid var(--color-yellow);
  background: #fff;
}
.works__thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .4s;
}
.works__item:hover .works__thumb img { transform: scale(1.04); }
.works__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.works__name {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.works__name span {
  display: block;
  font-size: 14px;
  color: var(--color-brown-light);
}
.works__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.works__tags li {
  font-size: 12px;
  font-weight: 500;
  background: var(--color-yellow-light);
  border-radius: 999px;
  padding: 3px 12px;
}
.works__text { font-size: 14px; margin-bottom: 18px; }
.works__collab {
  font-size: 12px;
  color: var(--color-brown-light);
  margin-bottom: 14px;
}
.works__link {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-navy);
  position: relative;
  padding-right: 22px;
}
.works__link::after {
  content: "";
  position: absolute;
  right: 4px; top: 50%;
  width: 8px; height: 8px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right .2s;
}
.works__link:hover::after { right: 0; }
.works__more {
  margin-top: 64px;
  background: var(--color-white);
  border: 3px dashed var(--color-yellow);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
}
.works__more-title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
}
.works__more-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-bottom: 20px;
}
.works__more-list li {
  font-size: 14px;
  font-weight: 500;
  background: var(--color-yellow-light);
  border-radius: 999px;
  padding: 6px 18px;
}
.works__more-note {
  font-size: 14px;
  color: var(--color-brown-light);
  margin-bottom: 24px;
}

/* ----- 向き合い方 ----- */
.stance__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stance__item {
  background: var(--color-white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 0 rgba(74, 50, 38, .08);
  position: relative;
}
.stance__item::before {
  content: "";
  position: absolute;
  top: -14px; left: 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a3226' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 14px no-repeat;
  border: 2.5px solid var(--color-brown);
}
.stance__name {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
}
.stance__text { font-size: 14px; }

/* ----- 会社概要 ----- */
.about__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 0 rgba(74, 50, 38, .08);
}
.about__table th,
.about__table td {
  padding: 20px 28px;
  border-bottom: 2px solid var(--color-yellow-pale);
  text-align: left;
  font-size: 15px;
}
.about__table tr:last-child th,
.about__table tr:last-child td { border-bottom: none; }
.about__table th {
  width: 160px;
  background: var(--color-yellow-light);
  font-family: var(--font-round);
  font-weight: 700;
  white-space: nowrap;
}

/* ----- お問い合わせ ----- */
.contact { background: var(--color-yellow); }
.contact .section__title::after { background: var(--color-white); }
.contact__form {
  background: var(--color-white);
  border-radius: 20px;
  padding: 48px 48px 40px;
  box-shadow: 0 8px 0 rgba(74, 50, 38, .15);
}
.contact__row { margin-bottom: 24px; }
.contact__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.contact__required {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 4px;
  padding: 1px 8px;
}
.contact__input {
  width: 100%;
  font-family: var(--font-base);
  font-size: 15px;
  padding: 12px 16px;
  border: 2.5px solid rgba(74, 50, 38, .18);
  border-radius: 10px;
  background: var(--color-yellow-pale);
  transition: border-color .2s, background-color .2s;
}
.contact__input:focus {
  outline: none;
  border-color: var(--color-yellow);
  background: var(--color-white);
}
.contact__input::placeholder { color: rgba(74, 50, 38, .35); }
.contact__textarea { resize: vertical; }
.contact__hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.contact__submit { text-align: center; margin-top: 32px; }
.contact__submit .btn:disabled {
  opacity: .6;
  cursor: wait;
  transform: none;
}
.contact__error {
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
  color: var(--color-red);
}
.contact__thanks {
  background: var(--color-white);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 8px 0 rgba(74, 50, 38, .15);
}
.contact__thanks-title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 16px;
  position: relative;
  padding-top: 56px;
}
.contact__thanks-title::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a3226' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 22px no-repeat;
  border: 3px solid var(--color-brown);
}

/* ----- フッター ----- */
.footer {
  background: var(--color-brown);
  color: var(--color-yellow-pale);
  padding: 40px 24px;
}
.footer__inner {
  max-width: var(--width-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 18px;
}
.footer__logo-mark { width: 36px; height: 36px; border-radius: 50%; }
.footer__copy { font-size: 12px; opacity: .8; }

/* ----- 下層ページ共通（ページタイトル） ----- */
.page-hero {
  position: relative;
  background: var(--color-yellow);
  padding: calc(var(--header-height) + 56px) 24px 96px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  top: -120px; left: -100px;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: .04em;
  margin: 4px 0 20px;
}
.page-hero__lead { font-size: 15px; }

/* ----- 制作実績 詳細ページ ----- */
.works-detail__item {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.works-detail__item + .works-detail__item { margin-top: 96px; }
.works-detail__thumb {
  flex: 0 0 46%;
  display: block;
  border: 3px solid rgba(74, 50, 38, .1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(74, 50, 38, .12);
  background: #fff;
}
.works-detail__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  transition: transform .4s;
}
.works-detail__thumb:hover img { transform: scale(1.04); }
.works-detail__body { flex: 1; }
.works-detail__name {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.works-detail__name span {
  display: block;
  font-size: 15px;
  color: var(--color-brown-light);
}
.works-detail__spec {
  background: var(--color-white);
  border: 2.5px solid rgba(74, 50, 38, .1);
  border-radius: 14px;
  padding: 8px 20px;
  margin-bottom: 20px;
}
.works-detail__spec > div {
  display: flex;
  gap: 16px;
  padding: 9px 0;
  font-size: 14px;
}
.works-detail__spec > div + div { border-top: 2px solid var(--color-yellow-pale); }
.works-detail__spec dt {
  flex: 0 0 90px;
  font-family: var(--font-round);
  font-weight: 700;
  color: var(--color-brown-light);
}
.works-detail__point-title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}
.works-detail__point-title::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-yellow);
  border: 2.5px solid var(--color-brown);
}
.works-detail__text { font-size: 15px; margin-bottom: 18px; }
.works-detail__collab {
  font-size: 13px;
  color: var(--color-brown-light);
  margin-bottom: 18px;
}

/* ----- 実績ページCTA ----- */
.works-cta__inner { text-align: center; }
.works-cta__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
}
.works-cta__text { margin-bottom: 28px; }

/* ----- スクロールフェードイン ----- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero__image img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   レスポンシブ
========================================================== */
@media (max-width: 1024px) {
  .service__list { grid-template-columns: repeat(2, 1fr); }
  .service__item:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .section { padding: 72px 20px; }

  .header__nav, .header__cta { display: none; }
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px; height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .header__hamburger span {
    display: block;
    width: 100%; height: 3px;
    border-radius: 2px;
    background: var(--color-brown);
    transition: transform .25s, opacity .25s;
  }
  .header__hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .header__hamburger.is-open span:nth-child(2) { opacity: 0; }
  .header__hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  .hero { padding: calc(var(--header-height) + 40px) 20px 96px; }
  .hero__inner { flex-direction: column-reverse; gap: 32px; }
  .hero__image { flex: none; width: 200px; }
  .hero__text { text-align: center; }
  .hero__buttons { justify-content: center; }
  .hero__lead { text-align: left; }
  /* 見出しの1文字落ち防止（350px幅に12文字が収まるサイズ） */
  .hero__title { font-size: 27px; }
  /* バッジ内はフレーズ単位でのみ折り返す */
  .hero__sub { font-size: 14px; }
  .hero__sub span { display: inline-block; }
  /* PCレイアウト用の改行はSPでは解除し、自然な折り返しに任せる */
  .hero__lead br,
  .section__desc br,
  .page-hero__lead br,
  .works__more-note br,
  .contact__thanks-text br { display: none; }

  .service__list { grid-template-columns: 1fr; }
  .reason__list { grid-template-columns: 1fr; }
  .works__list { grid-template-columns: 1fr; gap: 32px; }
  .stance__list { grid-template-columns: 1fr; gap: 28px; }

  .works-detail__item { flex-direction: column; gap: 24px; align-items: stretch; }
  .works-detail__item + .works-detail__item { margin-top: 64px; }
  .works-detail__thumb { flex: none; width: 100%; }
  .works-detail__body { width: 100%; }
  .works-detail__name { font-size: 20px; }

  .about__table th { width: 110px; padding: 16px; font-size: 14px; }
  .about__table td { padding: 16px; font-size: 14px; }

  .contact__form { padding: 32px 20px 28px; }
  .btn--large { padding: 16px 48px; width: 100%; }

  .footer__inner { flex-direction: column; }
}
