/* =========================
   BASE
========================= */

:root {
  --main: #2ed7cd;
  --accent: #23a19a;
  --text: #111111;
  --line: #999999;
  --white: #ffffff;

  --site-width: 600px;
  --content-width: 520px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  background: #ffffff;
  color: var(--text);

  font-family:
    "Noto Sans JP",
    sans-serif;

  font-size: 16px;

  -webkit-font-smoothing: antialiased;

}


a {
  color: inherit;
  text-decoration: none;
}


img {
  display: block;
  max-width: 100%;
}


button {
  font: inherit;
}


/* =========================
   SITE
========================= */

.site {
  width: 100%;
  max-width: var(--site-width);

  margin: 0 auto;

  background: #ffffff;
}

main {
  padding-top: 72px;
}


/* =========================
   COMMON
========================= */

.content-width {
  width: calc(100% - 80px);
  max-width: var(--content-width);

  margin-left: auto;
  margin-right: auto;
}


.section {
  margin-top: 66px;
}


.section-title {
  margin: 0 0 15px;

  color: var(--accent);

  font-size: 22px;
  line-height: 1.5;

  font-weight: 700;
}

.section-body {
  font-size: 20px;
  line-height: 2.0;

  font-weight: 400;
}

.section-body p {
  margin: 0;
}


/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  display: grid;
  grid-template-columns:
    96px
    1fr
    96px;

  align-items: center;

  width: 100%;
  max-width: var(--site-width);
  height: 72px;

  margin: 0 auto;

  background: var(--main);
  color: #ffffff;

  transition: transform 0.25s ease;
}


.header.is-hidden {
  transform: translateY(-100%);
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 100%;

  font-size: 32px;
  line-height: 1;

  font-weight: 700;
  letter-spacing: 0.08em;
}


.header-action {
  height: 72px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 5px;

  color: #ffffff;

  background: transparent;
  border: 0;

  padding: 0;

  cursor: pointer;
}


.header-small-text {
  font-size: 13px;
  line-height: 1;

  font-weight: 400;
}

.menu-icon {
  width: 38px;

  display: flex;
  flex-direction: column;

  gap: 7px;
}

.menu-icon span {
  display: block;

  width: 100%;
  height: 4px;

  border-radius: 2px;

  background: #ffffff;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.header-menu.is-open .menu-icon span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.header-menu.is-open .menu-icon span:nth-child(2) {
  opacity: 0;
}

.header-menu.is-open .menu-icon span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.mail-icon {
  width: 43px;
  height: auto;
}


/* =========================
   GLOBAL MENU
========================= */

.global-menu {
  display: none;

  position: fixed;
  top: 72px;
  left: 0;
  right: 0;

  z-index: 999;

  width: 100%;
  max-width: var(--site-width);

  margin: 0 auto;

  max-height: calc(100vh - 72px);
  overflow-y: auto;

  background: #ffffff;
}

.global-menu.is-open {
  display: block;
}

.global-menu-inner {
  width: calc(100% - 80px);
  max-width: var(--content-width);

  margin: 0 auto;

  padding:
    34px
    0
    48px;
}


/* 上部ボタン */

.menu-buttons {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 22px;

  margin-bottom: 34px;
}

.menu-button {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 5px;

  min-height: 42px;

  padding:
    7px
    10px;

  border: 1px solid #777777;
  border-radius: 7px;

  color: #666666;

  font-size: 16px;
  font-weight: 700;
}


/* リンク */

.global-menu-links {
  width: 100%;
}

.global-menu-group {
  display: flex;
  flex-direction: column;

  gap: 18px;

  margin-bottom: 42px;
}

.global-menu-group a,
.global-menu-heading {
  margin: 0;

  font-size: 16px;
  line-height: 1.6;

  font-weight: 500;
}

.global-menu-group:nth-child(2) a {
  padding-left: 14px;
}

.global-menu-heading {
  margin-bottom: 3px;
}


/* X */

.menu-x-link {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border: 1px solid #777777;
  border-radius: 50%;

  color: #555555;

  margin-top: 26px;
}

.menu-x-link svg {
  width: 20px;
  height: 20px;
}

/* =========================
   HERO
========================= */

