@charset "utf-8";

/* 
Theme Name: Kuromine Kensetsu
Author: K.Kyoko
Description: Kuromine Kensetsu.co WP Theme
Version: 1.0
Text Domain: kuromine-kensetsu
*/

:root {
  --main-color: #555;
  --accent-color: #010100;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  padding-top: 180px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* トップページ */

.header {
  background-color: var(--main-color);
  padding: 40px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header__menu--sp {
  font-size: 24px;
  color: #fff;
}

.header__menu--sp:hover {
  cursor: pointer;
}

.header__right {
  display: flex;
  gap: 16px;
  justify-content: right;
}

#menu-open {
  display: none;
  font-size: 40px;
}

.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
}

.header__menu--sp.active .header__overlay {
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header__nav--sp {
  text-align: center;
  position: relative;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.header__menu--sp.active .header__nav--sp {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}

#menu-close {
  display: none;
  font-size: 40px;
  position: fixed;
  top: 40px;
  right: 20px;
}

#menu-close:hover {
  cursor: pointer;
}

.header__menu--sp.active #menu-open {
  visibility: hidden;
}

.header__menu--sp.active #menu-close {
  display: block;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 248px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 56px;
  color: #fff;
  font-size: 32px;
}

a.header__contact {
  background-color: var(--accent-color);
  display: inline-block;
  width: 240px;
  height: 80px;
  font-size: 36px;
  text-align: center;
  line-height: 80px;
  color: #fff;
}

.hero {
  display: flex;
  background: url(./img/top-1.avif) center bottom / cover no-repeat;
  min-height: 720px;
  align-items: center;
  padding: 120px 20px;
  justify-content: center;
  text-align: left;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--accent-color);
  opacity: 0.5;
}

.hero__copy {
  color: #fff;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: lighter;
  line-height: 1.2;
  position: relative;
}

