/* =========================================
   Variables
   ========================================= */
/* =========================================
Base
========================================= */
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.2em;
  background-color: #F2F2F2;
  width: 100vw;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

/* =========================================
Animation Utility
========================================= */
.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.js-fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

@media screen and (min-width: 768px) {
  a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
  }
  .sectionTitle {
    margin-top: 160px;
  }
  .sectionTitle .title-en {
    font-family: "Jost", sans-serif;
    font-size: 25px;
    font-weight: 700;
    position: relative;
    display: block;
    padding-left: 30px;
  }
  .sectionTitle .title-en::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    width: 15px;
    height: 15px;
    background-color: #8CBF68;
  }
  .sectionTitle .title-jp {
    font-size: 12px;
    margin-top: 10px;
    padding-left: 30px;
  }
  .flex {
    display: flex;
  }
  .button {
    width: 210px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #8CBF68;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.05em;
    transition: all 0.5s ease !important;
  }
  .button a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .button:hover {
    background-color: transparent;
    opacity: 1;
    border: 1px solid #8CBF68;
    color: #8CBF68;
  }
  .pcNone {
    display: none !important;
  }
  .page-fv {
    text-align: center;
    margin-bottom: 240px;
  }
  .page-fv .page-title {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2em;
    line-height: 1.5;
    padding-left: 2em;
    text-align: center;
  }
  .page-fv .page-title .sub {
    display: block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.4em;
    margin-left: -2em;
    margin-top: 50px;
  }
  .pagenation {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pagenation .arrow {
    width: 6px;
  }
  .pagenation .prev {
    transform: rotate(180deg);
  }
  .pagenation .number {
    display: flex;
    align-items: center;
    margin: 0 60px;
  }
  .pagenation .number li {
    position: relative;
  }
  .pagenation .number .active {
    font-weight: 700;
    color: #7DB767;
  }
  .pagenation .number .active::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    border-radius: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: #7DB767;
  }
  .pagenation .number li + li {
    margin-left: 20px;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-sizing: border-box;
    padding: 30px 50px;
  }
  header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .logo {
    margin: 0;
  }
  header .logo a {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 117px;
  }
  header .logo a img {
    width: 100%;
    height: auto;
  }
  header .logo .sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
  }
  header .wrap {
    display: flex;
    align-items: center;
  }
  header .wrap .gnav {
    margin-right: 40px;
  }
  header .wrap .gnav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
  }
  header .wrap .gnav a {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
  }
  header .wrap .gnav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s;
  }
  header .wrap .gnav a:hover::after {
    width: 100%;
  }
  header .wrap .header-cta .btn-contact {
    display: inline-block;
    background-color: #8CBF68;
    color: #ffffff;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: 150px;
    height: 40px;
    text-transform: uppercase;
    line-height: 40px;
    text-align: center;
  }
  header .wrap .header-cta .btn-contact:hover {
    background-color: #9ac77a;
    opacity: 1;
  }
  header .logo-white {
    display: none !important;
  }
  .whColor {
    color: #fff;
  }
  .whColor .logo-black {
    display: none !important;
  }
  .whColor .logo-white {
    display: block !important;
  }
  .whColor .wrap .gnav a::after {
    background: #fff !important;
  }
  .whColor .wrap .header-cta .btn-contact {
    display: inline-block;
    background-color: #8CBF68;
    color: #ffffff;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: 150px;
    height: 40px;
    text-transform: uppercase;
    line-height: 40px;
    text-align: center;
  }
  .whColor .wrap .header-cta .btn-contact:hover {
    background-color: #9ac77a;
    opacity: 1;
  }
  footer .contact {
    width: calc(100vw - 160px);
    height: 280px;
    background-color: #2E2A24;
    text-align: center;
    margin: auto;
    display: block;
    color: #fff;
    margin-top: 160px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
  }
  footer .contact:hover .circle {
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  footer .contact:hover h5 {
    letter-spacing: 0.6em;
  }
  footer .contact .textWrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #7DB767;
  }
  footer .contact .textWrap h5 {
    font-family: "Jost", sans-serif;
    font-size: 40px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 0.4em;
    transition: all 0.5s ease;
  }
  footer .contact .textWrap p {
    margin-top: 24px;
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  footer .contact .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 470px;
    height: 470px;
    border: #8CBF68 1px solid;
    border-radius: 50%;
    transition: all 0.5s ease;
    opacity: 1;
  }
  footer .footerMap {
    width: calc(100vw - 160px);
    margin: 160px auto 0px;
    color: #2E2A24;
  }
  footer .footerMap .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 80px;
  }
  footer .footerMap .info-left .footer-logo {
    width: 180px;
    margin-bottom: 40px;
  }
  footer .footerMap .info-left .footer-logo a {
    display: block;
    opacity: 1;
  }
  footer .footerMap .info-left .footer-logo a:hover {
    opacity: 0.7;
  }
  footer .footerMap .info-left .address {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    font-weight: 500;
  }
  footer .footerMap .info-left .contact-info {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    font-weight: 500;
  }
  footer .footerMap .info-left .contact-info .num {
    color: #999;
    margin: 0 5px;
  }
  footer .footerMap .info-left .contact-info .slash {
    margin: 0 10px;
  }
  footer .footerMap .info-left .sns-icon {
    width: 24px;
  }
  footer .footerMap .info-left .sns-icon a {
    display: block;
  }
  footer .footerMap .info-left .sns-icon a img {
    width: 100%;
    height: auto;
  }
  footer .footerMap .nav-right {
    display: flex;
    gap: 80px;
    margin-top: 20px;
  }
  footer .footerMap .nav-right .nav-col {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  footer .footerMap .nav-right .nav-col li {
    margin-bottom: 30px;
  }
  footer .footerMap .nav-right .nav-col li a {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  footer .footerMap .copyright {
    text-align: right;
    font-family: "Jost", sans-serif;
    font-size: 10px;
    color: #ccc;
    letter-spacing: 0.05em;
    margin-top: 20px;
  }
  #frontPage .fv-section .bgContent {
    position: relative;
    width: 100%;
    height: 100vh;
  }
  #frontPage .fv-section .bgContent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  #frontPage .fv-section .bgContent .bgImage {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
  }
  #frontPage .fv-section .bgContent .bgImage img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
  }
  #frontPage .fv-section .fv-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 5;
    color: #fff;
  }
  #frontPage .fv-section .fv-content .main-copy-en {
    font-family: "Jost", sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.4em;
    margin: 0 0 24px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  #frontPage .fv-section .fv-content .main-copy-jp {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.4em;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  #frontPage .about {
    width: calc(100vw - 160px);
    margin: 0 auto;
  }
  #frontPage .about .text {
    width: 61.71875vw;
    margin-top: 100px;
    margin-left: -80px;
  }
  #frontPage .about .flex {
    justify-content: space-between;
    margin-top: 100px;
  }
  #frontPage .about .flex h5 {
    font-size: 35px;
    font-weight: 900;
    margin: 0;
  }
  #frontPage .about .flex .textWrap {
    width: calc(50vw - 80px);
  }
  #frontPage .about .flex .textWrap .caption {
    font-size: 16px;
    line-height: 2.5;
    margin-bottom: 40px;
  }
  #frontPage .service {
    margin: 0 auto;
  }
  #frontPage .service .sectionTitle {
    margin-left: 80px;
  }
  #frontPage .service .itemWrap {
    margin-top: 100px;
  }
  #frontPage .service .itemWrap .textWrap {
    display: flex;
    width: calc(100vw - 160px);
    margin: auto;
    justify-content: space-between;
    margin-top: 80px;
  }
  #frontPage .service .itemWrap .textWrap h5 {
    font-size: 25px;
    font-weight: 900;
    margin: 0;
  }
  #frontPage .service .itemWrap .textWrap .caption {
    width: calc(50vw - 80px);
    line-height: 2;
    font-size: 14px;
  }
  #frontPage .service .itemWrap .textWrap .button {
    margin-top: 40px;
  }
  #frontPage .works {
    margin-top: 160px;
    background-color: #2E2A24;
    padding: 160px 0;
  }
  #frontPage .works .sectionTitle {
    color: #fff;
    margin-left: 80px;
    margin-top: 0;
  }
  #frontPage .works .itemsList {
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
  }
  #frontPage .works .itemsList .list {
    margin-top: 100px;
  }
  #frontPage .works .itemsList .list a {
    display: block;
    width: 50vw;
  }
  #frontPage .works .itemsList .list a:hover img {
    transform: scale(1.05);
  }
  #frontPage .works .itemsList .list a .thumbnail {
    position: relative;
    overflow: hidden;
  }
  #frontPage .works .itemsList .list a .thumbnail img {
    transition: transform 0.3s ease;
  }
  #frontPage .works .itemsList .list a .data {
    padding: 0 40px;
    color: #fff;
  }
  #frontPage .works .itemsList .list a .data .category {
    font-size: 10px;
    color: #fff;
    margin-top: 30px;
  }
  #frontPage .works .itemsList .list a .data .title {
    margin-top: 16px;
    font-size: 17px;
    font-weight: 900;
  }
  #frontPage .works .itemsList .list a .data .caption {
    margin-top: 12px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  #frontPage .works .button {
    margin: 100px auto;
  }
  #frontPage .news {
    width: calc(100vw - 160px);
    margin: 0 auto;
  }
  #frontPage .news .newsList {
    margin-top: 100px;
  }
  #frontPage .news .newsList a {
    display: flex;
    border-bottom: 1px solid #ADADAD;
    padding: 0 0 60px;
    margin-top: 60px;
    justify-content: space-between;
    align-items: flex-start;
  }
  #frontPage .news .newsList a .dataWrap {
    display: flex;
    text-align: left;
    align-items: center;
  }
  #frontPage .news .newsList a .dataWrap .date {
    font-size: 12px;
    color: #666;
    font-weight: 300;
  }
  #frontPage .news .newsList a .dataWrap .category {
    margin-left: 100px;
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  #frontPage .news .newsList a .title {
    width: calc(50vw - 80px);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
  }
  #frontPage .news .button {
    margin: 80px auto 0;
  }
  #aboutPage {
    padding-top: 320px;
    /* Title Area */
    /* Portrait & Intro */
    /* Philosophy Section */
    /* Profile Section */
  }
  #aboutPage .gnav a::after {
    background-color: #000;
  }
  #aboutPage .portrait-section {
    width: calc(100vw - 160px);
    margin: 0 auto 160px;
  }
  #aboutPage .portrait-section .image-wrap {
    width: 100%;
    margin-bottom: 60px;
  }
  #aboutPage .portrait-section .image-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #aboutPage .portrait-section .intro-text {
    text-align: center;
    font-size: 14px;
    line-height: 2.5;
    letter-spacing: 0.1em;
  }
  #aboutPage .philosophy {
    background-color: #2E2A24;
    color: #fff;
    padding: 120px 0 160px;
  }
  #aboutPage .philosophy .inner {
    width: calc(100vw - 160px);
    margin: 0 auto;
  }
  #aboutPage .philosophy .sectionTitle {
    margin-top: 0;
    margin-bottom: 80px;
  }
  #aboutPage .philosophy .content-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #aboutPage .philosophy .content-flex .head {
    width: 40%;
  }
  #aboutPage .philosophy .content-flex .head h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
  #aboutPage .philosophy .content-flex .body {
    width: 50%;
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.1em;
    font-weight: 300;
  }
  #aboutPage .philosophy .content-flex .body p {
    margin-bottom: 40px;
  }
  #aboutPage .philosophy .content-flex .body p:last-child {
    margin-bottom: 0;
  }
  #aboutPage .profile {
    padding: 160px 0;
  }
  #aboutPage .profile .inner {
    width: calc(100vw - 160px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  #aboutPage .profile .sectionTitle {
    margin-top: 0;
    margin-bottom: 80px;
  }
  #aboutPage .profile .profile-list {
    width: 50%;
  }
  #aboutPage .profile .profile-list dl {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 30px 0;
    align-items: flex-start;
  }
  #aboutPage .profile .profile-list dl:first-child {
    border-top: 1px solid #ccc;
  }
  #aboutPage .profile .profile-list dl dt {
    width: 200px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  #aboutPage .profile .profile-list dl dd {
    width: calc(100% - 200px);
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
  }
  #worksPage {
    padding-top: 320px;
  }
  #worksPage .itemsList {
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
  }
  #worksPage .itemsList .list {
    margin-top: 100px;
  }
  #worksPage .itemsList .list a {
    display: block;
    width: 50vw;
  }
  #worksPage .itemsList .list a:hover img {
    transform: scale(1.05);
  }
  #worksPage .itemsList .list a .thumbnail {
    position: relative;
    overflow: hidden;
  }
  #worksPage .itemsList .list a .thumbnail img {
    transition: transform 0.3s ease;
  }
  #worksPage .itemsList .list a .data {
    padding: 0 40px;
  }
  #worksPage .itemsList .list a .data .category {
    font-size: 10px;
    margin-top: 30px;
  }
  #worksPage .itemsList .list a .data .title {
    margin-top: 16px;
    font-size: 17px;
    font-weight: 900;
  }
  #worksPage .itemsList .list a .data .caption {
    margin-top: 12px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  #worksPostPage .fvImg {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #worksPostPage .fvImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #worksPostPage .fvImg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #worksPostPage article {
    margin-top: 100vh;
    background-color: #F2F2F2;
    padding: 80px 80px 160px;
    box-sizing: border-box;
  }
  #worksPostPage article .titleWrap .category {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  #worksPostPage article .titleWrap .title {
    font-size: 30px;
    font-weight: 900;
    margin-top: 16px;
    letter-spacing: 0.2em;
    line-height: 2;
  }
  #worksPostPage article .contentWrap {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }
  #worksPostPage article .contentWrap .url {
    width: calc(50vw - 240px);
    font-size: 10px;
    opacity: 0.5;
    margin-right: 160px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  #worksPostPage article .contentWrap .url:hover {
    opacity: 1;
  }
  #worksPostPage article .contentWrap .content {
    width: calc(50vw - 80px);
  }
  #worksPostPage article .contentWrap .content p {
    margin-top: 40px;
    line-height: 2;
    font-size: 15px;
  }
  #worksPostPage article .contentWrap .content p:first-child {
    margin-top: 0px;
  }
  #worksPostPage article .contentWrap .content .buttonWrap {
    margin-top: 80px;
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 40px;
  }
  #worksPostPage article .contentWrap .content .buttonWrap .button {
    margin: 0 auto;
    margin-bottom: 120px;
  }
  #worksPostPage footer {
    background-color: #F2F2F2;
  }
  #worksPostPage footer .contact {
    margin-top: 0;
  }
  #worksPostPage footer .worksLVisual {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: -1;
  }
  #worksPostPage footer .worksLVisual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #worksPostPage footer .worksLVisual video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #worksPostPage footer .worksLVisual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
  #newsPage {
    padding-top: 320px;
  }
  #newsPage .newsWrap {
    width: calc(100vw - 160px);
    margin: 0 auto;
  }
  #newsPage .newsWrap .newsList {
    margin-top: 100px;
  }
  #newsPage .newsWrap .newsList a {
    display: flex;
    border-bottom: 1px solid #ADADAD;
    padding: 0 0 60px;
    margin-top: 60px;
    justify-content: space-between;
    align-items: flex-start;
  }
  #newsPage .newsWrap .newsList a .dataWrap {
    display: flex;
    text-align: left;
    align-items: center;
  }
  #newsPage .newsWrap .newsList a .dataWrap .date {
    font-size: 12px;
    color: #666;
    font-weight: 300;
  }
  #newsPage .newsWrap .newsList a .dataWrap .category {
    margin-left: 100px;
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  #newsPage .newsWrap .newsList a .title {
    width: calc(50vw - 80px);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
  }
  #newsPostPage article {
    margin-top: 180px;
    background-color: #F2F2F2;
    padding: 80px 80px 160px;
    box-sizing: border-box;
  }
  #newsPostPage article .contentWrap {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }
  #newsPostPage article .contentWrap .titleWrap {
    width: calc(50vw - 240px);
  }
  #newsPostPage article .contentWrap .titleWrap .dataWrap {
    display: flex;
    align-items: center;
  }
  #newsPostPage article .contentWrap .titleWrap .dataWrap .category {
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-left: 20px;
  }
  #newsPostPage article .contentWrap .titleWrap .dataWrap .data {
    font-family: "Jost", sans-serif;
    font-size: 11px;
  }
  #newsPostPage article .contentWrap .titleWrap .title {
    font-size: 20px;
    font-weight: 900;
    margin-top: 16px;
    letter-spacing: 0.2em;
    line-height: 2;
  }
  #newsPostPage article .contentWrap .content {
    width: calc(50vw - 80px);
    margin-top: 40px;
  }
  #newsPostPage article .contentWrap .content .buttonWrap {
    margin-top: 80px;
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 40px;
  }
  #newsPostPage article .contentWrap .content .buttonWrap .button {
    margin: 0 auto;
    margin-bottom: 120px;
  }
  #newsPostPage article .contentWrap .content p {
    margin-top: 40px;
    line-height: 2;
    font-size: 15px;
  }
  #newsPostPage article .contentWrap .content p:first-child {
    margin-top: 0px;
  }
  #newsPostPage footer {
    background-color: #F2F2F2;
  }
  #newsPostPage footer .contact {
    margin-top: 0;
  }
  #newsPostPage footer .worksLVisual {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: -1;
  }
  #newsPostPage footer .worksLVisual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #newsPostPage footer .worksLVisual video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #newsPostPage footer .worksLVisual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
  #servicePage {
    background-color: #000000;
    padding-top: 320px;
  }
  #servicePage .fvImg {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #servicePage .fvImg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }
  #servicePage .fvImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #servicePage .fvImg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #servicePage .page-fv {
    color: #fff;
  }
  #servicePage .lead {
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 2.5;
    margin-top: 400px;
  }
  #servicePage .items {
    width: calc(100vw - 160px);
    margin: 0 auto;
    margin-top: 320px;
    color: #fff;
    justify-content: space-between;
    margin-bottom: 50vh;
  }
  #servicePage .items .caption {
    width: calc(50vw - 80px);
    line-height: 2;
  }
  #servicePage .items .headLine {
    width: calc(50vw - 240px);
    font-size: 25px;
    line-height: 2;
  }
  #servicePage .project {
    background-color: #F2F2F2;
    padding-bottom: 320px;
  }
  #servicePage .project .title {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    text-align: center;
    font-weight: 900;
    padding-top: 320px;
    margin-top: 320px;
  }
  #servicePage .project .project-image {
    width: 240px;
    margin: 80px auto 40px;
  }
  #servicePage .project .sub {
    width: 800px;
    text-align: center;
    font-size: 16px;
    line-height: 2;
    margin: 0 auto 80px;
  }
  #servicePage .project p {
    width: 800px;
    text-align: center;
    font-size: 16px;
    line-height: 2;
    margin: 0 auto;
  }
  #servicePage .project .button {
    margin: 80px auto 0;
  }
  #servicePage footer {
    background-color: #F2F2F2;
    padding-top: 200px;
  }
  #servicePage footer .worksLVisual {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: -1;
  }
  #servicePage footer .worksLVisual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #servicePage footer .worksLVisual video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #servicePage footer .worksLVisual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
  #contactPage {
    padding-top: 320px;
    /* Title Area */
    /* Intro Text */
    /* Form Container */
  }
  #contactPage .page-fv {
    text-align: center;
    margin-bottom: 230px;
  }
  #contactPage .page-fv .page-title {
    letter-spacing: 1.3em;
  }
  #contactPage .contact-intro {
    text-align: center;
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.1em;
    margin-bottom: 80px;
  }
  #contactPage .form-container {
    width: 800px;
    margin: 0 auto 160px;
    background-color: #fff;
    padding: 80px 100px;
    box-sizing: border-box;
    /* Privacy Policy */
  }
  #contactPage .form-container .form-note {
    font-size: 12px;
    margin-bottom: 60px;
  }
  #contactPage .form-container .form-note .req {
    color: #E03E3E;
  }
  #contactPage .form-container .form-group {
    margin-bottom: 40px;
  }
  #contactPage .form-container .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
  }
  #contactPage .form-container .form-group label .req {
    color: #E03E3E;
    margin-left: 5px;
  }
  #contactPage .form-container .form-group input,
