@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&family=Noto+Serif+JP:wght@300;400;700&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
}

.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;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

body {
  background: #111;
  color: #fff;
}

*,
*::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;
}

.btn {
  width: 336px;
  width: 21rem;
  text-align: center;
}

.btn__link {
  display: block;
  padding: 11px 0 10px;
  padding: 0.6875rem 0 0.625rem;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn__link {
    font-size: 1rem;
  }
}

.btn__link:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn__link:hover {
  color: #333;
}

.btn__link:hover:after {
  left: 0;
  width: 100%;
}

.btn__link:active {
  top: 2px;
}

.drawer-icon {
  position: fixed;
  top: 14px;
  top: 0.875rem;
  right: 22px;
  right: 1.375rem;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.close .drawer-icon__bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  top: 0.5rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.drawer-icon.close .drawer-icon__bar2 {
  display: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.drawer-icon.close .drawer-icon__bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  top: 0.5rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.drawer-icon__bars {
  width: 24px;
  width: 1.5rem;
  height: 13px;
  height: 0.8125rem;
  display: block;
  position: relative;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 24px;
  width: 1.5rem;
  height: 2px;
  height: 0.125rem;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 6px;
  top: 0.375rem;
}

.drawer-icon__bar3 {
  top: 12px;
  top: 0.75rem;
}

.drawer-content {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding-top: 192px;
  padding-top: 12rem;
  z-index: 3;
  background: #111;
  width: 100%;
}

.drawer-content.fade {
  visibility: visible;
  opacity: 1;
}

.drawer-content__item a {
  display: block;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.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;
  }
}

.section__title {
  text-align: center;
  position: relative;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 1.875rem;
    letter-spacing: 0.0666em;
  }
}

.section__sub-title {
  position: absolute;
  top: -35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #F9F871;
  font-size: 50px;
  font-size: 3.125rem;
  opacity: 0.2;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .section__sub-title {
    font-size: 6.875rem;
    left: 24%;
    top: 87%;
  }
}

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