.hero__sub {
  display: block;
  font-size: clamp(16px, 2.2vw, 32px);
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.section-title {
  color: #fff;
  text-align: center;
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 500;
}

.news {
  background: url(./img/company2.avif) center bottom / cover no-repeat;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.news__overlay {
  display: flex;
  justify-content: center;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 80px;
  background-color: rgba(1, 1, 0, 0.5);
}

.news__inner {
  width: 80%;
  color: #fff;
  font-size: 32px;
  font-weight: 100;
  text-align: left;
}

.news__list--top li {
  display: flex;
}

.news__list--top li a {
  display: flex;
  align-items: center;
  gap: 100px;
  width: 100%;
}

.news__list--top time {
  width: 140px;
  flex-shrink: 0;
}

.news__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.more {
  width: 320px;
  aspect-ratio: 10 / 3;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 48px;
  text-align: center;
  line-height: 96px;
  align-self: center;
}

.more a {
  display: block;
  width: 100%;
  height: 100%;
}


.about {
  background: url(./img/top-3.avif) center / cover no-repeat;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title {
  color: #fff;
  text-align: center;
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 500;
}

.about__overlay {
  display: flex;
  justify-content: center;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 80px;
  background-color: rgba(1, 1, 0, 0.5);
}

.about__inner {
  width: 80%;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  text-align: left;
}

.about p {
  font-size: 32px;
  line-height: 1.4;
  text-align: justify;
}

.about .about__inner .about__heading {
  font-size: clamp(28px, 3.33vw, 48px);
  font-weight: 300;
}



.projects>* {
  position: relative;
  z-index: 1;
}

.projects {
  background: url(./img/house4.avif) center / cover no-repeat;
  min-height: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 72px;
}

.projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(1, 1, 0, 0.3);
  z-index: 0;
}

.projects__heading {
  display: flex;
  flex-direction: column;
  width: 64%;
  gap: 48px;
}

.section-title {
  color: #fff;
  text-align: center;
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 500;
}

.projects__overlay {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-height: 400px;
  margin: 0 auto;
  padding: 120px 20px 0;
  background-color: rgba(1, 1, 0, 0.5);
}

.projects__inner {
  width: 90%;
  color: #fff;
  font-weight: 300;
  text-align: left;
  display: flex;
  gap: 64px;
}

.projects p {
  font-size: clamp(28px, 2vw, 32px);
  line-height: 1.4;
  text-align: justify;
  color: #fff;
  font-weight: 300;
}

.projects__title {
  font-size: 40px;
  display: block;
  margin-bottom: 24px;
}


.footer {
  background-color: #010100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 400px;
}

.footer__logo {
  width: 250px;
}

.footer p {
  color: #fff;
  font-weight: 300;
}

.footer__menu {
  display: flex;
  align-items: center;
  gap: 56px;
  color: #fff;
  font-size: 32px;
}

.footer__adress {
  font-size: 32px;
  line-height: 1.2;
}

.footer__copyright {
  font-size: 20px;
}

.pages {
  position: relative;
  overflow: hidden;
}

.pages::before {
  content: "";
  position: absolute;
  left: -20%;
  width: 140%;
  height: 100%;
  background: #555;
  transform: skewY(20deg);
  z-index: 0;
}

.pages>* {
  position: relative;
  z-index: 1;
}

/* 会社概要 */

.about-page .pages::before {
  top: 40%;
}

.page-title {
  font-size: 64px;
  text-align: center;
  margin-bottom: 106px;
}

.part-title {
  font-size: 40px;
  font-weight: bold;
  margin: 106px 0 64px;
}

.about-page .wrapper {
  flex-direction: column;
  margin-bottom: 106px;
}

.about-message {
  display: flex;
  justify-content: space-between;
}

.about-message__img {
  width: 400px;
  height: auto;
}

.about-message__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.about-page .part-title,
.about-page table {
  color: #fff;
}

.about-message__title {
  font-size: 40px;
}

.about-message__name {
  font-size: 36px;
}

.about-message__content {
  font-weight: 300;
  font-size: 32px;
  max-width: 720px;
}

.company-info {
  font-size: 32px;
  font-weight: 300;
  border-collapse: collapse;
  width: 100%;
  table-layout: auto;
}

.company-info th {
  font-weight: 300;
  text-align: left;
}

.company-info th:first-child,
.company-info td:first-child {
  border-right: #fff 1px solid;
  width: 128px;
  white-space: nowrap;
  padding-right: 40px;
}

.company-info th:nth-child(2),
.company-info td:nth-child(2) {
  padding-left: 40px;
}

.company-history {
  font-size: 32px;
  font-weight: 300;
  border-collapse: collapse;
  width: 100%;
  table-layout: auto;
}

.company-history td:first-child {
  width: 128px;
  white-space: nowrap;
  padding-right: 40px;
}

.company-history td:nth-child(2) {
  padding-left: 40px;
}


.recruitment {
  background: url(./img/top-6.avif) center / cover no-repeat;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title {
  color: #fff;
  text-align: center;
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 500;
}

.recruitment__overlay {
  display: flex;
  justify-content: center;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 80px;
  background-color: rgba(1, 1, 0, 0.5);
}

.recruitment__inner {
  width: 80%;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  text-align: left;
}

.recruitment p {
  font-size: 32px;
  line-height: 1.4;
  text-align: justify;
  display: flex;
  justify-content: center;
}

.recruitment__inner {
  font-size: clamp(28px, 3.33vw, 48px);
  font-weight: 300;
}

p.recruitment__small {
  padding-top: 16px;
  font-size: 20px;
}


.recruitment__contact {
  background-color: #555;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.recruitment__contact p {
  font-size: 36px;
  color: #fff;
}


/* 事業内容 */

.projects-page .pages::before {
  top: 42%;
}

.projects__explanation {
  display: flex;
  justify-content: center;
  font-size: clamp(28px, 2vw, 32px);
}

.projects-page .wrapper {
  flex-direction: column;
  gap: 136px;
  margin-bottom: 136px;
}

.project-category {
  display: flex;
  flex-direction: column;
  gap: 136px;
}

.project-category__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-wrap: wrap;
}

.project-category__title {
  font-size: 40px;
}

.project-category__heading p {
  font-size: clamp(28px, 2vw, 32px);
}

.project-category__item {
  display: flex;
  font-size: clamp(28px, 2vw, 32px);
  text-align: justify;
  justify-content: space-between;
  align-items: center;
}

.project-category__item:nth-of-type(even) {
  flex-direction: row-reverse;
  text-align: justify;
}

.project-category__name {
  display: flex;
  flex-direction: column;
  width: 560px;
}

.project-category__name dt,
.project-category__name dd {
  margin: 0;
}

.project-category__img {
  width: 560px;
  aspect-ratio: 14 / 9;
}

.theme-dark {
  color: #fff;
}


/* お知らせ */


.entries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  max-width: 1200px;
  margin: auto;
  margin: 56px auto 24px;
}

.entry-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.entry-item__thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-color: #eee;
  overflow: hidden;
  display: block;
}

