<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* title
======================================== */
#recruit .ud-nav-list {
  gap: 50px;
  margin-bottom: initial;
}

@media screen and (max-width: 1200px) {
  #recruit .ud-nav-list {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  #recruit .ud-nav-list {
    gap: 10px;
  }
}

/* bg-check
======================================== */
#recruit .bg-check {
  background-image: url(../../img/common/img_check_bg.webp);
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}

/* rec-greeting
======================================== */
#rec-greeting {
  position: relative;
  z-index: 1;
}
#rec-greeting::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 224px;
  background-color: var(--color-white);
  z-index: -1;
}
#rec-greeting .gre-inr {
  border-radius: 100px 100px 0 0;
  padding: 0 192px 80px 192px;
  background-color: var(--color-sand-beige-3);
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.1);
}

#rec-greeting .icon_ttl_blue {
  margin-left: auto;
  margin-right: auto;
}

#rec-greeting .gre-ttl {
  font-family: var(--font-mplus-rounded);
  font-size: var(--fs-xlg);
  font-weight: 800;
  letter-spacing: 0.5em;
  padding-bottom: 32px;
  text-align: center;
}
#rec-greeting .gre-img {
  width: 100%;
  height: 348px;
}

#rec-greeting .gre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#rec-greeting .gre-text {
  padding-bottom: 64px;
}

#rec-greeting .gre-name {
  text-align: right;
}

@media screen and (max-width: 1300px) {
  #rec-greeting .gre-inr {
    width: calc(100% - 60px);
    padding: 0 80px 60px 80px;
  }
}

@media screen and (max-width: 960px) {
  #rec-greeting::before {
    height: 160px;
  }
  #rec-greeting .gre-img {
    height: 300px;
  }
  #rec-greeting .gre-text {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  #rec-greeting::before {
    height: 120px;
  }
  #rec-greeting .gre-inr {
    padding: 0 40px 40px 40px;
    border-radius: 80px 80px 0 0;
  }
  #rec-greeting .gre-ttl {
    padding-bottom: 24px;
  }
  #rec-greeting .gre-text {
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 599px) {
  #rec-greeting::before {
    height: 104px;
  }
  #rec-greeting .gre-inr {
    padding: 0 30px 40px 30px;
    border-radius: 60px 60px 0 0;
  }
  #rec-greeting .gre-img {
    height: 200px;
  }
  #rec-greeting .gre-ttl {
    white-space: nowrap;
  }
}

/* interview
======================================== */
#interview .int-ttl-inr {
  max-width: 960px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

#interview .int-ttl {
  margin-left: auto;
  margin-right: auto;
}

#interview .int-hero {
  padding: 40px 64px 0 64px;
  margin: 48px auto 40px auto;
  border-left: 1px solid var(--color-brown);
  border-right: 1px solid var(--color-brown);
  position: relative;
  background-color: var(--color-white);
}
#interview .int-hero::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 40px;
  background-color: var(--color-white);
  top: 100%;
  left: 0;
}

#interview .int-hero-ttl {
  position: absolute;
  font-family: var(--font-mplus-rounded);
  font-size: var(--fs-xlg);
  letter-spacing: 0.33em;
  font-weight: 800;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 24px;
  z-index: 1;
  white-space: nowrap;
}
#interview .int-hero-ttl:before,
#interview .int-hero-ttl:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: var(--color-brown);
}

#interview .int-hero-ttl:before {
  left: -100%;
}
#interview .int-hero-ttl:after {
  right: -100%;
}

#interview .int-hero p {
  font-weight: 800;
}

#interview .staff-cards {
  display: flex;
  background-color: var(--color-white);
  position: relative;
  z-index: 2;
}

#interview .staff-cards img {
  width: calc(50% - 32px);
}

@media screen and (max-width: 1200px) {
  #interview .int-ttl {
    width: calc(100% - 60px);
  }
}

@media screen and (max-width: 960px) {
  #interview .int-hero {
    padding: 40px 40px 0 40px;
    margin: 24px auto 40px auto;
  }
  #interview .staff-cards img {
    width: calc(50% - 16px);
  }
}

@media screen and (max-width: 768px) {
  #interview .int-hero {
    border-bottom: 1px solid var(--color-brown);
    padding: 24px 40px;
  }
  #interview .int-hero::after {
    display: none;
  }
  #interview .staff-cards {
    gap: 40px;
    justify-content: center;
    background-color: initial;
  }
  #interview .staff-cards img {
    width: 100%;
    max-width: 400px;
  }
}

@media screen and (max-width: 599px) {
  #interview .int-hero {
    padding: 24px 30px;
  }
}