.to-top {
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 40px;
  bottom: 2.5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .to-top {
    right: 1.875rem;
    bottom: 2.75rem;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.to-top a img {
  width: 45px;
  width: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .to-top a img {
    width: 2.8125rem;
  }
}
.to-top a:hover {
  opacity: 0.7;
}

.blog {
  margin-top: 119px;
  margin-top: 7.4375rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .blog {
    margin-top: 17.9375rem;
  }
}

.blog__inner {
  max-width: 1100px;
  margin: auto;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .blog-section__sub-title {
    left: 90%;
    top: 50%;
    -webkit-transform: translate(-54%, -50%);
            transform: translate(-54%, -50%);
  }
}

.blog-card__items {
  margin: 64px 20px 0;
  margin: 4rem 1.25rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.blog-card__items::after {
  position: absolute;
  content: "New";
  top: 0;
  left: 0;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  -webkit-transform: translate(-25%, -28%);
          transform: translate(-25%, -28%);
  border-radius: 50%;
  background: #FFBA6A;
  color: #000;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.125em;
}
@media screen and (min-width: 768px) {
  .blog-card__items::after {
    -webkit-transform: translate(-23%, -31%);
            transform: translate(-23%, -31%);
    letter-spacing: 0.125em;
  }
}
@media screen and (min-width: 768px) {
  .blog-card__items {
    margin: 2.25rem 0;
  }
}

.blog-card__item {
  display: block;
  background: #fff;
  color: #111;
  cursor: pointer;
}
.blog-card__item + .blog-card__item {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .blog-card__item {
    width: calc(33.3% - 1.04167rem);
  }
  .blog-card__item:not(:nth-child(3n+1)) {
    margin-left: 1.5625rem;
    margin-top: 0;
  }
  .blog-card__item:nth-child(n+4) {
    margin-top: 1.5625rem;
  }
}

.blog-card__img {
  padding-top: 66.571429%;
  position: relative;
}

.blog-card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card__texts {
  padding: 3px 21px 16px;
  padding: 0.1875rem 1.3125rem 1rem;
  line-height: 1.94;
}
@media screen and (min-width: 768px) {
  .blog-card__texts {
    padding: 0.375rem 1.4375rem 1rem;
    line-height: 1.94;
  }
}

.blog-card__item:hover {
  background: #333;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog-card__item:hover .blog-card__category {
  color: #000;
}

.blog-card__title {
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .blog-card__title {
    font-size: 1.125rem;
    letter-spacing: 0.055em;
  }
}

.blog-card__text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.071em;
}
@media screen and (min-width: 768px) {
  .blog-card__text {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.071em;
  }
}

.blog-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .blog-card__meta {
    margin-top: 0.5rem;
  }
}

.blog-card__category {
  background: #FFEA2E;
  padding: 0px 5px;
  padding: 0rem 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  height: 26px;
  height: 1.625rem;
  letter-spacing: 0.0714em;
}
@media screen and (min-width: 768px) {
  .blog-card__category {
    height: 1.625rem;
    padding: 0rem 0.3125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0.0714em;
    font-size: 0.875rem;
  }
}

.blog-card__date {
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 2px;
  letter-spacing: 0.0714em;
}
@media screen and (min-width: 768px) {
  .blog-card__date {
    font-size: 0.875rem;
    letter-spacing: 0.0714em;
    margin: 0;
  }
}

.btn.works__btn.blog__btn {
  margin: 22px auto 0;
  margin: 1.375rem auto 0;
}
@media screen and (min-width: 768px) {
  .btn.works__btn.blog__btn {
    margin: 2.75rem auto 0;
  }
}

.blog__btn a {
  background: #3D3D3D;
}

.contact {
  background: #3D3D3D;
  padding: 67px 20px 64px;
  padding: 4.1875rem 1.25rem 4rem;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 1.8125rem;
    height: 31.25rem;
    padding: 9rem 1.25rem 4rem;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .contact-section__sub-title {
    left: 23%;
    top: -16%;
    -webkit-transform: translate(-51%, -50%);
            transform: translate(-51%, -50%);
  }
}

.contact__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: 0.125em;
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .contact__text {
    margin-top: 1.0625rem;
    letter-spacing: 0.125em;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .btn.works__btn.contact__btn {
    margin: 3.8125rem auto 0;
  }
  .btn.works__btn.contact__btn a {
    font-size: 1.25rem;
    padding: 0.9375rem 0.5625rem 0.9375rem 0;
  }
}

.content {
  margin-top: 150px;
  margin-top: 9.375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
}
.content::before {
  content: "";
  width: 94.6875%;
  height: 646px;
  height: 40.375rem;
  position: absolute;
  top: -31px;
  top: -1.9375rem;
  left: 0;
  background-image: linear-gradient(to right top, transparent 50%, #F9F871 50%, #F9F871 calc(50% + 1px), transparent calc(50% + 1px));
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .content {
    margin-top: 11.875rem;
  }
  .content::before {
    top: -6.5rem;
    height: 75.75rem;
  }
}

.content__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .content__lists {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-top: 2.5625rem;
  }
}

.content__list {
  width: 50%;
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .content__list {
    width: 100%;
  }
}

.content__list::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.content__list:hover:before {
  opacity: 0.6;
}

.content__list img {
  height: 168px;
  height: 10.5rem;
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .content__list img {
    height: auto;
    height: initial;
  }
}

.content__list-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .content__list-text {
    font-size: 1.5625rem;
    letter-spacing: 0.08em;
    -webkit-transform: translate(-50%, -46%);
            transform: translate(-50%, -46%);
  }
}

.footer {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 1.875rem 0 2rem;
  }
}

.footer-container__title {
  margin-top: 52px;
  margin-top: 3.25rem;
}
.footer-container__title a img {
  width: 70px;
  width: 4.375rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer-container__title {
    margin-top: 2.25rem;
  }
}

.footer-container__nav {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer-container__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.375rem;
  }
}

@media screen and (min-width: 768px) {
  .footer-container__nav1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
  }
}

@media screen and (min-width: 768px) {
  .footer-container__nav-list1 + .footer-container__nav-list1 {
    margin-left: 1.8125rem;
    letter-spacing: 0.125em;
  }
  .footer-container__nav-list1 a {
    position: relative;
  }
  .footer-container__nav-list1 a::after {
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #FFEA2E;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .footer-container__nav-list1 a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.footer-container__nav-list1:nth-child(2) {
  margin-left: 38px;
  margin-left: 2.375rem;
}

.footer-container__nav-list1:nth-child(3) {
  margin-left: 30px;
  margin-left: 1.875rem;
}

.footer-container__nav-list1:nth-child(4) {
  margin-left: 30px;
  margin-left: 1.875rem;
}

.footer-container__nav-list1:nth-child(5) {
  margin-left: 31px;
  margin-left: 1.9375rem;
}

.footer-container__nav-list2 {
  letter-spacing: 0.075em;
  margin-top: 8px;
}
.footer-container__nav-list2 + .footer-container__nav-list2 {
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.footer-copyright {
  margin: 31px 0 48px;
  margin: 1.9375rem 0 3rem;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.10909em;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    margin: 4.625rem 0 3rem;
    font-size: 1.0625rem;
    letter-spacing: 0.09em;
  }
}

header {
  position: fixed;
  height: 50px;
  height: 3.125rem;
  z-index: 4;
  background: rgba(0, 0, 0, .5);
  width: 100%;
}

.header.headerColorScroll {
  background: black;
  -webkit-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}

.header__inner {
  height: inherit;
  padding: 13px 0 0 23px;
  padding: 0.8125rem 0 0 1.4375rem;
}
@media screen and (min-width: 768px) {
  .header__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;
    padding: 0 0 0 2rem;
  }
}

