@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

html {
  font-size: 10px;
  /* overflow-x: hidden; */
}

/* html.fixed {
  overflow: hidden;
  height: 100%;
} */

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.694444vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.6643vw;
  }
}

:root {
  --bs-body-color: #332828;
  --bs-body-bg: #fff;
  --bs-font: "Noto Sans JP", sans-serif;
  --bs-body-font-family: var(--bs-font);
  --bs-body-font-size-pc: 1.6rem;
  --bs-body-font-size-sp: 1.4rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.75;
  --bs-body-letter-spacing: 0; 
  --bs-black: #332828;
  --bs-key-color: #FFC6C6;
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size-pc);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  letter-spacing: var(--bs-body-letter-spacing);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

section {
  padding: 8rem 0;
  overflow: hidden;
}

img {
  zoom: normal;
}

a {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

/* common */
.section-ttl,
.page_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6rem;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

.content-width {
  width: 108rem;
  margin: 0 auto;
}

.subpage h2 {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  font-weight: bold;
  font-size: 2.8rem;
  position: relative;
}

.subpage h2::after {
  content: "";
  display: inline-block;
  width: 10rem;
  height: 0.4rem;
  background: var(--bs-key-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.subpage p {
  margin-bottom: 1.5em;
}

@media (max-width: 768px) {
  body {
    font-size: var(--bs-body-font-size-sp);
  }

  section {
    padding: 4rem 0;
  }

  .section-ttl,
  .page_ttl {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }

  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }

  .subpage section {
    padding: 4rem 0 6rem;
  }

  .content-width {
    width: 90%;
  }

  .subpage h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    font-size: 2.1rem;
  }

  .subpage h2::after {
    width: 8rem;
  }

}


/* header */
.header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  background:none;
  color: #fff;
}

.subpage .header {
  color: var(--bs-black);
}

.subpage.is-active .header {
  color: #fff;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4rem;
}

.header-item.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 18rem;
  height: 8rem;
  background: var(--bs-key-color);
  color: var(--bs-black);
}

