@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #111;
}

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

/* ドロワーを開いたとき（is-active）に背景固定 */
body.is-active {
  position: fixed;
  width: 100%;
}

/*wp-pagenavi base*/
.wp-pagenavi {
  clear: both;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #fff;
  background-color: #111;
  border: solid 1px #fff;
  padding: 5px 5px;
  padding: 0.3125rem 0.3125rem;
  margin: 0 8px;
  margin: 0 0.5rem;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #111;
  background-color: #E3A72F;
  border-color: #111;
}

.wp-pagenavi span.current {
  color: #111;
  background-color: #E3A72F;
  border-color: #111;
  font-weight: bold;
}

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

/*
1)_背景黒ボタン_背景白がスライドイン
---------------------------------------------------- */
.btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 360px;
  max-width: 22.5rem;
  padding: 13px 10px;
  padding: 0.8125rem 0.625rem;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  background-color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 1.375rem 0.625rem;
    font-size: 1rem;
  }
}

.btn span {
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn:hover span {
  color: #111;
}

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

.btn:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.btn--black-slide {
  border: 1px solid #333;
}

.btn--black-slide::before {
  background: #333;
}

.btn--black-slide:hover span {
  color: #fff;
}

.btn--relate {
  max-width: 100%;
  padding: 8px 0;
  padding: 0.5rem 0;
  padding: 8px initial;
  padding: 0.5rem initial;
}

.card:hover .card__body,
.card:hover .card__meta {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #333;
}

.card:hover .card__title,
.card:hover .card__description,
.card:hover .card__date {
  color: #fff;
}

.card__img {
  position: relative;
}

.card__img::before {
  display: block;
  padding-top: 66.5671641791%;
  content: "";
}

.card__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 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: 10px 12px 0;
  padding: 0.625rem 0.75rem 0;
  color: #111;
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.card__title {
  letter-spacing: 0.0556em;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.94444444;
}

@media screen and (min-width: 768px) {
  .card__title--relate {
    letter-spacing: 0.0714285714em;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.card__description {
  margin-top: 4px;
  margin-top: 0.25rem;
  letter-spacing: 0.071428em;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .card__description {
    margin-top: 0.375rem;
  }
}

.card__meta {
  margin-top: auto;
  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: 6px 12px 12px;
  padding: 0.375rem 0.75rem 0.75rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .card__meta {
    padding-top: 0.75rem;
  }
}

.card__category {
  padding: 5px 2px 5px 5px;
  padding: 0.3125rem 0.125rem 0.3125rem 0.3125rem;
  letter-spacing: 0.071428em;
  background-color: #E3A72F;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1;
}

.card__date {
  display: block;
  letter-spacing: 0.071428em;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .card__date {
    margin-left: 0.5rem;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  height: 100%;
}

.card + .card {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .card + .card {
    margin-top: 0;
    margin-top: initial;
  }
}

.card__new-icon {
  position: absolute;
  z-index: 999;
  top: -16px;
  top: -1rem;
  left: -16px;
  left: -1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  padding: 22px 11px;
  padding: 1.375rem 0.6875rem;
  letter-spacing: 0.125em;
  color: #111;
  border-radius: 62.4375rem;
  background-color: #e3a72f;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
}
.category-lists__item {
  color: #fff;
}

.active {
  background-color: #fff;
  color: #111;
  padding: 3px 8px;
  padding: 0.1875rem 0.5rem;
}

.h2 {
  background-color: yellow;
}

.footer {
  margin-top: 52px;
  margin-top: 3.25rem;
  margin-bottom: 52px;
  margin-bottom: 3.25rem;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__inner.inner {
    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;
    max-width: 80rem;
    padding: 0 2rem;
  }
}

.footer__logo {
  width: 70px;
  width: 4.375rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-right: auto;
    margin-left: 0;
  }
}

.footer__nav {
  margin-top: 8px;
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
}

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

.footer__nav-item {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__nav-item {
    padding: 0 1rem;
  }
}

.footer__nav-item a {
  display: block;
  letter-spacing: 0.0715em;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a {
    position: relative;
    letter-spacing: 0.125em;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .footer__nav-item a::before {
    position: absolute;
    bottom: -0.5rem;
    width: 100%;
    height: 1px;
    content: "";
    background-color: transparent;
  }
}

@media screen and (min-width: 768px) {
  .footer__nav-item a:hover::before {
    background-color: #E3A72F;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.footer__copyright {
  margin-top: 26px;
  margin-top: 1.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 4.6875rem;
  }
}

.footer__copyright-text {
  letter-spacing: 0.1090909em;
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .footer__copyright-text {
    font-size: 0.9375rem;
  }
}

#back-to-top {
  position: fixed;
  z-index: 998;
  right: 20px;
  right: 1.25rem;
  bottom: 41px;
  bottom: 2.5625rem;
  display: none;
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  #back-to-top {
    right: 1.9375rem;
    bottom: 1.9375rem;
  }
}

#back-to-top:hover {
  background-color: #333;
}

#back-to-top::before {
  position: absolute;
  top: 44%;
  left: 28%;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-top: 2px solid #111;
  border-right: 2px solid #111;
}