.header__logo {
  width: 70px;
  width: 4.375rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 5.875rem;
    padding-top: 0.3125rem;
  }
}

.header__nav {
  height: inherit;
}

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

.header__nav-item {
  height: inherit;
}
.header__nav-item a {
  padding: 0 15px;
  padding: 0 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.125em;
  height: inherit;
  position: relative;
}
.header__nav-item a::after {
  position: absolute;
  bottom: 6px;
  bottom: 0.375rem;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #FFEA2E;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__nav-item a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header__nav-item:last-child {
  background: #fff;
  color: #111;
  width: 170px;
  width: 10.625rem;
  height: 50px;
  height: 3.125rem;
  z-index: 1;
}

.header__nav-item.header__nav-item--white {
  padding: 0 16px;
  padding: 0 1rem;
  margin-left: 15px;
  margin-left: 0.9375rem;
  position: relative;
}

.header__nav-item.header__nav-item--white:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__nav-item.header__nav-item--white:hover {
  color: #fff;
}

.header__nav-item.header__nav-item--white:hover:after {
  left: 0;
  width: 100%;
}

.header__nav-item.header__nav-item--white:active {
  top: 2px;
}

.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 23px 20px 0;
  margin: 1.4375rem 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .news {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 2rem auto 0;
  }
}

.news__item {
  width: 230px;
  width: 14.375rem;
}

.news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news__date {
  padding-right: 10px;
  padding-right: 0.625rem;
}

.news__label {
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  padding: 6px 22px 3px 21px;
  padding: 0.375rem 1.375rem 0.1875rem 1.3125rem;
  margin-left: 22px;
  margin-left: 1.375rem;
  white-space: nowrap;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .news__label {
    width: 6.1875rem;
    padding: 0.25rem 0;
    white-space: nowrap;
    margin-left: 2.3125rem;
    text-align: center;
    font-size: 0.875rem;
  }
}

.news__title {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.news__title a {
  position: relative;
}
.news__title a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: #fff;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.news__title a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media screen and (min-width: 768px) {
  .news__title {
    width: 42.3125rem;
    text-align: center;
    padding-left: 0.625rem;
    margin-top: 0;
  }
}