/* staff-detail */
#interview .staff-detail-inr {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-width: 1090px;
  width: 100%;
}

#interview .staff-detail-inr::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(100% + 120px);
  background-color: var(--color-green-5);
  z-index: -1;
}

#interview .staff-detail-hd {
  padding-top: 80px;
}

#interview .staff-detail-hd img {
  width: 257px;
  height: 100%;
  object-fit: contain;
}

#interview .staff-detail-ttl img {
  width: 100%;
}

#interview .staff-detail {
  position: relative;
  padding-left: 83px;
}

#interview .staff-detail .staff-main {
  position: relative;
  gap: 50px;
  z-index: 2;
  padding-top: 50px;
}

#interview .staff-detail .staff-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 41.5px);
  transform: translateX(-50%);
  width: 100vw;
  height: calc(100% - 100px);
  background-color: var(--color-white);
  z-index: -1;
}
#interview .staff-detail .staff-main-img {
  width: 100%;
  max-width: 533px;
  position: relative;
}

#interview .staff-detail .staff-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#interview .staff-detail .staff-main-img .num-pc {
  position: absolute;
  width: 83px;
  height: 92px;
  right: 100%;
  top: 40px;
}
#interview .staff-detail .staff-main-img .num-sp {
  display: none;
}

#interview .staff-detail .staff-main-text {
  gap: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#interview .staff-detail .text-ja {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-orientation: upright;
  gap: 64px;
  display: flex;
  flex-direction: column;
  color: var(--color-black);
  position: relative;
  align-items: center;
}

#interview .staff-detail .text-ja .name {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#interview .staff-detail .text-ja .label {
  position: absolute;
  width: 90px;
  left: calc(100% + 50px);
  top: -64px;
}

#interview .staff-detail .name-jp {
  font-family: var(--font-mplus-rounded);
  font-size: var(--fs-md2);
  font-weight: 800;
  letter-spacing: 0.3em;
}

#interview .staff-detail .position-year {
  padding-top: 24px;
  border-top: 1px solid var(--color-black);
  margin-top: 1em;
}
#interview .staff-detail .position-year .year {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 0;
}

#interview .staff-detail .text-ja .position-year .pd {
  padding-top: 1em;
}
#interview .staff-detail .name-en {
  height: 34px;
}

@media screen and (max-width: 1200px) {
  #interview .staff-detail {
    padding-left: 72px;
  }
  #interview .staff-detail .staff-main::before {
    height: calc(100% - 72px);
    left: calc(50% - 36px);
  }

  #interview .staff-detail .staff-main-img .num-pc {
    width: 72px;
    height: 80px;
    top: 32px;
  }
  #interview .staff-detail .staff-main-img {
    max-width: 480px;
  }
  #interview .staff-detail .staff-main-text {
    gap: 64px;
  }
}

@media screen and (max-width: 960px) {
  #interview .staff-detail-inr::before {
    height: calc(100% + 80px);
  }
  #interview .staff-detail {
    padding-left: 0;
  }
  #interview .staff-detail .staff-main {
    padding-bottom: 50px;
  }
  #interview .staff-detail .staff-main::before {
    height: 100%;
    left: 50%;
  }
  #interview .staff-detail .staff-main-img {
    max-width: 400px;
  }
  #interview .staff-detail .staff-main-img .num-sp {
    display: block;
    position: absolute;
    width: 83px;
    height: 92px;
    left: 0;
    top: 24px;
  }

  #interview .staff-detail .staff-main-img .num-pc {
    display: none;
  }
  #interview .staff-detail .name-en {
    height: 28px;
  }
}

@media screen and (max-width: 768px) {
  #interview .staff-detail-hd {
    padding-top: 40px;
  }
  #interview .staff-detail-hd img {
    width: 200px;
  }
  #interview .staff-detail .staff-main {
    flex-direction: column;
    gap: 0;
  }
  #interview .staff-detail .staff-main-img {
    max-width: 480px;
    margin: 0 auto;
  }
  #interview .staff-detail .text-ja .label {
    width: 80px;
    top: -40px;
    left: calc(100% + 40px);
  }
  #interview .staff-detail .staff-main-text {
    gap: 40px;
    padding-left: 100px;
  }
  #interview .staff-detail .text-ja .name {
    padding-top: 40px;
  }
}

