@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@font-face {
  font-family: "pref";
  font-display: swap;
  src: url("../fonts/pres.woff2") format("woff2");
}
html {
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  overflow-x: clip;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #111;
  font-weight: 500;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #2A2A2A;
}

img {
  vertical-align: bottom;
  border: none;
}

li {
  list-style: none;
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

i, em {
  font-style: normal;
}

@media all and (max-width: 750px) {
  .pcbr {
    display: none;
  }
}

.spbr {
  display: none;
}
@media all and (max-width: 750px) {
  .spbr {
    display: block;
  }
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: clip;
  position: relative;
  padding-left: 280px;
  box-sizing: border-box;
}
@media all and (max-width: 1120px) {
  #wrapper {
    padding-left: 0;
  }
}

.inner {
  width: 100%;
  max-width: none;
  padding: 0 30px;
  box-sizing: border-box;
  margin: 0 auto;
}
@media all and (max-width: 767px) {
  .inner {
    padding: 0 20px;
    max-width: 640px;
  }
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  display: block;
  width: 280px;
  height: 100%;
  overflow: scroll;
  padding: 40px 30px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.smenu::-webkit-scrollbar {
  display: none;
}
@media all and (max-width: 1120px) {
  .smenu {
    width: 100%;
    height: auto;
    padding: 0;
    overflow: visible;
  }
}

.sp_logo {
  display: none;
}
@media all and (max-width: 1120px) {
  .sp_logo {
    display: block;
    padding: 20px;
    box-sizing: border-box;
  }
  .sp_logo img {
    height: 30px;
    width: auto;
  }
}

.logo {
  display: block;
  position: relative;
  z-index: 110;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 20px;
}
.logo:hover img {
  opacity: 0.6;
}
.logo img {
  display: inline-block;
  width: auto;
  height: 32px;
  transition: all 0.3s ease;
}
@media all and (max-width: 767px) {
  .logo img {
    height: 30px;
    width: auto;
  }
}

#nav-drawer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media all and (max-width: 767px) {
  #nav-drawer {
    align-items: center;
  }
}

#nav-open {
  display: none;
}
#nav-open .ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#nav-open .hamRotate.active {
  transform: rotate(45deg);
}
#nav-open .hamRotate180.active {
  transform: rotate(180deg);
}
#nav-open .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #D9D9D9;
  stroke-width: 4;
  stroke-linecap: round;
}
#nav-open .ham8 .top {
  stroke-dasharray: 40 160;
}
#nav-open .ham8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
#nav-open .ham8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
#nav-open .ham8.active .top {
  stroke-dashoffset: -64px;
}
#nav-open .ham8.active .middle {
  transform: rotate(90deg);
}
#nav-open .ham8.active .bottom {
  stroke-dashoffset: -64px;
}
@media all and (max-width: 1120px) {
  #nav-open {
    position: absolute;
    right: 3px;
    top: 0;
    display: block;
  }
}

#nav-close {
  display: block;
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

#nav-content {
  overflow: auto;
  top: 0;
  left: 0;
  z-index: 9999; /*最前面に*/
  width: 280px; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: none; /*最大幅（調整してください）*/
  height: 100%;
  box-sizing: border-box;
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  -webkit-overflow-scrolling: touch;
}
#nav-content a {
  color: white;
  display: block;
  text-decoration: none;
  font-size: 1.4rem;
}
#nav-content .in {
  padding: 20px 12px 30px 12px;
  box-sizing: border-box;
}
#nav-content .egf {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 5px;
  color: white;
}
#nav-content .nv_acd {
  margin: 20px 0;
}
#nav-content .acd_ttl {
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
#nav-content .acd_ttl i {
  transition: all 0.3s ease;
}
#nav-content .acd_ttl:hover i {
  color: #B33A3A;
}
#nav-content .acd_ttl:hover {
  color: #B33A3A;
}
#nav-content .plus {
  width: 20px;
  height: 20px;
  position: absolute;
  transition: all 0.3s ease;
  right: 0;
  top: 0;
}
#nav-content .plus:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1.75px;
  width: 100%;
  height: 3.5px;
  background: white;
  border-bottom: 1px solid #2A2A2A;
  border-top: 1px solid #2A2A2A;
  z-index: 2;
}
#nav-content .plus:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -0.75px;
  width: 1.5px;
  height: 100%;
  background: white;
  transition: all 0.3s ease;
}
#nav-content .open .plus {
  transform: rotate(180deg);
}
#nav-content .open .plus:after {
  opacity: 0;
  visibility: hidden;
}
#nav-content .ac1 {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0 20px;
}
#nav-content .ac1 .r {
  writing-mode: vertical-rl;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  color: #B33A3A;
  transform: rotate(180deg);
  text-align: center;
  border-left: 1px solid white;
}
#nav-content .acd_ct {
  padding-top: 10px;
}
#nav-content .acd_ct a {
  display: block;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 3px 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
#nav-content .acd_ct a:hover em:before {
  background: rgba(255, 82, 82, 0.4);
}
#nav-content .acd_ct .inl em {
  position: relative;
}
#nav-content .acd_ct .inl em:before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  margin-top: 0;
  margin-left: 0;
  width: 110%;
  height: 100%;
  transition: all 0.3s ease;
  background: none;
  filter: blur(15px);
}
#nav-content .acd_ct .inl i {
  position: relative;
  z-index: 2;
}
#nav-content .contact {
  text-align: center;
  padding: 13px 0;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  transition: all 0.3s ease;
}
#nav-content .contact i {
  transition: all 0.3s ease;
  margin-bottom: 0;
}
#nav-content .contact:hover i {
  color: #B33A3A;
}
#nav-content .contact:hover {
  color: #B33A3A;
}
#nav-content .nv_und {
  padding: 20px 12px 0 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  align-items: center;
}
#nav-content .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
#nav-content .lang a {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}
#nav-content .lang a:hover {
  opacity: 0.6;
}
#nav-content .lang a:nth-of-type(1) {
  border-right: 1px solid white;
  box-sizing: border-box;
  text-align: center;
  padding-right: 15px;
}
#nav-content .lang a:nth-of-type(2) {
  padding-left: 15px;
  box-sizing: border-box;
}
#nav-content .sns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
#nav-content .sns a {
  display: block;
  transition: all 0.3s ease;
}
#nav-content .sns a:hover {
  opacity: 0.6;
}
#nav-content .sns a img {
  height: 24px;
}
#nav-content .link1 a {
  transition: all 0.3s ease;
}
#nav-content .link1 i {
  transition: all 0.3s ease;
}
#nav-content .link1:hover a {
  color: #B33A3A;
}
#nav-content .link1:hover i {
  color: #B33A3A;
}
#nav-content {
  scrollbar-width: none;
}
#nav-content::-webkit-scrollbar {
  display: none;
}
@media all and (max-width: 1120px) {
  #nav-content {
    position: fixed;
    z-index: 100;
    opacity: 0;
    top: 70px;
    left: 10px;
    visibility: hidden;
    transform: translateX(-320px);
    max-width: 250px;
    width: 100%;
    height: auto;
    max-height: 90dvh;
    overflow: scroll;
    display: block;
    padding: 10px 16px 20px 16px;
    border: 1px solid #6E6E6E;
    box-sizing: border-box;
    background: rgba(101, 101, 101, 0.2);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-radius: 30px;
  }
  #nav-content .acd_ttl:hover i {
    color: white;
  }
  #nav-content .acd_ttl:hover {
    color: white;
  }
  #nav-content .link1:hover a {
    color: white;
  }
  #nav-content .link1:hover i {
    color: white;
  }
  #nav-content .logo {
    display: none;
  }
}
@media all and (max-width: 1120px) {
  #nav-content {
    max-height: calc(100dvh - 80px);
  }
}

#nav-input:checked ~ #nav-close {
  visibility: visible;
  opacity: 1;
}
#nav-input:checked ~ #nav-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}
#nav-input:checked ~ #nav-open span {
  transform: rotate(40deg);
  top: 41px;
}
@media all and (max-width: 767px) {
  #nav-input:checked ~ #nav-open span {
    top: 24px;
  }
}
#nav-input:checked ~ #nav-open span:before {
  bottom: 0;
  transform: rotate(100deg);
}
#nav-input:checked ~ #nav-open span:after {
  right: -100px;
  opacity: 0;
}

.nav-unshown {
  display: none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  position: relative;
}
footer .ft1, footer .ft2 {
  position: relative;
  z-index: 2;
}

/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.anm_all.trigger {
  opacity: 1;
}
.anm_all .item {
  opacity: 0;
}
.anm_all .item.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.delay0 {
  animation-delay: 0ms;
}
.trigger.delay1 {
  animation-delay: 100ms;
}
.trigger.delay2 {
  animation-delay: 200ms;
}
.trigger.delay3 {
  animation-delay: 300ms;
}
.trigger.delay4 {
  animation-delay: 400ms;
}
.trigger.delay5 {
  animation-delay: 500ms;
}
.trigger.delay6 {
  animation-delay: 600ms;
}
.trigger.delay7 {
  animation-delay: 700ms;
}
.trigger.delay8 {
  animation-delay: 800ms;
}
.trigger.delay9 {
  animation-delay: 900ms;
}
.trigger.delay10 {
  animation-delay: 1000ms;
}

@keyframes up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.ttl_v1 {
  text-align: center;
  color: white;
}
.ttl_v1 .eg {
  font-family: "Orbitron", sans-serif;
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 5px;
  color: white;
  letter-spacing: 0.12em;
}
.ttl_v1 .jp {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
}
@media all and (max-width: 767px) {
  .ttl_v1 .eg {
    font-size: 3rem;
    margin-bottom: 5px;
  }
  .ttl_v1 .jp {
    font-size: 1.6rem;
  }
}

footer {
  margin-top: 160px;
  padding-top: 117px;
  position: relative;
}
footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 100%;
  height: 100%;
  background: #1E1E1E;
  z-index: 1;
}
footer .inner {
  position: relative;
  z-index: 2;
}
@media all and (max-width: 767px) {
  footer {
    margin-top: 140px;
    padding-top: 101px;
  }
}

.foot_logo {
  display: block;
  margin: 0 auto;
  width: 445px;
  transition: all 0.3s ease;
}
.foot_logo:hover {
  opacity: 0.6;
}
@media all and (max-width: 767px) {
  .foot_logo {
    width: 333px;
    margin: 0;
  }
}