.entry-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.entry-item__ttl {
  font-size: 24px;
  margin: 56px 0 24px;
}

.entry-item__date {
  color: #a1a1a1;
  margin-bottom: 24px;
}

.pager {
  display: flex;
  justify-content: center;
  margin: 80px auto 160px;
}

ul.page-numbers {
  display: flex;
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
  margin: auto;
}

.page-numbers span,
.page-numbers a {
  border: solid 1px #a1a1a1;
  width: 48px;
  display: block;
}


/* 記事 */

.news-detail-page .pages::before {
  top: -500px;
  height: 300%;
}

.article {
  max-width: 1000px;
  margin: 64px auto;
}

.entry-title {
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
}

.entry-date {
  font-size: 32px;
  color: #a1a1a1;
}

.post-categories {
  display: none;
}

.entry-thumb img {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-color: #eee;
  margin-top: 64px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.entry-content p {
  text-align: justify;
  font-size: 24px;
  margin-top: 64px;
  color: #fff;
}


/* お問合せ */

.contact-page .pages::before {
  top: 75%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto 160px;
  gap: 64px;
}


.label-text {
  min-height: 0;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  font-size: 24px;
}

.form-textarea {
  height: 120px;
  min-height: 120px;
  width: 100%;
  resize: vertical;
}

.required {
  color: red;
  padding-left: 6px;
}

.form-input,
.form-textarea,
.form-select {
  font-size: 24px;
  background-color: #eee;
  width: 100%;
}

input.contact-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  color: #fff;
}

.form-comment {
  color: #fff;
  text-align: center;
}

.wpcf7-spinner {
  display: none;
}

.contact-page .wpcf7-form div.wpcf7-response-output {
  text-align: center;
  border: var(--accent-color) solid 10px;
  color: #fff;
}


/* サンクス */

html.thanks-page,
body.thanks-page {
  height: 100%;
}

body.thanks-page {
  display: flex;
  flex-direction: column;
}

.thanks-page.pages {
  flex: 1;
}

.thanks-page.pages::before {
  top: 60%;
}

.thanks-page {
  min-height: 800px;
}

.thanks__comment {
  display: flex;
  justify-content: center;
  font-size: 24px;
}

.thanks__back {
  text-decoration: underline;
  text-align: center;
}

.thanks-page footer {
  bottom: 100%;
}


