@charset "UTF-8";
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;
  }
}

body {
  background: #111;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media (min-width: 1150px) {
  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;
  }
}

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

.button-swipe {
  position: relative;
  display: inline-block;
  max-width: 335px;
  max-width: 20.9375rem;
  width: 100%;
  line-height: 1;
  letter-spacing: 0.09em;
  padding: 13px 0;
  padding: 0.8125rem 0;
  font-size: 20px;
  font-size: 1.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  color: #fff;
  background-color: #333;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .button-swipe {
    max-width: 22.5rem;
    padding: 1.3125rem 0;
    font-size: 1rem;
    font-weight: 400;
  }
}

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

.button-swipe:hover {
  color: #333;
  background-color: #fff;
  opacity: 0.999;
}

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

.button-swipe--white {
  border: 1px solid #333;
  border: 0.0625rem solid #333;
  color: #333;
  background-color: #fff;
}

.button-swipe--white:before {
  background-color: #333;
}

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

@media screen and (min-width: 768px) {
  .button-swipe--large {
    font-size: 1.25rem;
    padding: 1.25rem 0 1.125rem;
    line-height: 1;
  }
}

.card {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  position: relative;
}
.card__new-icon {
  position: absolute;
  top: -16px;
  top: -1rem;
  left: -13px;
  left: -0.8125rem;
  height: 60px;
  height: 3.75rem;
  width: 60px;
  width: 3.75rem;
  border-radius: 50%;
  line-height: 60px;
  line-height: 3.75rem;
  letter-spacing: 0.1em;
  text-align: center;
  background: #ffba6a;
  color: #333;
  z-index: 100;
}

.card a {
  -webkit-transition: none;
  transition: none;
  opacity: 1;
}

.card:hover {
  background: #333;
  color: #fff;
  opacity: 1;
}

.card:hover .card__category {
  color: #333;
}

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

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

.card__container {
  padding: 7px 21px 1px 21px;
  padding: 0.4375rem 1.3125rem 0.0625rem 1.3125rem;
}

.card__title {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.9444444444;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .card__title {
    margin-top: 0.3125rem;
  }
}

.card__text {
  margin-top: 1px;
  margin-top: 0.0625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .card__text {
    margin-top: 0.3125rem;
  }
}

.card__meta {
  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-top: 9px;
  padding-top: 0.5625rem;
  margin-top: auto;
  padding: 5px 21px 18px 21px;
  padding: 0.3125rem 1.3125rem 1.125rem 1.3125rem;
}
@media screen and (min-width: 768px) {
  .card__meta {
    padding: 0.625rem 1.5rem 1.0625rem 1.5rem;
  }
}

.card__category {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  background: #ffea2e;
  padding: 4px;
  padding: 0.25rem;
}
@media screen and (min-width: 768px) {
  .card__category {
    padding: 0.3125rem 0.375rem;
  }
}

.card__date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .common-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    gap: 2rem;
  }
}

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

.common-block__img {
  margin: 0 calc(50% - 48.5vw);
  aspect-ratio: 375/261;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .common-block__img {
    aspect-ratio: 557/389;
    margin: 0;
    margin: initial;
    width: 50.63636%;
  }
}

.common-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .common-block__container {
    width: 46.3636%;
    padding: 0;
  }
}

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

.common-block__text {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1.45;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .common-block__text {
    line-height: 2.1875;
    letter-spacing: 0.03em;
  }
}

.common-block__button {
  text-align: center;
}

.footer-nav {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer-nav__logo {
  max-width: 70px;
  max-width: 4.375rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer-nav__logo {
    margin: 0;
    margin: initial;
    margin-right: auto;
  }
}

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

@media screen and (min-width: 768px) {
  .footer-nav__item {
    font-weight: 400;
  }
}

.footer-nav__item a {
  opacity: 1;
}

.footer-nav__item:nth-child(2) {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .footer-nav__item:nth-child(2) {
    margin-top: 0;
  }
}

.footer-nav__item a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer-nav__item a {
    letter-spacing: 0.1em;
    padding-right: 1.3125rem;
    padding-left: 1.3125rem;
  }
}

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

.footer-nav__item a:hover::after {
  visibility: visible;
}

.footer {
  padding-top: 53px;
  padding-top: 3.3125rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 2.125rem;
    padding-bottom: 2.125rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 0 0.6875rem 0 2rem;
  }
}

.footer__nav {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 0;
  }
}

