@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

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

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

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

:root {
  --color-primary: #17A57E;
  --color-secondary: #24B5AF;
  --site-width: 1240px;
  --shadow-base: 2px 2px 4px #666;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

iframe {
  border: 0;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 20;
  color: #24B5AF;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
  border: 0;
}

.l-container {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 10px;
}
.l-container__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.l-container:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.l-container--site .l-container__inner {
  max-width: 1240px;
}
.l-container--sm .l-container__inner {
  max-width: 800px;
}
.l-container--light-gray {
  padding-bottom: 20px;
  margin-bottom: 0;
  background-color: #eae9e9;
}

.l-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #999;
}
.l-header__inner {
  width: 100%;
  max-width: 1240px;
  height: 45px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.l-header__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 300px;
  height: 45px;
}
.l-header__title-link {
  display: block;
  height: 45px;
  padding: 15px 15px 15px 10px;
}
.l-header__title-link img {
  display: block;
  height: 100%;
  width: auto;
}
.l-header__nav {
  display: none;
}
.l-header__nav-list {
  display: flex;
}
.l-header__nav-item {
  position: relative;
}
.l-header__nav-item--has-children > .l-header__nav-link::after,
.l-header__nav-item--has-children > .l-header__nav-button::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  vertical-align: middle;
}
.l-header__sub-nav {
  margin: 0;
  padding: 0;
  min-width: 160px;
}
.l-header__sub-nav .l-header__nav-item {
  margin-left: 0;
}
.l-header__sub-nav-link {
  display: block;
  width: 160px;
  padding: 1rem 15px;
  line-height: 1.4;
  color: #fff;
  background-color: #17A57E;
  transition: 0.3s;
}
.l-header__sub-nav-link:hover, .l-header__sub-nav-link:focus {
  background-color: #999;
}
@media screen and (min-width: 960px) {
  .l-header__inner {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1305px) {
  .l-header__inner {
    height: 90px;
    align-items: stretch;
  }
  .l-header__title {
    height: 90px;
  }
  .l-header__title-link {
    display: flex;
    align-items: center;
    height: 90px;
    padding-left: 0;
  }
  .l-header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    width: 70%;
    height: 100%;
    line-height: 1;
  }
  .l-header__nav-list {
    display: flex;
    align-items: stretch;
    height: 100%;
  }
  .l-header__nav-list > .l-header__nav-item {
    display: flex;
    align-items: stretch;
    height: 100%;
    margin-left: 46px;
  }
  .l-header__nav-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    color: inherit;
    transition: color 0.3s;
  }
  .l-header__nav-link:hover {
    color: #999;
  }
  .l-header__nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    height: 3px;
    background-color: #24B5AF;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .l-header__nav-link:hover::before, .l-header__nav-link:focus::before {
    opacity: 1;
  }
  .l-header__nav-item.current-menu-item > .l-header__nav-link::before, .l-header__nav-item.current_page_item > .l-header__nav-link::before, .l-header__nav-item.current-menu-ancestor > .l-header__nav-link::before, .l-header__nav-item.current-page-ancestor > .l-header__nav-link::before {
    opacity: 1;
  }
  .l-header__nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 20px;
    color: #fff;
    background-color: #24B5AF;
    border-radius: 5px;
    transition: 0.3s;
  }
  .l-header__nav-button:hover, .l-header__nav-button:focus {
    background-color: #999;
  }
  .l-header__nav-item.current-menu-item > .l-header__nav-button, .l-header__nav-item.current_page_item > .l-header__nav-button, .l-header__nav-item.current-menu-ancestor > .l-header__nav-button, .l-header__nav-item.current-page-ancestor > .l-header__nav-button {
    background-color: #999;
  }
  .l-header__sub-nav {
    position: absolute;
    top: 100%;
    left: -26px;
    z-index: 1000;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .l-header__sub-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .l-header__nav-item:hover > .l-header__sub-nav, .l-header__nav-item:focus-within > .l-header__sub-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .l-header__sub-nav-link {
    display: block;
    width: 160px;
    padding: 1rem 15px;
    line-height: 1.2;
    color: #fff;
    background-color: #17A57E;
    transition: 0.3s;
  }
  .l-header__sub-nav-link:hover, .l-header__sub-nav-link:focus {
    background-color: #999;
  }
}

