@charset "UTF-8";
/* =========================
// variable
// ========================= */
/* TABLE OF CONTENTS
------------------------------------------------------------
* Global
* Repeatable Patterns
* Layout
* Header
* Menus
* Featured Area
* Content
* Navigations
* Comments
* Widgets
* Footer
* Plugins
* Print
------------------------------------------------------------ */
:root {
  --font-size-base: 16px;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-family-jp: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  --text-color: #333;
  --main-color: #01559e;
  --bg-color: #f6f6f6;
  --border-color: #ddd;
}

/*------------------------------------------------------------
 * タグの基本設定
------------------------------------------------------------*/
html {
  font-size: clamp(15px, 1.5vw, var(--font-size-base));
}

/* 全体 */
body {
  font-size: 1rem;
  font-family: var(--font-family-base);
  color: var(--text-color);
  line-height: 2;
}

/* 見出し */
h2 {
  font-size: clamp(1.25rem, 4vw, 1.875rem); /* 20px〜30px */
}

h3 {
  font-size: clamp(1rem, 3vw, 1.5rem); /* 16px〜24px */
}

h4 {
  font-size: clamp(1rem, 3vw, 1.25rem); /* 16px〜20px */
}

h5 {
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem); /* 15px〜18px */
}

h6 {
  font-size: clamp(0.875rem, 2vw, 1rem); /* 14px〜16px */
}

/* 段落 */
p {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 781px) {
  p {
    margin-bottom: 2rem;
  }
}
/* リンク */
a {
  color: var(--main-color);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

p a {
  color: var(--main-color);
  text-decoration: underline;
}

a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 781px) {
  a:hover {
    opacity: 1;
  }
}
/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
}

/* フォーム要素 */
input,
button,
textarea,
select {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  padding: 0.5em;
  font-weight: 500;
  width: 100%;
  overflow-x: hidden;
  color: var(--text-color);
}

textarea::-moz-placeholder {
  white-space: pre-line;
}

textarea::placeholder {
  white-space: pre-line;
}

@media screen and (max-width: 1024px) {
  input,
button,
textarea,
select {
    font-size: 16px;
  }
}
button {
  background-color: var(--main-color);
  color: #fff;
  cursor: pointer;
}

button:hover {
  background-color: var(--accent-color);
}

@media screen and (max-width: 781px) {
  button:hover {
    background-color: var(--main-color);
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* iOSでのデフォルトアイコンを非表示にする */
details summary {
  list-style: none;
  /* リストスタイルの削除 */
}

/* Safari特有のデフォルトマーカーを非表示にする */
summary::-webkit-details-marker {
  display: none;
}

.fadein {
  opacity: 0;
  position: relative;
}

.fadein.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
          animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
}

@-webkit-keyframes inview_slide_up {
  0% {
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}

@keyframes inview_slide_up {
  0% {
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
.group-fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}

.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}

.header {
  width: 100%;
  transition: all 0.3s ease;
  z-index: 999;
}
.header.is-fixed {
  position: fixed;
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header.is-fixed::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: -1;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}

.btn-area > * {
  background-color: var(--main-color);
  color: white;
  padding: 1.24rem 2.25rem 1.25rem 3.25rem;
  line-height: 1;
  position: relative;
  display: inline-block;
  min-width: 185px;
  text-align: center;
  border: 2px solid var(--main-color);
  transition: all 0.3s;
}
.btn-area > *::before {
  font-family: "Material Icons";
  font-size: 1.25em;
  position: absolute;
  left: 1rem;
}

.section {
  position: relative;
  padding: 7rem 0 7.5rem;
}
@media screen and (max-width: 781px) {
  .section {
    padding: 4.25rem 0 4.5rem;
  }
}
.section__inner {
  width: 100%;
  max-width: calc(1200px + 2rem);
  padding: 0 1rem;
  margin: 0 auto;
}
.section__title {
  text-align: center;
  font-size: clamp(2.65rem, 4vw, 3.125rem);
  color: var(--main-color);
  line-height: 1.25;
  margin-bottom: 3rem;
  text-transform: uppercase;
  font-family: var(--font-family-en);
}
@media screen and (max-width: 781px) {
  .section__title {
    margin-bottom: 1.4rem;
  }
}
.section__title span {
  display: block;
  font-size: 16px;
  color: var(--text-color);
}
.section__half {
  display: flex;
  align-items: center;
  gap: 1.6rem 3.875rem;
}
@media screen and (max-width: 781px) {
  .section__half {
    flex-direction: column-reverse;
  }
}
.section__half-img, .section__half-content {
  flex: 1;
}
.section__half-content .section__title {
  text-align: left;
  margin-bottom: 2.15rem;
}
.section__half-content h3 {
  margin-bottom: 2.15rem;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1em;
  color: var(--main-color);
}
@media screen and (max-width: 781px) {
  .section__half-content h3 {
    margin-bottom: 0.5rem;
  }
}
.section__half-content p {
  margin: 0;
}
.section__half-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section.bg-gray {
  background-color: var(--bg-color);
}

.header__inner {
  padding: 2.1rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .header__inner {
    padding: 1rem 0.8rem;
  }
}
.header__logo {
  font-family: var(--font-family-jp);
}
.header__logo a {
  color: var(--text-color);
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .header__logo a {
    font-size: 1.5rem;
  }
}
.header__nav .menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
@media screen and (max-width: 781px) {
  .header__nav .menu {
    gap: 14px;
  }
}
.header__nav .menu li a {
  color: var(--text-color);
}
@media screen and (max-width: 1024px) {
  .header__nav .menu li a {
    font-size: 1.2rem;
  }
}
.header__nav .menu li:last-child a {
  padding: 1.24rem 2.25rem 1.25rem 3.25rem;
  color: white;
}
.header__nav .menu li:last-child a::before {
  content: "\e158";
}
.header .hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header .hamburger {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    position: relative;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__nav.open {
    right: 0;
  }
  .header__nav ul {
    flex-direction: column;
  }
  .header .hamburger {
    position: relative;
    aspect-ratio: 1;
    width: 34px;
    z-index: 3;
  }
  .header .hamburger span {
    position: absolute;
    background-color: var(--text-color);
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease-in-out;
  }
  .header .hamburger span:nth-child(1) {
    top: 5px;
  }
  .header .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header .hamburger span:nth-child(3) {
    bottom: 5px;
  }
  .header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }
  .header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
  }
}