.ft1 {
  margin-top: 102px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
.ft1 .in {
  padding: 15px 0 30px 0;
  max-width: 940px;
  margin: 0 auto;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.ft1 a {
  display: block;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  text-align: center;
}
.ft1 a:hover {
  opacity: 0.6;
}
.ft1 .a1 {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 10px;
  text-align: center;
}
.ft1 .a2, .ft1 .a3 {
  color: #BFBFBF;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 24px;
}
.ft1 .a2:hover, .ft1 .a3:hover {
  opacity: 1;
  color: white;
}
.ft1 span.a1 {
  display: block;
  color: white;
}
@media all and (max-width: 767px) {
  .ft1 {
    margin-top: 80px;
  }
  .ft1 .in {
    padding: 15px 20px 20px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
  }
  .ft1 .a1 {
    text-align: left;
    margin-top: 24px;
    font-size: 1.6rem;
  }
  .ft1 .a2 {
    text-align: left;
    font-size: 1.3rem;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.58);
  }
}

.ft2 {
  padding: 80px 0;
  box-sizing: border-box;
  color: white;
  position: relative;
  text-align: center;
}
.ft2 .infos {
  position: relative;
}
.ft2 .add {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 24px;
}
.ft2 .copyright {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.7px;
  margin-top: 30px;
}
.ft2 .badge {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 80px;
  height: auto;
}
@media all and (max-width: 767px) {
  .ft2 {
    padding: 70px 0 60px 0;
    display: block;
    gap: 20px 0;
  }
  .ft2 .infos {
    order: 1;
  }
  .ft2 .add {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
  }
  .ft2 .copyright {
    font-size: 1rem;
    margin-top: 40px;
  }
  .ft2 .badge {
    right: 0;
    bottom: -11px;
    max-width: 65px;
  }
  .ft2 .badge img {
    max-width: 65px;
  }
}

.mv {
  padding-top: 60px;
  box-sizing: border-box;
}
.mv .inner {
  position: relative;
}
.mv .img {
  width: 51%;
  margin: 0 0 0 auto;
  padding: 0 40px 130px 0;
  box-sizing: border-box;
}
.mv .copy {
  position: absolute;
  left: 30px;
  bottom: 0;
}
.mv .copy .in {
  display: inline-block;
}
.mv .copy .eg {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1.25;
  color: white;
}
.mv .copy .jp {
  color: white;
  font-size: 1.8rem;
  text-align: right;
  margin-top: 10px;
  font-weight: normal;
}
.mv .copy .jp i {
  position: relative;
}
.mv .copy .jp i:before {
  content: "";
  position: absolute;
  top: 13px;
  left: -48px;
  width: 38px;
  background: white;
  height: 1px;
}
.mv .scr1 {
  position: absolute;
  right: 30px;
  bottom: 100px;
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  color: white;
  writing-mode: vertical-rl;
  text-decoration: none;
  z-index: 3;
  transition: all 0.3s ease;
}
.mv .scr1:hover {
  opacity: 0.6;
}
.mv .scr1 .l1 {
  position: absolute;
  top: 78px;
  left: 4px;
  width: 1px;
  height: 0;
  background: white;
  animation: line1 3s ease infinite;
  z-index: 3;
}
.mv .scr1 .l2 {
  position: absolute;
  top: 166px;
  left: 3px;
  width: 9px;
  height: 10px;
}
.mv .scr1 .l2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2A2A2A;
  z-index: 2;
  animation: line2 3s ease infinite;
}
.mv .scr1 .l2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  width: 1px;
  height: 10px;
  background: #FFF;
  transform: rotate(37deg);
}
@keyframes line1 {
  0% {
    height: 0;
    opacity: 0;
  }
  30% {
    height: 98px;
    opacity: 1;
  }
  100% {
    height: 98px;
    opacity: 1;
  }
}
@keyframes line2 {
  25% {
    left: 0;
    opacity: 1;
  }
  50% {
    left: 20px;
    opacity: 0;
  }
  100% {
    left: 20px;
    opacity: 0;
  }
}
@media all and (max-width: 1000px) {
  .mv .copy .eg {
    font-size: 5rem;
  }
}
@media all and (max-width: 767px) {
  .mv {
    padding-top: 80px;
  }
  .mv .img {
    width: 53%;
    margin: 0 auto 50px 0;
    padding: 0;
  }
  .mv .copy {
    position: relative;
    left: 0;
  }
  .mv .copy .in {
    display: inline-block;
  }
  .mv .copy .eg {
    font-size: 3.6rem;
  }
  .mv .copy .jp {
    font-size: 1.6rem;
    margin-top: 5px;
  }
  .mv .copy .jp i:before {
    top: 13px;
    left: -40px;
    width: 30px;
  }
  .mv .scr1 {
    right: 20px;
    bottom: unset;
    top: 17%;
  }
  .mv .scr1 .l1 {
    top: 78px;
  }
  .mv .scr1 .l2 {
    top: 146px;
  }
  @keyframes line1 {
    0% {
      height: 0;
      opacity: 0;
    }
    30% {
      height: 77px;
      opacity: 1;
    }
    100% {
      height: 77px;
      opacity: 1;
    }
  }
}

.sec1, .sec2, .sec3 {
  margin-top: 200px;
}
@media all and (max-width: 767px) {
  .sec1, .sec2, .sec3 {
    margin-top: 50vh;
  }
}

.lead1 {
  text-align: center;
  line-height: 2.3;
  font-size: 1.6rem;
  letter-spacing: 7px;
  color: white;
  margin-top: 30px;
}
.lead1 .eg {
  color: #B4B4B4;
}
.lead1 .eg1 {
  letter-spacing: 3px;
}
.lead1 .jp i {
  color: #C12727;
}
.lead1 .eg2 i {
  position: relative;
  padding-left: 75px;
  box-sizing: border-box;
}
.lead1 .eg2 i:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 65px;
  height: 1px;
  background: #B4B4B4;
}
@media all and (max-width: 767px) {
  .lead1 {
    letter-spacing: 5px;
    margin-top: 20px;
  }
  .lead1 .eg2 i {
    padding-left: 47px;
  }
  .lead1 .eg2 i:before {
    width: 36px;
  }
}

.lead2 {
  margin-top: 80px;
  text-align: center;
  line-height: 2.3;
  font-size: 1.6rem;
  letter-spacing: 7px;
  color: white;
}
.lead2 .jp2 {
  color: #777777;
  letter-spacing: 2.6px;
}
@media all and (max-width: 767px) {
  .lead2 {
    text-align: left;
    letter-spacing: 5px;
  }
}