.hero {
  padding-top: 42px;
  padding-bottom: 10px;
}

.hero-inner {
  width: calc(100% - 24px);
  max-width: 576px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 24px;
}

.hero-image-wrap {
  flex: 0 0 235px;
}

.hero-image {
  width: 235px;
  height: auto;

  object-fit: contain;
}

.hero-copy {
  padding-top: 4px;
}

.hero-sub {
  margin: 0 0 8px 7px;

  color: var(--accent);

  font-size: 26px;
  line-height: 1.4;

  font-weight: 500;
  letter-spacing: 0.05em;

  white-space: nowrap;
}

.hero-title {
  margin: 0;

  color: var(--accent);

  font-size: 70px;
  line-height: 1.05;

  font-weight: 700;
  letter-spacing: 0.05em;

  white-space: nowrap;
}


/* =========================
   SERVICES
========================= */

.service-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px 18px;

  padding: 0 2px;
}


.service-card {
  min-height: 92px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 27px;
  align-items: center;
  column-gap: 10px;

  padding:
    14px
    10px
    14px
    16px;

  border: 1px solid #777777;
  border-radius: 9px;

  background: #ffffff;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}


.service-card:hover {
  background: #f7f7f7;

  transform: translateY(-1px);
}


.service-text {
  font-size: 17px;
  line-height: 1.55;

  font-weight: 400;
}


.circle-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 27px;
  height: 27px;

  border: 1px solid #888888;
  border-radius: 50%;

  color: #777777;

  font-size: 25px;
  line-height: 1;

  font-family: Arial, sans-serif;

  padding-bottom: 2px;
}



/* =========================
   WORKS
========================= */

.works-list {
  border-top: 1px solid var(--line);
}


.works-item {
  position: relative;

  min-height: 96px;

  display: grid;

  grid-template-columns:
    76px
    1fr
    28px;

  align-items: center;

  column-gap: 22px;

  padding:
    12px
    13px
    12px
    27px;

  border-bottom: 1px solid var(--line);

  transition: background-color 0.15s ease;
}


.works-item:hover {
  background: #f8f8f8;
}


.works-image {
  width: 76px;
  height: 76px;

  object-fit: cover;
}


.works-content {
  min-width: 0;
}


.works-date {
  display: block;

  margin-bottom: 2px;

  color: #777777;

  font-size: 12px;
  line-height: 1.4;
}


.works-title {
  margin: 0;

  font-size: 16px;
  line-height: 22px;

  font-weight: 400;
}


.works-arrow {
  justify-self: end;
}


.more-wrap {
  margin-top: 36px;

  text-align: center;
}


.more-link {
  display: inline-block;

  font-size: 14px;
  line-height: 1.4;

  text-decoration: underline;

  text-underline-offset: 3px;

  color: #555555;
}


/* =========================
   MESSAGE
========================= */

.message-section {
  margin-top: 68px;
  margin-bottom: 66px;
}


.message-layout {
  display: grid;

  grid-template-columns:
    150px
    1fr;

  align-items: center;

  gap: 42px;
}


.profile-image {
  width: 150px;
  height: 150px;

  object-fit: cover;

  background: #666666;
}


.message-content {
  min-width: 0;
}


.message-text {
  margin: 0;

  font-size: 17px;
  line-height: 2.0;

  font-weight: 400;
}


.message-more {
  margin-top: 18px;

  text-align: right;
}


/* =========================
   MESSAGE PAGE
========================= */

.message-page {
  padding-bottom: 72px;
}


.message-page-title {
  margin-top: 52px;
  margin-bottom: 42px;
}


/* 代表画像 + 氏名 */

.message-profile-header {
  display: grid;

  grid-template-columns:
    220px
    1fr;

  align-items: center;

  gap: 56px;

  margin-bottom: 46px;
}


.message-profile-image {
  width: 220px;
  height: 220px;

  object-fit: cover;

  background: #666666;
}


.message-profile-name p {
  margin: 0;

  font-size: 20px;
  line-height: 1.7;

  font-weight: 400;
}


/* 本文 */

.message-page-body {
  font-size: 20px;
  line-height: 2;

  font-weight: 400;
}