#back-to-top:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.header {
  position: fixed;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  height: 3.125rem;
  background: rgba(17, 17, 17, .5);
  -webkit-box-shadow: 0 2px 3px 3px rgba(0, 0, 0, .2);
          box-shadow: 0 2px 3px 3px rgba(0, 0, 0, .2);
}
@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    background-color: #111;
  }
}

.header.transparent {
  background-color: rgba(1, 1, 1, .5);
}

.inner.header__inner {
  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-left: 0;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .inner.header__inner {
    padding-right: 0;
    padding-left: 2rem;
    min-width: 100%;
  }
}

.header__logo {
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  width: 5rem;
  height: inherit;
  padding-left: 2px;
  padding-left: 0.125rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 4.1875rem;
  }
}

.header__logo img {
  width: auto;
  width: initial;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 4.1875rem;
  }
}

.header__drawer {
  position: absolute;
  z-index: 9999;
  top: auto;
  bottom: auto;
  right: 22px;
  right: 1.375rem;
  width: 24px;
  width: 1.5rem;
  height: 16px;
  height: 1rem;
  cursor: pointer;
}

.header__drawer span {
  position: absolute;
  width: 24px;
  width: 1.5rem;
  height: 2px;
  height: 0.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}

.header__drawer.is-active span:nth-child(1) {
  top: 7px;
  top: 0.4375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

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

.header__drawer.is-active span:nth-child(3) {
  top: 7px;
  top: 0.4375rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header__drawer span:nth-child(1) {
  top: 0px;
  top: 0rem;
}

.header__drawer span:nth-child(2) {
  top: 7px;
  top: 0.4375rem;
}

.header__drawer span:nth-child(3) {
  top: 14px;
  top: 0.875rem;
}

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

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

.pc-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  color: #fff;
}

.pc-nav__item {
  height: inherit;
}

.pc-nav__item--white {
  margin-left: 15px;
  margin-left: 0.9375rem;
  background-color: #fff;
  color: #111;
  padding: 0 15px;
  padding: 0 0.9375rem;
}

.pc-nav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .pc-nav__item a {
    position: relative;
    padding: 0 0.9375rem;
    letter-spacing: 0.125em;
    font-size: 1rem;
    font-weight: 400;
  }
}

@media screen and (min-width: 768px) {
  .pc-nav__item a::before {
    position: absolute;
    bottom: 0.5rem;
    width: 72%;
    height: 1px;
    content: "";
    background-color: transparent;
  }
}

@media screen and (min-width: 768px) {
  .pc-nav__item a:hover::before {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #E3A72F;
  }
}

.section-header {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-header {
    z-index: 100;
    text-align: left;
  }
}

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

.section-header__en-title {
  letter-spacing: 0.04em;
  text-transform: capitalize;
  opacity: 0.2;
  color: #E3A72F;
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .section-header__en-title {
    position: relative;
    font-size: 6.875rem;
    line-height: 0.8;
  }
}

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

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