.news__btn {
  margin-top: 28px;
  margin-top: 1.75rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news__btn {
    background: #fff;
    color: #111;
    width: 8.375rem;
    margin-top: 0;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .news__btn a {
    padding: 0.125rem;
    font-weight: 700;
  }
}

.news-btn__link {
  padding: 8px 0;
  padding: 0.5rem 0;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-btn__link {
    letter-spacing: 0;
  }
}

.news-btn__link:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-btn__link:hover {
  color: #fff;
}

.news-btn__link:hover:after {
  left: 0;
  width: 100%;
}

.news-btn__link:active {
  top: 2px;
  top: 0.125rem;
}

.overview {
  margin-top: 121px;
  margin-top: 7.5625rem;
  position: relative;
}
.overview::before {
  content: "";
  width: 68.6093%;
  height: 955px;
  height: 59.6875rem;
  position: absolute;
  top: -200px;
  top: -12.5rem;
  left: 0;
  background-image: linear-gradient(to left top, transparent 50%, #F9F871 50%, #F9F871 calc(50% + 1px), transparent calc(50% + 1px));
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .overview {
    margin-top: 12.5rem;
  }
  .overview::before {
    width: 94.6093%;
    height: 76.125rem;
  }
}

.overview__inner {
  max-width: 1100px;
  margin: auto;
  width: 100%;
}
.overview__inner::before {
  content: "";
  position: absolute;
  top: 77px;
  top: 4.8125rem;
  height: 91%;
  left: 0;
  background: #3D3D3D;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .overview__inner::before {
    height: 100%;
    width: 70%;
  }
}

.overview-section__sub-title {
  left: 49%;
  top: -35%;
  -webkit-transform: translate(-48%, -50%);
          transform: translate(-48%, -50%);
}
@media screen and (min-width: 768px) {
  .overview-section__sub-title {
    left: 23%;
    top: 68%;
    -webkit-transform: translate(-49%, -50%);
            transform: translate(-49%, -50%);
  }
}

.overview__icon {
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .overview__icon {
    width: 34.8125rem;
    height: 24.3125rem;
    margin-top: 5.0625rem;
    margin-left: 2.0625rem;
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .overview-box {
    margin-top: 2.0625rem;
    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;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.overview-container {
  background: #3D3D3D;
  padding: 1px 19px;
  padding: 0.0625rem 1.1875rem;
}
@media screen and (min-width: 768px) {
  .overview-container {
    padding: 0;
    width: 31.875rem;
  }
}

@media screen and (min-width: 768px) {
  .overview-container__texts {
    width: 32.125rem;
    margin-right: 5.25rem;
  }
}

.overview-container__title {
  text-align: center;
  padding-top: 24px;
  padding-top: 1.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .overview-container__title {
    text-align: left;
    padding-top: 6.875rem;
    font-size: 1.5625rem;
    letter-spacing: 0.02em;
  }
}

.overview-container__text {
  margin-top: 22px;
  margin-top: 1.375rem;
  line-height: 1.45;
  letter-spacing: 0.125em;
}
@media screen and (min-width: 768px) {
  .overview-container__text {
    margin-top: 2.1875rem;
    line-height: 2.1875;
    letter-spacing: 0.03125em;
  }
}

.works {
  margin-top: 120px;
  margin-top: 7.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .works {
    margin-top: 12.4375rem;
  }
  .works::after {
    content: "";
    position: absolute;
    top: 4.8125rem;
    height: 88%;
    right: 0;
    background: #3D3D3D;
    width: 70%;
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .works__inner {
    max-width: 1100px;
    margin: auto;
  }
}

@media screen and (min-width: 768px) {
  .works-section__sub-title {
    left: 85%;
    top: 69%;
    -webkit-transform: translate(-52%, -50%);
            transform: translate(-52%, -50%);
  }
}

@media screen and (min-width: 768px) {
  .works-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 5.4375rem;
    margin-top: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.works-container {
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .works-container {
    width: 34.8125rem;
    margin-top: 5.0625rem;
    margin-left: -90px;
  }
}

.swiper-pagination2.work-swiper-pagination {
  background: #3D3D3D;
}
@media screen and (min-width: 768px) {
  .swiper-pagination2.work-swiper-pagination {
    background: none;
  }
}

.swiper-pagination2.work-swiper-pagination {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .swiper-pagination2.work-swiper-pagination {
    padding: 0.4375rem 2.5625rem 0 0;
  }
}

.swiper-pagination-bullet {
  background: #C4C4C4;
  opacity: 1;
}
.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.swiper-pagination-bullet-active {
  background: #F9F871;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px 3px;
  margin: 0 0.375rem 0.1875rem;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}

.works-box {
  background: #3D3D3D;
  padding: 0 20px 21px;
  padding: 0 1.25rem 1.3125rem;
}
@media screen and (min-width: 768px) {
  .works-box {
    height: 34.375rem;
    padding: 6.9375rem 0 0 18.5625rem;
    margin-left: -16.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .works-box__texts {
    width: 31.6875rem;
  }
}

.works-box__title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .works-box__title {
    text-align: left;
    font-size: 1.5625rem;
    letter-spacing: 0.02em;
  }
}

.works-box__text {
  margin-top: 22px;
  margin-top: 1.375rem;
  letter-spacing: 0.125em;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .works-box__text {
    line-height: 2.2;
    margin-top: 2.1875rem;
    letter-spacing: 0.03125em;
  }
}

.works__btn {
  margin-top: 27px;
  margin-top: 1.6875rem;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .works__btn {
    margin: 2.9375rem 0 0;
    width: 22.5rem;
  }
}

.works__btn a {
  text-align: center;
  padding: 8px 0;
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .works__btn a {
    padding: 1.0625rem 0;
    letter-spacing: 0.125em;
  }
}

.wrap {
  position: relative;
}

.wrap__text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -52%);
          transform: translate(-50%, -52%);
  z-index: 2;
  white-space: nowrap;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.079em;
}
@media screen and (min-width: 768px) {
  .wrap__text {
    top: 50%;
    letter-spacing: 0.01em;
  }
}

.wrap__title {
  text-shadow: 1px 1px 0px #000000, -1px 1px 0px #000000, 1px -1px 0px #000000, -1px -1px 0px #000000, 1px 0px 0px #000000, 0px 1px 0px #000000, -1px 0px 0px #000000, 0px -1px 0px #000000;
}
@media screen and (min-width: 768px) {
  .wrap__title {
    font-size: 3.125rem;
    font-weight: 700;
    text-shadow: none;
  }
}

.wrap__sub-title {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 19px;
  font-size: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .wrap__sub-title {
    font-size: 1.5625rem;
    font-weight: 700;
    margin-top: 0.25rem;
  }
}

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

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

.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;
}

.slide-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
  width: 100vw;
}
/*# sourceMappingURL=styles.css.map */
