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

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: anywhere;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  color: var(--color_base);
  text-decoration: none;
}

:root {
  --color_base: #292929;
  --color_bg: #f7f7ed;
  --color_theme: #28a3af;
  --color_theme2: #b09c17;
  --color_theme3: #b7398d;
  --color_cta: #efba30;
  --grad-top: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(247, 247, 237, 1) 50%);
  --grad-bottom: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(247, 247, 237, 1) 50%);
  --grad-left: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(247, 247, 237, 1) 50%);
  --grad-right: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(247, 247, 237, 1) 50%);
  --vw-min: 360px;
  --vw-max: 1200px;
  --font__primary: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic Medium", "Yu Gothic", Meiryo,
    system-ui, -apple-system, "Segoe UI",
    "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --lh__base: 1.7;
  --track__tight: 0.02em;
  --track__normal: 0;
  --xs-min: 0.82rem;
  --xs-max: 0.90rem;
  --font__xs: clamp(var(--xs-min),
      calc(var(--xs-min) + (var(--xs-max) - var(--xs-min)) * ((100vw - var(--vw-min)) / (var(--vw-max) - var(--vw-min)))),
      var(--xs-max));
  --s-min: 0.92rem;
  --s-max: 1.00rem;
  --font__s: clamp(var(--s-min),
      calc(var(--s-min) + (var(--s-max) - var(--s-min)) * ((100vw - var(--vw-min)) / (var(--vw-max) - var(--vw-min)))),
      var(--s-max));
  --m-min: 1.00rem;
  --m-max: 1.125rem;
  --font__m: clamp(var(--m-min),
      calc(var(--m-min) + (var(--m-max) - var(--m-min)) * ((100vw - var(--vw-min)) / (var(--vw-max) - var(--vw-min)))),
      var(--m-max));
  --l-min: 1.125rem;
  --l-max: 1.265rem;
  --font__l: clamp(var(--l-min),
      calc(var(--l-min) + (var(--l-max) - var(--l-min)) * ((100vw - var(--vw-min)) / (var(--vw-max) - var(--vw-min)))),
      var(--l-max));
  --ll-min: 1.26rem;
  --ll-max: 1.45rem;
  --font__ll: clamp(var(--ll-min),
      calc(var(--ll-min) + (var(--ll-max) - var(--ll-min)) * ((100vw - var(--vw-min)) / (var(--vw-max) - var(--vw-min)))),
      var(--ll-max));
  --xl-min: 1.45rem;
  --xl-max: 1.70rem;
  --font__xl: clamp(var(--xl-min),
      calc(var(--xl-min) + (var(--xl-max) - var(--xl-min)) * ((100vw - var(--vw-min)) / (var(--vw-max) - var(--vw-min)))),
      var(--xl-max));
  --xxl-min: 1.70rem;
  --xxl-max: 2.10rem;
  --font__xxl: clamp(var(--xxl-min),
      calc(var(--xxl-min) + (var(--xxl-max) - var(--xxl-min)) * ((100vw - var(--vw-min)) / (var(--vw-max) - var(--vw-min)))),
      var(--xxl-max));
  --nav-speed: 280ms;
  --easing: cubic-bezier(.2, .6, .2, 1);
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .to-top {
    transition: none;
  }
}

.to-top {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: calc(clamp(12px, 2vw, 24px) + env(safe-area-inset-bottom, 0px));
  inline-size: 64px;
  block-size: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility 0s linear .25s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.to-top img {
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.to-top:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}

.to-top:focus-visible {
  outline: 3px solid #99ccff;
  outline-offset: 3px;
}

body {
  font-family: var(--font__primary);
  font-size: var(--font__m);
  line-height: var(--lh__base);
  letter-spacing: var(--track__normal);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color_base);
  background-color: #fff;
}

.site_wrap {
  max-width: 1680px;
  margin: auto;
  background-color: #f7f7ed;
  background-image:
    linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 60%);
  background-position: left top, right top;
  background-size: 56px 100%, 56px 100%;
  background-repeat: no-repeat;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: calc(0.5rem + env(safe-area-inset-top, 0px));
  transform: translateY(-140%);
  padding: .75rem 1rem;
  font-weight: 700;
  line-height: 1;
  background: #111;
  color: #fff;
  border-radius: .75rem;
  z-index: 1000;
  text-decoration: none;
  transition: transform .12s ease-out;
  outline: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

.skip-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .skip-link {
    transition: none;
  }
}

