/*
Theme Name: Vicc Ltd.
Author: MONOGRAPH ARTS INC.
Author URI: http://www.mn-arts.com/
*/

@charset 'utf-8';
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;400;700&family=Noto+Sans+JP:wght@400;700&display=swap");

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

body {
  background: #fff;
  color: #333;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.2;
  text-align: justify;
  min-width: 1100px;
}

a {
  color: #f00;
  text-decoration: underline;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.5;
}

.red {
  color: #f00;
}

.btn {
  display: inline-block;
  border: 1px solid rgba(255, 0, 0, 0.3);
  font-size: 93%;
  letter-spacing: 0.16em;
  text-align: center;
  width: 250px;
  padding: 8px 0;
  text-decoration: none;
  transition: 0.2s;
}

.btn.large {
  display: block;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 0;
}

.btn .arr::after {
  display: inline-block;
  content: "";
  border: 1px solid #f00;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin: 0 0 2px 10px;
  transition: 0.2s;
}

.btn:hover {
  border: 1px solid rgba(255, 0, 0, 1);
  background: rgba(255, 0, 0, 1);
  color: #fff;
  opacity: 1;
}

.btn:hover .arr::after {
  border-color: #fff;
}

br.sp {
  display: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}

ul {
  list-style: none;
}

.w80,
.w90 {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
}

.mt25 {
  margin-top: 25px;
}

.mt50 {
  margin-top: 50px;
}

.mt75 {
  margin-top: 75px;
}

.mt100 {
  margin-top: 100px;
}

.mt150 {
  margin-top: 150px;
}

.mt200 {
  margin-top: 200px;
}

.p50 {
  padding: 50px;
}

.heading-1 {
  font-size: 333%;
  font-weight: 200;
  line-height: 1.2;
}

.heading-1-sub {
  font-weight: 700;
  color: #f00;
  margin-top: 5px;
}

.heading-2 {
  font-size: 125%;
}

.heading-2 span {
  display: inline-block;
  border-bottom: 1px solid #f00;
  padding-bottom: 10px;
}

.heading-3 {
  font-size: 125%;
  font-weight: 700;
}

p.w80 {
  max-width: 1100px;
}

.indent {
  padding-left: 35px;
}

.indent2 {
  padding-left: 50px;
}

p.lead {
  font-size: 125%;
  font-weight: 700;
}

p.note {
  font-size: 85%;
}

p.center,
div.center {
  text-align: center;
}

