@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

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

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

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

body {
  background: #111;
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.breadcrumb {
  color: #fff;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-top: 0.75rem;
  }
}

.btn {
  text-align: center;
}

.button {
  width: 336px;
  width: 21rem;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  border: 1px solid #fff;
  background-color: #333;
  padding: 9px 10px;
  padding: 0.5625rem 0.625rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
}
@media screen and (min-width: 768px) {
  .button {
    width: 22.5rem;
    font-size: 1rem;
    padding: 1rem 0.75rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .button:hover {
    color: #333;
  }
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background-color: #fff;
}

.button:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.button--white {
  width: 134px;
  width: 8.375rem;
  height: 30px;
  height: 1.875rem;
  text-align: center;
  display: inline-block;
  color: #000;
  background: #fff;
  padding: 7px 20px 5px 20px;
  padding: 0.4375rem 1.25rem 0.3125rem 1.25rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button--white:hover {
  color: #fff;
}

.button--white::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: #333;
}

.button--white:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .button-fz-20 {
    font-size: 1.25rem;
    padding: 0.875rem 1rem 0.875rem 0.5rem;
    letter-spacing: 0.125rem;
  }
}

.card {
  background: #fff;
  color: #333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  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) {
  .card:hover {
    background: #333;
    color: #fff;
  }
  .card:hover .card__date {
    color: #fff;
  }
}

.card__img {
  aspect-ratio: 335/223;
}
@media screen and (min-width: 768px) {
  .card__img {
    aspect-ratio: 350/233;
  }
}

.card__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 4px 22px 15px;
  padding: 0.25rem 1.375rem 0.9375rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .card__body {
    padding-left: 1.4375rem;
    padding-right: 1.4375rem;
  }
}

.card__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 35px;
  line-height: 2.1875rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

.card__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
  padding-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .card__info {
    padding-top: 0.6875rem;
  }
}

.card__category {
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  background: #ffea2e;
  line-height: 1;
  padding: 4px 3px 6px 5px;
  padding: 0.25rem 0.1875rem 0.375rem 0.3125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

.card__date {
  color: #333;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

.is-new {
  position: relative;
}

.is-new::after {
  content: "New";
  color: #333;
  line-height: 35px;
  line-height: 2.1875rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  padding: 12px;
  padding: 0.75rem;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  background: #ffba6a;
  border-radius: 50%;
  position: absolute;
  top: -16px;
  top: -1rem;
  left: -15px;
  left: -0.9375rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 1.5rem;
  }
}

.footer {
  padding-top: 46px;
  padding-top: 2.875rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 1.875rem 2rem 1.875rem;
  }
}

.footer__content {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__content {
    -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;
  }
}

.footer__logo {
  text-align: center;
  padding-top: 6px;
  padding-top: 0.375rem;
}

.footer__logoLink {
  display: inline-block;
}

.footer__logoLink img {
  width: 70px;
  width: 4.375rem;
}

.footer__nav {
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 0.5rem;
  }
}

.footer-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .footer-nav__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.125rem;
  }
}

.footer-nav__item {
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .footer-nav__item a:hover::after {
    content: "";
    width: 100%;
    height: 0.0625rem;
    background: #f9f871;
    position: absolute;
    left: 50%;
    bottom: -0.25rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.footer__copyright {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #fff;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
  text-align: center;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 4.5rem;
    font-size: 1rem;
    letter-spacing: 0.125rem;
  }
}

.hamburger {
  position: relative;
  width: 26px;
  width: 1.625rem;
  height: 13px;
  height: 0.8125rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  position: absolute;
  width: inherit;
  height: 2px;
  height: 0.125rem;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0%;
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger span:nth-child(3) {
  top: 100%;
}

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  display: none;
}

.hamburger.is-active span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header {
  width: 100%;
  height: 50px;
  height: 3.125rem;
  z-index: 1000;
  position: fixed;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: rgba(0, 0, 0, .5);
  border: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .header {
    border: none;
  }
}

.header.is-color {
  background: rgb(0, 0, 0);
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-left: 22px;
  padding-left: 1.375rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-top: 0rem;
    padding-left: 2rem;
    padding-right: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__logoLink img {
  width: 70px;
  width: 4.375rem;
}
@media screen and (min-width: 768px) {
  .header__logoLink img {
    width: 5.875rem;
  }
}

@media screen and (min-width: 768px) {
  .header__drawer {
    display: none;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.pageTop {
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 40px;
  bottom: 2.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .pageTop {
    right: 1.9375rem;
    bottom: 1.9375rem;
  }
}

.pageTop a {
  display: block;
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  background: #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pageTop a span {
  background: transparent;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% + 0.25em)) rotate(-45deg);
          transform: translate(-50%, calc(-50% + 0.25em)) rotate(-45deg);
}

.pageTop a:hover {
  background: #333;
}

.pageTop a:hover span {
  border-color: #fff;
}

.pc-nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .pc-nav {
    display: block;
  }
}

.pc-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  gap: 30px;
  gap: 1.875rem;
}