@media (forced-colors: active) {
  .skip-link {
    border: 1px solid CanvasText;
  }
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

h1 {
  font-size: var(--font__xxl);
  line-height: 1.8;
  letter-spacing: var(--track__tight);
}

h2 {
  font-size: var(--font__xl);
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75em;
  margin: 1.5em 0;
  text-align: center;
}

h2::before,
h2::after {
  content: "";
  width: 1.2em;
  height: 2px;
  background: var(--color_base);
  opacity: .85;
}

h3 {
  font-size: var(--font__l);
  line-height: 1.4;
}

small,
.text-xs {
  font-size: var(--font__xs);
}

.nav_container {
  display: flex;
}

header {
  padding: 16px 0 4px;
}

header .container>a {
  display: block;
}

nav li a {
  font-weight: 600;
}

.nav_container {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav_container li a {
  transition: color .18s ease-out;
}

.nav_container li:nth-of-type(1) a:hover,
.nav_container li:nth-of-type(4) a:hover {
  color: var(--color_theme);
}

.nav_container li:nth-of-type(2) a:hover,
.nav_container li:nth-of-type(5) a:hover {
  color: var(--color_theme2);
}

.nav_container li:nth-of-type(3) a:hover {
  color: var(--color_theme3);
}

.nav_toggle {
  display: none;
  position: absolute;
  top: 12px;
  right: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #222;
  /* currentColor用 */
  z-index: 110;
}

.nav_toggle .bar {
  position: relative;
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 1px;
  transform-origin: center;
  transition: transform var(--nav-speed) var(--easing), opacity var(--nav-speed) var(--easing);
}

.nav_toggle .bar::before,
.nav_toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--nav-speed) var(--easing), top var(--nav-speed) var(--easing), bottom var(--nav-speed) var(--easing), opacity var(--nav-speed) var(--easing);
}

.nav_toggle .bar {
  top: 0;
}

.nav_toggle .bar::before {
  top: -8px;
}

.nav_toggle .bar::after {
  bottom: -8px;
}

.nav_scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--nav-speed) var(--easing);
  z-index: 90;
}

@media (max-width: 900px) {
  .nav_toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
    z-index: 120;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(80vw, 320px);
    background: #fff;
    box-shadow: -8px 0 24px rgba(0, 0, 0, .08);
    transform: translateX(100%);
    transition: transform var(--nav-speed) var(--easing);
    z-index: 100;
    padding: 84px 24px 24px;
    overflow-y: auto;
  }

  .site-nav .nav_container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav a {
    display: block;
    padding: 12px 4px;
    font-size: 1.125rem;
  }

  body.is-nav-open {
    overflow: hidden;
  }

  body.is-nav-open .site-nav {
    transform: translateX(0);
  }

  body.is-nav-open .nav_scrim {
    opacity: 1;
    pointer-events: auto;
  }

  body.is-nav-open .nav_toggle .bar {
    background: transparent;
  }

  body.is-nav-open .nav_toggle .bar::before {
    top: 0;
    transform: rotate(45deg);
  }

  body.is-nav-open .nav_toggle .bar::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  .site-nav,
  .nav_scrim,
  .nav_toggle .bar,
  .nav_toggle .bar::before,
  .nav_toggle .bar::after {
    transition: none !important;
  }
}

.header_btn {
  width: max-content;
}

.header_btn a {
  display: block;
  padding: 4px 16px 36px 16px;
  margin-left: 32px;
  border-left: 1px solid var(--color_base);
  border-bottom: 1px solid var(--color_base);
  background: var(--color_cta);
  border-radius: 0 0 0 32px;
  position: relative;
}

.header_btn a::after {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 4px;
  left: 2em;
  background: url(../images/mail.png) no-repeat center center;
  background-size: contain;
}

.hero {
  padding-top: 88px;
  padding-bottom: 16px;
}

.section_inner {
  max-width: var(--vw-max);
  min-width: var(--vw-min);
  padding: 0 16px;
  margin: auto;
}

.container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.hero_container {
  max-width: 400px;
}

.hero-copy {
  margin-top: 40px;
  text-align: start;
  line-height: 1.8;
  text-wrap: pretty;
}

.hero_media {
  padding-top: 40px;
  position: relative;
}

.hero_media img {
  width: 600px;
  height: auto;
}

.hero_media::before {
  display: block;
  width: 100px;
  height: 60px;
  content: "";
  position: absolute;
  top: 150px;
  left: -30px;
  background: url(../images/kumo-01.png) no-repeat;
  background-size: contain;
  pointer-events: none;
  animation: fuwa 3.5s ease-in-out infinite;
  animation-delay: 0s;
}

