@charset "UTF-8";
/* =========================================
   Variables
   ========================================= */
@media screen and (max-width: 767px) {
  .spNone {
    display: none !important;
  }
  .button {
    display: block;
    width: 210px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #8CBF68;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.05em;
    transform: all 0.3s ease;
  }
  .button a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .sectionTitle {
    margin-top: 160px;
  }
  .sectionTitle .title-en {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    display: block;
    padding-left: 20px;
  }
  .sectionTitle .title-en::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    width: 8px;
    height: 8px;
    background-color: #8CBF68;
  }
  .sectionTitle .title-jp {
    font-size: 12px;
    margin-top: 5px;
    padding-left: 20px;
  }
  .flex {
    display: flex;
  }
  .page-title {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2em;
    line-height: 1.4;
    padding-left: 2em;
    text-align: center;
  }
  .page-title .sub {
    text-align: center;
    font-size: 12px;
    display: block;
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 0.4em;
    margin-left: -2em;
  }
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 20px;
    box-sizing: border-box;
    /* === メニューオープン時のスタイル === */
  }
  .site-header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .site-header .logo {
    z-index: 102;
    position: relative;
    margin: 0;
  }
  .site-header .logo a {
    width: 100px;
    display: block;
  }
  .site-header .logo a img {
    width: 100%;
    height: auto;
  }
  .site-header .logo a .logo-black {
    display: block;
  }
  .site-header .logo-white {
    display: none !important;
  }
  .site-header .menuWrap {
    display: flex;
  }
  .site-header .menuWrap .button {
    width: 120px;
    height: 25px;
    line-height: 25px;
    position: relative;
    z-index: 102;
  }
  .site-header .menuWrap .hamburger-btn {
    display: block;
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 102;
    cursor: pointer;
    margin-right: 20px;
  }
  .site-header .menuWrap .hamburger-btn span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    left: 0;
    transition: all 0.3s;
  }
  .site-header .menuWrap .hamburger-btn span:nth-child(1) {
    top: 0;
    margin-top: 8px;
  }
  .site-header .menuWrap .hamburger-btn span:nth-child(2) {
    bottom: 0;
    margin-bottom: 8px;
  }
  .site-header .wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F2F2F2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 101;
  }
  .site-header .wrap .gnav {
    margin: 0;
    width: 100%;
    margin-top: 70px;
  }
  .site-header .wrap .gnav ul {
    display: block;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .site-header .wrap .gnav ul li {
    margin-bottom: 40px;
  }
  .site-header .wrap .gnav ul li a {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2E2A24;
    letter-spacing: 0.2em;
  }
  .site-header.is-open .logo .logo-white {
    display: none;
  }
  .site-header.is-open .logo .logo-black {
    display: block;
  }
  .site-header.is-open .hamburger-btn span {
    background-color: #2E2A24;
  }
  .site-header.is-open .hamburger-btn span:nth-child(1) {
    transform: rotate(30deg);
    top: 13px;
    margin: 0;
  }
  .site-header.is-open .hamburger-btn span:nth-child(2) {
    transform: rotate(-30deg);
    bottom: 10px;
    margin: 0;
  }
  .site-header.is-open .wrap {
    opacity: 1;
    pointer-events: auto;
  }
  .whColor .logo-white {
    display: block !important;
  }
  .whColor .logo-black {
    display: none !important;
  }
  .whColor .hamburger-btn span {
    background-color: #ffffff !important;
  }
  .sectionTitle {
    margin-top: 80px;
  }
  .sectionTitle .title-en {
    font-size: 20px;
  }
  .pagenation {
    margin-top: 40px;
    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 40px;
  }
  .pagenation .number li {
    position: relative;
    font-size: 13px;
  }
  .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;
  }
  #frontPage {
    /* FV
    ========================================= */
    /* ABOUT
    ========================================= */
    /* SERVICE
    ========================================= */
    /* WORKS
    ========================================= */
    /* NEWS
    ========================================= */
  }
  #frontPage .about,
