:root {
  --color-bg-primary: #C5AB5F;
  --color-bg-primary-light: rgba(197, 171, 95, 0.1);
  --color-bg-black: #000000;
  --color-bg-white: #FFFFFF;
  --color-bg-gray: #D1D1D1;
  --color-bg-gold: #ACA56C;
  --color-bg-orange: #D0A85E;
  --color-bg-blue: #6C9DAC;
  --color-bg-pink: #AC6CA0;
  --color-bg-green: #6CAC7B;
  --color-bg-thumbnail: #F8F8F8;
  --color-border-gray: #DDDDDD;
  --color-border-primary: #C5AB5F;
  --color-border-white: #FFFFFF;
  --color-font-base: #000000;
  --color-font-white: #FFFFFF;
  --color-font-gray: #666666;
  --color-font-thumbnail: #C7C7C7;
}

:root {
  --line-height-base: 1.75;
  --font-size-base-sp: 14px;
  --font-size-base-pc: 16px;
  --font-wait-base: 400;
  --font-family-ja: Noto Sans JP, serif;
}

:root {
  --width-content: 1080px;
  --width-content-s: 760px;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

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

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

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  line-height: var(--line-height-base);
  font-size: var(--font-size-base-sp);
  font-weight: var(--font-wait-base);
  font-family: var(--font-family-ja);
  color: var(--color-font-base);
  background: ver(--color-bg-white);
}
@media screen and (min-width: 768px) {
  body {
    font-size: var(--font-size-base-pc);
  }
}

.u-uppercase {
  text-transform: uppercase;
}

.u-inline-block {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .u-inline-block {
    display: inline;
  }
}

.u-inline-block-2 {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .u-inline-block-2 {
    display: inline-block;
  }
}

.u-inline-block-3 {
  display: inline;
}
@media screen and (min-width: 768px) {
  .u-inline-block-3 {
    display: block;
  }
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--color-font-base);
  background-color: var(--color-bg-white);
  font-size: 14px;
  font-weight: 700;
  width: 180px;
  padding: 8px 16px 9px;
  border-radius: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 14px;
  }
}
.c-button--black {
  color: var(--color-font-white);
  background-color: var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .c-button--black {
    font-size: 16px;
  }
}

.c-cta {
  padding-top: 58px;
  padding-bottom: 56px;
  width: 100%;
  height: 458.5px;
  aspect-ratio: 720/908;
  background-image: url("../../img/sp/bg-cta-sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-cta {
    height: 284px;
    aspect-ratio: 1366/284;
    background-image: url("../../img/bg-cta-pc.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.c-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .c-cta__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 132px;
  }
}

.c-cta__image {
  width: 100%;
  max-width: 323px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-cta__image {
    width: 304px;
    height: auto;
  }
}

.c-cta__body {
  width: 100%;
  max-width: 324px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-cta__body {
    width: 415px;
    text-align: left;
    margin-bottom: 3px;
  }
}

.c-cta__logo {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-cta__logo {
    width: 416px;
  }
}

.c-cta__text {
  color: var(--color-font-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 12px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .c-cta__text {
    margin-block: 16px;
    font-size: 14px;
  }
}

.c-label {
  display: inline-grid;
  color: var(--color-font-white);
  background-color: var(--color-bg-black);
  font-size: 12px;
  padding-inline: 16px;
  height: 24px;
  font-weight: 700;
  place-items: center;
  border-radius: 100px;
}
.c-label--htmlcss {
  background-color: var(--color-bg-gold);
}
.c-label--javascript {
  background-color: var(--color-bg-green);
}
.c-label--wordpress {
  background-color: var(--color-bg-blue);
}
.c-label--webdesign {
  background-color: var(--color-bg-orange);
}
.c-label--webcreation {
  background-color: var(--color-bg-pink);
}

.c-pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-pagenation__number {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--color-font-base);
  background: var(--color-bg-gray);
}
.c-pagenation__number--black {
  color: var(--color-font-white);
  background: var(--color-bg-black);
}

.c-post__inner {
  width: 100%;
}

.c-post__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
.c-post__header--single-page {
  margin-bottom: 10px;
  padding-right: 24px;
}

.c-post__header-date {
  color: var(--color-font-gray);
  font-size: 12px;
  line-height: 1;
}

.c-post__text {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-post__text {
    font-size: 20px;
    margin-bottom: 8px;
  }
}

.c-post__date {
  color: var(--color-font-gray);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.top-kv__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  border: solid 1px var(--color-border-primary);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-kv__post {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 77.5925925926%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    z-index: 10;
  }
}

.top-kv__post-thumbnail {
  display: grid;
  place-items: center;
  width: 100%;
  height: 158px;
  border-radius: 16px;
  text-align: center;
  background: #f8f8f8;
  color: #C7C7C7;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-kv__post-thumbnail {
    width: 50%;
    height: auto;
  }
}