.hero_media::after {
  display: block;
  width: 100px;
  height: 100px;
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  background: url(../images/kumotori-02.png) no-repeat;
  background-size: contain;
  pointer-events: none;
  animation: fuwa 3.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes fuwa {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

.btn {
  width: max-content;
  margin: 80px auto 24px;
}

.btn a {
  width: 100%;
  display: block;
  padding: 4px 24px 36px 24px;
  border: 1px solid var(--color_base);
  background: var(--color_cta);
  border-radius: 64px;
  position: relative;
  font-weight: 600;
}

.btn a::after {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 4px;
  left: 4em;
  background: url(../images/mail.png) no-repeat center center;
  background-size: contain;
}

@keyframes woodpeck {
  0% {
    transform: translateX(0);
  }

  21% {
    transform: translateX(0);
  }

  22% {
    transform: translateX(var(--peck-x));
  }

  24% {
    transform: translateX(0);
  }

  26% {
    transform: translateX(var(--peck-x));
  }

  27.5% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }

}

.btn a::before {
  display: block;
  content: "";
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  left: -65px;
  background: url(../images/kumotori-04.png) no-repeat center center;
  background-size: contain;
  --peck-x: 8px;
  --cycle: 4.4s;
  display: inline-block;
  transform-origin: left center;
  animation: woodpeck var(--cycle) linear infinite;
}

section+section {
  margin-top: 120px;
}

h2 {
  text-align: center;
  margin-bottom: 48px;
}

.card-grid {
  /* 余白リセット */
  margin: 0;
  padding: 0;
  list-style: none;

  /* レスポンシブグリッド */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.card {
  --card-bg: #fff;
  --card-border: #e5e7eb;
  --card-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0 0 32px 32px;
  padding: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: clip;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--accent);

}

.card h3 {
  font-size: var(--font__ll);
  line-height: 1.3;
  margin: 8px 0 40px;
}

.card p {
  font-size: var(--font__s);
  line-height: 1.8;
  text-align: start;
  color: #374151;
}

.card p:last-of-type {
  margin-bottom: auto;
}

.card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  width: fit-content;
  padding: .3em 1em;
  border: 1px solid var(--color_base);
  border-radius: 32px;
  font-size: var(--font__s);
  font-weight: 600;
  text-decoration: none;
  background: var(--accent, #111827);
  color: #fff;
  transition: transform .12s ease, filter .12s ease;
}

.services_dtp {
  --accent: #28a3af;
}

.services_book {
  --accent: #b09c17;
}

.services_draw {
  --accent: #b7398d;
}

.services_dtp>p::before {
  display: block;
  content: url(../images/dtp_image.png);
  text-align: center;
  margin-bottom: 24px;
}

.services_book>p::before {
  display: block;
  content: url(../images/book_image.png);
  text-align: center;
  margin-bottom: 24px;

}

.services_draw>p::before {
  display: block;
  content: url(../images/draw_image.png);
  text-align: center;
  margin-bottom: 24px;

}

#books-title {
  letter-spacing: .1em;
}

.book-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.book-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.book-card .cover {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f3f4f6;
  margin-bottom: 12px;
}

.book-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* タイトル（2行まで） */
.book-card .title {
  font-size: clamp(1rem, .92rem + .4vw, 1.125rem);
  line-height: 1.35;
  margin: 0 0 6px;
}

.book-card .title a {
  color: inherit;
}

.book-card .title a:hover {
  text-decoration: underline;
}

/* 一言キャッチ（2行まで） */
.book-card .blurb {
  margin: 0 0 10px;
  color: #333;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--font__m);
}

.book-card .price {
  margin: 0 0 20px;
  font-size: var(--font__s);
  font-weight: 600;
}

.book-card .price .tax {
  font-weight: 400;
  color: #6b7280;
  margin-left: .25em;
}

.book-card .btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 32px;
  background: var(--color_base);
  color: #fff;
  font-size: var(--font__s);
  font-weight: 600;
  transition: transform .12s ease, filter .12s ease;
  width: fit-content;
}

.book-card .btn:focus-visible {
  outline: 2px solid #cbd5e1;
  outline-offset: 2px;
}

.profile .container {
  justify-content: center;
  gap: 56px;
  margin: 80px 0 0;
}

.profile_media {
  margin: 0;
  flex: 0 0 clamp(260px, 32vw, 400px);
  /* 最小260～最大400 */
}

.profile_media img {
  width: 100%;
  height: auto;
  display: block;
}