.l-grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: 910px;
  margin: 40px auto 0 auto;
}
.l-grid4 .bx {
  text-align: center;
  color: white;
  letter-spacing: 0.1em;
}
.l-grid4 .bx img {
  display: inline-block;
  height: 90px;
  width: auto;
}
.l-grid4 .bx .tx1 {
  font-size: 1.5rem;
  margin-top: 10px;
}
.l-grid4 .bx .tx1 i {
  color: #C12727;
}
.l-grid4 .bx .tx2 {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 20px;
  color: #B4B4B4;
}
.l-grid4 .bx .tx2 i {
  display: block;
  color: white;
  margin-top: 5px;
}
@media all and (max-width: 767px) {
  .l-grid4 {
    margin: 30px auto 0 auto;
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }
  .l-grid4 .bx {
    text-align: center;
    color: white;
    letter-spacing: 0.1em;
  }
  .l-grid4 .bx img {
    display: inline-block;
    height: 90px;
    width: auto;
  }
  .l-grid4 .bx .tx1 {
    font-size: 1.6rem;
    margin-top: 10px;
  }
  .l-grid4 .bx .tx2 {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.sec2 .links {
  max-width: 67%;
  margin: 80px auto 0 auto;
}
.sec2 .links .bxx {
  margin-top: 80px;
}
.sec2 .links .bxx:nth-of-type(1) {
  margin-top: 0;
}
.sec2 .links a {
  display: inline-block;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}
.sec2 .links .eg {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 5px;
  color: white;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}
.sec2 .links .eg .rd {
  color: #C12727;
}
.sec2 .links .eg .rd2 {
  color: transparent;
  background: linear-gradient(to right, #C12727 50%, white 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.3s;
}
.sec2 .links .jp {
  position: relative;
  font-size: 2.4rem;
  padding-left: 250px;
  box-sizing: border-box;
  letter-spacing: 3px;
}
.sec2 .links .jp:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 220px;
  height: 1px;
  background: white;
}
.sec2 .links .jp i {
  padding-right: 35px;
  background: url("../images/arw1.png") top 9px right 5px no-repeat;
  background-size: 20px auto;
  transition: all 0.3s ease;
}
.sec2 .links a.active .rd2 {
  background-position: 0 100%;
}
.sec2 .links a.active .eg {
  color: #B33B3B;
}
.sec2 .links a:hover {
  opacity: 0.6;
}
.sec2 .links a:hover .jp i {
  padding-right: 35px;
  background: url(../images/arw1.png) top 9px right 0 no-repeat;
  background-size: 20px auto;
}
@media all and (max-width: 767px) {
  .sec2 .links {
    margin-top: 40px;
    max-width: 100%;
  }
  .sec2 .links .bxx {
    margin-top: 40px;
  }
  .sec2 .links .bxx:nth-of-type(1) {
    margin-top: 0;
  }
  .sec2 .links .eg {
    font-size: 4rem;
  }
  .sec2 .links .jp {
    padding-left: 170px;
    font-size: 1.8rem;
  }
  .sec2 .links .jp:before {
    width: 150px;
  }
  .sec2 .links .jp i {
    padding-right: 35px;
    background: url("../images/arw1.png") top 6px right 5px no-repeat;
    background-size: 18px auto;
  }
  .sec2 .links a:hover .jp i {
    padding-right: 35px;
    background: url("../images/arw1.png") top 6px right 0 no-repeat;
    background-size: 18px auto;
  }
}

.sec3 .inner {
  position: relative;
  padding: 0 40px 0 30px;
}
.sec3 .l-grid41 {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px 24px;
  position: relative;
  z-index: 3;
}
.sec3 a {
  text-decoration: none;
  color: white;
}
.sec3 .bx {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sec3 .bx .img {
  overflow: hidden;
  aspect-ratio: 504/476;
}
.sec3 .bx .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec3 .bx img {
  transition: all 0.3s ease;
}
.sec3 .bx:hover img {
  transform: scale(1.1);
}
.sec3 .link_pc {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sec3 .link_pc .top {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding: 1px 5px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  transform: translateY(-100%);
}
.sec3 .link_pc .und {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 1px 5px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  transform: translateY(100%);
}
.sec3 .link_pc:hover .top {
  transform: translateY(0%);
}
.sec3 .link_pc:hover .und {
  transform: translateY(0%);
}
.sec3 .in11 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.sec3 .in12 {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  color: #A2A2A2;
}
.sec3 .in12 img {
  width: 90px;
  height: auto;
  display: inline-block;
}
.sec3 .link_sp {
  display: none;
  transition: all 0.3s ease;
}
.sec3 .btnw {
  margin: 100px auto 0 auto;
}
.sec3 .btnw a {
  display: block;
  max-width: 240px;
  color: white;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  letter-spacing: 0.12em;
}
.sec3 .btnw a:hover .eg {
  color: white;
}
.sec3 .btnw .eg {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 3.5rem;
  color: #C12727;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
.sec3 .arrows {
  position: absolute;
  right: 20px;
  bottom: 40px;
  width: 30%;
  aspect-ratio: 356/274;
  color: white;
}
.sec3 .arrows:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 0;
  background: white;
  animation: line11 3s infinite;
}
.sec3 .arrows .tx {
  position: absolute;
  bottom: 10px;
  left: 0;
  text-align: center;
  width: 100%;
}
.sec3 .arrows .line_vert {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 3;
}
.sec3 .arrows .line_vert:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: white;
  animation: line12 3s infinite;
}
.sec3 .arrows .line_rot {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 9px;
  height: 10px;
  z-index: 1;
}
.sec3 .arrows .line_rot:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2A2A2A;
  z-index: 2;
  animation: line13 3s ease infinite;
}
.sec3 .arrows .line_rot:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  width: 1px;
  height: 10px;
  background: #FFF;
  transform: rotate(53deg);
}
@keyframes line11 {
  0% {
    height: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    height: 100%;
  }
}
@keyframes line12 {
  28% {
    width: 0;
  }
  55% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
@keyframes line13 {
  55% {
    left: 0;
  }
  70% {
    left: 20px;
  }
  100% {
    left: 20px;
  }
}
.sec3 .bt2 {
  transition: all 0.3s ease;
}
.sec3 .bt2:hover {
  opacity: 0.6;
}
.sec3 .sp_tri {
  display: none;
}
@media all and (max-width: 1000px) {
  .sec3 .l-grid41 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media all and (max-width: 767px) {
  .sec3 .inner {
    padding: 0 20px;
  }
  .sec3 .l-grid41 {
    margin-top: 40px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sec3 .bx .img {
    overflow: hidden;
  }
  .sec3 .bx img {
    transition: all 0.3s ease;
  }
  .sec3 .bx:hover img {
    transform: scale(1.1);
  }
  .sec3 .bx:nth-of-type(5), .sec3 .bx:nth-of-type(6) {
    display: none;
  }
  .sec3 .link_pc {
    display: none;
  }
  .sec3 .link_sp {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.46);
    display: flex;
    align-items: center;
  }
  .sec3 .link_sp a {
    width: 100%;
    text-align: center;
  }
  .sec3 .link_sp .cate {
    margin: 8px 0 24px 0;
  }
  .sec3 .link_sp .bt {
    display: inline-block;
    border: 1px solid white;
    box-sizing: border-box;
    padding: 2px 14px;
  }
  .sec3 .in12 {
    font-size: 1.2rem;
  }
  .sec3 .in12 img {
    width: 60px;
    height: auto;
  }
  .sec3 .btnw {
    margin: 165px auto 0 auto;
  }
  .sec3 .btnw .eg {
    font-size: 3rem;
    color: #B33A3A;
  }
  .sec3 .arrows {
    width: 190px;
    right: unset;
    left: 50%;
    margin-left: -95px;
    bottom: 75px;
    aspect-ratio: unset;
    font-size: 1.4rem;
  }
  .sec3 .arrows:before {
    content: none;
    z-index: 5;
    animation: line11 3s infinite;
  }
  .sec3 .arrows .tx {
    position: relative;
    bottom: unset;
    text-align: center;
    width: 100%;
    font-size: 1.6rem;
    padding: 0;
    box-sizing: border-box;
  }
  .sec3 .arrows .line_vert {
    display: none;
  }
  .sec3 .arrows .line_rot {
    display: none;
    bottom: -1px;
    left: unset;
    right: -1px;
    width: 9px;
    height: 10px;
    z-index: 1;
  }
  .sec3 .arrows .line_rot:after {
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    width: 1px;
    height: 10px;
    background: #FFF;
    transform: rotate(-37deg);
  }
  @keyframes line11 {
    0% {
      height: 0;
    }
    30% {
      height: 100%;
    }
    100% {
      height: 100%;
    }
  }
  @keyframes line13 {
    28% {
      top: 0;
    }
    50% {
      top: -20px;
    }
    100% {
      top: -20px;
    }
  }
  .sec3 .sp_tri {
    display: block;
    margin-top: 20px;
  }
  .sec3 .sp_tri .t1, .sec3 .sp_tri .t2 {
    width: 67px;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
  }
  .sec3 .sp_tri .t1 path {
    animation: arw11 2s infinite;
  }
  .sec3 .sp_tri .t2 {
    top: -10px;
  }
  .sec3 .sp_tri .t2 path {
    animation: arw12 2s infinite;
  }
  @keyframes arw11 {
    0% {
      fill: #F2F0F0;
    }
    20% {
      fill: #F2F0F0;
    }
    30% {
      fill: #A19E9E;
    }
    100% {
      fill: #A19E9E;
    }
  }
  @keyframes arw12 {
    0% {
      fill: #F2F0F0;
    }
    30% {
      fill: #F2F0F0;
    }
    40% {
      fill: #A19E9E;
    }
    100% {
      fill: #A19E9E;
    }
  }
  .sec3 .bx.active .link_sp {
    opacity: 1;
    visibility: visible;
  }
}

/*------------------------------------------------------------
下層ページ共通（CORE）
------------------------------------------------------------*/
.pg_core {
  color: white;
}
.pg_core .inner {
  padding-left: 0;
  padding-right: 0;
}
.pg_core .in {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
@media all and (max-width: 767px) {
  .pg_core .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pg_core .in {
    max-width: 600px;
  }
}

.pg_ttl {
  padding-top: 118px;
  text-align: center;
}
.pg_ttl .eg {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.4em;
  padding-left: 0.4em;
}
.pg_ttl .jp {
  display: block;
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.17em;
  padding-left: 0.17em;
  margin-top: 20px;
}

.pg_mv .ph {
  width: 81.0345%;
  height: 450px;
  margin: 80px auto 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  opacity: 0.42;
}
.pg_mv .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform: scaleX(-1);
}
.pg_mv .ph:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(40, 40, 40, 0.8) 0%, rgba(41, 41, 41, 0.05) 53.4%, rgba(39, 39, 39, 0.8) 100%);
  box-shadow: inset 0 4px 28px 8px #2A2A2A, inset 0 0 20px 6px rgba(42, 42, 42, 0.85);
  outline: 6px solid #2A2A2A;
  outline-offset: -5px;
}
.pg_mv .catch {
  width: 43.1034%;
  margin: 83px 0 0 16.3793%;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  background: linear-gradient(0.29deg, #fff 4.57%, #DEDEDE 37.42%, #8B8B8B 67.83%, #A3A3A3 75.13%, #626262 88.92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.core_flow {
  position: relative;
  margin-top: 10px;
  padding-top: 377px;
}
.core_flow:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}
.core_flow:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #2A2A2A 0%, rgba(42, 42, 42, 0) 8%, rgba(42, 42, 42, 0) 77%, #2A2A2A 100%);
  z-index: 0;
}
.core_flow .rline {
  position: absolute;
  left: 31.0345%;
  top: 46px;
  width: 26.6379%;
  z-index: 1;
}
.core_flow .rline svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.core_flow .rline .rl_sp {
  display: none;
}
.core_flow .rline .dot {
  transition: opacity 0.4s ease;
}
.core_flow .rline.is-active .dot {
  opacity: 0;
}
.core_flow .rline.is-active .dot.on {
  opacity: 1;
}

.unit {
  position: relative;
  z-index: 2;
}
.unit .cap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.unit .cap .ic {
  width: 60px;
}
.unit .cap .ic img {
  width: 100%;
  height: auto;
}
.unit .cap .tx {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.03em;
}
.unit .cols {
  display: grid;
  align-items: center;
}
.unit .cols .ph {
  border-radius: 24px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 4px 80px 60px #2A2A2A;
  filter: grayscale(1);
  outline: 6px solid #2A2A2A;
  outline-offset: -5px;
}
.unit .cols .ph img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  visibility: hidden;
}
.unit .cols .txt {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}
.unit .cols .txt p + p {
  margin-top: 20px;
}

.u1 .cap {
  margin-left: 58.9655%;
}
.u1 .cols {
  margin: 9px 0 0 18.1034%;
  grid-template-columns: 44.2105% 55.3684%;
  gap: 0 6.4211%;
}
.u1 .cols .ph {
  background-image: url(../images/cr_ph1.jpg);
}

.u2 {
  margin-top: 144px;
}
.u2 .cap {
  margin-left: 23.4483%;
}
.u2 .cols {
  margin: 0 0 0 13.7931%;
  grid-template-columns: 36.1% 42%;
  gap: 0 1.5%;
}
.u2 .cols .ph {
  grid-column: 2;
  grid-row: 1;
  background-image: url(../images/cr_ph2.jpg);
}
.u2 .cols .txt {
  grid-column: 1;
  grid-row: 1;
}

.u3 {
  margin-top: 183px;
}
.u3 .cap {
  margin-left: 60.2586%;
}
.u3 .cols {
  margin: 8px 0 0 18.5345%;
  grid-template-columns: 44.4444% 42.1164%;
  gap: 0 6.7725%;
}
.u3 .cols .ph {
  background-image: url(../images/cr_ph3.jpg);
}

.next_bnr {
  display: block;
  position: relative;
  z-index: 2;
  height: 126px;
  margin-top: 378px;
  text-decoration: none;
}
.next_bnr:hover .to .g:before {
  background: rgba(255, 82, 82, 0.4);
}
.next_bnr:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 23px;
  bottom: 24px;
  background: linear-gradient(90deg, rgba(102, 102, 102, 0.12) 0%, rgba(0, 0, 0, 0.2) 30.8%, rgba(102, 102, 102, 0.12) 100%), linear-gradient(0deg, rgba(42, 42, 42, 0.56) 0%, rgba(20, 20, 20, 0.56) 7.2%, rgba(0, 0, 0, 0.56) 86.5%, rgba(42, 42, 42, 0.56) 100%);
}
.next_bnr .bx {
  position: relative;
  width: 100%;
  max-width: 1170px;
  height: 100%;
  margin: 0 auto;
}
.next_bnr .nx {
  position: absolute;
  left: 23.4483%;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.next_bnr .nx em {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #A02020 0%, #2E2E2E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.next_bnr .nx i {
  display: block;
  width: 36px;
}
.next_bnr .nx i img {
  width: 100%;
  height: auto;
}
.next_bnr .nx i .arw_sp {
  display: none;
}
.next_bnr .to {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.next_bnr .to .g {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #A02020 0%, #696868 64.4%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.next_bnr .to .g:before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: none;
  filter: blur(15px);
  transition: all 0.3s ease;
}
.next_bnr .to .g i,
.next_bnr .to .g em {
  position: relative;
  z-index: 2;
  font-weight: 700;
}
.next_bnr .to .g i {
  font-family: "Orbitron", sans-serif;
}

.core_nav {
  position: relative;
  z-index: 2;
  margin-top: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.1em;
}
.core_nav span {
  color: white;
}
.core_nav .on {
  color: #A02020;
}

@media all and (min-width: 768px) and (max-width: 1440px) {
  .pg_core .in {
    zoom: var(--pgz, 1);
  }
}
@media all and (min-width: 1441px) {
  .core_flow:before, .core_flow:after {
    left: calc(725px - 50vw);
    right: calc(725px - 50vw);
  }
  .next_bnr {
    margin-left: calc(725px - 50vw);
    margin-right: calc(725px - 50vw);
  }
}
/*------------------------------------------------------------
OPERATIONS（連携体制）
------------------------------------------------------------*/
.pg_operations .pg_mv .ph {
  opacity: 0.34;
}
.pg_operations .pg_mv .ph img {
  transform: none;
  opacity: 0.8;
  filter: grayscale(1);
}
.pg_operations .pg_mv .ph:after {
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.8) 0%, rgba(42, 42, 42, 0) 52.4%, rgba(42, 42, 42, 0.8) 100%);
  box-shadow: none;
}

.op_flow {
  padding-top: 388px;
}
.op_flow .rline {
  left: 30.8621%;
  top: 14px;
  width: 3px;
  height: 2200px;
}
.op_flow .rline svg {
  height: 100%;
}
.op_flow .next_bnr {
  margin-top: 75px;
}