@media screen and (max-width: 599px) {
  #interview .staff-detail {
    padding-left: 0;
  }
  #interview .staff-detail .staff-main::before {
    left: 50%;
  }
  #interview .staff-detail .staff-main-img .num-sp {
    width: 64px;
    height: 72px;
    top: 16px;
    left: 0;
  }
  #interview .staff-detail .text-ja .label {
    width: 70px;
    top: -24px;
    left: calc(100% + 32px);
  }
  #interview .staff-detail .staff-main-text {
    gap: 32px;
    padding-left: 56px;
  }
  #interview .staff-detail .text-ja .name {
    padding-top: 32px;
  }
}

@media screen and (max-width: 480px) {
  #interview .staff-detail .staff-main-text {
    padding-left: 15px;
  }
}

/* qa */
#interview .staff-qa {
  padding-top: 40px;
  gap: 56px;
  position: relative;
  z-index: 2;
}

#interview .staff-qa .qa-text {
  max-width: 536px;
  width: 100%;
}

#interview .staff-qa .q {
  background-color: var(--color-blue-2);
  color: var(--color-white);
  padding: 16px 40px;
  padding-left: calc(1em + 40px);
  font-size: var(--fs-md-lg);
  text-indent: -1em;
}

#interview .staff-qa .a {
  color: var(--color-black);
  padding: 16px 40px;
}

#interview .staff-qa .qa-cont:last-of-type .a {
  padding-bottom: 0;
}

#interview .staff-qa .qa-img {
  max-width: 390px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#interview .staff-qa .qa-img img {
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  #interview .staff-qa {
    justify-content: flex-start;
    gap: 40px;
  }
  #interview .staff-qa .qa-text {
    max-width: 500px;
  }
  #interview .staff-qa .qa-img {
    justify-content: space-around;
    flex: 1;
  }
}

@media screen and (max-width: 1100px) {
  #interview .staff-qa .qa-text {
    max-width: 420px;
  }
  #interview .staff-qa .q {
    padding: 16px 24px;
    padding-left: calc(1em + 24px);
  }
  #interview .staff-qa .a {
    padding: 16px 24px;
  }
}

@media screen and (max-width: 960px) {
  #interview .staff-qa .qa-text {
    max-width: 432px;
  }
}

@media screen and (max-width: 850px) {
  #interview .staff-qa .qa-text {
    max-width: 384px;
  }
}

@media screen and (max-width: 768px) {
  #interview .staff-qa {
    position: relative;
  }
  #interview .staff-qa .qa-text {
    max-width: 100%;
  }
  #interview .staff-qa .qa-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 80%;
    margin: 0 auto;
  }

  #interview .staff-qa .qa-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #interview .staff-detail .staff-qa .qa-img .img1 {
    position: absolute;
    bottom: 100%;
    right: 0;
    z-index: 2;
    margin-top: 0;
  }
  #interview .staff-detail .staff-qa .qa-img .img2 {
    object-fit: cover;
  }
}

@media screen and (max-width: 599px) {
  #interview .staff-qa {
    gap: 24px;
  }
  #interview .staff-qa .q {
    padding: 8px 16px;
    padding-left: calc(1em + 16px);
  }
  #interview .staff-qa .a {
    padding: 16px;
  }
  #interview .staff-qa .qa-img {
    max-width: 80%;
  }
}

@media screen and (max-width: 480px) {
  #interview .staff-qa .qa-img {
    max-width: 100%;
  }
}

/* staff1 */
#interview .staff-detail.staff1 .staff-qa .qa-img .img1 {
  width: 341px;
  height: 525px;
  margin-top: -92px;
  margin-left: 0;
  margin-right: auto;
}
#interview .staff-detail.staff1 .staff-qa .qa-img .img2 {
  aspect-ratio: 390/286;
}
@media screen and (max-width: 1200px) {
  #interview .staff-detail.staff1 .staff-qa .qa-img .img1 {
    max-width: 300px;
    width: 100%;
    height: auto;
    aspect-ratio: 341/525;
    margin-top: -72px;
  }
}

@media screen and (max-width: 768px) {
  #interview .staff-detail.staff1 .staff-qa .qa-img .img1 {
    width: 200px;
    height: auto;
    aspect-ratio: 140/196;
  }
}
@media screen and (max-width: 599px) {
  #interview .staff-detail.staff1 .staff-qa .qa-img .img1 {
    width: 120px;
  }
}

@media screen and (max-width: 480px) {
  #interview .staff-detail.staff1 .staff-qa .qa-img .img1 {
    width: 100px;
    right: -15px;
  }
}

/* staff2 */

#interview .staff-detail.staff2 .staff-main {
  padding-top: calc(50px + 64px);
}