.pc-nav__item {
  height: inherit;
}

.pc-nav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  height: inherit;
  position: relative;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
}

.pc-nav__item:not(:last-child) a:hover::after {
  content: "";
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: #f9f871;
  position: absolute;
  left: 50%;
  bottom: 8px;
  bottom: 0.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pc-nav__item.is-bg-white {
  background: #fff;
}

.pc-nav__item.is-bg-white a {
  color: #333;
  padding: 0 30px;
  padding: 0 1.875rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pc-nav__item.is-bg-white a:hover {
  background: #333;
  color: #fff;
}

.section-header {
  display: block;
  text-align: center;
  position: relative;
  max-width: 1100px;
  max-width: 68.75rem;
  margin-left: auto;
  margin-right: auto;
}

.section-header__en-title {
  font-size: 50px;
  font-size: 3.125rem;
  font-family: "Noto Serif JP", serif;
  color: #f9f871;
  font-weight: 400;
  opacity: 0.2;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  position: absolute;
  top: -40px;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .section-header__en-title {
    font-size: 6.875rem;
    top: -2.375rem;
  }
}

@media screen and (min-width: 768px) {
  .section-header__en-title-left {
    left: 0%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  .section-header__en-title-right {
    left: auto;
    left: initial;
    right: 0rem;
    top: -3rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.section-header__ja-title {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .section-header__ja-title {
    font-size: 1.875rem;
    padding-top: 0.1875rem;
    letter-spacing: 0.03125rem;
  }
}

.sp-nav {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 10;
  background: #111;
}

.sp-nav.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .sp-nav.is-active {
    display: none;
  }
}

.sp-nav__items {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  gap: 2rem;
  min-height: 100vh;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding-top: 208px;
  padding-top: 13rem;
}

.sp-nav__item {
  width: 100%;
}

.sp-nav__item a {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
}

body.drawer-open {
  overflow: hidden;
  height: 100%;
}

.sp-nav__drawer {
  height: 100%;
  width: 100%;
  overflow-y: auto;
}

.sub__mv {
  height: 425px;
  height: 26.5625rem;
  background-image: url(../images/common/p-blog-mv_sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sub__mv {
    height: 23.125rem;
    background-image: url(../images/common/p-blog-mv_pc.jpg);
  }
}

.sub__title {
  font-size: 30px;
  font-size: 1.875rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-top: 6px;
  padding-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .sub__title {
    font-size: 2.1875rem;
    padding-top: 0;
    margin-top: -0.1875rem;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}

.blog {
  margin-top: 88px;
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .blog {
    margin-top: 12.8125rem;
  }
}

.blog__cards {
  margin-top: 63px;
  margin-top: 3.9375rem;
}
@media screen and (min-width: 768px) {
  .blog__cards {
    margin-top: 2.1875rem;
  }
}

.blog__btn {
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .blog__btn {
    margin-top: 3.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .blog-header .section-header__en-title {
    top: -3.5rem;
  }
}

.contact {
  margin-top: 121px;
  margin-top: 7.5625rem;
  padding-top: 57px;
  padding-top: 3.5625rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  background: #333;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 9rem;
    padding-top: 8.9375rem;
    padding-bottom: 8.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .contact__header .section-header__en-title {
    top: -5.4375rem;
  }
}

.contact__text {
  padding-top: 18px;
  padding-top: 1.125rem;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .contact__text {
    text-align: center;
    padding-top: 0;
    margin-top: 1.125rem;
  }
}

.contact__btn {
  margin-top: 47px;
  margin-top: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    margin-top: 3.8125rem;
  }
}

.content {
  margin-top: 140px;
  margin-top: 8.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .content {
    margin-top: 11.375rem;
  }
}

.content::before {
  content: "";
  width: 100%;
  height: 679px;
  height: 42.4375rem;
  position: absolute;
  top: -22px;
  top: -1.375rem;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(to right top, transparent 49.98%, yellow 50%, yellow calc(50.03% + 0.5px), transparent calc(50.03% + 0.5px));
}
@media screen and (min-width: 768px) {
  .content::before {
    width: 94.6875%;
    height: 75.75rem;
    top: -6.25rem;
  }
}

.content__items {
  margin-top: 48px;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .content__items {
    margin-top: 2.75rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.content__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .content__item {
    overflow: hidden;
  }
}

.content__img {
  aspect-ratio: 188/168;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .content__img {
    aspect-ratio: 320/320;
  }
}

.content__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.content__text-block {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.content__text {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
}
@media screen and (min-width: 768px) {
  .content__text {
    font-size: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .content__item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    background: #fff;
    opacity: 0.6;
  }
}

@media screen and (min-width: 768px) {
  .content__item:hover::before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
          animation: zoomUp 10s linear 0s 1 normal both;
}

.slide-img img {
  display: block;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
}

.image-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  background: #111;
  z-index: 1;
}

.mv {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.mv-swiper-container {
  height: 100%;
}

.mv-slide {
  height: 100%;
}

.mv-slide-img {
  height: 100vh;
}

.mv-slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__header {
  position: absolute;
  width: 100%;
  top: 49.5%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  letter-spacing: 0.03125rem;
  text-align: center;
}

.mv__title {
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  margin-left: 3px;
  margin-left: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 3.125rem;
    margin-top: 0;
    margin-left: 0;
  }
}

.mv__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .mv__subtitle {
    font-size: 1.5625rem;
    margin-top: 0.3125rem;
  }
}

.news {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .news {
    margin-top: 2rem;
  }
}

.news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .news__content {
    max-width: 65.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .news__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.news__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .news__info {
    gap: 3rem;
  }
}

.news__date,
.news__category {
  display: inline-block;
  line-height: 1;
}

.news__category {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 8px 8px;
  padding: 0.5rem 0.5rem;
  border: 1px solid #fff;
  width: 100px;
  width: 6.25rem;
  text-align: center;
}
.news__block {
  margin-top: 14px;
  margin-top: 0.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__block {
    margin-top: 0;
    margin-left: 3.75rem;
  }
}

.news__text {
  width: 100%;
  line-height: 1.4375;
  letter-spacing: normal;
}

.news__text:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-underline-offset: 0.25rem;
}

.news__btn {
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .news__btn {
    margin-top: 0;
    margin-left: 3rem;
  }
}

.overview {
  margin-top: 111px;
  margin-top: 6.9375rem;
}
@media screen and (min-width: 768px) {
  .overview {
    margin-top: 12.25rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .overview-header .section-header__en-title {
    top: -3rem;
  }
}

.Overview__body {
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .Overview__body {
    margin-top: 2.0625rem;
    padding-top: 5.125rem;
    padding-bottom: 4.8125rem;
    background: -webkit-gradient(linear, left top, right top, from(#333), color-stop(transparent), to(transparent));
    background: linear-gradient(90deg, #333 0% calc(50% + 16rem), transparent calc(50% + 16rem) 75.3%, transparent 100%);
  }
}

@media screen and (min-width: 768px) {
  .Overview__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .Overview-inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .Overview__imgBlock {
    width: 50.6%;
  }
}

.Overview__img {
  aspect-ratio: 375/261;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .Overview__img {
    aspect-ratio: 557/389;
  }
}

.Overview__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.Overview__textBlock {
  color: #fff;
  padding-bottom: 21px;
  padding-bottom: 1.3125rem;
  padding-left: 18px;
  padding-left: 1.125rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .Overview__textBlock {
    width: 46.3%;
    padding-left: 0rem;
    padding-right: 0rem;
    padding-bottom: 0rem;
    margin-right: 3.1%;
    margin-top: 1.5625rem;
  }
}

.Overview__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  padding-left: 18px;
  padding-left: 1.125rem;
  text-align: center;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .Overview__subtitle {
    text-align: left;
    font-size: 1.5625rem;
    letter-spacing: 0.03125rem;
    padding-left: 0;
  }
}

.Overview__text {
  margin-top: 22px;
  margin-top: 1.375rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .Overview__text {
    line-height: 2.1875rem;
    letter-spacing: 0.03125rem;
    margin-top: 2.25rem;
  }
}

.overview__btn {
  padding-top: 28px;
  padding-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .overview__btn {
    text-align: left;
    margin-top: 3.1875rem;
    padding-top: 0;
  }
}

.tab {
  margin-top: 85px;
  margin-top: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .tab {
    margin-top: 7.375rem;
  }
}

.tab__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .tab__items {
    gap: 2.4375rem;
  }
}

.tab__item {
  color: #fff;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1.1;
  padding-left: 4px;
  padding-left: 0.25rem;
}
@media screen and (min-width: 768px) {
  .tab__item {
    line-height: 1.4375;
    padding-left: 0;
  }
}

.is-select-tab {
  color: #333;
  background: #fff;
  padding: 4px 8px 6px 8px;
  padding: 0.25rem 0.5rem 0.375rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .is-select-tab {
    padding: 0.1875rem 0.5625rem;
    margin-top: -0.25rem;
  }
}

.page-blog {
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .page-blog {
    margin-top: 2.5625rem;
  }
}

.wp-pagenavi {
  margin-top: 79px;
  margin-top: 4.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    margin-top: 6.5625rem;
  }
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #fff;
  display: inline-block;
  border: 1px solid #fff;
  line-height: 15.8px;
  line-height: 0.9875rem;
  letter-spacing: 0.5px;
  letter-spacing: 0.03125rem;
  padding: 3px 6px 3px 6px;
  padding: 0.1875rem 0.375rem 0.1875rem 0.375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0 7px;
  margin: 0 0.4375rem;
}

.wp-pagenavi a:hover {
  color: #000;
  background: #fff;
}

.wp-pagenavi span.current {
  color: #000;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi span.current {
    background: #f9f871;
  }
}

.wp-pagenavi .prev {
  margin-right: 12px;
  margin-right: 0.75rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  padding: 3px 11px;
  padding: 0.1875rem 0.6875rem;
  margin-left: 0;
}

.wp-pagenavi .next {
  margin-left: 12px;
  margin-left: 0.75rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  padding: 3px 11px;
  padding: 0.1875rem 0.6875rem;
  margin-right: 0;
}

.page-blog__contact {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .page-blog__contact {
    margin-top: 9.25rem;
  }
}

.page-blog-contact__text {
  color: #fff;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .page-blog-contact__text {
    margin-top: 1.5625rem;
    text-align: center;
  }
}

.page-blog-contact__btn {
  margin-top: 43px;
  margin-top: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .page-blog-contact__btn {
    margin-top: 3.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .page-blog__footer-items {
    gap: 2.125rem;
    letter-spacing: 0.125rem;
  }
}

.page-blog__footer-copyright {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
  padding-left: 3px;
  padding-left: 0.1875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-blog__footer-copyright {
    margin-top: 5.25rem;
    font-size: 1rem;
    padding-left: 0.1875rem;
    letter-spacing: 0.125rem;
  }
}

.works {
  position: relative;
  margin-top: 111px;
  margin-top: 6.9375rem;
}
@media screen and (min-width: 768px) {
  .works {
    margin-top: 12.125rem;
    width: 100%;
  }
}

.works::before {
  content: "";
  width: 100%;
  height: 1398px;
  height: 87.375rem;
  position: absolute;
  top: 163px;
  top: 10.1875rem;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(to left top, transparent 49.97%, yellow 50%, yellow calc(50.03% + 0.5px), transparent calc(50.03% + 0.5px));
}
@media screen and (min-width: 768px) {
  .works::before {
    width: 97%;
    height: 77.625rem;
    top: 37.625rem;
  }
}

.works__body {
  margin-top: 47px;
  margin-top: 2.9375rem;
  padding-bottom: 21px;
  padding-bottom: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .works__body {
    margin-top: 2.1875rem;
    padding-top: 5rem;
    padding-bottom: 3.5rem;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(24.7%, #333), to(#333));
    background: linear-gradient(90deg, transparent 0% calc(50% - 16rem), #333 24.7%, #333 100%);
  }
}

@media screen and (min-width: 768px) {
  .works__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .works-inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .works__img-block {
    width: 50.6%;
  }
}

.works__img {
  aspect-ratio: 375/261;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .works__img {
    aspect-ratio: 557/389;
  }
}

.works__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.js-works-pagination {
  position: static;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background: #f9f871;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px;
  margin: 0.375rem;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    position: relative;
    top: 0.625rem;
    right: 1.25rem;
  }
}

.works__content {
  color: #fff;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .works__content {
    width: 46.3%;
    margin-left: 3.1%;
    margin-top: 1.875rem;
    padding-right: 0;
    padding-left: 0;
  }
}

.works__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  text-align: center;
  padding-left: 16px;
  padding-left: 1rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .works__subtitle {
    text-align: left;
    font-size: 1.5625rem;
    letter-spacing: 0.03125rem;
    padding-left: 0;
  }
}

.works__text {
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  margin-top: 22px;
  margin-top: 1.375rem;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .works__text {
    line-height: 2.1875rem;
    letter-spacing: 0.03125rem;
    margin-top: 2.125rem;
  }
}

.works__btn {
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .works__btn {
    text-align: left;
    margin-top: 3.125rem;
  }
}
/*# sourceMappingURL=styles.css.map */