.message-page-body p {
  margin:
    0
    0
    32px;
}


.message-page-body strong {
  font-weight: 700;
}


.message-lead {
  margin-bottom: 28px !important;
}


/* PROFILE */

.profile-box {
  margin-top: 46px;

  padding:
    20px
    22px;

  border: 1px solid #999999;

  color: #666666;
}


.profile-box-title {
  margin:
    0
    0
    12px;

  font-size: 15px;
  line-height: 1.6;

  font-weight: 400;
}


.profile-box-text {
  font-size: 14px;
  line-height: 1.9;

  font-weight: 400;
}


.profile-box-text p {
  margin: 0;
}


/* =========================
   SERVICE PAGE
========================= */

.service-page {
  padding-bottom: 72px;
}


.service-page-title {
  margin-top: 52px;
  margin-bottom: 22px;
}


/* MAIN IMAGE */

.service-page-image-wrap {
  width: 100%;

  margin-bottom: 32px;
}


.service-page-image {
  width: 100%;
  height: auto;

  object-fit: cover;
}


/* BODY */

.service-page-body {
  font-size: 20px;
  line-height: 2;

  font-weight: 400;
}


.service-page-body p {
  margin:
    0
    0
    30px;
}


.service-page-body strong {
  font-weight: 700;
}


/* SERVICE LINKS */

.service-page-links {
  margin-top: 44px;
}


/* =========================
   COMPANY
========================== */

.company-page {
  padding-bottom: 72px;
}

.company-page-title {
  margin-top: 52px;
  margin-bottom: 32px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  line-height: 1.7;
}

.company-table th,
.company-table td {
  padding: 20px 16px;
  border-bottom: 1px solid #cccccc;
  vertical-align: top;
}

.company-table tr:first-child th,
.company-table tr:first-child td {
  border-top: 1px solid #cccccc;
}

.company-table th {
  width: 30%;
  font-weight: 700;
  text-align: left;
  background: #f7f7f7;
}

.company-table td {
  width: 70%;
  font-weight: 400;
}


/* =========================
   POLICY/PRIVACY
========================== */

.policy-page {
  padding-bottom: 72px;
}

.policy-page-title {
  margin-top: 52px;
  margin-bottom: 32px;
}

.policy-body {
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
}

.policy-body > p {
  margin: 0 0 36px;
}

.policy-section {
  margin-top: 44px;
}

.policy-section h2 {
  margin: 0 0 18px;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 700;
}

.policy-section p {
  margin: 0 0 18px;
}

.policy-section ol {
  margin: 0;
  padding-left: 1.6em;
}

.policy-section li {
  margin-bottom: 10px;
}

.policy-date {
  margin-top: 48px !important;
}


/* =========================
   CONTACT
========================== */

.contact-page {
  padding-bottom: 72px;
}

.contact-page-title {
  margin-top: 52px;
  margin-bottom: 24px;
}

.contact-intro {
  margin: 0 0 40px;
  font-size: 17px;
  line-height: 1.8;
}

.contact-intro a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  width: 100%;
}

.contact-field {
  margin-bottom: 30px;
}

.contact-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.required-label {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--main);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  vertical-align: middle;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #999999;
  border-radius: 6px;
  background: #ffffff;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.contact-field input {
  height: 52px;
}

.contact-field textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid var(--main);
  outline-offset: 1px;
  border-color: var(--main);
}

.contact-privacy {
  margin-top: 6px;
  margin-bottom: 28px;
}

.contact-privacy label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.7;
  cursor: pointer;
}

.contact-privacy input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.contact-privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-submit {
  text-align: center;
}

.contact-submit-button {
  width: 100%;
  max-width: 320px;
  min-height: 56px;
  border: 2px solid #2ed7cd;
  border-radius: 8px;
  background: #ffffff;
  color: #2ed7cd;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.contact-submit-button:hover {
  opacity: 0.85;
}

.contact-submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


/* =========================
   BEFORE CONTACT
========================== */

.before-contact-page {
  padding-bottom: 72px;
}

.before-contact-page-title {
  margin-top: 52px;
  margin-bottom: 34px;
}