.profile_body {
  flex: 1 1 420px;
  min-width: 280px;
  max-width: 60ch;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.profile_org {
  font-size: var(--font__m);
  margin-left: -2em;
}

.profile_rep {
  margin-left: -1em;
}

.profile_rep .label {
  margin-right: .5em;
  color: #666;
  font-size: var(--font__s);
}

.profile_rep .value {
  font-size: var(--font__l);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.profile_rep::after {
  display: block;
  content: "Masaharu Hasegawa";
  font-size: var(--font__xxl);
  font-weight: 700;
  color: #ccc;
  margin-left: 0.5em;
}

.profile_facts {
  font-size: var(--font__s);
  margin: 0;
  padding-left: 1.1em;
  line-height: 1.8;
}

.profile_cta {
  margin-top: .5rem;
}

.profile_cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  width: fit-content;
  padding: .3em 1em;
  border: 1px solid var(--color_base);
  border-radius: 32px;
  font-size: var(--font__s);
  font-weight: 600;
  text-decoration: none;
  background: var(--color_theme);
  color: #fff;
  transition: transform .12s ease, filter .12s ease;
}

.contact {
  background: #fff url(../images/bg.jpg);
  padding: 72px 0 64px;
}

.contact_text {
  text-align: center;
}

section.faq {
  margin-top: 48px;
}

.faq {
  padding-block: clamp(24px, 3vw, 48px);
  margin-bottom: 80px;
}

.faq .section_inner {
  max-width: 960px;
  margin-inline: auto;
}

.faq details {
  border: 1px solid var(--c-border, #e5e7eb);
  border-radius: var(--radius, 12px);
  background: var(--c-surface, #fff);
  margin-block: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  overflow: clip;
}

.faq summary {
  list-style: none;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: clamp(14px, 2.5vw, 18px) clamp(16px, 3vw, 24px);
  font-weight: 600;
  cursor: pointer;
  color: var(--c-text-strong, #111827);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  width: 1em;
  height: 1em;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path fill="%23000" d="M8.47 4.47a.75.75 0 0 1 1.06 0l6 6a.75.75 0 0 1 0 1.06l-6 6a.75.75 0 1 1-1.06-1.06L13.94 12 8.47 6.53a.75.75 0 0 1 0-1.06Z"/></svg>') no-repeat center / contain;
  background: currentColor;
  transform: rotate(90deg);
  transition: transform .1s ease;
  opacity: .8;
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.faq summary:focus-visible {
  outline: 2px solid var(--c-focus, #2563eb);
  outline-offset: 3px;
  border-radius: 8px;
}

.faq .answer {
  padding-inline: clamp(16px, 3vw, 24px);
  padding-bottom: clamp(14px, 2.5vw, 18px);
  color: var(--c-text, #374151);
  line-height: 1.8;
}

.faq details .answer {
  height: 0;
  overflow: hidden;
}

/* モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .faq summary::after {
    transition: none;
  }
}

.site-footer {
  background-color: #fff;
  padding: 32px 0 16px;
}

.site-footer .container {
  align-items: center;
}

.footer_company {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.legal span {
  display: block;
}

.legal .name {
  font-size: var(--font__l);
  letter-spacing: .1em;
}

.legal .addr {
  font-size: var(--font__s);
}

.footer-nav>ul {
  display: flex;
  gap: 16px;
}

.copyright {
  text-align: right;
  padding-right: 32px;
}

.copyright small {
  color: #888;
  font-size: var(--font__xs);
}


/* レスポンシブ（360〜1200px想定） */
@media (max-width: 960px) {
  .service-flex {
    flex-direction: column;
  }

  .service-media {
    flex-basis: auto;
  }
}


@media screen and (max-width: 1070px) {
  header .section_inner {
    padding: 0;
  }

  header .container {
    flex-direction: row;
  }

  header .container>a {
    margin-left: 16px;
  }

  .container {
    flex-direction: column;
  }

  .hero .container {
    flex-direction: column-reverse;
  }

  .hero_container h1 {
    padding-top: 80px;
    padding-left: 20px;
  }

  .hero-copy {
    padding: 0 8px;
  }

  .btn {
    margin: 40px auto 24px;
  }

  section+section {
    margin-top: 80px;
  }

  h2 {
    margin-bottom: 24px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .profile .container {
    margin: 40px 0 0;
  }

  .profile_media img {
    width: 80%;
    height: auto;
    margin: auto;
  }

  .faq h2 {
    margin-bottom: 48px;
  }

  .site-footer .container {
    flex-direction: column-reverse;
  }

  .footer-nav {
    margin-top: 32px;
  }

  .footer-nav>ul {
    flex-direction: column;
    text-align: center;
  }

  .footer_company {
    padding-bottom: 40px;

  }

  .legal .addr {
    font-size: var(--font__xs);
  }
}

@media (max-width: 480px) {
  .faq summary {
    font-size: 1rem;
  }

  .faq .answer {
    font-size: .95rem;
  }
}

@media (max-width: 768px) {
  .profile_flex {
    flex-direction: column;
    align-items: center;
  }

  .profile_body {
    max-width: 42rem;
    padding-left: 2em;
  }
}

@media screen and (max-width: 650px) {
  .hero_media::before {
    left: 0;
    top: 140px;
  }

  .hero_media::after {
    top: -36px;
  }

  .card .btn,
  .book-card .btn,
  .profile_cta .btn {
    font-size: var(--font__m);
  }


}