main.top .mv {
  position: relative;
  aspect-ratio: 16/7;
}
@media screen and (max-width: 1024px) {
  main.top .mv {
    aspect-ratio: 37/23;
  }
}
main.top .mv__slider, main.top .mv__slider * {
  height: 100%;
}
main.top .mv__slider img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
main.top .mv__txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 13vw;
}
@media screen and (max-width: 1024px) {
  main.top .mv__txt {
    left: 1rem;
    top: 2rem;
    transform: unset;
  }
}
main.top .mv__txt h1 {
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.1em;
}
main.top .tab-contents__area .information__list {
  padding-top: 2.8125rem;
}
@media screen and (max-width: 781px) {
  main.top .about .section__half-content .section__title {
    text-align: center;
    margin-bottom: 1.2rem;
  }
}
main.top .project__list {
  display: flex;
  flex-direction: column;
  gap: 5.6875rem;
}
@media screen and (max-width: 1024px) {
  main.top .project__list {
    gap: 4.0625rem;
  }
}
main.top .project__item {
  position: relative;
  padding: 6vw 0;
}
@media screen and (max-width: 1024px) {
  main.top .project__item {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  main.top .project__item .section__inner {
    padding: 0;
  }
}
main.top .project__item .project__content {
  max-width: 37.5vw;
  background-color: var(--main-color);
  color: #fff;
  padding: 3.9375rem;
  margin: 0 0 0 auto;
  min-width: 530px;
}
@media screen and (max-width: 1024px) {
  main.top .project__item .project__content {
    max-width: unset;
    min-width: auto;
    width: 100%;
    padding: 1.6rem 1rem;
  }
}
main.top .project__item .project__content h3 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  main.top .project__item .project__content h3 {
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}
main.top .project__item .project__content p {
  margin: 0;
}
main.top .project__item .project__img {
  position: absolute;
  max-width: 60vw;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
  min-width: 1000px;
}
@media screen and (max-width: 1024px) {
  main.top .project__item .project__img {
    position: relative;
    max-width: unset;
    min-width: auto;
    width: 100%;
  }
}
main.top .project__item:nth-child(even) .project__content {
  margin: 0 auto 0 0;
}
main.top .project__item:nth-child(even) .project__img {
  left: auto;
  right: 0;
}
main.top .message__media {
  flex-direction: row-reverse;
}
@media screen and (max-width: 781px) {
  main.top .message__media {
    flex-direction: column-reverse;
  }
}
main.top .message__img {
  flex: 0.38;
  aspect-ratio: 1/1.15;
}
@media screen and (max-width: 781px) {
  main.top .message__img {
    max-height: 250px;
    margin: 0 auto;
  }
}
main.top .message .ceo-name {
  text-align: right;
  line-height: 1.4;
  margin-top: 1rem;
}
main.top .message .ceo-name h4 {
  font-family: var(--font-family-jp);
  font-size: 1.625rem;
}
main.top .message .ceo-name h4::before {
  content: "会長";
  font-size: 0.75em;
  padding-right: 0.5rem;
}
main.top .member__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.8125rem;
}
@media screen and (max-width: 781px) {
  main.top .member__list {
    gap: 1rem;
  }
}
main.top .member__item {
  width: calc(33.3333333333% - 1.875rem);
}
@media screen and (max-width: 781px) {
  main.top .member__item {
    width: calc(33.3333333333% - 0.6659rem);
  }
}
@media screen and (max-width: 580px) {
  main.top .member__item {
    width: 100%;
  }
}
main.top .member__item > a {
  height: 100%;
  display: flex;
  align-items: anchor-center;
  justify-content: center;
  width: 100%;
  position: relative;
  min-height: 85px;
}
@media screen and (max-width: 781px) {
  main.top .member__item > a {
    min-height: 70px;
  }
}
main.top .member__item > a .member__name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.top .member__item > a:hover {
  opacity: 1;
}
main.top .member__item > a:hover .member__name {
  opacity: 1;
}
main.top .member__item .banner__text {
  font-family: var(--font-family-jp);
  color: var(--text-color);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.information .category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .information .category-tabs {
    gap: 0.85rem;
  }
}
.information .category-tabs .btn-cat.active span {
  background-color: var(--main-color);
}
.information .category-tabs .btn-cat.active span::before {
  content: "\e5e1";
  color: white;
}
.information .category-tabs .btn-cat:not(.active) span {
  color: var(--main-color);
  background-color: white;
  cursor: pointer;
  border: 2px solid var(--main-color);
  transition: all 0.3s;
}
.information .category-tabs .btn-cat:not(.active) span::before {
  content: "\e5e1";
}
.information .category-tabs .btn-cat:not(.active):hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .information .category-tabs .btn-cat {
    width: calc(33.3333333333% - 0.625rem);
  }
  .information .category-tabs .btn-cat span {
    min-width: auto;
    width: 100%;
    padding: 0.85em 0.8em 0.85em 1.5em;
  }
  .information .category-tabs .btn-cat span::before {
    left: 0.5rem;
    top: 53%;
    transform: translateY(-50%);
    font-size: 0.85rem;
  }
}
.information .no-post {
  text-align: center;
  margin: 0 auto;
}
.information__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2.8125rem;
}
@media screen and (max-width: 781px) {
  .information__list {
    gap: 2rem;
  }
}
.information__item {
  width: calc(33.3333333333% - 1.875rem);
}
@media screen and (max-width: 1024px) {
  .information__item {
    width: calc(50% - 1.875rem);
  }
}
@media screen and (max-width: 580px) {
  .information__item {
    width: 100%;
  }
}
.information__item > a {
  display: block;
  width: 100%;
}
.information__item dl {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.75rem;
}
.information__item dl dd .category-name {
  font-size: 14px;
  background-color: var(--main-color);
  color: white;
  line-height: 1;
  padding: 0.25em 0.5em;
}
.information__item h3 {
  font-size: 1.25rem;
  padding-top: 0.5rem;
  line-height: 1.4;
}
.information__img {
  aspect-ratio: 37/28;
}
.information__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.information__img .no-image {
  border: 1px solid var(--border-color);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.information__img .no-image span {
  font-family: var(--font-family-jp);
  color: var(--text-color);
}
.information .btn-area.more-btn {
  text-align: center;
  padding-top: 2.8125rem;
}
.information .btn-area.more-btn a::before {
  content: "\e5e1";
  color: white;
}

.footer__cta {
  padding: 3.25rem 0 3.5rem;
  background-image: url(../img/bg_footer.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
@media screen and (max-width: 781px) {
  .footer__cta {
    background-image: url(../img/bg_footer-sp.jpg);
  }
}
.footer__cta .section__title {
  color: #fff;
}
.footer__cta .section__title span {
  color: #fff;
}
.footer__cta p {
  font-size: 1.3125rem;
  text-align: center;
}
@media screen and (max-width: 781px) {
  .footer__cta p {
    font-size: 1.2rem;
  }
}
.footer__cta .btn-area {
  text-align: center;
}
.footer__cta .btn-area a {
  font-size: 1.125rem;
  background-color: #fff;
  color: var(--text-color);
  border: unset;
}
.footer__cta .btn-area a::before {
  content: "\e158";
  color: var(--main-color);
}
.footer.section {
  padding: 2.5rem 0;
}
.footer.section .footer__half {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer.section .footer__half {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.footer.section .footer__logo {
  font-size: 1.875rem;
  font-family: var(--font-family-jp);
}
.footer.section .footer__nav .menu {
  display: flex;
  gap: 2.25rem;
}
@media screen and (max-width: 781px) {
  .footer.section .footer__nav .menu {
    display: grid;
    gap: 0.5rem 1.5rem;
    grid-template-columns: repeat(2, auto);
  }
  .footer.section .footer__nav .menu li {
    text-align: center;
  }
}
.footer.section .footer__nav .menu a {
  color: var(--text-color);
}
.footer.section .copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 3rem;
}
@media screen and (max-width: 781px) {
  .footer.section .copyright {
    margin-top: 28px;
  }
}

.archive .information__list {
  padding-top: 2.8125rem;
}
.archive .information .category-tabs li {
  max-width: calc(33.3333333333% - 1.875rem);
}
@media screen and (max-width: 1024px) {
  .archive .information .category-tabs li {
    max-width: unset;
    width: calc(50% - 1.875rem);
  }
}
@media screen and (max-width: 580px) {
  .archive .information .category-tabs li {
    width: 100%;
  }
}
.archive .information .category-tabs li .btn-cat {
  width: 100%;
}
.archive .pagination {
  margin-top: 3rem;
  font-size: 1.25rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.archive .pagination > * {
  background-color: var(--main-color);
  color: #fff;
  width: 2.25em;
  height: 2.25em;
  display: grid;
  align-items: center;
  justify-content: center;
}
.archive .pagination a {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.pankuzu {
  padding: 0.5rem;
  border-top: 1px solid var(--border-color);
  word-wrap: break-word;
}
.pankuzu a {
  color: var(--text-color);
  text-decoration: underline;
}

.contact {
  max-width: 600px;
  margin: 0 auto;
}
.contact .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.contact .wpcf7-form label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.contact .wpcf7-form input[type=text],
.contact .wpcf7-form input[type=email],
.contact .wpcf7-form input[type=tel],
.contact .wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact .wpcf7-form input[type=text]:focus,
.contact .wpcf7-form input[type=email]:focus,
.contact .wpcf7-form input[type=tel]:focus,
.contact .wpcf7-form textarea:focus {
  border-color: var(--main-color);
  outline: none;
}
.contact .wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact .wpcf7-form input[type=submit] {
  background-color: var(--main-color);
  text-align: center;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact .wpcf7-form input[type=submit]:hover {
  background-color: #005fa3;
}
.contact .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 0.9rem;
  color: #d93025;
  margin-top: 0.25rem;
}
.contact .wpcf7-form .wpcf7-response-output {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  font-size: 1rem;
}
.contact .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #e6f4ea;
  color: #188038;
  border: 1px solid #188038;
}
.contact .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors, .contact .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #fce8e6;
  color: #d93025;
  border: 1px solid #d93025;
}

.single .information .single {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.single .information .single__thumbnail {
  aspect-ratio: 37/28;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.single .information .single__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single .information .single__header {
  margin-bottom: 2rem;
  text-align: center;
}
.single .information .single__meta {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  gap: 0.5rem 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.single .information .single__date {
  font-size: 0.9rem;
  margin: 0;
}
.single .information .single__categories {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.single .information .single__categories li {
  font-size: 0.85rem;
  background-color: var(--main-color);
  padding: 0.5rem 0.75rem;
  color: #fff;
  line-height: 1;
}
.single .information .single__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.single .information .single__content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.single .information .single__content h1,
.single .information .single__content h2,
.single .information .single__content h3,
.single .information .single__content h4,
.single .information .single__content h5,
.single .information .single__content h6 {
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.single .information .single__content h1 {
  font-size: 2rem;
}
.single .information .single__content h2 {
  font-size: 1.75rem;
}
.single .information .single__content h3 {
  font-size: 1.5rem;
}
.single .information .single__content h4 {
  font-size: 1.25rem;
}
.single .information .single__content h5 {
  font-size: 1.1rem;
}
.single .information .single__content h6 {
  font-size: 1rem;
}
.single .information .single__content p {
  margin-bottom: 1.5rem;
}
.single .information .single__content ul,
.single .information .single__content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.single .information .single__content a {
  color: #007acc;
  text-decoration: underline;
}
.single .information .single__content a:hover {
  text-decoration: none;
}
.single .information .single__content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}
.single .information .single__content blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: #f9f9f9;
  border-left: 5px solid #ccc;
}
.single .information .btn-area {
  text-align: center;
}
.single .information .btn-area a::before {
  content: "\e5e1";
}

.not-found p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2rem;
}
.not-found .btn-area {
  text-align: center;
}
.not-found .btn-area a::before {
  content: "\e5e1";
}
/*# sourceMappingURL=style.css.map */