.section-header__ja-title {
  margin-top: -21px;
  margin-top: -1.3125rem;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .section-header__ja-title {
    position: absolute;
    left: 50%;
    margin-top: -4.5rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
    letter-spacing: 0.06666667em;
    font-size: 1.875rem;
  }
}

.section-header__ja-title.section-header__ja-title--contact {
  margin-top: -22px;
  margin-top: -1.375rem;
}
@media screen and (min-width: 768px) {
  .section-header__ja-title.section-header__ja-title--contact {
    margin-top: -2.125rem;
  }
}

.sp-nav {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  opacity: 0;
  background-color: #111;
  min-height: 250px;
  min-height: 15.625rem;
}

.sp-nav.is-active {
  display: block;
  height: 100vh;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 1;
}

.sp-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-height: 100%;
  padding: 209px 0;
  padding: 13.0625rem 0;
}

.sp-nav__item {
  color: #fff;
}

.sp-nav__item a {
  display: block;
  width: 100%;
  padding: 16px 0;
  padding: 1rem 0;
  letter-spacing: 0.125em;
  text-align: center;
}

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

.blog__inner {
  max-width: 850px;
  max-width: 53.125rem;
  margin: 0 auto;
}

.blog__breadcrumb-top-space {
  padding-top: 50px;
  padding-top: 3.125rem;
}

.blog__title {
  letter-spacing: 0.02em;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
}

.blog__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blog__meta {
    margin-top: 2rem;
  }
}

.blog__date {
  letter-spacing: 0.02em;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

.blog__category {
  margin-left: 23px;
  margin-left: 1.4375rem;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
  letter-spacing: 0.125;
  color: #fff;
  border: 1px solid #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

.blog__img {
  position: relative;
  margin-top: 16px;
  margin-top: 1rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .blog__img {
    width: 100%;
    margin-top: 2rem;
    margin-right: 0;
    margin-right: initial;
    margin-left: 0;
    margin-left: initial;
  }
}

.blog__img::before {
  display: block;
  padding-top: 66.9333333333%;
  content: "";
}

.blog__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.blog__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  letter-spacing: 0.025em;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.1875;
}
@media screen and (min-width: 768px) {
  .blog__text {
    margin-top: 2rem;
  }
}

.blog__heading3 {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding: 4.5px 9px;
  padding: 0.28125rem 0.5625rem;
  letter-spacing: 0.1em;
  color: #fff;
  border-left: 3px solid #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .blog__heading3 {
    margin-top: 2rem;
  }
}

.blog__heading4 {
  position: relative;
  display: inline-block;
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-left: 9px;
  margin-left: 0.5625rem;
  padding: 6.5px 0;
  padding: 0.40625rem 0;
  letter-spacing: 0.111111em;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .blog__heading4 {
    margin-top: 2rem;
  }
}

.blog__heading4::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  border-bottom: 3px solid #fff;
}

.blog__heading4::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 33.6405529954%;
  content: "";
  border-bottom: 3px solid yellow;
}

.blog__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .blog__pagination {
    margin-top: 6.5rem;
  }
}

.blog__post-header {
  margin-top: 56px;
  margin-top: 3.5rem;
  padding: 4px 0 4px 16px;
  padding: 0.25rem 0 0.25rem 1rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  background-color: #fff;
  border-left: 6px solid #e3a730;
  text-decoration: underline;
}

.blog__post-text {
  padding: 0 50px;
  padding: 0 3.125rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  line-height: 2;
}