.before-contact-body {
  font-size: 20px;
  line-height: 2.0;
}

.before-contact-lead {
  margin: 0 0 34px;
}

.before-contact-section {
  margin-top: 34px;
}

.before-contact-section h2 {
  margin: 0 0 4px;

  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
}

.before-contact-section p {
  margin: 0;
}

.before-contact-price {
  margin-top: 4px !important;

  color: #ff3333;

  font-weight: 500;
}

.before-contact-end {
  margin: 38px 0 0;
}

.before-contact-guide {
  margin: 34px 0 0;
}

.before-contact-cta {
  margin-top: 38px;

  text-align: center;
}

.before-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 5px;

  min-width: 196px;
  height: 48px;

  padding: 0 12px;

  border: 2px solid var(--main);
  border-radius: 8px;

  background: #ffffff;
  color: var(--main);

  font-size: 19px;
  line-height: 1;
  font-weight: 700;
}

.before-contact-button .circle-arrow {
  width: 18px;
  height: 18px;

  font-size: 19px;

  flex-shrink: 0;
}


/* =========================
   THANKS
========================== */

.thanks-page {
  padding-bottom: 72px;
}

.thanks-page-title {
  margin-top: 52px;
  margin-bottom: 28px;
}

.thanks-body {
  font-size: 18px;
  line-height: 2;
}

.thanks-body p {
  margin: 0 0 36px;
}

.thanks-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  min-height: 54px;
  margin: 0 auto;
  padding: 12px 24px;
  border: 2px solid var(--main);
  border-radius: 8px;
  background: #ffffff;
  color: var(--main);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}


/* =========================
   WORKS PAGE
========================== */

.works-page {
  padding-bottom: 72px;
}

.works-page-title {
  margin-top: 52px;
  margin-bottom: 28px;
  text-align: center;
}


/* =========================
   WORK DETAIL
========================== */

.work-detail-page {
  padding-bottom: 72px;
}

.work-detail-page-title {
  margin-top: 52px;
  margin-bottom: 28px;
  text-align: center;
}

.work-detail-image-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.work-detail-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.work-detail-body {
  font-size: 20px;
  line-height: 2;
}

.work-detail-title {
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
}

.work-detail-body p {
  margin: 0 0 6px;
}

.work-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-detail-list li {
  margin-bottom: 4px;
}

.work-detail-list li::before {
  content: "・";
}

.work-detail-back {
  margin-top: 44px;
  text-align: center;
}

.work-detail-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 52px;
  padding: 10px 16px;

  border: 1px solid #888888;
  border-radius: 8px;

  color: #777777;

  font-size: 18px;
  font-weight: 700;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: var(--main);

  color: #ffffff;
}


.footer-inner {
  padding:
    40px
    0
    24px;
}


.footer-buttons {
  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 12px;

  margin-bottom: 45px;
}


.footer-button {
  min-width: 196px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 5px;

  border: 1px solid rgba(255, 255, 255, 0.9);

  border-radius: 8px;

  font-size: 19px;
  line-height: 1;

  font-weight: 700;
}


.footer-button-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;

  border: 1px solid #ffffff;
  border-radius: 50%;

  font-family: Arial, sans-serif;

  font-size: 19px;

  padding-bottom: 2px;
}


.home-icon {
  width: 28px;
  height: 28px;

  margin-left: 4px;

  color: #ffffff;

  flex-shrink: 0;
}


.menu-button .home-icon {
  color: #666666;
}


.footer-mail-icon {
  width: 26px;
  height: auto;

  margin-left: 2px;
}


.footer-nav {
  width: 340px;
  max-width: calc(100% - 80px);

  margin: 0 auto;
}


.footer-nav-group {
  display: flex;
  flex-direction: column;

  gap: 17px;

  margin-bottom: 48px;
}


.footer-nav-group a,
.footer-nav-heading {
  margin: 0;

  font-size: 16px;
  line-height: 1.6;

  font-weight: 400;
}


.footer-nav-heading {
  margin-bottom: 2px;
}


.x-link {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  margin:
    18px
    auto
    42px;

  border-radius: 50%;

  background: #ffffff;

  color: #111111;

  border: 1px solid #111111;
}