#contactPage .form-container .form-group textarea,
#contactPage .form-container .form-group select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    border-radius: 0;
    background: transparent;
  }
  #contactPage .form-container .form-group input::-moz-placeholder, #contactPage .form-container .form-group textarea::-moz-placeholder, #contactPage .form-container .form-group select::-moz-placeholder {
    color: #ccc;
  }
  #contactPage .form-container .form-group input::placeholder,
#contactPage .form-container .form-group textarea::placeholder,
#contactPage .form-container .form-group select::placeholder {
    color: #ccc;
  }
  #contactPage .form-container .form-group input:focus,
#contactPage .form-container .form-group textarea:focus,
#contactPage .form-container .form-group select:focus {
    outline: none;
    border-bottom-color: #8CBF68;
  }
  #contactPage .form-container .form-group textarea {
    height: 120px;
    resize: none;
  }
  #contactPage .form-container .form-group .select-wrap {
    position: relative;
  }
  #contactPage .form-container .form-group .select-wrap::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    pointer-events: none;
  }
  #contactPage .form-container .form-group .select-wrap select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
  }
  #contactPage .form-container .privacy-check {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  #contactPage .form-container .privacy-check .label-text {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
  }
  #contactPage .form-container .privacy-check .checkbox-wrap label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  #contactPage .form-container .privacy-check .checkbox-wrap input[type=checkbox] {
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    margin: 0;
  }
  #contactPage .form-container .privacy-check .checkbox-wrap .check-text {
    font-size: 14px;
  }
  #contactPage .form-container .privacy-check .checkbox-wrap .check-text a {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  #contactPage .form-container .button {
    margin: 0 auto;
  }
  #contactPage .form-container .wpcf7-spinner {
    display: none;
  }
  #privacy {
    width: calc(100vw - 160px);
    margin: 0 auto;
    padding-top: 320px;
  }
  #privacy .page-title {
    letter-spacing: 1em;
  }
  #privacy .textWrap {
    width: 960px;
    margin: auto;
    margin-bottom: 150px;
  }
  #privacy .textWrap h5 {
    margin-top: 80px;
    font-size: 18px;
  }
  #privacy .textWrap h5 + p {
    margin-top: 20px;
  }
}
/*# sourceMappingURL=style.css.map */