div.center .inner {
  display: inline-block;
  text-align: left;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.flex.center {
  align-items: center;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.flex.vertical {
  flex-direction: column;
}

.flex .w50 {
  width: 50%;
}

.flex .w48 {
  width: 48%;
}

.grid {
  flex-wrap: wrap;
}

.grid > li {
  display: block;
  width: 31%;
}

.grid > li:nth-child(n + 4) {
  margin-top: 75px;
}

.grid::after {
  display: block;
  content: "";
  width: 30%;
  height: 1px;
  margin-top: 0;
}

.header {
  padding: 15px 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1100px;
  z-index: 100;
}

.header .logo {
  width: 100px;
  height: 57px;
}

.gnavi ul {
  position: relative;
}

.gnavi li {
  letter-spacing: 0.1em;
  margin-left: 30px;
  line-height: 57px;
}

.gnavi .lang {
  font-size: 85%;
}

.gnavi a {
  color: #333;
  opacity: 0.65;
  text-decoration: none;
}

.gnavi a:hover {
  opacity: 1;
}

.dark::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  opacity: 0.5;
  transition: 0.5s;
  z-index: -1;
}

.dark:hover::after {
  height: 200%;
  opacity: 1;
}

.dark .gnavi,
.dark .gnavi a {
  color: #fff;
}

.page.pmvv .gnavi li:first-child a,
.page.service .gnavi li:nth-child(2) a,
.page.service-child .gnavi li:nth-child(2) a,
.post-type-archive-post .gnavi li:nth-child(3) a,
.single-post .gnavi li:nth-child(3) a,
.page.company .gnavi li:nth-child(4) a,
.post-type-archive-news .gnavi li:nth-child(5) a,
.single-news .gnavi li:nth-child(5) a,
.page.recruit .gnavi li:nth-child(7) a,
.single-recruit .gnavi li:nth-child(7) a,
.page.contact .gnavi li:nth-child(8) a {
  opacity: 1;
}

.fade {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s, transform 1s;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  background: #000;
  color: #fff;
  padding: 150px 0;
  margin-top: 200px;
}

.home .footer {
  margin-top: 0;
}

.footer .banners {
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 100px;
}

.footer .banners a {
  display: block;
  background: #000 url(/wp/wp-content/uploads/2025/09/banner-company.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 75px 0;
}

.footer .banners a:last-child {
  background-image: url(/wp/wp-content/uploads/2025/09/banner-recruit.jpg);
}

.footer .banners .heading-1-sub {
  color: #fff;
}

.footer .banners .btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer .banners .arr::after {
  border: 1px solid #fff;
  border-width: 1px 1px 0 0;
}

.footer .banners a:hover .btn {
  border: 1px solid rgba(255, 255, 255, 1);
  background: #fff;
  color: #333;
  opacity: 1;
}

.footer .banners a:hover .arr::after {
  border-color: #333;
}

.footer .logo img {
  width: 90%;
  max-width: 100px;
}

.footer .info p {
  margin-left: 100px;
}

.footer .info a {
  color: #fff;
}

.footer .copyright {
}






/* top */

.home .header .logo img {
  display: none;
}

.cover {
  background: #000;
  height: 100vh;
  padding-top: 45vh;
  position: relative;
}

.cover .slideshow,
.cover .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cover .slide {
  background: #000 url(/wp/wp-content/uploads/2025/09/hero-1.jpg) center center no-repeat;
  background-size: cover;
  opacity: 0;
}

.cover .slide.show {
  opacity: 1;
  transform: scale(1.05);
  transition: opacity 1.5s linear, transform 6.5s linear;
}

.cover .slide-2 {
  background-image: url(/wp/wp-content/uploads/2025/09/hero-2.jpg);
}

.cover .slide-3 {
  background-image: url(/wp/wp-content/uploads/2025/09/hero-3.jpg);
}

.cover .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65vw;
  max-width: 500px;
  transform: translate(-50%, -50%);
}

.home section {
  padding-top: 400px;
}

.about-us .flex {
  align-items: center;
}

.about-us .left {
  width: 45%;
  max-width: 450px;
}

.about-us .right {
  flex: 1;
}

.about-us .right img {
  min-height: 450px;
  object-fit: cover;
}

.project-list li a {
  color: #333;
  text-decoration: none;
}

.project-list li span {
  display: block;
}

.project-list li .thumb img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-list li .title {
  font-weight: 700;
  margin-top: 10px;
}

.news-blog {
  background: #f8f8f8;
  padding: 150px 0;
  margin-top: 400px;
}

.news-blog .flex .heading {
  width: 15%;
}

.news-blog .flex .list {
  flex: 1;
}

.post-type-archive-news .news-list li:first-child {
  margin-top: -25px;
}