.x-link svg {
  width: 21px;
  height: 21px;

  display: block;
}

.footer-bottom {
  text-align: center;

  font-size: 14px;
  line-height: 1.8;
}


.footer-bottom p {
  margin: 0;
}


.footer-policy {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 4px;
}


/* =========================
   SMALL SCREEN
========================= */

@media (max-width: 600px) {

  /* =========================
     GLOBAL LAYOUT
  ========================= */

  .content-width {
    width: calc(100% - 48px);

    margin-left: auto;
    margin-right: auto;
  }


  /* =========================
     HEADER
  ========================= */

  .header {
    display: block;
  }

  .header-menu {
    position: absolute;
    left: 16px;
    top: 0;

    height: 72px;
  }

  .header-logo {
    position: absolute;
    left: 51%;
    top: 0;

    transform: translateX(-55%);

    height: 72px;
  }

  .header-contact {
    position: absolute;
    right: 18px;
    top: 0;

    height: 72px;
  }


/* =========================
   GLOBAL MENU
========================= */

.menu-buttons {
  width: calc(100% + 48px);
  margin-left: -24px;

  display: flex;
  gap: 10px;

  margin-bottom: 34px;
}

.menu-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 4px;

  width: auto;

  padding: 7px 8px;

  white-space: nowrap;

  font-size: 15px;
}

.menu-button .footer-button-arrow {
  width: 14px;
  height: 14px;

  font-size: 14px;

  flex-shrink: 0;
}

.menu-button .home-icon {
  width: 22px;
  height: 22px;

  margin-left: 4px;

  flex-shrink: 0;
}