.top-kv__post-content {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-inline: 16px;
  background: var(--color-bg-white);
}
@media screen and (min-width: 768px) {
  .top-kv__post-content {
    padding-top: 54px;
    padding-bottom: 54px;
    padding-inline: 20px;
    width: 50%;
  }
}

.top-kv__post-text {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .top-kv__post-text {
    font-size: 20px;
    max-width: 322px;
  }
}

.top-kv__post-date {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .top-kv__post-date {
    margin-top: 48px;
  }
}

.c-thumbnail {
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--color-font-thumbnail);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  background: var(--color-bg-thumbnail);
}
@media screen and (min-width: 768px) {
  .c-thumbnail--pc-large {
    font-size: 50px;
  }
  .c-thumbnail--single-page {
    font-size: 30px;
  }
}

.c-thumbnail__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.c-kv {
  background-color: var(--color-bg-white);
  background-image: url("../../img/bg-pattern-page-head.png");
  background-repeat: repeat;
  background-size: 90px 52.5px;
  border: solid 1px transparent;
  border-bottom: solid 1px var(--color-border-primary);
}

.c-kv__title {
  padding-top: 55px;
  padding-bottom: 55px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-kv__title {
    font-size: 26px;
  }
}

.c-label-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-label-date__date {
  color: var(--color-font-gray);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.c-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6; /* 32px */
}
@media screen and (min-width: 768px) {
  .c-heading {
    font-size: 26px;
  }
}

.c-text {
  font-size: 14px;
  line-height: 1.8; /* 24.5px */
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 16px;
  }
}

.c-intro-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.c-intro-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.c-intro-main__title {
  margin-top: 64px;
  padding: 10px 8px;
  color: var(--color-font-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  background: var(--color-bg-black);
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .c-intro-main__title {
    margin-top: 80px;
    font-size: 20px;
  }
}

.c-intro-main__text-contanier {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .c-intro-main__text-contanier {
    gap: 21px;
  }
}

.c-intro-main__text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-intro-main__text {
    margin-top: 24px;
    font-size: 16px;
  }
}

.c-intro-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.c-intro-sub__title {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  border-bottom: solid 1px var(--color-border-primary);
}
.c-intro-sub__title::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 22.5px;
  background-image: url("../../img/icon-mosha.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translateY(25%);
          transform: translateY(25%);
}
@media screen and (min-width: 768px) {
  .c-intro-sub__title {
    margin-top: 24px;
    font-size: 20px;
  }
}

.c-intro-sub__text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-intro-sub__text {
    margin-top: 24px;
    font-size: 16px;
  }
}

.c-date {
  color: var(--color-font-gray);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.c-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-form__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .c-form__item--aic {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-form__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .c-form__label {
    padding-top: 4px;
    width: 270px;
    font-size: 16px;
  }
}

.c-form__text {
  margin-top: 4px;
  padding-inline: 0.5em;
  border: solid 1px var(--color-border-gray);
  width: 100%;
  height: 45px;
}

.c-form__textarea {
  margin-top: 4px;
  padding-inline: 0.5em;
  border: solid 1px var(--color-border-gray);
  width: 100%;
  height: 200px;
}

.c-form__send {
  text-align: center;
}

/*!
layout > container
------------------------------
*/
.l-inner, .l-inner-s {
  width: 90%;
  margin: 0 auto;
}

.l-inner-s {
  max-width: var(--width-content-s);
}

.l-inner {
  max-width: var(--width-content);
}

.header-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 65px;
}
@media screen and (min-width: 768px) {
  .header-head {
    height: 75px;
  }
}

.header-head__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-head__logo img {
  display: block;
  width: 180px;
}
@media screen and (min-width: 768px) {
  .header-head__logo img {
    width: 320px;
  }
}

.header-head__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
}

.header-head__icon img {
  display: block;
  width: 32px;
  height: auto;
}

.header-nav {
  height: 40px;
  background: var(--color-bg-primary);
}

.header-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  overflow: hidden;
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.header-nav__link {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-font-white);
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-nav__link {
    font-size: 14px;
  }
}

.header-nav__link:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background-color: var(--color-font-white);
}

.footer {
  background: var(--color-bg-primary-light);
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 0;
  }
}

.footer__inner {
  padding-top: 40px;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 40px;
    padding-bottom: 16px;
  }
}

.footer__logo {
  width: min(323px, 100vw - 36px);
  height: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 320px;
  }
}

.footer__text {
  font-size: 12px;
  margin-top: 18px;
}

.footer__icons-and-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__icons-and-nav {
    margin-top: 13px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.footer__icons {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .footer__icons {
    margin-top: 0;
  }
}

.footer__icon img {
  display: block;
  width: 32px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .footer__icon img {
    width: 32px;
  }
}

.footer__nav {
  margin-top: 32px;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 82px;
    margin-top: 13px;
  }
}

.footer__nav-slash {
  padding-left: 0px;
  padding-right: 0px;
}

.footer__link a {
  display: inline-block;
}

.inline-block {
  display: inline-block;
}