.news-list li:nth-child(n + 2) {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.news-list li:nth-child(n + 10) {
  display: none;
}

.news-list li a {
  display: flex;
  color: #333;
  text-decoration: none;
  padding: 25px 0;
}

.news-list li .date {
  width: 150px;
  color: #f00;
}

.news-list li .title {
  flex: 1;
}

.news-blog .blog {
  margin-top: 100px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 100px;
}






/* projects */

.categories {
  position: relative;
  margin-bottom: 75px;
}

.categories .toggle {
  position: absolute;
  top: -2.2em;
  right: 0;
  text-decoration: none;
  border-bottom: 1px solid #f00;
}

.categories .toggle::after {
  display: inline-block;
  content: "";
  border: 1px solid #f00;
  border-width: 1px 1px 0 0;
  width: 6px;
  height: 6px;
  transform: rotate(135deg);
  margin: 0 0 3px 10px;
  transition: transform 0.2s, margin 0.2s;
}

.categories .toggle.close::after {
  transform: rotate(315deg);
  margin: 3px 0 0 10px;
}

.categories-list {
  /*display: none;*/
  padding-top: 50px;
}

.categories-list li {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-left: 1.5em;
}

.categories-list li::after {
  display: block;
  content: "―";
  position: absolute;
  top: 0;
  left: 0;
  color: #f00;
}

.categories-list li:nth-child(n + 2) {
  margin-top: 0.5em;
}

.categories-list li a {
  color: #333;
  font-weight: 700;
  text-decoration: none;
}

.categories-list li .second {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  margin-left: 1em;
}

.categories-list li .second a {
  opacity: 0.5;
  font-size: 93%;
  font-weight: 400;
}

.categories-list li .second a:hover {
  opacity: 1;
}

.categories-list li .second a:nth-child(n + 2)::before {
  content: "/";
  margin: 0 0.5em;
}

.single-post .project-title {
  font-size: 200%;
  width: 90%;
  margin: auto;
}

.single-post .hero img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.single-post .detail {
  margin: 150px auto;
}

.table {
  display: flex;
  flex-wrap: wrap;
}

.table dt {
  width: 20%;
  font-weight: 700;
}

.table dd {
  width: 80%;
}

.table dt:nth-of-type(n + 2),
.table dd:nth-of-type(n + 2) {
  margin-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 25px;
}

.single-post figure {
  margin-top: 50px;
}

.single-post figure img,
.single-post figure video {
  display: block;
  width: 100%;
}

.single-post figure figcaption {
  font-size: 93%;
  margin-top: .5em;
}






/* page */

.page-header {
  background: #000 url(/wp/wp-content/uploads/2025/09/hv-pmvv.jpg) center center no-repeat;
  background-size: cover;
  padding: 300px 5vw 5vw;
}

.company .page-header {
  background-image: url(/wp/wp-content/uploads/2025/09/hv-company.jpg);
}

.service .page-header {
  background-image: url(/wp/wp-content/uploads/2025/09/hv-service.jpg);
}

.recruit .page-header {
  background-image: url(/wp/wp-content/uploads/2025/09/hv-recruit.jpg);
}

.page-header .heading-1,
.page-header .heading-1-sub {
  color: #fff;
}

.bdr {
  width: 1px;
  height: 200px;
  background: #f00;
  margin: 100px auto;
}

.clause {
  max-width: 1000px;
}

.clause li {
  position: relative;
  padding-left: 30px;
}

.clause li::before {
  content: "―";
  position: absolute;
  left: 0;
  top: 0;
  color: #f00;
  font-size: 125%;
}

.clause li:nth-child(n + 2) {
  margin-top: 50px;
}

.bg-gray {
  background: #f8f8f8;
  padding: 150px 0;
}

.bg-white {
  background: #fff;
}

.service-list .w48 img {
  object-fit: cover;
  aspect-ratio: 16 / 9;
  height: 100%;
}

.service-list .inner span {
  display: inline-block;
}

.masonry .grid-item {
  float: left;
  width: 47%;
  margin: 0 1.5% 3%;
  padding: 35px;
}

.masonry .grid-item img {
  margin-top: 30px;
}

.service-child .service-list a {
  display: block;
  color: #333;
  font-weight: 700;
  text-decoration: none;
}

.service-child .service-list img {
  object-fit: cover;
  aspect-ratio: 16 / 9;
  min-height: 100%;
  margin-bottom: 10px;
}

.profile .gmap iframe {
  border: 0;
  width: 100%;
  height: 500px;
}

.gallery figure img,
.gallery figure video {
  cursor: pointer;
}

.member-list li span {
  display: block;
}

.member-list li .name {
  font-size: 115%;
  font-weight: 700;
  margin-top: 10px;
}

.member-list li .position {
  font-size: 93%;
  color: #666666;
}

.watanabe {
  background: #000;
}

.watanabe > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.watanabe img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.watanabe p {
  display: inline-block;
  color: #fff;
  padding: 0 5%;
}

.watanabe p span {
  font-size: 150%;
  letter-spacing: 0.2em;
}

.history dt {
  font-size: 300%;
  font-weight: 200;
  line-height: 1.2;
}

.history dd {
  padding-top: 10px;
}

.history dd:nth-of-type(n + 2) {
  padding-top: 36px;
}






/* news post */

.single-news .post-body p:nth-of-type(n + 2) {
  margin-top: 2.2em;
}






/* recruit */

.recruit .footer {
  margin-top: 0;
}

.job-list {
  flex-wrap: wrap;
}

.job-list-bg {
  background: #f8f8f8;
  padding: 150px 0;
}

.job-list li {
  background: #fff;
  padding: 35px;
}

.job-list li span {
  display: block;
}

/*.job-list li .overview {
  height: 8.8em;
  overflow: hidden;
  position: relative;
}

.job-list li .overview::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.2em;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}*/






/* contact */

form .table dt {
  padding-top: 10px;
}

form .table dt:nth-of-type(n + 2),
form .table dd:nth-of-type(n + 2) {
  border-top: 0;
}

form .table dt:nth-of-type(n + 2) {
  padding-top: 35px;
}

form input,
form select,
form textarea {
  appearance: none;
  display: block;
  width: 100%;
  background: #f4f4f4;
  color: #333;
  border: 0;
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-size: 14px;
  padding: 15px;
}

form textarea {
  height: 150px;
}

form .agree {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 35px;
}

form .lead {
  font-size: 100%;
  margin-bottom: 10px;
}

form .lead+p {
  margin-bottom: 10px;
}

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

form input[type=checkbox]+label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  padding-left: 30px;
  position: relative;
  width: auto;
}