.header-link {
  display: block;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.header-link:hover {
  opacity: 0.7;
}

.header-menu {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 20px;
  cursor: pointer;
  z-index: 999;
}

.menu-bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .menu-bar {
  background-color: var(--bs-black);
}

.subpage.is-active .menu-bar {
  background-color: #fff;
}

.header-menu:hover .menu-bar:nth-child(2) {
  left: 15px;
}

.menu-bar:nth-child(1) {
  top: 10px;
}

.menu-bar:nth-child(2) {
  top: 20px;
}

.menu-bar:nth-child(3) {
  top: 30px;
}

.header-menu.is-active .menu-bar:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header-menu.is-active .menu-bar:nth-child(2) {
  left: 30px;
  opacity: 0;
}

.header-menu.is-active .menu-bar:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body.is-active {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .header-menu {
    top: 2rem;
    right: 2rem;
  }

  .header-nav {
    width: 100vw;
    height: 100vh;
    background: -o-linear-gradient(45deg, #332828, #ffc6c6);
    background: linear-gradient(45deg, #332828, #ffc6c6);
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
  }

  .header-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .header-item {
    margin: 20px 10px;
  }

  .header-item.contact {
    width: auto;
    height: auto;
    background: none;
    color: #fff;
  }

  .header-menu {
    display: block;
  }
}


/* mv */
.mv {
  height: 64.5rem;
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 198, 198, 0.6) 40%, rgba(255, 255, 255, 0) 40%),
  url(../img/mv.jpg);
  background-position: 0 0;
  background-size: cover;
}

.mv-all {
  max-width: 122rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.mv-content {
  position: absolute;
  bottom: 8rem;
  left: 0;
  z-index: 10;
}

.mv-subcopy,
.mv-ttl {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.mv-subcopy {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 6rem;
  padding-bottom: 2rem;
  line-height: 1;
  position: relative;
}

.mv-subcopy::after {
  content: "";
  display: inline-block;
  width: 12rem;
  height: 0.4rem;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

.mv-ttl {
  font-size: 4rem;
  font-weight: bold;
  line-height: 160%;
}

@media screen and (max-width: 768px) {
  .mv {
    height: 48rem;
    background-position: 48% center;
  }

  .mv-all {
    width: 90%
  }

  .mv-content {
    bottom: 4rem;
  }
  
  .mv-subcopy {
    margin-bottom: 4rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .mv-subcopy::after {
    width: 8rem;
    height: 0.2rem;
  }

  .mv-ttl {
    font-size: 2.4rem;
  }
}


/* problem */
.problem-copy-red {
  color: var(--bs-key-color);
}

.problem-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 95rem;
  gap: 4rem;
  margin: 0 auto;
}

.problem-item {
  width: 33.33%;
  padding: 2rem;
  border-radius: 4px;
  border: 2px solid var(--bs-key-color);
  text-align: center;
}

.problem-txt {
  padding-top: 2rem;
}

.problem-bottom {
  margin-top: 6rem;
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .problem-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
    width: 90%;
  }

  .problem-item {
    width: 30rem;
    margin: 0 auto;
  }

  .problem-bottom {
    width: 90%;
    font-size: 1.6rem;
    margin: 4rem auto 0;
  }

}


/* feature */
.feature {
  position: relative;
  background: #FFF4F4;
}

.feature::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12rem solid transparent;
  border-left: 12rem solid transparent;
  border-top: 8rem solid #fff;
  border-bottom: 0;
  position: absolute;
  top: 0;
  left: calc(50% - 12rem);
  z-index: 1;
}

.feature .section-ttl {
  margin: 4rem 0 6rem;
}

.feature-list {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  width: 95rem;
  margin: 0 auto;
}

.feature-item {
  width: 33.33%;
  text-align: center;
}

.feature-item-ttl {
  margin-top: 2rem;
  font-size: 2.1rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .feature::after {
    border-right: 6rem solid transparent;
    border-left: 6rem solid transparent;
    border-top: 4rem solid #fff;
    left: calc(50% - 6rem);
  }

  .feature .section-ttl {
    margin: 2rem 0 3rem;
  }

  .feature-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
    width: 90%;
  }

  .feature-item {
    width: 28rem;
    margin: 0 auto;
  }

  .feature-item-ttl {
    margin-top: 1.5rem;
    font-size: 1.8rem;
  }

}


/* curriculum */
.curriculum-list {
  display: flex;
  width: 100%;
}

.curriculum-item {
  width: 25%;
  height: 40rem;
  padding: 2rem;
}

.curriculum-item:first-child {
  background: linear-gradient(90deg, rgba(51, 40, 40, 0.6) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/curriculum1.jpeg);
  background-position: center;
  background-size: cover;
}

.curriculum-item:nth-child(2) {
  background: linear-gradient(90deg, rgba(51, 40, 40, 0.6) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/curriculum2.jpg);;
  background-position: 70% center;
  background-size: cover;
}

.curriculum-item:nth-child(3) {
  background: linear-gradient(90deg, rgba(51, 40, 40, 0.6) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/curriculum3.jpg);
  background-position: 80% center;
  background-size: cover;
}

.curriculum-item:last-child {
  background: linear-gradient(90deg, rgba(51, 40, 40, 0.6) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/curriculum4.jpg);
  background-position: 88% center;
  background-size: cover;
}

.curriculum-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 4px;
}

.curriculum-item-ttl {
  margin-bottom: 4rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.curriculum-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18rem;
  height: 4rem;
  color: var(--bs-black);
  font-weight: bold;
  background: #fff;
  border-radius: 4px;
  transition: 0.3s all ease;
}

.curriculum-btn:hover  {
  background: var(--bs-key-color);
  transform: translate3d(0, 0.4rem, 0);
  box-shadow: none;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .curriculum-list {
    flex-direction: column;
  }

  .curriculum-item {
    width: 100%;
    height: 28rem;
  }

  .curriculum-item-ttl {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
}

/* company */
.company-table {
  width: 68rem;
  margin: 0 auto;
}

.company-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.company-tr + .company-tr {
  margin-top: 3rem;
}

.company-th {
  font-weight: normal;
  white-space: nowrap;
  width: 12rem;
  margin-right: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bs-key-color);
  text-align: center;
  color: #989898;
}

.company-td {
  width: calc(100% - 13rem);
  padding: 0 2rem 0.5rem;
  border-bottom: 1px solid #DDDDDD;
}

.company-tr:last-child .company-th,
.company-tr:last-child .company-td {
  border-bottom: 0;
}

@media screen and (max-width: 768px) {
  .company-table {
    width: 90%;
  }

  .company-th {
    width: 8rem;
    font-size: 1.2rem;
  }

  .company-td {
    width: calc(100% - 9rem);
    padding: 0 1rem 0.5rem;
  }

}