body.admin-bar .l-header {
  top: 32px;
}
body.admin-bar .c-mobile-menu {
  top: calc(45px + 32px);
  max-height: calc(100vh - 45px - 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar .l-header {
    top: 46px;
  }
  body.admin-bar .c-mobile-menu {
    top: calc(45px + 46px);
    max-height: calc(100vh - 45px - 46px);
  }
}
@media screen and (min-width: 1305px) {
  body.admin-bar .c-mobile-menu {
    top: calc(90px + 32px);
    max-height: calc(100vh - 90px - 32px);
  }
}
.l-main {
  padding-bottom: 80px;
}

.l-footer {
  width: 100%;
  position: sticky;
  top: 100vh;
}
.l-footer__inner {
  padding: 18px;
  background-color: #24B5AF;
}
.l-footer__copyright {
  color: #fff;
  text-align: center;
  font-size: 1rem;
}
.l-footer .l-footer__container {
  width: 100%;
}
.l-footer .l-footer__copyright-text {
  display: inline-block;
}
@media screen and (min-width: 960px) {
  .l-footer__inner {
    padding: 23px;
  }
}

.l-grid {
  display: grid;
  gap: 20px;
}
.l-grid--2col, .l-grid--3col {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 960px) {
  .l-grid {
    gap: 20px 25px;
  }
  .l-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid--3col, .l-grid--3col-archive {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-back-to-top {
  position: fixed;
  right: 0;
  bottom: 2px;
  z-index: 999999;
  width: 50px;
  height: 50px;
  background-color: #17A57E;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.c-back-to-top.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.c-back-to-top a {
  display: block;
  height: 100%;
  position: relative;
}
.c-back-to-top a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 57%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg) translate(-50%, -50%);
}
@media screen and (min-width: 1305px) {
  .c-back-to-top {
    width: 60px;
    height: 60px;
  }
}

.c-hamburger {
  position: relative;
  width: 50px;
  height: 45px;
  cursor: pointer;
}
.c-hamburger:hover {
  background-color: #17A57E;
}
.c-hamburger__line {
  position: absolute;
  left: 15px;
  width: 20px;
  height: 2px;
  display: inline-block;
  background-color: #17A57E;
  border-radius: 4px;
  transition: 0.5s;
}
.c-hamburger:hover .c-hamburger__line {
  background-color: #fff;
}
.c-hamburger.is-active .c-hamburger__line:nth-of-type(1) {
  top: 17px;
  transform: none;
}
.c-hamburger.is-active .c-hamburger__line:nth-of-type(2) {
  display: block;
  top: 21px;
  transform: none;
}
.c-hamburger.is-active .c-hamburger__line:nth-of-type(3) {
  top: 25px;
  transform: none;
}
.c-hamburger__line:nth-of-type(1) {
  top: 21px;
  transform: rotate(45deg);
}
.c-hamburger__line:nth-of-type(2) {
  display: none;
}
.c-hamburger__line:nth-of-type(3) {
  top: 21px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1305px) {
  .c-hamburger {
    display: none;
  }
}

.c-mobile-menu {
  display: none;
  position: fixed;
  top: 45px;
  width: 100%;
  max-height: calc(100vh - 45px);
  padding: 35px 10px 20px;
  z-index: 9;
  overflow-y: auto;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: 0.3s;
}
.c-mobile-menu.is-active {
  display: block;
}
.c-mobile-menu__main {
  border-bottom: 1px solid #fff;
}
.c-mobile-menu__link {
  display: block;
  width: 100%;
  padding: 18px 0;
  margin-bottom: 15px;
  text-align: center;
  border: 1px solid currentColor;
  transition: 0.3s;
}
.c-mobile-menu__link:hover {
  padding-bottom: 16px;
  border-bottom: 3px solid #24B5AF;
}
.c-mobile-menu__button {
  display: block;
  width: 100%;
  padding: 18px 0;
  color: #fff;
  text-align: center;
  background-color: #24B5AF;
  border-radius: 6px;
  transition: 0.3s;
}
.c-mobile-menu__button:hover {
  opacity: 0.8;
}

.c-button {
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}
.c-button--primary {
  width: 220px;
  padding: 1rem 20px;
  color: #fff;
  background-color: #24B5AF;
}
.c-button--primary:hover {
  color: #fff;
  background-color: #17A57E;
}
.c-button--cta {
  width: 200px;
  padding: 20px;
  color: #fff;
  background-color: #24B5AF;
}
.c-button--cta:hover {
  background-color: #17A57E;
}
.c-button--primary-alt {
  color: #fff;
  background-color: #17A57E;
}
.c-button--primary-alt:hover {
  color: #17A57E;
  background-color: #fff;
  border: 1px solid #17A57E;
}

.c-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}
@media screen and (min-width: 481px) {
  .c-catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
  }
}
@media screen and (min-width: 960px) {
  .c-catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

.c-card {
  display: block;
  background-color: #fff;
  transition: 0.3s;
}
.c-card--article {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 2px 2px 4px #666;
}
.c-card--article:hover, .c-card--article:focus {
  opacity: 0.5;
}
.c-card--feature {
  padding: 38px 38px 28px;
  margin-bottom: 20px;
  border: 1px solid #17A57E;
}
.c-card--feature:hover, .c-card--feature:focus {
  background-color: #f9f6f6;
}
.c-card--catalog {
  display: block;
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  box-shadow: none;
  border: 0;
}
.c-card--catalog:hover, .c-card--catalog:focus {
  opacity: 0.8;
  background-color: transparent;
}
.c-card__img {
  overflow: hidden;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.c-card__img img {
  display: block;
  width: 100%;
  height: 100%;
}
.c-card--article .c-card__img {
  height: 214px;
}
.c-card--feature .c-card__img {
  margin-bottom: 20px;
  border: 0;
}
.c-card--catalog .c-card__img {
  aspect-ratio: 3/4.2;
  border: 1px solid #ccc;
  border-radius: 0;
  background-color: #fff;
}
.c-card--catalog .c-card__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__body {
  padding: 15px;
}
.c-card__body > *:last-child {
  margin-bottom: 0 !important;
}
.c-card--catalog .c-card__body {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 10px 0 0;
}
.c-card__meta {
  margin-bottom: 10px;
  font-size: 0.75rem;
}
.c-card--catalog .c-card__meta {
  position: relative;
  flex-shrink: 0;
  margin-bottom: 0;
  line-height: 1;
  min-width: 16px;
  min-height: 16px;
}
.c-card--catalog .c-card__meta::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: var(--icon-pdf-url) no-repeat center/contain;
}
.c-card__title {
  margin-bottom: 20px;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.c-card--article .c-card__title {
  font-size: 1.2rem;
}
.c-card--feature .c-card__title {
  margin-bottom: 10px;
  font-size: 24px;
}
.c-card--catalog .c-card__title {
  margin-bottom: 0;
  color: #999;
  font-size: 0.95rem;
  font-weight: normal;
  line-height: 1;
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
}
@media screen and (min-width: 960px) {
  .c-card--article {
    margin-bottom: 0;
  }
  .c-card--article .c-card__img {
    height: 183px;
  }
  .c-card--catalog .c-card__body {
    padding-top: 12px;
    gap: 8px;
    align-items: center;
  }
  .c-card--catalog .c-card__title {
    font-size: 1rem;
  }
}

.c-accordion {
  display: block;
  max-width: 800px;
  margin: 0 auto 60px;
}
.c-accordion:last-child {
  margin-bottom: 0;
}
.c-accordion__header {
  padding: 20px 35px;
  background-color: #17A57E;
}
.c-accordion__title {
  color: #fff;
  font-size: 22px;
}
.c-accordion__item {
  display: block;
  border: 1px solid #17A57E;
}
.c-accordion__item:hover {
  background-color: #eae9e9;
}
.c-accordion__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.c-accordion__body {
  padding: 25px;
}
.c-accordion__item-title {
  margin-bottom: 10px;
  color: #17A57E;
  font-size: 20px;
}
.c-accordion__text {
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .c-accordion__item {
    display: flex;
    padding: 15px;
  }
  .c-accordion__img {
    position: relative;
    width: 300px;
    height: 170px;
    overflow: hidden;
  }
  .c-accordion__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-object-fit: unset;
       object-fit: unset;
    transform: translate(-50%, -50%);
  }
  .c-accordion__body {
    width: 70%;
    padding: 25px;
  }
}

.c-breadcrumb {
  margin-top: 45px;
  padding: 16px 0;
  background-color: #24B5AF;
  color: #fff;
}
.c-breadcrumb__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.c-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.c-breadcrumb a:hover {
  text-decoration: underline;
}
.c-breadcrumb .current-item {
  font-weight: bold;
}
@media screen and (min-width: 1305px) {
  .c-breadcrumb {
    margin-top: 90px;
    padding: 20px 0;
  }
}

.c-form {
  max-width: 800px;
  margin: 0 auto;
}
.c-form > *:last-child {
  margin-bottom: 0 !important;
}
.c-form__lead {
  margin-bottom: 60px;
  color: #17A57E;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 1px;
}
.c-form__group {
  margin-bottom: 35px;
}
.c-form__label {
  font-size: 1.06rem;
  font-weight: bold;
}
.c-form__required {
  color: #24B5AF;
}
.c-form__field {
  margin-top: 20px;
  font-size: 14px;
}
.c-form__field input,
.c-form__field textarea {
  width: 100%;
  outline: none;
  background-color: #f4f4f4;
  padding: 15px 20px;
}
.c-form__field input {
  line-height: 1.5;
}
.c-form__field input::-moz-placeholder {
  font-size: 1.06rem;
}
.c-form__field input::placeholder {
  font-size: 1.06rem;
}
.c-form__field textarea {
  height: 300px;
}
.c-form__field input:focus,
.c-form__field textarea:focus {
  box-shadow: 0 0 1.5px #000;
}
@media screen and (min-width: 960px) {
  .c-form__group {
    margin-bottom: 40px;
  }
}

.c-category-list {
  margin-bottom: 40px;
}
.c-category-list__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-category-list__item {
  margin-right: 10px;
  margin-bottom: 5px;
}
.c-category-list__item:last-child {
  margin-right: 0;
}
.c-category-list__link {
  display: inline-block;
  padding: 4px 12px;
  color: #24B5AF;
  background-color: color-mix(in srgb, currentColor 20%, transparent);
  border-radius: 30px;
}

.c-search-box {
  padding-left: 16px;
}
.c-search-box__input {
  padding: 10px 15px;
  border: 1px solid #17A57E;
  background-color: #f7f8f9;
}
.c-search-box__submit {
  padding: 10px 20px;
  color: #fff;
  background-color: #555;
  border: 1px solid currentColor;
  transition: 0.3s;
}
.c-search-box__submit:hover, .c-search-box__submit:focus {
  opacity: 0.8;
}

.c-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 960px) {
  .c-media-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

.c-media {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  background-color: #fff;
  text-decoration: none;
  transition: opacity 0.3s, background-color 0.3s, border-color 0.3s;
}
.c-media:hover, .c-media:focus {
  opacity: 0.8;
}
.c-media--bordered {
  border: 1px solid #ccc;
  box-shadow: 2px 2px 4px #666;
}
.c-media__img {
  width: 30%;
  flex-shrink: 0;
}
.c-media__img img {
  display: block;
  width: 100%;
  height: auto;
}
.c-media__body {
  flex: 1;
  min-width: 0;
}
.c-media__text {
  margin-bottom: 0;
  color: #999;
  font-size: 0.878rem;
  line-height: 1.5;
  word-break: break-word;
}

.c-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.c-table__head, .c-table__data {
  padding: 16px 18px;
  border: 1px solid #ccc;
  vertical-align: middle;
  line-height: 1.6;
  text-align: left;
}
.c-table__head {
  font-weight: bold;
  color: #333;
}
.c-table__data {
  color: #333;
  background-color: #fff;
  word-break: break-word;
}
.c-table--company {
  table-layout: fixed;
  border: 1px solid #ccc;
}
.c-table--company .c-table__head {
  width: 180px;
  white-space: nowrap;
  background-color: #f3f3f3;
}
.c-table--faq-spec {
  table-layout: fixed;
  border: 1px solid #ccc;
}
.c-table--faq-spec .c-table__head,
.c-table--faq-spec .c-table__data {
  padding: 5px 10px;
  text-align: center;
  font-size: 0.95rem;
}
.c-table--faq-spec .c-table__head {
  width: 28%;
  background-color: #d9dde2;
}
.c-table--faq-spec .c-table__data {
  background-color: #f8f8f8;
}
@media screen and (min-width: 960px) {
  .c-table--company .c-table__head,
  .c-table--company .c-table__data {
    padding: 18px 22px;
    font-size: 1rem;
  }
  .c-table--faq-spec .c-table__head,
  .c-table--faq-spec .c-table__data {
    font-size: 1rem;
  }
  .c-table--faq-spec .c-table__head {
    width: 24%;
  }
}

.c-faq__item {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  background-color: #fff;
}
.c-faq__item:last-child {
  margin-bottom: 0;
}
.c-faq__question {
  margin: 0;
  padding: 5px 10px;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  background-color: #5f6773;
}
.c-faq__question::before {
  content: "Q ";
  margin-right: 4px;
  font-weight: bold;
}
.c-faq__answer {
  padding: 20px;
  color: #333;
  line-height: 1.8;
  background-color: #fff;
}
.c-faq__answer > * {
  margin-bottom: 20px;
}
.c-faq__answer > *:last-child {
  margin-bottom: 0;
}
.c-faq__note {
  font-size: 0.95rem;
  line-height: 1.6;
}
@media screen and (min-width: 960px) {
  .c-faq__question {
    font-size: 1.06rem;
  }
  .c-faq__answer > * {
    margin-bottom: 24px;
  }
}

.c-spec-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.c-spec-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background-color: #fff;
  table-layout: fixed;
}
.c-spec-table__head, .c-spec-table__subhead, .c-spec-table__data {
  padding: 5px;
  border: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
  color: #333;
}
.c-spec-table__head, .c-spec-table__subhead {
  font-weight: bold;
  background-color: #d9dde2;
}
.c-spec-table__data {
  background-color: #f8f8f8;
  word-break: break-word;
}
@media screen and (min-width: 960px) {
  .c-spec-table__head, .c-spec-table__subhead, .c-spec-table__data {
    font-size: 0.89rem;
  }
}