#frontPage .news {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  #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.5;
    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: 14px;
    font-weight: 500;
    letter-spacing: 0.4em;
    line-height: 2.5;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  #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 .about .text {
    width: 100%;
    margin-top: 60px;
    margin-left: -20px;
  }
  #frontPage .about .flex {
    display: block;
    margin-top: 40px;
  }
  #frontPage .about .flex h5 {
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  #frontPage .about .flex .textWrap {
    width: 100%;
  }
  #frontPage .about .flex .textWrap .caption {
    font-size: 14px;
    line-height: 2;
    text-align: justify;
  }
  #frontPage .about .flex .textWrap .button {
    margin: 40px auto 0;
  }
  #frontPage .service {
    margin-top: 120px;
  }
  #frontPage .service .sectionTitle {
    margin-left: 20px;
  }
  #frontPage .service .itemWrap {
    margin-top: 60px;
  }
  #frontPage .service .itemWrap .textWrap {
    display: block;
    width: calc(100% - 40px);
    margin-top: 30px;
    margin: 30px auto 0;
  }
  #frontPage .service .itemWrap .textWrap h5 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  #frontPage .service .itemWrap .textWrap .caption {
    width: 100%;
    font-size: 14px;
  }
  #frontPage .service .itemWrap .textWrap .button {
    margin-top: 30px;
  }
  #frontPage .works {
    margin-top: 80px;
    padding: 80px 0;
    width: 100%;
    background-color: #2E2A24;
    color: #fff;
  }
  #frontPage .works .sectionTitle {
    margin-left: 20px;
    margin-top: 0;
  }
  #frontPage .works .itemsList {
    display: block;
    margin-top: 40px;
    padding: 0 20px;
  }
  #frontPage .works .itemsList .list {
    margin-top: 60px;
  }
  #frontPage .works .itemsList .list a {
    width: 100%;
  }
  #frontPage .works .itemsList .list a .data {
    padding: 0;
    margin-top: 20px;
  }
  #frontPage .works .itemsList .list a .data .title {
    font-size: 16px;
    margin: 8px 0 20px;
  }
  #frontPage .works .itemsList .list a .data .category {
    font-size: 10px;
  }
  #frontPage .works .itemsList .list a .data .caption {
    font-size: 14px;
    font-weight: 300;
  }
  #frontPage .works .button {
    margin: 60px auto 0;
  }
  #frontPage .news .sectionTitle {
    margin: 0;
    margin-top: 80px;
  }
  #frontPage .news .newsList {
    margin-top: 40px;
  }
  #frontPage .news .newsList a {
    display: block;
    padding-bottom: 30px;
    margin-top: 30px;
    border-bottom: 1px solid #ccc;
  }
  #frontPage .news .newsList a .dataWrap {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  #frontPage .news .newsList a .dataWrap .date {
    font-size: 12px;
    font-family: "Jost", sans-serif;
  }
  #frontPage .news .newsList a .dataWrap .date::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #D6D6D6;
    margin: 0 10px;
  }
  #frontPage .news .newsList a .dataWrap .category {
    font-size: 11px;
    margin-top: -5px;
  }
  #frontPage .news .newsList a .title {
    width: 100%;
    font-size: 14px;
  }
  #frontPage .news .button {
    margin: 4em auto 0;
  }
  footer .contact {
    width: calc(100% - 40px);
    margin: 120px auto 0;
    text-align: center;
    height: 150px;
    background-color: #2E2A24;
    position: relative;
    color: #8CBF68;
    overflow: hidden;
    border-radius: 4px;
  }
  footer .contact .textWrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  footer .contact .textWrap h5 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  footer .contact .textWrap p {
    font-size: 11px;
  }
  footer .contact .circle {
    width: 250px;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #8CBF68;
    border-radius: 50%;
  }
  footer .footerMap {
    width: calc(100% - 40px);
    margin: 80px auto 0px;
    padding-bottom: 20px;
  }
  footer .footerMap .footer-logo {
    width: 130px;
  }
  footer .footerMap .inner {
    display: block;
    padding-bottom: 40px;
  }
  footer .footerMap .info-left {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  footer .footerMap .info-left .address {
    letter-spacing: 0.05em;
    font-size: 12px;
    line-height: 2;
  }
  footer .footerMap .info-left .contact-info {
    margin-top: 16px;
    letter-spacing: 0.05em;
    font-size: 12px;
  }
  footer .footerMap .info-left .sns-icon {
    margin-top: 20px;
    width: 22px;
  }
  footer .footerMap .nav-right {
    display: block;
    margin-top: 40px;
  }
  footer .footerMap .nav-right .nav-col li {
    margin-bottom: 20px;
    text-align: left;
    font-weight: 900;
  }
  footer .footerMap .nav-right .nav-col:nth-child(2) {
    margin-top: 20px;
  }
  footer .footerMap .copyright {
    font-size: 10px;
    text-align: left;
    color: #ACACAC;
    letter-spacing: 0.05em;
  }
  #aboutPage {
    padding-top: 240px;
    /* Philosophy SP */
    /* Profile SP */
    /* Contact Banner SP */
  }
  #aboutPage .hamburger-btn span {
    background-color: #000;
  }
  #aboutPage .page-fv {
    text-align: center;
    margin-bottom: 190px;
  }
  #aboutPage .portrait-section {
    width: 100%;
    margin: 0 auto 100px;
  }
  #aboutPage .portrait-section .image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin-bottom: 40px;
  }
  #aboutPage .portrait-section .image-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #aboutPage .portrait-section .intro-text {
    width: calc(100% - 40px);
    margin: 0 auto;
    font-size: 13px;
    line-height: 2;
    text-align: center;
  }
  #aboutPage .portrait-section .intro-text br {
    display: none;
  }
  #aboutPage .philosophy {
    background-color: #2E2A24;
    color: #fff;
    padding: 80px 0 100px;
  }
  #aboutPage .philosophy .inner {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  #aboutPage .philosophy .sectionTitle {
    margin-top: 0;
    margin-bottom: 40px;
  }
  #aboutPage .philosophy .content-flex {
    display: block;
  }
  #aboutPage .philosophy .content-flex .head {
    width: 100%;
    margin-bottom: 30px;
  }
  #aboutPage .philosophy .content-flex .head h3 {
    font-size: 20px;
    line-height: 1.6;
  }
  #aboutPage .philosophy .content-flex .body {
    width: 100%;
    font-size: 13px;
    line-height: 2;
    text-align: justify;
  }
  #aboutPage .philosophy .content-flex .body p {
    margin-bottom: 30px;
  }
  #aboutPage .profile {
    padding: 100px 0 0;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  #aboutPage .profile .sectionTitle {
    margin-top: 0;
    margin-bottom: 40px;
  }
  #aboutPage .profile .profile-list dl {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
    align-items: flex-start;
  }
  #aboutPage .profile .profile-list dl:first-child {
    border-top: 1px solid #ccc;
  }
  #aboutPage .profile .profile-list dl dt {
    width: 120px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
  }
  #aboutPage .profile .profile-list dl dd {
    width: 100%;
    font-size: 13px;
    line-height: 1.8;
  }
  #aboutPage .contact-banner .contact-inner {
    width: calc(100% - 40px);
    margin: 0 auto 80px;
    height: 160px;
    background-color: #2E2A24;
    position: relative;
    overflow: hidden;
  }
  #aboutPage .contact-banner .contact-inner .textWrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #8CBF68;
    text-align: center;
    z-index: 2;
  }
  #aboutPage .contact-banner .contact-inner .textWrap h5 {
    font-family: "Jost", sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  #aboutPage .contact-banner .contact-inner .textWrap p {
    font-size: 11px;
  }
  #aboutPage .contact-banner .contact-inner .circle {
    width: 250px;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #8CBF68;
    border-radius: 50%;
  }
  #worksPage {
    padding-top: 240px;
  }
  #worksPage .itemsList {
    display: block;
    margin-top: 40px;
    padding: 0 20px;
    padding-top: 130px;
  }
  #worksPage .itemsList .list {
    margin-top: 60px;
  }
  #worksPage .itemsList .list a {
    width: 100%;
  }
  #worksPage .itemsList .list a .data {
    padding: 0;
    margin-top: 20px;
  }
  #worksPage .itemsList .list a .data .title {
    font-size: 16px;
    margin: 8px 0 20px;
  }
  #worksPage .itemsList .list a .data .category {
    font-size: 10px;
  }
  #worksPage .itemsList .list a .data .caption {
    font-size: 14px;
    font-weight: 300;
  }
  #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: 40px 20px 120px;
    box-sizing: border-box;
  }
  #worksPostPage article .titleWrap .category {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  #worksPostPage article .titleWrap .title {
    font-size: 20px;
    font-weight: 900;
    margin-top: 16px;
    letter-spacing: 0.2em;
    line-height: 2;
  }
  #worksPostPage article .contentWrap {
    display: block;
    justify-content: space-between;
    margin-top: 2cqb;
  }
  #worksPostPage article .contentWrap .url {
    width: 100%;
    font-size: 10px;
    opacity: 0.5;
    margin-right: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  #worksPostPage article .contentWrap .url:hover {
    opacity: 1;
  }
  #worksPostPage article .contentWrap .content {
    width: 100%;
    margin-top: 40px;
  }
  #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: 80px;
  }
  #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: 240px;
  }
  #newsPage .newsWrap {
    width: calc(100vw - 40px);
    margin: 0 auto;
  }
  #newsPage .newsWrap .newsList {
    margin-top: 190px;
  }
  #newsPage .newsWrap .newsList a {
    display: block;
    padding-bottom: 30px;
    margin-top: 30px;
    border-bottom: 1px solid #ccc;
  }
  #newsPage .newsWrap .newsList a .dataWrap {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  #newsPage .newsWrap .newsList a .dataWrap .date {
    font-size: 12px;
    font-family: "Jost", sans-serif;
  }
  #newsPage .newsWrap .newsList a .dataWrap .date::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #D6D6D6;
    margin: 0 10px;
  }
  #newsPage .newsWrap .newsList a .dataWrap .category {
    font-size: 11px;
    margin-top: -5px;
  }
  #newsPage .newsWrap .newsList a .title {
    width: 100%;
    font-size: 14px;
  }
  #newsPostPage article {
    margin-top: 100px;
    background-color: #F2F2F2;
    padding: 40px 20px 80px;
    box-sizing: border-box;
  }
  #newsPostPage article .contentWrap {
    display: block;
    justify-content: space-between;
    margin-top: 40px;
  }
  #newsPostPage article .contentWrap .titleWrap {
    width: 100%;
  }
  #newsPostPage article .contentWrap .titleWrap .dataWrap {
    display: flex;
    align-items: center;
  }
  #newsPostPage article .contentWrap .titleWrap .dataWrap .category {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  #newsPostPage article .contentWrap .titleWrap .dataWrap .data {
    font-family: "Jost", sans-serif;
    font-size: 11px;
  }
  #newsPostPage article .contentWrap .titleWrap .dataWrap .data::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #D6D6D6;
    margin: 0 10px;
  }
  #newsPostPage article .contentWrap .titleWrap .title {
    font-size: 20px;
    font-weight: 900;
    margin-top: 16px;
    letter-spacing: 0.2em;
    line-height: 1.8;
  }
  #newsPostPage article .contentWrap .content {
    width: 100%;
    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: 100px;
  }
  #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 {
    padding-top: 240px;
    background-color: #000000;
    padding-top: 320px;
  }
  #servicePage .page-title {
    letter-spacing: 1.3em;
    padding-left: 1.3em;
  }
  #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 {
    margin: auto;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 2.5;
    margin-top: 400px;
    width: calc(100vw - 40px);
  }
  #servicePage .items {
    width: calc(100vw - 40px);
    margin: 0 auto;
    margin-top: 160px;
    color: #fff;
    justify-content: space-between;
    display: block;
    margin-bottom: 200px;
  }
  #servicePage .items .caption {
    width: calc(100vw - 40px);
    line-height: 2;
  }
  #servicePage .items .headline {
    width: calc(100vw - 40px);
    font-size: 18px;
    line-height: 2;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
  }
  #servicePage .project {
    background-color: #F2F2F2;
    padding-bottom: 120px;
  }
  #servicePage .project .title {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    text-align: center;
    font-weight: 900;
    padding-top: 160px;
    margin-top: 160px;
  }
  #servicePage .project .project-image {
    width: 50%;
    margin: 80px auto 40px;
  }
  #servicePage .project .sub {
    width: calc(100vw - 40px);
    text-align: center;
    font-size: 11px;
    line-height: 2;
    margin: 0 auto 60px;
  }
  #servicePage .project p {
    width: calc(100vw - 40px);
    text-align: center;
    font-size: 16px;
    line-height: 2;
    margin: 0 auto;
  }
  #servicePage .project .button {
    margin: 40px auto 0;
  }
  #servicePage footer {
    background-color: #F2F2F2;
    padding-top: 120px;
  }
  #servicePage footer .contact {
    margin-top: 0;
  }
  #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: 240px;
  }
  #contactPage .page-fv {
    text-align: center;
    margin-bottom: 190px;
  }
  #contactPage .page-fv .page-title {
    letter-spacing: 0.3em;
    padding-left: 0.3em;
    font-size: 28px;
  }
  #contactPage .contact-intro {
    width: calc(100% - 40px);
    margin: 0 auto 60px;
    text-align: justify;
    font-size: 13px;
    line-height: 2;
  }
  #contactPage .form-container {
    width: calc(100% - 40px);
    margin: 0 auto 100px;
    background-color: #fff;
    padding: 40px 20px;
    box-sizing: border-box;
    /* Privacy Policy SP */
  }
  #contactPage .form-container .wpcf7-spinner {
    display: none;
  }
  #contactPage .form-container .form-note {
    font-size: 11px;
    margin-bottom: 40px;
  }
  #contactPage .form-container .form-note .req {
    color: #E03E3E;
  }
  #contactPage .form-container .form-group {
    margin-bottom: 30px;
  }
  #contactPage .form-container .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  #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-size: 14px;
    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 textarea {
    height: 100px;
  }
  #contactPage .form-container .form-group .select-wrap {
    position: relative;
  }
  #contactPage .form-container .form-group .select-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 15px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    transform: rotate(45deg);
  }
  #contactPage .form-container .privacy-check {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
  }
  #contactPage .form-container .privacy-check .label-text {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
  }
  #contactPage .form-container .privacy-check .checkbox-wrap label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  #contactPage .form-container .privacy-check .checkbox-wrap input[type=checkbox] {
    width: 18px;
    height: 18px;
    border: 1px solid #000;
  }
  #contactPage .form-container .privacy-check .checkbox-wrap .check-text {
    font-size: 12px;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
  }
  #contactPage .form-container .privacy-check .checkbox-wrap .check-text a {
    text-decoration: none;
  }
  #contactPage .form-container .button {
    margin: auto;
  }
  #privacy {
    width: calc(100vw - 40px);
    margin: 0 auto;
    padding-top: 190px;
  }
  #privacy .page-title {
    letter-spacing: 1em;
    padding-left: 1em;
    margin-bottom: 190px;
  }
  #privacy .textWrap {
    width: 100%;
    margin: auto;
    margin-bottom: 150px;
  }
  #privacy .textWrap h5 {
    margin-top: 80px;
    font-size: 16px;
  }
  #privacy .textWrap p, #privacy .textWrap a {
    font-size: 13px;
    line-height: 2;
  }
  #privacy .textWrap a {
    opacity: 0.5;
    text-decoration: underline;
  }
  #privacy .textWrap h5 + p {
    margin-top: 20px;
  }
}
/*# sourceMappingURL=style_sp.css.map */