.proc {
  position: absolute;
  left: 6.2069%;
  top: 206px;
  width: 28.3621%;
  height: 2096px;
  z-index: 0;
}
.proc span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2096px;
  height: 329px;
  transform: translate(-50%, -50%) rotate(90deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 220px;
  letter-spacing: 70px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(160, 32, 32, 0.37) 0%, rgba(160, 32, 32, 0.37) calc(var(--p, 38%) - 3%), rgba(153, 153, 153, 0.37) calc(var(--p, 38%) + 3%), rgba(153, 153, 153, 0.37) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.proc:after {
  content: "";
  position: absolute;
  left: 18px;
  top: 194px;
  width: 268px;
  height: 1717px;
  background: linear-gradient(0deg, rgba(42, 42, 42, 0.95) 0%, rgba(42, 42, 42, 0) 52.9%);
}

.step {
  position: relative;
  z-index: 2;
  width: 68.0172%;
  box-sizing: border-box;
  min-height: 188px;
  padding: 114px 8.1897% 0 8.7069%;
  margin-left: 35.3448%;
}
.step + .step {
  margin-top: 32px;
}
.step .num {
  position: absolute;
  left: 0;
  top: 56px;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: 0.04em;
  color: #A02020;
  transition: color 0.5s ease;
}
.step .row {
  position: absolute;
  left: 12.801%;
  top: 17px;
  display: flex;
  align-items: flex-end;
  gap: 61px;
}
.step .row .tx {
  width: 403px;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: white;
  transition: color 0.5s ease;
}
.step .row .ic {
  width: 82px;
  transition: filter 0.5s ease;
}
.step .row .ic img {
  width: 100%;
  height: auto;
}
.step .bar {
  position: absolute;
  left: 12.801%;
  right: 11.1534%;
  top: 104px;
  height: 1px;
  background: white;
  transition: background 0.5s ease;
}
.step .desc {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3333333333;
  letter-spacing: 0.4px;
  color: white;
  transition: color 0.5s ease;
}

.core_flow.is-active .step:not(.on) .num,
.core_flow.is-active .step:not(.on) .row .tx,
.core_flow.is-active .step:not(.on) .desc {
  color: #3D3D3D;
}
.core_flow.is-active .step:not(.on) .row .ic {
  filter: brightness(0.24);
}
.core_flow.is-active .step:not(.on) .bar {
  background: #3D3D3D;
}

/*------------------------------------------------------------
RELIABILITY（信頼性）
------------------------------------------------------------*/
.pg_reliability .pg_mv .ph {
  margin-top: 60px;
  border-radius: 0;
  opacity: 1;
  outline: 6px solid #2A2A2A;
  outline-offset: -5px;
}
.pg_reliability .pg_mv .ph img {
  transform: none;
  opacity: 0.8;
  filter: grayscale(1);
}
.pg_reliability .pg_mv .ph:after {
  background: none;
  box-shadow: inset 0 4px 50px 40px #2A2A2A;
}

.rl_flow {
  padding-top: 403px;
}
.rl_flow .rline {
  left: 30.9483%;
  top: 14px;
  width: 3px;
  height: 2206px;
}
.rl_flow .rline svg {
  height: 100%;
}
.rl_flow .next_bnr {
  margin-top: 146px;
}
.rl_flow .r2 {
  margin-top: 112px;
}
.rl_flow .r3 {
  margin-top: 161px;
}

.runit {
  position: relative;
  z-index: 2;
  width: 67.4138%;
  box-sizing: border-box;
  min-height: 432px;
  padding: 270px 0 0 15.431%;
  margin-left: 21.5517%;
}
.runit .cap {
  position: absolute;
  left: -40px;
  top: 159px;
  width: 38.491%;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2A2A2A;
  border: 2px solid #A02020;
  transition: border-color 0.5s ease;
}
.runit .cap span {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.17em;
  color: #D8D8D8;
  opacity: 0.73;
  transition: color 0.5s ease;
}
.runit .ph {
  position: absolute;
  left: 40.7928%;
  top: 0;
  width: 48.5934%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 4px 20px 20px #2A2A2A;
  filter: grayscale(1);
  outline: 6px solid #2A2A2A;
  outline-offset: -5px;
}
.runit .ph img {
  width: 100%;
  height: 217px;
  object-fit: cover;
  visibility: hidden;
}
.runit .txt {
  margin-right: -60px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.runit .txt p + p {
  margin-top: 24px;
}
.runit .txt .hd {
  font-weight: 700;
}
.runit .txt .lk {
  color: white;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.runit .txt .lk:hover {
  opacity: 0.6;
}

.r1 .ph {
  background-image: url(../images/rl_ph1.jpg);
}

.r2 .ph {
  background-image: url(../images/rl_ph2.jpg);
}

.r3 .ph {
  background-image: url(../images/rl_ph3.jpg);
}

.rl_flow.is-active .step:not(.on) .cap {
  border-color: #575454;
}
.rl_flow.is-active .step:not(.on) .cap span {
  color: #575454;
}

/*------------------------------------------------------------
ELEVATION（提案力）
------------------------------------------------------------*/
.pg_elevation .pg_mv .ph {
  height: 480px;
  margin-top: 66px;
  border-radius: 0;
  opacity: 0.7;
  outline: 6px solid #2A2A2A;
  outline-offset: -5px;
}
.pg_elevation .pg_mv .ph img {
  transform: none;
  filter: grayscale(1);
}
.pg_elevation .pg_mv .ph:after {
  background: none;
  box-shadow: inset 0 4px 46px 44px #2A2A2A;
}

.el_flow {
  padding-top: 403px;
}
.el_flow .rline {
  left: 26.6379%;
  top: 75px;
  width: 43.4483%;
  height: 2416px;
}
.el_flow .rline svg {
  height: 100%;
}
.el_flow .next_bnr {
  margin-top: 45px;
}
.el_flow .e2 {
  margin-top: 140px;
}
.el_flow .e3 {
  margin-top: 122px;
}

.eunit {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-left: 0;
  padding: 0;
  min-height: 0;
}
.eunit .arts {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.eunit .a {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.eunit .veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(42, 42, 42, 0.56);
}
.eunit .box {
  position: relative;
  z-index: 2;
  display: flow-root;
}
.eunit .box:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 29, 0.6);
  opacity: 0.54;
}
.eunit .cap {
  position: relative;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: #A02020;
  transition: color 0.5s ease;
}
.eunit .cap span {
  font-size: 24px;
}
.eunit .cap em {
  font-size: 32px;
}
.eunit .txt {
  position: relative;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: white;
}
.eunit .txt p + p {
  margin-top: 24px;
}

.e1 {
  box-sizing: border-box;
  min-height: 631px;
  padding-top: 22px;
}
.e1 .box {
  margin-left: 15%;
  width: 42.931%;
  min-height: 207px;
}
.e1 .cap {
  margin: 3px 0 0 6px;
}
.e1 .txt {
  margin: 21px 0 0 6px;
  width: 115.0602%;
}
.e1 .a1 {
  left: 51.2069%;
  top: 389px;
  width: 36.4655%;
  height: 230px;
  opacity: 0.5;
  background-image: url(../images/el_a1.jpg);
}
.e1 .a2 {
  left: 62.8448%;
  top: 238px;
  width: 25.431%;
  height: 197px;
  filter: grayscale(1);
  background-image: url(../images/el_a2.jpg);
}
.e1 .a3 {
  left: 74.1379%;
  top: 377px;
  width: 19.2241%;
  height: 148px;
  background-image: url(../images/el_a3.jpg);
}
.e1 .a4 {
  left: 15.8621%;
  top: 488px;
  width: 31.6379%;
  height: 122px;
  opacity: 0.6;
  background-image: url(../images/el_a4.jpg);
}
.e1 .a5 {
  left: 10.1724%;
  top: 351px;
  width: 22.1552%;
  height: 241px;
  background-image: url(../images/el_a5.jpg);
}
.e1 .a6 {
  left: 59.9138%;
  top: 171px;
  width: 30%;
  height: 163px;
  opacity: 0.5;
  background-image: url(../images/el_a6.jpg);
}
.e1 .a7 {
  left: 20.7759%;
  top: 238px;
  width: 26.7241%;
  height: 213px;
  background-image: url(../images/el_a7.jpg);
}
.e1 .a8 {
  left: 33.1897%;
  top: 340px;
  width: 32.1552%;
  height: 221px;
  opacity: 0.5;
  background-image: url(../images/el_a8.jpg);
}
.e1 .a9 {
  left: 58.2759%;
  top: 43px;
  width: 19.0517%;
  height: 232px;
  opacity: 0.8;
  background-image: url(../images/el_a9.jpg);
}
.e1 .a10 {
  left: 53.7931%;
  top: 253px;
  width: 14.8276%;
  height: 149px;
  opacity: 0.35;
  filter: grayscale(1);
  background-image: url(../images/el_a10.jpg);
}

.e2 {
  min-height: 568px;
}
.e2 .box {
  margin-left: 48.2759%;
  width: 43.6207%;
  min-height: 227px;
}
.e2 .cap {
  margin: 5px 0 0 12px;
}
.e2 .txt {
  margin: 9px 0 0 12px;
  width: 115.0198%;
}
.e2 .b1 {
  left: 10.0862%;
  top: 302px;
  width: 16.9828%;
  height: 131px;
  opacity: 0.63;
  filter: grayscale(1);
  background-image: url(../images/el_b1.jpg);
}
.e2 .b2 {
  left: 28.9655%;
  top: 54px;
  width: 16.2069%;
  height: 162px;
  filter: grayscale(1);
  box-shadow: inset 0 4px 50px 20px #2A2A2A;
  background-image: url(../images/el_b2.jpg);
}
.e2 .b3 {
  left: 465px;
  top: 324px;
  width: 366px;
  height: 244px;
  filter: grayscale(1);
  background-image: url(../images/el_b3.jpg);
}
.e2 .b3:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #2A2A2A 0%, rgba(42, 42, 42, 0) 50%, #2A2A2A 100%);
}
.e2 .b4 {
  left: 5.7759%;
  top: 113px;
  width: 22.5862%;
  height: 175px;
  opacity: 0.8;
  filter: grayscale(1);
  background-image: url(../images/el_b4.jpg);
}
.e2 .b5 {
  left: 20%;
  top: 217px;
  width: 12.4138%;
  height: 114px;
  opacity: 0.88;
  filter: grayscale(1);
  box-shadow: inset 0 4px 50px 20px #2A2A2A;
  background-image: url(../images/el_b5.jpg);
}
.e2 .b6 {
  left: 61.0345%;
  top: 216px;
  width: 30%;
  height: 230px;
  opacity: 0.89;
  box-shadow: inset 0 4px 50px 20px #2A2A2A;
  background-image: url(../images/el_b6.jpg);
}
.e2 .b7 {
  left: 45.1724%;
  top: 244px;
  width: 19.569%;
  height: 139px;
  opacity: 0.8;
  filter: grayscale(1);
  box-shadow: inset 0 4px 50px 20px #2A2A2A;
  background-image: url(../images/el_b7.jpg);
}
.e2 .b8 {
  left: 29.569%;
  top: 227px;
  width: 15%;
  height: 116px;
  opacity: 0.8;
  filter: grayscale(1);
  transform: scaleX(-1);
  background-image: url(../images/el_b8.jpg);
}

.e3 {
  min-height: 559px;
}
.e3 .box {
  margin-left: 9.4828%;
  width: 36.4655%;
  min-height: 232px;
}
.e3 .cap {
  margin: 5px 0 0 13px;
}
.e3 .txt {
  margin: 9px 0 0 13px;
  width: 102.3641%;
}
.e3 .c1 {
  left: 66.8103%;
  top: 243px;
  width: 26.6379%;
  height: 266px;
  filter: grayscale(1);
  background-image: url(../images/el_c1.jpg);
}
.e3 .c2 {
  left: 52.5%;
  top: 41px;
  width: 23.0172%;
  height: 178px;
  opacity: 0.8;
  filter: grayscale(1) blur(1px);
  background-image: url(../images/el_c2.jpg);
}
.e3 .c3 {
  left: 42.931%;
  top: 342px;
  width: 27.931%;
  height: 217px;
  filter: grayscale(1);
  background-image: url(../images/el_c3.jpg);
}
.e3 .c4 {
  left: 46.8103%;
  top: 169px;
  width: 20%;
  height: 164px;
  filter: grayscale(1);
  background-image: url(../images/el_c4.jpg);
}
.e3 .c5 {
  left: 15.9483%;
  top: 251px;
  width: 29.6552%;
  height: 230px;
  filter: grayscale(1);
  background-image: url(../images/el_c5.jpg);
}

.el_flow.is-active .step:not(.on) .cap {
  color: white;
}

/*------------------------------------------------------------
ABOUT（会社概要）
------------------------------------------------------------*/
.pg_about .in {
  position: relative;
  padding-bottom: 90px;
}
.pg_about .pg_ttl .eg {
  font-size: 52px;
}
.pg_about .pg_ttl .jp {
  font-size: 40px;
}
.pg_about .ab_bg1,
.pg_about .ab_bg2 {
  position: absolute;
  left: 1.2069%;
  top: 0;
  width: 99.6552%;
  height: 1969px;
  background: url(../images/ab_bg.jpg) center/cover no-repeat;
  opacity: 0.2;
}
.pg_about .ab_bg1:after,
.pg_about .ab_bg2:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #2A2A2A 1.9%, rgba(42, 42, 42, 0.73) 23.6%, rgba(42, 42, 42, 0.77) 68.8%, #2A2A2A 87%);
}
.pg_about .ab_bg2 {
  left: 0.5172%;
  top: 1729px;
  width: 100.3448%;
  transform: scaleX(-1);
}
@media all and (min-width: 1441px) {
  .pg_about .ab_bg1,
  .pg_about .ab_bg2 {
    left: calc(725px - 50vw);
    right: calc(725px - 50vw);
    width: auto;
  }
}
.pg_about .deco {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.pg_about .d1183 {
  left: 66.8966%;
  top: 807px;
  width: 23.8793%;
  height: 402px;
  opacity: 0.33;
  background-image: url(../images/ab_d1183.jpg);
  box-shadow: inset 0 4px 36px 13px #2A2A2A;
}
.pg_about .r126 {
  left: 65.5172%;
  top: 1212px;
  width: 29.6552%;
  height: 184px;
  opacity: 0.14;
  filter: grayscale(1);
  background-image: url(../images/ab_r126.jpg);
  box-shadow: inset 0 4px 37px 23px rgba(41, 40, 40, 0.88);
}
.pg_about .ab_logo {
  position: absolute;
  left: 61.5517%;
  top: 2205px;
  width: 27.069%;
}
.pg_about .ab_logo img {
  width: 100%;
  height: auto;
}

.ab_sec {
  position: relative;
  z-index: 1;
  margin-left: 15.431%;
}
.ab_sec .hd {
  font-weight: 700;
  font-size: 24px;
  line-height: 45px;
  letter-spacing: 0.5px;
}
.ab_sec .row {
  display: grid;
  grid-template-columns: 117px 1fr;
  align-items: start;
}
.ab_sec dt,
.ab_sec dd {
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  min-height: 30px;
  letter-spacing: 0.5px;
}
.ab_sec .ph {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ab_idea {
  margin-top: 164px;
  width: 74.1379%;
}
.ab_idea .hd {
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 40px;
}
.ab_idea p {
  font-size: 15px;
  line-height: 1.8666666667;
  letter-spacing: 0.5px;
}
.ab_idea p + p {
  margin-top: 28px;
}

.ab_hist {
  margin-top: 22px;
}
.ab_hist .hd {
  margin-bottom: 44px;
}
.ab_hist dl {
  position: relative;
}
.ab_hist dl:before {
  content: "";
  position: absolute;
  left: 83px;
  top: 7px;
  width: 3px;
  bottom: 55px;
  background: #A02020;
}
.ab_hist .row + .row {
  margin-top: 25px;
}

.ab_base {
  margin-top: 80px;
}
.ab_base .hd {
  margin-bottom: 58px;
}
.ab_base .row + .row {
  margin-top: 15px;
}
.ab_base .ph1 {
  left: 47.2987%;
  top: 0;
  width: 15.3925%;
  height: 226px;
  background-image: url(../images/ab_ph1.jpg);
  box-shadow: inset 0 4px 10px 10px #2A2A2A;
}
.ab_base .ph2 {
  left: 62.895%;
  top: 64px;
  width: 25.0765%;
  height: 164px;
  background-image: url(../images/ab_ph2.jpg);
  box-shadow: inset 0 4px 10px 10px #2A2A2A;
}

.ab_info {
  margin-top: 70px;
}
.ab_info .hd {
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 47px;
}
.ab_info .row + .row {
  margin-top: 20px;
}
.ab_info .r136 {
  left: 56.371%;
  top: 116px;
  width: 32.1101%;
  height: 233px;
}
.ab_info .r136 iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/*------------------------------------------------------------
PORTFOLIO（製作事例）
------------------------------------------------------------*/
.pg_portfolio .pg_ttl .eg {
  font-size: 56px;
  letter-spacing: 24px;
  padding-left: 24px;
}
.pg_portfolio .pg_ttl .jp {
  font-size: 42px;
  letter-spacing: 8px;
  padding-left: 8px;
}

.pf_cats {
  width: 51.7241%;
  margin: 60px auto 0;
  padding: 0 0 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.pf_cats li {
  list-style: none;
}
.pf_cats .pp {
  font-size: 20px;
  font-weight: 500;
  color: white;
}
.pf_cats button {
  position: relative;
  isolation: isolate;
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 4px;
  color: white;
  background: none;
  border: none;
  border-radius: 4px;
  padding: 0 4px 0 8px;
  cursor: pointer;
}
.pf_cats button:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 82, 82, 0.2);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25)) blur(8.5px);
  opacity: 0;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .pf_cats button:hover:before {
    opacity: 0.55;
  }
}
.pf_cats button.on:before {
  opacity: 1;
}

