@charset "UTF-8";
/* ここからダークモード */
.display-mini {
  display: none;
}
@media screen and (max-width: 600px) {
  .display-mini {
    display: block;
  }
}

.display-sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .display-sp {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .display-pc {
    display: none !important;
  }
}

.display-lg {
  display: none;
}
@media screen and (min-width: 1024px) {
  .display-lg {
    display: block;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f2f2f2;
  color: #303030;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #757575;
    color: #fff;
  }
}
/* pcの電話番号発信対応 */
@media screen and (min-width: 801px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

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

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

@media screen and (max-width: 800px) {
  .article__container {
    margin-top: 40px;
  }
}

.article__items {
  overflow: hidden;
}

.article__item {
  width: auto;
  height: auto;
}
.article__item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.article__item a .article__click {
  position: absolute;
  z-index: 100;
  right: 9px;
  bottom: 9px;
}
.article__item a .article__click img {
  width: 19px;
  height: 23px;
}
.article__item a:hover .article__picture::before {
  opacity: 1;
}
.article__item a:hover .article__picture img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="2" /></filter></svg>#filter');
  -webkit-filter: blur(2px);
          filter: blur(2px);
}
.article__item a:hover .article__picture .article__center {
  opacity: 1;
}

.article__item--start-none {
  display: none;
}

.article__picture {
  position: relative;
  z-index: 1;
}
.article__picture::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 48, 48, .8);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.article__picture img {
  aspect-ratio: 2000/1366;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.article__picture .article__center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  opacity: 0;
}
.article__picture .article__center .article__title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.article__picture .article__center .article__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  color: #fff;
}
.article__picture .article__center .article__tags .article__tag {
  display: inline-block;
  margin-left: 6px;
}
.article__picture .article__center .article__tags .article__tag:nth-child(n+3) {
  margin-left: 4px;
}

/* Contact Form 7 で使うクラスが書かれているファイル */
.c-form7__item:not(:first-child) {
  margin-top: 35px;
}
@media screen and (max-width: 800px) {
  .c-form7__item:not(:first-child) {
    margin-top: 31px;
  }
}
.c-form7__item:nth-child(4) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  height: 189px;
}
@media screen and (max-width: 800px) {
  .c-form7__item:nth-child(4) {
    height: 219px;
  }
}

.c-form7__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 206px;
  margin-top: 6px;
}

.c-form7__picture {
  max-width: 17px;
  max-height: 17px;
  width: 100%;
  height: 100%;
}
.c-form7__picture img {
  aspect-ratio: 17/17;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.c-form7__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .c-form7__title {
    margin-left: 2px;
  }
}

.c-form7__icon {
  font-size: 18px;
  color: #9e9e9e;
}
@media screen and (max-width: 800px) {
  .c-form7__icon {
    font-size: 16px;
  }
}
@media (prefers-color-scheme: dark) {
  .c-form7__icon {
    color: #fff;
  }
}

.c-form7__text {
  margin-left: 16px;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .c-form7__text {
    margin-left: 17px;
    font-size: 14px;
  }
}

.c-form7__required {
  font-size: 16px;
  line-height: 1;
  color: #a80f0f;
}
@media screen and (max-width: 800px) {
  .c-form7__required {
    font-size: 14px;
  }
}

.c-form7__field {
  margin-top: 16px;
  max-width: 850px;
}
@media screen and (max-width: 800px) {
  .c-form7__field {
    margin-top: 17px;
    width: 100%;
  }
}
.c-form7__field input {
  width: 50%;
  min-width: 300px;
  height: 36px;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 5px;
  background: #fff;
}
@media (prefers-color-scheme: dark) {
  .c-form7__field input {
    background: #9e9e9e;
  }
}
@media screen and (max-width: 800px) {
  .c-form7__field input {
    width: 100%;
  }
}
.c-form7__field input[name=your-subject] {
  width: 100%;
}
.c-form7__field textarea {
  resize: none;
  width: 100%;
  height: 184px;
  padding: 8px 12px;
  border-radius: 5px;
  background: #fff;
}
@media (prefers-color-scheme: dark) {
  .c-form7__field textarea {
    background: #9e9e9e;
  }
}
.c-form7__field .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #a80f0f;
}

.c-form7__field--textarea .wpcf7-not-valid-tip {
  bottom: -20px;
}

.recaptcha .wpcf7-not-valid-tip {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #a80f0f;
  margin-right: calc(50% - 50vw);
}

.c-form7__recaptcha {
  margin-top: 99px;
}
@media screen and (max-width: 800px) {
  .c-form7__recaptcha {
    margin: 49px auto 0px;
  }
}

.c-form7__button {
  margin-top: 81px;
  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;
  width: 225px;
  height: 60px;
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .c-form7__button {
    margin: 39px auto 0px;
  }
}
.c-form7__button:hover input {
  color: #303030;
}
.c-form7__button input {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 20px;
  color: #8c8c8c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-form7__button .wpcf7-spinner {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 0;
  padding: 0;
  margin-top: 8px;
  border-color: transparent;
  color: #a80f0f;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
  margin-top: 8px;
  color: #12A6C7;
}

/* サイト共通で使用するクラスが書かれているパーツ */
.common__title {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  .common__title {
    font-size: 20px;
  }
}

@media (prefers-color-scheme: dark) {
  .has-black-color {
    color: #fff !important;
  }
}

/* コピーライトで使用 */
.copyright {
  display: none;
}
@media screen and (min-width: 801px) {
  .copyright {
    position: fixed;
    z-index: 100;
    right: -60px;
    bottom: 125px;
  }
}