.c-data-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.c-data-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #fff;
}
.c-data-table__head, .c-data-table__side, .c-data-table__data {
  padding: 5px;
  border: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
  color: #333;
}
.c-data-table__head {
  font-weight: bold;
  background-color: #d9dde2;
}
.c-data-table__side {
  font-weight: normal;
  background-color: #f0f2f4;
  white-space: nowrap;
}
.c-data-table__data {
  background-color: #f8f8f8;
  word-break: break-word;
}
@media screen and (min-width: 960px) {
  .c-data-table__head, .c-data-table__side, .c-data-table__data {
    font-size: 0.89rem;
  }
}

.c-note-list {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}
.c-note-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #999;
}
.c-note-list li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
}
.c-note-list li:last-child {
  margin-bottom: 0;
}

.p-main-visual {
  width: 100%;
  margin-top: 45px;
}
.p-main-visual__inner {
  overflow: hidden;
  max-width: 1200px;
  min-height: 240px;
  margin: 0 auto;
}
.p-main-visual__inner img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-main-visual__inner--page {
  margin-top: 45px;
  position: relative;
}
.p-main-visual__inner--page .p-main-visual__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  margin-top: 0;
}
.p-main-visual__inner--page .p-main-visual__title {
  font-size: 3rem;
  font-weight: bold;
}
.p-main-visual__box {
  margin-top: 30px;
  padding: 0 20px;
}
.p-main-visual__title {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
}
.p-main-visual__title span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 5px solid #24B5AF;
}
.p-main-visual__text {
  font-size: 0.985rem;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .p-main-visual__inner {
    position: relative;
    height: 600px;
    border-radius: 0 0 6px 6px;
    box-shadow: 2px 2px 4px #666;
  }
  .p-main-visual__box {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 100;
    margin-top: 0;
    padding: 10px 10px 10px 30px;
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%);
  }
  .p-main-visual__title {
    margin-bottom: 20px;
    font-size: 3rem;
  }
  .p-main-visual__text {
    font-size: 1.88rem;
    line-height: 2;
  }
}
@media screen and (min-width: 1305px) {
  .p-main-visual {
    margin-top: 90px;
  }
  .p-main-visual__inner--page {
    margin-top: 90px;
  }
}

.p-contents {
  padding: 20px 0 0;
}
.p-contents > * {
  margin-bottom: 40px;
}
.p-contents > *:last-child {
  margin-bottom: 0;
}
.p-contents__title-block {
  text-align: center;
  margin-bottom: 40px;
}
.p-contents__title {
  color: #17A57E;
  font-size: 1.87rem;
}
.p-contents__title span {
  display: inline-block;
}
.p-contents__title span::after {
  content: "";
  display: block;
  width: 55px;
  height: 4px;
  margin: 8px auto 0;
  background-color: #24B5AF;
}
.p-contents__sub-title {
  color: #999;
}
.p-contents__text-block {
  margin-bottom: 40px;
}
.p-contents__text-block > *:last-child {
  margin-bottom: 0 !important;
}
.p-contents__text {
  margin-bottom: 30px;
  line-height: 1.8;
}
.p-contents__image {
  height: 290px;
  max-width: 100%;
  margin: 0 auto 40px;
}
.p-contents__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-contents__image--sm {
  max-width: 500px;
  height: auto;
}
.p-contents__image--sm img {
  border-radius: 6px;
  box-shadow: 2px 2px 4px #666;
}
.p-contents__body {
  padding: 0 15px;
  margin-bottom: 40px;
  text-align: center;
}
.p-contents__body > *:last-child {
  margin-bottom: 0 !important;
}
.p-contents__body-title {
  margin-bottom: 20px;
  color: #17A57E;
  font-size: 25px;
}
.p-contents__body-text {
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.2;
}
.p-contents__button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 40px;
}
.p-contents__text-center {
  text-align: center;
}
.p-contents__block {
  max-width: 800px;
  margin: 0 auto;
}
.p-contents__block > *:last-child {
  margin-bottom: 0 !important;
}
.p-contents__block-title {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
}
.p-contents__block-body {
  padding: 0 1rem;
}
.p-contents__block-body > *:last-child {
  margin-bottom: 0 !important;
}
.p-contents__block-body-title {
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: bold;
}
.p-contents__block-list {
  padding: 0 2rem;
  margin-bottom: 50px;
}
.p-contents__block-list li {
  font-size: 1.25rem;
  line-height: 1.5;
}
.p-contents__lead {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
.p-contents__paragraph {
  padding: 0 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.8;
}
@media screen and (min-width: 960px) {
  .p-contents__title-block {
    margin-bottom: 60px;
  }
  .p-contents__title {
    font-size: 2.5rem;
  }
  .p-contents__title span::after {
    width: 95px;
    height: 5px;
  }
  .p-contents__image {
    height: 440px;
  }
  .p-contents__body {
    margin-bottom: 80px;
  }
  .p-contents__body-title {
    margin-bottom: 40px;
    font-size: 40px;
  }
  .p-contents__body-text {
    margin-bottom: 80px;
    font-size: 18px;
    line-height: 2;
  }
}
@media screen and (min-width: 1305px) {
  .p-contents {
    padding: 0;
  }
}

.p-single .l-container {
  padding-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .p-single .l-container {
    padding-bottom: 60px;
  }
}
.p-single .l-container__inner {
  max-width: 800px;
}
.p-single .p-contents__title-block {
  text-align: left;
}
.p-single .p-contents__title {
  color: #222;
  font-weight: bold;
}
.p-single .p-single__time {
  display: inline-block;
  margin-bottom: 20px;
  color: #ccc;
}
.p-single h2 {
  margin-bottom: 35px;
  color: #333;
  font-size: 1.25rem;
  font-weight: bold;
}
.p-single .p-contents__text,
.p-single .p-contents__text-block p {
  margin-bottom: 30px;
  line-height: 1.8;
}
@media screen and (min-width: 1305px) {
  .p-single h2 {
    margin-bottom: 45px;
    font-size: 2rem;
  }
  .p-single .p-contents__text,
  .p-single .p-contents__text-block p {
    margin-bottom: 40px;
    font-size: 1.25rem;
  }
}

.p-product-detail__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.p-product-detail__media {
  width: 100%;
}
.p-product-detail__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  background-color: #efefef;
}
.p-product-detail__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-product-detail__content {
  padding: 0;
}
.p-product-detail__category {
  margin-bottom: 12px;
  color: #999;
  font-size: 1rem;
  line-height: 1.6;
}
.p-product-detail__title {
  margin-bottom: 20px;
  color: #3f4b63;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.2;
}
.p-product-detail__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.p-product-detail__label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  color: #00a99d;
  font-size: 0.95rem;
  line-height: 1.4;
  border: 1px solid #00a99d;
  background-color: #fff;
}
.p-product-detail__label--filled {
  color: #fff;
  border-color: #3f4b63;
  background-color: #3f4b63;
}
.p-product-detail__note {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: start;
}
.p-product-detail__note-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.p-product-detail__note-text {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.7;
}
.p-product-detail__note-text p {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .p-product-detail__layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .p-product-detail__media, .p-product-detail__content {
    min-width: 0;
  }
  .p-product-detail__image {
    max-width: 500px;
    margin: 0 auto;
  }
  .p-product-detail__category {
    margin-bottom: 16px;
    font-size: 1.2rem;
  }
  .p-product-detail__title {
    margin-bottom: 28px;
    font-size: 4rem;
  }
  .p-product-detail__labels {
    gap: 12px;
    margin-bottom: 30px;
  }
  .p-product-detail__label {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 1rem;
  }
  .p-product-detail__note {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }
  .p-product-detail__note-text {
    font-size: 1rem;
  }
}