.pf_tags {
  display: flex;
  margin-top: 12px;
  padding: 0 1.3793% 0 5.1724%;
}
.pf_tags .tg_mat {
  width: 52.3063%;
}
.pf_tags .tg_fin {
  flex: 1;
}
.pf_tags .lb {
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0.5px;
  word-spacing: 10px;
  color: #BEBEBE;
}
.pf_tags ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px 15px;
  margin-top: 6px;
  padding: 0;
  list-style: none;
}
.pf_tags button {
  position: relative;
  isolation: isolate;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  color: #616161;
  background: none;
  border: none;
  border-radius: 4px;
  padding: 0 3px;
  margin: 0 -3px;
  cursor: pointer;
  transition: color 0.2s;
}
@media (hover: hover) {
  .pf_tags button:hover {
    color: #D0D0D0;
  }
}
.pf_tags button.on {
  color: #D0D0D0;
}
.pf_tags button.on:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 82, 82, 0.2);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25)) blur(8.5px);
}
.pf_tags button.off {
  display: none;
}
.pf_tags li:has(button.off) {
  display: none;
}

.pf_grid {
  width: 91.2069%;
  margin: 23px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 26px 2.4575%;
}
.pf_grid .card.hide {
  display: none;
}
.pf_grid .card.rev {
  animation: pf_in 0.5s ease both;
}
.pf_grid .card a {
  display: block;
  position: relative;
  text-decoration: none;
}
.pf_grid .card .ph {
  aspect-ratio: 1;
  overflow: hidden;
}
.pf_grid .card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.pf_grid .card .nm,
.pf_grid .card .tg2 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.46);
  color: #EBEBEB;
  opacity: 0;
  transition: opacity 0.3s;
}
.pf_grid .card .nm {
  top: 0;
  height: 29px;
  font-weight: 400;
  font-size: 15px;
  line-height: 29px;
  padding: 0 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.pf_grid .card .tg2 {
  bottom: 0;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  padding: 0 9px;
  display: flex;
  justify-content: space-between;
}
.pf_grid .card:hover .ph img {
  opacity: 1;
}
.pf_grid .card:hover .nm,
.pf_grid .card:hover .tg2 {
  opacity: 1;
}

@keyframes pf_in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pf_grid .card.rev {
    animation: none;
  }
}
.pf_more_w {
  margin-top: 25px;
  text-align: center;
}
.pf_more_w.hide {
  display: none;
}

.pf_more {
  font-family: inherit;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #949494;
  text-decoration: underline;
  text-underline-offset: 5px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
@media (hover: hover) {
  .pf_more:hover {
    color: white;
  }
}

.ct_bnr {
  display: block;
  margin-top: 66px;
  text-align: center;
  text-decoration: none;
}
.ct_bnr em {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 3.4px;
  padding-left: 3.4px;
  color: #C12727;
  transition: text-shadow 0.3s;
}
.ct_bnr span {
  display: block;
  margin-top: 4px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 2.4px;
  padding-left: 2.4px;
  color: white;
}
.ct_bnr:hover em {
  text-shadow: 0 0 18px rgba(255, 82, 82, 0.9);
}

/*------------------------------------------------------------
PROJECT（事例詳細）
------------------------------------------------------------*/
.pg_project .pg_ttl .eg {
  font-size: 56px;
  letter-spacing: 24px;
  padding-left: 24px;
}
.pg_project .pg_ttl .jp {
  font-size: 42px;
  letter-spacing: 8px;
  padding-left: 8px;
}
.pg_project .core_nav {
  margin-top: 88px;
}

.pj_body {
  position: relative;
  margin-top: 50px;
  padding: 49px 0 70px;
}
.pj_body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(217, 217, 217, 0.11);
  pointer-events: none;
}

@media all and (min-width: 1441px) {
  .pj_body:before {
    left: calc(725px - 50vw);
    right: calc(725px - 50vw);
  }
}
.pj_ret {
  position: absolute;
  top: 10px;
  right: 1.7241%;
  width: 70px;
  z-index: 2;
  transition: opacity 0.3s;
}
.pj_ret img {
  width: 100%;
  height: auto;
}
.pj_ret:hover {
  opacity: 0.6;
}

.pj_cols {
  position: relative;
  display: grid;
  grid-template-columns: 56.9933% 1fr;
  column-gap: 1.9029%;
  align-items: start;
  padding: 0 5.3448% 0 4.0517%;
}

