@charset "UTF-8";
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* foundation > base
--------------------------------------------- */
body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  color: #171717;
  font-weight: 400;
}
body.js-no-scroll {
  overflow: hidden;
}

/* layout > inner
--------------------------------------------- */
/* object > project > outer
--------------------------------------------- */
.l-outer {
  max-width: 1440px;
  margin-inline: auto;
}

/* object > component > button
--------------------------------------------- */
/* リンクボタン01 */
.c-link-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (any-hover: hover) {
  .c-link-button:hover .circle .outer-circle {
    -webkit-transform: scale(0.79);
            transform: scale(0.79);
  }
  .c-link-button:hover.c-link-button--white .circle .outer-circle {
    -webkit-transform: scale(0.79);
            transform: scale(0.79);
    background-color: #171717;
  }
  .c-link-button:hover.c-link-button--white .circle::after {
    background: #FFF;
  }
  .c-link-button:hover.c-link-button--red .text {
    color: #A81A1A;
  }
  .c-link-button:hover.c-link-button--red .circle {
    border: 1px solid #A81A1A;
  }
  .c-link-button:hover.c-link-button--red .circle .outer-circle {
    -webkit-transform: scale(0.79);
            transform: scale(0.79);
    background-color: #A81A1A;
  }
  .c-link-button:hover.c-link-button--red .circle::after {
    background: #FFF;
  }
  .c-link-button:hover.c-link-button--green .text {
    color: #00483B;
  }
  .c-link-button:hover.c-link-button--green .outer-circle {
    background-color: #00483B;
  }
  .c-link-button:hover.c-link-button--green .circle::before {
    background-color: #FFF;
  }
  .c-link-button:hover.c-link-button--blue .text {
    color: #0C3A6F;
  }
  .c-link-button:hover.c-link-button--blue .circle {
    border: 1px solid #0C3A6F;
  }
  .c-link-button:hover.c-link-button--blue .circle .outer-circle {
    -webkit-transform: scale(0.79);
            transform: scale(0.79);
    background-color: #0C3A6F;
  }
  .c-link-button:hover.c-link-button--blue .circle::after {
    background: #FFF;
  }
}
.c-link-button .circle {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #171717;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-link-button .circle {
    width: 32px;
    height: 32px;
  }
}
.c-link-button .circle::before, .c-link-button .circle::after {
  content: "";
  position: absolute;
  display: inline-block;
}
.c-link-button .circle::before {
  content: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: #171717;
}
.c-link-button .circle::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-mask-image: url(../img/common/button-arrow-black.png);
          mask-image: url(../img/common/button-arrow-black.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #FFF;
  display: inline-block;
  width: 12px;
  height: 24px;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
@media screen and (max-width: 768px) {
  .c-link-button .circle::after {
    width: 8px;
    height: 16px;
  }
}
.c-link-button .circle .outer-circle {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #171717;
  -webkit-transition: background-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background-color 0.4s ease;
  transition: transform 0.4s ease, background-color 0.4s ease, -webkit-transform 0.4s ease;
}
.c-link-button .text {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.c-link-button.c-link-button--white .circle {
  border: 1px solid #FFF;
}
.c-link-button.c-link-button--white .circle::after {
  -webkit-mask-image: url(../img/common/button-arrow-red.png);
          mask-image: url(../img/common/button-arrow-red.png);
  background: #A81A1A;
}
.c-link-button.c-link-button--white .circle .outer-circle {
  background-color: #FFF;
}
.c-link-button.c-link-button--white .text {
  color: #FFF;
}
.c-link-button.c-link-button--red .text {
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.c-link-button.c-link-button--green .circle {
  border: 1px solid #00483B;
}
.c-link-button.c-link-button--green .text {
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.c-link-button.c-link-button--blue .text {
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

/* リンクボタン02 */
.c-link-button02 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 17px;
     -moz-column-gap: 17px;
          column-gap: 17px;
  max-width: 240px;
  width: 100%;
  padding: 15px 16px 14px 10px;
  border-radius: 96px;
  border: 2px solid #A81A1A;
  background-color: transparent;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
  overflow: hidden;
  position: relative;
}
@media (any-hover: hover) {
  .c-link-button02:hover {
    background-color: #A81A1A;
  }
  .c-link-button02:hover .bg {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .c-link-button02:hover .text {
    color: #FFF;
  }
  .c-link-button02:hover .circle::before {
    background-color: #FFF;
  }
  .c-link-button02:hover .circle::after {
    background: #A81A1A;
  }
  .c-link-button02:hover.c-link-button02--skelton .text {
    color: #A81A1A;
  }
  .c-link-button02:hover.c-link-button02--skelton .circle::before {
    background-color: #A81A1A;
  }
  .c-link-button02:hover.c-link-button02--skelton .circle::after {
    background: #FFF;
  }
  .c-link-button02:hover.c-link-button02--white {
    background-color: #A81A1A;
    border: 2px solid #FFF;
  }
  .c-link-button02:hover.c-link-button02--white .text {
    color: #FFF;
  }
  .c-link-button02:hover.c-link-button02--white .circle::before {
    background-color: #FFF;
  }
  .c-link-button02:hover.c-link-button02--white .circle::after {
    background: #A81A1A;
  }
  .c-link-button02:hover.c-link-button02--red .text {
    color: #A81A1A;
  }
  .c-link-button02:hover.c-link-button02--red .circle::before {
    background-color: #A81A1A;
  }
  .c-link-button02:hover.c-link-button02--red .circle::after {
    background: #FFF;
  }
  .c-link-button02:hover.c-link-button--green .text {
    color: #FFF;
  }
  .c-link-button02:hover.c-link-button--green .circle::before {
    background-color: #FFF;
  }
  .c-link-button02:hover.c-link-button--green .circle::after {
    background: #00483B;
  }
  .c-link-button02:hover.c-link-button--interview .text {
    color: #A81A1A;
  }
  .c-link-button02:hover.c-link-button--interview .circle::before {
    background-color: #A81A1A;
  }
  .c-link-button02:hover.c-link-button--interview .circle::after {
    background: #FFF;
  }
}
.c-link-button02 .bg {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 101%;
  height: 100%;
  border-radius: 96px;
  background-color: #A81A1A;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 1;
}
.c-link-button02 .circle {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.c-link-button02 .circle::before, .c-link-button02 .circle::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.c-link-button02 .circle::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #A81A1A;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.c-link-button02 .circle::after {
  -webkit-mask-image: url(../img/common/button-arrow-red.png);
          mask-image: url(../img/common/button-arrow-red.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center center;
          mask-position: center center;
  width: 6px;
  height: 12px;
  top: 50%;
  left: 50%;
  background: #FFF;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.c-link-button02 .text {
  color: #A81A1A;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
}
.c-link-button02.c-link-button02--white {
  background-color: #FFF;
}
.c-link-button02.c-link-button02--white .bg {
  background-color: #A81A1A;
}
.c-link-button02.c-link-button02--white .circle::before {
  background-color: #A81A1A;
}
.c-link-button02.c-link-button02--white .circle::after {
  -webkit-mask-image: url(../img/common/button-arrow-black.png);
          mask-image: url(../img/common/button-arrow-black.png);
  background: #FFF;
}
.c-link-button02.c-link-button02--white .text {
  color: #A81A1A;
}
.c-link-button02.c-link-button02--red {
  background-color: #A81A1A;
  border: 2px solid #A81A1A;
}
.c-link-button02.c-link-button02--red .bg {
  background-color: #FFF;
}
.c-link-button02.c-link-button02--red .text {
  color: #FFF;
}
.c-link-button02.c-link-button02--red .circle::before {
  background-color: #FFF;
}
.c-link-button02.c-link-button02--red .circle::after {
  background: #A81A1A;
}
.c-link-button02.c-link-button02--skelton {
  background-color: transparent;
  border: 2px solid #FFF;
}
.c-link-button02.c-link-button02--skelton .text {
  color: #FFF;
}
.c-link-button02.c-link-button02--skelton .bg {
  background-color: #FFF;
}
.c-link-button02.c-link-button02--skelton .circle::before {
  background-color: #FFF;
}
.c-link-button02.c-link-button02--skelton .circle::after {
  -webkit-mask-image: url(../img/common/button-arrow-red.png);
          mask-image: url(../img/common/button-arrow-red.png);
  background: #A81A1A;
}
.c-link-button02.c-link-button02--msg {
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  background-color: transparent;
  border: 2px solid #FFF;
}
.c-link-button02.c-link-button02--msg .bg {
  background-color: #FFF;
}
.c-link-button02.c-link-button02--msg .text {
  color: #FFF;
}
.c-link-button02.c-link-button02--msg .circle::before {
  background-color: #FFF;
}
.c-link-button02.c-link-button02--msg .circle::after {
  background: #A81A1A;
}
.c-link-button02.c-link-button02--recruit {
  -webkit-column-gap: 65px;
     -moz-column-gap: 65px;
          column-gap: 65px;
}
.c-link-button02.c-link-button02--thanks {
  max-width: 330px;
  -webkit-column-gap: 57px;
     -moz-column-gap: 57px;
          column-gap: 57px;
  padding: 19px 24px 19px 10px;
}
@media screen and (max-width: 768px) {
  .c-link-button02.c-link-button02--thanks {
    max-width: 326px;
    -webkit-column-gap: 68px;
       -moz-column-gap: 68px;
            column-gap: 68px;
    padding: 16px 17px 16px 10px;
  }
}
.c-link-button02.c-link-button02--thanks .text {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-link-button02.c-link-button02--thanks .text {
    font-size: 18px;
    line-height: 1.5;
  }
}
.c-link-button02.c-link-button02--thanks .circle {
  width: 32px;
  height: 32px;
}
.c-link-button02.c-link-button02--thanks .circle::after {
  width: 8px;
  height: 16px;
}
.c-link-button02.c-link-button--interview {
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
  padding: 15px 16px 14px 10px;
  background-color: transparent;
  border: 2px solid #FFF;
}
.c-link-button02.c-link-button--interview .bg {
  background-color: #FFF;
}
.c-link-button02.c-link-button--interview .text {
  color: #FFF;
}
.c-link-button02.c-link-button--interview .circle::before {
  background-color: #FFF;
}
.c-link-button02.c-link-button--interview .circle::after {
  background: #A81A1A;
}
.c-link-button02.c-link-button--green {
  background-color: transparent;
  max-width: 280px;
  border: 2px solid #00483B;
  padding: 15px 16px 15px 18px;
}
.c-link-button02.c-link-button--green .text {
  color: #00483B;
}
.c-link-button02.c-link-button--green .bg {
  background-color: #00483B;
}
.c-link-button02.c-link-button--green .circle::before {
  background-color: #00483B;
}
.c-link-button02.c-link-button--green .circle::after {
  -webkit-mask-image: url(../img/common/button-arrow-green.png);
          mask-image: url(../img/common/button-arrow-green.png);
  background: #FFF;
}
.c-link-button02.c-link-button02--top-news {
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media screen and (max-width: 768px) {
  .c-link-button02.c-link-button02--top-news {
    -webkit-column-gap: 65px;
       -moz-column-gap: 65px;
            column-gap: 65px;
  }
}

/* リンクボタン03:矢印前 */
.c-link-button03 {
  display: inline-block;
  max-width: 320px;
  width: 100%;
  text-align: center;
  padding: 16px 10px 16px;
  border-radius: 40px;
  border: 1px solid #A81A1A;
  overflow: hidden;
  position: relative;
}
@media (any-hover: hover) {
  .c-link-button03:hover::before {
    background-color: #FFF;
  }
  .c-link-button03:hover::after {
    background: #A81A1A;
  }
  .c-link-button03:hover .text {
    color: #FFF;
  }
  .c-link-button03:hover .bg {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c-link-button03.--sustainability {
  padding: 16px 10px 16px 40px;
}
.c-link-button03 .text {
  color: #A81A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2222222222;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
}
.c-link-button03 .bg {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background-color: #A81A1A;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.c-link-button03::before, .c-link-button03::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  z-index: 2;
}
.c-link-button03::before {
  left: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #A81A1A;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.c-link-button03::after {
  width: 6px;
  height: 12px;
  left: 28px;
  -webkit-mask-image: url(../img/common/left-arrow-white.png);
          mask-image: url(../img/common/left-arrow-white.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #FFF;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}

/* 送信ボタン */
.c-contact-button__wrap {
  display: inline-block;
  max-width: 330px;
  width: 100%;
  height: 72px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-contact-button__wrap {
    height: 64px;
  }
}
@media (any-hover: hover) {
  .c-contact-button__wrap:hover::before {
    background-color: #FFF;
  }
  .c-contact-button__wrap:hover::after {
    background: #A81A1A;
  }
  .c-contact-button__wrap:hover .c-contact-button {
    color: #FFF;
  }
  .c-contact-button__wrap:hover .c-contact-button__bg {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c-contact-button__wrap::before, .c-contact-button__wrap::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.c-contact-button__wrap::before {
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #A81A1A;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media screen and (max-width: 768px) {
  .c-contact-button__wrap::before {
    right: 17px;
  }
}
.c-contact-button__wrap::after {
  width: 8px;
  height: 16px;
  right: 35px;
  -webkit-mask-image: url(../img/common/button-arrow-black.png);
          mask-image: url(../img/common/button-arrow-black.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #FFF;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
@media screen and (max-width: 768px) {
  .c-contact-button__wrap::after {
    right: 29px;
  }
}

.c-contact-button__bg {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #A81A1A;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 1;
}

.c-contact-button {
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid #A81A1A;
  background-color: transparent;
  border-radius: 50px;
  color: #A81A1A;
  text-align: center;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  overflow: hidden;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-contact-button {
    font-size: 18px;
    border: 2px solid #A81A1A;
  }
}

/* object > component > heading
--------------------------------------------- */
.c-section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media screen and (max-width: 768px) {
  .c-section-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 1px;
  }
}
.c-section-heading .en {
  display: inline-block;
  font-family: "IBM Plex Sans", sans-serif;
  color: #A81A1A;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -1.6px;
}
@media screen and (max-width: 768px) {
  .c-section-heading .en {
    font-size: 56px;
    letter-spacing: -1.12px;
  }
}
.c-section-heading .jp {
  display: inline-block;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  padding-left: 20px;
  padding-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-section-heading .jp {
    font-size: 20px;
    padding-bottom: 0;
  }
}
.c-section-heading .jp::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #A81A1A;
}
@media screen and (max-width: 768px) {
  .c-section-heading .jp::before {
    width: 8px;
    height: 8px;
  }
}
.c-section-heading.c-section-heading--white .en {
  color: #FFF;
}
.c-section-heading.c-section-heading--white .jp {
  color: #FFF;
}
.c-section-heading.c-section-heading--white .jp::before {
  background-color: #FFF;
}

/* object > component > button
--------------------------------------------- */
.c-scroll {
  position: absolute;
  padding: 40px 0 0 11px;
  color: #FFF;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.88px;
  line-height: 1.4166666667;
}
.c-scroll::before, .c-scroll::after {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: #FFF;
  width: 1px;
}
.c-scroll::before {
  top: 0;
  height: 30px;
  -webkit-animation: scrollGrowShrink 2s ease-in-out 0s infinite;
          animation: scrollGrowShrink 2s ease-in-out 0s infinite;
}
.c-scroll::after {
  bottom: 5px;
  height: 12px;
  -webkit-animation: scrollGrowShrink 2s ease-in-out 1s infinite;
          animation: scrollGrowShrink 2s ease-in-out 1s infinite;
}

@-webkit-keyframes scrollGrowShrink {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  30% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  31% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  60% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes scrollGrowShrink {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  30% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  31% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  60% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
/* object > project > breadcrumb
--------------------------------------------- */
.p-breadcrumb {
  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;
}
.p-breadcrumb a,
.p-breadcrumb span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8461538462;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb a,
  .p-breadcrumb span {
    font-size: 11px;
  }
}
.p-breadcrumb a {
  color: #FFF;
}
.p-breadcrumb a span {
  color: inherit;
}
.p-breadcrumb span {
  color: #FFF;
}
.p-breadcrumb li:not(:first-of-type)::before {
  content: "";
  background-image: url(../img/common/breadcrumb-arrow-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  margin: 0 4px;
  width: 5px;
  height: 10px;
  position: relative;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

/* object > project > cta
--------------------------------------------- */
.p-cta {
  padding: 119px 0 105px;
  background-color: #171717;
  background-image: url(../img/common/cta-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-cta {
    padding: 56px 0 56px;
    background-image: url(../img/common/cta-bg-sp.webp);
  }
}

.p-cta__inner {
  max-width: 1111px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-cta__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 61px;
     -moz-column-gap: 61px;
          column-gap: 61px;
}
@media screen and (max-width: 1240px) {
  .p-cta__links {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media screen and (max-width: 900px) {
  .p-cta__links {
    grid-template-columns: 1fr;
    row-gap: 24px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.p-cta__link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-cta__link:hover .p-cta__link-inner::before {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-cta__link.p-cta__link--recruit .p-cta__link-inner::before {
  background-image: url(../img/common/cta-recruit-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-cta__link.p-cta__link--recruit .p-cta__link-inner::before {
    background-image: url(../img/common/cta-recruit-bg-sp.webp);
  }
}
.p-cta__link.p-cta__link--contact .p-cta__link-inner::before {
  background-image: url(../img/common/cta-contact-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-cta__link.p-cta__link--contact .p-cta__link-inner::before {
    background-image: url(../img/common/cta-contact-bg-sp.webp);
  }
}

.p-cta__link-inner {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  padding: 56px 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-cta__link-inner {
    padding: 36px 10px;
  }
}
.p-cta__link-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-cta__bg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cta__link-title {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-cta__link-title {
    gap: 15.6px;
  }
}
.p-cta__link-title .en {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.8px;
}
@media screen and (max-width: 768px) {
  .p-cta__link-title .en {
    font-size: 26px;
    letter-spacing: -0.52px;
  }
}
.p-cta__link-title .jp {
  display: inline-block;
  padding-left: 20px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-cta__link-title .jp {
    padding-left: 13px;
    font-size: 15.6px;
  }
}
.p-cta__link-title .jp::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .p-cta__link-title .jp::before {
    top: 4px;
    width: 8px;
    height: 8px;
  }
}
.p-cta__link-title.p-cta__link-title--recruit {
  color: #FFF;
}
.p-cta__link-title.p-cta__link-title--contact {
  color: #A81A1A;
}
.p-cta__link-title.p-cta__link-title--contact .jp::before {
  background-color: #A81A1A;
}

/* object > project > drawer
--------------------------------------------- */
.p-drawer {
  display: none;
}
@media screen and (max-width: 1040px) {
  .p-drawer {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background-color: #A81A1A;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
}
@media screen and (max-width: 1040px) and (max-width: 768px) {
  .p-drawer {
    top: 64px;
    height: calc(100% - 64px);
  }
}
@media screen and (max-width: 1040px) {
  .p-drawer.is-open {
    opacity: 1;
    visibility: visible;
  }
}

.p-drawer__inner {
  height: 100%;
  padding: 24px 25px 0;
}

.p-drawer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.p-drawer__nav-link {
  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-bottom: 16px;
  padding-left: 24px;
  border-bottom: 1px solid #FFF;
}
.p-drawer__nav-link .text {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.p-drawer__nav-link .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
}
.p-drawer__nav-link .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #FFF;
}
.p-drawer__nav-link .icon::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 6px;
  height: 12px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../img/common/button-arrow-black.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-drawer__btn-wrap {
  margin-top: 40px;
  text-align: center;
}

.p-drawer__button {
  display: inline-block;
  width: 100%;
  max-width: 325px;
  background-color: #FFF;
  color: #A81A1A;
  border-radius: 96px;
  padding: 15px 10px 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* object > project > form
--------------------------------------------- */
.p-form {
  /* ラジオボタン */
  /* 同意するチェックボックス */
}
.p-form input[type=text],
.p-form input[type=tel],
.p-form input[type=email],
.p-form select,
.p-form textarea {
  background-color: #FFF;
  border: 1px solid #AFAFAF;
  padding: 10px 16px;
  width: 100%;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .p-form input[type=text],
  .p-form input[type=tel],
  .p-form input[type=email],
  .p-form select,
  .p-form textarea {
    padding: 10px 7px;
  }
}
.p-form input[type=text],
.p-form input[type=tel],
.p-form input[type=email],
.p-form select {
  height: 64px;
}
@media screen and (max-width: 768px) {
  .p-form input[type=text],
  .p-form input[type=tel],
  .p-form input[type=email],
  .p-form select {
    height: 56px;
  }
}
.p-form input[type=text]::-webkit-input-placeholder, .p-form input[type=tel]::-webkit-input-placeholder, .p-form input[type=email]::-webkit-input-placeholder, .p-form select::-webkit-input-placeholder, .p-form textarea::-webkit-input-placeholder {
  color: #C0C0C0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.p-form input[type=text]::-moz-placeholder, .p-form input[type=tel]::-moz-placeholder, .p-form input[type=email]::-moz-placeholder, .p-form select::-moz-placeholder, .p-form textarea::-moz-placeholder {
  color: #C0C0C0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.p-form input[type=text]:-ms-input-placeholder, .p-form input[type=tel]:-ms-input-placeholder, .p-form input[type=email]:-ms-input-placeholder, .p-form select:-ms-input-placeholder, .p-form textarea:-ms-input-placeholder {
  color: #C0C0C0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.p-form input[type=text]::-ms-input-placeholder, .p-form input[type=tel]::-ms-input-placeholder, .p-form input[type=email]::-ms-input-placeholder, .p-form select::-ms-input-placeholder, .p-form textarea::-ms-input-placeholder {
  color: #C0C0C0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.p-form input[type=text]::placeholder,
.p-form input[type=tel]::placeholder,
.p-form input[type=email]::placeholder,
.p-form select::placeholder,
.p-form textarea::placeholder {
  color: #C0C0C0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.p-form textarea {
  height: 250px;
}
@media screen and (max-width: 768px) {
  .p-form textarea {
    height: 248px;
  }
}
.p-form select {
  cursor: pointer;
}
.p-form .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.p-form .wpcf7-list-item {
  margin: 0;
}
.p-form .wpcf7-list-item label {
  cursor: pointer;
}
.p-form input[type=radio] {
  position: absolute;
  opacity: 0;
}
.p-form input[type=radio] + span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 46px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-form input[type=radio] + span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 40px;
  }
}
.p-form input[type=radio] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #171717;
}
@media screen and (max-width: 768px) {
  .p-form input[type=radio] + span::before {
    width: 24px;
    height: 24px;
  }
}
.p-form input[type=radio]:checked + span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #A81A1A;
}
@media screen and (max-width: 768px) {
  .p-form input[type=radio]:checked + span::after {
    width: 12.8px;
    height: 12.8px;
    left: 6px;
  }
}
.p-form input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.p-form input[type=checkbox] + span {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  padding-left: 42px;
  position: relative;
}
.p-form input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 26px;
  height: 26px;
  background-color: #FFF;
  border: 2px solid #171717;
}
.p-form input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  display: inline-block;
  width: 16px;
  height: 8px;
  border-bottom: 2px solid #A81A1A;
  border-left: 2px solid #A81A1A;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ドロップダウンメニュー */
.p-form__select-wrap {
  position: relative;
}
.p-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  background-image: url(../img/contact/select-triangle.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  .p-form__select-wrap::after {
    right: 8px;
  }
}
.p-form__select-wrap:has(.wpcf7-not-valid-tip)::after {
  top: 37%;
}

/* ファイルアップロード */
.p-form__file-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
}
.p-form__file-wrap label {
  cursor: pointer;
  display: inline-block;
  color: #A81A1A;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 20px 16px;
  border-radius: 4px;
  border: 1px solid #A81A1A;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .p-form__file-wrap label {
    padding: 17.5px 16px;
    line-height: 1.2;
  }
}
.p-form__file-wrap input[type=file] {
  position: absolute;
  opacity: 0;
}

.p-form__file-notice {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.p-form__agree {
  margin-top: 11px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1333333333;
}

.p-form__agree-link {
  color: #0047FF;
  text-decoration: underline;
}

.p-form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .p-form__items {
    gap: 24px;
  }
}

.p-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 900px) {
  .p-form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-form__label-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 258px;
          flex: 0 0 258px;
  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;
}
@media screen and (max-width: 900px) {
  .p-form__label-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    gap: 16px;
  }
}
.p-form__label-wrap.p-form__label-wrap--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
@media screen and (max-width: 900px) {
  .p-form__label-wrap.p-form__label-wrap--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
}

.p-form__control-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 900px) {
  .p-form__control-wrap {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
  }
}

.p-form__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4375;
  position: relative;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.p-form__tag {
  background-color: #A81A1A;
  color: #FFF;
  border-radius: 2px;
  width: 50px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding-top: 2px;
}
.p-form__tag.p-form__tag--optional {
  border: 1px solid #171717;
  color: #171717;
  background-color: #FFF;
}

.p-form__btn-wrap {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-form__btn-wrap {
    margin-top: 30px;
  }
}

.wpcf7-spinner {
  display: none;
}

/* object > project > fv
--------------------------------------------- */
.p-fv {
  padding: 23px 0 57px;
  background-image: url(../img/top/fv-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-fv {
    padding: 24px 0 39px;
  }
}

.p-fv__inner {
  max-width: 1329px;
  margin-inline: auto;
  padding: 0 25px;
  position: relative;
}

.p-fv__scroll {
  left: 15px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-fv__scroll {
    display: none;
  }
}

.p-fv__top-text {
  font-family: "IBM Plex Sans", sans-serif;
  color: #FFF;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 2.16px;
  line-height: 1.3055555556;
}
@media screen and (max-width: 768px) {
  .p-fv__top-text {
    text-align: center;
    font-size: 36px;
    letter-spacing: 1.08px;
    line-height: 1.3055555556;
    white-space: nowrap;
  }
}

.js-top-text01 {
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (max-width: 500px) {
  .js-top-text01 {
    text-align: left !important;
  }
}
.js-top-text01.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.js-top-text02 {
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (max-width: 500px) {
  .js-top-text02 {
    text-align: right !important;
  }
}
.js-top-text02.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.p-fv__bottom-text {
  margin-top: 16px;
  text-align: right;
  font-family: "IBM Plex Sans", sans-serif;
  color: #FFF;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 2.16px;
  line-height: 1.3055555556;
}
@media screen and (max-width: 768px) {
  .p-fv__bottom-text {
    margin-top: 33px;
    text-align: center;
    font-size: 36px;
    letter-spacing: 1.08px;
    line-height: 1.3055555556;
    white-space: nowrap;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__bottom-text {
    margin-top: 11px;
    text-align: initial;
  }
}

.p-fv__box {
  position: relative;
}

.p-fv__copy {
  position: absolute;
  bottom: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FFF;
  color: #A81A1A;
  padding: 3px 0 2px 15px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.296875;
  z-index: 3;
}
@media screen and (max-width: 900px) {
  .p-fv__copy {
    font-size: 61px;
  }
}
@media screen and (max-width: 768px) {
  .p-fv__copy {
    font-size: 42px;
    padding: 3px 0 3px 5px;
    letter-spacing: 1.12px;
    line-height: 1.2857142857;
    top: 50%;
    left: 50%;
    width: 90%;
    bottom: initial;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 600px) {
  .p-fv__copy {
    font-size: 28px;
    width: calc(100% - 8px);
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    letter-spacing: 0.1px;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__copy {
    display: none;
  }
}
.p-fv__copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: -34px;
  display: block;
  width: 35px;
  height: 100%;
  background-color: #FFF;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
}
@media screen and (max-width: 768px) {
  .p-fv__copy::after {
    width: 8px;
    right: -7px;
  }
}
@media screen and (max-width: 768px) {
  .p-fv__copy .second {
    display: inline-block;
    margin-left: -4px;
  }
}

.p-fv__sp-copy {
  display: none;
}
@media screen and (max-width: 500px) {
  .p-fv__sp-copy {
    display: block;
    position: absolute;
    top: 310px;
    left: 49%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    z-index: 2;
  }
}
.p-fv__sp-copy .bg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv__sp-copy-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #A81A1A;
  font-size: 32px;
  font-weight: 700;
}
.p-fv__sp-copy-text .first {
  letter-spacing: 1.278px;
}
.p-fv__sp-copy-text .second {
  letter-spacing: -11.5px;
}
.p-fv__sp-copy-text .third {
  letter-spacing: -1.597px;
}

.p-fv__photos {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .p-fv__photos {
    margin-top: 33px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__photos {
    margin-top: 11px;
  }
}

.p-fv__photo-wrap {
  display: contents;
}
@media screen and (max-width: 500px) {
  .p-fv__photo-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 13px;
  }
  .p-fv__photo-wrap.--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-fv__sp-text {
  display: none;
}
@media screen and (max-width: 500px) {
  .p-fv__sp-text {
    display: block;
    color: #FFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3055555556;
  }
  .p-fv__sp-text.--01 {
    margin-top: 5px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-transform: scale(-1) translateX(10px);
            transform: scale(-1) translateX(10px);
    text-align: right;
  }
  .p-fv__sp-text.--02 {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-align: right;
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}

.p-fv__photo {
  position: relative;
}
@media screen and (max-width: 500px) {
  .p-fv__photo {
    width: 300px;
  }
  .p-fv__photo.js-top-photo01 {
    margin-left: auto;
    margin-right: -25px;
  }
  .p-fv__photo.js-top-photo02 {
    margin-right: auto;
    margin-left: -25px;
  }
}
.p-fv__photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv__info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 32, 32, 0.95);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.p-fv__info.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-fv__info-textarea {
  padding: 54px 0 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.p-fv__info-en {
  color: #FFF;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: -0.8px;
}

.p-fv__info-jp {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33333;
}

/* object > project > page fv
--------------------------------------------- */
.p-page-fv {
  height: 364px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-page-fv {
    height: 250px;
  }
}
.p-page-fv.p-page-fv--about {
  background-image: url(../img/about/about-fv.webp);
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--about {
    background-image: url(../img/about/about-fv-sp.webp);
  }
}
.p-page-fv.p-page-fv--company {
  background-image: url(../img/company/fv-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--company {
    background-image: url(../img/company/fv-bg-sp.webp);
  }
}
.p-page-fv.p-page-fv--service {
  background-image: url(../img/service/fv-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--service {
    background-image: url(../img/service/fv-bg-sp.webp);
  }
}
.p-page-fv.p-page-fv--design {
  background-image: url(../img/design/fv-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--design {
    background-image: url(../img/design/fv-bg-sp.webp);
  }
  .p-page-fv.p-page-fv--design .p-page-fv__box {
    padding-top: 28px;
  }
  .p-page-fv.p-page-fv--design .p-page-fv__heading .jp {
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.4375;
  }
}
.p-page-fv.p-page-fv--info {
  background-image: url(../img/blog/news-fv-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--info {
    background-image: url(../img/blog/news-fv-bg-sp.webp);
  }
}
.p-page-fv.p-page-fv--press {
  background-image: url(../img/blog/news-fv-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--press {
    background-image: url(../img/blog/news-fv-bg-sp.webp);
  }
  .p-page-fv.p-page-fv--press .p-page-fv__heading .en {
    font-size: 51px;
  }
}
.p-page-fv.p-page-fv--ir {
  background-image: url(../img/blog/ir-fv-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--ir {
    background-image: url(../img/blog/ir-fv-bg-sp.webp);
  }
  .p-page-fv.p-page-fv--ir .p-page-fv__box {
    padding-top: 79px;
  }
}
.p-page-fv.p-page-fv--sustainability {
  background-image: url(../img/blog/sustainability-fv-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--sustainability {
    background-image: url(../img/blog/sustainability-fv-bg-sp.webp);
  }
  .p-page-fv.p-page-fv--sustainability .p-page-fv__box {
    padding-top: 79px;
  }
  .p-page-fv.p-page-fv--sustainability .p-page-fv__heading .en {
    font-size: 51px;
  }
  .p-page-fv.p-page-fv--sustainability .p-page-fv__heading .jp {
    margin-top: 8px;
  }
}
.p-page-fv.p-page-fv--page {
  background-image: url(../img/page/page-fv-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--page {
    background-image: url(../img/page/page-fv-bg-sp.webp);
  }
}
.p-page-fv.p-page-fv--message {
  background-image: url(../img/message/fv-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--message {
    background-image: url(../img/message/fv-bg-sp.webp);
  }
  .p-page-fv.p-page-fv--message .p-page-fv__box {
    padding-top: 80px;
  }
  .p-page-fv.p-page-fv--message .p-page-fv__heading .jp {
    margin-top: 8px;
  }
}
.p-page-fv.p-page-fv--interviews {
  background-image: url(../img/interview/fv-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--interviews {
    background-image: url(../img/interview/fv-bg-sp.webp);
  }
  .p-page-fv.p-page-fv--interviews .p-page-fv__box {
    padding-top: 79px;
  }
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--privacy .p-page-fv__box {
    padding-top: 79px;
  }
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--privacy .p-page-fv__heading .en {
    font-size: 51px;
    letter-spacing: -1.02px;
  }
}
@media screen and (max-width: 768px) {
  .p-page-fv.p-page-fv--privacy .p-page-fv__heading .jp {
    margin-top: 8px;
  }
}

.p-page-fv__inner {
  max-width: 1305px;
  height: 100%;
  margin-right: auto;
  padding-right: 25px;
  padding-left: 160px;
}
@media screen and (max-width: 768px) {
  .p-page-fv__inner {
    padding-left: 23px;
  }
}

.p-page-fv__box {
  padding-top: 82px;
}
@media screen and (max-width: 768px) {
  .p-page-fv__box.--entry-thanks {
    padding-top: 28px;
  }
}

.p-page-fv__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p-page-fv__heading .en {
  font-family: "IBM Plex Sans", sans-serif;
  color: #FFF;
  font-size: 80px;
  line-height: 1.3625;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-page-fv__heading .en {
    font-size: 56px;
    line-height: 1;
    letter-spacing: -1.12px;
  }
}
.p-page-fv__heading .jp {
  padding-left: 20px;
  font-size: 24px;
  color: #FFF;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page-fv__heading .jp {
    font-size: 20px;
    line-height: 1.2;
    padding-left: 16px;
  }
}
.p-page-fv__heading .jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .p-page-fv__heading .jp::before {
    width: 8px;
    height: 8px;
    top: 8px;
  }
}

/* object > project > header
--------------------------------------------- */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #FFF;
  padding: 0 24px 0 146px;
  z-index: 999;
}
@media screen and (max-width: 1240px) {
  .p-header {
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .p-header {
    height: 64px;
  }
}

.p-header__inner {
  height: 100%;
  max-width: 1270px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 64px;
          flex: 0 0 64px;
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
    width: 50px;
  }
}

.p-header__logo-link {
  display: block;
}
.p-header__logo-link img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-header__nav {
  height: 100%;
}
@media screen and (max-width: 1040px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__nav-item {
  height: 100%;
}
.p-header__nav-item.p-header__nav-item--contact {
  height: auto;
  margin-left: 24px;
}

.p-header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 12px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.p-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 100%;
  height: 4px;
  background-color: #A81A1A;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
  .p-header__nav-link:hover {
    color: #A81A1A;
  }
  .p-header__nav-link:hover::after {
    opacity: 1;
  }
}
.p-header__nav-link.p-header__nav-link--contact {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  padding: 14px 9px;
  border-radius: 8px;
  background-color: #A81A1A;
  width: 176px;
  border: 1.5px solid #A81A1A;
  text-align: center;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease;
  transition: background-color 0.4s ease, color 0.4s ease;
}
@media (any-hover: hover) {
  .p-header__nav-link.p-header__nav-link--contact:hover {
    background-color: #FFF;
    color: #A81A1A;
  }
}
.p-header__nav-link.p-header__nav-link--contact::after {
  content: none;
}

/* hamburger */
.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 1040px) {
  .p-header__hamburger {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3px;
  }
}
.p-header__hamburger.is-open .p-header__hamburger-line:nth-of-type(1) {
  top: 50%;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.p-header__hamburger.is-open .p-header__hamburger-line:nth-of-type(2) {
  top: 50%;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.p-header__hamburger-text {
  color: #A81A1A;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5384615385;
}

.p-header__hamburger-wrap {
  display: block;
  width: 36px;
  height: 13px;
  position: relative;
}

.p-header__hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #A81A1A;
  position: absolute;
  left: 0;
  -webkit-transition: top 0.4s ease, -webkit-transform 0.4s ease;
  transition: top 0.4s ease, -webkit-transform 0.4s ease;
  transition: top 0.4s ease, transform 0.4s ease;
  transition: top 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-header__hamburger-line:nth-of-type(1) {
  top: 0;
}
.p-header__hamburger-line:nth-of-type(2) {
  top: 100%;
}

/* object > project > footer
--------------------------------------------- */
.p-footer {
  padding: 63px 0 40px;
  background-color: #171717;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding: 39px 0 24px;
  }
}

.p-footer__inner {
  max-width: 1330px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-footer__top {
  padding: 0 0 41px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: auto auto;
  -webkit-column-gap: 171px;
     -moz-column-gap: 171px;
          column-gap: 171px;
}
@media screen and (max-width: 1240px) {
  .p-footer__top {
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
  }
}
@media (max-width: 1140px) {
  .p-footer__top {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media screen and (max-width: 1040px) {
  .p-footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 32px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-footer__top {
    row-gap: 24px;
    padding: 0 0 32px;
  }
}

.p-footer__info {
  display: contents;
}

.p-footer__logo {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 97px;
  padding-left: 26px;
}
@media screen and (max-width: 1040px) {
  .p-footer__logo {
    padding-left: 0;
    width: 65px;
    margin-inline: auto;
  }
}

.p-footer__logo-link {
  display: block;
}
.p-footer__logo-link img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer__company {
  grid-column: 1/3;
  grid-row: 2/3;
  margin-top: 6px;
}
@media screen and (max-width: 1040px) {
  .p-footer__company {
    display: none;
  }
}

.p-footer__company-name {
  color: #FFF;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.42px;
  line-height: 1.581855;
}

.p-footer__company-address {
  margin-top: 8px;
  color: #FFF;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 14px;
  letter-spacing: 0.42px;
  font-weight: 500;
}

.p-footer__nav {
  grid-column: 2/3;
  grid-row: 1/2;
}

.p-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 17px;
}
@media screen and (max-width: 1040px) {
  .p-footer__nav-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.p-footer__nav-item {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.p-footer__nav-item:has(.p-footer__sub-nav-list) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-item:has(.p-footer__sub-nav-list).--sp-none {
    gap: 0;
  }
}

.p-footer__nav-link {
  color: #FFF;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
@media screen and (max-width: 1040px) {
  .p-footer__nav-link {
    display: block;
    padding-bottom: 16px;
    padding-right: 48px;
    border-bottom: 1px solid #343434;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-link:hover {
    color: #A81A1A;
  }
}
.p-footer__corp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-footer__corp {
    display: block;
  }
}

.p-footer__corp-name {
  text-align: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.p-footer__corp-address {
  text-align: center;
  margin-top: 6px;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-footer__nav-link,
  .p-footer__sub-nav-link {
    position: relative;
  }
  .p-footer__nav-link::before, .p-footer__nav-link::after,
  .p-footer__sub-nav-link::before,
  .p-footer__sub-nav-link::after {
    content: "";
    position: absolute;
    display: inline-block;
  }
  .p-footer__nav-link::before,
  .p-footer__sub-nav-link::before {
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #FFF;
  }
  .p-footer__nav-link::after,
  .p-footer__sub-nav-link::after {
    top: 6px;
    right: 9px;
    background-image: url(../img/common/button-arrow-black.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 6px;
    height: 12px;
  }
}

.p-footer__sub-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1040px) {
  .p-footer__sub-nav-list {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-footer__sub-nav-list.--sp-none {
    gap: 0;
  }
}

.p-footer__sub-nav-link {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 14px;
  color: #AFAFAF;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1040px) {
  .p-footer__sub-nav-link {
    display: block;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 16px;
    padding-right: 48px;
    border-bottom: 1px solid #343434;
  }
}
@media screen and (max-width: 768px) {
  .p-footer__sub-nav-link.--sp-none {
    display: none;
  }
}

.p-footer__middle {
  padding: 32px 0 39px;
  border-top: 1px solid #AFAFAF;
}
@media screen and (max-width: 768px) {
  .p-footer__middle {
    padding: 26px 0 24px;
  }
}

.p-footer__sns-title {
  color: #FFF;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-footer__sns-title {
    font-size: 24px;
    line-height: 1.5;
  }
}

.p-footer__sns-items {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 39px;
}
@media screen and (max-width: 768px) {
  .p-footer__sns-items {
    margin-top: 10px;
    gap: 14px;
    padding-left: 24px;
  }
}

.p-footer__sns-item-title {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-footer__sns-item-title {
    font-size: 20px;
    line-height: 1.5;
  }
}
.p-footer__sns-item-title.--agent {
  color: #A81A1A;
}
.p-footer__sns-item-title.--talent {
  color: #217036;
}

.p-footer__sns-list {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .p-footer__sns-list {
    margin-top: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .p-footer__sns-list.--sp-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}

.p-footer__sns-wrap {
  display: contents;
}
@media screen and (max-width: 768px) {
  .p-footer__sns-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}

.p-footer__sns-link {
  display: block;
}
.p-footer__sns-link.--youtube {
  position: relative;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.p-footer__sns-link .icon {
  width: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-footer__sns-link.p-footer__sns-link--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.p-footer__sns-link.p-footer__sns-link--icon .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
}

.p-footer__sns-icon-text {
  font-size: 16px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  color: #AFAFAF;
  font-weight: 500;
  line-height: 1.5;
}

.p-footer__bottom {
  padding: 24px 0 0;
  border-top: 1px solid #AFAFAF;
}
@media screen and (max-width: 768px) {
  .p-footer__bottom {
    padding: 32px 0 0;
  }
}

.p-footer__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-footer__bottom-inner {
    margin-top: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    gap: 16px;
  }
}

.p-footer__bottom-copyright {
  color: #AFAFAF;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5384615385;
}

.p-footer__bottom-link {
  color: #AFAFAF;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5384615385;
}

.p-footer__sp-info {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.p-footer__sp-info .corp-name {
  color: #FFF;
  font-size: 16px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-weight: 700;
}
.p-footer__sp-info .info-text {
  color: #FFF;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

/* object > project > tab
--------------------------------------------- */
.p-tab {
  border-radius: 170px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 12px 36px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 1240px) {
  .p-tab {
    margin: 0 25px;
    border-radius: 150px;
    width: initial;
    padding: 12px 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .p-tab::-webkit-scrollbar {
    display: none;
  }
}

.p-tab__list {
  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;
  gap: 8px;
}
@media screen and (max-width: 1240px) {
  .p-tab__list {
    width: 1116px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-tab__list {
    width: 612px;
    gap: 24px;
  }
}

.p-tab__link {
  display: block;
  color: #CCCCCC;
  background-color: #FFF;
  border-radius: 170px;
  padding: 6.5px 56px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.54px;
}
@media screen and (max-width: 768px) {
  .p-tab__link {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.96px;
    white-space: nowrap;
    padding: 0;
  }
}
.p-tab__link.is-current {
  background-color: #A81A1A;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .p-tab__link.is-current {
    background-color: transparent;
    color: #A81A1A;
  }
}

/* interview tab */
.p-tab02 {
  border-radius: 150px;
  background: #FFF;
  padding: 18.5px 16px;
  margin-inline: auto;
}
@media screen and (max-width: 900px) {
  .p-tab02 {
    padding: 12px 0;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .p-tab02::-webkit-scrollbar {
    display: none;
  }
}

.p-tab02__list {
  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;
  gap: 50px;
}
@media screen and (max-width: 900px) {
  .p-tab02__list {
    width: 830px;
    gap: 24px;
    margin-inline: auto;
  }
}

.p-tab02__link {
  display: block;
  color: #CCCCCC;
  background-color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.08px;
}
@media screen and (max-width: 900px) {
  .p-tab02__link {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.96px;
    white-space: nowrap;
  }
}
.p-tab02__link.is-current {
  color: #A81A1A;
}

/* object > project > news
--------------------------------------------- */
.p-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .p-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}
@media (any-hover: hover) {
  .p-news:hover .p-news__tag {
    background-color: #A81A1A;
    color: #FFF;
  }
}

.p-news__meta {
  display: contents;
}
@media screen and (max-width: 900px) {
  .p-news__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.p-top__news-date {
  color: #6A6A6A;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 768px) {
  .p-top__news-date {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.p-news__tag {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  margin-left: 52px;
  display: grid;
  place-items: center;
  max-width: 200px;
  width: 100%;
  background-color: #FFF;
  color: #A81A1A;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  border: 2px solid #A81A1A;
  border-radius: 112px;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease;
  transition: background-color 0.4s ease, color 0.4s ease;
}
@media screen and (max-width: 900px) {
  .p-news__tag {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    max-width: 160px;
    height: 24px;
    margin-left: 0;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.64px;
  }
}

.p-news__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: 40px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  .p-news__title {
    margin-left: 0;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    padding-right: 36px;
    position: relative;
  }
  .p-news__title::before, .p-news__title::after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
  }
  .p-news__title::before {
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #171717;
    border-radius: 50%;
  }
  .p-news__title::after {
    background-image: url(../img/common/button-arrow-black.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 6px;
    height: 12px;
    right: 8px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .p-news__title {
    line-height: 1.3333333333;
    font-size: 18px;
  }
}

/* object > project > page
--------------------------------------------- */
/* FV上余白 */
.p-page {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-page {
    padding-top: 64px;
  }
}

/* object > project > cta message
--------------------------------------------- */
.p-cta-msg {
  display: block;
  padding: 82px 0 81px;
  background-image: url(../img/common/cta-msg-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-cta-msg {
    padding: 40px 0 40px;
    background-image: url(../img/common/cta-msg-bg-sp.webp);
  }
}
.p-cta-msg.--recruit {
  padding: 133px 0 0;
}
@media screen and (max-width: 768px) {
  .p-cta-msg.--recruit {
    padding: 51px 0 0;
  }
}
.p-cta-msg.--recruit .p-cta-msg__inner {
  max-width: 1170px;
  padding: 0;
}

.p-cta-msg__inner {
  max-width: 1166px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-cta-msg__content {
  display: block;
  border-radius: 32px;
  padding: 64px 10px 44px 103px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-cta-msg__content {
    border-radius: 24px;
    padding: 50px 16px 21px 16px;
  }
}
.p-cta-msg__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 32px;
  background-image: url(../img/common/cta-msg-bg02.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 768px) {
  .p-cta-msg__content::before {
    background-image: url(../img/common/cta-msg-bg02-sp.webp);
  }
}
@media (any-hover: hover) {
  .p-cta-msg__content:hover::before {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.p-cta-msg__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-cta-msg__title {
    gap: 8.3px;
  }
}
.p-cta-msg__title .en {
  font-family: "IBM Plex Sans", sans-serif;
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.8px;
}
@media screen and (max-width: 768px) {
  .p-cta-msg__title .en {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
}
.p-cta-msg__title .jp {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-cta-msg__title .jp {
    font-size: 16px;
  }
}
.p-cta-msg__title .jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .p-cta-msg__title .jp::before {
    width: 8px;
    height: 8px;
    top: 4px;
  }
}

.p-cta-msg__btn-wrap {
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-cta-msg__btn-wrap {
    margin-top: 80px;
    text-align: center;
  }
}
@media (any-hover: hover) {
  .p-cta-msg__btn-wrap .c-link-button02--msg:hover {
    border: 2px solid #A81A1A;
    background-color: #FFF;
  }
  .p-cta-msg__btn-wrap .c-link-button02--msg:hover .text {
    color: #A81A1A;
  }
  .p-cta-msg__btn-wrap .c-link-button02--msg:hover .circle::before {
    background-color: #A81A1A;
  }
  .p-cta-msg__btn-wrap .c-link-button02--msg:hover .circle::after {
    background: #FFF;
  }
}

/* object > project > company
--------------------------------------------- */
.p-gallery__inner {
  overflow-x: hidden;
}

.p-gallery__photos .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  height: auto;
}
.p-gallery__photos .swiper-slide {
  width: 370px;
  height: 300px;
  aspect-ratio: 370/300;
}
@media screen and (max-width: 768px) {
  .p-gallery__photos .swiper-slide {
    width: 222px;
    height: 180px;
    aspect-ratio: 222/180;
  }
}
.p-gallery__photos .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-gallery__photo:nth-last-of-type(2) {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .p-gallery__photo:nth-last-of-type(2) {
    border-radius: 6.67px;
  }
}
.p-gallery__photo:nth-last-of-type(2) img {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .p-gallery__photo:nth-last-of-type(2) img {
    border-radius: 6.67px;
  }
}
.p-gallery__photo:nth-last-of-type(3) {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .p-gallery__photo:nth-last-of-type(3) {
    border-radius: 6.67px;
  }
}
.p-gallery__photo:nth-last-of-type(3) img {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .p-gallery__photo:nth-last-of-type(3) img {
    border-radius: 6.67px;
  }
}
.p-gallery__photo img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-gallery__photo img {
    border-radius: 6.67px;
  }
}

/* object > project > other member
--------------------------------------------- */
.p-o-member {
  background-image: url(../img/member/other-member-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 65px 0 68px;
}
@media screen and (max-width: 768px) {
  .p-o-member {
    background-image: url(../img/member/other-member-bg-sp.png);
  }
}

.p-o-member__inner {
  max-width: 1168px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-o-member__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-o-member__link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
  margin-bottom: 8px;
}
@media screen and (max-width: 900px) {
  .p-o-member__link {
    display: none;
  }
}

.p-o-member__items {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .p-o-member__items {
    margin: 40px auto 0;
  }
}

.p-o-member__item {
  position: relative;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
  .p-o-member__item:hover {
    opacity: 0.8;
  }
}

.p-o-member__sp-circle {
  display: none;
}
@media screen and (max-width: 900px) {
  .p-o-member__sp-circle {
    display: block;
    position: absolute;
    right: 0;
    bottom: 4px;
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: #FFF;
    border-radius: 50%;
  }
}
.p-o-member__sp-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  -webkit-mask-image: url(../img/member/member-arrow-right.webp);
          mask-image: url(../img/member/member-arrow-right.webp);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #A81A1A;
  width: 8px;
  height: 16px;
}

.p-o-member__item-thumbnail {
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-o-member__item-thumbnail .--pc {
    display: none;
  }
}
.p-o-member__item-thumbnail .--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-o-member__item-thumbnail .--sp {
    display: block;
  }
}
.p-o-member__item-thumbnail img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.p-o-member__item-thumbnail-photo {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.p-o-member__item-circle {
  /* デザイン変更 */
  display: none;
  position: absolute;
  right: 28px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
@media screen and (max-width: 1040px) {
  .p-o-member__item-circle {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 900px) {
  .p-o-member__item-circle {
    display: none;
  }
}
.p-o-member__item-circle::before, .p-o-member__item-circle::after {
  content: "";
  position: absolute;
  display: inline-block;
}
.p-o-member__item-circle::before {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFF;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.p-o-member__item-circle::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 24px;
  -webkit-mask-image: url(../img/common/button-arrow-red.png);
          mask-image: url(../img/common/button-arrow-red.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #A81A1A;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
@media screen and (max-width: 1040px) {
  .p-o-member__item-circle::after {
    width: 8px;
    height: 20px;
    background-size: contain;
  }
}

.p-o-member__item-body {
  margin-top: 16px;
}

.p-o-member__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.p-o-member__catch span {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FFF;
  color: #A81A1A;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3333;
  padding: 0 2px;
}
@media screen and (max-width: 1240px) {
  .p-o-member__catch span {
    font-size: 22px;
  }
}
@media screen and (max-width: 1040px) {
  .p-o-member__catch span {
    font-size: 19px;
  }
}

.p-o-member__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.p-o-member__position {
  margin-top: 10px;
  padding-left: 16px;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.0625;
  position: relative;
}
.p-o-member__position::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #FFF;
}

.p-o-member__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
}
.p-o-member__name .kanji {
  line-height: 1.5;
}
.p-o-member__name .kana {
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.375;
}

.p-o-member__slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.p-o-member__slider .swiper-slide {
  width: 340px !important;
}
@media screen and (max-width: 900px) {
  .p-o-member__slider .swiper-slide {
    width: 325px !important;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-o-member__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-o-member__btn-wrap {
  display: none;
}
@media screen and (max-width: 900px) {
  .p-o-member__btn-wrap {
    display: block;
    text-align: center;
    margin-top: 40px;
  }
}
.p-o-member__btn-wrap .c-link-button02 {
  max-width: 325px;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
  padding: 15px 24px 14px 10px;
}

/* object > project > entry cta
--------------------------------------------- */
.p-entry-cta {
  padding: 64px 0;
  background-color: #A81A1A;
}
@media screen and (max-width: 768px) {
  .p-entry-cta {
    padding: 40px 0;
  }
}

.p-entry-cta__inner {
  max-width: 1170px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-entry-cta__content {
  border-radius: 16px;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-entry-cta__content {
    padding: 24px 0 40px;
  }
}
@media (any-hover: hover) {
  .p-entry-cta__content:hover::before {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-entry-cta__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/recruit/recruit-cta-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 768px) {
  .p-entry-cta__content::before {
    background-image: url(../img/recruit/recruit-cta-bg-sp.webp);
  }
}

.p-entry-cta__heading {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-entry-cta__heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .p-entry-cta__heading .en {
    font-size: 56px;
    letter-spacing: -1.12px;
  }
}
@media screen and (max-width: 768px) {
  .p-entry-cta__heading .jp {
    margin-bottom: 16px;
  }
}

.p-entry-cta__textarea {
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-entry-cta__textarea {
    margin-top: 19px;
    padding: 0 12px;
  }
}

.p-entry-cta__text {
  text-align: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
}
@media screen and (max-width: 768px) {
  .p-entry-cta__text {
    font-size: 13.5px;
    line-height: 1.7142857143;
  }
}

.p-entry-cta__buttons {
  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;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-entry-cta__buttons {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.p-entry-cta__buttons .c-link-button02 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 330px;
          flex: 0 0 330px;
  max-width: 330px;
  width: 330px;
  padding: 22px 24px 22px 10px;
}
@media screen and (max-width: 768px) {
  .p-entry-cta__buttons .c-link-button02 {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    max-width: 260px;
    padding: 11px 16px 11px 10px;
  }
}
.p-entry-cta__buttons .c-link-button02.c-link-button02--recruit {
  -webkit-column-gap: 69px;
     -moz-column-gap: 69px;
          column-gap: 69px;
  border: 2px solid #FFF;
}
@media screen and (max-width: 768px) {
  .p-entry-cta__buttons .c-link-button02.c-link-button02--recruit {
    -webkit-column-gap: 54px;
       -moz-column-gap: 54px;
            column-gap: 54px;
  }
}
.p-entry-cta__buttons .c-link-button02.c-link-button02--entry {
  -webkit-column-gap: 19px;
     -moz-column-gap: 19px;
          column-gap: 19px;
  background-color: #A81A1A;
}
.p-entry-cta__buttons .c-link-button02.c-link-button02--entry .bg {
  background-color: #FFF;
}
.p-entry-cta__buttons .c-link-button02.c-link-button02--entry .text {
  color: #FFF;
}
.p-entry-cta__buttons .c-link-button02.c-link-button02--entry .circle::before {
  background-color: #FFF;
}
.p-entry-cta__buttons .c-link-button02.c-link-button02--entry .circle::after {
  background: #A81A1A;
}
@media screen and (max-width: 768px) {
  .p-entry-cta__buttons .c-link-button02.c-link-button02--entry {
    -webkit-column-gap: 9px;
       -moz-column-gap: 9px;
            column-gap: 9px;
  }
}
@media (any-hover: hover) {
  .p-entry-cta__buttons .c-link-button02.c-link-button02--entry:hover .text {
    color: #A81A1A;
  }
  .p-entry-cta__buttons .c-link-button02.c-link-button02--entry:hover .circle::before {
    background-color: #A81A1A;
  }
  .p-entry-cta__buttons .c-link-button02.c-link-button02--entry:hover .circle::after {
    background: #FFF;
  }
}
.p-entry-cta__buttons .c-link-button02 .text {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-entry-cta__buttons .c-link-button02 .text {
    font-size: 18px;
  }
}
.p-entry-cta__buttons .c-link-button02 .circle {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 768px) {
  .p-entry-cta__buttons .c-link-button02 .circle {
    width: 24px;
    height: 24px;
  }
}
.p-entry-cta__buttons .c-link-button02 .circle::after {
  width: 8px;
  height: 16px;
}

/* object > project > pagination
--------------------------------------------- */
.p-pagination__list {
  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;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .p-pagination__list {
    gap: 4px;
  }
}

.p-pagination__item.p-pagination__item--first a, .p-pagination__item.p-pagination__item--last a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #C9C9C9;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.85;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-pagination__item.p-pagination__item--first a, .p-pagination__item.p-pagination__item--last a {
    width: 37px;
    height: 37px;
    font-size: 14.8px;
  }
}
.p-pagination__item.p-pagination__item--first a::before, .p-pagination__item.p-pagination__item--last a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url(../img/common/pager-last.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 16px;
  height: 18px;
}
.p-pagination__item.p-pagination__item--first a::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.p-pagination__item.p-pagination__item--last a::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.page-numbers {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #C9C9C9;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  .page-numbers {
    width: 37px;
    height: 37px;
    font-size: 14.8px;
  }
}
.page-numbers.current {
  background-color: #A81A1A;
  color: #FFF;
  border: 1px solid #A81A1A;
}
.page-numbers.prev, .page-numbers.next {
  position: relative;
}
.page-numbers.prev::before, .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url(../img/common/pager-next.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 9px;
  height: 18px;
}
@media screen and (max-width: 768px) {
  .page-numbers.prev::before, .page-numbers.next::before {
    width: 6.66px;
    height: 13.32px;
  }
}
.page-numbers.prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.page-numbers.next::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-numbers.first, .page-numbers.last {
  position: relative;
}
.page-numbers.first::before, .page-numbers.last::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url(../img/common/pager-last.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 16px;
  height: 18px;
}
@media screen and (max-width: 768px) {
  .page-numbers.first::before, .page-numbers.last::before {
    width: 6.66px;
    height: 13.32px;
  }
}
.page-numbers.first::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.page-numbers.last::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* object > project > opening
--------------------------------------------- */
.p-opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  overflow: hidden;
  z-index: 1000;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  /* 仮 */
}
.p-opening.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.p-opening__curtain {
  position: absolute;
  width: 100%;
  height: 50vh;
  background-color: #171717;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-opening__curtain--top {
  top: 0;
  background-image: url(../img/top/opening_bg_upper.webp);
}
@media screen and (max-width: 768px) {
  .p-opening__curtain--top {
    background-image: url(../img/top/opening_bg_upper-sp.webp);
  }
}

.p-opening__curtain--bottom {
  height: calc(50vh + 2px);
  bottom: 0;
  background-image: url(../img/top/opening_bg_lower.webp);
}
@media screen and (max-width: 768px) {
  .p-opening__curtain--bottom {
    background-image: url(../img/top/opening_bg_lower-sp.webp);
  }
}

.p-opening__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .p-opening__logo {
    width: 125px;
  }
}
.p-opening__logo.is-loaded {
  opacity: 0;
  visibility: hidden;
}
.p-opening__logo.is-colored g path {
  -webkit-transition: fill 0.4s ease, stroke 0.4s ease;
  transition: fill 0.4s ease, stroke 0.4s ease;
  fill: #4C4C4C;
  stroke: #4C4C4C;
}

.p-opening__loading {
  /* 未使用 */
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  width: 120px;
  opacity: 0;
  visibility: hidden;
  z-index: 1002;
}
@media screen and (max-width: 768px) {
  .p-opening__loading {
    width: 80px;
  }
}
.p-opening__loading.is-rotate {
  -webkit-animation: rotateSpinner 1.6s linear infinite;
          animation: rotateSpinner 1.6s linear infinite;
}
.p-opening__loading img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes rotateSpinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateSpinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.p-opening__program-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  z-index: 1001;
}
@media screen and (max-width: 768px) {
  .p-opening__program-wrap {
    width: auto;
  }
}

.p-opening__program {
  font-family: "Source Code Pro", monospace;
  color: #FFF;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.78px;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .p-opening__program {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}
.p-opening__program + .p-opening__program {
  margin-top: 1em;
}
.p-opening__program .type-line {
  white-space: nowrap;
}
.p-opening__program .type-line.ml1em {
  margin-left: 1em;
}
.p-opening__program .type-line.colored {
  color: #E52E2E;
}

.colored {
  color: #E52E2E;
}

.p-opening__text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 72px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 2.16px;
  white-space: nowrap;
  z-index: 1001;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .p-opening__text {
    font-size: 35px;
    letter-spacing: 0.96px;
  }
}
.p-opening__text .colored {
  display: inline-block;
  margin-inline: 0.2em;
  color: #A81A1A;
}
@media screen and (max-width: 768px) {
  .p-opening__text .colored {
    margin-inline: 0.1em;
  }
}
.p-opening__text .text-switch {
  position: relative;
  display: inline-block;
}
.p-opening__text .text-switch .word {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-opening__text .text-switch .word.current {
  opacity: 1;
  position: relative;
}

/* object > project > top
--------------------------------------------- */
.p-top {
  padding-top: 80px;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .p-top {
    padding-top: 64px;
  }
}

/* Message */
.p-top__message {
  padding: 65px 0 92px;
  background-image: url(../img/top/message-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-top__message {
    padding: 40px 0 56px;
    background-image: url(../img/top/message-bg-sp.webp);
  }
}

.p-top__message-inner {
  max-width: 1145px;
  padding-left: 160px;
  padding-right: 25px;
}
@media screen and (max-width: 900px) {
  .p-top__message-inner {
    padding-left: 25px;
  }
}

.p-top__message-textarea {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-top__message-textarea {
    gap: 15px;
  }
}

.p-top__message-text {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2777777778;
}
.p-top__message-text.p-top__message-text--bold {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top__message-text.p-top__message-text--bold {
    line-height: 1.7777777778;
  }
}
@media screen and (max-width: 768px) {
  .p-top__message-text.p-top__message-text--sm {
    font-size: 16px;
    line-height: 2;
  }
}

.p-top__message-catch-list {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
}
@media screen and (max-width: 768px) {
  .p-top__message-catch-list {
    margin-top: 22px;
  }
}

.p-top__message-catch-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-top__message-catch-item {
    gap: 11px;
  }
}
.p-top__message-catch-item .text-en {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.025;
}
@media screen and (max-width: 768px) {
  .p-top__message-catch-item .text-en {
    font-size: 32px;
    line-height: 1.28125;
  }
}
.p-top__message-catch-item .text-en .colored {
  color: #A81A1A;
}
.p-top__message-catch-item .text-jp {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
  padding: 4px 4px;
  background-color: #A81A1A;
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top__message-catch-item .text-jp.--pc {
    display: none;
  }
}
.p-top__message-catch-item .text-jp-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top__message-catch-item .text-jp-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
  }
  .p-top__message-catch-item .text-jp-sp span {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 18px;
    font-weight: 700;
    padding: 4px 4px;
    background-color: #A81A1A;
    color: #FFF;
    text-align: center;
  }
}

/* About */
.p-top__about {
  padding: 65px 0 65px;
  background-image: url(../img/top/about-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .p-top__about {
    padding: 40px 0 64px;
  }
}

.p-top__about-inner {
  max-width: 1232px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 25px;
}

.p-top__about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1040px) {
  .p-top__about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.p-top__about-body {
  margin-top: 40px;
  margin-right: -27px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1240px) {
  .p-top__about-body {
    margin-right: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media screen and (max-width: 1040px) {
  .p-top__about-body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.p-top__about-lead {
  color: #FFF;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.28px;
  white-space: nowrap;
}
@media screen and (max-width: 1240px) {
  .p-top__about-lead {
    white-space: initial;
  }
}
@media screen and (max-width: 768px) {
  .p-top__about-lead {
    font-size: 22px;
    letter-spacing: 0.88px;
  }
}

.p-top__about-textarea {
  margin-top: 31px;
}
@media screen and (max-width: 768px) {
  .p-top__about-textarea {
    margin-top: 44px;
  }
}

.p-top__about-text {
  color: #FFF;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2777777778;
}
.p-top__about-text .colored {
  background-color: #FFF;
  color: #A81A1A;
  display: inline-block;
  margin: 4px 0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top__about-text {
    font-size: 16px;
    line-height: 2;
  }
}

.p-top__about-photo {
  margin-top: -17px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 569px;
          flex: 0 0 569px;
}
@media screen and (max-width: 1240px) {
  .p-top__about-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media screen and (max-width: 1040px) {
  .p-top__about-photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 67.7%;
    margin: 0 auto;
  }
}
.p-top__about-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top__about-btn-wrap {
  margin-top: 37px;
}
@media screen and (max-width: 768px) {
  .p-top__about-btn-wrap {
    display: none;
  }
}

.p-top__about-btn-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top__about-btn-sp {
    display: block;
  }
  .p-top__about-btn-sp .text {
    color: #FFF;
  }
  .p-top__about-btn-sp .circle {
    width: 40px;
    height: 40px;
    background-color: #A81A1A;
    border: 2px solid #FFF;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-top__about-btn-sp .circle {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-top__about-btn-sp .circle::before {
    background-color: #FFF;
  }
  .p-top__about-btn-sp .circle::after {
    background: #A81A1A;
    width: 10px;
    height: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-top__about-btn-sp .circle::after {
    width: 8px;
    height: 16px;
  }
}

/* Service */
.p-top__service {
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-top__service {
    display: none;
  }
}

.p-top__service-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/top/service-bg.webp");
  background-size: cover;
  background-position: center;
  z-index: -1; /* 後ろに配置 */
}

.p-top__service-inner {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}

.p-top__service-outer {
  position: relative;
  background-image: url(../img/top/service-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-top__service-container {
  position: relative; /* ここは相対位置 */
  height: 800px;
}

.p-top__service-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* すべて絶対配置 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 元のflex方向を指定 */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  opacity: 0;
  /* 非表示時は操作無効 */
  pointer-events: none;
}
@media screen and (max-width: 1040px) {
  .p-top__service-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.p-top__service-content.--01 {
  position: absolute; /* --01も絶対に */
}
.p-top__service-content.--active {
  opacity: 1;
  /* 表示時だけ操作可能 */
  pointer-events: auto;
  /* 表示時だけ相対にして崩れ防止 */
  position: relative;
}
.p-top__service-content.--02 {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top__service-content.--03 {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* スクロールトリガー用のダミー */
.p-top__service-scroll-anchors {
  position: relative;
}

/* デフォルトでは高さなし */
.p-top__anchor {
  height: auto;
}

/* ピン留め中だけ高さを 100vh に */
.p-top__anchor.--pinned {
  height: 800px;
}

.p-top__service-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 65px 47px 0 0;
  max-width: 570px;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  .p-top__service-body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    max-width: initial;
    max-width: initial;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    padding: 38px 25px 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top__service-body {
    padding: 32px 25px 0;
  }
}

.p-top__service-lead {
  margin-top: 43px;
}
@media screen and (max-width: 768px) {
  .p-top__service-lead {
    margin-top: 56px;
  }
}

.p-top__service-lead-text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -1.6px;
  line-height: 1.1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-top__service-lead-text {
    font-size: 40px;
    line-height: 1.2;
  }
}
.p-top__service-lead-text .colored {
  color: #A81A1A;
}
.p-top__service-lead-text .colored02 {
  color: #00483B;
}
.p-top__service-lead-text .colored03 {
  color: #0C3A6F;
}

.p-top__service-textarea {
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .p-top__service-textarea {
    margin-top: 16px;
  }
}

.p-top__service-text {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
}
@media screen and (max-width: 768px) {
  .p-top__service-text {
    line-height: 2;
  }
}

.p-top__service-btn-wrap {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .p-top__service-btn-wrap {
    margin-top: 24px;
  }
  .p-top__service-btn-wrap .circle {
    width: 40px;
    height: 40px;
  }
  .p-top__service-btn-wrap .circle::after {
    width: 10px;
    height: 20px;
  }
}

.p-top__service-photo-block {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 720px;
          flex: 0 0 720px;
  background-color: #A81A1A;
  padding: 40px 50px 96px;
  margin-top: -3px;
}
.p-top__service-photo-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 99%;
  width: 100vw;
  height: 100%;
  background-color: #A81A1A;
  z-index: 0;
}
.p-top__service-photo-block.--02 {
  background-color: #00483B;
}
.p-top__service-photo-block.--02::after {
  background-color: #00483B;
}
.p-top__service-photo-block.--03 {
  background-color: #0C3A6F;
}
.p-top__service-photo-block.--03::after {
  background-color: #0C3A6F;
}
@media screen and (max-width: 1240px) {
  .p-top__service-photo-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media screen and (max-width: 1040px) {
  .p-top__service-photo-block {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
@media screen and (max-width: 768px) {
  .p-top__service-photo-block {
    padding: 24px 25px 24px;
  }
}

.p-top__service-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top__service-pager {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-top__service-pager {
    margin-top: 16px;
  }
}

.p-top__service-pager-list {
  margin-inline: auto;
  width: 240px;
  background-color: #171717;
  border-radius: 96px;
  padding: 18px 10px;
  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;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .p-top__service-pager-list {
    width: 200px;
    padding: 6px 10px;
  }
}

.p-top__service-pager-item.--current {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.p-top__service-pager-item.--current.--01 {
  background-color: #A81A1A;
}
.p-top__service-pager-item.--current.--02 {
  background-color: #00483B;
}
.p-top__service-pager-item.--current.--03 {
  background-color: #0C3A6F;
}
.p-top__service-pager-item.--number {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #888888;
  line-height: 1.5;
}

/* SP */
.p-top__sp-service {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top__sp-service {
    display: block;
    padding: 38px 0 0;
    position: relative;
    overflow: hidden;
  }
  .p-top__sp-service::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/top/service-bg-sp.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
  }
}

.p-top__sp-service-inner {
  padding: 0 25px;
  margin-inline: auto;
}

.p-top__sp-service__container {
  position: relative;
  z-index: 2;
}

.p-top__sp-service__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-top__sp-service__content.--02 .title .colored {
  color: #00483B;
}
.p-top__sp-service__content.--02 .bottom {
  background-color: #00483B;
}
.p-top__sp-service__content.--03 .title .colored {
  color: #0C3A6F;
}
.p-top__sp-service__content.--03 .bottom {
  background-color: #0C3A6F;
}
.p-top__sp-service__content .title {
  margin-top: 41px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.p-top__sp-service__content .title .colored {
  color: #A81A1A;
}
.p-top__sp-service__content .textarea {
  margin-top: 16px;
}
.p-top__sp-service__content .textarea .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.p-top__sp-service__content .btn-wrap {
  margin-top: 19px;
}
.p-top__sp-service__content .bottom {
  margin-top: 24px;
  padding: 16px 25px;
  background-color: #A81A1A;
  position: relative;
}
.p-top__sp-service__content .img-wrap .photo {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__sp-service__content .numbers-wrap {
  position: absolute;
  right: 25px;
  bottom: 16px;
  min-width: 30px;
}
.p-top__sp-service__content .numbers-list {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 4px;
  border-radius: 40px;
  background: #171717;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}
.p-top__sp-service__content .numbers-item {
  color: #888888;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.p-top__sp-service__content .numbers-circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.p-top__sp-service__content .numbers-circle.--red {
  background-color: #A81A1A;
}
.p-top__sp-service__content .numbers-circle.--green {
  background-color: #00483B;
}
.p-top__sp-service__content .numbers-circle.--blue {
  background-color: #0C3A6F;
}

/* News */
.p-top__news {
  padding: 92px 0 107px;
  background-image: url(../img/top/news-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-top__news {
    padding: 42px 0 64px;
  }
}

.p-top__news-inner {
  max-width: 1166px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-top__news-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-top__news-btn-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-top__news-btn-wrap {
    display: none;
  }
}

.p-top__news-content {
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .p-top__news-content {
    margin-top: 32px;
  }
}

.p-top__news-items {
  padding-top: 43px;
  border-top: 3px solid #A81A1A;
}

.p-top__news-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .p-top__news-items {
    gap: 32px;
  }
}

.p-top__news-btn-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top__news-btn-sp {
    display: block;
    text-align: center;
    margin-top: 48px;
  }
  .p-top__news-btn-sp .c-link-button02 {
    max-width: 325px;
    -webkit-column-gap: 52px;
       -moz-column-gap: 52px;
            column-gap: 52px;
    padding: 14px 24px 14px 10px;
  }
}

/* Recruit */
.p-top__recruit {
  padding: 49px 0 48px;
  background-image: url(../img/top/recruit-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-top__recruit {
    padding: 46px 0 64px;
    background-image: url(../img/top/recruit-bg-sp.webp);
  }
}

.p-top__recruit-inner {
  max-width: 1250px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-top__recruit-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .p-top__recruit-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
}

.p-top__recruit-photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 605px;
          flex: 0 0 605px;
}
@media screen and (max-width: 1240px) {
  .p-top__recruit-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media screen and (max-width: 900px) {
  .p-top__recruit-photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 76%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .p-top__recruit-photo {
    max-width: 285px;
    width: 100%;
  }
}
.p-top__recruit-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top__recruit-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 900px) {
  .p-top__recruit-body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-top__recruit-lead {
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .p-top__recruit-lead {
    margin-top: 40px;
  }
}

.p-top__recruit-lead-text {
  color: #FFF;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 50px;
}
@media screen and (max-width: 768px) {
  .p-top__recruit-lead-text {
    font-size: 22px;
    letter-spacing: 0.88px;
    line-height: normal;
  }
}

.p-top__recruit-textarea {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-top__recruit-textarea {
    margin-top: 16px;
  }
}

.p-top__recruit-text {
  color: #FFF;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .p-top__recruit-text {
    line-height: 2;
  }
}

.p-top__recruit-btn-wrap {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .p-top__recruit-btn-wrap {
    display: none;
  }
}

.p-top__recruit-btn-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top__recruit-btn-sp {
    display: block;
    margin-top: 40px;
    text-align: center;
  }
  .p-top__recruit-btn-sp .c-link-button02 {
    max-width: 325px;
    -webkit-column-gap: 52px;
       -moz-column-gap: 52px;
            column-gap: 52px;
    padding: 15px 24px 14px 10px;
    background-color: transparent;
    border: 2px solid #FFF;
  }
  .p-top__recruit-btn-sp .c-link-button02 .text {
    color: #FFF;
  }
  .p-top__recruit-btn-sp .c-link-button02 .circle::before {
    background-color: #FFF;
  }
  .p-top__recruit-btn-sp .c-link-button02 .circle::after {
    background: #A81A1A;
  }
}

/* object > project > about
--------------------------------------------- */
.p-about__breadcrumb {
  margin-top: 77px;
}
@media screen and (max-width: 768px) {
  .p-about__breadcrumb {
    margin-top: 51px;
  }
}

/* Main */
.p-about__main {
  border-top: 2px solid #FFF;
  padding: 63px 0 80px;
  background-image: url(../img/about/main-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-about__main {
    padding: 40px 0 40px;
    background-image: url(../img/about/main-bg-sp.webp);
  }
}

.p-about__main-inner {
  max-width: 1166px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-about__main-lead-title {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 900px) {
  .p-about__main-lead-title {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__main-lead-title {
    font-size: 22px;
    letter-spacing: 0.88px;
  }
}

.p-about__main-lead-text {
  margin-top: 24px;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 41px;
}
@media screen and (max-width: 768px) {
  .p-about__main-lead-text {
    font-size: 16px;
    line-height: 2;
  }
}
.p-about__main-lead-text .colored {
  background-color: #FFF;
  color: #A81A1A;
  font-weight: 700;
}

.p-about__main-content {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 38px;
     -moz-column-gap: 38px;
          column-gap: 38px;
  padding-left: 35px;
}
@media screen and (max-width: 1040px) {
  .p-about__main-content {
    padding-left: 0;
  }
}
@media screen and (max-width: 900px) {
  .p-about__main-content {
    width: 75%;
    margin: 30px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media screen and (max-width: 600px) {
  .p-about__main-content {
    width: 100%;
  }
}

.p-about__main-catches {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 768px) {
  .p-about__main-catches {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.p-about__main-catch:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-about__main-catch:not(:first-of-type) {
    margin-top: 17px;
  }
}

.p-about__main-catch-title {
  font-family: "IBM Plex Sans", sans-serif;
  color: #FFF;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1040px) {
  .p-about__main-catch-title {
    font-size: 54px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__main-catch-title {
    font-size: 36px;
  }
}

.p-about__main-catch-box {
  margin-top: -24px;
  border-radius: 8px;
  background: #961A1A;
  -webkit-box-shadow: 0px 0px 5px 0px #631212 inset;
          box-shadow: 0px 0px 5px 0px #631212 inset;
  border-radius: 8px;
  padding: 34px 10px 34px 32px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1040px) {
  .p-about__main-catch-box {
    margin-top: -21px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__main-catch-box {
    padding: 17px 10px 13px 19px;
    border-radius: 4.68px;
    -webkit-box-shadow: 0px 0px 2.923px 0px #631212 inset;
            box-shadow: 0px 0px 2.923px 0px #631212 inset;
    margin-top: -14px;
  }
}

.p-about__main-catch-text {
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1040px) {
  .p-about__main-catch-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__main-catch-text {
    font-size: 20px;
  }
}

.p-about__main-catch-sub {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p-about__main-catch-sub {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
  }
}

.p-about__main-pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 504px;
          flex: 0 0 504px;
}
@media screen and (max-width: 1240px) {
  .p-about__main-pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
  }
}
@media screen and (max-width: 900px) {
  .p-about__main-pic {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 262px;
    margin-inline: auto;
  }
}
.p-about__main-pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Vision */
.p-about__main-vision {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .p-about__main-vision {
    margin-top: 17px;
  }
}

.p-about__main-vision-title {
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
  color: #FFF;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .p-about__main-vision-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__main-vision-title {
    font-size: 36px;
    line-height: 1.5;
  }
}

.p-about__main-vision-box {
  margin-top: -6px;
  border-radius: 8px;
  background: #961A1A;
  -webkit-box-shadow: 0px 0px 5px 0px #631212 inset;
          box-shadow: 0px 0px 5px 0px #631212 inset;
  padding: 45px 0 44px;
}
@media screen and (max-width: 900px) {
  .p-about__main-vision-box {
    width: 75%;
    margin: -6px auto 0;
    padding: 24px 12px 24px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__main-vision-box {
    margin: -13px auto 0;
    -webkit-box-shadow: 0px 0px 2.923px 0px #631212 inset;
            box-shadow: 0px 0px 2.923px 0px #631212 inset;
  }
}
@media screen and (max-width: 600px) {
  .p-about__main-vision-box {
    width: 100%;
  }
}

.p-about__main-vision-items {
  max-width: 940px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .p-about__main-vision-items {
    gap: 24px;
  }
}

.p-about__main-vision-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 4px;
  overflow: hidden;
  background-color: #FFF;
}
@media screen and (max-width: 900px) {
  .p-about__main-vision-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about__main-vision-item:nth-of-type(2) .lead span {
  background-color: #00483B;
}
.p-about__main-vision-item:nth-of-type(2) .title .jp::before {
  background-color: #00483B;
}
.p-about__main-vision-item:nth-of-type(2) .title .en {
  color: #00483B;
}
.p-about__main-vision-item:nth-of-type(3) .lead span {
  background-color: #0C3A6F;
}
.p-about__main-vision-item:nth-of-type(3) .title .jp::before {
  background-color: #0C3A6F;
}
.p-about__main-vision-item:nth-of-type(3) .title .en {
  color: #0C3A6F;
}
.p-about__main-vision-item .body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 0 24px 42px;
}
@media screen and (max-width: 900px) {
  .p-about__main-vision-item .body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    padding: 16px 0 17px 16px;
  }
}
.p-about__main-vision-item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
.p-about__main-vision-item .title.--wide {
  gap: 32px;
}
.p-about__main-vision-item .title .en {
  font-family: "IBM Plex Sans", sans-serif;
  color: #A81A1A;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.64px;
}
@media screen and (max-width: 768px) {
  .p-about__main-vision-item .title .en {
    font-size: 24px;
    line-height: 1.2916666667;
    letter-spacing: -0.48px;
  }
}
.p-about__main-vision-item .title .jp {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-left: 16px;
  display: inline-block;
  position: relative;
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about__main-vision-item .title .jp {
    padding-left: 12px;
    font-size: 18px;
  }
}
.p-about__main-vision-item .title .jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #A81A1A;
}
@media screen and (max-width: 768px) {
  .p-about__main-vision-item .title .jp::before {
    top: 6px;
  }
}
.p-about__main-vision-item .lead {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .p-about__main-vision-item .lead {
    margin-top: 10px;
  }
}
.p-about__main-vision-item .lead span {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  background-color: #A81A1A;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 1040px) {
  .p-about__main-vision-item .lead span {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__main-vision-item .lead span {
    font-size: 17px;
    line-height: 1.5;
  }
}
.p-about__main-vision-item .text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-about__main-vision-item .text {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.71429;
  }
}
.p-about__main-vision-item .photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 365px;
          flex: 0 0 365px;
}
@media screen and (max-width: 1040px) {
  .p-about__main-vision-item .photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }
}
@media screen and (max-width: 900px) {
  .p-about__main-vision-item .photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    max-height: 240px;
    aspect-ratio: 365/120;
  }
}
@media screen and (max-width: 768px) {
  .p-about__main-vision-item .photo {
    max-height: 120px;
  }
}
.p-about__main-vision-item .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Values */
.p-about__values {
  padding: 80px 0 80px;
  background-image: url(../img/about/values-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-about__values {
    padding: 40px 0 40px;
  }
}

.p-about__values-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-right: 40px;
  font-family: "IBM Plex Sans", sans-serif;
  color: #A81A1A;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .p-about__values-title {
    font-size: 60px;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-about__values-title {
    font-size: 36px;
    line-height: 1.5;
  }
}

.p-about__values-inner {
  max-width: 1220px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-about__values-content {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 31px;
     -moz-column-gap: 31px;
          column-gap: 31px;
  row-gap: 15px;
}
@media screen and (max-width: 1240px) {
  .p-about__values-content {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
@media screen and (max-width: 1040px) {
  .p-about__values-content {
    margin-top: 11px;
    row-gap: 16px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (max-width: 900px) {
  .p-about__values-content {
    width: 75%;
    margin: 11px auto 0;
  }
}
@media screen and (max-width: 600px) {
  .p-about__values-content {
    width: 100%;
  }
}

.p-about__values-item {
  width: calc((100% - 31px) / 2);
  padding-bottom: 26px;
  border-bottom: 1px solid #DFDFDF;
}
@media screen and (max-width: 1040px) {
  .p-about__values-item {
    width: 100%;
    padding-bottom: 16px;
  }
}
.p-about__values-item .title .number {
  width: 57px;
}
.p-about__values-item .title .number img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about__values-item .title .text {
  display: inline-block;
  margin-left: -12px;
  color: #A81A1A;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 1240px) {
  .p-about__values-item .title .text {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__values-item .title .text {
    font-size: 24px;
    margin-left: -14px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__values-item .title .text.translate {
    position: relative;
    -webkit-transform: translateY(26px);
            transform: translateY(26px);
    line-height: 1.4;
  }
}
.p-about__values-item .textarea {
  margin-top: 13px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 52px;
}
@media screen and (max-width: 768px) {
  .p-about__values-item .textarea {
    margin-top: 16px;
  }
}
@media screen and (max-width: 1240px) {
  .p-about__values-item .textarea.translate {
    margin-top: 13px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__values-item .textarea.translate {
    margin-top: 42px;
  }
}

/* Tech */
.p-about__tech {
  padding: 63px 0 90px;
  background-image: url(../img/about/tech-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-about__tech {
    padding: 40px 0 40px;
    background-image: url(../img/about/tech-bg-sp.webp);
  }
}

.p-about__tech-title-inner {
  max-width: 1170px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-about__tech-title {
  font-family: "IBM Plex Sans", sans-serif;
  color: #FFF;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 2.56px;
}
@media screen and (max-width: 900px) {
  .p-about__tech-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__tech-title {
    font-size: 28px;
    letter-spacing: 1.12px;
  }
}

.p-about__tech-lead {
  margin-top: 37px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .p-about__tech-lead {
    margin-top: 24px;
    font-size: 15px;
    line-height: 2;
  }
}
.p-about__tech-lead .colored {
  font-weight: 700;
  display: inline-block;
  margin: 0 4px;
  background-color: #FFF;
  color: #A81A1A;
}

.p-about__tech-inner {
  max-width: 1056px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-about__tech-items {
  margin-top: 72px;
}
@media screen and (max-width: 900px) {
  .p-about__tech-items {
    width: 75%;
    margin: 72px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-about__tech-items {
    margin: 24px auto 0;
  }
}
@media screen and (max-width: 600px) {
  .p-about__tech-items {
    width: 100%;
  }
}

.p-about__tech-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-about__tech-item:nth-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1040px) {
  .p-about__tech-item:nth-of-type(odd) {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    gap: 16px;
  }
}
@media screen and (max-width: 900px) {
  .p-about__tech-item:nth-of-type(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-about__tech-item:not(:first-of-type) {
  margin-top: 47px;
}
@media screen and (max-width: 768px) {
  .p-about__tech-item:not(:first-of-type) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1040px) {
  .p-about__tech-item {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    gap: 16px;
  }
}
@media screen and (max-width: 900px) {
  .p-about__tech-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-about__tech-body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-about__tech-sub-title {
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  line-height: 2.1875;
}
@media screen and (max-width: 1040px) {
  .p-about__tech-sub-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__tech-sub-title {
    font-size: 24px;
    line-height: 1.5;
  }
}

.p-about__tech-textarea {
  margin-top: 13px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
}
@media screen and (max-width: 768px) {
  .p-about__tech-textarea {
    margin-top: 16px;
    line-height: 1.5;
  }
}

.p-about__tech-photo {
  border-radius: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
}
@media screen and (max-width: 1040px) {
  .p-about__tech-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }
}
@media screen and (max-width: 900px) {
  .p-about__tech-photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    border-radius: 6.48px;
  }
}
.p-about__tech-photo img {
  border-radius: 8px;
  -webkit-filter: drop-shadow(8px 12px 20px rgba(161, 49, 38, 0.3));
          filter: drop-shadow(8px 12px 20px rgba(161, 49, 38, 0.3));
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-about__tech-photo img {
    border-radius: 6.48px;
  }
}

/* object > project > archive
--------------------------------------------- */
.p-archive__contents {
  padding: 78px 0 64px;
  background-image: url(../img/blog/blog-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-archive__contents {
    padding: 40px 0 40px;
    background-image: url(../img/blog/blog-bg-sp.webp);
  }
}

.p-archive__inner {
  max-width: 950px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-archive__tabs {
  padding: 0 25px;
}

.p-archive__pagination {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-archive__pagination {
    margin-top: 56px;
  }
}

.p-archive__items {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

/* object > project > company
--------------------------------------------- */
.p-company__contents {
  padding: 80px 0 112px;
  background-image: url(../img/company/main-fv.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-company__contents {
    padding: 40px 0 40px;
  }
}

.p-company__breadcrumb {
  margin-top: 43px;
}

/* Info */
.p-company__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .p-company__info-list {
    gap: 16px;
  }
}

.p-company__info-inner {
  max-width: 982px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-company__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid #DFDFDF;
}
@media screen and (max-width: 768px) {
  .p-company__info-item {
    padding-bottom: 16px;
  }
}

.p-company__info-term {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 144px;
          flex: 0 0 144px;
  color: #A81A1A;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-company__info-term {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 141px;
            flex: 0 0 141px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.p-company__info-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-company__info-desc {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* Map */
.p-company__map {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-company__map {
    margin-top: 40px;
  }
}

.p-company__map-inner {
  max-width: 1166px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-company__map-wrap {
  -webkit-filter: grayscale(0.9);
          filter: grayscale(0.9);
  aspect-ratio: 1116/400;
}
@media screen and (max-width: 768px) {
  .p-company__map-wrap {
    aspect-ratio: 325/230;
  }
}
.p-company__map-wrap iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* object > project > member
--------------------------------------------- */
/* object > project > single
--------------------------------------------- */
.p-single {
  padding: 18px 0 80px;
  background-image: url(../img/blog/single-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-single {
    padding: 16px 0 40px;
    background-image: url(../img/blog/single-bg-sp.webp);
  }
}

.p-single__breadcrumb {
  max-width: 1162px;
  margin-inline: auto;
  padding: 0 25px;
}
.p-single__breadcrumb .p-breadcrumb span,
.p-single__breadcrumb .p-breadcrumb a {
  color: #A81A1A;
}
.p-single__breadcrumb .p-breadcrumb li:not(:first-of-type)::before {
  background-image: url(../img/common/breadcrumb-arrow-red.png);
}

.p-single__inner {
  max-width: 797px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-single__top-link {
  max-width: 1162px;
  margin-inline: auto;
  padding: 52px 25px 0;
}
@media screen and (max-width: 768px) {
  .p-single__top-link {
    padding: 47px 25px 0;
  }
}

.p-single__top-link-anchor {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-single__top-link-anchor {
    gap: 6px;
  }
}
@media (any-hover: hover) {
  .p-single__top-link-anchor:hover .icon {
    background-color: #A81A1A;
  }
  .p-single__top-link-anchor:hover .icon::after {
    background: #FFF;
  }
}
.p-single__top-link-anchor .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media screen and (max-width: 768px) {
  .p-single__top-link-anchor .icon {
    width: 24px;
    height: 24px;
  }
}
.p-single__top-link-anchor .icon::before, .p-single__top-link-anchor .icon::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-single__top-link-anchor .icon::before {
  border: 1px solid #A81A1A;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.p-single__top-link-anchor .icon::after {
  -webkit-mask-image: url(../img/common/left-arrow-red.png);
          mask-image: url(../img/common/left-arrow-red.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #A81A1A;
  width: 7px;
  height: 15px;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
@media screen and (max-width: 768px) {
  .p-single__top-link-anchor .icon::after {
    width: 5.4px;
    height: 12px;
  }
}
.p-single__top-link-anchor .text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-single__top-link-anchor .text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.p-single__contents {
  margin-top: 98px;
}
@media screen and (max-width: 768px) {
  .p-single__contents {
    margin-top: 29px;
  }
}

.p-single__heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-single__heading {
    font-size: 22px;
    line-height: 1.63636;
  }
}

.p-single__meta {
  margin-top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .p-single__meta {
    margin-top: 26px;
    gap: 11px;
  }
}

.p-single__meta-modified {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-single__meta-modified .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  width: 15px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.p-single__modified-text {
  display: inline-block;
  margin-left: 6px;
  color: #5A5A5A;
  font-size: 14px;
  line-height: 1.2142857143;
  font-weight: 500;
  letter-spacing: 0.28px;
}
@media screen and (max-width: 768px) {
  .p-single__modified-text {
    font-size: 13px;
    line-height: 1.5384615385;
    letter-spacing: 0.78px;
  }
}

.p-single__modified-date {
  margin-left: 8px;
  color: #5A5A5A;
  font-size: 14px;
  line-height: 1.2142857143;
  font-weight: 500;
  letter-spacing: 0.84px;
}
@media screen and (max-width: 768px) {
  .p-single__modified-date {
    font-size: 13px;
    line-height: 1.5384615385;
    letter-spacing: 0.78px;
  }
}

.p-single__meta-release {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.p-single__release-text {
  background-color: #A81A1A;
  color: #FFF;
  width: 85px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 0.28px;
  font-weight: 500;
  line-height: 1;
  padding-top: 2px;
}
@media screen and (max-width: 768px) {
  .p-single__release-text {
    font-size: 13px;
    line-height: 1.5384615385;
    letter-spacing: 0.26px;
  }
}

.p-single__release-date {
  font-size: 14px;
  font-weight: 500;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  .p-single__release-date {
    font-size: 13px;
    letter-spacing: 0.78px;
    line-height: 1.5384615385;
  }
}

.p-single__thumbnail {
  margin-top: 39px;
}
@media screen and (max-width: 768px) {
  .p-single__thumbnail {
    margin-top: 40px;
  }
}
.p-single__thumbnail img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single__content {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .p-single__content {
    margin-top: 40px;
  }
}

.p-single__btn-wrap {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-single__btn-wrap {
    margin-top: 40px;
  }
}

.p-single__content p {
  color: #5A5A5A;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 768px) {
  .p-single__content p {
    font-size: 14px;
    line-height: 2.14286;
    letter-spacing: 0.56px;
  }
}
.p-single__content p + p {
  margin-top: 30px;
}
.p-single__content strong {
  color: #A81A1A;
  font-weight: 900;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.64px;
}
.p-single__content h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .p-single__content h2 {
    font-size: 20px;
    line-height: 1.6;
  }
}
.p-single__content h3 {
  color: #A81A1A;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  padding-left: 37px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single__content h3 {
    font-size: 18px;
    line-height: 1.5556;
    padding-left: 30px;
  }
}
.p-single__content h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 16px;
  left: 0;
  width: 25px;
  height: 4px;
  background-color: #A81A1A;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .p-single__content h3::before {
    top: 13px;
    width: 20px;
    height: 4px;
  }
}
.p-single__content a {
  color: #A81A1A;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 768px) {
  .p-single__content a {
    font-size: 14px;
    letter-spacing: 0.56px;
    line-height: 2.14286;
  }
}
.p-single__content ol {
  list-style: decimal;
  padding-left: 20px;
}
.p-single__content ol li {
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 768px) {
  .p-single__content ol li {
    font-size: 14px;
    line-height: 1.85714;
  }
}
.p-single__content ul li {
  padding-left: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: 0.64px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-single__content ul li {
    font-size: 14px;
    line-height: 1.85714;
  }
}
.p-single__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #A81A1A;
}
@media screen and (max-width: 768px) {
  .p-single__content ul li::before {
    top: 10px;
    -webkit-transform: none;
            transform: none;
  }
}
.p-single__content * + ul, .p-single__content * + ol, .p-single__content * + p {
  margin-top: 30px;
}
.p-single__content * + h2, .p-single__content * + h3 {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-single__content * + h2, .p-single__content * + h3 {
    margin-top: 40px;
  }
}

/* object > project > recruit
--------------------------------------------- */
/* FV */
.p-recruit__fv {
  overflow: hidden;
  background-image: url(../img/recruit/fv-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-recruit__fv {
    background-image: url(../img/recruit/fv-bg-sp.webp);
  }
}

.p-recruit__fv-inner {
  max-width: 1372px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-recruit__fv-catch {
  font-family: "IBM Plex Sans", sans-serif;
  color: rgba(149, 9, 9, 0.5);
  /* -> clamp */
  font-size: 156.388px;
  line-height: 1;
  letter-spacing: 4.692px;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 1240px) {
  .p-recruit__fv-catch {
    font-size: 120px;
  }
}
@media screen and (max-width: 1040px) {
  .p-recruit__fv-catch {
    font-size: 110px;
  }
}
@media screen and (max-width: 900px) {
  .p-recruit__fv-catch {
    font-size: 90px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-catch {
    font-size: 38.517px;
    letter-spacing: 1.156px;
  }
}
.p-recruit__fv-catch.p-recruit__fv-catch01 {
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-recruit__fv-catch.p-recruit__fv-catch01 {
    text-align: right;
  }
}
.p-recruit__fv-catch.p-recruit__fv-catch02 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-catch.p-recruit__fv-catch02 {
    display: none;
  }
}

.p-recruit__fv-text img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit__fv-top {
  padding-top: 20px;
}

.p-recruit__fv-top-wrap {
  position: relative;
}

.p-recruit__fv-top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1040px) {
  .p-recruit__fv-top-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 900px) {
  .p-recruit__fv-top-content {
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__fv-top-content {
    width: 100%;
  }
}

.p-recruit__scroll {
  bottom: -54px;
  left: 0;
}
@media screen and (max-width: 1040px) {
  .p-recruit__scroll {
    display: none;
  }
}

.p-recruit__fv-top-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 80px;
  margin-right: -100px;
}
@media (max-width: 1370px) {
  .p-recruit__fv-top-body {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1040px) {
  .p-recruit__fv-top-body {
    margin-top: 8px;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    padding-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-top-body {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .p-recruit__fv-top-body {
    text-align: left;
  }
}

.p-recruit__fv-top-main {
  font-family: "Noto Serif JP", serif;
  color: #FFF;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 2.56px;
  white-space: nowrap;
}
@media (max-width: 1370px) {
  .p-recruit__fv-top-main {
    font-size: 56px;
  }
}
@media screen and (max-width: 1040px) {
  .p-recruit__fv-top-main {
    font-size: 44px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-top-main {
    font-size: 28px;
    letter-spacing: 1.146px;
  }
}

.p-recruit__fv-top-sub {
  margin-top: 40px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.96px;
  white-space: nowrap;
}
@media screen and (max-width: 1040px) {
  .p-recruit__fv-top-sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-top-sub {
    margin-top: 24px;
    font-size: 16px;
    letter-spacing: 0.64px;
    white-space: initial;
  }
}

.p-recruit__pc-breadcrumb {
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .p-recruit__pc-breadcrumb {
    display: none;
  }
}

.p-recruit__sp-breadcrumb {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-recruit__sp-breadcrumb {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    z-index: 2;
  }
}

.p-recruit__fv-top-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 605px;
  -webkit-transform: translateY(-160px);
          transform: translateY(-160px);
}
@media (max-width: 1370px) {
  .p-recruit__fv-top-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 550px;
            flex: 0 0 550px;
  }
}
@media screen and (max-width: 1240px) {
  .p-recruit__fv-top-photo {
    position: static;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 550px;
            flex: 0 0 550px;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 1040px) {
  .p-recruit__fv-top-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 500px;
            flex: 0 0 500px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-top-photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__fv-top-photo {
    width: 289px;
    margin-right: -25px;
  }
}
@media (max-width: 440px) {
  .p-recruit__fv-top-photo {
    margin-top: -15px;
  }
}
.p-recruit__fv-top-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit__fv-sp-catch-wrap {
  position: relative;
}

.p-recruit__fv-sp-catch {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-sp-catch {
    margin-left: -25px;
    margin-right: -25px;
    text-align: right;
    display: block;
    color: rgba(149, 9, 9, 0.5);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 38.517px;
    font-weight: 700;
    letter-spacing: 1.156px;
  }
}

.p-recruit__fv-buttons {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: -27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-buttons {
    margin-top: 8px;
    width: 100%;
    position: relative;
    right: initial;
    bottom: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-recruit__fv-buttons .c-link-button02 {
  width: 260px;
  max-width: 260px;
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-buttons .c-link-button02 {
    padding: 11px 16px 11px 10px;
  }
}

.p-recruit__fv-bottom {
  margin-top: 70px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-bottom {
    margin-top: 95px;
  }
}
.p-recruit__fv-bottom::before, .p-recruit__fv-bottom::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-bottom::before, .p-recruit__fv-bottom::after {
    content: none;
  }
}
.p-recruit__fv-bottom::before {
  background-image: url(../img/recruit/fv-rect01.png);
  width: 441px;
  height: 405px;
  left: -122px;
  top: -70px;
}
@media screen and (max-width: 1240px) {
  .p-recruit__fv-bottom::before {
    width: 331px;
    height: 305px;
    left: -180px;
  }
}
@media screen and (max-width: 900px) {
  .p-recruit__fv-bottom::before {
    width: 231px;
    height: 205px;
    left: -130px;
  }
}
.p-recruit__fv-bottom::after {
  background-image: url(../img/recruit/fv-rect02.png);
  width: 441px;
  height: 405px;
  right: -30px;
  bottom: -102px;
}
@media screen and (max-width: 1240px) {
  .p-recruit__fv-bottom::after {
    width: 341px;
    height: 305px;
    right: -90px;
  }
}
@media screen and (max-width: 900px) {
  .p-recruit__fv-bottom::after {
    width: 241px;
    height: 205px;
    right: -60px;
  }
}

.p-recruit__fv-bottom-main {
  font-family: "Noto Serif JP", serif;
  color: #FFF;
  text-align: center;
  font-size: 44px;
  letter-spacing: 1.76px;
  font-weight: 700;
  line-height: 1.4318181818;
}
@media screen and (max-width: 900px) {
  .p-recruit__fv-bottom-main {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-bottom-main {
    font-size: 24px;
    letter-spacing: 0.96px;
    line-height: 1.4166666667;
  }
}

.p-recruit__fv-bottom-textarea {
  margin-top: 67px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-bottom-textarea {
    margin-top: 28px;
    gap: 16px;
    padding: 0 25px;
  }
}

.p-recruit__fv-bottom-text {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.05;
}
@media screen and (max-width: 768px) {
  .p-recruit__fv-bottom-text {
    font-size: 16px;
    line-height: 2;
  }
}
.p-recruit__fv-bottom-text .colored {
  background-color: #FFF;
  color: #A81A1A;
  font-weight: 700;
}

.p-recruit__sp-bottom-rect01 {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-recruit__sp-bottom-rect01 {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    width: 216px;
    position: absolute;
    left: -40px;
    top: -220px;
  }
}

.p-recruit__sp-bottom-rect02 {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-recruit__sp-bottom-rect02 {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    width: 216px;
    position: absolute;
    right: -8px;
    bottom: -83px;
  }
}

/* Work */
.p-recruit__work {
  padding: 65px 0 85px;
  background-image: url(../img/recruit/work-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-recruit__work {
    background-image: url(../img/recruit/work-bg-sp.webp);
    padding: 40px 0 40px;
  }
}

.p-recruit__work-inner {
  max-width: 1214px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-recruit__work-items {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 106px;
}
@media screen and (max-width: 900px) {
  .p-recruit__work-items {
    width: 75%;
    margin: 64px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__work-items {
    margin: 40px auto 0;
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .p-recruit__work-items {
    width: 100%;
  }
}

.p-recruit__work-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .p-recruit__work-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 24px;
  }
}
.p-recruit__work-item:nth-of-type(1) {
  -webkit-column-gap: 33px;
     -moz-column-gap: 33px;
          column-gap: 33px;
}
@media screen and (max-width: 1240px) {
  .p-recruit__work-item:nth-of-type(1) {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
.p-recruit__work-item:nth-of-type(1) .p-recruit__work-item-shadow {
  background-image: url(../img/recruit/work-photo01-bg.webp);
  width: 577px;
  height: 347px;
  bottom: -90px;
  right: -70px;
}
.p-recruit__work-item:nth-of-type(2) {
  -webkit-column-gap: 33px;
     -moz-column-gap: 33px;
          column-gap: 33px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1240px) {
  .p-recruit__work-item:nth-of-type(2) {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media screen and (max-width: 900px) {
  .p-recruit__work-item:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-recruit__work-item:nth-of-type(2) .p-recruit__work-item-shadow {
  background-image: url(../img/recruit/work-photo03-bg.webp);
  width: 562px;
  height: 330px;
  bottom: -50px;
  left: -45px;
}
.p-recruit__work-item:nth-of-type(3) {
  -webkit-column-gap: 33px;
     -moz-column-gap: 33px;
          column-gap: 33px;
}
@media screen and (max-width: 1240px) {
  .p-recruit__work-item:nth-of-type(3) {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
.p-recruit__work-item:nth-of-type(3) .p-recruit__work-item-shadow {
  background-image: url(../img/recruit/work-photo03-bg.webp);
  width: 577px;
  height: 347px;
  bottom: -50px;
  right: -45px;
}

.p-recruit__work-photo {
  display: block;
  position: relative;
  z-index: 2;
}

.p-recruit__work-item-shadow {
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 1240px) {
  .p-recruit__work-item-shadow {
    display: none;
  }
}

.p-recruit__work-item-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 900px) {
  .p-recruit__work-item-body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.p-recruit__work-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 1240px) {
  .p-recruit__work-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 1040px) {
  .p-recruit__work-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__work-title {
    font-size: 18px;
    -webkit-font-feature-settings: "palt" on;
            font-feature-settings: "palt" on;
  }
}

.p-recruit__work-textarea {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-recruit__work-textarea {
    margin-top: 24px;
  }
}

.p-recruit__work-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
}
@media screen and (max-width: 768px) {
  .p-recruit__work-text {
    line-height: 1.5;
  }
}

.p-recruit__work-item-photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 525px;
          flex: 0 0 525px;
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width: 1240px) {
  .p-recruit__work-item-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 470px;
            flex: 0 0 470px;
  }
}
@media screen and (max-width: 1040px) {
  .p-recruit__work-item-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 440px;
            flex: 0 0 440px;
  }
}
@media screen and (max-width: 900px) {
  .p-recruit__work-item-photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.p-recruit__work-item-photo img {
  border-radius: 8px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Middle */
.p-recruit__middle img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Person + Career */
.p-recruit__bottom-wrap {
  padding: 66px 0 64px;
  background-image: url(../img/recruit/person-career-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-recruit__bottom-wrap {
    padding: 40px 0 52px;
  }
}

/* Person */
.p-recruit__person-inner {
  max-width: 1219px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-recruit__career-inner {
  max-width: 1166px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-recruit__person-content {
  margin-top: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 63px;
     -moz-column-gap: 63px;
          column-gap: 63px;
}
@media screen and (max-width: 1240px) {
  .p-recruit__person-content {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media screen and (max-width: 900px) {
  .p-recruit__person-content {
    width: 75%;
    margin: 40px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 32px;
  }
}
@media screen and (max-width: 600px) {
  .p-recruit__person-content {
    width: 100%;
  }
}

.p-recruit__person-photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 498px;
          flex: 0 0 498px;
}
@media screen and (max-width: 1240px) {
  .p-recruit__person-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 450px;
            flex: 0 0 450px;
  }
}
@media screen and (max-width: 900px) {
  .p-recruit__person-photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.p-recruit__person-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit__person-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 900px) {
  .p-recruit__person-body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.p-recruit__person-msg-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .p-recruit__person-msg-wrap {
    gap: 32px;
  }
}

.p-recruit__person-msg-title {
  color: #A81A1A;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1240px) {
  .p-recruit__person-msg-title {
    font-size: 27px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__person-msg-title {
    font-size: 20px;
  }
}

.p-recruit__person-msg-text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

/* Career */
.p-recruit__career {
  scroll-margin-top: 80px;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .p-recruit__career {
    scroll-margin-top: 64px;
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.p-recruit__career-content {
  padding-top: 40px;
  border-top: 3px solid #DFDFDF;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 900px) {
  .p-recruit__career-content {
    width: 75%;
    margin: 10px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__career-content {
    padding-top: 24px;
    margin: 16px auto 0;
  }
}
@media screen and (max-width: 600px) {
  .p-recruit__career-content {
    width: 100%;
  }
}

.p-recruit__career-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 900px) {
  .p-recruit__career-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-recruit__career-item:nth-of-type(1) .p-recruit__career-list {
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .p-recruit__career-item:nth-of-type(1) .p-recruit__career-list {
    margin-top: 24px;
  }
}
.p-recruit__career-item:nth-of-type(1) .p-recruit__career-title {
  color: #A81A1A;
}
.p-recruit__career-item:nth-of-type(2) .p-recruit__career-list {
  margin-top: 31px;
}
@media screen and (max-width: 768px) {
  .p-recruit__career-item:nth-of-type(2) .p-recruit__career-list {
    margin-top: 24px;
  }
}
.p-recruit__career-item:nth-of-type(2) .p-recruit__career-title {
  color: #00483B;
}
.p-recruit__career-item:nth-of-type(3) .p-recruit__career-list {
  margin-top: 31px;
}
@media screen and (max-width: 768px) {
  .p-recruit__career-item:nth-of-type(3) .p-recruit__career-list {
    margin-top: 24px;
  }
}
.p-recruit__career-item:nth-of-type(3) .p-recruit__career-title {
  color: #0C3A6F;
}

.p-recruit__career-header {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 560px;
          flex: 0 0 560px;
}
@media screen and (max-width: 900px) {
  .p-recruit__career-header {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.p-recruit__career-list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .p-recruit__career-list {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
  }
}

.p-recruit__career-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 2px solid #DFDFDF;
}
@media screen and (max-width: 768px) {
  .p-recruit__career-list-link {
    padding-right: 12px;
    padding-bottom: 8px;
  }
}
@media (any-hover: hover) {
  .p-recruit__career-list-link:hover .circle::before {
    background-color: #A81A1A;
  }
  .p-recruit__career-list-link:hover .circle::after {
    background: #FFF;
  }
  .p-recruit__career-list-link:hover.--green .circle::before {
    background-color: #00483B;
  }
  .p-recruit__career-list-link:hover.--green .circle::after {
    background: #FFF;
  }
  .p-recruit__career-list-link:hover.--blue .circle::before {
    background-color: #0C3A6F;
  }
  .p-recruit__career-list-link:hover.--blue .circle::after {
    background: #FFF;
  }
}
.p-recruit__career-list-link.--green .circle::after {
  background: #00483B;
}
.p-recruit__career-list-link.--blue .circle::after {
  background: #0C3A6F;
}
.p-recruit__career-list-link .text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-recruit__career-list-link .text {
    font-size: 20px;
  }
}
.p-recruit__career-list-link .circle {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit__career-list-link .circle {
    width: 20px;
    height: 20px;
  }
}
.p-recruit__career-list-link .circle::before, .p-recruit__career-list-link .circle::after {
  content: "";
  position: absolute;
  display: inline-block;
}
.p-recruit__career-list-link .circle::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFF;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.p-recruit__career-list-link .circle::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 16px;
  -webkit-mask-image: url(../img/common/button-arrow-red.png);
          mask-image: url(../img/common/button-arrow-red.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #A81A1A;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
@media screen and (max-width: 768px) {
  .p-recruit__career-list-link .circle::after {
    width: 5px;
    height: 10px;
  }
}

.p-recruit__career-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-recruit__career-title {
    font-size: 24px;
  }
}
.p-recruit__career-title .sm {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .p-recruit__career-title .sm {
    font-size: 20px;
  }
}

/* object > project > contact
--------------------------------------------- */
.p-contact {
  overflow-x: hidden;
}

.p-contact__contents {
  padding: 64px 0;
  background-image: url(../img/contact/contact-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-contact__contents {
    padding: 40px 0;
    background-image: url(../img/contact/contact-bg-sp.webp);
  }
}

.p-contact__lead {
  font-size: 15px;
  font-weight: 700;
  line-height: 2.1333333333;
}

.p-contact__lead-link {
  color: #A81A1A;
  text-decoration: underline;
}

.p-contact__inner {
  max-width: 1024px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-contact__content {
  margin-top: 79px;
}
@media screen and (max-width: 768px) {
  .p-contact__content {
    margin-top: 40px;
  }
}
.p-contact__content.p-contact__content--entry {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .p-contact__content.p-contact__content--entry {
    margin-top: 40px;
  }
}

.file-upload-message {
  color: #A81A1A;
  font-size: 16px;
  margin-top: 4px;
}

/* object > project > service
--------------------------------------------- */
.p-service {
  overflow-x: hidden;
}

.p-service__breadcrumb {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-service__breadcrumb {
    margin-top: 48px;
  }
}

.p-service__contents {
  padding: 107px 0 107px;
  background-image: url(../img/service/main-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-service__contents {
    padding: 40px 0 40px;
    background-image: url(../img/service/main-bg-sp.webp);
  }
}

/* 共通 */
.p-service__card {
  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: 1040px) {
  .p-service__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-service__card {
    width: 100%;
  }
}
.p-service__card.--agent {
  -webkit-column-gap: 78px;
     -moz-column-gap: 78px;
          column-gap: 78px;
}
@media screen and (max-width: 1240px) {
  .p-service__card.--agent {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.p-service__card.--agent .p-service__card-title .colored {
  color: #A81A1A;
}
.p-service__card.--agent .p-service__card-lead {
  color: #A81A1A;
}
.p-service__card.--agent .p-service__card-box {
  background-color: #A81A1A;
  background-image: url(../img/service/agent-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-service__card.--agent .p-service__card-box {
    background-image: url(../img/service/agent-bg-sp.webp);
  }
}
.p-service__card.--agent .p-service__card-sns {
  border-top: 2px solid #A81A1A;
}
.p-service__card.--design {
  -webkit-column-gap: 79px;
     -moz-column-gap: 79px;
          column-gap: 79px;
}
@media screen and (max-width: 1240px) {
  .p-service__card.--design {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.p-service__card.--design .p-service__card-title .colored {
  color: #217036;
}
.p-service__card.--design .p-service__card-lead {
  color: #00483B;
}
.p-service__card.--design .p-service__card-box {
  background-color: #00483B;
  background-image: url(../img/service/design-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-service__card.--design .p-service__card-box {
    background-image: url(../img/service/design-bg-sp.webp);
  }
}
.p-service__card.--design .p-service__card-sns {
  border-top: 2px solid #00483B;
}
.p-service__card.--tech {
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media screen and (max-width: 1240px) {
  .p-service__card.--tech {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.p-service__card.--tech .p-service__card-title .colored {
  color: #0C3A6F;
}
.p-service__card.--tech .p-service__card-lead {
  color: #0C3A6F;
}
.p-service__card.--tech .p-service__card-box {
  background-color: #0C3A6F;
  background-image: url(../img/service/tech-bg.webp);
}
@media screen and (max-width: 768px) {
  .p-service__card.--tech .p-service__card-box {
    background-image: url(../img/service/tech-bg-sp.webp);
  }
}
.p-service__card.--tech .p-service__card-sns {
  border-top: 2px solid #0C3A6F;
}
.p-service__card.--tech .p-service__card-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 515px;
          flex: 0 0 515px;
}
@media screen and (max-width: 1240px) {
  .p-service__card.--tech .p-service__card-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 470px;
            flex: 0 0 470px;
  }
}
@media screen and (max-width: 768px) {
  .p-service__card.--tech .p-service__card-left {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.p-service__tech-line {
  margin-top: 40px;
  border-top: 2px solid #0C3A6F;
  margin-right: -110px;
}
@media screen and (max-width: 1240px) {
  .p-service__tech-line {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-service__tech-line {
    margin-top: 16px;
  }
}

.p-service__card-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 483px;
          flex: 0 0 483px;
}
@media screen and (max-width: 1240px) {
  .p-service__card-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 470px;
            flex: 0 0 470px;
  }
}
@media screen and (max-width: 768px) {
  .p-service__card-left {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.p-service__card-right {
  margin-top: 88px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 768px) {
  .p-service__card-right {
    margin-top: 27px;
    margin-right: -25px;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

@media screen and (max-width: 768px) {
  .p-service__card-photo {
    margin-top: 24px;
  }
}

.p-service__card-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -1.6px;
  line-height: 1.1;
}
@media screen and (max-width: 1240px) {
  .p-service__card-title {
    font-size: 74px;
  }
}
@media screen and (max-width: 768px) {
  .p-service__card-title {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: initial;
  }
}

.p-service__card-lead {
  font-size: 22.35px;
  font-weight: 700;
  line-height: 64.72px;
}
@media screen and (max-width: 1240px) {
  .p-service__card-lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-service__card-lead {
    margin-left: -5px;
    margin-right: -5px;
    margin-top: 13px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.p-service__card-box {
  padding: 57px 10px 57px 31px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-right: -110px;
}
@media screen and (max-width: 1240px) {
  .p-service__card-box {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-service__card-box {
    padding: 17px 26px 17px 24px;
  }
}

.p-service__card-text {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-service__card-text {
    font-size: 16px;
  }
}
.p-service__card-text:not(:first-child) {
  margin-top: 1em;
}

.p-service__card-box-inner {
  max-width: 528px;
}

.p-service__card-sns {
  padding-top: 40px;
  margin-top: 40px;
  margin-right: -110px;
}
@media screen and (max-width: 1240px) {
  .p-service__card-sns {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-service__card-sns {
    padding-top: 16px;
    margin-top: 16px;
  }
}

.p-service__card-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.p-service__card-sns-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
}

.p-service__card-sns-link {
  display: block;
}
.p-service__card-sns-link.--button {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.p-service__card-sns-link img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 共通：リスト 80px */
.p-service__list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 64px;
     -moz-column-gap: 64px;
          column-gap: 64px;
}
@media screen and (max-width: 1240px) {
  .p-service__list {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media screen and (max-width: 1040px) {
  .p-service__list {
    margin: 40px auto 0;
    grid-template-columns: 1fr;
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .p-service__list {
    width: 100%;
  }
}

.p-service__list-item:nth-of-type(1) .p-service__list-meta {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-service__list-item:nth-of-type(1) .p-service__list-meta {
    margin-top: 20px;
  }
}
.p-service__list-item:nth-of-type(2) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-service__list-item:nth-of-type(2) {
    margin-top: 32px;
  }
}
.p-service__list-item:nth-of-type(2) .p-service__list-meta {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .p-service__list-item:nth-of-type(2) .p-service__list-meta {
    margin-top: 20px;
  }
}
.p-service__list-item:nth-of-type(3) {
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .p-service__list-item:nth-of-type(3) {
    margin-top: 32px;
  }
}

.p-service__list-body {
  margin-top: 24px;
}

.p-service__list-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  padding-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 1240px) {
  .p-service__list-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .p-service__list-title {
    font-size: 24px;
    padding-bottom: 16px;
    line-height: 1.5;
  }
}
.p-service__list-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #171717;
}

.p-service__list-desc {
  margin-top: 24px;
  color: #5A5A5A;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.32px;
}

.p-service__list-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.p-service__list-sns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
}

.p-service__card-sns-link {
  display: block;
}
.p-service__card-sns-link img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service__list-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 13px;
     -moz-column-gap: 13px;
          column-gap: 13px;
}
@media (any-hover: hover) {
  .p-service__list-link:hover .ring {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .p-service__list-link:hover .circle::before {
    -webkit-transform: scale(1.1875);
            transform: scale(1.1875);
    background-color: #A81A1A;
  }
  .p-service__list-link:hover .circle::after {
    background: #FFF;
    width: 12px;
    height: 24px;
  }
}
.p-service__list-link .text {
  color: #A81A1A;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.p-service__list-link .ring {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #A81A1A;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-service__list-link .circle {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
}
.p-service__list-link .circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #A81A1A;
  -webkit-transition: background-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-color 0.4s ease, transform 0.4s ease;
  transition: background-color 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-service__list-link .circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6px;
  height: 12px;
  -webkit-mask-image: url(../img/common/button-arrow-red.png);
          mask-image: url(../img/common/button-arrow-red.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #A81A1A;
  -webkit-transition: background 0.4s ease, width 0.4s ease, height 0.4s ease;
  transition: background 0.4s ease, width 0.4s ease, height 0.4s ease;
}

/* Lead */
.p-service__lead-inner {
  max-width: 1166px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-service__lead-content {
  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: 900px) {
  .p-service__lead-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-service__lead-content {
    width: 100%;
  }
}

.p-service__lead-body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-service__lead-title {
  color: #A81A1A;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 1240px) {
  .p-service__lead-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .p-service__lead-title {
    font-size: 22px;
    letter-spacing: 0.88px;
  }
}

.p-service__lead-textarea {
  margin-top: 24px;
  padding-right: 16px;
}
@media screen and (max-width: 768px) {
  .p-service__lead-textarea {
    padding-right: 0;
  }
}

.p-service__lead-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 41px;
}
@media screen and (max-width: 768px) {
  .p-service__lead-text {
    font-size: 16px;
    line-height: 2;
  }
}
.p-service__lead-text .colored {
  color: #FFF;
  background-color: #A81A1A;
  font-weight: 700;
}

.p-service__lead-photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 456px;
          flex: 0 0 456px;
}
@media screen and (max-width: 1240px) {
  .p-service__lead-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
  }
}
@media screen and (max-width: 900px) {
  .p-service__lead-photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.p-service__lead-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* bloom talent agent */
.p-service__agent {
  scroll-margin-top: 80px;
  padding: 54px 0 0;
}
@media screen and (max-width: 768px) {
  .p-service__agent {
    scroll-margin-top: 64px;
    padding: 0 0 0;
  }
}

.p-service__agent-inner {
  max-width: 1330px;
  margin-inline: auto;
  padding: 0 25px;
}

/* talent x office design */
.p-service__design {
  scroll-margin-top: 80px;
  padding: 77px 0 0;
}
@media screen and (max-width: 768px) {
  .p-service__design {
    scroll-margin-top: 64px;
    padding: 40px 0 0;
  }
}

.p-service__design-inner {
  max-width: 1330px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-service__design-btn-wrap {
  margin-top: 47px;
}
@media screen and (max-width: 768px) {
  .p-service__design-btn-wrap {
    margin-top: 24px;
  }
  .p-service__design-btn-wrap .circle {
    width: 32px;
    height: 32px;
  }
  .p-service__design-btn-wrap .circle::after {
    width: 8px;
    height: 16px;
  }
}

/* talent x AI technology */
.p-service__tech {
  scroll-margin-top: 80px;
  padding: 57px 0 0;
}
@media screen and (max-width: 768px) {
  .p-service__tech {
    scroll-margin-top: 64px;
    padding: 40px 0 0;
  }
}

.p-service__tech-inner {
  max-width: 1330px;
  margin-inline: auto;
  padding: 0 25px;
}

/* object > project > privacy
--------------------------------------------- */
.p-privacy__breadcrumb {
  margin-top: 101px;
}
@media screen and (max-width: 768px) {
  .p-privacy__breadcrumb {
    margin-top: 40px;
  }
}

.p-privacy__contents {
  padding: 80px 0 80px;
  background-image: url(../img/privacy/privacy-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-privacy__inner {
  max-width: 1170px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-privacy__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
}
@media screen and (max-width: 768px) {
  .p-privacy__items {
    gap: 40px;
  }
}

.p-privacy__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-privacy__title {
    font-size: 20px;
    line-height: 1;
  }
}

.p-privacy__textarea {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-privacy__textarea {
    margin-top: 24px;
  }
}

.p-privacy__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.0625;
}
@media screen and (max-width: 768px) {
  .p-privacy__text {
    font-size: 14px;
    line-height: 1.71429;
  }
}
.p-privacy__text + .p-privacy__text {
  margin-top: 1em;
}

.p-privacy__btn-wrp {
  text-align: center;
  margin-top: 64px;
}
.p-privacy__btn-wrp .c-link-button02 {
  max-width: 330px;
  -webkit-column-gap: 57px;
     -moz-column-gap: 57px;
          column-gap: 57px;
  padding: 22px 24px 22px 10px;
}
@media screen and (max-width: 768px) {
  .p-privacy__btn-wrp .c-link-button02 {
    padding: 18px 17px 18px 10px;
    -webkit-column-gap: 68px;
       -moz-column-gap: 68px;
            column-gap: 68px;
  }
}
.p-privacy__btn-wrp .c-link-button02 .text {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-privacy__btn-wrp .c-link-button02 .text {
    font-size: 18px;
  }
}

/* object > project > thanks
--------------------------------------------- */
.p-thanks__contents {
  padding: 80px 0;
  background-image: url(../img/contact/thanks-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-thanks__contents {
    padding: 41px 0 43px;
    background-image: url(../img/contact/thanks-bg-sp.webp);
  }
}

.p-thanks__breadcrumb {
  margin-top: 101px;
}
@media screen and (max-width: 768px) {
  .p-thanks__breadcrumb {
    margin-top: 40px;
  }
}

.p-thanks__message {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-thanks__message {
    font-size: 27px;
    line-height: 1.4814814815;
  }
}
.p-thanks__message .sm {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .p-thanks__message .sm {
    font-size: 27px;
    line-height: 1.4814814815;
  }
}

.p-thanks__textarea {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-thanks__textarea {
    margin-top: 32px;
    padding: 0 25px;
  }
}

.p-thanks__text {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 2.1333333333;
}
@media screen and (max-width: 768px) {
  .p-thanks__text {
    line-height: 1.86667;
  }
}
.p-thanks__text:not(:first-of-type) {
  margin-top: 1em;
}

.p-thanks__btn-wrap {
  text-align: center;
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  .p-thanks__btn-wrap {
    margin-top: 40px;
  }
}

/* object > project > office design
--------------------------------------------- */
.p-design__breadcrumb {
  margin-top: 35px;
}

.p-design__contents {
  padding: 64px 0 64px;
  background-image: url(../img/design/main-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-design__inner {
  max-width: 1166px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-design__heading {
  color: #00483B;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-design__heading {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.96px;
  }
}

.p-design__office-lead {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-design__office-lead {
    margin-top: 9px;
  }
}

.p-design__lead-title {
  color: #00483B;
  font-size: 22.35px;
  line-height: 2.89573;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-design__lead-title {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* Office */
.p-design__office-header {
  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: 768px) {
  .p-design__title-link {
    display: none;
  }
}

.p-design__office-sp-link {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-design__office-sp-link {
    display: block;
    margin-top: 24px;
    text-align: center;
  }
}

.p-design__lead-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-design__lead-text {
    font-size: 16px;
    line-height: 2;
  }
}

.p-design__office-box {
  margin-top: 64px;
  padding: 64px 10px;
  background-color: #FFF;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .p-design__office-box {
    margin-top: 40px;
    padding: 32px 9px;
    border-radius: 4.66px;
  }
}

.p-design__office-box-inner {
  max-width: 989px;
  margin-inline: auto;
}

.p-design__office-box-pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-design__strong {
  margin-top: 68px;
}
@media screen and (max-width: 768px) {
  .p-design__strong {
    margin-top: 41px;
  }
}

.p-design__strong-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-design__strong-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.p-design__strong-left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 768px) {
  .p-design__strong-left {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.p-design__strong-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 325px;
          flex: 0 0 325px;
}
@media screen and (max-width: 768px) {
  .p-design__strong-right {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 220px;
    margin-inline: auto;
  }
}
.p-design__strong-right img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-design__title {
  color: #00483B;
  font-size: 32px;
  font-weight: 700;
  line-height: 2.02249;
}
@media screen and (max-width: 768px) {
  .p-design__title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.96px;
    line-height: 1.5;
  }
}

.p-design__strong-lead {
  margin-top: 11px;
}
@media screen and (max-width: 768px) {
  .p-design__strong-lead {
    margin-top: 24px;
  }
}

.p-design__strong-lead-text {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-design__strong-lead-text {
    font-size: 16px;
  }
}

.p-design__strong-list {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  row-gap: 18px;
}
@media screen and (max-width: 768px) {
  .p-design__strong-list {
    margin-top: 24px;
    row-gap: 8px;
  }
}

.p-design__strong-list-item {
  width: calc((100% - 36px) / 3);
  padding: 16px 8px;
  border: 1px solid #00483B;
  background-color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  color: #00483B;
  font-size: 20px;
  letter-spacing: 0.8px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-design__strong-list-item {
    width: 100%;
    font-size: 18px;
    padding: 14.4px 8px 14.4px;
    letter-spacing: 0.72px;
  }
}

/* Home */
.p-design__home {
  padding: 64px 0 0;
}
@media screen and (max-width: 768px) {
  .p-design__home {
    padding: 73px 0 0;
  }
}

.p-design__home-lead {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-design__home-lead {
    margin-top: 16px;
  }
}

.p-design__home-box {
  margin-top: 32px;
  padding: 46px 10px 51px;
  border-radius: 16px;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .p-design__home-box {
    margin-top: 40px;
    padding: 10px 12px 27px;
  }
}

.p-design__home-box-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
@media screen and (max-width: 768px) {
  .p-design__home-box-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.p-design__home-box-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 526px;
          flex: 0 0 526px;
}
@media screen and (max-width: 768px) {
  .p-design__home-box-item {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.p-design__home-box-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-design__home-box-title {
    font-size: 36px;
    line-height: 1.5;
  }
}
.p-design__home-box-title.--before {
  color: #CECECE;
}
.p-design__home-box-title.--after {
  color: #00483B;
}

.p-design__home-box-pic {
  margin-top: -7px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-design__home-box-pic {
    margin-top: -14px;
    border-radius: 4.48px;
  }
}
.p-design__home-box-pic img {
  border-radius: 8px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-design__home-box-pic img {
    border-radius: 4.48px;
  }
}

/* object > project > message
--------------------------------------------- */
.p-message__breadcrumb {
  margin-top: 77px;
}
@media screen and (max-width: 768px) {
  .p-message__breadcrumb {
    margin-top: 48px;
  }
}

.p-message__content {
  padding: 80px 0 95px;
  background-image: url(../img/message/message-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-message__content {
    padding: 64px 0 64px;
    background-image: url(../img/message/message-bg-sp.webp);
  }
}

.p-message__inner {
  max-width: 1170px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-message__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 900px) {
  .p-message__items {
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-message__items {
    gap: 74px;
  }
}
@media screen and (max-width: 500px) {
  .p-message__items {
    width: 100%;
  }
}

.p-message__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 54px;
}
@media screen and (max-width: 1040px) {
  .p-message__item {
    gap: 32px;
  }
}
@media screen and (max-width: 900px) {
  .p-message__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.p-message__item-profile {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
}
@media screen and (max-width: 1040px) {
  .p-message__item-profile {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 350px;
            flex: 0 0 350px;
  }
}
@media screen and (max-width: 900px) {
  .p-message__item-profile {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.p-message__item-photo {
  -webkit-filter: drop-shadow(8px 12px 20px rgba(161, 49, 38, 0.3));
          filter: drop-shadow(8px 12px 20px rgba(161, 49, 38, 0.3));
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-message__item-photo {
    border-radius: 6.5px;
    -webkit-filter: drop-shadow(6.5px 9.75px 16.25px rgba(161, 49, 38, 0.3));
            filter: drop-shadow(6.5px 9.75px 16.25px rgba(161, 49, 38, 0.3));
  }
}
@media screen and (max-width: 768px) {
  .p-message__item-photo .--pc {
    display: none;
  }
}
.p-message__item-photo .--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-message__item-photo .--sp {
    display: block;
  }
}
.p-message__item-photo img {
  border-radius: 8px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-message__item-photo img {
    border-radius: 6.5px;
  }
}

.p-message__name-block {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .p-message__name-block {
    margin-top: 32px;
    gap: 0;
  }
}

.p-message__name-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}

.p-message__position {
  padding-left: 16px;
  color: #A81A1A;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
.p-message__position::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #A81A1A;
}

.p-message__name {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-message__name {
    margin-top: 8px;
    font-size: 24px;
  }
}

.p-message__kana {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.32px;
}
.p-message__item-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.p-message__title {
  color: #A81A1A;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 1040px) {
  .p-message__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-message__title {
    font-size: 25px;
  }
}

.p-message__textarea {
  margin-top: 4px;
}
@media screen and (max-width: 900px) {
  .p-message__textarea {
    margin-top: 0;
  }
}

.p-message__text {
  font-size: 16px;
  line-height: 2.25;
  font-weight: 700;
}

.p-message__names {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-message__names {
    margin-top: 30px;
  }
}
.p-message__names .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .p-message__names .top {
    display: block;
  }
}
.p-message__names .top span {
  color: #A81A1A;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-message__names .top span {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .p-message__names .top span.sp-ml {
    margin-left: 1em;
  }
}

.p-message__profile {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-message__profile {
    margin-top: 30px;
  }
}
.p-message__profile .profile {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-message__profile .profile {
    font-size: 36px;
    line-height: 1.5;
  }
}
.p-message__profile .box {
  background-color: #FFF;
  border-radius: 8px;
  padding: 24px 21px;
  margin-top: -11px;
}
@media screen and (max-width: 768px) {
  .p-message__profile .box {
    border-radius: 4.68px;
    padding: 16px 12px 18px;
    margin-top: -14px;
  }
}
.p-message__profile .text {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

/* 削除 */
.p-message__history {
  margin-top: 71px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .p-message__history {
    margin-top: 32px;
  }
}

.p-message__history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 8px;
  border-bottom: 1px solid #DFDFDF;
}

.p-message__history-term {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 141px;
          flex: 0 0 141px;
  font-size: 16px;
  font-weight: 700;
}

.p-message__history-desc {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.p-message__history-desc.p-message__history-desc--colored {
  color: #A81A1A;
}

/* object > project > interview
--------------------------------------------- */
.p-interview__content {
  padding: 64px 0 120px;
  background-image: url(../img/interview/interview-single-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-interview__content {
    padding: 16px 0 66px;
    background-image: url(../img/interview/interview-single-bg-sp.webp);
  }
}

.p-interview__breadcrumb .p-breadcrumb span,
.p-interview__breadcrumb .p-breadcrumb a {
  color: #A81A1A;
}
.p-interview__breadcrumb .p-breadcrumb li:not(:first-of-type)::before {
  background-image: url(../img/common/breadcrumb-arrow-red.png);
}

.p-interview__inner {
  max-width: 1166px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-interview__top {
  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: 900px) {
  .p-interview__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 600px) {
  .p-interview__top {
    width: 100%;
  }
}

.p-interview__top-body {
  margin-top: 67px;
}
@media screen and (max-width: 900px) {
  .p-interview__top-body {
    margin-top: 21px;
  }
}

.p-interview__top-photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 524px;
          flex: 0 0 524px;
  border-radius: 8px;
}
@media screen and (max-width: 1040px) {
  .p-interview__top-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 480px;
            flex: 0 0 480px;
  }
}
@media screen and (max-width: 900px) {
  .p-interview__top-photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__top-photo .--pc {
    display: none;
  }
}
.p-interview__top-photo .--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-interview__top-photo .--sp {
    display: block;
  }
}
.p-interview__top-photo img {
  border-radius: 8px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-interview__top-catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-interview__top-catch {
    gap: 6px;
  }
}
.p-interview__top-catch span {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #A81A1A;
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5531;
  padding: 0 2px;
}
@media screen and (max-width: 1040px) {
  .p-interview__top-catch span {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__top-catch span {
    font-size: 24px;
    line-height: 1.3333;
  }
}

.p-interview__top-info {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .p-interview__top-info {
    margin-top: 24px;
    gap: 8px;
  }
}

.p-interview__top-position {
  color: #A81A1A;
  font-size: 24px;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interview__top-position {
    font-size: 16px;
    padding-left: 16px;
    line-height: 1;
  }
}
.p-interview__top-position::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #A81A1A;
}
@media screen and (max-width: 768px) {
  .p-interview__top-position::before {
    width: 4px;
    height: 4px;
  }
}

.p-interview__top-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-interview__top-name {
    gap: 18px;
  }
}
.p-interview__top-name .kanji {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-interview__top-name .kanji {
    font-size: 20px;
  }
}
.p-interview__top-name .kana {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
}
@media screen and (max-width: 768px) {
  .p-interview__top-name .kana {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

@media screen and (max-width: 900px) {
  .p-interview__profile {
    margin: 27px auto 0;
    width: 75%;
  }
}
@media screen and (max-width: 600px) {
  .p-interview__profile {
    width: 100%;
  }
}

.p-interview__profile-title {
  font-family: "IBM Plex Sans", sans-serif;
  color: #A81A1A;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.8px;
}
@media screen and (max-width: 768px) {
  .p-interview__profile-title {
    font-size: 36px;
    line-height: 1.5;
  }
}

.p-interview__profile-box {
  margin-top: -12px;
  background-color: #A81A1A;
  border-radius: 8px;
  padding: 18px 18px;
}
@media screen and (max-width: 768px) {
  .p-interview__profile-box {
    padding: 17px 6px 17px 19px;
    border-radius: 4.68px;
    margin-top: -14px;
  }
}

.p-interview__profile-text {
  max-width: 941px;
  margin: 0 auto;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.p-interview__motivations {
  margin-top: 64px;
}
@media screen and (max-width: 900px) {
  .p-interview__motivations {
    width: 75%;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 600px) {
  .p-interview__motivations {
    width: 100%;
  }
}

.p-interview__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 118px;
}
@media screen and (max-width: 1040px) {
  .p-interview__card {
    gap: 64px;
  }
}
@media screen and (max-width: 900px) {
  .p-interview__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-interview__card.p-interview__card--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .p-interview__card.p-interview__card--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-interview__card-photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 443px;
          flex: 0 0 443px;
  border-radius: 8px;
}
@media screen and (max-width: 900px) {
  .p-interview__card-photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__card-photo .--pc {
    display: none;
  }
}
.p-interview__card-photo .--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-interview__card-photo .--sp {
    display: block;
  }
}
.p-interview__card-photo img {
  border-radius: 8px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-interview__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  padding-bottom: 18px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-interview__title {
    padding-bottom: 24px;
  }
}
.p-interview__title .en {
  font-family: "IBM Plex Sans", sans-serif;
  color: #A81A1A;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.3035714286;
  letter-spacing: -1.12px;
}
@media screen and (max-width: 768px) {
  .p-interview__title .en {
    font-size: 38px;
    letter-spacing: -0.8px;
    line-height: 1.3;
  }
}
.p-interview__title .jp {
  font-size: 24px;
  font-weight: 700;
  padding-left: 28px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interview__title .jp {
    font-size: 19px;
    padding-left: 20px;
  }
}
.p-interview__title .jp::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #A81A1A;
}
@media screen and (max-width: 768px) {
  .p-interview__title .jp::before {
    width: 8px;
    height: 8px;
  }
}

.p-interview__card-textarea {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-interview__card-textarea {
    margin-top: 30px;
  }
}

.p-interview__card-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-interview__card-text {
    line-height: 1.75;
  }
}

.p-interview__schedule {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule {
    margin-top: 40px;
  }
}

.p-interview__schedule-timeline {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-timeline {
    margin-top: 35px;
  }
}
.p-interview__schedule-timeline .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 43px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-timeline .list {
    gap: 24px;
  }
}
.p-interview__schedule-timeline .list::before {
  content: "";
  position: absolute;
  left: 59px;
  top: 0;
  display: inline-block;
  width: 1px;
  height: 100%;
  border: 1px dashed #000;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-timeline .list::before {
    left: 40px;
  }
}
.p-interview__schedule-timeline .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 42px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-timeline .list-item {
    gap: 16px;
  }
}
.p-interview__schedule-timeline .list-item:last-of-type::after {
  content: "";
}
.p-interview__schedule-timeline .time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  height: 32px;
  background-color: #A81A1A;
  border-radius: 112px;
  color: #FFF;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-timeline .time {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    height: 24px;
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
.p-interview__schedule-timeline .desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.p-interview__schedule-timeline .title {
  color: #A81A1A;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-timeline .title {
    font-size: 24px;
  }
}
.p-interview__schedule-timeline .text {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-timeline .text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
  }
}

/* vision */
.p-interview__vision {
  margin-top: 64px;
}
@media screen and (max-width: 900px) {
  .p-interview__vision {
    margin: 40px auto 0;
    width: 75%;
  }
}
@media screen and (max-width: 600px) {
  .p-interview__vision {
    width: 100%;
  }
}

/* day off */
.p-interview__off {
  margin-top: 64px;
}
@media screen and (max-width: 900px) {
  .p-interview__off {
    margin: 40px auto 0;
    width: 75%;
  }
}
@media screen and (max-width: 600px) {
  .p-interview__off {
    width: 100%;
  }
}

/* object > project > interviews
--------------------------------------------- */
.p-interviews__breadcrumb {
  margin-top: 77px;
}
@media screen and (max-width: 768px) {
  .p-interviews__breadcrumb {
    margin-top: 50px;
  }
}

.p-interviews__content {
  padding: 64px 0 64px;
  background-image: url(../img/interview/interview-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-interviews__content {
    padding: 40px 0 40px;
    background-image: url(../img/interview/interview-bg-sp.webp);
  }
}

.p-interviews__inner {
  max-width: 1166px;
  margin-inline: auto;
  padding: 0 25px;
}

.p-interviews__items {
  margin-top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 65px;
}
@media screen and (max-width: 900px) {
  .p-interviews__items {
    width: 75%;
    margin: 75px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-interviews__items {
    margin: 40px auto 0;
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .p-interviews__items {
    width: 100%;
  }
}

.p-interviews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 54px;
  position: relative;
}
@media screen and (max-width: 1240px) {
  .p-interviews__item {
    gap: 32px;
  }
}
@media screen and (max-width: 900px) {
  .p-interviews__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
@media (any-hover: hover) {
  .p-interviews__item:hover .p-interview__button::before {
    background-color: #A81A1A;
  }
  .p-interviews__item:hover .p-interview__button::after {
    background: #FFF;
  }
}

.p-interview__button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-interview__button {
    width: 32px;
    height: 32px;
    bottom: 2px;
  }
}
.p-interview__button::before, .p-interview__button::after {
  content: "";
  position: absolute;
  display: inline-block;
}
.p-interview__button::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFF;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.p-interview__button::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-mask-image: url(../img/common/button-arrow-red.png);
          mask-image: url(../img/common/button-arrow-red.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #A81A1A;
  display: inline-block;
  width: 12px;
  height: 24px;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
@media screen and (max-width: 768px) {
  .p-interview__button::after {
    width: 8px;
    height: 16px;
  }
}

.p-interviews__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  -webkit-filter: drop-shadow(8px 12px 20px rgba(161, 49, 38, 0.3));
          filter: drop-shadow(8px 12px 20px rgba(161, 49, 38, 0.3));
  border-radius: 8px;
}
@media screen and (max-width: 1240px) {
  .p-interviews__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 350px;
            flex: 0 0 350px;
  }
}
@media screen and (max-width: 1040px) {
  .p-interviews__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
  }
}
@media screen and (max-width: 900px) {
  .p-interviews__photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    -webkit-filter: none;
            filter: none;
  }
}
@media screen and (max-width: 768px) {
  .p-interviews__photo .--pc {
    display: none;
  }
}
.p-interviews__photo .--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-interviews__photo .--sp {
    display: block;
  }
}
.p-interviews__photo img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-interviews__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 900px) {
  .p-interviews__body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.p-interviews__lead {
  border-bottom: 1px solid #171717;
  padding-bottom: 17.75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-interviews__lead {
    gap: 6px;
    padding-bottom: 21px;
  }
}
.p-interviews__lead span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  background-color: #FFF;
  color: #A81A1A;
  padding: 0 6px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.55308;
}
@media screen and (max-width: 1240px) {
  .p-interviews__lead span {
    font-size: 38px;
  }
}
@media screen and (max-width: 1040px) {
  .p-interviews__lead span {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  .p-interviews__lead span {
    font-size: 24px;
    line-height: 1.3333;
    padding: 0 4px;
  }
}

.p-interviews__name {
  margin-top: 10.25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .p-interviews__name {
    margin-top: 16px;
    gap: 18px;
  }
}
.p-interviews__name .kanji {
  color: #A81A1A;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-interviews__name .kanji {
    font-size: 20px;
    line-height: 1.65;
  }
}
.p-interviews__name .kana {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3125;
  display: inline-block;
  position: relative;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media screen and (max-width: 768px) {
  .p-interviews__name .kana {
    font-size: 16px;
    line-height: 1.375;
  }
}

.p-interviews__position {
  margin-top: 13px;
  color: #A81A1A;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interviews__position {
    margin-top: 11px;
    font-size: 16px;
    padding-left: 16px;
  }
}
.p-interviews__position::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #A81A1A;
}
@media screen and (max-width: 768px) {
  .p-interviews__position::before {
    width: 4px;
    height: 4px;
  }
}

.p-interviews__pagination {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .p-interviews__pagination {
    margin-top: 50px;
  }
}

/* object > utility > display
--------------------------------------------- */
.u-tab-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-tab-br {
    display: inline;
  }
}

.u-tab-display {
  display: inline;
}
@media screen and (max-width: 768px) {
  .u-tab-display {
    display: none;
  }
}

.u-sm-display {
  display: inline;
}
@media screen and (max-width: 500px) {
  .u-sm-display {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */