body.archive #portfolio .inner {
  padding-top: 0;
  margin-top: 0;
}

#contsHeader {
  width: 100%;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/hero_dummy.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
#contsHeader .movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#contsHeader .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#contsHeader .movie::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#contsHeader p {
  position: relative;
  color: var(--color-white);
  font-size: var(--fontsize-LL);
  font-weight: 300;
  margin: 0;
  padding: 50px 0 0;
}

#breadcrumb .inner {
  padding-top: 24px;
  padding-bottom: 24px;
}
#breadcrumb ul {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
#breadcrumb ul li {
  position: relative;
}
#breadcrumb ul li a {
  color: var(--color-black);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  white-space: nowrap;
}
#breadcrumb ul li a:hover {
  color: var(--color-main);
  text-decoration: underline;
}
#breadcrumb ul li::after {
  content: ">";
  position: absolute;
  right: -21px;
  top: -1px;
}
#breadcrumb ul li:last-child {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#breadcrumb ul li:last-child::after {
  display: none;
}

#newslist .inner {
  padding-top: 80px;
}
#newslist h3.h3main {
  text-align: left;
  margin-bottom: 32px;
}
#newslist .newsBody {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
#newslist .newsBody .slide {
  display: flex;
  gap: 32px;
}
#newslist .newsBody .slide .slide-media {
  width: 276px;
  height: auto;
  aspect-ratio: 276/188;
  overflow: hidden;
  border-radius: var(--border-radius-s);
}
#newslist .newsBody .slide .slide-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition-duration: var(--anim-mouseOver);
}
#newslist .newsBody .slide .slide-content {
  width: calc(100% - 308px);
}
#newslist .newsBody .slide .slide-content h2.slide-title,
#newslist .newsBody .slide .slide-content time {
  font-size: var(--fontsize-S);
  font-weight: 400;
}
#newslist .newsBody .slide .slide-content h2.slide-title {
  height: auto;
}
#newslist .newsBody a:hover .slide {
  transform: none;
}
#newslist .newsBody a:hover .slide-media img {
  transform: scale(1.1);
}
#newslist .newsBody a:hover h2.slide-title {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #newslist .newsBody {
    gap: 60px;
  }
  #newslist .newsBody .slide {
    flex-direction: column;
  }
  #newslist .newsBody .slide .slide-media {
    width: 100%;
  }
  #newslist .newsBody .slide .slide-content {
    width: 100%;
  }
}

#newsBody .inner {
  padding-top: 50px;
}
#newsBody h3 {
  margin-top: 35px;
  line-height: 1.1;
  margin-bottom: 20px;
}
#newsBody h4 {
  font-size: 24px;
}
#newsBody ul,
#newsBody ol {
  margin: 30px 0 30px 30px;
}
#newsBody ul li,
#newsBody ol li {
  line-height: 1.43;
  margin-bottom: 16px;
  list-style: decimal;
}
#newsBody ul li {
  list-style-type: disc;
}
#newsBody .careerHeadTable, #newsBody .careerHeadTable3 {
  margin-bottom: 30px;
}
#newsBody .careerHeadTable tr, #newsBody .careerHeadTable3 tr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  padding-bottom: 8px;
}
#newsBody .careerHeadTable td, #newsBody .careerHeadTable3 td {
  vertical-align: top;
  padding: 10px;
  background-color: #f7f7f7;
  position: relative;
}
#newsBody .careerHeadTable td:nth-child(odd), #newsBody .careerHeadTable3 td:nth-child(odd) {
  padding-top: 14px;
  font-size: 14px;
  white-space: nowrap;
  color: #707070;
}
#newsBody .careerHeadTable td:nth-child(odd)::after, #newsBody .careerHeadTable3 td:nth-child(odd)::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 100%;
  right: -11px;
  bottom: 0;
  background-color: #f7f7f7;
}
#newsBody .careerHeadTable td:nth-child(even), #newsBody .careerHeadTable3 td:nth-child(even) {
  font-size: 18px;
}
#newsBody .careerHeadTable td[colspan="2"], #newsBody .careerHeadTable3 td[colspan="2"] {
  grid-column: span 2;
}
#newsBody .careerHeadTable td[colspan="3"], #newsBody .careerHeadTable3 td[colspan="3"] {
  grid-column: span 3;
}
#newsBody .careerHeadTable td[colspan="5"], #newsBody .careerHeadTable3 td[colspan="5"] {
  grid-column: span 5;
}
#newsBody .career-form-hold {
  background-color: #222;
  border-radius: var(--border-radius-s);
  padding: 33px;
  font-weight: 300;
}
#newsBody .career-form-hold p {
  color: var(--color-white);
  font-size: var(--fontsize-S);
}
#newsBody .career-form-hold .contactPlace {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
}
#newsBody .career-form-hold .contactPlace li {
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 7px;
}
#newsBody .career-form-hold .contactPlace li::before {
  content: "";
  width: 19px;
  height: auto;
  aspect-ratio: 19/24;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icon_place.svg);
}
#newsBody .career-form-hold .formBox2 {
  display: flex;
  gap: 20px;
}
#newsBody .career-form-hold .formBox2 > p {
  width: calc((100% - 20px) / 2);
}
#newsBody .career-form-hold label span input,
#newsBody .career-form-hold label span select,
#newsBody .career-form-hold label span textarea {
  color: var(--color-white);
  margin-top: 6px;
  width: 100%;
  font-weight: 400;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius-s);
  background-color: #444444;
}
#newsBody .career-form-hold label span:not(.wpcf7-not-valid-tip, .formSmall) {
  color: var(--color-main);
}
#newsBody .career-form-hold label .formSmall {
  font-size: 14px;
  color: var(--color-white);
  display: inline;
  padding-left: 12px;
}
#newsBody .career-form-hold input[type=submit] {
  margin-top: 40px;
  padding: 10px 60px;
  border: none;
  border-radius: var(--border-radius-s);
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #newsBody .careerHeadTable3 tr {
    grid-template-columns: 1fr 1fr;
  }
  #newsBody .careerHeadTable3 tr td[colspan="3"] {
    grid-column: span 1;
  }
  #newsBody .careerHeadTable3 tr td[colspan="5"] {
    grid-column: span 2;
    padding-top: 0;
  }
  #newsBody .careerHeadTable3 tr td:nth-child(odd):has(+ td[colspan="5"]) {
    grid-column: span 2;
    padding-bottom: 0;
  }
  #newsBody .careerHeadTable3 tr td:nth-child(odd):has(+ td[colspan="5"])::after {
    width: 100%;
    height: 12px;
    bottom: -11px;
    right: 0;
  }
  #newsBody .career-form-hold {
    padding: 33px 12px;
  }
  #newsBody .career-form-hold .formBox2 {
    flex-direction: column;
    gap: 0;
  }
  #newsBody .career-form-hold .formBox2 > p {
    width: 100%;
  }
  #newsBody .career-form-hold label .formSmall {
    display: block;
    padding-left: 0px;
  }
}

#portfolioBody .inner {
  padding-top: 50px;
}
#portfolioBody h1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
#portfolioBody h1 img {
  width: 100%;
  max-width: 400px;
}
#portfolioBody h1 p {
  margin-bottom: 0;
}
#portfolioBody .portfolioFlex {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}
#portfolioBody .portfolioFlex p,
#portfolioBody .portfolioFlex .cardVisual {
  width: calc((100% - 40px) / 2);
  padding-bottom: 0;
  margin-bottom: 0;
}
#portfolioBody .portfolioFlex .cardVisual {
  border-radius: var(--border-radius-s);
}
#portfolioBody .portfolioGrid {
  margin-top: 80px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