.p-product-feature {
  margin-top: 60px;
}
.p-product-feature__inner {
  border-top: 1px solid #ccc;
  padding-top: 24px;
}
.p-product-feature {
  /* ===== 見出し ===== */
}
.p-product-feature__title {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  /* 左の横棒 */
}
.p-product-feature__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 3px;
  background-color: #333;
  transform: translateY(-50%);
}
.p-product-feature {
  /* ===== 本文エリア ===== */
}
.p-product-feature__body {
  padding: 24px;
  background-color: #e5e7ea;
}
.p-product-feature__body > * {
  margin-bottom: 20px;
}
.p-product-feature__body > *:last-child {
  margin-bottom: 0;
}
.p-product-feature__body p {
  line-height: 1.9;
}
.p-product-feature {
  /* ===== リンクリスト ===== */
}
.p-product-feature__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-product-feature__links li {
  margin-bottom: 12px;
}
.p-product-feature__links li:last-child {
  margin-bottom: 0;
}
.p-product-feature__links a {
  position: relative;
  padding-left: 18px;
  color: #00a99d;
  text-decoration: none;
  line-height: 1.8;
}
.p-product-feature__links a::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
}
.p-product-feature__links a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .p-product-feature {
    margin-top: 80px;
  }
  .p-product-feature__inner {
    padding-top: 32px;
  }
  .p-product-feature__title {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }
  .p-product-feature__body {
    padding: 32px;
  }
  .p-product-feature__links a {
    font-size: 1.05rem;
  }
}