@media (max-width: 1200px) {

  .header {
    padding: 30px 20px;
  }

  .header__menu {
    font-size: 20px;
    gap: 20px;
  }

  .header__logo {
    width: 132px;
  }

  a.header__contact {
    width: 120px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
  }

  .header__inner {
    max-width: 1000px;
  }

  body {
    padding-top: 114px;
  }

  .hero {
    height: 480px;
    min-height: 0;
  }

  .news,
  .about,
  .projects {
    max-height: 500px;
    min-height: 0;
  }

  .hero__copy .hero__sub {
    max-width: 540px;
  }

  .news__overlay {
    max-width: 1000px;
    margin: 0 auto 24px;
    padding: 40px;
  }

  .news__inner {
    font-size: 24px;
  }

  .news__list--top li a {
    gap: 50px;
  }

  .news__list--top time {
    width: 80px;
  }

  .more {
    width: 240px;
    font-size: 32px;
    line-height: 72px;
    margin-bottom: 24px;
  }

  .about__overlay {
    max-width: 1000px;
    padding: 40px;
  }

  .about__inner {
    font-size: 20px;
  }

  .about p {
    font-size: 20px;
  }



  .projects {
    gap: 32px;
  }

  .projects__heading {
    width: 64%;
    gap: 24px;
  }

  .projects__overlay {
    max-width: 200px;
    min-height: 200px;
    padding: 8px 12px;
  }

  .projects__inner {
    gap: 24px;
    display: flex;
    align-items: flex-start;
  }

  .projects p {
    font-size: 16px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .projects__title {
    font-size: 24px;
    margin-bottom: 24px;
  }


  .footer {
    gap: 8px;
    height: 240px;
  }

  .footer__logo {
    width: 180px;
  }

  .footer__menu {
    gap: 16px;
    font-size: 24px;
  }

  .footer__adress {
    font-size: 24px;
    line-height: 1.2;
  }

  .footer__copyright {
    font-size: 16px;
  }


  /* 会社概要 */

  .about-page .pages::before {
    top: 45%;
  }

  .page-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .part-title {
    font-size: 20px;
    margin: 40px 0 32px;
  }

  .about-page .wrapper {
    margin-bottom: 40px;
    padding: 0 40px;
  }

  .about-message {
    justify-content: left;
    gap: 32px;
  }

  .about-message__img {
    width: 200px;
    height: 100%;
  }

  .about-message__inner {
    gap: 20px;
  }

  .about-message__title {
    font-size: 32px;
  }

  .about-message__name {
    font-size: 24px;
  }

  .about-message__content {
    font-size: 16px;
    max-width: 480px;
  }

  .company-info {
    font-size: 16px;
  }

  .company-info th:first-child,
  .company-info td:first-child {
    width: 128px;
    white-space: nowrap;
    padding-right: 32px;
  }

  .company-info th:nth-child(2),
  .company-info td:nth-child(2) {
    padding-left: 32px;
  }

  .company-history {
    font-size: 16px;
  }

  .company-history td:first-child {
    width: 128px;
    white-space: nowrap;
    padding-right: 32px;
  }

  .company-history td:nth-child(2) {
    padding-left: 32px;
  }


  .recruitment {
    min-height: 500px;
  }

  .section-title {
    font-size: 32px;
  }

  .recruitment__overlay {
    max-width: 1000px;
    margin: 24px auto;
    padding: 40px;
  }

  .recruitment p {
    font-size: 20px;
  }

  p.recruitment__small {
    padding-top: 8px;
    font-size: 16px;
  }


  .recruitment__contact {
    min-height: 200px;
    gap: 16px;
  }

  .recruitment__contact p {
    font-size: 24px;
  }


  /* 事業内容 */

  .projects-page .pages::before {
    top: 42%;
  }

  .projects__explanation {
    font-size: 20px;
  }

  .projects-page .wrapper {
    max-width: 800px;
    padding: 0 40px;
    max-width: 800px;
    padding: 0 40px;
    gap: 80px;
    margin-bottom: 80px;
  }

  .project-category {
    gap: 80px;
  }

  .project-category__heading {
    gap: 16px;
  }

  .project-category__title {
    font-size: 24px;
  }

  .project-category__heading p {
    font-size: 16px;
  }

  .project-category__name {
    width: 320px;
  }

  .project-category__item {
    font-size: 16px;
  }

  .project-category__img {
    width: 300px;
  }



  /* お知らせ */

  .entries {
    padding: 0 40px;
  }

  .entry-item__ttl {
    font-size: 16px;
    margin: 24px 0 0;
  }

  .entry-item__date {
    font-size: 12px;
    margin: 0 0 12px;
  }

  .pager {
    margin: 40px auto 80px;
  }

  .page-numbers {
    font-size: 20px;
  }

  .page-numbers span,
  .page-numbers a {
    width: 24px;
    height: 24px;
  }


  /* 記事 */

  .article {
    width: 80%;
  }

  .entry-title {
    font-size: 32px;
  }

  .entry-date {
    font-size: 24px;
  }

  .entry-content p {
    font-size: 20px;
  }


  /* お問合せ */

  .contact-page .pages::before {
    top: 70%;
  }

  .contact-form {
    width: 80%;
    margin: 0 auto 80px;
  }

  .submit {
    margin: 0 auto;
  }


  /* サンクス */

  .thanks-page .pages::before {
    top: 60%;
  }

  .thanks-page {
    min-height: 560px;
  }

}


@media (max-width: 768px) {

  .header__menu--pc {
    display: none;
  }

  #menu-open {
    display: block;
  }

  .news,
  .about,
  .projects {
    max-height: 1000px;
    min-height: 0;
  }

  .news__overlay {
    max-width: 1000px;
    margin: 0 auto 24px;
    padding: 40px;
  }

  .news__inner {
    font-size: 16px;
  }

  .news__list--top li a {
    gap: 8px;
  }

  .news__list--top time {
    width: 60px;
  }

  .more {
    width: 180px;
    font-size: 24px;
    line-height: 54px;
  }

  .about .about__inner .about__heading {
    font-size: 24px;
  }

  .about p {
    font-size: 16px;
    line-height: 1.5;
  }

  .projects {
    gap: 24px;
  }

  .projects__heading {
    gap: 8px;
  }

  .projects__heading p {
    font-weight: 400;
  }

  .projects .projects__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .projects__overlay {
    max-width: 200px;
    min-height: 200px;
    aspect-ratio: 1 / 1;
    padding: 8px 12px;
  }


  .footer {
    gap: 8px;
    height: 180px;
  }

  .footer__logo {
    width: 120px;
  }

  .footer__menu {
    gap: 8px;
    font-size: 16px;
  }

  .footer__adress {
    font-size: 16px;
  }

  .footer__copyright {
    font-size: 12px;
  }


  /* 会社概要 */

  .about-page .pages::before {
    top: 43%;
  }

  .about-page .wrapper {
    padding: 0 20px;
  }

  .page-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .part-title {
    font-size: 20px;
    margin: 20px 0 32px;
  }

  .about-message__img {
    width: 80px;
    padding-top: 10px;
  }

  .about-message {
    gap: 8px;
  }

  .about-message__title {
    font-size: 24px;
  }

  .about-message__name {
    font-size: 20px;
  }

  .about-message__content {
    text-align: justify;
  }


  .recruitment {
    min-height: 300px;
  }

  .recruitment__overlay {
    margin: 16px auto;
    padding: 16px 8px;
  }

  .recruitment .section-title,
  .recruitment__contact .section-title {
    font-size: 24px;
  }

  .recruitment p {
    font-size: 16px;
  }

  p.recruitment__small {
    font-size: 12px;
  }

  .recruitment__contact {
    min-height: 160px;
    gap: 8px;
  }

  .recruitment__contact p {
    font-size: 16px;
  }


  /* 事業内容 */

  .projects-page .pages::before {
    top: 42%;
  }

  .projects__explanation {
    font-size: 16px;
  }

  .projects-page .wrapper {
    max-width: 800px;
    padding: 0 16px;
    gap: 20px;
  }

  .project-category {
    gap: 20px;
  }

  .project-category__name {
    width: 100%;
    order: 2;
  }

  .project-category__item,
  .project-category__item:nth-of-type(even) {
    font-size: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .project-category__img {
    width: 100%;
    order: 1;
  }



  /* お知らせ */

  .news-page {
    min-height: 70dvh;
  }

  .entries {
    padding: 0 16px;
    gap: 16px;
    margin: 0;
  }


  /* 記事 */

  .news-detail-page {
    min-height: 70dvh;
  }

  .article {
    width: 90%;
  }

  .entry-title {
    font-size: 24px;
  }

  .entry-date {
    font-size: 16px;
  }

  .entry-content p {
    font-size: 16px;
  }


  /* サンクス */

  .thanks-page {
    min-height: 70dvh;
  }

  .thanks__comment {
    width: 80%;
    margin: auto;
    text-align: justify;
    font-size: 16px;
  }

  .thanks__back {
    font-size: 12px;
  }

}