form input[type=checkbox]+label::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin-top: -10px;
  transition: .1s
}

form input[type=checkbox]:checked+label::before {
  border-color: #f00;
  background: #f00;
}

form input[type=checkbox]:checked+label::after {
  content: '';
  display: block;
  position: absolute;
  left: 7px;
  top: 50%;
  width: 6px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin-top: -8px;
  transform: rotate(45deg);
}

form .error {
  color: #f00;
  display: none;
  font-size: 93%;
}






@media only screen and (max-width: 768px) {
  body {
    font-size: 13px;
    letter-spacing: 0.02em;
    min-width: inherit;
  }

  br.pc {
    display: none;
  }

  br.sp {
    display: inline;
  }

  .btn {
    width: 100%;
    max-width: 90vw;
  }

  .btn.large {
    width: 100%;
    padding: 12px 0;
  }

  .w80 .w80 {
    width: 100%;
  }

  .mt25 {
    margin-top: 13px;
  }

  .mt50 {
    margin-top: 25px;
  }

  .mt75 {
    margin-top: 33px;
  }

  .mt100 {
    margin-top: 50px;
  }

  .mt150 {
    margin-top: 100px;
  }

  .mt200 {
    margin-top: 100px;
  }

  .p50 {
    padding: 20px;
  }
  
  .heading-1 {
    font-size: 250%;
  }

  .heading-1-sub {
    font-weight: 700;
    color: #f00;
    margin-top: 10px;
  }

  .heading-2 span {
    padding-bottom: 5px;
  }
  
  .indent {
    padding-left: 10px;
  }

  .indent2 {
    padding-left: 20px;
  }

  .header {
    padding: 15px 5vw;
    min-width: inherit;
  }

  .header .gnavi {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(84px);
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.3s, visibility 0.3s;
    visibility: hidden;
    width: 100%;
    z-index: 101;
  }

  .header .gnavi.show {
    opacity: 1;
    visibility: visible;
  }

  .header .logo {
    width: 60px;
  }

  .gnavi {
    color: #fff;
  }

  .gnavi ul {
    display: block;
    left: 5%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
  }

  .gnavi li {
    display: block;
    text-align: center;
    margin-left: 0;
    line-height: 9.5vh;
  }

  .gnavi a {
    color: #fff;
    font-weight: 700;
  }

  .gnavi-btn {
    height: 70px;
    position: fixed;
    right: 0;
    top: 0;
    width: 70px;
    z-index: 102;
  }

  .gnavi-btn::before,
  .gnavi-btn::after {
    background: #e60012;
    content: "";
    display: block;
    height: 2px;
    left: 15px;
    position: absolute;
    top: 31px;
    transition: top 0.3s, transform 0.3s;
    width: 34px;
  }

  .gnavi-btn::after {
    top: 37px;
  }

  .gnavi-btn.x::before,
  .gnavi-btn.x::after {
    background: #fff;
    top: 34px;
  }

  .gnavi-btn.x::before {
    transform: rotate(-45deg);
  }

  .gnavi-btn.x::after {
    transform: rotate(45deg);
  }

  .flex {
    display: block;
  }

  .flex .w48,
  .flex .w50 {
    width: 100%;
  }

  .main .flex > *:nth-child(n + 2) {
    margin-top: 15px;
  }
  
  .grid > li {
    width: 100%;
  }
  
  .grid > li:nth-child(n + 2),
  .grid > li:nth-child(n + 4) {
    margin-top: 30px;
  }

  .table {
    display: block;
  }

  .table dt,
  .table dd {
    width: 100%;
  }

  .table dt {
  }

  .table dt:nth-of-type(n + 2) {
    margin-top: 20px;
    padding-top: 20px;
  }

  .table dd,
  .table dd:nth-of-type(n + 2) {
    margin-top: 0;
    border-top: 0;
    padding-top: 8px;
  }

  section,
  .footer {
    padding: 100px 0;
    margin: 0 auto;
  }

  .footer {
    margin-top: 80px;
    padding: 80px 0;
  }

  .footer .banners {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .footer .banners a {
    padding: 40px 0;
  }

  .footer .banners a:last-child {
    margin-top: 30px;
  }

  .footer .banners .btn {
    width: 90%;
  }

  .footer .logo img {
    max-width: 60px;
    margin: 0 0 15px;
  }

  .footer .info p {
    margin-left: 0;
  }

  .footer .info p:nth-child(n + 2) {
    margin-top: 30px;
  }

  .footer .copyright {
    margin-top: 25px;
  }

  .home section {
    padding-top: 100px;
  }

  .about-us .left {
    text-align: center;
  }

  .about-us .lead span {
    display: inline-block;
  }

  .about-us .left {
    width: 100%;
    max-width: inherit;
  }

  .about-us .right {
    margin: 50px auto 0 !important;
  }

  .about-us .right img {
    min-height: inherit;
  }

  .what-we-do .w90 {
    width: 100%;
  }
  
  .bg-gray {
    padding: 100px 0;
  }
  
  .project-list li:nth-child(n + 2) {
    margin-top: 30px !important;
  }

  .news-blog {
    padding: 80px 0;
    margin-top: 0;
  }

  .news-blog .flex .heading {
    width: 100%;
  }

  .news-list li a {
    display: block;
    padding: 15px 0;
  }

  .news-list li .date,
  .news-list li .title {
    display: block;
    width: 100%;
  }

  .news-blog .blog {
    margin-top: 50px;
    padding-top: 50px;
  }

  .page-header {
    padding-top: 205px;
  }

  .clause li:nth-child(n + 2) {
    margin-top: 15px;
  }

  .clause li br {
    display: none;
  }

  .masonry .grid-item {
    width: 100%;
    margin: 0 0 25px;
    padding: 5%;
  }

  .masonry .grid-item img {
    margin-top: 25px;
  }

  .categories-list li {
    display: block;
  }
  
  .single-post .project-title {
    font-size: 175%;
    line-height: 1.5;
  }
  
  .single-post .detail {
    margin: 25px auto;
  }
  
  .single-post figure {
    margin-top: 25px;
  }
  
  .profile .gmap iframe {
    height: 75vw;
  }
  
  .watanabe img {
    height: 75vw;
  }
  
  .watanabe > div+div {
    margin-top: 0 !important;
	padding: 35px 0;
	text-align: center;
  }
  
  .member-list {
    display: flex;
  }
  
  .member-list li {
    width: 47.5%;
    margin-top: 0 !important;
  }
  
  .member-list li:nth-child(n + 3) {
    margin-top: 30px !important;
  }
  
  .member-list li img {
    height: 42.7vw;
	object-fit: cover;
  }
  
  .member-list li .name {
  }
  
  .member-list li .position {
  }

  .history dt {
    font-size: 250%;
  }
  
  .recruit .page-header {
    background-position: left center;
  }

  .job-list-bg {
    padding: 80px 0;
  }
  
  .job-list li {
    padding: 20px;
  }

  form .table dt {
    padding-top: 0;
  }

  form .table dt:nth-of-type(n + 2) {
    padding-top: 15px;
  }
  
  form .agree {
    padding: 5%;
  }
}

@media only screen and (max-width: 375px) {
  p.lead {
    font-size: 4.3vw;
  }
}

@media only screen and (min-width: 2560px) {
  body {
    font-size: 19px;
  }
  
  .w80,
  .w90 {
    max-width: 2100px;
  }
  
  p.w80,
  .clause {
    max-width: 1400px;
  }
  
  .about-us .left {
    max-width: 550px;
  }
}