.p-products-archive__header {
  margin-bottom: 40px;
}
.p-products-archive__item {
  text-decoration: none;
}
.p-products-archive__noimage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  color: #999;
  font-size: 0.875rem;
  text-align: center;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
}
.p-products-archive__empty {
  padding: 40px 0;
  color: #999;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-products-archive__header {
    margin-bottom: 50px;
  }
  .p-products-archive__noimage {
    font-size: 1rem;
  }
}

.p-contact__button {
  margin-bottom: 40px;
}
.p-contact__policy {
  text-align: center;
}

.p-article-cta {
  display: flex;
  flex-direction: column;
  padding: 30px;
  margin-bottom: 60px;
  border: 4px double #24B5AF;
}
.p-article-cta > *:last-child {
  margin-bottom: 0;
}
.p-article-cta__text {
  order: 1;
}
.p-article-cta__body {
  margin-bottom: 30px;
  line-height: 1.5;
}
.p-article-cta__image {
  order: 2;
}
.p-article-cta__image img {
  border-radius: 6px;
  box-shadow: 2px 2px 4px #666;
}
.p-article-cta__button-wrap {
  order: 3;
}
@media screen and (min-width: 960px) {
  .p-article-cta {
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .p-article-cta__image {
    order: 1;
    width: 30%;
    margin-left: 13%;
  }
  .p-article-cta__text, .p-article-cta__button-wrap {
    width: 50%;
  }
  .p-article-cta__text {
    order: 2;
  }
  .p-article-cta__button-wrap {
    order: 3;
    margin-top: -50px;
    padding-top: 0;
  }
}

.p-related-articles {
  margin-bottom: 40px;
}
.p-related-articles__title {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}

.p-lawyer-profile {
  padding: 20px;
  margin: 0 auto;
}
.p-lawyer-profile__header {
  margin-bottom: 30px;
}
.p-lawyer-profile__image {
  margin-bottom: 25px;
}
.p-lawyer-profile__image img {
  border-radius: 6px;
  box-shadow: 2px 2px 4px #666;
}
.p-lawyer-profile__info {
  display: flex;
  align-items: center;
}
.p-lawyer-profile__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-lawyer-profile__name {
  padding: 10px 0;
  font-size: 22px;
}
.p-lawyer-profile__affiliation {
  font-size: 14px;
}
.p-lawyer-profile__en-name {
  font-size: 12px;
}
.p-lawyer-profile__body > *:last-child {
  margin-bottom: 0 !important;
}
.p-lawyer-profile__heading {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: bold;
}
.p-lawyer-profile__text {
  padding-left: 1em;
  margin-bottom: 15px;
  font-size: 0.875rem;
  line-height: 24px;
}
@media screen and (min-width: 960px) {
  .p-lawyer-profile {
    max-width: 80%;
  }
  .p-lawyer-profile__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .p-lawyer-profile__image {
    margin-bottom: 0;
  }
  .p-lawyer-profile__heading {
    font-size: 1.3rem;
  }
  .p-lawyer-profile__text {
    margin-bottom: 20px;
    font-size: 1rem;
  }
}

.p-business .c-accordion {
  margin-bottom: 60px;
}

.p-search-result {
  max-width: 800px;
  margin: 0 auto;
}
.p-search-result__list {
  max-width: 300px;
  margin-bottom: 20px;
}
.p-search-result__list > *:last-child {
  margin-bottom: 0 !important;
}
.p-search-result__item {
  margin-bottom: 20px;
}

.p-error-404 .c-search-box {
  margin-top: 20px;
}

.p-company-info__body > *:last-child {
  margin-bottom: 0;
}
.p-company-info .c-table-wrap {
  margin-bottom: 40px;
}
.p-company-info__map {
  width: 100%;
  overflow: hidden;
}
.p-company-info__map iframe {
  display: block;
  width: 100%;
  height: 420px;
}
@media screen and (min-width: 960px) {
  .p-company-info .c-table-wrap {
    margin-bottom: 50px;
  }
  .p-company-info__map iframe {
    height: 500px;
  }
}

.p-faq-block {
  margin-bottom: 50px;
}
.p-faq-block:last-child {
  margin-bottom: 0;
}
.p-faq-block__title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #17A57E;
  border-bottom: 2px solid #17A57E;
}
@media screen and (min-width: 960px) {
  .p-faq-block {
    margin-bottom: 60px;
  }
  .p-faq-block__title {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }
}