.footer__copyright {
  margin-top: 27px;
  margin-top: 1.6875rem;
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 4.6875rem;
    font-size: 0.9375rem;
    letter-spacing: 0.07em;
  }
}

.hamburger {
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  position: relative;
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.hamburger span:nth-child(1) {
  top: -1px;
  top: -0.0625rem;
}

.hamburger span:nth-child(2) {
  margin: 4px 0;
}

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

/*is-OPEN時の動き*/
.hamburger.is-open span:nth-child(1) {
  top: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: -7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(17, 17, 17, .5);
  height: 50px;
  height: 3.125rem;
  z-index: 10000;
}

.header.is-open {
  opacity: 1;
  background: #000;
}

/* ファーストビューを過ぎたあとのヘッダー */
.header.transform {
  background-color: rgb(17, 17, 17);
}

.header__inner {
  height: inherit;
  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;
  padding: 0 22px;
  padding: 0 1.375rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 0 0 1.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 5.875rem;
    width: 100%;
    line-height: 1;
  }
}

.header__drawer {
  position: relative;
  top: -4px;
  top: -0.25rem;
  right: -6px;
  right: -0.375rem;
}

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

.logo__link {
  -webkit-transition: none;
  transition: none;
}

@media screen and (min-width: 768px) {
  .logo__link:hover {
    opacity: 1;
  }
}

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

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

@media screen and (min-width: 768px) {
  .pc-nav__item {
    height: inherit;
  }
}

.pc-nav__item a {
  -webkit-transition: none;
  transition: none;
}
@media screen and (min-width: 768px) {
  .pc-nav__item a {
    position: relative;
    height: inherit;
    color: #fff;
    display: grid;
    place-items: center;
    padding: 0 1.0625rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 768px) {
  .pc-nav__item a:hover:hover {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .pc-nav__item a::after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 32px);
    content: "";
    height: 0.0625rem;
    background: #ffea2e;
    bottom: 0.4375rem;
    visibility: hidden;
  }
}

@media screen and (min-width: 768px) {
  .pc-nav__item a:hover::after {
    visibility: visible;
  }
}

.pc-nav__item--white {
  -webkit-transition: none;
  transition: none;
}
@media screen and (min-width: 768px) {
  .pc-nav__item--white {
    margin-left: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .pc-nav__item--white a {
    padding: 0 2.1875rem;
    background-color: #fff;
    color: #333;
  }
}

@media screen and (min-width: 768px) {
  .pc-nav__item--white a::after {
    content: none;
  }
}

@media screen and (min-width: 768px) {
  .pc-nav__item--white a:hover {
    background: #333333;
    color: #fff;
    opacity: 1;
  }
}

.section-header__inner {
  max-width: 1150px;
  max-width: 71.875rem;
  width: 100%;
  padding: 0 25px;
  padding: 0 1.5625rem;
  margin: 0 auto;
}

.section-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .section-header__container {
    display: block;
  }
}