.blogs__card-items {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .blogs__card-items {
    margin-top: 2.3125rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.blogs__pagination {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .blogs__pagination {
    margin-top: 6.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

.contact-completion__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  padding-top: 130px;
  padding-top: 8.125rem;
}
@media screen and (min-width: 768px) {
  .contact-completion__title {
    font-size: 1.875rem;
    letter-spacing: 0.0666667em;
  }
}

.contact-completion__text {
  margin-top: 80px;
  margin-top: 5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-completion__text {
    font-size: 1.875rem;
    letter-spacing: 0.0666667em;
  }
}

.contact-completion__btn-wrapper {
  margin: 0 auto;
  margin-top: 80px;
  margin-top: 5rem;
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
  text-align: center;
}

.contact-completion__btn {
  text-align: center;
}

.contact-error {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.contact-error__message {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.125em;
  color: #ff5757;
}

.contact-layout--error {
  margin-top: 32px;
  margin-top: 2rem;
}

[type=text] {
  background-color: #FFDCDC;
}

.wpcf7-response-output {
  color: #fff;
}

.contact-layout {
  margin-top: 85px;
  margin-top: 5.3125rem;
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .contact-layout {
    margin-top: 7.1875rem;
    margin-bottom: 9.375rem;
  }
}

/*デフォルト色の指定*/
/*サイズ等の指定*/
/*ボタン系の指定*/
/*テキストエリアの指定*/
[type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=date],
textarea {
  /*↓カスタム */
  width: 100%;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 9.5px 9px;
  padding: 0.59375rem 0.5625rem;
  /*↓リセットCSS */
  border: none;
  border: 1px solid #AAAAAA;
  border-radius: 0;
  border-radius: 0rem;
  background: #fff;
  background-image: none;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  /*↓↓↓↓不要ならコメントアウト or 削除 */
  /*↓↓選択されているときの色*/
}
@media screen and (min-width: 768px) {
  [type=text],
  [type=search],
  [type=tel],
  [type=url],
  [type=email],
  [type=password],
  [type=date],
  textarea {
    padding: 0.4375rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  [type=text],
  [type=search],
  [type=tel],
  [type=url],
  [type=email],
  [type=password],
  [type=date],
  textarea {
    max-width: 33.75rem;
    margin-top: 0;
    margin-top: initial;
    font-size: 0.875rem;
    font-weight: 300;
  }
}
[type=text]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=url]:focus,
[type=email]:focus,
[type=password]:focus,
[type=date]:focus,
textarea:focus {
  border: 1px solid #391E88;
}

button,
[type=button],
[type=submit] {
  display: inline-block;
  width: auto;
  /*↓リセットCSS */
  margin: 0;
  /*↓カスタム */
  padding: 15px 15px;
  padding: 0.9375rem 0.9375rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-decoration: none;
  color: #111;
  border: none;
  border-radius: 0;
  border-radius: 0rem;
  background: #fff;
  background-image: none;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
}

input::-webkit-input-placeholder {
  color: #979797;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
}

input::-moz-placeholder {
  color: #979797;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
}

input::-ms-input-placeholder {
  color: #979797;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
}

input::placeholder {
  color: #979797;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 33.75rem;
  }
}

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

.contact__list + .contact__list {
  margin-top: 37.5px;
  margin-top: 2.34375rem;
}
@media screen and (min-width: 768px) {
  .contact__list + .contact__list {
    margin-top: 2.8125rem;
  }
}

.contact__content {
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .contact__content {
    position: absolute;
    left: -10rem;
    top: 1.6875rem;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.contact__data {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .contact__data {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

textarea {
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  height: 250px;
  height: 15.625rem;
}

.contact__btn-wrap {
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.contact__btn {
  display: block;
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    max-width: 22.5rem;
  }
}

.content-card-layout {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .content-card-layout {
    margin-top: 6.5rem;
  }
}

@media screen and (min-width: 768px) {
  .content-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .content-card:nth-child(2n+1) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .content-card:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.content-card__img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .content-card__img {
    width: 100%;
    max-width: 50.4587155963%;
  }
}

.content-card__img::before {
  display: block;
  padding-top: 69.7860962567%;
  content: "";
}
@media screen and (min-width: 768px) {
  .content-card__img::before {
    padding-top: 66.7272727273%;
  }
}

.content-card__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-card__body {
  padding-top: 24px;
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .content-card__body {
    width: 100%;
    max-width: 46.7889908257%;
  }
}

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

.content-card__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.125em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .content-card__text {
    line-height: 2.1875;
    letter-spacing: 0.03125em;
  }
}

.content-philosophy-layout {
  margin-top: 85px;
  margin-top: 5.3125rem;
}

.content-philosophy__body {
  max-width: 568px;
  max-width: 35.5rem;
  margin: 0 auto;
}

.content-philosophy__title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
}

.content-philosophy__text {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.content-philosophy__card-items {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .content-philosophy__card-items {
    margin-top: 9.375rem;
  }
}

.error__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #E3A72F;
  opacity: 0.3;
  text-align: center;
  padding-top: 130px;
  padding-top: 8.125rem;
}
@media screen and (min-width: 768px) {
  .error__title {
    font-size: 3.75rem;
    letter-spacing: 0.033333em;
  }
}

.error__text {
  margin-top: 80px;
  margin-top: 5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .error__text {
    font-size: 1.875rem;
    letter-spacing: 0.0666667em;
  }
}

.error__btn-wrapper {
  margin: 0 auto;
  margin-top: 80px;
  margin-top: 5rem;
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
  text-align: center;
}

.error__btn {
  text-align: center;
}

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

.p-news-list__inner.inner {
  max-width: 600px;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-list__inner.inner {
    max-width: 56.875rem;
  }
}

.p-news-list__wrapper + .p-news-list__wrapper {
  margin-top: 32px;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .p-news-list__link {
    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) {
  .p-news-list__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-news-list__meta {
  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) {
  .p-news-list__meta {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.p-news-list__date {
  font-weight: 300;
}

.p-news-list__category {
  display: inline-block;
  min-width: 99px;
  min-width: 6.1875rem;
  margin-left: 32px;
  margin-left: 2rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  text-align: center;
  border: 1px solid #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-news-list__category {
    margin-left: 3rem;
  }
}

.p-news-list__text {
  display: inline-block;
  margin-top: 14px;
  margin-top: 0.875rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-news-list__text {
    width: 100%;
    margin-top: 0.1875rem;
    margin-left: 3.8125rem;
    font-weight: 300;
  }
}

.p-news-list__text span {
  border-bottom: 1px solid transparent;
  letter-spacing: 0.0625em;
}

@media screen and (min-width: 768px) {
  .p-news-list__text:hover span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #E3A72F;
  }
}

@media screen and (min-width: 768px) {
  .p-news-list__pagination {
    margin: 0 auto;
    margin-top: 6.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.news__wrapper {
  margin-top: 72px;
  margin-top: 4.5rem;
}

.news__section-title {
  color: #111;
  background-color: #fff;
  border-left: 6px solid #E3A730;
  padding: 4px 0 4px 16px;
  padding: 0.25rem 0 0.25rem 1rem;
  font-size: 24px;
  font-size: 1.5rem;
  text-decoration: underline;
}

.news__text {
  color: #fff;
  margin-top: 36px;
  margin-top: 2.25rem;
  padding-left: 16px;
  padding-left: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.9;
}

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

.overview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  padding: 14px 0px 14px;
  padding: 0.875rem 0rem 0.875rem;
  border-bottom: 1px solid #fff;
}

.overview__theme {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 34.0298507463%;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.8461538;
}
@media screen and (min-width: 768px) {
  .overview__theme {
    font-size: 1rem;
  }
}

.overview__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 65.9701492537%;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .overview__text {
    letter-spacing: 0.0625em;
    font-size: 1rem;
  }
}

.overview__google-map {
  position: relative;
  overflow: hidden;
  height: 0;
  margin-top: 120px;
  margin-top: 7.5rem;
  padding-top: 80%;
}
@media screen and (min-width: 768px) {
  .overview__google-map {
    margin-top: 5rem;
  }
}

.overview__map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.points-layout {
  margin-top: 54px;
  margin-top: 3.375rem;
}

.points {
  position: relative;
  border: 1px solid #fff;
  padding: 56px 10px 33px;
  padding: 3.5rem 0.625rem 2.0625rem;
}
@media screen and (min-width: 768px) {
  .points {
    padding: 2.75rem 1.4375rem 2.0625rem;
  }
}

.points__title {
  position: absolute;
  top: -23px;
  top: -1.4375rem;
  left: 24px;
  left: 1.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 13px 24px;
  padding: 0.8125rem 1.5rem;
  border: 1px solid #fff;
  border-radius: 1.4375rem;
  background-color: #111;
  z-index: 10;
}

.points__text {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 2.1875;
}

.relate__btn-wrap {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .relate__btn-wrap {
    margin-top: 6.5rem;
  }
}

.relate__header {
  margin-top: 120px;
  margin-top: 7.5rem;
  padding: 13px 10px;
  padding: 0.8125rem 0.625rem;
  width: 100%;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  background-color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .relate__header {
    padding: 1.375rem 0.625rem;
    font-size: 1rem;
    margin-top: 6.5rem;
  }
}

.relate__card-items {
  margin-top: 32px;
  margin-top: 2rem;
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .relate__card-items {
    display: grid;
    margin-top: 5rem;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 3rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

.relate__card-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.relate__card-item + .relate__card-item {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .relate__card-item + .relate__card-item {
    margin-top: 0;
    margin-top: initial;
  }
}

.sub-breadcrumb-layout {
  margin-top: 16px;
  margin-top: 1rem;
}

.sub-breadcrumb__text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.0625em;
}

.sub-mv {
  position: relative;
}

@media screen and (min-width: 768px) {
  .sub-mv__img {
    opacity: 0.8;
  }
}

.sub-mv__img picture source,
.sub-mv__img picture img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.7" /><feFuncG type="linear" slope="0.7" /><feFuncB type="linear" slope="0.7" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}

.sub-mv__title-body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sub-mv__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.0166667em;
}
@media screen and (min-width: 768px) {
  .sub-mv__title {
    font-size: 2.1875rem;
    letter-spacing: 0.05714285em;
  }
}

.top-blog {
  margin-top: 49px;
  margin-top: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .top-blog {
    margin-top: 11.25rem;
  }
}

.top-blog__card-items {
  position: relative;
  display: block;
  margin-top: 68px;
  margin-top: 4.25rem;
}
@media screen and (min-width: 768px) {
  .top-blog__card-items {
    display: grid;
    margin-top: 0.3125rem;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .top-blog__card-item {
    max-width: 21.875rem;
  }
}

.top-blog__btn-wrap {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-blog__btn-wrap {
    margin-top: 3rem;
  }
}

.top-contact {
  margin-top: 115px;
  margin-top: 7.1875rem;
  padding-top: 19px;
  padding-top: 1.1875rem;
  padding-bottom: 59px;
  padding-bottom: 3.6875rem;
  background-color: #3D3D3D;
}
@media screen and (min-width: 768px) {
  .top-contact {
    margin-top: 9.375rem;
    padding-top: 5.4375rem;
    padding-bottom: 8.5625rem;
  }
}

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

.top-contact__text {
  text-align: left;
  letter-spacing: 0.125em;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .top-contact__text {
    text-align: center;
  }
}

.top-contact__btn-wrap {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-contact__btn-wrap {
    margin-top: 3.9375rem;
  }
}

.btn.btn--contact {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .btn.btn--contact {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .btn.btn--contact span:hover {
    color: #111;
  }
}

.top-content {
  margin-top: 102px;
  margin-top: 6.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-content {
    margin-top: 11.3125rem;
  }
}

.top-content__images {
  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) {
  .top-content__images {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-top: 0;
  }
}

.top-content__image {
  position: relative;
  width: 50%;
  color: #fff;
}
.top-content__image:hover {
  color: red;
}

.top-content__image::before {
  display: block;
  padding-top: 89.6%;
  content: "";
}
@media screen and (min-width: 768px) {
  .top-content__image::before {
    padding-top: 100%;
  }
}

.top-content__image::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  content: "";
  background-color: rgba(255, 255, 255, .6);
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.top-content__image:hover::after {
  opacity: 1;
}

.top-content__image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-content__image-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 0 8px #111;
  text-shadow: 0 0 0.5rem #111;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .top-content__image-title {
    font-size: 1.5625rem;
  }
}

.mv {
  position: relative;
  overflow: hidden;
  width: 100%;
}

@-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-slide-active .mv__img,
.swiper-slide-duplicate-active .mv__img,
.swiper-slide-prev .mv__img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
          animation: zoomUp 10s linear 0s 1 normal both;
}

.mv__img {
  position: relative;
}

.mv__img::before {
  content: "";
  display: block;
  padding-top: 100vh;
}

.mv__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__title {
  letter-spacing: 0.0178571429em;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 425px) {
  .mv__title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 4rem;
  }
}

.mv__sub-title {
  padding-top: 20px;
  padding-top: 1.25rem;
  letter-spacing: 0.025em;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv__sub-title {
    font-size: 2.5rem;
  }
}

/* -------------------------------------------- */
.mv__wrapper {
  position: relative;
  width: 100%;
}

.mv__title-body {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 30px;
  padding: 1.875rem;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.mv__video {
  display: block;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 999;
}

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

.top-news__inner.inner {
  max-width: 600px;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .top-news__inner.inner {
    max-width: 68.125rem;
  }
}

@media screen and (min-width: 768px) {
  .top-news__link {
    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) {
  .top-news__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.top-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-news__date {
  font-weight: 300;
}

.top-news__category {
  display: inline-block;
  min-width: 99px;
  min-width: 6.1875rem;
  margin-left: 32px;
  margin-left: 2rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  text-align: center;
  border: 1px solid #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-news__category {
    margin-left: 3rem;
  }
}

.top-news__text {
  display: inline-block;
  margin-top: 14px;
  margin-top: 0.875rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top-news__text {
    width: 100%;
    margin-top: 0;
    margin-left: 3.8125rem;
    font-weight: 300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top-news__text span {
  border-bottom: 1px solid transparent;
  letter-spacing: 0.0625em;
}

@media screen and (min-width: 768px) {
  .top-news__text:hover span {
    border-bottom: 1px solid #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.top-news__btn-wrap {
  margin-top: 28px;
  margin-top: 1.75rem;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-news__btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .btn--black-slide {
    width: 100%;
    min-width: 8.375rem;
    padding: 0.4375rem 0.625rem;
    background-color: #fff;
    color: #111;
  }
}

.top-overview {
  margin-top: 72px;
  margin-top: 4.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-overview {
    position: relative;
    margin-top: 11.375rem;
  }
}

@media screen and (min-width: 768px) {
  .top-overview__top-wrapper.top-works__top-wrapper {
    background: -webkit-gradient(linear, left top, right top, from(#333), color-stop(70%, #333), color-stop(70%, transparent), to(transparent));
    background: linear-gradient(90deg, #333 0%, #333 70%, transparent 70%, transparent 100%);
  }
}

.top-overview__wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.top-overview__img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-overview__img {
    display: block;
    width: 50.6%;
  }
}

.top-overview__img::before {
  display: block;
  padding-top: 69.414893617%;
  content: "";
}

.top-overview__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .top-overview__body.top-works__body {
    width: 49.4%;
    margin-left: 0;
    padding-right: 2rem;
  }
}

.top-overview__btn-wrap {
  margin-top: 27px;
  margin-top: 1.6875rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-overview__btn-wrap {
    margin-top: 3rem;
    text-align: left;
  }
}

.top-works {
  margin-top: 69px;
  margin-top: 4.3125rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-works {
    margin-top: 11.0625rem;
  }
}

.top-works__top-wrapper {
  margin-top: 53px;
  margin-top: 3.3125rem;
  background-color: #333;
}
@media screen and (min-width: 768px) {
  .top-works__top-wrapper {
    margin-top: 0;
    padding: 5rem 0;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(30%, transparent), color-stop(30%, #333), to(#333));
    background: linear-gradient(90deg, transparent 0%, transparent 30%, #333 30%, #333 100%);
  }
}

@media screen and (min-width: 768px) {
  .top-works__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 71.875rem;
    margin: 0 auto;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.top-works__swiper-container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-works__swiper-container {
    width: 50.6%;
  }
}

.swiper-container {
  overflow: hidden;
}

.top-works__swiper-slide {
  position: relative;
}

.top-works__swiper-slide::before {
  display: block;
  padding-top: 69.6%;
  content: "";
}

.top-works__swiper-slide img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: -20px;
  bottom: -1.25rem;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -1.875rem;
    left: -1.3125rem;
  }
}

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

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

.top-works__body {
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .top-works__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 2rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .top-works__inner--body {
    padding: 0;
  }
}

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

.top-works__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  letter-spacing: 0.08333333em;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.448125;
}
@media screen and (min-width: 768px) {
  .top-works__text {
    margin-top: 2.3125rem;
    letter-spacing: 0.0135135em;
    line-height: 2.1875;
  }
}

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

.top-works__btn-wrap span {
  letter-spacing: 0.125em;
}

@media screen and (min-width: 768px) {
  .work__inner {
    max-width: 50.125rem;
  }
}

.work__breadcrumb-top-space {
  padding-top: 50px;
  padding-top: 3.125rem;
}

.work__slider-wrapper {
  margin-top: 53px;
  margin-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .work__slider-wrapper {
    margin-top: 5.6875rem;
  }
}

.work__title {
  letter-spacing: 0.02em;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
}

.work__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work__meta {
    margin-top: 2rem;
  }
}

.work__date {
  letter-spacing: 0.02em;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

.work__category {
  margin-left: 30px;
  margin-left: 1.875rem;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
  letter-spacing: 0.125em;
  color: #fff;
  border: 1px solid #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

/*
swiper
---------------------------------------------------- */
.work__gallery {
  width: 100%;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .work__gallery {
    margin-top: 2rem;
  }
}

.work__main-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
  margin: 0 0 0.625rem 0;
}
.work__main-slider .swiper-slide {
  width: auto;
  height: auto;
  position: relative;
}
.work__main-slider .swiper-slide::before {
  display: block;
  padding-top: 66.9333333333%;
  content: "";
}
@media screen and (min-width: 768px) {
  .work__main-slider .swiper-slide::before {
    padding-top: 53.4418022528%;
  }
}
.work__main-slider .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work__thumbs {
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .work__thumbs {
    margin-top: 2.5rem;
  }
}
.work__thumbs .swiper-slide {
  overflow: hidden;
  width: 44%;
  opacity: 0.1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .work__thumbs .swiper-slide {
    width: 11.6104868914%;
  }
}
.work__thumbs .swiper-slide::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.work__thumbs .swiper-slide-active {
  opacity: 1;
}
.work__thumbs .swiper-slide .slide-img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .work__pagination {
    margin-top: 6.5rem;
  }
}

.work__pagination-part {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3px 13px;
  padding: 0.1875rem 0.8125rem;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
}

.work__pagination-part + .work__pagination-part {
  margin-left: 48px;
  margin-left: 3rem;
}

.works-card-layout {
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .works-card-layout {
    margin-top: 2.5rem;
  }
}

.works-card {
  display: block;
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .works-card:not(:nth-of-type(n+2)) {
    margin-top: 1.875rem;
  }
}

.works-card__img {
  position: relative;
}

.works-card__img::before {
  display: block;
  padding-top: 66.4761904762%;
  content: "";
}

.works-card__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-card__category {
  background-color: #111;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.125em;
  line-height: 1;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
}

.works-card__title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 24px;
  margin-top: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.works-category__list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

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

.works-list-layout {
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .works-list-layout {
    margin-top: 2.5rem;
  }
}

.works__cards {
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .works__cards {
    display: grid;
    margin-top: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
    row-gap: 7.0625rem;
  }
}

.works__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .works__cards {
    margin-top: 2.3125rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.works__pagination {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .works__pagination {
    margin: 0 auto;
    margin-top: 6.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
/*# sourceMappingURL=styles.css.map */