.pj_gal .mv {
  position: relative;
  aspect-ratio: 599/474;
  overflow: hidden;
}
.pj_gal .mv .im {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.pj_gal .mv .im img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pj_gal .mv .im.on {
  opacity: 1;
}
.pj_gal .mv .nx {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 24px;
  padding: 0;
  border: none;
  background: rgba(45, 45, 45, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}
.pj_gal .mv .nx img {
  width: 38px;
  max-width: none;
}
@media (hover: hover) {
  .pj_gal .mv .nx:hover {
    background: rgba(45, 45, 45, 0.7);
  }
}
.pj_gal .thumbs {
  display: flex;
  padding: 10px 0;
}
.pj_gal .thumbs .th {
  width: 20%;
  aspect-ratio: 120/90;
  padding: 0;
  border: 1px solid #3A3A3A;
  background: #4B4B4B;
  cursor: pointer;
  transition: border-color 0.3s;
}
@media (hover: hover) {
  .pj_gal .thumbs .th:hover:not(.on) {
    border-color: #8A8A8A;
  }
  .pj_gal .thumbs .th:hover:not(.on) img {
    opacity: 0.65;
  }
}
.pj_gal .thumbs .th img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}
.pj_gal .thumbs .th.on {
  border-color: #A02020;
}

.pj_txt {
  padding-top: 22px;
}
.pj_txt .hd {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
}
.pj_txt .ov .tx {
  margin-top: 10px;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #CFCFCF;
}
.pj_txt .dt {
  width: 92.5926%;
  margin-top: 109px;
  border-top: 1px solid #B5B5B5;
  padding-top: 12px;
}
.pj_txt .dt:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.pj_txt .dt dl {
  margin: 17px 0 0;
}
.pj_txt .dt .row {
  display: grid;
  grid-template-columns: 115px 1fr;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #CFCFCF;
}
.pj_txt .dt .row + .row {
  margin-top: 18px;
}
.pj_txt .dt .row dd span + span {
  margin-left: 1em;
}
.pj_txt .dt .row dt {
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
  font-weight: 400;
}
.pj_txt .dt .row dt:after {
  content: "：";
}
.pj_txt .dt .row dd {
  margin: 0;
}

.pj_back {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #949494;
  text-decoration: underline;
  text-underline-position: from-font;
  transition: color 0.3s;
}
.pj_back span {
  font-weight: 400;
}
.pj_back:hover {
  color: white;
}

/*------------------------------------------------------------
CAREER（採用情報）
------------------------------------------------------------*/
.pg_career .pg_ttl .eg {
  font-size: 52px;
}
.pg_career .pg_ttl .jp {
  font-size: 40px;
}
.pg_career .ct_bnr {
  margin-top: 101px;
}

.cr_sec {
  margin: 67px 0 0 12.3276%;
  width: 71.0345%;
  letter-spacing: 0.5px;
}
.cr_sec:first-of-type {
  margin-top: 220px;
}
.cr_sec .hd {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
}
.cr_sec .tx {
  margin-top: 26px;
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
}
.cr_sec .tx p {
  margin: 0;
}
.cr_sec .tx .sh {
  margin-top: 26px;
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
}
.cr_sec .tx .sh:first-child {
  margin-top: 0;
}
.cr_sec .tx .lst {
  margin: 0;
  padding: 0 0 0 1em;
}
.cr_sec .tx .lst li {
  font-weight: 400;
}
.cr_sec .tx .lb {
  padding-left: 1em;
  font-weight: 400;
}
.cr_sec .tx .in2 {
  padding-left: 2em;
  font-weight: 400;
}

/*------------------------------------------------------------
CONTACT（お問い合わせ）
------------------------------------------------------------*/
.pg_contact .pg_ttl .eg {
  font-size: 52px;
}
.pg_contact .pg_ttl .jp {
  font-size: 40px;
}
.pg_contact .core_nav {
  margin-top: 164px;
}

.cf_form {
  margin-top: 81px;
}
.cf_form .cf_row {
  display: grid;
  grid-template-columns: 30.3754% 1fr;
  width: 75.7759%;
  margin: 20px 0 0 7.5%;
}
.cf_form .cf_row:first-child {
  margin-top: 0;
}
.cf_form .cf_lb {
  padding-top: 20px;
  font-size: 20px;
  line-height: 25px;
  color: white;
}
.cf_form .cf_lb i {
  font-style: normal;
  font-size: 15px;
  color: #C12727;
  margin-left: 8px;
}
.cf_form .cf_in input,
.cf_form .cf_in textarea,
.cf_form .cf_in select {
  display: block;
  width: 100%;
  height: 65px;
  padding: 0 18px;
  background: none;
  border: 1px solid white;
  border-radius: 0;
  color: white;
  font-family: inherit;
  font-size: 20px;
  box-sizing: border-box;
}
.cf_form .cf_in input:focus,
.cf_form .cf_in textarea:focus,
.cf_form .cf_in select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 82, 82, 0.35);
}
.cf_form .cf_in input::placeholder,
.cf_form .cf_in textarea::placeholder,
.cf_form .cf_in select::placeholder {
  color: rgba(255, 255, 255, 0.47);
}
.cf_form .cf_in textarea {
  height: 388px;
  padding: 16px 18px;
  line-height: 1.6;
  resize: vertical;
}
.cf_form .cf_sel {
  position: relative;
}
.cf_form .cf_sel select {
  appearance: none;
  -webkit-appearance: none;
  background: #D9D9D9;
  border: none;
  color: #2A2A2A;
  text-align: center;
  text-align-last: center;
  padding-right: 56px;
  cursor: pointer;
}
.cf_form .cf_sel:after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -6px;
  border: 12px solid transparent;
  border-top: 15px solid #2A2A2A;
  pointer-events: none;
}
.cf_form .cf_note {
  margin: 16px 0 8px 30.5172%;
  font-size: 16px;
  line-height: 25px;
}
.cf_form .cf_req {
  width: 75.7759%;
  margin: 32px 0 0 7.5%;
  text-align: right;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}
.cf_form .cf_req span {
  color: #C12727;
}
.cf_form .cf_pp {
  margin-top: 120px;
  text-align: center;
  font-size: 20px;
  line-height: 25px;
}
.cf_form .cf_pp a {
  color: white;
  text-decoration: underline;
  text-underline-position: from-font;
  transition: opacity 0.3s;
}
.cf_form .cf_pp a:hover {
  opacity: 0.7;
}
.cf_form .cf_agree {
  margin-top: 24px;
  text-align: center;
  font-size: 20px;
}
.cf_form .cf_agree label {
  cursor: pointer;
}
.cf_form .cf_agree input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 28px;
  height: 28px;
  background: #D9D9D9;
  border: none;
  border-radius: 0;
  vertical-align: -6px;
  margin-right: 12px;
  cursor: pointer;
}
.cf_form .cf_agree input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 3px;
  width: 8px;
  height: 15px;
  border-right: 3px solid #A02020;
  border-bottom: 3px solid #A02020;
  transform: rotate(45deg);
}
.cf_form .cf_submit {
  margin-top: 38px;
  text-align: center;
}
.cf_form .cf_submit input[type=submit] {
  width: 38.0172%;
  height: 65px;
  background: #D9D9D9;
  border: none;
  color: #2A2A2A;
  font-family: inherit;
  font-size: 20px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.3s;
}
.cf_form .cf_submit input[type=submit]:disabled {
  opacity: 0.46;
  cursor: default;
}
.cf_form .cf_submit input[type=submit]:hover:not(:disabled) {
  opacity: 0.8;
}
.cf_form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 14px;
  color: #FF5252;
}
.cf_form .wpcf7 form .wpcf7-response-output {
  width: 75.7759%;
  margin: 40px 0 0 7.5%;
  padding: 12px 18px;
  border: 1px solid #A02020;
  color: white;
  font-size: 15px;
  text-align: center;
}
.cf_form[data-thanks] form.sent .wpcf7-response-output {
  display: none;
}
.cf_form .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

/*------------------------------------------------------------
THANKS（送信完了）
------------------------------------------------------------*/
.pg_thanks .pg_ttl .eg {
  font-size: 52px;
}
.pg_thanks .pg_ttl .jp {
  font-size: 40px;
}
.pg_thanks .th_bd {
  margin-top: 110px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.5px;
}
.pg_thanks .th_bd p + p {
  margin-top: 32px;
}
.pg_thanks .th_back {
  margin-top: 100px;
}
.pg_thanks .core_nav {
  margin-top: 140px;
}

body.page:not(.home) footer,
body.blog footer,
body.single footer {
  margin-top: 46px;
}
@media all and (max-width: 767px) {
  body.page:not(.home) footer,
  body.blog footer,
  body.single footer {
    margin-top: 27px;
  }
}