.p-product-spec {
  margin-top: 60px;
}
.p-product-spec__inner {
  border-top: 1px solid #ccc;
  padding-top: 24px;
}
.p-product-spec__title {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
.p-product-spec__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 3px;
  background-color: #333;
  transform: translateY(-50%);
}
.p-product-spec__notes {
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}
.p-product-spec__notes li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 10px;
}
.p-product-spec__notes li:last-child {
  margin-bottom: 0;
}
.p-product-spec__notes li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 960px) {
  .p-product-spec {
    margin-top: 80px;
  }
  .p-product-spec__inner {
    padding-top: 32px;
  }
  .p-product-spec__title {
    margin-bottom: 24px;
    font-size: 1.75rem;
  }
  .p-product-spec__notes {
    margin-top: 28px;
  }
}

.p-product-video {
  margin-top: 60px;
}
.p-product-video__inner {
  border-top: 1px solid #ccc;
  padding-top: 24px;
}
.p-product-video__title {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
.p-product-video__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 3px;
  background-color: #333;
  transform: translateY(-50%);
}
.p-product-video__body {
  padding: 24px;
  background-color: #e5e7ea;
}
.p-product-video__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
}
.p-product-video__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (min-width: 960px) {
  .p-product-video {
    margin-top: 80px;
  }
  .p-product-video__inner {
    padding-top: 32px;
  }
  .p-product-video__title {
    margin-bottom: 24px;
    font-size: 1.75rem;
  }
  .p-product-video__body {
    padding: 32px;
  }
}