/* question */
.question {
  background: #F4F4F4;
}

.question-list {
  width: 75rem;
  margin: 0 auto;
}

.question-item + .question-item {
  margin-top: 2rem;
}

.question-q {
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 1.6rem 2rem;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background: var(--bs-key-color);
}

.question-q::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-right: 2rem;
  padding: 0.8rem 1.2rem 1.2rem;
  background: #fff;
  border-radius: 50%;
  color: var(--bs-key-color);
  font-weight: bold;
  line-height: 1;
}

.question-a {
  display: flex;
  padding: 2rem;
  border-right: 2px solid var(--bs-key-color);
  border-left: 2px solid var(--bs-key-color);
  border-bottom: 2px solid var(--bs-key-color);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #fff;
}

.question-a::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-right: 2rem;
  padding: 0.8rem 1.2rem;
  background: var(--bs-key-color);
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .question-list {
    width: 90%;
  }

  .question-q,
  .question-a {
    padding: 1rem 1.5rem;
  }

  .question-q::before {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    padding: 0.4rem 0.8rem 0.7rem;
  }

  .question-a::before {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    padding: 0.6rem 0.85rem;
  }
}

/* contact */
.contact .contact-wrap {
  width: 58rem;
  margin: 0 auto; 
  padding-bottom: 3.2rem;
}

.contact .table_contact {
  width: 100%;
}

.contact .table_contact th {
  display: block;
  width: 100%;
  text-align: left;
}

.contact .table_contact td {
  display: block;
  width: 100%;
  padding: 1rem 0 3rem;
  text-align: left;
}

.contact .table_contact .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  color: #fff;
  background: var(--bs-key-color);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2em;
  width: 5rem;
  height: 2rem;
  vertical-align: middle;
}

.contact .table_contact .ttl {
  display: inline-block;
  vertical-align: middle;
}

.contact .table_contact input[type=text],
.contact .table_contact input[type=email],
.contact .table_contact input[type=tel] {
  background: #F4F4F4;
  width: 100%;
  line-height: 1.4;
  padding: 1.7rem 2rem;
  outline: none;
  border-radius: 4px;
}

.contact .foot {
  padding: 1rem 0 4rem;
  text-align: center;
}

.contact .foot.bottom {
  padding: 4rem 0 0;
}

.contact .foot a {
  text-decoration: underline;
  transition: 0.3s all ease;
}

.contact .foot a:hover {
  opacity: 0.7;
}

.contact .btn {
  display: block;
  width: 28rem;
  line-height: 7rem;
  margin: 0 auto;
  background: var(--bs-key-color);
  border-radius: 4px;
  font-size: 2rem;
  font-weight: bold;
  transition: 0.3s all ease;
  text-align: center;
  letter-spacing: 0.1em;
}

.contact .btn:hover {
  transform: translate3d(0, 0.4rem, 0);
  box-shadow: none;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .contact .contact-wrap {
    width: 90%;
    padding-bottom: 2rem;
  }

  .contact .table_contact .required {
    font-size: 1rem;
    width: 4rem;
    height: 2rem;
    margin-left: 1rem;
  }

  .contact .table_contact td {
    padding: 0.5rem 0 2rem;
  }

  .contact .table_contact input[type=text],
  .contact .table_contact input[type=email],
  .contact .table_contact input[type=tel] {
    padding: 1rem;
  }

  .contact .btn {
    width: 22rem;
    line-height: 5rem;
    font-size: 1.6rem;
  }

  .contact .foot {
    padding: 1.2rem 0 2.4rem;
    text-align: left;
  }
  
  .contact .foot.bottom {
    padding: 2.4rem 0 0;
  }
}

/* -----------------------
お問い合わせ確認・送信画面
----------------------- */
.subpage .contact-wrap {
  padding: 16rem 0;
}

.subpage .table_contact {
  margin-bottom: 4rem;
}

.subpage .table_contact td {
  display: flex;
  align-items: center;
  width: 100%;
  height: 5.6rem;
  margin: 1rem 0 3rem;
  padding: 0 2rem;
  background: #F4F4F4;
  width: 100%;
  line-height: 1.4;
  outline: none;
  border-radius: 4px;
}

.subpage .btn_confirm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.subpage .btn.back {
  text-align: center;
  background: #D9D9D9;
  color: var(--bs-black);
}