#portfolioBody .portfolioGrid p {
  padding-bottom: 0;
  margin-bottom: 0;
}
#portfolioBody .btn {
  width: 40%;
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 700;
  height: 60px;
  margin: 80px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  border-radius: var(--border-radius-s);
  transition-duration: var(--anim-mouseOver);
}
#portfolioBody .portfolioRelated {
  margin-top: 200px;
}
#portfolioBody .portfolioRelated h3 {
  margin-bottom: 40px;
  color: var(--color-main);
}
#portfolioBody .portfolioRelated .portfolioRelatedCase {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
#portfolioBody .portfolioRelated .portfolioRelatedCase .slide {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#portfolioBody .portfolioRelated .portfolioRelatedCase .slide-media {
  width: 100%;
  height: auto;
  aspect-ratio: 276/188;
  overflow: hidden;
}
#portfolioBody .portfolioRelated .portfolioRelatedCase .slide-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition-duration: var(--anim-mouseOver);
}
#portfolioBody .portfolioRelated .portfolioRelatedCase .slide-content {
  width: 100%;
}
#portfolioBody .portfolioRelated .portfolioRelatedCase .slide-content h2.slide-title,
#portfolioBody .portfolioRelated .portfolioRelatedCase .slide-content time {
  font-size: var(--fontsize-S);
  font-weight: 400;
}
#portfolioBody .portfolioRelated .portfolioRelatedCase .slide-content h2.slide-title {
  height: auto;
  color: var(--color-black);
}
#portfolioBody .portfolioRelated .portfolioRelatedCase .portfolioRelatedSpace {
  height: 1px;
}
#portfolioBody .portfolioRelated a {
  text-decoration: none;
}
#portfolioBody .portfolioRelated a:hover .slide {
  transform: none;
}
#portfolioBody .portfolioRelated a:hover .slide-media img {
  transform: scale(1.1);
}
#portfolioBody .portfolioRelated a:hover h2.slide-title {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #portfolioBody h1 {
    flex-direction: column;
    gap: 24px;
  }
  #portfolioBody .portfolioFlex {
    flex-direction: column;
  }
  #portfolioBody .portfolioFlex p,
  #portfolioBody .portfolioFlex .cardVisual {
    width: 100%;
  }
  #portfolioBody .btn {
    width: 80%;
  }
}

#teamlist .inner {
  padding-top: 80px;
}
#teamlist h3.h3main {
  text-align: left;
  margin-bottom: 16px;
}
#teamlist .teamBody {
  margin-bottom: 80px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
#teamlist .teamBody .box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  color: var(--color-black);
}
#teamlist .teamBody .box .cardVisual {
  width: 200px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: var(--border-radius-s);
  overflow: hidden;
  background-color: #EEE;
}
#teamlist .teamBody .box .cardVisual img {
  filter: grayscale(100%);
  transform-origin: center center;
  transition-duration: var(--anim-mouseOver);
}
#teamlist .teamBody .box h5 {
  color: var(--color-black);
  text-align: center;
}
#teamlist .teamBody .box:hover {
  color: var(--color-main);
}
#teamlist .teamBody .box:hover .cardVisual img {
  filter: grayscale(0%);
  transform: scale(1.1);
}
#teamlist .teamBody .box:hover h5 {
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  #teamlist .teamBody {
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  #teamlist .teamBody .box .cardVisual {
    width: 120px;
    height: 120px;
  }
}

#teamCopy .inner {
  padding-top: 0;
}
#teamCopy .copy {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
#teamCopy .copy img {
  width: 25vw;
  max-width: 454px;
}
#teamCopy .copy p {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  #teamCopy .copy {
    flex-direction: column;
    gap: 40px;
  }
  #teamCopy .copy img {
    width: 70vw;
    margin: 0 auto;
  }
}

#teamBody .inner {
  padding-top: 80px;
}
#teamBody .teamFlex {
  display: flex;
  justify-content: space-between;
}
#teamBody .teamFlex .cardVisual {
  width: 30%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius-s);
  background-color: #EEE;
}
#teamBody .teamFlex .cardVisual img {
  -o-object-fit: contain;
     object-fit: contain;
}
#teamBody .teamFlex .cardBody {
  width: 64%;
}
#teamBody .teamFlex .cardBody h1 {
  margin-top: 0;
  font-size: 48px;
  line-height: 1.4;
}
#teamBody .teamFlex .cardBody p {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  #teamBody .teamFlex {
    flex-direction: column;
    align-items: center;
  }
  #teamBody .teamFlex .cardVisual {
    width: 80%;
  }
  #teamBody .teamFlex .cardBody {
    width: 100%;
  }
  #teamBody .teamFlex .cardBody h1 {
    font-size: 38px;
    margin-top: 20px;
  }
}/*# sourceMappingURL=contents.css.map */