.footer__copyright {
  margin-top: 32px;
  padding-top: 14px;
  border-top: solid 1px var(--color-border-gray);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__nav-link {
  line-height: 1;
  position: relative;
}
.footer__nav-link:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -4px;
  top: 50%;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  height: 20px;
  width: 1px;
  background-color: var(--color-font-white);
}

.top-kv {
  background-image: url("../../img/bg-pattern-kv.jpg");
  background-repeat: repeat;
  background-size: 50%;
  background-position: top left;
  position: relative;
}

.top-kv__inner {
  padding-top: 56px;
  padding-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .top-kv__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.top-kv__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top-kv__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.8888888889%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top-kv__image-character_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .top-kv__image-character_wrapper {
    display: block;
    width: 18.5185185185%;
  }
}

.top-kv__image-character {
  width: 130px;
}
@media screen and (min-width: 768px) {
  .top-kv__image-character {
    width: 100%;
  }
}

.top-kv__image-treat {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 180px;
}
@media screen and (min-width: 768px) {
  .top-kv__image-treat {
    width: 250px;
    bottom: 25px;
  }
}

.top-posts {
  margin-top: 54px;
  margin-bottom: 54px;
}
@media screen and (min-width: 768px) {
  .top-posts {
    margin-top: 64px;
    margin-bottom: 63px;
  }
}

.top-posts__inner {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 40.4px 40px;
}
@media screen and (min-width: 768px) {
  .top-posts__inner {
    margin-top: 64px;
    margin-bottom: 41px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    gap: 40px 24px;
  }
}
@media screen and (min-width: 1080px) {
  .top-posts__inner {
    margin-top: 64px;
    margin-bottom: 41px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 40px 24px;
  }
}

.top-posts__pagenation-wrapper {
  text-align: center;
}

.top-posts__pagenation {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .top-posts__pagenation {
    margin-top: 5px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.archive-posts {
  margin-top: 54px;
  margin-bottom: 54px;
}
@media screen and (min-width: 768px) {
  .archive-posts {
    margin-top: 64px;
    margin-bottom: 63px;
  }
}

.archive-posts__inner {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 40.4px 40px;
}
@media screen and (min-width: 768px) {
  .archive-posts__inner {
    margin-top: 64px;
    margin-bottom: 41px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    gap: 40px 24px;
  }
}
@media screen and (min-width: 1080px) {
  .archive-posts__inner {
    margin-top: 64px;
    margin-bottom: 41px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 40px 24px;
  }
}

.single-kv {
  margin-top: 54px;
}
@media screen and (min-width: 768px) {
  .single-kv {
    margin-top: 82px;
  }
}

.single-kv__heading {
  margin-top: 8px;
}

.single-kv__thumbnail {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .single-kv__thumbnail {
    margin-top: 26px;
  }
}

.single-kv__text {
  margin-top: 40px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .single-kv__text {
    margin-top: 38px;
  }
}

.single-kv__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-intro {
  margin-top: 62px;
}
@media screen and (min-width: 768px) {
  .single-intro {
    margin-top: 78px;
  }
}

.single-intro__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.single-intro__sub {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .single-intro__sub {
    margin-top: 23px;
  }
}

.single-banner {
  margin-top: 21px;
}

.single-recommend {
  margin-top: 56px;
  margin-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .single-recommend {
    margin-top: 64px;
    margin-bottom: 68px;
  }
}

.single-recommend__title {
  text-align: center;
}

.single-recommend-post {
  display: grid;
  grid-template-rows: 1fr 1fr;
  margin-top: 40px;
  gap: 38px 40px;
}
@media screen and (min-width: 768px) {
  .single-recommend-post {
    margin-top: 40px;
    margin-bottom: 41px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 46px 24px;
  }
}

.single-recommend__title-logo-image {
  width: 34px;
}

.single-recommend__title-text {
  margin-top: 5.6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.page-content {
  margin-top: 56px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .page-content {
    margin-top: 64px;
    margin-bottom: 62px;
  }
}

.page-content__text {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .page-content__text {
    margin-top: 23px;
  }
}

.page-content__text-2 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .page-content__text-2 {
    margin-top: 22px;
  }
}

.page-content__text-3 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .page-content__text-3 {
    margin-top: 21px;
  }
}

.contact-form {
  margin-top: 56px;
  margin-bottom: 65px;
}
@media screen and (min-width: 768px) {
  .contact-form {
    margin-top: 64px;
    margin-bottom: 66px;
  }
}

.contact-form__heading {
  margin-top: 8px;
}

.contact-form__text {
  margin-top: 10px;
}
.contact-form__form {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .contact-form__form {
    margin-top: 29px;
    gap: 22px;
  }
}

.error-kv {
  text-align: center;
}

.error-message {
  margin-top: 58px;
  margin-bottom: 52px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .error-message {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.error-message__text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .error-message__text {
    text-align: center;
  }
}

.error-message__button {
  margin-top: 21px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .error-message__button {
    margin-top: 23px;
  }
}