.p-product-data {
  margin-top: 60px;
}
.p-product-data__inner {
  border-top: 1px solid #ccc;
  padding-top: 24px;
}
.p-product-data__title {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
.p-product-data__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 3px;
  background-color: #333;
  transform: translateY(-50%);
}
.p-product-data__note {
  margin-top: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 960px) {
  .p-product-data {
    margin-top: 80px;
  }
  .p-product-data__inner {
    padding-top: 32px;
  }
  .p-product-data__title {
    margin-bottom: 24px;
    font-size: 1.75rem;
  }
  .p-product-data__note {
    margin-top: 24px;
  }
}

.p-product-description {
  margin-top: 60px;
}
.p-product-description__inner {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
.p-product-description__title {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}
.p-product-description__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 3px;
  background-color: #333;
  transform: translateY(-50%);
}
.p-product-description__body p {
  margin-bottom: 16px;
  line-height: 1.9;
  font-size: 1rem;
}
.p-product-description__body p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .p-product-description {
    margin-top: 80px;
  }
  .p-product-description__inner {
    padding-top: 24px;
  }
  .p-product-description__title {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  .p-product-description__body p {
    margin-bottom: 18px;
    font-size: 1.05rem;
  }
}

.p-product-figure {
  margin-top: 60px;
}
.p-product-figure__inner {
  border-top: 1px solid #ccc;
  padding-top: 24px;
}
.p-product-figure__title {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
.p-product-figure__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 3px;
  background-color: #333;
  transform: translateY(-50%);
}
.p-product-figure__body {
  padding: 24px;
  background-color: #e5e7ea;
}
.p-product-figure__image {
  max-width: 600px;
}
.p-product-figure__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 960px) {
  .p-product-figure {
    margin-top: 80px;
  }
  .p-product-figure__inner {
    padding-top: 32px;
  }
  .p-product-figure__title {
    margin-bottom: 24px;
    font-size: 1.75rem;
  }
  .p-product-figure__body {
    padding: 32px;
  }
}

.p-product-brochure {
  margin-top: 60px;
}
.p-product-brochure__inner {
  border-top: 1px solid #ccc;
  padding-top: 24px;
}
.p-product-brochure__title {
  position: relative;
  margin-bottom: 24px;
  padding-left: 28px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
.p-product-brochure__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 3px;
  background-color: #333;
  transform: translateY(-50%);
}
.p-product-brochure__body {
  padding: 0;
}
.p-product-brochure__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 74px;
  padding: 16px 28px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  background-color: #12b3ad;
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
  transition: background-color 0.3s, opacity 0.3s, transform 0.3s;
}
.p-product-brochure__button:hover, .p-product-brochure__button:focus {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media screen and (min-width: 960px) {
  .p-product-brochure {
    margin-top: 80px;
  }
  .p-product-brochure__inner {
    padding-top: 32px;
  }
  .p-product-brochure__title {
    margin-bottom: 28px;
    font-size: 1.75rem;
  }
  .p-product-brochure__button {
    min-width: 355px;
    min-height: 74px;
    font-size: 1.3rem;
  }
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

.u-pos-rel {
  position: relative;
}

.u-pos-abs {
  position: absolute;
}

.u-pos-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-anchor-offset {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}

.u-text-center {
  text-align: center;
}

.u-underline {
  text-decoration: underline;
}

.u-required {
  color: #24B5AF;
}

.u-show-monitor,
.u-show-pc {
  display: none;
}

.u-hide-monitor {
  display: block;
}

@media screen and (min-width: 1305px) {
  .u-show-monitor {
    display: block;
  }
  .u-hide-monitor {
    display: none;
  }
}
.u-border-primary {
  border: 1px solid #17A57E;
}

.u-bg-primary {
  background-color: #17A57E;
  color: #fff;
}

.u-bg-light-gray {
  background-color: #eae9e9;
}/*# sourceMappingURL=style.css.map */