.subpage.mail .btn.back-top {
  display: block;
  margin: 10rem auto 0;
  border: 2px solid currentColor;
  background: #fff;
  color: var(--bs-key-color);
  text-align: center;
}

.subpage.mail .btn.back-top:hover {
  color: #fff;
  background: var(--bs-key-color);
  border: 2px solid var(--bs-key-color);
}

.subpage.mail .contact-wrap p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .subpage .contact-wrap {
    padding: 4rem 0;
  }

  .subpage.confirm section,
  .subpage.mail section {
    padding: 8rem 0;
  }

  .subpage .table_contact {
    margin-bottom: 3rem;
  }

  .subpage .table_contact td {
    height: 4rem;
    margin: 0.5rem 0 2rem;
    padding: 1rem;
  }

  .subpage .btn_confirm {
    flex-direction: column;
    gap: 2rem;
  }

  .subpage.mail .contact-wrap p {
    width: 90%;
    margin: 0 auto;
  }
}

/* footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid #DDDDDD;
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.footer-link {
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.footer-link:hover {
  opacity: 0.6;
}

.copyright {
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 11.2rem;
}

@media screen and (max-width: 768px) {
  .footer-list {
    flex-direction: column;
    gap: 2rem;
  }

  .copyright {
    margin-top: 8rem;
  }
}


/* privacy */
.subpage .privacy {
  padding: 24rem 0 16rem;
}

.subpage .privacy .privacy-intro,
.subpage .privacy .privacy-content {
  margin-bottom: 8rem;
}

.subpage .privacy .privacy-content:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .subpage .privacy {
    padding: 12rem 0 6rem;
  }

  .subpage .privacy .privacy-intro,
  .subpage .privacy .privacy-content {
    margin-bottom: 4rem;
  }
}

/* curriculum subpage */
.curriculum-mv {
  height: 30rem;
  margin-top: 8rem;
  color: #fff;
}

.start-up .curriculum-mv {
  background: linear-gradient(90deg, rgba(51, 40, 40, 0.6) 100%, rgba(255, 255, 255, 0) 100%), url(../img/curriculum1.jpeg);
  background-position: center 40%;
  background-size: cover;
}

.writing .curriculum-mv {
  background: linear-gradient(90deg, rgba(51, 40, 40, 0.6) 100%, rgba(255, 255, 255, 0) 100%), url(../img/curriculum2.jpg);
  background-position: center 40%;
  background-size: cover;
}

.sales .curriculum-mv {
  background: linear-gradient(90deg, rgba(51, 40, 40, 0.6) 100%, rgba(255, 255, 255, 0) 100%), url(../img/curriculum3.jpg);
  background-position: center 70%;
  background-size: cover;
}

.presentation .curriculum-mv {
  background: linear-gradient(90deg, rgba(51, 40, 40, 0.6) 100%, rgba(255, 255, 255, 0) 100%), url(../img/curriculum4.jpg);
  background-position: center 70%;
  background-size: cover;
}

.curriculum-mv .mv-all {
  display: flex;
  align-items: center;
  justify-content: center;
}

.curriculum-mv .mv-content {
  position: unset;
  text-align: center;
}

.curriculum-mv .mv-ttl,
.curriculum-mv p {
  margin: 0;
}

.curriculum-content {
  margin-bottom: 8rem;
}

.sub-curriculum .p-intro {
  margin-bottom: 8rem;
}

.sub-curriculum-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  width: 98rem;
  margin: 0 auto 8rem;
}

.sub-curriculum-item li {
  width: calc(50% - 1.5rem);
  padding: 2rem;
  border: 2px solid var(--bs-key-color);
  border-radius: 4px;
}

.sub-curriculum-item li h3 {
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  background: var(--bs-key-color);
  border-radius: 4px;
  font-weight: bold;
}

.subpage .sub-curriculum-item li p {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .curriculum-mv {
    height: 15rem;
  }

  .curriculum-mv .mv-ttl {
    font-size: 2.1rem;
  }

  .curriculum-content,
  .sub-curriculum .p-intro {
    margin-bottom: 4rem;
  }

  .sub-curriculum-item {
    flex-direction: column;
    width: 90%;
    margin: 0 auto 4rem;
  }

  .sub-curriculum-item li {
    width: 100%;
    padding: 1.5rem;
  }

  .sub-curriculum-item li h3 {
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
  }

}