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

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

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

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

/* リキッドレイアウト対応 */
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;
  }
}

body {
  overflow-x: hidden;
}

/* 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

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

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

.breadcrumb span {
  line-height: 1;
}

.button {
  text-align: center;
}

.button__link {
  position: relative;
  color: #fff;
  background-color: #333;
  border: 1px solid #fff;
  text-align: center;
  font-weight: 400;
  padding: 10px;
  padding: 0.625rem;
  width: 100%;
  max-width: 335px;
  max-width: 20.9375rem;
  min-width: 100px;
  min-width: 6.25rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  display: inline-block;
  opacity: 1;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .button__link {
    font-size: 16px;
    font-size: 1rem;
    max-width: 360px;
    max-width: 22.5rem;
    padding: 20px;
    padding: 1.25rem;
    line-height: 1;
  }
}

.button__link span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

@media (hover: hover) {
  .button:hover span {
    color: #333;
  }
}

/*== 背景が流れる（左から右）黒から白へ */
.button__link::after {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
@media (hover: hover) {
  .button__link:hover::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.button__link--news {
  padding: 8px 22px;
  padding: 0.5rem 1.375rem;
}
@media screen and (min-width: 768px) {
  .button__link--news {
    background-color: #fff;
    color: #333;
    letter-spacing: 0;
    max-width: 134px;
    max-width: 8.375rem;
    border: none;
  }
}

.button__link--news:hover span {
  color: #fff;
}

.button__link--news:after {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #333; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.button__link--news:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

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

@media screen and (min-width: 768px) {
  .cards__item {
    margin-left: 25px;
    margin-left: 1.5625rem;
  }
}

.card {
  display: block;
  position: relative;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .card {
    width: calc(33.33333% - 1.04167rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (hover: hover) {
  .card:hover {
    opacity: 1;
    background-color: #333;
  }
  .card:hover .card__title,
  .card:hover .card__text,
  .card:hover .card__date {
    color: #fff; /* ホワイトカラーを直接指定する */
  }
}
@media screen and (min-width: 768px) {
  .card:nth-child(1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .card:nth-child(3n+1) {
    margin-left: 0;
  }
}

.card:nth-child(n+2) {
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .card:nth-child(n+2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .card:nth-child(n+4) {
    margin-top: 23px;
    margin-top: 1.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .card__image--recommend {
    aspect-ratio: 251/148;
  }
}

.card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 335/223;
}

.card__body {
  padding: 2px 23px 0;
  padding: 0.125rem 1.4375rem 0;
}

.card__body--recommend {
  padding: 0 23px;
  padding: 0 1.4375rem;
}
@media screen and (min-width: 768px) {
  .card__body--recommend {
    padding: 3px 8px;
    padding: 0.1875rem 0.5rem;
  }
}

.card__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.94444;
  color: #111;
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

.card__title--recommend {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.944;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .card__title--recommend {
    line-height: 2.5;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.card__text {
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  color: #111;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.85714;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .card__text {
    margin-top: 7px;
    margin-top: 0.4375rem;
  }
}

.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;
  margin-top: 8px;
  margin-top: 0.5rem;
  padding: 0 24px 16px;
  padding: 0 1.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .card__meta {
    padding-top: 10px;
    padding-top: 0.625rem;
    margin-top: auto;
  }
}

.card__category {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 2px 7px;
  padding: 0.125rem 0.4375rem;
  background: #ffea2e;
  display: inline-block;
  color: #111;
}

.card__date {
  color: #111;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.7px;
  letter-spacing: 0.04375rem;
}

.is-new::before {
  position: absolute;
  content: "New";
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 2.1875;
  padding: 12px;
  padding: 0.75rem;
  border-radius: 50%;
  background-color: #ffba6a;
  color: #111;
  left: -17px;
  left: -1.0625rem;
  top: -16px;
  top: -1rem;
}

@media screen and (min-width: 768px) {
  .card--recommend {
    width: calc(25% - 1.5rem);
    margin-left: 32px;
    margin-left: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .card--recommend:nth-child(1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .card--recommend:nth-child(3n+1) {
    margin-left: 32px;
    margin-left: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .card--recommend:nth-child(4n+1) {
    margin-left: 0;
  }
}

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

@media screen and (min-width: 768px) {
  .card:nth-child(n+5) {
    margin-top: 23px;
    margin-top: 1.4375rem;
  }
}

.card__image--recommend img {
  aspect-ratio: 335/223;
}
@media screen and (min-width: 768px) {
  .card__image--recommend img {
    aspect-ratio: 251/148;
  }
}

.card--blog:nth-child(n+2) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .card--blog:nth-child(n+2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .card--blog:nth-child(n+4) {
    margin-top: 48px;
    margin-top: 3rem;
  }
}

.category__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 24px;
  gap: 1rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .category__items {
    gap: 16px 39px;
    gap: 1rem 2.4375rem;
  }
}

.category__item {
  color: #fff;
}

.category__item a {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1;
  display: inline-block;
}

.category__item-current {
  padding: 8px;
  padding: 0.5rem;
  color: #111;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .category__item-current {
    padding: 7px 10px;
    padding: 0.4375rem 0.625rem;
  }
}

.common-block {
  padding: 0 20px 20px;
  padding: 0 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .common-block {
    padding: 0 25px;
    padding: 0 1.5625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.common-block--top-overview {
  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) {
  .common-block--top-overview {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .common-block__right {
    margin-left: 2.91%;
  }
}

.common-block__image {
  aspect-ratio: 375/261;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .common-block__image {
    width: 100%;
    margin: 0;
    margin: initial;
    max-width: 557px;
    max-width: 34.8125rem;
    aspect-ratio: 557/389;
  }
}

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

.common-block__content {
  margin-top: 33px;
  margin-top: 2.0625rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .common-block__content {
    max-width: 510px;
    max-width: 31.875rem;
    margin-top: 0;
  }
}

.common-block__title {
  text-align: center;
  line-height: 1;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
}
@media screen and (min-width: 768px) {
  .common-block__title {
    font-size: 25px;
    font-size: 1.5625rem;
    letter-spacing: 0.5px;
    letter-spacing: 0.03125rem;
    text-align: left;
  }
}

.common-block__text {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1.44;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .common-block__text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    letter-spacing: 0.03125rem;
    margin-top: 42px;
    margin-top: 2.625rem;
    text-align: left;
    line-height: 2.187;
  }
}

.common-block__button {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .common-block__button {
    text-align: left;
  }
}

.common-block__container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .common-block__container {
    width: 100%;
  }
}

.contact-form {
  max-width: 700px;
  max-width: 43.75rem;
  width: 100%;
  margin: 0 auto;
}

.contact-form__error-message {
  display: none;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  color: #FF5757;
  font-weight: 400;
}

.contact-form__error-message.is-error {
  display: block;
}

.contact-form__list {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .contact-form__list {
    margin-top: 25px;
    margin-top: 1.5625rem;
    -webkit-transform: translateX(-11%);
            transform: translateX(-11%);
  }
}

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

.contact-form__item--textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact-form__item:nth-child(n+2) {
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .contact-form__item:nth-child(n+2) {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

.contact-form__label {
  font-size: 14px;
  font-size: 0.875rem;
  width: 132px;
  width: 8.25rem;
}
@media screen and (min-width: 768px) {
  .contact-form__label {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .contact-form__label label {
    line-height: 3;
  }
}

.contact-form__input {
  background-color: #fff;
  margin-top: 19px;
  margin-top: 1.1875rem;
  width: 100%;
  padding: 6px;
  padding: 0.375rem;
}
@media screen and (min-width: 768px) {
  .contact-form__input {
    margin-top: 0px;
    margin-top: 0rem;
    max-width: 540px;
    max-width: 33.75rem;
    margin-left: 24px;
    margin-left: 1.5rem;
  }
}

.contact-form__input.is-error {
  background-color: #FFDCDC;
}

.contact-form__input input {
  color: #979797;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.85; /* 185% */
  letter-spacing: 0.7px;
  letter-spacing: 0.04375rem;
  width: 100%;
}

.contact-form__input textarea {
  width: 100%;
  height: 230px;
  height: 14.375rem;
}
@media screen and (min-width: 768px) {
  .contact-form__input textarea {
    height: 280px;
    height: 17.5rem;
  }
}

.contact-form__button {
  text-align: center;
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .contact-form__button {
    margin-top: 56px;
    margin-top: 3.5rem;
  }
}

.contact-form__button input {
  background-color: #fff;
  line-height: 1;
  padding: 15px 146px;
  padding: 0.9375rem 9.125rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact-form__button input {
    font-size: 16px;
    font-size: 1rem;
    padding: 3px 162px;
    padding: 0.1875rem 10.125rem;
    line-height: 3.375;
  }
}

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

.contact-layout--philosophy {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .contact-layout--philosophy {
    margin-top: 125px;
    margin-top: 7.8125rem;
  }
}

.contact-layout--overview {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .contact-layout--overview {
    margin-top: 143px;
    margin-top: 8.9375rem;
  }
}

.contact {
  background: #333333;
  padding: 70px 0 65px;
  padding: 4.375rem 0 4.0625rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 145px 0 153px;
    padding: 9.0625rem 0 9.5625rem;
  }
}

.contact__text {
  margin-top: 14px;
  margin-top: 0.875rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact__text {
    text-align: center;
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.contact__button {
  margin-top: 45px;
  margin-top: 2.8125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    letter-spacing: 2px;
    letter-spacing: 0.125rem;
    margin-top: 58px;
    margin-top: 3.625rem;
  }
}

.content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.content-item {
  position: relative;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .content-item {
    width: 25%;
  }
}

@media (hover: hover) {
  .content-item:hover.content-item {
    opacity: 1;
  }
  .content-item:hover.content-item::before {
    opacity: 0.6;
  }
}
.content-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.content-item__image {
  position: relative;
  width: 100%;
}

.content-item__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 188/168;
}
@media screen and (min-width: 768px) {
  .content-item__image img {
    aspect-ratio: 320/320;
  }
}

@media (hover: hover) {
  .content-item__title:hover {
    opacity: 1;
  }
}
.content-item__title {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  font-weight: 400;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .content-item__title {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.drawer {
  height: inherit;
}

.drawer__bars {
  position: relative;
  z-index: 9999;
  height: inherit;
}

.drawer__bars span {
  position: relative;
  display: block;
  height: 2px;
  height: 0.125rem;
  width: 24px;
  width: 1.5rem;
  background: #fff;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  border-radius: 5px;
}

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

.drawer__bars span:nth-child(2) {
  margin: 6px 0;
  margin: 0.375rem 0;
}

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

/*is-OPEN時の動き*/
.drawer__bars.is-open span:nth-child(1) {
  top: 8px;
  top: 0.5rem;
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}

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

.drawer__bars.is-open span:nth-child(3) {
  top: -8px;
  top: -0.5rem;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.sp-nav {
  display: none;
  background: #111;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8888;
}

.sp-nav__items {
  padding-top: 259px;
  padding-top: 16.1875rem;
  text-align: center;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  height: 100vh;
  overflow: scroll;
}

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

@media (hover: hover) {
  .sp-nav__item a:hover {
    opacity: 0.7;
  }
}
.active {
  height: 100%;
  overflow: hidden;
}

.footer {
  padding: 57px 0 30px;
  padding: 3.5625rem 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 23px 0 25px;
    padding: 1.4375rem 0 1.5625rem;
  }
}

.footer__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-left: 32px;
    padding-left: 2rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.footer__wrap {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__wrap {
    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;
    height: 50px;
    height: 3.125rem;
  }
}

.footer__logo {
  width: 70px;
  width: 4.375rem;
  display: inline-block;
  text-align: center;
  height: inherit;
}

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

.footer__nav {
  height: inherit;
}

.footer__copyright {
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 15px;
    font-size: 0.9375rem;
    margin-top: 75px;
    margin-top: 4.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .footer--page-contact {
    margin-top: 150px;
    margin-top: 9.375rem;
  }
}

.footer--completion {
  margin-top: 115px;
  margin-top: 7.1875rem;
}
@media screen and (min-width: 768px) {
  .footer--completion {
    margin-top: 150px;
    margin-top: 9.375rem;
  }
}

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

.header--achievement {
  background: rgb(17, 17, 17);
}

.header__inner {
  position: relative;
  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;
  z-index: inherit;
  padding: 0 22px;
  padding: 0 1.375rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 0 0 32px;
    padding: 0 0 0 2rem;
  }
}

.header__logo {
  width: 70px;
  width: 4.375rem;
  position: relative;
  z-index: 9999;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 94px;
    width: 5.875rem;
  }
}

.header__logo a {
  height: inherit;
  width: 100%;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: none;
  margin-left: auto;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.js-transform {
  background: #111111;
}

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

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

.section__inner {
  max-width: 1100px;
  max-width: 68.75rem;
  margin: 0 auto;
}

.links {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .links {
    display: block;
  }
}

.links__item {
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  border: 1px solid #fff;
  padding: 0 11px;
  padding: 0 0.6875rem;
  width: 71px;
  width: 4.4375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}

.links__item:hover {
  background: #fff;
  color: #111;
}

.links__item:not(:first-child) {
  margin-left: 45px;
  margin-left: 2.8125rem;
}

.meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 800px;
  max-width: 50rem;
}

.meta__date {
  letter-spacing: 0.5px;
  letter-spacing: 0.03125rem;
}

.meta__category {
  margin-left: 30px;
  margin-left: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  padding: 12px 18px;
  padding: 0.75rem 1.125rem;
  border: 1px solid #fff;
}

.meta__category--article {
  margin-left: 25px;
  margin-left: 1.5625rem;
}

.nav__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

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

.nav__item {
  height: inherit;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
}

.nav__item::before {
  bottom: 0;
}

.nav__item > a {
  position: relative;
  padding: 0 16px;
  padding: 0 1rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav__item--footer > a {
  padding: 3px 16px;
  padding: 0.1875rem 1rem;
}

.nav__item a::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 8px;
  bottom: 0.5rem;
  width: 0;
  height: 1px;
  background-color: #ffea2e;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.nav__item--contact a::before {
  background-color: #fff;
}

.nav__item a:hover {
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (hover: hover) {
  .nav__item a:hover::before {
    width: calc(100% - 2rem);
  }
}
.nav__button {
  position: relative;
  height: inherit;
}

.button--nav {
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background-color: #fff;
  /*アニメーションの指定*/
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
  height: inherit;
  margin-left: 15px;
  margin-left: 0.9375rem;
}

.button--nav span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #111;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.button--nav a {
  padding: 0 32px;
  padding: 0 2rem;
  height: inherit;
  display: inline-block;
}

@media (hover: hover) {
  .button--nav:hover span {
    color: #fff;
  }
}
/*== 背景が流れる（左から右）白から黒へ */
.button--nav::after {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #333; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.button--nav:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

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

.news__inner {
  max-width: 640px;
  max-width: 40rem;
}
@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 910px;
    max-width: 56.875rem;
  }
}

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

.news__date {
  font-size: 16px;
  font-size: 1rem;
}

.news__category {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
  border: 1px solid #fff;
  display: inline-block;
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .news__category {
    margin-left: 48px;
    margin-left: 3rem;
    min-width: 100px;
    min-width: 6.25rem;
  }
}

.news__title {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.448;
  margin-top: 14px;
  margin-top: 0.875rem;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 0;
    margin-left: 60px;
    margin-left: 3.75rem;
    max-width: 572px;
    max-width: 35.75rem;
    padding: 5px 0;
    padding: 0.3125rem 0;
  }
}

.news__title:hover {
  text-decoration: underline;
}

.news__title--table:hover {
  color: #f9f871;
  text-decoration: none;
}

.news__button {
  margin-top: 31px;
  margin-top: 1.9375rem;
  position: relative;
  height: inherit;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 0;
    margin-left: auto;
    min-width: 134px;
    min-width: 8.375rem;
  }
}

.pagenation-layout {
  margin-top: 87px;
  margin-top: 5.4375rem;
}
@media screen and (min-width: 768px) {
  .pagenation-layout {
    margin-top: 109px;
    margin-top: 6.8125rem;
  }
}

.pagenation-layout.pagenation-layout--blog {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .pagenation-layout.pagenation-layout--blog {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
}

.pagenation-layout--achievement {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .pagenation-layout--achievement {
    margin-top: 104px;
    margin-top: 6.5rem;
  }
}

.pagenation {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pagenation {
    display: block;
  }
}

.pagenation--sp-display {
  display: block;
}

.wp-pagenavi { /* 全体 */
  font-size: 16px;
  font-size: 1rem;
}

.wp-pagenavi a { /* フォント色 */
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}

.wp-pagenavi .current,
.wp-pagenavi a.page { /* ボタン */
  margin: 0 6px 0 6px;
  margin: 0 0.375rem 0 0.375rem;
  display: inline-block;
  border: solid 1px #fff;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  line-height: 24px;
  line-height: 1.5rem;
  text-align: center;
}

.wp-pagenavi .current { /* カレント数字 */
  border: none;
  background: #fff;
  color: #111;
}

.wp-pagenavi .current--blog {
  background: #F9F871;
  color: #111;
}

.wp-pagenavi a:hover { /* マウスオーバー */
  background: #fff;
  color: #111;
}

.wp-pagenavi .first { /* ... */
  margin-right: 15px;
  margin-right: 0.9375rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  border: 1px solid #FFF;
  padding: 0 11px;
  padding: 0 0.6875rem;
}

.wp-pagenavi .extend {
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  margin-left: 15px;
  margin-left: 0.9375rem;
  border: 1px solid #FFF;
  padding: 0 11px;
  padding: 0 0.6875rem;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink { /* 記号の削除 */
  display: none;
}

.wp-pagenavi a.page--achievement {
  width: 71px;
  width: 4.4375rem;
  margin: 0 30px;
  margin: 0 1.875rem;
}

.pagetop {
  max-width: 1280px;
  max-width: 80rem;
  margin: 0 auto;
}

.pagetop__button {
  background-color: #fff;
  z-index: 10;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 40px;
  bottom: 2.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .pagetop__button {
    bottom: 32px;
    bottom: 2rem;
    right: 32px;
    right: 2rem;
  }
}

.pagetop__button:hover {
  opacity: 0.7;
}

.pagetop__button img {
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
}

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

.block:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .block:not(:first-child) {
    margin-top: 105px;
    margin-top: 6.5625rem;
  }
}

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

.block:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.block__image {
  aspect-ratio: 375/261;
}
@media screen and (min-width: 768px) {
  .block__image {
    max-width: 550px;
    max-width: 34.375rem;
    aspect-ratio: 550/367;
  }
}

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

.block__description {
  background-color: #111;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 24px 20px 21px;
  padding: 1.5rem 1.25rem 1.3125rem;
}
@media screen and (min-width: 768px) {
  .block__description {
    max-width: 510px;
    max-width: 31.875rem;
    width: 100%;
    padding: 0;
  }
}

.block__title {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
}
@media screen and (min-width: 768px) {
  .block__title {
    font-size: 25px;
    font-size: 1.5625rem;
    letter-spacing: 0.5px;
    letter-spacing: 0.03125rem;
    text-align: left;
  }
}

.block__text {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1.44;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .block__text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    letter-spacing: 0.03125rem;
    margin-top: 35px;
    margin-top: 2.1875rem;
    text-align: left;
    line-height: 2.187;
  }
}

.point {
  position: relative;
  max-width: 800px;
  max-width: 50rem;
  margin: auto;
  padding: 56px 10px 33px;
  padding: 3.5rem 0.625rem 2.0625rem;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .point {
    padding: 44px 22px 32px;
    padding: 2.75rem 1.375rem 2rem;
  }
}

.point:nth-child(n+2) {
  margin-top: 54px;
  margin-top: 3.375rem;
}
@media screen and (min-width: 768px) {
  .point:nth-child(n+2) {
    margin-top: 71px;
    margin-top: 4.4375rem;
  }
}

.point__title {
  position: absolute;
  top: 0;
  left: 24px;
  left: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.4px;
  letter-spacing: 0.025rem;
  padding: 8px 24px;
  padding: 0.5rem 1.5rem;
  border: 1px solid #fff;
  border-radius: 32px;
  display: inline-block;
  background-color: #111;
}
@media screen and (min-width: 768px) {
  .point__title {
    left: 39px;
    left: 2.4375rem;
  }
}

.point__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1875;
  letter-spacing: 0.2px;
  letter-spacing: 0.0125rem;
}
@media screen and (min-width: 768px) {
  .point__text {
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    letter-spacing: 0.05rem;
  }
}

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

.recommend__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
  border: 1px solid #fff;
  text-align: center;
}

.recommend__cards {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .recommend__cards {
    margin-top: 80px;
    margin-top: 5rem;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1100px;
    max-width: 68.75rem;
    margin: 0 auto;
  }
}

.section-title__jp {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: 400;
  text-align: center;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .section-title__jp {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.section-title__en {
  font-size: 50px;
  font-size: 3.125rem;
  color: #F9F871;
  opacity: 0.27;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  position: absolute;
  left: 50%;
  top: -50px;
  top: -3.125rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    line-height: 1;
    font-size: 110px;
    font-size: 6.875rem;
  }
}

@media screen and (min-width: 768px) {
  .section-title__en--content {
    top: -15px;
    top: -0.9375rem;
  }
}

.section-title__en--works {
  top: -50px;
  top: -3.125rem;
}
@media screen and (min-width: 768px) {
  .section-title__en--works {
    top: -25px;
    top: -1.5625rem;
  }
}

.section-title__en--overview {
  top: -50px;
  top: -3.125rem;
}
@media screen and (min-width: 768px) {
  .section-title__en--overview {
    top: -25px;
    top: -1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .section-title__en--blog {
    top: -35px;
    top: -2.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .section-title__en--contact {
    top: -63px;
    top: -3.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .section-title__en--left {
    position: absolute;
    left: 0;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}

@media screen and (min-width: 768px) {
  .section-title__en--right {
    position: absolute;
    right: 0;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    text-align: right;
  }
}

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

.sub-mainview__title {
  width: 100%;
  text-align: center;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99;
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
}
@media screen and (min-width: 768px) {
  .sub-mainview__title {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

.sub-mainview--news {
  background: url(/images/news/news-mv__sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .sub-mainview--news {
    background: url(/images/news/news-mv__pc.jpg) no-repeat center center/cover;
  }
}

.sub-mainview--philosophy {
  background: url(/images/philosophy/philosophy__mv-sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .sub-mainview--philosophy {
    background: url(/images/philosophy/philosophy__mv-pc.jpg) no-repeat center center/cover;
  }
}

.sub-mainview--works {
  background: url(/images/works/works-mv__sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .sub-mainview--works {
    background: url(/images/works/works-mv__pc.jpg) no-repeat center center/cover;
  }
}

.sub-mainview--blog {
  background: url(/images/blog/blog-mv__sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .sub-mainview--blog {
    background: url(/images/blog/blog-mv__pc.jpg) no-repeat center center/cover;
  }
}

.sub-mainview--page-contact {
  background: url(/images/page-contact/page-contact__mv-sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .sub-mainview--page-contact {
    background: url(/images/page-contact/page-contact__mv-pc.jpg) no-repeat center center/cover;
  }
}

.sub-mainview--page-overview {
  background: url(/images/page-overview/page-overview__mv-sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .sub-mainview--page-overview {
    background: url(/images/page-overview/page-overview__mv-pc.jpg) no-repeat center center/cover;
  }
}

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

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

.article__inner {
  max-width: 850px;
  max-width: 53.125rem;
}

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

.article__heading01 {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .article__heading01 {
    margin-top: 32px;
    margin-top: 2rem;
  }
}

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

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

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

.article__mmain-image {
  aspect-ratio: 375/251;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .article__mmain-image {
    aspect-ratio: 800/427;
    width: 100%;
    margin: 0 auto;
  }
}

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

.article__sub-image {
  aspect-ratio: 375/251;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .article__sub-image {
    width: 100%;
    aspect-ratio: 800/427;
    margin: 0 auto;
  }
}

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

.content-area h1 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.74;
  letter-spacing: 0.4px;
  letter-spacing: 0.025rem;
}
@media screen and (min-width: 768px) {
  .content-area h1 {
    line-height: 1.52174;
    font-size: 23px;
    font-size: 1.4375rem;
    font-weight: 500;
  }
}

.content-area h2 {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  padding-left: 9px;
  padding-left: 0.5625rem;
  position: relative;
}

.content-area h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  width: 0.1875rem;
  height: 29px;
  height: 1.8125rem;
  background-color: #C4C4C4;
}

.content-area h3 {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 2px;
  position: relative;
  border-bottom: 3px solid #fff;
  display: inline-block;
}

.content-area h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 77px;
  height: inherit;
  border-bottom: 3px solid #FFEA2E;
}

.content-area p {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.4px;
  letter-spacing: 0.025rem;
  line-height: 2.187;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .content-area p {
    margin-top: 32px;
    margin-top: 2rem;
  }
}

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

.content-area ul li {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.4px;
  letter-spacing: 0.025rem;
  line-height: 2.187;
  position: relative;
  padding-left: 1em;
}

.content-area ul li span {
  border-radius: 50%;
  width: 3px;
  height: 3px;
  display: inline-block;
  position: absolute;
  left: 6px;
  left: 0.375rem;
  top: 14px;
  top: 0.875rem;
  background: #fff;
}

.content-area ol {
  counter-reset: li;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .content-area ol {
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.content-area ol li {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  text-indent: 1em;
  letter-spacing: 0.4px;
  letter-spacing: 0.025rem;
  line-height: 2.187;
}

.content-area ol li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: -12px;
  left: -0.75rem;
}

.content-area ol li span {
  text-indent: 0;
  display: inline-block;
}

.blog-layout {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .blog-layout {
    margin-top: 105px;
    margin-top: 6.5625rem;
  }
}

.blog__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.blog-category {
  margin-top: 86px;
  margin-top: 5.375rem;
}
@media screen and (min-width: 768px) {
  .blog-category {
    margin-top: 118px;
    margin-top: 7.375rem;
  }
}

.news-table-layout {
  margin-top: 87px;
  margin-top: 5.4375rem;
}
@media screen and (min-width: 768px) {
  .news-table-layout {
    margin-top: 70px;
    margin-top: 4.375rem;
  }
}

.news-table__inner {
  max-width: 640px;
  max-width: 40rem;
}
@media screen and (min-width: 768px) {
  .news-table__inner {
    max-width: 910px;
    max-width: 56.875rem;
  }
}

.news-table__content {
  margin-top: 32px;
  margin-top: 2rem;
}

.news-table__content:first-child {
  margin-top: 0;
}

.page-404-layout {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.page-404__content {
  padding-top: 75px;
  padding-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .page-404__content {
    padding-top: 140px;
    padding-top: 8.75rem;
  }
}

.page-404__title {
  font-weight: 400;
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1;
  color: #FFEA2E;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .page-404__title {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

.page-404__text {
  font-weight: 400;
  margin-top: 80px;
  margin-top: 5rem;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-404__text {
    margin-top: 65px;
    margin-top: 4.0625rem;
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.page-404__button {
  margin-top: 78px;
  margin-top: 4.875rem;
}
@media screen and (min-width: 768px) {
  .page-404__button {
    margin-top: 73px;
    margin-top: 4.5625rem;
  }
}

.page-completion-layout {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.page-completion__content {
  padding-top: 85px;
  padding-top: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .page-completion__content {
    padding-top: 150px;
    padding-top: 9.375rem;
  }
}

.page-completion__title {
  font-weight: 400;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-completion__title {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.page-completion__text {
  font-weight: 400;
  margin-top: 85px;
  margin-top: 5.3125rem;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-completion__text {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.page-completion__button {
  margin-top: 78px;
  margin-top: 4.875rem;
}
@media screen and (min-width: 768px) {
  .page-completion__button {
    margin-top: 73px;
    margin-top: 4.5625rem;
  }
}

.page-contact__form {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-contact__form {
    margin-top: 62px;
    margin-top: 3.875rem;
  }
}

.overview-list {
  max-width: 1100px;
  max-width: 68.75rem;
}

.overview-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .overview-list__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 28px;
    padding-top: 1.75rem;
    padding-bottom: 27px;
    padding-bottom: 1.6875rem;
  }
}

.overview-list__title {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.846;
  width: 32.8358208955%;
}
@media screen and (min-width: 768px) {
  .overview-list__title {
    width: 13.6363636364%;
    font-size: 16px;
    font-size: 1rem;
  }
}

.overview-list__text {
  font-size: 13px;
  font-size: 0.8125rem;
  width: calc(100% - 110px);
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.846;
}
@media screen and (min-width: 768px) {
  .overview-list__text {
    font-size: 16px;
    font-size: 1rem;
    width: calc(100% - 150px);
  }
}

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

.page-overview__map {
  aspect-ratio: 375/300;
  max-width: 1100px;
  max-width: 68.75rem;
  overflow: hidden;
  margin-top: 120px;
  margin-top: 7.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .page-overview__map {
    margin-top: 85px;
    margin-top: 5.3125rem;
    aspect-ratio: 1100/367;
  }
}

.page-overview__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-works-wrap-layout {
  padding-top: 50px;
  padding-top: 3.125rem;
}

.page-works-layout {
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .page-works-layout {
    margin-top: 97px;
    margin-top: 6.0625rem;
  }
}

.page-works__inner {
  max-width: 850px;
  max-width: 53.125rem;
}

.page-works__swiper-container {
  max-width: 800px;
  max-width: 50rem;
  width: 100VW;
  margin: 0 calc(50% - 50vw);
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .page-works__swiper-container {
    width: 100%;
    margin: auto;
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.page-works__swiper-wrapper {
  max-width: 800px;
  max-width: 50rem;
  aspect-ratio: 800/427;
  width: 100%;
  height: 100%;
  min-height: 251px;
  min-height: 15.6875rem;
}
@media screen and (min-width: 768px) {
  .page-works__swiper-wrapper {
    height: 427px;
    height: 26.6875rem;
  }
}

.page-works__swiper-slide {
  aspect-ratio: 800/427;
  height: inherit;
  width: 100%;
}

.page-works__swiper-slide img {
  aspect-ratio: 800/427;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-works-thumbnail__swiper-container {
  max-width: 800px;
  max-width: 50rem;
  width: 100VW;
  margin: 0 calc(50% - 50vw);
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .page-works-thumbnail__swiper-container {
    width: 100%;
    margin: auto;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.page-works-thumbnail__swiper-wrapper {
  max-height: 163px;
  max-height: 10.1875rem;
  height: auto;
  margin: 0 auto;
  max-width: 800px;
  max-width: 50rem;
}

.page-works-thumbnail__swiper-slide {
  height: inherit;
  aspect-ratio: 163/163;
  opacity: 0.6;
  width: auto;
}

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

.page-works-thumbnail__swiper-slide.swiper-slide-active {
  opacity: 1;
}

.page-works__swiper-button-next,
.page-works__wiper-button-prev {
  display: block;
}

.swiper-button-next.page-works__swiper-button-next {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background: url(/images/page-works/swiper-next.svg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .swiper-button-next.page-works__swiper-button-next {
    width: 50px;
    width: 3.125rem;
    height: 50px;
    height: 3.125rem;
  }
}

.swiper-button-prev.page-works__swiper-button-prev {
  background: url(/images/page-works/swiper-prev.svg) no-repeat center center/cover;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev.page-works__swiper-button-prev {
    width: 50px;
    width: 3.125rem;
    height: 50px;
    height: 3.125rem;
  }
}

.page-works__meta {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-works__meta {
    margin-top: 34px;
    margin-top: 2.125rem;
  }
}

.page-works-point-layout {
  margin-top: 51px;
  margin-top: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .page-works-point-layout {
    margin-top: 103px;
    margin-top: 6.4375rem;
  }
}

.page-works__name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.4px;
  letter-spacing: 0.025rem;
}
@media screen and (min-width: 768px) {
  .page-works__name {
    font-size: 23px;
    font-size: 1.4375rem;
    font-weight: 500;
  }
}

.page-works__name span {
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .page-works__name span {
    margin-left: 25px;
    margin-left: 1.5625rem;
  }
}

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

.page-works__links {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .page-works__links {
    margin-top: 104px;
    margin-top: 6.5rem;
  }
}

.recommend__list {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .recommend__list {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

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

.relation__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
  border: 1px solid #fff;
  text-align: center;
}

.relation__list {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .relation__list {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .philosophy__inner {
    padding: 25px;
    max-width: 1150px;
    max-width: 71.875rem;
    margin: 0 auto;
  }
}

.philosophy-layout {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .philosophy-layout {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
}

.philosophy__description {
  margin: 0 auto;
  max-width: 335px;
  max-width: 20.9375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .philosophy__description {
    max-width: 568px;
    max-width: 35.5rem;
  }
}

.philosophy__description-title {
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .philosophy__description-title {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.philosophy__description-text {
  text-align: left;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1.4374;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .philosophy__description-text {
    line-height: 2.1875;
  }
}

.philosophy__blocks {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .philosophy__blocks {
    margin-top: 150px;
    margin-top: 9.375rem;
  }
}

.philosophy__items {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .philosophy__items {
    margin-top: 150px;
    margin-top: 9.375rem;
  }
}

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

.philosophy__img {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  aspect-ratio: 375/261;
}
@media screen and (min-width: 768px) {
  .philosophy__img {
    width: 100%;
    margin: 0;
    max-width: 550px;
    max-width: 34.375rem;
    aspect-ratio: 550/367;
  }
}

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

.philosophy__content {
  padding: 24px 0px 21px;
  padding: 1.5rem 0rem 1.3125rem;
}
@media screen and (min-width: 768px) {
  .philosophy__content {
    margin-top: 10px;
    margin-top: 0.625rem;
    margin-left: 2.7%;
    max-width: 510px;
    max-width: 31.875rem;
    width: 100%;
    padding: 0;
  }
}

.philosophy__title {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
}
@media screen and (min-width: 768px) {
  .philosophy__title {
    font-size: 25px;
    font-size: 1.5625rem;
    letter-spacing: 0.5px;
    letter-spacing: 0.03125rem;
    text-align: left;
  }
}

.philosophy__text {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1.44;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .philosophy__text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    letter-spacing: 0.03125rem;
    margin-top: 35px;
    margin-top: 2.1875rem;
    text-align: left;
    line-height: 2.187;
  }
}

.philosophy__item + .philosophy__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .philosophy__item + .philosophy__item {
    margin-top: 103px;
    margin-top: 6.4375rem;
  }
}

.philosophy__item:nth-of-type(even) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .philosophy__item:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .philosophy__item:nth-of-type(even) .philosophy__img {
    margin-left: 2.7%;
  }
}

.philosophy__item:nth-of-type(even) .philosophy__content {
  margin-left: 0;
  margin-left: initial;
}

.mainview {
  position: relative;
}

.mainview__title {
  width: 100%;
  text-align: center;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99;
}
.mainview__main-title {
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.5px;
  letter-spacing: 0.03125rem;
}
@media screen and (min-width: 768px) {
  .mainview__main-title {
    font-size: 50px;
    font-size: 3.125rem;
    letter-spacing: 0.5px;
    letter-spacing: 0.03125rem;
    font-weight: 700;
  }
}

.mainview__sub-title {
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  letter-spacing: 0.03125rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .mainview__sub-title {
    font-size: 25px;
    font-size: 1.5625rem;
    letter-spacing: 0.5px;
    letter-spacing: 0.03125rem;
    font-weight: 700;
  }
}

.mainview__swiper {
  width: 100%;
  height: 100vh;
  min-height: 400px;
  min-height: 25rem;
}

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

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

.swiper-slide {
  height: inherit;
}

.swiper-image {
  height: 100%;
}

.swiper-image__picture {
  height: 100%;
  width: 100%;
}

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

.top-blog-layout {
  margin-top: 103px;
  margin-top: 6.4375rem;
}
@media screen and (min-width: 768px) {
  .top-blog-layout {
    margin-top: 207px;
    margin-top: 12.9375rem;
  }
}

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

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

.top-content-layout {
  margin-top: 150px;
  margin-top: 9.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-content-layout {
    margin-top: 188px;
    margin-top: 11.75rem;
  }
}

.top-content-layout::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 680px;
  height: 42.5rem;
  aspect-ratio: 375/680;
  background-image: -webkit-gradient(linear, left bottom, right top, color-stop(50%, transparent), color-stop(50.1%, rgb(249, 248, 113)), color-stop(rgb(249, 248, 113)), to(transparent));
  background-image: linear-gradient(to right top, transparent 50%, rgb(249, 248, 113) 50.1%, rgb(249, 248, 113) calc(50% + 0.09375rem), transparent calc(50.1% + 0.09375rem));
  z-index: -1;
  top: -30px;
  top: -1.875rem;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .top-content-layout::after {
    width: 94.7%;
    height: 1210px;
    height: 75.625rem;
    top: -110px;
    top: -6.875rem;
    left: -10px;
    left: -0.625rem;
    right: 0;
  }
}

.top-content__wrap {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .top-content__wrap {
    margin-top: 43px;
    margin-top: 2.6875rem;
  }
}

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

.top-overview-layout {
  position: relative;
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .top-overview-layout {
    margin-top: 198px;
    margin-top: 12.375rem;
  }
}

.top-overview::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1400px;
  height: 87.5rem;
  aspect-ratio: 375/1400;
  background-image: linear-gradient(to left top, transparent 50%, rgb(249, 248, 113) 50.1%, rgb(249, 248, 113) calc(50% + 1.5px), transparent calc(50.1% + 1.5px));
  z-index: -1;
  top: -645px;
  top: -40.3125rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .top-overview::after {
    width: 100%;
    height: 1280px;
    height: 80rem;
    top: -270px;
    top: -16.875rem;
    left: 0px;
    left: 0rem;
  }
}

.top-overview__wrap {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-top: 45px;
  margin-top: 2.8125rem;
  background: #333333;
}
@media screen and (min-width: 768px) {
  .top-overview__wrap {
    padding: 80px 0 80px;
    padding: 5rem 0 5rem;
    background: -webkit-gradient(linear, left top, right top, from(#333333), color-stop(70%, #333333), color-stop(70%, transparent), to(transparent));
    background: linear-gradient(90deg, #333333 0%, #333333 70%, transparent 70%, transparent 100%);
    margin-top: 34px;
    margin-top: 2.125rem;
  }
}

.top-overview__button {
  margin-top: 25px;
  margin-top: 1.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-overview__button {
    margin-top: 48px;
    margin-top: 3rem;
    text-align: left;
  }
}

.top-works-layout {
  position: relative;
  margin-top: 122px;
  margin-top: 7.625rem;
}
@media screen and (min-width: 768px) {
  .top-works-layout {
    margin-top: 194px;
    margin-top: 12.125rem;
  }
}

.top-works__wrap {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-top: 45px;
  margin-top: 2.8125rem;
  background-color: #333333;
}
@media screen and (min-width: 768px) {
  .top-works__wrap {
    background: -webkit-gradient(linear, left top, right top, from(#111), color-stop(30%, #111), color-stop(30%, #333), to(#333));
    background: linear-gradient(90deg, #111 0%, #111 30%, #333 30%, #333 100%);
    padding: 80px 0 80px;
    padding: 5rem 0 5rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.top-works__button {
  margin-top: 25px;
  margin-top: 1.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-works__button {
    margin-top: 48px;
    margin-top: 3rem;
    text-align: left;
  }
}

.works-swiper {
  height: inherit;
}

.works__swiper-wrapper {
  position: relative;
  height: inherit;
}

.works__swiper-slide {
  width: 100%;
  height: inherit;
}

.works__swiper-slide img {
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 375/261;
}
@media screen and (min-width: 768px) {
  .works__swiper-slide img {
    aspect-ratio: 557/389;
  }
}

.works .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.works .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  margin: 0 0.3125rem;
}

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

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

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

.works-item {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .works-item {
    width: calc(50% - 24px);
    max-width: 525px;
    max-width: 32.8125rem;
    margin: 0;
  }
}

.works-item--relation {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .works-item--relation {
    width: calc(25% - 12px);
  }
}

@media (hover: hover) {
  .works-item:hover {
    opacity: 0.8;
  }
}

.works-item__category {
  position: absolute;
  top: 0;
  right: 0;
}

.works-item__category-name {
  padding: 11px 19px;
  padding: 0.6875rem 1.1875rem;
  background-color: #111;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
}

.works-item__image {
  aspect-ratio: 375/249;
}
@media screen and (min-width: 768px) {
  .works-item__image {
    aspect-ratio: 525/349;
  }
}

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

.works-item__title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  line-height: 1;
  color: #fff;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .works-item__title {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.works-layout {
  margin-top: 87px;
  margin-top: 5.4375rem;
}
@media screen and (min-width: 768px) {
  .works-layout {
    margin-top: 118px;
    margin-top: 7.375rem;
  }
}

.works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 57px;
  gap: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .works-list {
    gap: 121px 48px;
    gap: 7.5625rem 3rem;
  }
}

.works-list--relation {
  gap: 100px;
  gap: 6.25rem;
}
@media screen and (min-width: 768px) {
  .works-list--relation {
    gap: 60px 12px;
    gap: 3.75rem 0.75rem;
  }
}

.works__contact {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .works__contact {
    margin-top: 150px;
    margin-top: 9.375rem;
  }
}

.works__list {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .works__list {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}
/*# sourceMappingURL=styles.css.map */