.menu-button .footer-mail-icon {
  width: 22px;

  margin-left: 4px;

  flex-shrink: 0;
}


  /* =========================
     HERO
  ========================= */

  .hero {
    padding-top: 36px;
    padding-bottom: 0;
  }

  .hero-inner {
    width: calc(100% - 16px);

    margin: 0 auto;

    gap: 10px;
  }

  .hero-image-wrap {
    flex: 0 0 40%;
  }

  .hero-image {
    width: 100%;
  }

  .hero-copy {
    flex: 1;
    min-width: 0;

    padding-top: 0;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-title {
    font-size: 46px;
  }


  /* =========================
     WORKS
  ========================= */

  .works-item {
    grid-template-columns:
      64px
      1fr
      23px;

    column-gap: 14px;

    min-height: 84px;

    padding:
      10px
      8px
      10px
      10px;
  }

  .works-image {
    width: 64px;
    height: 64px;
  }


/* =========================
   SERVICES
========================= */

.service-grid {
  gap: 12px 8px;
  padding: 0;
}

.service-card {
  min-height: 86px;

  grid-template-columns: minmax(0, 1fr) 20px;
  column-gap: 6px;

  padding:
    12px
    8px
    12px
    10px;
}

.service-text {
  font-size: 15px;
  line-height: 1.5;
}

.circle-arrow {
  width: 20px;
  height: 20px;
  font-size: 18px;
}


/* =========================
   MESSAGE
========================= */

.message-layout {
  display: block;
}

.profile-image {
  width: 150px;
  height: 150px;

  margin-bottom: 22px;

  object-fit: cover;
}

.message-content {
  width: 100%;
}

.message-more {
  margin-top: 18px;
  text-align: right;
}


/* =========================
   MESSAGE PAGE
========================= */

.message-page {
  padding-bottom: 56px;
}


.message-page-title {
  margin-top: 42px;
  margin-bottom: 32px;
}


/* 代表画像 + 氏名 */

.message-profile-header {
  grid-template-columns:
    140px
    1fr;

  gap: 24px;

  margin-bottom: 38px;
}


.message-profile-image {
  width: 140px;
  height: 140px;
}


.message-profile-name p {
  font-size: 17px;
  line-height: 1.7;
}


/* 本文 */

.message-page-body {
  font-size: 20px;
  line-height: 2;
}


.message-page-body p {
  margin-bottom: 30px;
}


/* PROFILE */

.profile-box {
  margin-top: 38px;

  padding:
    18px
    16px;
}


.profile-box-title {
  font-size: 14px;
}


.profile-box-text {
  font-size: 14px;
  line-height: 1.9;
}


/* =========================
   SERVICE PAGE
========================= */

.service-page {
  padding-bottom: 56px;
}


.service-page-title {
  margin-top: 42px;
  margin-bottom: 20px;
}


.service-page-image-wrap {
  margin-bottom: 28px;
}


.service-page-body {
  font-size: 20px;
  line-height: 2;
}


.service-page-body p {
  margin-bottom: 28px;
}


.service-page-links {
  margin-top: 38px;
}


/* =========================
   COMPANY
========================== */

.company-page {
  padding-bottom: 56px;
}

.company-page-title {
  margin-top: 42px;
  margin-bottom: 28px;
}

.company-table {
  font-size: 16px;
}

.company-table th,
.company-table td {
  padding: 17px 10px;
}


  /* =========================
   POLICY/PRIVACY
========================== */

    .policy-page {
    padding-bottom: 56px;
  }

  .policy-page-title {
    margin-top: 42px;
    margin-bottom: 28px;
  }

  .policy-body {
    font-size: 16px;
  }

  .policy-body > p {
    margin-bottom: 32px;
  }

  .policy-section {
    margin-top: 38px;
  }

  .policy-section h2 {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .policy-section p {
    margin-bottom: 16px;
  }

  .policy-section li {
    margin-bottom: 8px;
  }

  .policy-date {
    margin-top: 42px !important;
  }


    /* =========================
     CONTACT
  ========================== */

  .contact-page {
    padding-bottom: 56px;
  }

  .contact-page-title {
    margin-top: 42px;
    margin-bottom: 22px;
  }

  .contact-intro {
    margin-bottom: 34px;
    font-size: 16px;
  }

  .contact-field {
    margin-bottom: 26px;
  }

  .contact-field label {
    margin-bottom: 9px;
    font-size: 16px;
  }

  .required-label {
    margin-left: 6px;
    padding: 2px 6px;
    font-size: 11px;
  }

  .contact-field input,
  .contact-field textarea {
    padding: 13px 12px;
  }

  .contact-field input {
    height: 50px;
  }

  .contact-field textarea {
    min-height: 180px;
  }

  .contact-privacy {
    margin-bottom: 26px;
  }

  .contact-privacy label {
    gap: 9px;
    font-size: 14px;
  }


  /* =========================
     THANKS
  ========================== */

  .thanks-page {
    padding-bottom: 56px;
  }

  .thanks-page-title {
    margin-top: 42px;
    margin-bottom: 24px;
  }

  .thanks-body {
    font-size: 16px;
    line-height: 1.9;
  }

  .thanks-body p {
    margin-bottom: 32px;
  }

  .thanks-button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 16px;
  }


    /* =========================
     WORKS PAGE
  ========================== */

  .works-page {
    padding-bottom: 56px;
  }

  .works-page-title {
    margin-top: 42px;
    margin-bottom: 26px;
  }


    /* =========================
     WORK DETAIL
  ========================== */

  .work-detail-page {
    padding-bottom: 56px;
  }

  .work-detail-page-title {
    margin-top: 42px;
    margin-bottom: 24px;
  }

  .work-detail-image-wrap {
    margin-bottom: 28px;
  }

  .work-detail-image {
    width: 190px;
    height: 190px;
  }

  .work-detail-title {
    margin-bottom: 24px;
  }

  .work-detail-back {
    margin-top: 38px;
  }

  .work-detail-back-button {
    min-height: 50px;
    font-size: 16px;
  }


    /* =========================
     BEFORE CONTACT
  ========================== */

  .before-contact-page {
    padding-bottom: 56px;
  }

  .before-contact-page-title {
    margin-top: 42px;
    margin-bottom: 30px;
  }

  .before-contact-lead {
    margin-bottom: 30px;
  }

  .before-contact-section {
    margin-top: 30px;
  }

  .before-contact-end {
    margin-top: 34px;
  }

  .before-contact-guide {
    margin-top: 30px;
  }

  .before-contact-cta {
    margin-top: 34px;
  }


  /* =========================
     FOOTER
  ========================= */

.footer-nav {
  max-width: calc(100% - 80px);
}

}