#interview .staff-detail.staff2 .staff-main-text {
  gap: 32px;
}
#interview .staff-detail.staff2 .name-en {
  height: 64px;
}
@media screen and (max-width: 768px) {
  #interview .staff-detail.staff2 .staff-qa .qa-img .img1 {
    height: auto;
    width: 224px;
    bottom: calc(100% + 25px);
    right: 30px;
  }
  #interview .staff-detail.staff2 .staff-main {
    padding-top: 40px;
  }
}

@media screen and (max-width: 650px) {
  #interview .staff-detail.staff2 .staff-qa .qa-img .img1 {
    width: 180px;
    right: 15px;
  }
}

@media screen and (max-width: 599px) {
  #interview .staff-detail.staff2 .staff-qa .qa-img .img1 {
    width: 160px;
    right: 0;
  }
}

@media screen and (max-width: 480px) {
  #interview .staff-detail.staff2 .staff-qa .qa-img .img1 {
    width: 120px;
    right: 0;
  }
}

/* work
======================================== */
#work {
  padding-top: 200px;
  position: relative;
  z-index: 3;
}
#work .work-inr {
  background-color: var(--color-white);
  border-radius: 100px;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
  max-width: 1240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#work .work-ttl {
  position: relative;
}

#work .work-ttl-img {
  position: absolute;
  bottom: 100%;
  left: 10%;
  width: 400px;
  height: 325px;
  z-index: 2;
}
#work .work-ttl-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#work .work-ttl-txt {
  position: absolute;
  width: 318px;
  height: 300px;
  right: 10%;
  transform: translateY(-60%);
}

#work .tt {
  padding: 100px;
  position: relative;
  z-index: 1;
}

#work .tt::before {
  position: absolute;
  content: "";
  background: url(../../img/common/img_blue_dotted.svg) repeat center center /
    contain;
  width: 4px;
  height: calc(100% - 200px + 40px);
  top: 100px;
  left: calc(100px + 56.5px);
  transform: translateX(-50%);
  z-index: -1;
}

#work .tt-item {
  gap: 40px;
}

#work .tt-time {
  width: 113px;
  height: 106px;
}

#work .tt-body {
  flex: 1;
}

#work .tt-hd {
  font-family: var(--font-mplus-rounded);
  font-size: var(--fs-md2);
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--color-blue-2);
}

#work .tt-desc {
  font-size: var(--fs-base);
}

@media screen and (max-width: 1300px) {
  #work .work-inr {
    width: calc(100% - 60px);
  }
}

@media screen and (max-width: 1200px) {
  #work .work-ttl-txt {
    width: 280px;
    height: auto;
    right: 5%;
  }
}

@media screen and (max-width: 960px) {
  #work {
    padding-top: 120px;
  }
  #work .work-inr {
    border-radius: 80px;
  }
  #work .work-ttl-txt {
    width: 200px;
    right: 8%;
  }
  #work .work-ttl-img {
    width: 240px;
    height: auto;
  }
  #work .tt {
    padding: 80px;
  }

  #work .tt::before {
    left: calc(80px + 40px);
    height: calc(100% - 160px - 24px);
    top: calc(80px + 40px);
  }
  #work .tt-time {
    width: 80px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  #work .work-ttl-txt {
    width: 180px;
  }
  #work .work-ttl-img {
    width: 200px;
    height: auto;
  }
  #work .tt {
    padding: 64px 40px;
  }
  #work .tt::before {
    left: calc(40px + 32px);
    height: calc(100% - 128px - 32px);
    top: calc(64px + 32px);
  }
  #work .tt-item {
    gap: 24px;
  }
  #work .tt-time {
    width: 64px;
    height: auto;
  }
}

@media screen and (max-width: 599px) {
  #work {
    padding-top: 80px;
  }
  #work .tt {
    padding: 40px;
  }
  #work .tt::before {
    top: 40px;
    height: calc(100% - 80px - 40px);
  }
  #work .work-inr {
    border-radius: 30px;
  }
  #work .tt-item {
    align-items: flex-start;
  }
  #work .work-ttl-txt {
    width: 120px;
  }
  #work .work-ttl-img {
    width: 160px;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  #work .tt {
    padding: 40px 24px;
  }
  #work .tt::before {
    left: calc(24px + 32px);
    height: calc(100% - 80px - 32px);
    top: 40px;
  }
  #work .tt-item {
    gap: 16px;
  }
  #work .tt-hd {
    text-align-last: initial;
    letter-spacing: 0.2em;
    font-size: var(--fs-md3);
  }
  #work .work-ttl-img {
    width: 120px;
  }
}

/* outline
======================================== */
#outline {
  background-color: var(--color-very-light-gray);
  padding-top: 160px;
}

#outline .ol-inr {
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
}