.section-header__jatitle {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-header__jatitle {
    margin: 0 auto;
    display: block;
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}

.section-header__entitle {
  margin: -2px;
  margin: -0.125rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #f9f871;
  opacity: 0.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-header__entitle {
    font-size: 6.875rem;
    letter-spacing: 0.02em;
    margin-top: -3.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .section-header__entitle--left {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .section-header__entitle--right {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .section-header__entitle--contact {
    margin-top: -6.25rem;
  }
}

.sp-nav {
  color: #fff;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  width: 100%;
  height: 100vh;
  z-index: 8888;
  opacity: 1;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav__items {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.sp-nav__item a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-top: 19px;
  padding-top: 1.1875rem;
  padding-bottom: 19px;
  padding-bottom: 1.1875rem;
}

.sub-mv {
  height: 425px;
  height: 26.5625rem;
  width: 100%;
}

.sub-mv__bg {
  height: 425px;
  height: 26.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sub-mv__bg {
    height: 23.125rem;
  }
}

.sub-mv__bg--news {
  background: url(../images/common/news-top_sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .sub-mv__bg--news {
    background: url(../images/common/news-top_pc.jpg) no-repeat center center/cover;
  }
}

.sub-mv__bg--content {
  background: url(../images/content/content-top_sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .sub-mv__bg--content {
    background: url(../images/content/content-top_pc.jpg) no-repeat center center/cover;
  }
}

.sub-mv__bg--works {
  background: url(../images/works/works-top_sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .sub-mv__bg--works {
    background-image: url(../images/works/works-top_pc.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
  }
}

.sub-mv__bg--works::after {
  content: "";
  position: absolute;
  background-color: rgba(17, 17, 17, .2);
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  height: 425px;
  height: 26.5625rem;
}

.sub-mv__text-box {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sub-mv__title {
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .sub-mv__title {
    font-size: 2.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .works-swiper {
    margin-bottom: 10px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 3px;
  bottom: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0rem;
  }
}

.works-pagination {
  text-align: center;
  position: relative;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-right: 7px;
  margin-right: 0.4375rem;
}

.swiper-pagination-bullet {
  background-color: #c4c4c4;
}

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

.to-top {
  position: fixed;
  right: 19px;
  right: 1.1875rem;
  bottom: 40px;
  bottom: 2.5rem;
  overflow: hidden;
  border: 1px solid;
}
@media screen and (min-width: 768px) {
  .to-top {
    right: 1.875rem;
    bottom: 1.9375rem;
  }
}

.to-top a {
  display: block;
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  background-color: #fff;
  position: relative;
}

.to-top a:hover {
  background-color: #333;
  color: #fff;
}

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

.blog {
  margin-top: 57px;
  margin-top: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .blog {
    margin-top: 12.625rem;
  }
}

.blog__inner {
  margin: 0 auto;
}

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

.blog__item {
  width: 100%;
  max-width: 350px;
  max-width: 21.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .blog__item {
    margin-top: 0;
  }
}

.blog__new-icon {
  position: absolute;
  top: -16px;
  top: -1rem;
  left: -13px;
  left: -0.8125rem;
  height: 60px;
  height: 3.75rem;
  width: 60px;
  width: 3.75rem;
  border-radius: 50%;
  line-height: 60px;
  line-height: 3.75rem;
  letter-spacing: 0.1em;
  text-align: center;
  background: #ffba6a;
  color: #333;
  z-index: 100;
}

.blog__button {
  text-align: center;
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .blog__button {
    margin-top: 2.9375rem;
  }
}

.contact {
  background: #3d3d3d;
  margin-top: 116px;
  margin-top: 7.25rem;
  padding-top: 27px;
  padding-top: 1.6875rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 9.25rem;
    padding-top: 9.4375rem;
    padding-bottom: 8.9375rem;
  }
}

.contact__text {
  margin-top: 22px;
  margin-top: 1.375rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.13em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .contact__text {
    text-align: center;
    letter-spacing: 0.125em;
    margin-top: 1rem;
  }
}

.contact__button {
  margin-top: 46px;
  margin-top: 2.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 3.8125rem;
  }
}

.content {
  margin-top: 107px;
  margin-top: 6.6875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .content {
    margin-top: 12.25rem;
  }
}

.content::before {
  content: "";
  position: absolute;
  width: 93.666%;
  height: 634px;
  height: 39.625rem;
  top: 16px;
  top: 1rem;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(to right top, transparent 49.9%, #f9f871 50%, #f9f871 calc(50% + 0.5px), transparent calc(50.1% + 0.5px));
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .content::before {
    width: 94.6875%;
    height: 75.75rem;
    top: -6.875rem;
  }
}

.content__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 52px;
  margin-top: 3.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .content__items {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-top: -0.25rem;
  }
}

.content__item {
  position: relative;
  width: 50%;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .content__item {
    width: 25%;
  }
}

.content__item:hover {
  opacity: 1;
}

.content__item:hover:before {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: #fff;
  opacity: 0.6;
}

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

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

.content__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .content__text {
    font-size: 1.5625rem;
    line-height: 2.16;
    letter-spacing: 0.05em;
  }
}

.mv {
  height: 100vh;
  width: 100%;
  position: relative;
}

.mv__inner {
  height: inherit;
}

.mv__images {
  position: relative;
  height: inherit;
}
.mv__images .swiper-slide img {
  -webkit-transform: scale(1);
          transform: scale(1);
  /*スワイパーの切り替え速度と自動再生の停止時間を合計した秒数に設定する*/
  -webkit-transition: 4s;
  transition: 4s;
}
.mv__images .swiper-slide-active img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.mv__images .swiper {
  height: inherit;
}

.mv__images .swiper-slide img {
  height: inherit;
}

.mv__img {
  display: block;
  height: inherit;
}

.mv__img source img {
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__title-box {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
}

.mv__main-title {
  font-weight: bold;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__main-title {
    font-size: 3.125rem;
  }
}

.mv__sub-title {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.005em;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__sub-title {
    font-size: 1.5625rem;
  }
}

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

@media screen and (min-width: 768px) {
  .news__inner {
    margin: 0 auto;
    max-width: 68.25rem;
  }
}

@media screen and (min-width: 768px) {
  .news__content {
    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;
  }
}

.news__content:nth-child(n+2) {
  margin-top: 32px;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .news__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 3.8125rem;
  }
}

.news__date,
.news__category {
  display: inline-block;
  line-height: 1;
}
.news__date {
  margin-right: 28px;
  margin-right: 1.75rem;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .news__date {
    margin-right: 3rem;
  }
}

.news__category {
  font-size: 14px;
  font-size: 0.875rem;
  border: 1px solid #fff;
  padding: 7px 21px;
  padding: 0.4375rem 1.3125rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.news__block {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .news__block {
    margin-top: 0;
    margin-right: 3rem;
    width: calc(100% - 128px);
  }
}

@media screen and (min-width: 768px) {
  .news__block--lower {
    width: calc(100% - 262px);
    margin-right: 0;
  }
}

.news__text {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
}
.news__text:hover {
  border-bottom: 1px solid #fff;
}

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

.news__button.u-mobile {
  margin-top: 27px;
  margin-top: 1.6875rem;
  text-align: center;
}

.news__button--swipe {
  position: relative;
  display: inline-block;
  padding: 6px 24px;
  padding: 0.375rem 1.5rem;
  line-height: 1;
  letter-spacing: 0.09em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  color: #333;
  background-color: #fff;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .news__button--swipe {
    font-weight: 400;
    padding: 0.4375rem 1.625rem;
    letter-spacing: 0.05em;
    max-width: 8.375rem;
    width: 100%;
    white-space: nowrap;
  }
}

.news__button--swipe:before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.news__button--swipe:hover {
  color: #fff;
  background-color: #333;
  opacity: 0.999;
}

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

.overview {
  margin-top: 78px;
  margin-top: 4.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .overview {
    margin-top: 11.6875rem;
  }
}

.overview__bg {
  background: #333;
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .overview__bg {
    margin-top: -0.375rem;
    padding-top: 4.8125rem;
    padding-bottom: 5rem;
    background: -webkit-gradient(linear, right top, left top, from(transparent), to(#333));
    background: linear-gradient(270deg, transparent 0% calc(50% - 16rem), #333 calc(50% - 16rem) 100%);
  }
}

@media screen and (min-width: 768px) {
  .overview__inner.inner {
    padding: 0 1.5625rem;
  }
}

.overview::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1398px;
  height: 87.375rem;
  bottom: -83px;
  bottom: -5.1875rem;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(to left top, transparent 49.9%, #f9f871 50%, #f9f871 calc(50% + 0.5px), transparent calc(50.1% + 0.5px));
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .overview::before {
    width: 94.6875%;
    height: 75.6875rem;
    top: -12.375rem;
  }
}

.overview__body {
  margin-top: 53px;
  margin-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .overview__body {
    margin: 0;
    margin: initial;
  }
}

.overview__title {
  margin-top: 33px;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .overview__title {
    margin-top: 1.875rem;
  }
}

.overview__text {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .overview__text {
    margin-top: 2.25rem;
  }
}

.overview__button {
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .overview__button {
    text-align: left;
    margin-top: 2.9375rem;
  }
}

.works {
  margin-top: 78px;
  margin-top: 4.875rem;
}
@media screen and (min-width: 768px) {
  .works {
    margin-top: 12.625rem;
  }
}

.works__bg {
  background: #333;
  padding-bottom: 19px;
  padding-bottom: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .works__bg {
    margin-top: -0.375rem;
    padding-top: 4.8125rem;
    padding-bottom: 3.5625rem;
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#333));
    background: linear-gradient(90deg, transparent 0% calc(50% - 16rem), #333 calc(50% - 16rem) 100%);
  }
}

.works__body {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .works__body {
    margin: 0;
    margin: initial;
  }
}

.works__img {
  margin: 0 calc(50% - 48.5vw);
  aspect-ratio: 375/261;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .works__img {
    margin: 0;
    margin: initial;
    aspect-ratio: 557/389;
  }
}

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

.works__title {
  margin-top: 1px;
  margin-top: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .works__title {
    margin-top: 1.875rem;
  }
}

.works__text {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .works__text {
    margin-top: 2.3125rem;
  }
}

.works__button {
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .works__button {
    text-align: left;
    margin-top: 2.9375rem;
  }
}
/*# sourceMappingURL=styles.css.map */