/*------------------------------------------------------------
下層ページ共通（CORE）SP：390pxカンプ基準
------------------------------------------------------------*/
@media all and (max-width: 767px) {
  .pg_ttl {
    padding-top: 87px;
  }
  .pg_ttl .eg {
    font-size: 30px;
    letter-spacing: 10px;
    padding-left: 10px;
  }
  .pg_ttl .jp {
    font-size: 18px;
    letter-spacing: 1px;
    padding-left: 1px;
    margin-top: 6px;
  }
  .pg_mv .ph {
    width: 390px;
    height: 226px;
    outline: none;
    margin: 40px 0 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 36px;
    opacity: 0.55;
  }
  .pg_mv .ph img {
    filter: blur(1px);
  }
  .pg_mv .ph:after {
    background: none;
    outline: none;
    box-shadow: inset 0 4px 34px 29px #2A2A2A;
  }
  .pg_mv .catch {
    width: auto;
    margin: 38px 0 0 25px;
    font-size: 13px;
    line-height: 42px;
    letter-spacing: 0.5px;
  }
  .core_flow {
    margin-top: 0;
    padding-top: 267px;
  }
  .core_flow:before {
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background-size: 20px 20px;
  }
  .core_flow .rline {
    left: 50%;
    top: -11px;
    margin-left: -141px;
    width: 282px;
  }
  .core_flow .rline .rl_pc {
    display: none;
  }
  .core_flow .rline .rl_sp {
    display: block;
  }
  .unit {
    width: 390px;
    left: 50%;
    transform: translateX(-50%);
  }
  .unit .cap {
    display: contents;
  }
  .unit .cap .ic {
    position: absolute;
    top: 0;
  }
  .unit .cap .tx {
    position: absolute;
    width: 114px;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  .unit .cols {
    display: contents;
  }
  .unit .cols .ph {
    position: absolute;
    width: 277px;
    height: 146px;
    border-radius: 10px;
    opacity: 0.38;
    margin: 0;
    box-shadow: inset 0 4px 32px 25px #2A2A2B;
  }
  .unit .cols .ph img {
    height: 100%;
  }
  .unit .cols .txt {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.2px;
  }
  .unit .cols .txt p + p {
    margin-top: 16px;
  }
  .u1 {
    box-sizing: border-box;
    min-height: 256px;
    padding: 59px 0 53px;
  }
  .u1 .cap .ic {
    left: 224px;
    width: 34px;
  }
  .u1 .cap .tx {
    left: 114px;
    top: 14px;
  }
  .u1 .cols .txt {
    margin-left: 121px;
    width: 260px;
  }
  .u1 .cols .ph {
    left: 15px;
    bottom: 0;
  }
  .u2 {
    margin-top: 107px;
    box-sizing: border-box;
    min-height: 229px;
    padding: 61px 0 24px;
  }
  .u2 .cap .ic {
    left: 148px;
    width: 41px;
  }
  .u2 .cap .tx {
    left: 180px;
    top: 13px;
  }
  .u2 .cols .txt {
    margin-left: 42px;
    width: 319px;
  }
  .u2 .cols .ph {
    left: 90px;
    bottom: 0;
  }
  .u3 {
    margin-top: 131px;
    box-sizing: border-box;
    min-height: 260px;
    padding: 58px 0 26px;
  }
  .u3 .cap .ic {
    left: 205px;
    width: 41px;
  }
  .u3 .cap .tx {
    left: 98px;
    top: 13px;
  }
  .u3 .cols .txt {
    margin-left: 112px;
    width: 280px;
  }
  .u3 .cols .ph {
    left: 3px;
    bottom: 0;
  }
  .next_bnr {
    height: 60px;
    margin-top: 129px;
    width: 390px;
    left: 50%;
    transform: translateX(-50%);
  }
  .next_bnr:before {
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(42, 42, 42, 0.56) 0%, rgba(20, 20, 20, 0.56) 7.2%, rgba(0, 0, 0, 0.56) 86.5%, rgba(42, 42, 42, 0.56) 100%);
  }
  .next_bnr .nx {
    left: 51px;
    gap: 8px;
  }
  .next_bnr .nx em {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: none;
    color: #949494;
  }
  .next_bnr .nx i {
    width: 17px;
  }
  .next_bnr .nx i .arw_pc {
    display: none;
  }
  .next_bnr .nx i .arw_sp {
    display: block;
  }
  .next_bnr .to {
    padding-left: 40px;
  }
  .next_bnr .to .g {
    font-size: 15px;
    letter-spacing: 0;
    background: none;
    color: #949494;
  }
  .core_nav {
    margin-top: 67px;
    font-size: 17px;
    gap: 9px;
  }
}
/*------------------------------------------------------------
OPERATIONS SP
------------------------------------------------------------*/
@media all and (max-width: 767px) {
  .pg_operations .pg_mv .ph {
    height: 227px;
    border-radius: 24px;
    opacity: 0.51;
    outline: none;
  }
  .pg_operations .pg_mv .ph img {
    filter: grayscale(1);
  }
  .pg_operations .pg_mv .ph:after {
    box-shadow: inset 0 4px 47px 39px #2A2A2A;
  }
  .pg_operations .pg_mv .catch {
    margin: 28px 0 0 15px;
  }
  .op_flow {
    padding-top: 247px;
  }
  .op_flow .rline {
    left: 50%;
    top: 34px;
    margin-left: -142px;
    width: 2px;
    height: 2369px;
  }
  .op_flow .next_bnr {
    margin-top: 135px;
  }
  .proc {
    display: block;
    left: 50%;
    top: 247px;
    margin-left: -102px;
    width: 204px;
    height: 2782px;
  }
  .proc span {
    justify-content: flex-start;
    width: 2782px;
    height: 204px;
    font-size: 260px;
    letter-spacing: 100px;
    opacity: 0.2;
    background: linear-gradient(90deg, #A02020 0%, #A02020 calc(var(--p, 22%) - 12%), #363636 calc(var(--p, 22%) + 12%), #363636 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
  .proc:after {
    display: none;
  }
  .step {
    width: 337px;
    min-height: 169px;
    padding: 109px 0 0 7px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
  }
  .step + .step {
    margin-top: 100px;
  }
  .step .num {
    position: absolute;
    left: 10px;
    top: 0;
    font-size: 36px;
    line-height: 52px;
    letter-spacing: 2px;
  }
  .step .row {
    display: contents;
  }
  .step .row .tx {
    position: absolute;
    left: 7px;
    top: 71px;
    width: auto;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.5px;
  }
  .step .row .ic {
    position: absolute;
    left: 214px;
    top: 11px;
    width: 80px;
  }
  .step .bar {
    position: absolute;
    left: 0;
    right: 7px;
    top: 100px;
    margin: 0;
  }
  .step .desc {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.4px;
  }
  .core_flow.is-active .step:not(.on) .num,
  .core_flow.is-active .step:not(.on) .row .tx,
  .core_flow.is-active .step:not(.on) .desc {
    color: #363636;
  }
  .core_flow.is-active .step:not(.on) .row .ic {
    filter: brightness(0.21);
  }
  .core_flow.is-active .step:not(.on) .bar {
    background: #363636;
  }
}
/*------------------------------------------------------------
RELIABILITY SP
------------------------------------------------------------*/
@media all and (max-width: 767px) {
  .pg_reliability .pg_mv .ph {
    height: 227px;
    margin-top: 6.15px;
    border-radius: 24px;
    outline: none;
    opacity: 0.87;
  }
  .pg_reliability .pg_mv .ph img {
    filter: grayscale(1);
  }
  .pg_reliability .pg_mv .ph:after {
    background: linear-gradient(180deg, rgba(42, 42, 42, 0.8) 0%, rgba(42, 42, 42, 0) 52.4%, rgba(42, 42, 42, 0.8) 100%);
    box-shadow: inset 0 4px 53px 44px #2A2A2A;
  }
  .pg_reliability .pg_mv .catch {
    margin: 28px 0 0 15px;
  }
  .rl_flow {
    padding-top: 249px;
  }
  .rl_flow .rline {
    left: 50%;
    top: 1px;
    margin-left: -141px;
    width: 2px;
    height: 1774px;
  }
  .rl_flow .next_bnr {
    margin-top: 135px;
  }
  .rl_flow .r2,
  .rl_flow .r3 {
    margin-top: 118px;
  }
  .runit {
    width: 390px;
    height: auto;
    min-height: 0;
    padding: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
  }
  .runit .cap {
    position: static;
    margin-left: 54px;
    width: 200px;
    height: 40px;
  }
  .runit .cap span {
    font-size: 16px;
    letter-spacing: 0.25em;
  }
  .runit .txt {
    position: static;
    margin: 16px 0 0 76px;
    width: 302px;
    font-size: 11px;
    line-height: 1.4545454545;
    letter-spacing: 0.4px;
  }
  .runit .txt p + p {
    margin-top: 16px;
  }
  .runit .txt .hd {
    font-size: 12px;
  }
  .runit .ph {
    position: static;
    width: 271px;
    margin: 11px 0 0 65px;
    box-shadow: inset 0 4px 20px 20px #2A2A2A;
  }
  .runit .ph img {
    height: 155px;
  }
  .r2 .ph {
    margin-left: 66px;
  }
  .r3 .ph {
    margin-left: 75px;
  }
}
/*------------------------------------------------------------
ELEVATION SP
------------------------------------------------------------*/
@media all and (max-width: 767px) {
  .pg_elevation .pg_mv .ph {
    height: 227px;
    margin-top: 6.75px;
    border-radius: 24px;
    outline: none;
  }
  .pg_elevation .pg_mv .ph img {
    filter: grayscale(1) blur(1px);
  }
  .pg_elevation .pg_mv .ph:after {
    box-shadow: inset 0 4px 40px 34px #2A2A2A;
  }
  .el_flow {
    padding-top: 169px;
  }
  .el_flow .rline {
    left: 50%;
    top: -5px;
    margin-left: -195px;
    width: 390px;
    height: 1469px;
  }
  .el_flow .next_bnr {
    margin-top: 135px;
  }
  .el_flow .e2,
  .el_flow .e3 {
    margin-top: 79px;
  }
  .eunit {
    width: 390px;
    height: auto;
    min-height: 0;
    padding-top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .eunit .veil {
    display: none;
  }
  .eunit .arts {
    position: relative;
    inset: auto;
  }
  .eunit .box {
    position: relative;
    left: auto;
    top: auto;
    width: 266px;
    height: auto;
    min-height: 0;
    padding-bottom: 14px;
  }
  .eunit .cap {
    line-height: 36px;
  }
  .eunit .cap span {
    font-size: 14px;
  }
  .eunit .cap em {
    font-size: 20px;
  }
  .eunit .txt {
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.4px;
  }
  .eunit .txt br {
    display: none;
  }
  .eunit .txt p + p {
    margin-top: 16px;
  }
  .e1 .arts_t {
    height: 167px;
  }
  .e1 .arts_b {
    height: 98px;
    margin-top: -25px;
  }
  .e1 .box {
    margin: -68px 0 0 22px;
  }
  .e1 .box:before {
    background: rgba(29, 29, 29, 0.81);
    opacity: 1;
  }
  .e1 .cap {
    margin: -4px 0 0 1px;
  }
  .e1 .txt {
    margin: 0 0 0 1px;
    width: 258px;
  }
  .e1 .a1 {
    left: 86px;
    top: 69px;
    width: 153px;
    height: 83px;
    opacity: 0.14;
  }
  .e1 .a2 {
    left: 208px;
    top: 63px;
    width: 107px;
    height: 72px;
    opacity: 0.28;
  }
  .e1 .a3 {
    left: 285px;
    top: 113px;
    width: 81px;
    height: 54px;
    opacity: 0.28;
  }
  .e1 .a6 {
    left: 206px;
    top: 19px;
    width: 126px;
    height: 60px;
    opacity: 0.14;
  }
  .e1 .a9 {
    left: 139px;
    top: 0;
    width: 80px;
    height: 84px;
    opacity: 0.22;
  }
  .e1 .a10 {
    left: 121px;
    top: 22px;
    width: 84px;
    height: 73px;
    opacity: 0.1;
  }
  .e1 .a4 {
    left: 75px;
    top: 60px;
    width: 114px;
    height: 38px;
    opacity: 0.16;
  }
  .e1 .a5 {
    left: 35px;
    top: 3px;
    width: 80px;
    height: 75px;
    opacity: 0.26;
  }
  .e1 .a7 {
    left: 119px;
    top: 3px;
    width: 96px;
    height: 66px;
    opacity: 0.26;
  }
  .e1 .a8 {
    left: 208px;
    top: 0;
    width: 116px;
    height: 69px;
    opacity: 0.13;
  }
  .e2 .arts_t {
    height: 151px;
  }
  .e2 .arts_b {
    height: 131px;
    margin-top: -40px;
  }
  .e2 .box {
    margin: -57px 0 0 95px;
  }
  .e2 .box:before {
    background: rgba(29, 29, 29, 0.86);
    opacity: 1;
  }
  .e2 .cap {
    margin: -6px 0 0 83px;
  }
  .e2 .txt {
    margin: 2px 0 0 1px;
    width: 258px;
  }
  .e2 .txt p + p {
    margin-top: 0;
  }
  .e2 .b1 {
    left: 31px;
    top: 96px;
    width: 83px;
    height: 55px;
  }
  .e2 .b2 {
    left: 148px;
    top: 0;
    width: 79px;
    height: 68px;
    box-shadow: inset 0 4px 50px 20px #2A2A2A;
  }
  .e2 .b4 {
    left: 39px;
    top: 9px;
    width: 114px;
    height: 76px;
  }
  .e2 .b5 {
    left: 115px;
    top: 68px;
    width: 60px;
    height: 48px;
    box-shadow: inset 0 4px 50px 20px #2A2A2A;
  }
  .e2 .b8 {
    left: 186px;
    top: 52px;
    width: 73px;
    height: 49px;
  }
  .e2 .b3 {
    left: 12px;
    top: 0;
    width: 145px;
    height: 97px;
  }
  .e2 .b6 {
    left: 235px;
    top: 40px;
    width: 138px;
    height: 91px;
    box-shadow: inset 0 4px 50px 20px #2A2A2A;
  }
  .e2 .b7 {
    left: 143px;
    top: 40px;
    width: 90px;
    height: 55px;
    box-shadow: inset 0 4px 50px 20px #2A2A2A;
  }
  .e3 .arts_t {
    height: 85px;
  }
  .e3 .arts_b {
    height: 107px;
    margin-top: 12px;
  }
  .e3 .box {
    margin: 10px 0 0 22px;
  }
  .e3 .box:before {
    background: rgba(29, 29, 29, 0.81);
    opacity: 1;
  }
  .e3 .cap {
    margin: -4px 0 0 1px;
  }
  .e3 .txt {
    margin: 0 0 0 1px;
    width: 258px;
  }
  .e3 .c2 {
    left: 39px;
    top: 9px;
    width: 114px;
    height: 76px;
  }
  .e3 .c4 {
    left: 148px;
    top: 0;
    width: 79px;
    height: 56px;
  }
  .e3 .c1 {
    left: 208px;
    top: 0;
    width: 116px;
    height: 100px;
  }
  .e3 .c3 {
    left: 119px;
    top: 23px;
    width: 96px;
    height: 64px;
  }
  .e3 .c5 {
    left: 35px;
    top: 0;
    width: 80px;
    height: 54px;
  }
}
/*------------------------------------------------------------
PORTFOLIO SP
------------------------------------------------------------*/
@media all and (max-width: 767px) {
  .pg_portfolio .pg_ttl .eg {
    font-size: 30px;
    letter-spacing: 10px;
    padding-left: 10px;
  }
  .pg_portfolio .pg_ttl .jp {
    font-size: 18px;
    letter-spacing: 1px;
    padding-left: 1px;
  }
  .pf_cats {
    width: auto;
    margin: 150px 0 0;
    padding-bottom: 0;
    border-bottom: none;
    justify-content: center;
  }
  .pf_cats .pp {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    padding-left: 4px;
  }
  .pf_cats button {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 4px;
    border-radius: 4px;
    padding: 0 0 0 4px;
  }
  .pf_cats button:before,
  .pf_tags button.on:before {
    filter: drop-shadow(0 3px 11px rgba(0, 0, 0, 0.25)) blur(6px);
  }
  .pf_tags {
    display: block;
    width: fit-content;
    margin-top: 24px;
    margin-inline: auto;
    padding: 0 13px;
  }
  .pf_tags .tg_mat {
    width: auto;
  }
  .pf_tags .tg_fin {
    margin-top: 12px;
  }
  .pf_tags .lb {
    font-size: 12px;
    line-height: 16px;
  }
  .pf_tags ul {
    gap: 3px 12px;
    margin-top: 5px;
  }
  .pf_tags button {
    font-size: 11px;
    line-height: 15px;
  }
  .pf_grid {
    width: auto;
    margin: 36px 0 0;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 25px;
  }
  .pf_grid .card .ph img {
    opacity: 1;
  }
  .pf_grid .card .tg2 {
    display: none;
  }
  .pf_grid .card .nm {
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .pf_more_w {
    margin-top: 25px;
  }
  .pf_more {
    font-size: 12px;
    line-height: 16px;
  }
  .ct_bnr {
    margin-top: 50px;
  }
  .ct_bnr em {
    font-size: 20px;
    letter-spacing: 2.4px;
    padding-left: 2.4px;
  }
  .ct_bnr span {
    margin-top: 5px;
    font-size: 14px;
    letter-spacing: 1.68px;
    padding-left: 1.68px;
  }
}
/*------------------------------------------------------------
PROJECT SP
------------------------------------------------------------*/
@media all and (max-width: 767px) {
  .pg_project .pg_ttl .eg {
    font-size: 30px;
    letter-spacing: 10px;
    padding-left: 10px;
  }
  .pg_project .pg_ttl .jp {
    font-size: 18px;
    letter-spacing: 1px;
    padding-left: 1px;
  }
  .pj_body {
    margin: 80px calc(50% - min(50vw, 300px)) 0;
    padding: 25px 17px 8px;
  }
  .pj_body:before {
    height: 100%;
  }
  .pj_ret {
    display: none;
  }
  .pj_cols {
    display: block;
    padding: 0;
  }
  .pj_gal .mv {
    aspect-ratio: 350/297;
  }
  .pj_gal .mv .nx {
    width: 17px;
  }
  .pj_gal .mv .nx img {
    width: 27px;
  }
  .pj_gal .thumbs {
    padding: 10px 0 9px;
  }
  .pj_gal .thumbs .th {
    width: 20%;
  }
  .pj_txt {
    padding: 14px 0 0;
  }
  .pj_txt .hd {
    font-size: 14px;
    line-height: 16px;
  }
  .pj_txt .ov {
    padding: 0 17px;
  }
  .pj_txt .ov .tx {
    margin-top: 8px;
    font-size: 11px;
    line-height: 16px;
  }
  .pj_txt .dt {
    width: auto;
    margin-top: 43px;
    padding: 7px 17px 0;
  }
  .pj_txt .dt dl {
    margin-top: 8px;
  }
  .pj_txt .dt .row {
    grid-template-columns: 82px 1fr;
    font-size: 11px;
    line-height: 22px;
  }
  .pj_txt .dt .row + .row {
    margin-top: 0;
  }
  .pj_txt .dt .row dt {
    padding-right: 6px;
  }
  .pj_back {
    margin-top: 24px;
    font-size: 13px;
  }
  .pg_project .core_nav {
    margin-top: 50px;
  }
}
/*------------------------------------------------------------
ABOUT SP
------------------------------------------------------------*/
@media all and (max-width: 767px) {
  .pg_about .in {
    padding-bottom: 44px;
  }
  .pg_about .pg_ttl .eg {
    font-size: 28px;
    letter-spacing: 10px;
    padding-left: 10px;
  }
  .pg_about .pg_ttl .jp {
    font-size: 16px;
    letter-spacing: 1px;
    padding-left: 1px;
  }
  .pg_about .ab_bg1,
  .pg_about .ab_bg2 {
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    width: auto;
    height: 760px;
  }
  .pg_about .ab_bg2 {
    top: auto;
    bottom: 0;
  }
  .pg_about .deco {
    display: none;
  }
  .pg_about .ab_logo {
    position: relative;
    z-index: 1;
    left: auto;
    top: auto;
    width: 200px;
    margin: 48px auto 0;
  }
  .ab_sec {
    margin-left: 0;
  }
  .ab_sec .hd {
    font-size: 18px;
    line-height: 30px;
  }
  .ab_sec .row {
    grid-template-columns: 84px 1fr;
  }
  .ab_sec dt,
  .ab_sec dd {
    font-size: 12px;
    line-height: 19px;
    min-height: 22px;
  }
  .ab_sec .ph {
    position: static;
  }
  .ab_idea {
    margin-top: 56px;
    width: auto;
  }
  .ab_idea .hd {
    line-height: 30px;
    margin-bottom: 18px;
  }
  .ab_idea p {
    font-size: 12px;
    line-height: 1.8333333333;
  }
  .ab_idea p + p {
    margin-top: 18px;
  }
  .ab_hist {
    margin-top: 44px;
  }
  .ab_hist .hd {
    margin-bottom: 20px;
  }
  .ab_hist dl:before {
    left: 62px;
    top: 4px;
    bottom: 4px;
    width: 2px;
  }
  .ab_hist .row + .row {
    margin-top: 14px;
  }
  .ab_base {
    margin-top: 44px;
  }
  .ab_base .hd {
    margin-bottom: 18px;
  }
  .ab_base .row + .row {
    margin-top: 10px;
  }
  .ab_base .ph1 {
    display: inline-block;
    vertical-align: top;
    width: 34.2857%;
    aspect-ratio: 120/180;
    height: auto;
    margin: 20px 2.2857% 0 0;
  }
  .ab_base .ph2 {
    display: inline-block;
    vertical-align: top;
    width: 60%;
    aspect-ratio: 210/140;
    height: auto;
    margin: 60px 0 0;
  }
  .ab_info {
    margin-top: 44px;
  }
  .ab_info .hd {
    line-height: 30px;
    margin-bottom: 18px;
  }
  .ab_info .row + .row {
    margin-top: 10px;
  }
  .ab_info .r136 {
    width: 100%;
    height: 210px;
    margin-top: 20px;
  }
}
/*------------------------------------------------------------
CAREER SP
------------------------------------------------------------*/
@media all and (max-width: 767px) {
  .pg_career .pg_ttl .eg {
    font-size: 28px;
    letter-spacing: 10px;
    padding-left: 10px;
  }
  .pg_career .pg_ttl .jp {
    font-size: 16px;
    letter-spacing: 1px;
    padding-left: 1px;
  }
  .cr_sec {
    margin: 44px 0 0;
    width: auto;
  }
  .cr_sec:first-of-type {
    margin-top: 56px;
  }
  .cr_sec .hd {
    font-size: 18px;
    line-height: 24px;
  }
  .cr_sec .tx {
    margin-top: 14px;
    font-size: 12px;
    line-height: 22px;
  }
  .cr_sec .tx .sh {
    margin-top: 22px;
  }
  .pg_career .ct_bnr {
    margin-top: 50px;
  }
}
/*------------------------------------------------------------
CONTACT SP
------------------------------------------------------------*/
@media all and (max-width: 767px) {
  .pg_contact .pg_ttl .eg {
    font-size: 28px;
    letter-spacing: 10px;
    padding-left: 10px;
  }
  .pg_contact .pg_ttl .jp {
    font-size: 16px;
    letter-spacing: 1px;
    padding-left: 1px;
  }
  .pg_contact .core_nav {
    margin-top: 60px;
  }
  .cf_form {
    margin-top: 40px;
  }
  .cf_form .cf_row {
    display: block;
    width: auto;
    margin: 20px 0 0;
  }
  .cf_form .cf_lb {
    display: block;
    padding-top: 0;
    margin-bottom: 8px;
    font-size: 14px;
  }
  .cf_form .cf_lb i {
    font-size: 12px;
    margin-left: 6px;
  }
  .cf_form .cf_in input,
  .cf_form .cf_in textarea,
  .cf_form .cf_in select {
    height: 48px;
    padding: 0 12px;
    font-size: 14px;
  }
  .cf_form .cf_in textarea {
    height: 240px;
    padding: 12px;
  }
  .cf_form .cf_sel:after {
    right: 16px;
    margin-top: -4px;
    border-width: 8px;
    border-top-width: 10px;
  }
  .cf_form .cf_sel select {
    padding-right: 36px;
  }
  .cf_form .cf_note {
    margin: 12px 0 0;
    font-size: 11px;
    line-height: 18px;
  }
  .cf_form .cf_req {
    width: auto;
    margin: 20px 0 0;
    font-size: 12px;
  }
  .cf_form .cf_pp {
    margin-top: 48px;
    font-size: 12px;
    line-height: 20px;
  }
  .cf_form .cf_agree {
    margin-top: 16px;
    font-size: 14px;
  }
  .cf_form .cf_agree input[type=checkbox] {
    width: 22px;
    height: 22px;
    vertical-align: -5px;
    margin-right: 8px;
  }
  .cf_form .cf_agree input[type=checkbox]:checked:after {
    left: 7px;
    top: 2px;
    width: 6px;
    height: 12px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #A02020;
  }
  .cf_form .cf_submit {
    margin-top: 24px;
  }
  .cf_form .cf_submit input[type=submit] {
    width: 72%;
    height: 52px;
    font-size: 15px;
  }
  .cf_form .wpcf7 form .wpcf7-response-output {
    width: auto;
    margin: 24px 0 0;
    font-size: 12px;
  }
}
/*------------------------------------------------------------
THANKS SP
------------------------------------------------------------*/
@media all and (max-width: 767px) {
  .pg_thanks .pg_ttl .eg {
    font-size: 28px;
    letter-spacing: 10px;
    padding-left: 10px;
  }
  .pg_thanks .pg_ttl .jp {
    font-size: 16px;
    letter-spacing: 1px;
    padding-left: 1px;
  }
  .pg_thanks .th_bd {
    margin-top: 56px;
    font-size: 12px;
    line-height: 1.9;
  }
  .pg_thanks .th_bd p + p {
    margin-top: 20px;
  }
  .pg_thanks .th_back {
    margin-top: 56px;
  }
  .pg_thanks .core_nav {
    margin-top: 70px;
  }
}