@media screen and (max-width: 800px) {
  .copyright-fixed--sp {
    position: fixed;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.copyright__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 801px) {
  .copyright__flex {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (max-width: 800px) {
  .copyright__flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 25px;
  }
}

.copyright__text {
  font-size: 12px;
  letter-spacing: 0px;
}
@media (prefers-color-scheme: dark) {
  .copyright__text {
    color: #000;
  }
}

.copyright__policy {
  position: relative;
  display: block;
  margin-left: 8px;
  padding: 0px 5px;
  background-color: rgba(158, 158, 158, .4);
  color: #fff;
  border-radius: 9px;
  width: 44px;
  height: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.copyright__policy::before {
  content: "Policy";
  position: absolute;
  font-size: 12px;
  line-height: 1.3333333333;
}
.copyright__policy:hover {
  background-color: #f2bd1d;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 280px;
  height: 100vh;
}
@media screen and (max-width: 800px) {
  .header {
    position: static;
    background: transparent;
    width: 100%;
    height: auto;
  }
}
@media (prefers-color-scheme: dark) {
  .header {
    background-color: #303030;
    color: #9e9e9e;
  }
}
@media screen and (prefers-color-scheme: dark) and (max-width: 800px) {
  .header {
    background-color: #757575;
    color: #fff;
  }
}

.header__container {
  height: 100%;
  padding: 35px 35px 41px;
  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 (max-width: 800px) {
  .header__container {
    padding: 50px 30px 0;
  }
}
@media screen and (max-width: 600px) {
  .header__container {
    padding: 50px 20px 0;
  }
}

.header__logo {
  width: 72px;
  height: 72px;
}
@media screen and (max-width: 800px) {
  .header__logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (prefers-color-scheme: dark) and (max-width: 800px) {
  .header__logo {
    display: none;
  }
}

.header__logo--dark {
  display: none;
}
@media screen and (prefers-color-scheme: dark) and (max-width: 800px) {
  .header__logo--dark {
    display: block;
  }
}

.header__main {
  margin-top: 32px;
}
@media screen and (max-width: 800px) {
  .header__main {
    margin-top: 40px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.header__company-profile {
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.5714285714;
  letter-spacing: 0px;
}

.header__contact {
  margin-top: 6px;
}
.header__contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__contact a:hover .header__text {
  color: #cca01b;
}

.header__contact-icon .fa-envelope {
  color: #9e9e9e;
  font-size: 14px;
  padding-bottom: 4px;
}
@media screen and (max-width: 800px) and (prefers-color-scheme: dark) {
  .header__contact-icon .fa-envelope {
    color: #f2f2f2;
  }
}

.header__text {
  margin-left: 5px;
  font-size: 14px;
  line-height: 1;
  color: #f2bd1d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__menus {
  margin-top: 35px;
}
@media screen and (max-width: 800px) {
  .header__menus {
    margin-top: 26px;
    max-width: 600px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}

.header__menu {
  position: relative;
}
@media screen and (min-width: 801px) {
  .header__menu:not(:first-child) {
    margin-top: 8px;
  }
}
@media screen and (min-width: 801px) {
  .header__menu:first-child a .header__menu-icon {
    top: 50%;
  }
}
.header__menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-size: 12px;
  letter-spacing: 0.2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .header__menu a {
    font-size: 14px;
    line-height: 2.1428571429;
  }
}
@media screen and (min-width: 801px) {
  .header__menu a .header__menu-icon {
    position: absolute;
    top: 53%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -17px;
    font-size: 12px;
    color: #f2bd1d;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.header__menu a .header__icon-right {
  margin-left: 4px;
  padding-top: 2px;
  font-size: 12px;
  color: #303030;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (prefers-color-scheme: dark) {
  .header__menu a .header__icon-right {
    color: #9e9e9e;
  }
}
@media screen and (prefers-color-scheme: dark) and (max-width: 800px) {
  .header__menu a .header__icon-right {
    color: #fff;
  }
}
.header__menu a:hover {
  color: #f2bd1d;
}
.header__menu a:hover i {
  opacity: 1;
  color: #f2bd1d;
}
.header__menu:last-child a {
  line-height: 2.4285714286;
}

.header__menu--active a {
  color: #f2bd1d;
  cursor: default;
}
.header__menu--active a .header__menu-icon {
  position: absolute;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -17px;
  color: #f2bd1d;
  opacity: 1;
}

.header__sns-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: auto;
  margin-left: 5px;
}
@media screen and (max-width: 800px) {
  .header__sns-icons {
    margin: 0;
    margin-top: 32px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 25px;
  }
}

.header__sns-icon a {
  font-size: 16px;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__sns-icon a:hover {
  color: #f2bd1d;
}

/* 以下のクラスはPCのみ使用 */
@media screen and (min-width: 801px) {
  .header__tag {
    margin-top: 36px;
    color: #9e9e9e;
  }
}

@media screen and (min-width: 801px) {
  .header__categories {
    margin-top: 4px;
  }
}

.header__category {
  display: block;
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.2px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__category:not(:first-child) {
  margin-top: 8px;
}
.header__category:hover {
  color: #f2bd1d;
}

.header__category--active {
  color: #f2bd1d;
  cursor: default;
}

/* jsファイルで使用する */
.js-works-article__arrow img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.js-display {
  display: block;
}

.js-absolute {
  position: absolute;
}

.js-static {
  position: static;
}

.js-height-auto {
  height: auto !important;
}

/* 言語変更パーツでで使用 */
.language-change {
  position: fixed;
  top: 140px;
  right: 18px;
  width: 30px;
  height: 24px;
}
@media screen and (max-width: 800px) {
  .language-change {
    position: static;
    margin-top: 10px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 600px) {
  .language-change {
    margin-left: 27px;
  }
}

.language-change__icon {
  font-size: 24px;
  line-height: 1;
  color: #9e9e9e;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (prefers-color-scheme: dark) {
  .language-change__icon {
    color: #f2f2f2;
  }
}
@media screen and (min-width: 801px) {
  .language-change__icon:hover {
    color: #f2bd1d;
  }
}

.site-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 801px) {
  .site-control {
    position: relative;
  }
}
@media screen and (max-width: 800px) {
  .site-control {
    display: block;
  }
}

@media screen and (min-width: 801px) {
  .site-control__region {
    position: absolute;
    top: 0;
    left: 280px;
    width: calc(100% - 280px);
  }
}

.contact__container {
  max-width: 950px;
  width: 100%;
  padding: 138px 50px 100px;
}
@media screen and (max-width: 800px) {
  .contact__container {
    margin-top: 8px;
    padding: 0px 40px 50px;
  }
}
@media screen and (max-width: 600px) {
  .contact__container {
    padding: 0px 27px 33px;
  }
}

.contact__text {
  margin-top: 17px;
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 800px) {
  .contact__text {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}

.contact__the-content {
  margin-top: 99px;
}
@media screen and (max-width: 800px) {
  .contact__the-content {
    margin-top: 42px;
  }
}

.contact__en {
  display: none;
}

/* ニュース子ページで使用 */
.news-article__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .news-article__container {
    display: block;
  }
}

.news-article__main {
  /* 100% - news-article__shareのwidth - news-article__shareのmargin-left */
  width: calc(100% - 112px);
  padding: 132px 0px 100px 45px;
}
@media screen and (max-width: 800px) {
  .news-article__main {
    width: 100%;
    margin-top: 37px;
    padding: 0px 40px;
  }
}
@media screen and (max-width: 600px) {
  .news-article__main {
    padding: 0px 27px;
  }
}

.news-article__title {
  font-size: 24px;
  max-width: 862px;
}
@media screen and (max-width: 800px) {
  .news-article__title {
    font-size: 20px;
  }
}

.news-article__the-content {
  margin-top: 30px;
  max-width: 862px;
}
@media screen and (max-width: 800px) {
  .news-article__the-content {
    margin-top: 10px;
  }
}
.news-article__the-content p {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 600px) {
  .news-article__the-content p {
    margin-bottom: 1.25rem;
    font-size: 14px;
    line-height: 1.8571428571;
  }
}
.news-article__the-content p a {
  color: #f2bd1d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-article__the-content p a:hover {
  color: #cca01b;
}
.news-article__the-content img {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  display: inline-block;
  width: auto;
}
@media screen and (min-width: 1024px) {
  .news-article__the-content img {
    margin-bottom: 4.375rem;
  }
}
@media screen and (max-width: 800px) {
  .news-article__the-content img {
    margin-bottom: 2.1875rem;
  }
}
@media screen and (max-width: 600px) {
  .news-article__the-content img {
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 800px) {
  .news-article__the-content figure:has(a) {
    text-align: center;
  }
}
.news-article__the-content figure iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 1024px) {
  .news-article__the-content figure iframe {
    margin-bottom: 4.375rem;
  }
}
@media screen and (max-width: 800px) {
  .news-article__the-content figure iframe {
    margin-bottom: 2.1875rem;
  }
}
@media screen and (max-width: 600px) {
  .news-article__the-content figure iframe {
    margin-bottom: 1.25rem;
  }
}
.news-article__the-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 600px) {
  .news-article__the-content ul {
    margin-bottom: 1.25rem;
  }
}
.news-article__the-content ul .has-small-font-size {
  font-size: 14px !important;
  line-height: 1.8571428571;
}

@media screen and (max-width: 800px) {
  .news-article__button {
    text-align: center;
  }
}
.news-article__button a {
  display: inline-block;
}

@media screen and (min-width: 801px) {
  .news-article__pagination {
    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;
    margin-top: 9.375rem;
    color: #9e9e9e;
  }
}
@media screen and (min-width: 801px) and (prefers-color-scheme: dark) {
  .news-article__pagination {
    color: #f2f2f2;
  }
}

.news-article__before {
  font-size: 14px;
  margin-right: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-article__before:hover {
  color: #f2bd1d;
}

.news-article__return {
  font-size: 12px;
}
.news-article__return a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-article__return a:hover {
  color: #f2bd1d;
}

.news-article__next {
  font-size: 14px;
  margin-left: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-article__next:hover {
  color: #f2bd1d;
}

.news-article__share {
  width: 82px;
  margin-top: 200px;
  margin-left: 30px;
  padding-right: 20px;
}
@media screen and (max-width: 800px) {
  .news-article__share {
    width: 100%;
    margin-top: 26px;
    margin-left: 0;
    padding: 0px 40px;
  }
}
@media screen and (max-width: 600px) {
  .news-article__share {
    padding: 0px 27px;
  }
}

.news-article__time {
  color: #9e9e9e;
  font-size: 12px;
  line-height: 1.4;
}
@media (prefers-color-scheme: dark) {
  .news-article__time {
    color: #f2f2f2;
  }
}

.news-article__category {
  color: #9e9e9e;
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .news-article__category {
    text-align: left;
  }
}
@media (prefers-color-scheme: dark) {
  .news-article__category {
    color: #f2f2f2;
  }
}

.news-article__sns-icons {
  margin-top: 33px;
}
@media screen and (max-width: 800px) {
  .news-article__sns-icons {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.news-article__sns-icon {
  font-size: 16px;
  text-align: right;
}
.news-article__sns-icon:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 800px) {
  .news-article__sns-icon:not(:first-child) {
    margin-top: 0;
    margin-left: 35px;
  }
}
@media screen and (max-width: 800px) {
  .news-article__sns-icon {
    text-align: left;
  }
}
.news-article__sns-icon a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (prefers-color-scheme: dark) {
  .news-article__sns-icon a {
    color: #f2f2f2;
  }
}
.news-article__sns-icon a:hover {
  color: #f2bd1d;
}

/* ニュースページで使用 */
@media screen and (max-width: 800px) {
  .news__container {
    margin-top: 40px;
  }
}

.news__articles {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 800px) {
  .news__articles {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .news__articles {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 880px) {
  .news__articles {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1480px) {
  .news__articles {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 2080px) {
  .news__articles {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 801px) {
  .news__article:nth-child(odd) {
    background-color: #f2f2f2;
  }
}
@media screen and (min-width: 801px) and (prefers-color-scheme: dark) {
  .news__article:nth-child(odd) {
    background-color: #757575;
  }
}
@media screen and (min-width: 801px) {
  .news__article:nth-child(even) {
    background-color: #fff;
  }
}
@media screen and (min-width: 801px) and (prefers-color-scheme: dark) {
  .news__article:nth-child(even) {
    background-color: #9e9e9e;
  }
}
.news__article a:hover .news__picture img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="2" /></filter></svg>#filter');
  -webkit-filter: blur(2px);
          filter: blur(2px);
}
.news__article a:hover .news__title {
  color: #cca01b;
}
.news__article a:hover .news__text {
  color: #cca01b;
}

.news__picture img {
  aspect-ratio: 2000/1366;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 24px 13px;
}

.news__head {
  min-height: 138px;
}
@media screen and (max-width: 600px) {
  .news__head {
    min-height: auto;
  }
}

.news__title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news__text p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5714285714;
  word-wrap: anywhere;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news__foot {
  margin-top: 35px;
}

.news__time {
  color: #8c8c8c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (prefers-color-scheme: dark) {
  .news__time {
    color: #fff;
  }
}

.news__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news__icon {
  color: #8c8c8c;
  font-size: 14px;
  line-height: 1.4285714286;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (prefers-color-scheme: dark) {
  .news__icon {
    color: #fff;
  }
}

.news__tag {
  color: #8c8c8c;
  margin-left: 6px;
  font-size: 14px;
  line-height: 1.4285714286;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (prefers-color-scheme: dark) {
  .news__tag {
    color: #fff;
  }
}
.news__tag:nth-child(n+3) {
  margin-left: 4px;
}

.news__footer {
  height: 70px;
  width: 100%;
  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: 20px 60px 20px 24px;
}
@media screen and (max-width: 800px) {
  .news__footer {
    padding: 20px 24px;
  }
}
.news__footer .page-numbers {
  display: none;
}
.news__footer .next {
  display: block;
}
.news__footer .prev {
  display: block;
}
.news__footer:has(.prev) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.news__older {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news__older i {
  font-size: 14px;
  line-height: 2.1428571429;
  color: #9e9e9e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news__older p {
  margin-left: 6px;
  font-size: 14px;
  line-height: 2.1428571429;
  color: #f2bd1d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news__older:hover i {
  color: #cca01b;
}
.news__older:hover p {
  color: #cca01b;
}

.news__newer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news__newer i {
  font-size: 14px;
  line-height: 2.1428571429;
  color: #9e9e9e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news__newer p {
  margin-right: 6px;
  font-size: 14px;
  line-height: 2.1428571429;
  color: #f2bd1d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news__newer:hover i {
  color: #cca01b;
}
.news__newer:hover p {
  color: #cca01b;
}

/* 404.php で使用するクラス */
.not-found__container {
  height: 100vh;
  padding: 50px;
}
@media screen and (max-width: 800px) {
  .not-found__container {
    margin-top: 5.3125rem;
    padding: 0px 45px 50px;
    height: auto;
  }
}

.not-found__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.not-found__picture {
  max-width: 730px;
  max-height: 730px;
  width: 40vw;
  height: 40vw;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 800px) {
  .not-found__picture {
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    height: 100%;
  }
}
.not-found__picture img {
  aspect-ratio: 1/1;
  max-width: 730px;
  max-height: 730px;
  width: 40vw;
  height: 40vw;
}
@media screen and (max-width: 800px) {
  .not-found__picture img {
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    height: 100%;
  }
}

.not-found__text {
  margin-top: 65px;
  margin-top: 4.0625rem;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #9e9e9e;
}
@media screen and (max-width: 800px) {
  .not-found__text {
    margin-top: 1.625rem;
    font-size: 14px;
  }
}

.not-found__link a {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 5px 10px;
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1;
  color: #f2bd1d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .not-found__link a {
    margin-top: 0.3125rem;
  }
}
.not-found__link a:hover {
  color: #cca01b;
}

.corp {
  overflow: hidden;
}
.corp .mt-140 {
  margin-top: 140px;
}
@media screen and (max-width: 800px) {
  .corp .mt-140 {
    margin-top: 120px;
  }
}
@media screen and (max-width: 600px) {
  .corp .mt-140 {
    margin-top: 100px;
  }
}
.corp .corp__container {
  max-width: calc(900px + 13.7%);
  padding: 90px 50px 200px;
}
@media screen and (min-width: 1024px) {
  .corp .corp__container {
    padding: 90px 50px 200px 13.7%;
  }
}
@media screen and (max-width: 800px) {
  .corp .corp__container {
    padding: 80px 30px 140px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__container {
    padding: 80px 20px 80px;
  }
}
.corp .corp__top {
  padding-top: 90px;
}
@media screen and (max-width: 800px) {
  .corp .corp__top {
    padding-top: 0;
  }
}
.corp .corp__top .mini-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .corp .corp__top .mini-title {
    font-size: 19px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__top .mini-title {
    font-size: 14px;
  }
}
.corp .corp__top .heading-ja {
  margin-top: 32px;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .corp .corp__top .heading-ja {
    font-size: 60px;
  }
}
@media screen and (max-width: 800px) {
  .corp .corp__top .heading-ja {
    margin-top: 26px;
    font-size: 36px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__top .heading-ja {
    margin-top: 20px;
    font-size: 25px;
  }
}
.corp .corp__top .heading-en {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .corp .corp__top .heading-en {
    font-size: 17px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__top .heading-en {
    font-size: 14px;
  }
}
.corp .corp__top .heading-en span {
  color: #127E58;
}
@media (prefers-color-scheme: dark) {
  .corp .corp__top .heading-en span {
    color: #25DB6D;
  }
}
.corp .corp__face {
  margin-top: 120px;
}
@media screen and (min-width: 1024px) {
  .corp .corp__face {
    margin-top: 140px;
  }
}
@media screen and (max-width: 800px) {
  .corp .corp__face {
    margin-top: 90px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__face {
    margin-top: 60px;
  }
}
.corp .corp__face .fs-24 {
  font-size: 24px;
  line-height: 1.1666666667;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  .corp .corp__face .fs-24 {
    font-size: 19px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__face .fs-24 {
    font-size: 14px;
  }
}
.corp .corp__face .fs-60 {
  margin-top: 24px;
  font-size: 60px;
  line-height: 1.2;
  font-weight: 900;
}
@media screen and (max-width: 800px) {
  .corp .corp__face .fs-60 {
    margin-top: 20px;
    font-size: 48px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__face .fs-60 {
    margin-top: 16px;
    font-size: 36px;
  }
}
.corp .corp__face .fs-60 span {
  position: relative;
  display: inline-block;
}
.corp .corp__face .fs-60 span::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  top: 3px;
  left: 0;
  width: 100%;
  height: calc(100% - 2px);
  background-color: #FBD101;
}
@media screen and (max-width: 800px) {
  .corp .corp__face .fs-60 span::before {
    top: 2px;
  }
}
@media (prefers-color-scheme: dark) {
  .corp .corp__face .fs-60 span::before {
    background-color: #967F0E;
  }
}
.corp .corp__face .arrangement-text {
  position: relative;
}
.corp .corp__face .arrangement-text::before {
  content: "Re";
  position: absolute;
  z-index: -1;
  top: -12px;
  left: 188px;
  font-size: 320px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 1024px) {
  .corp .corp__face .arrangement-text::before {
    top: -30px;
    left: 218px;
    font-size: 400px;
  }
}
@media screen and (min-width: 1280px) {
  .corp .corp__face .arrangement-text::before {
    top: -90px;
    left: 313px;
    font-size: 600px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__face .arrangement-text::before {
    top: -17px;
    left: 135px;
    font-size: 250px;
  }
}
@media (prefers-color-scheme: dark) {
  .corp .corp__face .arrangement-text::before {
    color: #666;
  }
}
.corp .corp__face .texts {
  margin-top: 50px;
}
@media screen and (max-width: 800px) {
  .corp .corp__face .texts {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__face .texts {
    margin-top: 18px;
  }
}
.corp .corp__face .texts .fs-30 {
  font-size: 25px;
  line-height: 2;
  letter-spacing: -0.01em;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .corp .corp__face .texts .fs-30 {
    font-size: 30px;
  }
}
@media screen and (max-width: 800px) {
  .corp .corp__face .texts .fs-30 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__face .texts .fs-30 {
    font-size: 14px;
  }
}
.corp .corp__face .texts .fs-30 span {
  font-weight: 900;
}
.corp .corp__face .corp__change {
  margin-top: 60px;
}
@media screen and (max-width: 800px) {
  .corp .corp__face .corp__change {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__face .corp__change {
    margin-top: 24px;
  }
}
.corp .corp__face .corp__change img {
  aspect-ratio: 848/144;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .corp .corp__face .corp__change img {
    max-width: 600px;
  }
}
.corp .corp__assignment .top .value img,
.corp .corp__pillar .top .value img {
  max-width: 140px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .top .value img,
  .corp .corp__pillar .top .value img {
    max-width: 125px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__assignment .top .value img,
  .corp .corp__pillar .top .value img {
    max-width: 110px;
  }
}
.corp .corp__assignment .top .redefinition img,
.corp .corp__pillar .top .redefinition img {
  max-width: 122px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .top .redefinition img,
  .corp .corp__pillar .top .redefinition img {
    max-width: 108px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__assignment .top .redefinition img,
  .corp .corp__pillar .top .redefinition img {
    max-width: 94px;
  }
}
.corp .corp__assignment .top .fs-40,
.corp .corp__pillar .top .fs-40 {
  margin-top: 10px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .top .fs-40,
  .corp .corp__pillar .top .fs-40 {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__assignment .top .fs-40,
  .corp .corp__pillar .top .fs-40 {
    font-size: 24px;
  }
}
.corp .corp__assignment .top .fs-40 span,
.corp .corp__pillar .top .fs-40 span {
  font-weight: 900;
  position: relative;
  display: inline-block;
}
.corp .corp__assignment .top .fs-40 span::before,
.corp .corp__pillar .top .fs-40 span::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  top: 3px;
  left: 0;
  width: 100%;
  height: calc(100% - 2px);
  background-color: #FBD101;
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .top .fs-40 span::before,
  .corp .corp__pillar .top .fs-40 span::before {
    top: 2px;
  }
}
@media (prefers-color-scheme: dark) {
  .corp .corp__assignment .top .fs-40 span::before,
  .corp .corp__pillar .top .fs-40 span::before {
    background-color: #967F0E;
  }
}
.corp .corp__assignment .num-items,
.corp .corp__assignment .icon-items,
.corp .corp__pillar .num-items,
.corp .corp__pillar .icon-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 80px;
}
@media screen and (min-width: 1024px) {
  .corp .corp__assignment .num-items,
  .corp .corp__assignment .icon-items,
  .corp .corp__pillar .num-items,
  .corp .corp__pillar .icon-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .num-items,
  .corp .corp__assignment .icon-items,
  .corp .corp__pillar .num-items,
  .corp .corp__pillar .icon-items {
    margin-top: 70px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__assignment .num-items,
  .corp .corp__assignment .icon-items,
  .corp .corp__pillar .num-items,
  .corp .corp__pillar .icon-items {
    margin-top: 60px;
  }
}
.corp .corp__assignment .num-items .icon,
.corp .corp__assignment .icon-items .icon,
.corp .corp__pillar .num-items .icon,
.corp .corp__pillar .icon-items .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.corp .corp__assignment .num-items .icon img,
.corp .corp__assignment .icon-items .icon img,
.corp .corp__pillar .num-items .icon img,
.corp .corp__pillar .icon-items .icon img {
  max-height: 102px;
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .num-items .icon img,
  .corp .corp__assignment .icon-items .icon img,
  .corp .corp__pillar .num-items .icon img,
  .corp .corp__pillar .icon-items .icon img {
    max-height: 92px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__assignment .num-items .icon img,
  .corp .corp__assignment .icon-items .icon img,
  .corp .corp__pillar .num-items .icon img,
  .corp .corp__pillar .icon-items .icon img {
    max-height: 82px;
  }
}
.corp .corp__assignment .num-items .num,
.corp .corp__assignment .icon-items .num,
.corp .corp__pillar .num-items .num,
.corp .corp__pillar .icon-items .num {
  font-size: 108px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .num-items .num,
  .corp .corp__assignment .icon-items .num,
  .corp .corp__pillar .num-items .num,
  .corp .corp__pillar .icon-items .num {
    font-size: 94px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__assignment .num-items .num,
  .corp .corp__assignment .icon-items .num,
  .corp .corp__pillar .num-items .num,
  .corp .corp__pillar .icon-items .num {
    font-size: 80px;
  }
}
.corp .corp__assignment .num-items .title,
.corp .corp__assignment .icon-items .title,
.corp .corp__pillar .num-items .title,
.corp .corp__pillar .icon-items .title {
  font-size: 25px;
  font-weight: 900;
  text-align: center;
  margin-top: 32px;
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .num-items .title,
  .corp .corp__assignment .icon-items .title,
  .corp .corp__pillar .num-items .title,
  .corp .corp__pillar .icon-items .title {
    margin-top: 24px;
    font-size: 23px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__assignment .num-items .title,
  .corp .corp__assignment .icon-items .title,
  .corp .corp__pillar .num-items .title,
  .corp .corp__pillar .icon-items .title {
    margin-top: 20px;
    font-size: 22px;
  }
}
.corp .corp__assignment .num-items .text,
.corp .corp__assignment .icon-items .text,
.corp .corp__pillar .num-items .text,
.corp .corp__pillar .icon-items .text {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6666666667;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .num-items .text,
  .corp .corp__assignment .icon-items .text,
  .corp .corp__pillar .num-items .text,
  .corp .corp__pillar .icon-items .text {
    margin-top: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__assignment .num-items .text,
  .corp .corp__assignment .icon-items .text,
  .corp .corp__pillar .num-items .text,
  .corp .corp__pillar .icon-items .text {
    margin-top: 8px;
    font-size: 14px;
  }
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .icon-items,
  .corp .corp__pillar .icon-items {
    gap: 40px;
  }
}
.corp .corp__assignment .big-message,
.corp .corp__pillar .big-message {
  margin-top: 80px;
  font-size: 43px;
  line-height: 1.2115384615;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .corp .corp__assignment .big-message,
  .corp .corp__pillar .big-message {
    font-size: 52px;
  }
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .big-message,
  .corp .corp__pillar .big-message {
    margin-top: 100px;
    font-size: 34px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__assignment .big-message,
  .corp .corp__pillar .big-message {
    font-size: 25px;
  }
}
.corp .corp__assignment .big-message span,
.corp .corp__pillar .big-message span {
  position: relative;
  display: inline-block;
}
.corp .corp__assignment .big-message span::before,
.corp .corp__pillar .big-message span::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  top: 3px;
  left: 0;
  width: 100%;
  height: calc(100% - 2px);
  background-color: #FBD101;
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .big-message span::before,
  .corp .corp__pillar .big-message span::before {
    top: 2px;
  }
}
@media (prefers-color-scheme: dark) {
  .corp .corp__assignment .big-message span::before,
  .corp .corp__pillar .big-message span::before {
    background-color: #967F0E;
  }
}
.corp .corp__assignment .message,
.corp .corp__pillar .message {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 800px) {
  .corp .corp__assignment .message,
  .corp .corp__pillar .message {
    margin-top: 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__assignment .message,
  .corp .corp__pillar .message {
    font-size: 14px;
    margin-top: 28px;
  }
}
.corp .corp__workflow .heading .en {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .corp .corp__workflow .heading .en {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__workflow .heading .en {
    font-size: 13px;
  }
}
.corp .corp__workflow .heading .ja {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-top: 22px;
}
@media screen and (max-width: 800px) {
  .corp .corp__workflow .heading .ja {
    font-size: 32px;
    margin-top: 17px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__workflow .heading .ja {
    font-size: 24px;
    margin-top: 12px;
  }
}
.corp .corp__workflow .workflow {
  margin-top: 80px;
}
@media screen and (max-width: 800px) {
  .corp .corp__workflow .workflow {
    margin-top: 60px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__workflow .workflow {
    margin-top: 40px;
  }
}
@media screen and (max-width: 800px) {
  .corp .corp__workflow .workflow img {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}
.corp .corp__future .ja {
  font-size: 60px;
  line-height: 1.1666666667;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .corp .corp__future .ja {
    font-size: 75px;
  }
}
@media screen and (max-width: 800px) {
  .corp .corp__future .ja {
    font-size: 45px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__future .ja {
    font-size: 30px;
  }
}
.corp .corp__future .ja span {
  position: relative;
  display: inline-block;
}
.corp .corp__future .ja span::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  top: 3px;
  left: 0;
  width: 100%;
  height: calc(100% - 2px);
  background-color: #FBD101;
}
@media screen and (max-width: 800px) {
  .corp .corp__future .ja span::before {
    top: 2px;
  }
}
@media (prefers-color-scheme: dark) {
  .corp .corp__future .ja span::before {
    background-color: #967F0E;
  }
}
.corp .corp__future .en {
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 800px) {
  .corp .corp__future .en {
    font-size: 15px;
    margin-top: 18px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__future .en {
    font-size: 12px;
    margin-top: 20px;
  }
}
.corp .corp__future .texts {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .corp .corp__future .texts {
    margin-top: 78px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__future .texts {
    margin-top: 56px;
  }
}
.corp .corp__future .texts .text {
  font-size: 20px;
  line-height: 1.875;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .corp .corp__future .texts .text {
    line-height: 3;
  }
}
@media screen and (max-width: 800px) {
  .corp .corp__future .texts .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__future .texts .text {
    font-size: 16px;
  }
}
.corp .corp__future .texts .text span {
  font-weight: 900;
  color: #00913A;
}
@media (prefers-color-scheme: dark) {
  .corp .corp__future .texts .text span {
    color: #25DB6D;
  }
}
@media screen and (min-width: 1024px) {
  .corp .corp__future .texts .text br {
    display: none;
  }
}
.corp .corp__materials {
  border-top: 1px solid #bbb;
  padding-top: 50px;
}
.corp .corp__materials .head .title {
  font-size: 18px;
  line-height: 1.4444444444;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .corp .corp__materials .head .title br {
    display: none;
  }
}
.corp .corp__materials .head .text {
  margin-top: 17px;
  font-size: 14px;
  line-height: 2.1428571429;
}
@media screen and (max-width: 800px) {
  .corp .corp__materials .head .text {
    line-height: 1.7142857143;
  }
}
.corp .corp__materials .materials {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .corp .corp__materials .materials {
    margin-top: 58px;
  }
}
@media screen and (max-width: 800px) {
  .corp .corp__materials .materials {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .corp .corp__materials .materials {
    margin-top: 32px;
  }
}

/*
	ロゴページ(page-logo.php)
	ロゴページ(page-logoforyou.php)
	で使用
*/
.logo__container,
.logo-foryou__container {
  max-width: 950px;
  width: 100%;
  padding: 90px 50px 200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1480px) {
  .logo__container,
  .logo-foryou__container {
    max-width: calc(900px + 12.5%);
    padding: 90px 50px 200px 12.5%;
    margin-left: 0;
  }
}
@media screen and (max-width: 800px) {
  .logo__container,
  .logo-foryou__container {
    margin-top: 8px;
    padding: 80px 30px 50px;
  }
}
@media screen and (max-width: 600px) {
  .logo__container,
  .logo-foryou__container {
    padding: 80px 20px 33px;
  }
}

.logo__heading,
.logo-foryou__heading {
  font-size: 26px;
  line-height: 1.3846153846;
  color: #1E1E1E;
}
@media (prefers-color-scheme: dark) {
  .logo__heading,
  .logo-foryou__heading {
    color: #fff;
  }
}

.logo__sub-heading,
.logo-foryou__sub-heading {
  font-size: 18px;
  line-height: 1.4444444444;
  color: #1E1E1E;
}
@media (prefers-color-scheme: dark) {
  .logo__sub-heading,
  .logo-foryou__sub-heading {
    color: #fff;
  }
}

.logo__text,
.logo-foryou__text {
  font-size: 14px;
  line-height: 1.7142857143;
  color: #1E1E1E;
}
@media (prefers-color-scheme: dark) {
  .logo__text,
  .logo-foryou__text {
    color: #fff;
  }
}

.logo__text--fs-14,
.logo-foryou__text--fs-14 {
  font-size: 14px;
  line-height: 1.7142857143;
}

.logo__text--note img,
.logo-foryou__text--note img {
  display: inline;
  width: 15px;
  margin-right: 1px;
}

.logo-foryou__text--idea {
  line-height: 2.1428571429;
}
@media screen and (max-width: 800px) {
  .logo-foryou__text--idea {
    line-height: 1.9285714286;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__text--idea {
    line-height: 1.7142857143;
  }
}

.logo__note,
.logo-foryou__note {
  position: relative;
  padding-left: 18px;
}
.logo__note img,
.logo-foryou__note img {
  position: absolute;
  top: 6px;
  left: 0;
  display: inline;
  width: 15px;
}

.logo__text--mail {
  position: relative;
  padding-left: 17px;
}
.logo__text--mail i {
  position: absolute;
  top: 6px;
  left: 0;
  margin-right: 4px;
}

.logo__text--link a {
  color: #06C755;
}

.logo__text--mt,
.logo-foryou__text--mt {
  margin-top: 24px;
}

.logo__mt-06 {
  margin-top: 6px;
}
@media screen and (max-width: 800px) {
  .logo__mt-06 {
    margin-top: 4px;
  }
}
@media screen and (max-width: 600px) {
  .logo__mt-06 {
    margin-top: 2px;
  }
}

.logo__mt-16,
.logo-foryou__mt-16 {
  margin-top: 16px;
}

.logo__mt-18,
.logo-foryou__mt-18 {
  margin-top: 16px;
}

.logo__mt-36,
.logo-foryou__mt-36 {
  margin-top: 36px;
}

.logo__mt-50,
.logo-foryou__mt-50 {
  margin-top: 50px;
}

.logo__mt-100,
.logo-foryou__mt-100 {
  margin-top: 100px;
}

.logo-foryou__fw-500 {
  font-weight: 500;
}

.logo__bar,
.logo-foryou__bar {
  width: 100%;
  height: 1px;
  background-color: #bbb;
}

.logo__frame {
  border: 1px solid #ddd;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.logo__back-white,
.logo__back-black {
  width: 100%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .logo__back-white,
  .logo__back-black {
    width: 50%;
  }
}
.logo__back-white img,
.logo__back-black img {
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .logo__back-white img,
  .logo__back-black img {
    max-width: 184px;
  }
}
@media screen and (max-width: 600px) {
  .logo__back-white img,
  .logo__back-black img {
    max-width: 168px;
  }
}

.logo__back-white {
  background-color: #fff;
}

.logo__back-black {
  background-color: #1E1E1E;
}

.logo__flex-text,
.logo-foryou__flex-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .logo__flex-text,
  .logo-foryou__flex-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}

.logo-foryou__flex-text {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.logo__links,
.logo-foryou__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.logo__link a,
.logo-foryou__link a {
  color: #06C755;
}

.logo__link--figma i,
.logo__link--pdf .logo-foryou__link--figma i,
.logo-foryou__link--pdf i {
  margin-right: 3px;
}

.logo__text--lh-1 {
  line-height: 1;
}

.logo__link--illustrator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo__link--illustrator span {
  height: 14px;
  margin-right: 5px;
}
.logo__link--illustrator img {
  width: 13px;
}

.logo__link--svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo__link--svg span {
  height: 14px;
  margin-right: 5px;
}
.logo__link--svg img {
  width: 13px;
}

.logo__link-bar,
.logo-foryou__link-bar {
  height: 14px;
  width: 1px;
  background-color: #bbb;
}

.logo-foryou__creative {
  padding: 120px 0;
}
@media screen and (max-width: 800px) {
  .logo-foryou__creative {
    padding: 0;
  }
}
.logo-foryou__creative .logo-foryou__creative-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .logo-foryou__creative .logo-foryou__creative-title {
    font-size: 18px;
    line-height: 1.5555555556;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__creative .logo-foryou__creative-title {
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
.logo-foryou__creative .logo-foryou__creative-heading {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.4666666667;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .logo-foryou__creative .logo-foryou__creative-heading {
    font-size: 48px;
    line-height: 1.4583333333;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__creative .logo-foryou__creative-heading {
    font-size: 36px;
    line-height: 1.4444444444;
  }
}
.logo-foryou__creative .logo-foryou__creative-heading span {
  position: relative;
}
.logo-foryou__creative .logo-foryou__creative-heading span::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #C9322D;
}
@media screen and (max-width: 800px) {
  .logo-foryou__creative .logo-foryou__creative-heading span::before {
    bottom: calc(100% - 2px);
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__creative .logo-foryou__creative-heading span::before {
    width: 8px;
    height: 8px;
  }
}

.logo-foryou__ideas {
  margin-top: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px 30px;
}
@media screen and (max-width: 800px) {
  .logo-foryou__ideas {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 100px;
    gap: 64px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__ideas {
    margin-top: 80px;
    gap: 48px;
  }
}
.logo-foryou__ideas .logo-foryou__idea-en {
  font-size: 18px;
  line-height: 1;
}
.logo-foryou__ideas .logo-foryou__idea-title-a {
  margin-top: 35px;
  font-size: 40px;
  line-height: 1.75;
}
@media screen and (max-width: 800px) {
  .logo-foryou__ideas .logo-foryou__idea-title-a {
    margin-top: 28px;
    font-size: 32px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__ideas .logo-foryou__idea-title-a {
    margin-top: 21px;
    font-size: 24px;
    line-height: 1.75;
  }
}
.logo-foryou__ideas .logo-foryou__idea-title-b {
  margin-top: 50px;
  font-size: 18px;
  line-height: 2.2222222222;
}
@media screen and (max-width: 800px) {
  .logo-foryou__ideas .logo-foryou__idea-title-b {
    margin-top: 32px;
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__ideas .logo-foryou__idea-title-b {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
.logo-foryou__ideas .logo-foryou__idea-title-c {
  margin-top: 30px;
  font-size: 30px;
  line-height: 2.3333333333;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .logo-foryou__ideas .logo-foryou__idea-title-c {
    margin-top: 25px;
    font-size: 24px;
    line-height: 2.25;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__ideas .logo-foryou__idea-title-c {
    margin-top: 19px;
    font-size: 18px;
    line-height: 2.2222222222;
  }
}
.logo-foryou__ideas .logo-foryou__idea-title-d {
  font-size: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  .logo-foryou__ideas .logo-foryou__idea-title-d {
    font-size: 27px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__ideas .logo-foryou__idea-title-d {
    font-size: 24px;
  }
}
@media screen and (max-width: 800px) {
  .logo-foryou__ideas .logo-foryou__idea-title-d br {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .logo-foryou__ideas .logo-foryou__idea .logo-foryou__mt-50 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__ideas .logo-foryou__idea .logo-foryou__mt-50 {
    margin-top: 32px;
  }
}

.logo-foryou__strong,
.logo-foryou__logo-mark,
.logo-foryou__process,
.logo-foryou__manual {
  margin-top: 140px;
}
@media screen and (max-width: 800px) {
  .logo-foryou__strong,
  .logo-foryou__logo-mark,
  .logo-foryou__process,
  .logo-foryou__manual {
    margin-top: 120px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__strong,
  .logo-foryou__logo-mark,
  .logo-foryou__process,
  .logo-foryou__manual {
    margin-top: 100px;
  }
}
.logo-foryou__strong .logo-foryou__strong-en,
.logo-foryou__strong .logo-foryou__process-en,
.logo-foryou__strong .logo-foryou__manual-en,
.logo-foryou__logo-mark .logo-foryou__strong-en,
.logo-foryou__logo-mark .logo-foryou__process-en,
.logo-foryou__logo-mark .logo-foryou__manual-en,
.logo-foryou__process .logo-foryou__strong-en,
.logo-foryou__process .logo-foryou__process-en,
.logo-foryou__process .logo-foryou__manual-en,
.logo-foryou__manual .logo-foryou__strong-en,
.logo-foryou__manual .logo-foryou__process-en,
.logo-foryou__manual .logo-foryou__manual-en {
  font-size: 18px;
  line-height: 1;
  text-align: center;
}
.logo-foryou__strong .logo-foryou__strong-heading,
.logo-foryou__strong .logo-foryou__logo-mark-heading,
.logo-foryou__strong .logo-foryou__process-heading,
.logo-foryou__strong .logo-foryou__manual-heading,
.logo-foryou__logo-mark .logo-foryou__strong-heading,
.logo-foryou__logo-mark .logo-foryou__logo-mark-heading,
.logo-foryou__logo-mark .logo-foryou__process-heading,
.logo-foryou__logo-mark .logo-foryou__manual-heading,
.logo-foryou__process .logo-foryou__strong-heading,
.logo-foryou__process .logo-foryou__logo-mark-heading,
.logo-foryou__process .logo-foryou__process-heading,
.logo-foryou__process .logo-foryou__manual-heading,
.logo-foryou__manual .logo-foryou__strong-heading,
.logo-foryou__manual .logo-foryou__logo-mark-heading,
.logo-foryou__manual .logo-foryou__process-heading,
.logo-foryou__manual .logo-foryou__manual-heading {
  margin-top: 25px;
  font-size: 40px;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .logo-foryou__strong .logo-foryou__strong-heading,
  .logo-foryou__strong .logo-foryou__logo-mark-heading,
  .logo-foryou__strong .logo-foryou__process-heading,
  .logo-foryou__strong .logo-foryou__manual-heading,
  .logo-foryou__logo-mark .logo-foryou__strong-heading,
  .logo-foryou__logo-mark .logo-foryou__logo-mark-heading,
  .logo-foryou__logo-mark .logo-foryou__process-heading,
  .logo-foryou__logo-mark .logo-foryou__manual-heading,
  .logo-foryou__process .logo-foryou__strong-heading,
  .logo-foryou__process .logo-foryou__logo-mark-heading,
  .logo-foryou__process .logo-foryou__process-heading,
  .logo-foryou__process .logo-foryou__manual-heading,
  .logo-foryou__manual .logo-foryou__strong-heading,
  .logo-foryou__manual .logo-foryou__logo-mark-heading,
  .logo-foryou__manual .logo-foryou__process-heading,
  .logo-foryou__manual .logo-foryou__manual-heading {
    font-size: 32px;
    line-height: 1.71875;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__strong .logo-foryou__strong-heading,
  .logo-foryou__strong .logo-foryou__logo-mark-heading,
  .logo-foryou__strong .logo-foryou__process-heading,
  .logo-foryou__strong .logo-foryou__manual-heading,
  .logo-foryou__logo-mark .logo-foryou__strong-heading,
  .logo-foryou__logo-mark .logo-foryou__logo-mark-heading,
  .logo-foryou__logo-mark .logo-foryou__process-heading,
  .logo-foryou__logo-mark .logo-foryou__manual-heading,
  .logo-foryou__process .logo-foryou__strong-heading,
  .logo-foryou__process .logo-foryou__logo-mark-heading,
  .logo-foryou__process .logo-foryou__process-heading,
  .logo-foryou__process .logo-foryou__manual-heading,
  .logo-foryou__manual .logo-foryou__strong-heading,
  .logo-foryou__manual .logo-foryou__logo-mark-heading,
  .logo-foryou__manual .logo-foryou__process-heading,
  .logo-foryou__manual .logo-foryou__manual-heading {
    font-size: 26px;
    line-height: 1.5384615385;
  }
}
.logo-foryou__strong .logo-foryou__strong-items,
.logo-foryou__logo-mark .logo-foryou__strong-items,
.logo-foryou__process .logo-foryou__strong-items,
.logo-foryou__manual .logo-foryou__strong-items {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .logo-foryou__strong .logo-foryou__strong-items,
  .logo-foryou__logo-mark .logo-foryou__strong-items,
  .logo-foryou__process .logo-foryou__strong-items,
  .logo-foryou__manual .logo-foryou__strong-items {
    gap: 16px;
  }
}
@media screen and (max-width: 800px) {
  .logo-foryou__strong .logo-foryou__strong-items,
  .logo-foryou__logo-mark .logo-foryou__strong-items,
  .logo-foryou__process .logo-foryou__strong-items,
  .logo-foryou__manual .logo-foryou__strong-items {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__strong .logo-foryou__strong-items,
  .logo-foryou__logo-mark .logo-foryou__strong-items,
  .logo-foryou__process .logo-foryou__strong-items,
  .logo-foryou__manual .logo-foryou__strong-items {
    margin-top: 32px;
  }
}
.logo-foryou__strong .logo-foryou__strong-item,
.logo-foryou__logo-mark .logo-foryou__strong-item,
.logo-foryou__process .logo-foryou__strong-item,
.logo-foryou__manual .logo-foryou__strong-item {
  background-color: #fff;
  border-radius: 70px;
  padding: 33px 16px 40px;
  min-width: 100%;
}
@media (prefers-color-scheme: dark) {
  .logo-foryou__strong .logo-foryou__strong-item,
  .logo-foryou__logo-mark .logo-foryou__strong-item,
  .logo-foryou__process .logo-foryou__strong-item,
  .logo-foryou__manual .logo-foryou__strong-item {
    background-color: #000;
  }
}
@media screen and (min-width: 1024px) {
  .logo-foryou__strong .logo-foryou__strong-item,
  .logo-foryou__logo-mark .logo-foryou__strong-item,
  .logo-foryou__process .logo-foryou__strong-item,
  .logo-foryou__manual .logo-foryou__strong-item {
    border-radius: 80px;
    min-width: 270px;
    padding: 36px 10px 58px;
  }
}
@media screen and (max-width: 800px) {
  .logo-foryou__strong .logo-foryou__strong-item,
  .logo-foryou__logo-mark .logo-foryou__strong-item,
  .logo-foryou__process .logo-foryou__strong-item,
  .logo-foryou__manual .logo-foryou__strong-item {
    border-radius: 60px;
    padding: 30px 16px 32px;
  }
}
.logo-foryou__strong .logo-foryou__strong-item .logo-foryou__strong-number,
.logo-foryou__strong .logo-foryou__strong-item .logo-foryou__strong-process,
.logo-foryou__logo-mark .logo-foryou__strong-item .logo-foryou__strong-number,
.logo-foryou__logo-mark .logo-foryou__strong-item .logo-foryou__strong-process,
.logo-foryou__process .logo-foryou__strong-item .logo-foryou__strong-number,
.logo-foryou__process .logo-foryou__strong-item .logo-foryou__strong-process,
.logo-foryou__manual .logo-foryou__strong-item .logo-foryou__strong-number,
.logo-foryou__manual .logo-foryou__strong-item .logo-foryou__strong-process {
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.logo-foryou__strong .logo-foryou__strong-item .logo-foryou__strong-process,
.logo-foryou__logo-mark .logo-foryou__strong-item .logo-foryou__strong-process,
.logo-foryou__process .logo-foryou__strong-item .logo-foryou__strong-process,
.logo-foryou__manual .logo-foryou__strong-item .logo-foryou__strong-process {
  margin-top: 12px;
  font-weight: 700;
  color: #C9322D;
}
@media screen and (max-width: 800px) {
  .logo-foryou__strong .logo-foryou__strong-item .logo-foryou__strong-process,
  .logo-foryou__logo-mark .logo-foryou__strong-item .logo-foryou__strong-process,
  .logo-foryou__process .logo-foryou__strong-item .logo-foryou__strong-process,
  .logo-foryou__manual .logo-foryou__strong-item .logo-foryou__strong-process {
    font-size: 16px;
  }
}
.logo-foryou__strong .logo-foryou__strong-item .logo-foryou__strong-sub-heading,
.logo-foryou__logo-mark .logo-foryou__strong-item .logo-foryou__strong-sub-heading,
.logo-foryou__process .logo-foryou__strong-item .logo-foryou__strong-sub-heading,
.logo-foryou__manual .logo-foryou__strong-item .logo-foryou__strong-sub-heading {
  font-size: 18px;
  line-height: 1.3333333333;
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
}
.logo-foryou__strong .logo-foryou__strong-texts,
.logo-foryou__strong .logo-foryou__logo-mark-texts,
.logo-foryou__logo-mark .logo-foryou__strong-texts,
.logo-foryou__logo-mark .logo-foryou__logo-mark-texts,
.logo-foryou__process .logo-foryou__strong-texts,
.logo-foryou__process .logo-foryou__logo-mark-texts,
.logo-foryou__manual .logo-foryou__strong-texts,
.logo-foryou__manual .logo-foryou__logo-mark-texts {
  margin-top: 20px;
}
.logo-foryou__strong .logo-foryou__strong-texts p,
.logo-foryou__strong .logo-foryou__logo-mark-texts p,
.logo-foryou__logo-mark .logo-foryou__strong-texts p,
.logo-foryou__logo-mark .logo-foryou__logo-mark-texts p,
.logo-foryou__process .logo-foryou__strong-texts p,
.logo-foryou__process .logo-foryou__logo-mark-texts p,
.logo-foryou__manual .logo-foryou__strong-texts p,
.logo-foryou__manual .logo-foryou__logo-mark-texts p {
  font-size: 12px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .logo-foryou__strong .logo-foryou__strong-texts p,
  .logo-foryou__strong .logo-foryou__logo-mark-texts p,
  .logo-foryou__logo-mark .logo-foryou__strong-texts p,
  .logo-foryou__logo-mark .logo-foryou__logo-mark-texts p,
  .logo-foryou__process .logo-foryou__strong-texts p,
  .logo-foryou__process .logo-foryou__logo-mark-texts p,
  .logo-foryou__manual .logo-foryou__strong-texts p,
  .logo-foryou__manual .logo-foryou__logo-mark-texts p {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}
.logo-foryou__strong .logo-foryou__logo-mark-texts,
.logo-foryou__logo-mark .logo-foryou__logo-mark-texts,
.logo-foryou__process .logo-foryou__logo-mark-texts,
.logo-foryou__manual .logo-foryou__logo-mark-texts {
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .logo-foryou__strong .logo-foryou__logo-mark-texts,
  .logo-foryou__logo-mark .logo-foryou__logo-mark-texts,
  .logo-foryou__process .logo-foryou__logo-mark-texts,
  .logo-foryou__manual .logo-foryou__logo-mark-texts {
    margin-top: 36px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__strong .logo-foryou__logo-mark-texts,
  .logo-foryou__logo-mark .logo-foryou__logo-mark-texts,
  .logo-foryou__process .logo-foryou__logo-mark-texts,
  .logo-foryou__manual .logo-foryou__logo-mark-texts {
    margin-top: 32px;
  }
}
.logo-foryou__strong .logo-foryou__logo-mark-texts p,
.logo-foryou__logo-mark .logo-foryou__logo-mark-texts p,
.logo-foryou__process .logo-foryou__logo-mark-texts p,
.logo-foryou__manual .logo-foryou__logo-mark-texts p {
  text-align: left;
  font-size: 14px;
}
.logo-foryou__strong .logo-foryou__logo-mark-futura,
.logo-foryou__logo-mark .logo-foryou__logo-mark-futura,
.logo-foryou__process .logo-foryou__logo-mark-futura,
.logo-foryou__manual .logo-foryou__logo-mark-futura {
  margin-top: 50px;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .logo-foryou__strong .logo-foryou__logo-mark-futura,
  .logo-foryou__logo-mark .logo-foryou__logo-mark-futura,
  .logo-foryou__process .logo-foryou__logo-mark-futura,
  .logo-foryou__manual .logo-foryou__logo-mark-futura {
    padding: 0 40px;
  }
}
@media screen and (max-width: 800px) {
  .logo-foryou__strong .logo-foryou__logo-mark-futura,
  .logo-foryou__logo-mark .logo-foryou__logo-mark-futura,
  .logo-foryou__process .logo-foryou__logo-mark-futura,
  .logo-foryou__manual .logo-foryou__logo-mark-futura {
    margin-top: 45px;
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__strong .logo-foryou__logo-mark-futura,
  .logo-foryou__logo-mark .logo-foryou__logo-mark-futura,
  .logo-foryou__process .logo-foryou__logo-mark-futura,
  .logo-foryou__manual .logo-foryou__logo-mark-futura {
    margin-top: 40px;
  }
}

.logo-foryou__process .logo-foryou__process-items {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 800px) {
  .logo-foryou__process .logo-foryou__process-items {
    margin-top: 60px;
    gap: 50px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__process .logo-foryou__process-items {
    margin-top: 40px;
    gap: 40px;
  }
}
.logo-foryou__process .logo-foryou__process-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (min-width: 1024px) {
  .logo-foryou__process .logo-foryou__process-head {
    gap: 68px;
  }
}
@media screen and (max-width: 800px) {
  .logo-foryou__process .logo-foryou__process-head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.logo-foryou__process .logo-foryou__process-logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.logo-foryou__process .logo-foryou__process-logo img {
  min-width: 53px;
  min-height: 53px;
}
.logo-foryou__process .logo-foryou__process-explanation {
  width: calc(100% - 103px);
}
@media screen and (min-width: 1024px) {
  .logo-foryou__process .logo-foryou__process-explanation {
    width: calc(100% - 121px);
  }
}
@media screen and (max-width: 800px) {
  .logo-foryou__process .logo-foryou__process-explanation {
    width: 100%;
  }
}
.logo-foryou__process .logo-foryou__process-num-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.logo-foryou__process .logo-foryou__process-num-heading span {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 22px;
  height: 22px;
  background-color: #000;
  border-radius: 50%;
  font-size: 18px;
  padding-bottom: 1px;
  color: #fff;
}
@media (prefers-color-scheme: dark) {
  .logo-foryou__process .logo-foryou__process-num-heading span {
    background-color: #fff;
    color: #757575;
  }
}
@media screen and (max-width: 800px) {
  .logo-foryou__process .logo-foryou__process-num-heading span {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__process .logo-foryou__process-num-heading span {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
}
.logo-foryou__process .logo-foryou__process-num-heading h3 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3636363636;
}
@media screen and (max-width: 800px) {
  .logo-foryou__process .logo-foryou__process-num-heading h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__process .logo-foryou__process-num-heading h3 {
    font-size: 18px;
  }
}
.logo-foryou__process .logo-foryou__process-texts {
  margin-top: 8px;
}
@media screen and (max-width: 800px) {
  .logo-foryou__process .logo-foryou__process-texts {
    margin-top: 6px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__process .logo-foryou__process-texts {
    margin-top: 4px;
  }
}
.logo-foryou__process .logo-foryou__process-texts p {
  font-size: 14px;
  line-height: 2.1428571429;
}
@media screen and (max-width: 800px) {
  .logo-foryou__process .logo-foryou__process-texts p {
    line-height: 1.9285714286;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__process .logo-foryou__process-texts p {
    line-height: 1.7142857143;
  }
}
.logo-foryou__process .logo-foryou__process-arrow {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.logo-foryou__process .logo-foryou__process-arrow img {
  width: 32px;
  height: 32px;
}
.logo-foryou__process .logo-foryou__process-picture {
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .logo-foryou__process .logo-foryou__process-picture {
    margin-top: 32px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__process .logo-foryou__process-picture {
    margin-top: 24px;
  }
}
.logo-foryou__process .logo-foryou__process-foot {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 800px) {
  .logo-foryou__process .logo-foryou__process-foot {
    margin-top: 32px;
    gap: 12px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__process .logo-foryou__process-foot {
    margin-top: 24px;
    gap: 10px;
  }
}
.logo-foryou__process .logo-foryou__process-foot .logo-foryou__process-icons {
  width: 90px;
}
@media screen and (max-width: 800px) {
  .logo-foryou__process .logo-foryou__process-foot .logo-foryou__process-icons {
    width: 76px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__process .logo-foryou__process-foot .logo-foryou__process-icons {
    width: 62px;
  }
}
.logo-foryou__process .logo-foryou__process-foot p {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .logo-foryou__process .logo-foryou__process-foot p {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__process .logo-foryou__process-foot p {
    font-size: 12px;
  }
}

.logo-foryou__manual .logo-foryou__manual-option {
  font-size: 22px;
  line-height: 1;
  padding: 10px 10px 11px;
  border-radius: 30px;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
}
@media screen and (max-width: 800px) {
  .logo-foryou__manual .logo-foryou__manual-option {
    font-size: 18px;
    padding: 8px 8px 9px;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__manual .logo-foryou__manual-option {
    font-size: 14px;
    padding: 6px 6px 7px;
  }
}
.logo-foryou__manual .logo-foryou__manual-text {
  font-size: 14px;
  line-height: 2.1428571429;
}
@media screen and (max-width: 800px) {
  .logo-foryou__manual .logo-foryou__manual-text {
    line-height: 1.9285714286;
  }
}
@media screen and (max-width: 600px) {
  .logo-foryou__manual .logo-foryou__manual-text {
    line-height: 1.7142857143;
  }
}

/* お問合せの完了ページ */
.contact-thanks__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 800px) {
  .contact-thanks__layout {
    height: 600px;
  }
}

.contact-thanks__icon img {
  display: block;
  aspect-ratio: 250/200;
  max-width: 250px;
  max-height: 200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .contact-thanks__icon img {
    max-width: 200px;
  }
}
@media screen and (max-width: 600px) {
  .contact-thanks__icon img {
    max-width: 150px;
  }
}

.contact-thanks__text {
  margin-top: 32px;
  text-align: center;
  font-size: 24px;
  line-height: 1.6666666667;
  color: #9e9e9e;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .contact-thanks__text {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.6666666667;
  }
}
@media screen and (max-width: 600px) {
  .contact-thanks__text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.4285714286;
  }
}

.contact-thanks__link {
  margin-top: 65px;
  color: #f2bd1d;
  font-size: 14px;
  line-height: 2.8571428571;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .contact-thanks__link {
    margin-top: 44px;
  }
}
@media screen and (max-width: 600px) {
  .contact-thanks__link {
    margin-top: 24px;
  }
}
.contact-thanks__link:hover {
  opacity: 0.7;
}

/* 固定ページ単体で使用するクラス */
.page__main {
  width: 100%;
  padding: 132px 45px 100px;
}
@media screen and (max-width: 800px) {
  .page__main {
    margin-top: 37px;
    padding: 0px 40px;
  }
}
@media screen and (max-width: 600px) {
  .page__main {
    padding: 0px 27px;
  }
}
.page__main a {
  display: block;
  width: 100%;
  word-break: break-all;
}
.page__main p {
  display: block;
  width: 100%;
  word-break: break-all;
}

/* page-privacy-policy.php で使用するクラス */
.privacy-policy__container {
  max-width: 950px;
  width: 100%;
  padding: 138px 50px 100px;
}
@media screen and (max-width: 800px) {
  .privacy-policy__container {
    margin-top: 8px;
    padding: 0px 40px 50px;
  }
}
@media screen and (max-width: 600px) {
  .privacy-policy__container {
    padding: 0px 27px 33px;
  }
}

.privacy-policy__items {
  margin-top: 16px;
}
@media screen and (max-width: 800px) {
  .privacy-policy__items {
    margin-top: 18px;
  }
}

.privacy-policy__item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  .privacy-policy__item:not(:first-child) {
    margin-top: 26px;
  }
}

.privacy-policy__title {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 800px) {
  .privacy-policy__title {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}

.privacy-policy__text {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 800px) {
  .privacy-policy__text {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}

.privacy-policy__date {
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  .privacy-policy__date {
    margin-top: 26px;
  }
}

.privacy-policy__enactment {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 800px) {
  .privacy-policy__enactment {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}

.privacy-policy__revision {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 800px) {
  .privacy-policy__revision {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}

.privacy-policy__notes {
  margin-top: 60px;
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 800px) {
  .privacy-policy__notes {
    margin-top: 52px;
    font-size: 14px;
    line-height: 1.8571428571;
  }
}
.privacy-policy__notes .privacy-policy__icon {
  color: #a80f0f;
  display: inline-block;
  margin-right: 3px;
}

.privacy-policy__en {
  display: none;
}

.profile__container {
  max-width: 950px;
  width: 100%;
  padding: 138px 50px 100px;
}
@media screen and (max-width: 800px) {
  .profile__container {
    margin-top: 8px;
    padding: 0px 40px 50px;
  }
}
@media screen and (max-width: 600px) {
  .profile__container {
    padding: 0px 27px 33px;
  }
}

.profile__introduction {
  margin-top: 16px;
}
@media screen and (max-width: 800px) {
  .profile__introduction {
    margin-top: 18px;
  }
}

.profile__title {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 800px) {
  .profile__title {
    font-size: 14px;
    line-height: 1.8571428571;
    letter-spacing: 0.1px;
  }
}

.profile__text {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 800px) {
  .profile__text {
    font-size: 14px;
    line-height: 1.8571428571;
    letter-spacing: 0.1px;
  }
}

.profile__items {
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  .profile__items {
    margin-top: 26px;
  }
}

.profile__trademark-registration {
  margin-top: 109px;
  max-width: 375px;
  max-height: 532px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .profile__trademark-registration {
    margin-top: 48px;
  }
}
.profile__trademark-registration img {
  aspect-ratio: 375/532;
  max-width: 375px;
  max-height: 532px;
  width: 100%;
  height: 100%;
}

.profile__en {
  display: none;
}

/* 制作実績の詳細ページで使用 */
.works-article__the-content {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .works-article__the-content {
    position: static;
    margin-top: 10px;
  }
}

.works-article__the-container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: auto;
  max-width: 500px;
  width: 100%;
  padding: 14px;
  background-color: rgba(48, 48, 48, .8);
}
@media screen and (max-width: 800px) {
  .works-article__the-container {
    width: 100% !important;
    height: auto !important;
    position: static;
    max-width: none;
    padding: 0px 30px;
    background-color: transparent;
  }
}
@media screen and (max-width: 600px) {
  .works-article__the-container {
    padding: 0px 20px;
  }
}

.works-article__the-container--dummy {
  z-index: -100;
}

.works-article__content {
  position: relative;
  padding-bottom: 27px;
}
@media screen and (max-width: 800px) {
  .works-article__content {
    position: static;
    padding-bottom: 0;
  }
}

.works-article__language {
  font-size: 24px;
  line-height: 1;
  color: #fff;
  width: 30px;
  margin-left: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .works-article__language {
    margin-left: 0;
    color: #9e9e9e;
    text-align: left;
  }
}
@media screen and (min-width: 801px) {
  .works-article__language:hover {
    color: #f2bd1d;
  }
}
@media screen and (prefers-color-scheme: dark) and (max-width: 800px) {
  .works-article__language {
    color: #f2f2f2;
  }
}

.works-article__main {
  margin-top: 8px;
  padding: 0 36px;
}
@media screen and (max-width: 800px) {
  .works-article__main {
    padding: 0;
  }
}

.works-article__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .works-article__title {
    font-size: 20px;
    color: #303030;
  }
}
@media screen and (prefers-color-scheme: dark) and (max-width: 800px) {
  .works-article__title {
    color: #fff;
  }
}

@media screen and (min-width: 801px) {
  .works-article__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 8px;
  }
}

.works-article__tag-icon {
  font-size: 12px;
  color: #fff;
}

.works-article__tag {
  margin-left: 5px;
  font-size: 12px;
  color: #fff;
}

.works-article__text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.5714285714;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .works-article__text {
    color: #303030;
  }
}
@media screen and (prefers-color-scheme: dark) and (max-width: 800px) {
  .works-article__text {
    color: #fff;
  }
}

.works-article__annotation {
  font-size: 14px;
  line-height: 1.5714285714;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .works-article__annotation {
    margin-top: 18px;
    color: #303030;
  }
}
@media screen and (prefers-color-scheme: dark) and (max-width: 800px) {
  .works-article__annotation {
    color: #fff;
  }
}

.works-article__link {
  margin-top: 24px;
}
.works-article__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.works-article__link-icon {
  font-size: 14px;
  line-height: 1.5714285714;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .works-article__link-icon {
    color: #303030;
  }
}
@media screen and (prefers-color-scheme: dark) and (max-width: 800px) {
  .works-article__link-icon {
    color: #fff;
  }
}

.works-article__link-text {
  margin-left: 8px;
  font-size: 14px;
  line-height: 1.5714285714;
  color: #f2bd1d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.works-article__link-text:hover {
  color: #cca01b;
}

.works-article__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.works-article__arrow .works-article__arrow-rotate {
  width: 27px;
  height: 27px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.works-article__arrow-hover {
  position: relative;
}
.works-article__arrow-hover:hover .works-article__arrow-rotate--hover {
  opacity: 1;
}

.works-article__arrow-rotate--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 800px) {
  .works-article__pictures {
    margin-top: 45px;
  }
}

.works-article__main-en {
  display: none;
}

.works-article__banner {
  margin-top: 20px;
}
.works-article__banner a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.works-article__banner img {
  max-width: 180px;
  width: auto;
}
/*# sourceMappingURL=styles.css.map */