#outline .ol-hd {
  gap: 32px;
  padding-bottom: 24px;
}

#outline .ol-ttl {
  width: 233px;
  height: auto;
}

#outline .ol-desc {
  flex: 1;
}

#outline .ol-desc-ttl {
  padding-bottom: 32px;
  font-size: var(--fs-xl2);
  font-family: var(--font-mplus-rounded);
  font-weight: 800;
  letter-spacing: 0.33em;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

#outline .ol-desc-ttl:after {
  content: "";
  flex: 1;
  top: 50%;
  width: 60%;
  height: 1px;
  background-color: var(--color-brown);
  margin-left: 16px;
}

#outline .ol-desc-txt {
  font-family: var(--font-mplus-rounded);
  font-size: var(--fs-md);
  font-weight: 800;
  letter-spacing: 0.2em;
}

#outline .ol-txt p {
  padding-bottom: 32px;
}

#outline .ol-btn {
  gap: 8px;
  padding-bottom: 56px;
}
#outline .ol-btn .btn {
  padding-top: 16px;
  padding-bottom: 16px;
  width: calc(50% - 4px);
  text-align: center;
  font-size: var(--fs-md-mid);
  color: var(--color-white);
  font-weight: 800;
  letter-spacing: 0.33em;
  text-indent: 0.33em;
}

#outline .ol-btn .btn.btn-blue {
  background-color: var(--color-blue-2);
}

#outline .ol-btn .btn.btn-green {
  background-color: var(--color-green-5);
}

#outline .ol-detail {
  padding: 56px 96px;
  background-color: var(--color-white);
}

#outline .ol-detail h4,
#outline .ol-employ {
  font-family: var(--font-mplus-rounded);
  font-weight: 800;
  letter-spacing: 0.33em;
  color: var(--color-blue-2);
  text-align: center;
}

#outline .ol-detail h4 {
  font-size: var(--fs-md-mid);
  padding-bottom: 16px;
}

#outline .ol-employ {
  font-size: var(--fs-md-lg);
}

#outline .ol-list {
  color: var(--color-black);
  display: grid;
  grid-template-columns: 160px 1fr;
}

#outline .ol-list dt {
  padding-left: 32px;
  padding-right: 50px;
  text-align: justify;
  text-align-last: justify;
}

#outline .ol-list dt,
#outline .ol-list dd {
  border-bottom: 1px solid var(--color-sand-beige-2);
  padding-top: 16px;
  padding-bottom: 16px;
}

#outline .ol-list dd .bold {
  font-weight: 800;
}
#outline .ol-list dd ul li {
  text-indent: -6em;
  padding-left: 6em;
}

#outline .ol-list dt:last-of-type,
#outline .ol-list dd:last-of-type {
  border-bottom: none;
}

/* 保育補助（パート） */
#outline #parttime.ol-detail h4 {
  color: var(--color-green-5);
}
@media screen and (max-width: 599px) {
  #outline .ol-list dd ul li {
    text-indent: initial;
    padding-left: initial;
  }
}

@media screen and (max-width: 960px) {
  #outline {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 120px;
  }
  #outline .ol-hd {
    gap: 24px;
  }
  #outline .ol-ttl {
    width: 200px;
  }

  #outline .ol-desc-ttl {
    padding-bottom: 16px;
  }
  #outline .ol-txt p {
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 768px) {
  #outline .ol-ttl {
    width: 180px;
  }
  #outline .ol-btn {
    padding-bottom: 40px;
  }
  #outline .ol-detail h4,
  #outline .ol-txt p {
    padding-bottom: 8px;
  }
  #outline .ol-detail {
    padding: 40px;
  }
}

@media screen and (max-width: 599px) {
  #outline {
    padding-top: 80px;
  }
  #outline .ol-hd {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px;
  }
  #outline .ol-ttl {
    width: 120px;
  }
  #outline .ol-desc-ttl {
    padding-bottom: 8px;
  }
  #outline .ol-txt p {
    padding-bottom: 16px;
  }

  #outline .ol-btn .btn {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1.2;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: var(--fs-md2);
  }
  #outline .ol-detail {
    padding: 30px 24px;
  }
  #outline .ol-list {
    grid-template-columns: 1fr;
  }

  #outline .ol-list dt {
    text-align: initial;
    text-align-last: initial;
    letter-spacing: 0.3em;
    padding-left: 16px;
    padding-bottom: 0;
    padding-right: 0;
    border-bottom: none;
    font-weight: 800;
  }

  #outline .ol-list dd {
    padding-left: 16px;
    padding-top: 8px;
  }
}
</pre></body></html>