/*****************/
/**** reset *****/
/*****************/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

html {
  font-size: 62.5%;
}

body {
  color: #302D2C;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", "Meiryo", "Noto Sans CJK JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  overflow-x: hidden;
  background-color: #FFE200;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.6s ease;
  color: #707070;
}
a:hover {
  opacity: 0.6;
}

.no-link {
  pointer-events: none !important;
}
.no-link * {
  pointer-events: none !important;
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

img {
  height: auto;
}

.wp-block-table td {
  border: none;
}

.wpcf7-list-item {
  display: block;
}

.wpcf7-spinner {
  display: none;
}

/*****************/
/****   font *****/
/*****************/
.eng {
  font-family: "Darker Grotesque", "Helvetica Neue", Arial, sans-serif;
}

.desc {
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/*****************/
/****  animation   *****/
/*****************/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*****************/
/****   PC   *****/
/*****************/
@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
  /*****************/
  /***  parts  ***/
  /*****************/
  a[href*=tel] {
    pointer-events: none;
  }
  section {
    position: relative;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-ttl {
    font-size: 6.5rem;
    font-weight: bold;
    text-align: center;
  }
  /*****************/
  /***  page  ***/
  /*****************/
  .page-main {
    background-color: #F2F1EC;
  }
  .page-main .hero {
    padding-top: 190px;
  }
  .page-main .content {
    margin-top: 137px;
    padding-bottom: 140px;
  }
  .page-main .content .container {
    max-width: 1030px;
  }
  .page-main .content p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  /*****************/
  /***  gnav  ***/
  /*****************/
  .gnav {
    padding-top: 170px;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #F2F1EC;
    transform: translateX(100%);
    transition: all 0.6s ease;
    z-index: 1000;
  }
  .gnav.active {
    transform: translateX(0);
  }
  .gnav .container {
    max-width: 1030px;
    display: flex;
    align-items: flex-start;
  }
  .gnav-logo {
    width: 202px;
    margin-right: 20%;
  }
  .gnav-nav ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 260px;
  }
  .gnav-nav ul li {
    margin-right: 100px;
    margin-bottom: 40px;
  }
  .gnav-nav ul li a {
    font-size: 2.4rem;
    font-family: "Darker Grotesque", "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    color: #302D2C;
  }
  .gnav-dx__left {
    width: 202px;
    margin-right: 20%;
  }
  .gnav-dx__right {
    font-size: 1.8rem;
    font-weight: 600;
    color: #302D2C;
    padding: 10px;
    border: 1px solid #302D2C;
  }
  .gnav-copyright {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    background-color: #F2F1EC;
  }
  /*****************/
  /***  fixed  ***/
  /*****************/
  .fixed-content {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
  }
  .fixed-content .contact {
    background-color: #302D2C;
    border-radius: 26px;
    color: white;
    width: 164px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 42px;
    letter-spacing: 0.5em;
    font-weight: 600;
    padding-left: 8px;
    transition: all 0.6s ease;
  }
  .fixed-content .contact:hover {
    border: #302D2C;
    color: #302D2C;
    background-color: white;
    opacity: 1;
  }
  .fixed-content .hamburger-menu {
    width: 60px;
    position: relative;
    cursor: pointer;
  }
  .fixed-content .hamburger-menu__bars {
    position: relative;
    height: 20px;
    width: 100%;
  }
  .fixed-content .hamburger-menu__bar {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #302D2C;
    position: absolute;
    left: 0;
    transition: all 0.6s ease;
  }
  .fixed-content .hamburger-menu__bar:first-child {
    top: 0;
  }
  .fixed-content .hamburger-menu__bar:nth-child(2) {
    bottom: 0;
  }
  .fixed-content .hamburger-menu.active .hamburger-menu__bar:first-child {
    top: 9px;
    transform: rotate(12.5deg);
  }
  .fixed-content .hamburger-menu.active .hamburger-menu__bar:nth-child(2) {
    bottom: 9px;
    transform: rotate(-12.5deg);
  }
  .fixed-content .hamburger-menu__text {
    display: flex;
    position: absolute;
    justify-content: center;
    left: 50%;
    bottom: 0;
    font-size: 1rem;
    letter-spacing: 1em;
    font-weight: 500;
    transform: translateX(-42%);
  }
  /*****************/
  /***  header  ***/
  /*****************/
  .header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 30px;
  }
  .header-logo {
    width: 138px;
  }
  /*****************/
  /*** footer  ***/
  /*****************/
  .footer {
    padding-top: 45px;
    padding-bottom: 27px;
  }
  .footer .container {
    max-width: 800px;
    display: flex;
    align-items: flex-start;
  }
  .footer-logo {
    width: 163px;
    margin-right: 15%;
  }
  .footer-nav ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 120px;
  }
  .footer-nav ul li {
    margin-right: 90px;
    margin-bottom: 15px;
  }
  .footer-nav ul li a {
    font-size: 1.9rem;
    font-family: "Darker Grotesque", "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    color: #302D2C;
  }
  .footer-copyright {
    margin-top: 80px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
  }
  /*****************/
  /***  totop  ***/
  /*****************/
  #to-top {
    width: 60px;
    position: fixed;
    right: 27px;
    bottom: 16px;
    transform: translateY(150%);
    transition: all 0.6s ease;
  }
  #to-top.active {
    transform: translateY(0);
  }
}
/*****************/
/****   SP  *****/
/*****************/
@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  /*****************/
  /***  parts  ***/
  /*****************/
  section {
    position: relative;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-ttl {
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
  }
  /*****************/
  /***  page  ***/
  /*****************/
  .page-main {
    background-color: #F2F1EC;
  }
  .page-main .hero {
    padding-top: 100px;
  }
  .page-main .content {
    margin-top: 70px;
    padding-bottom: 70px;
  }
  .page-main .content .container {
    max-width: 1030px;
  }
  .page-main .content p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  /*****************/
  /***  gnav  ***/
  /*****************/
  .gnav {
    padding-top: 100px;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #F2F1EC;
    transform: translateX(100%);
    transition: all 0.6s ease;
    z-index: 1000;
  }
  .gnav.active {
    transform: translateX(0);
  }
  .gnav-logo {
    width: 202px;
    margin: 0 auto;
  }
  .gnav-nav {
    margin-top: 50px;
  }
  .gnav-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }
  .gnav-nav ul li {
    margin-right: 100px;
    margin-bottom: 40px;
    width: 100%;
  }
  .gnav-nav ul li a {
    font-size: 2.4rem;
    font-family: "Darker Grotesque", "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    color: #302D2C;
    text-align: center;
  }
  /*****************/
  /***  fixed  ***/
  /*****************/
  /*****************/
  /***  header  ***/
  /*****************/
  /*****************/
  /*** footer  ***/
  /*****************/
  /*****************/
  /***  totop  ***/
  /*****************/
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .gnav-nav ul li {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .gnav-dx {
    display: flex;
    justify-content: center;
  }
  .gnav-dx__left {
    display: none;
  }
  .gnav-dx__right {
    font-size: 1.6rem;
    font-weight: 600;
    color: #302D2C;
    padding: 10px;
    border: 1px solid #302D2C;
  }
}
@media screen and (max-width: 768px) {
  .gnav-copyright {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    background-color: #F2F1EC;
  }
}
@media screen and (max-width: 768px) {
  .fixed-content {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
  }
  .fixed-content .contact {
    background-color: #302D2C;
    border-radius: 26px;
    color: white;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 25px;
    letter-spacing: 0.5em;
    font-weight: 600;
    padding-left: 8px;
    transition: all 0.6s ease;
  }
  .fixed-content .contact:hover {
    border: #302D2C;
    color: #302D2C;
    background-color: white;
    opacity: 1;
  }
  .fixed-content .hamburger-menu {
    width: 60px;
    position: relative;
    cursor: pointer;
  }
  .fixed-content .hamburger-menu__bars {
    position: relative;
    height: 20px;
    width: 100%;
  }
  .fixed-content .hamburger-menu__bar {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #302D2C;
    position: absolute;
    left: 0;
    transition: all 0.6s ease;
  }
  .fixed-content .hamburger-menu__bar:first-child {
    top: 0;
  }
  .fixed-content .hamburger-menu__bar:nth-child(2) {
    bottom: 0;
  }
  .fixed-content .hamburger-menu.active .hamburger-menu__bar:first-child {
    top: 9px;
    transform: rotate(12.5deg);
  }
  .fixed-content .hamburger-menu.active .hamburger-menu__bar:nth-child(2) {
    bottom: 9px;
    transform: rotate(-12.5deg);
  }
  .fixed-content .hamburger-menu__text {
    display: flex;
    position: absolute;
    justify-content: center;
    left: 50%;
    bottom: 0;
    font-size: 1rem;
    letter-spacing: 1em;
    font-weight: 500;
    transform: translateX(-42%);
  }
}
@media screen and (max-width: 768px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 30px;
  }
  .header-logo {
    width: 90px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .footer .container {
    max-width: 800px;
  }
  .footer-logo {
    width: 100px;
    margin: 0 auto;
  }
  .footer-nav {
    margin-top: 20px;
  }
  .footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer-nav ul li {
    margin-right: 90px;
    margin-bottom: 15px;
    width: 100%;
  }
  .footer-nav ul li a {
    font-size: 1.7rem;
    font-family: "Darker Grotesque", "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    color: #302D2C;
    text-align: center;
  }
  .footer-copyright {
    margin-top: 50px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  #to-top {
    width: 60px;
    position: fixed;
    right: 27px;
    bottom: 16px;
    transform: translateY(150%);
    transition: all 0.6s ease;
  }
  #to-top.active {
    transform: translateY(0);
  }
}
/*****************/
/****   PC   *****/
/*****************/
@media screen and (min-width: 769px) {
  #front {
    /*****************/
    /****  hero   *****/
    /*****************/
    /*****************/
    /****  about   *****/
    /*****************/
    /*****************/
    /****  work   *****/
    /*****************/
    /*****************/
    /****  service   *****/
    /*****************/
    /*****************/
    /****  company   *****/
    /*****************/
    /*****************/
    /****  contact   *****/
    /*****************/
  }
  #front .hero {
    padding-top: 205px;
    padding-bottom: 107px;
  }
  #front .hero-img {
    margin: 0 auto;
    width: 555px;
  }
  #front .hero-ttl {
    margin: 100px auto auto;
    font-size: 4.8rem;
    font-weight: bold;
    text-align: center;
  }
  #front .hero-h1 {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #FFE200;
  }
  #front .about {
    padding-top: 75px;
  }
  #front .about-lead {
    margin: 0 auto;
    width: 750px;
    font-size: 2rem;
    font-weight: 500;
  }
  #front .work {
    padding-top: 180px;
  }
  #front .work .container {
    max-width: 1530px;
  }
  #front .work-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "left right-top" "left right-bottom";
    grid-column-gap: 44px;
    grid-row-gap: 24px;
    height: 730px;
  }
  #front .work-list__item {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-color: #302D2C;
  }
  #front .work-list__item .work-list__link {
    height: 100%;
    cursor: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 50px;
  }
  #front .work-list__item .work-list__link:hover {
    opacity: 1;
  }
  #front .work-list__item .ttl {
    color: white;
    display: block;
    font-size: 2.6rem;
    max-width: 500px;
    font-weight: 700;
    opacity: 0;
    transition: all 0.6s ease;
  }
  #front .work-list__item .client {
    display: block;
    margin-top: 25px;
    color: white;
    font-size: 1.8rem;
    opacity: 0;
    transition: all 0.6s ease;
  }
  #front .work-list__item.active .ttl {
    opacity: 1;
  }
  #front .work-list__item.active .client {
    opacity: 1;
  }
  #front .work-list__item:nth-child(1) {
    grid-area: left;
  }
  #front .work-list__item:nth-child(2) {
    grid-area: right-top;
  }
  #front .work-list__item:nth-child(3) {
    grid-area: right-bottom;
  }
  #front .work-link {
    margin: 40px auto 0;
    width: 169px;
    height: 169px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 50%;
    transition: all 0.6s ease;
  }
  #front .work-link:hover {
    opacity: 1;
    background-color: #302D2C;
    color: #FFE200;
  }
  #front .work-cursor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
  }
  #front .work-cursor img {
    width: 65px;
    height: auto;
  }
  #front .work-cursor.active {
    display: block;
  }
  #front .service {
    margin-top: 64px;
  }
  #front .service-before {
    width: 100%;
  }
  #front .service-after {
    width: 100%;
  }
  #front .service-main {
    background-color: #F2F1EC;
    position: relative;
    padding-top: 110px;
    padding-bottom: 100px;
  }
  #front .service-main .container {
    max-width: 1410px;
  }
  #front .service-ttl {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
  }
  #front .service-block {
    border-bottom: 2px solid #707070;
    padding: 40px 50px 40px;
    padding-bottom: 75px;
    display: flex;
  }
  #front .service-block.block01 {
    border-top: 2px solid #707070;
  }
  #front .service-block__number {
    font-size: 6.5rem;
    font-weight: bold;
    margin-right: 45px;
  }
  #front .service-block__ttl {
    margin-top: 15px;
    font-size: 4rem;
    font-weight: bold;
  }
  #front .service-block__desc {
    font-size: 1.6rem;
    margin-top: 30px;
  }
  #front .service-block__list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  #front .service-block__item {
    background-color: #F7F6F2;
    border-radius: 10px;
    padding: 30px;
    flex-shrink: 0;
    width: 280px;
    aspect-ratio: 1/1;
  }
  #front .service-block__h4 {
    font-size: 1.7rem;
    font-weight: 500;
    text-align: center;
  }
  #front .service-block.block01 .item01 img {
    width: 200px;
    margin: 47px auto 0;
  }
  #front .service-block.block01 .item02 img {
    width: 157px;
    margin: 40px auto 0;
  }
  #front .service-block.block01 .item03 img {
    width: 147px;
    margin: 47px auto 0;
  }
  #front .service-block.block01 .item04 img {
    width: 168px;
    margin: 78px auto 0;
  }
  #front .service-block.block02 .item01 img {
    width: 131px;
    margin: 47px auto 0;
  }
  #front .service-block.block02 .item02 img {
    width: 188px;
    margin: 37px auto 0;
  }
  #front .service-block.block02 .item03 img {
    width: 186px;
    margin: 40px auto 0;
  }
  #front .service-block.block02 .item04 img {
    width: 186px;
    margin: 43px auto 0;
  }
  #front .company {
    padding-top: 123px;
    padding-bottom: 200px;
  }
  #front .company .container {
    max-width: 920px;
  }
  #front .company-table {
    margin-top: 90px;
    border-collapse: collapse;
    width: 100%;
  }
  #front .company-table tr {
    display: flex;
    align-items: stretch;
    margin-bottom: 10px;
  }
  #front .company-table tr th {
    flex-shrink: 0;
    width: 153px;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: left;
    line-height: 2.5;
  }
  #front .company-table tr td {
    font-size: 1.6rem;
    line-height: 2.5;
    font-weight: 400;
  }
  #front .company-banner {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
  }
  #front .company-banner__item {
    max-width: 398px;
    width: 49%;
  }
  #front .company-banner__ttl {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
  }
  #front .company-banner__button {
    margin-top: 30px;
    background-color: white;
    border-radius: 10px;
    height: 114px;
    display: flex;
  }
  #front .company-banner__button img {
    margin: auto;
  }
  #front .company-banner .left img {
    width: 146px;
  }
  #front .company-banner .right img {
    width: 158px;
  }
  #front .contact {
    background-color: white;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  #front .contact-lead {
    margin-top: 35px;
    font-size: 1.6rem;
    text-align: center;
  }
  #front .contact-cta {
    margin: 43px auto 0;
    background-color: #302D2C;
    border-radius: 10px;
    width: 398px;
    height: 83px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    text-align: center;
    color: white;
    transition: all 0.6s ease;
  }
  #front .contact-cta:hover {
    background-color: #FFE200;
    color: #302D2C;
    opacity: 1;
  }
}
/*****************/
/****   SP   *****/
/*****************/
@media screen and (max-width: 768px) {
  #front {
    /*****************/
    /****  hero   *****/
    /*****************/
    /*****************/
    /****  about   *****/
    /*****************/
    /*****************/
    /****  work   *****/
    /*****************/
    /*****************/
    /****  service   *****/
    /*****************/
    /*****************/
    /****  company   *****/
    /*****************/
    /*****************/
    /****  contact   *****/
    /*****************/
  }
  #front .hero {
    padding-top: 150px;
    padding-bottom: 80px;
  }
  #front .hero-img {
    margin: 0 auto;
    max-width: 555px;
    width: 90%;
  }
  #front .hero-ttl {
    margin: 60px auto auto;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
  #front .hero-h1 {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #FFE200;
  }
  #front .about {
    padding-top: 50px;
  }
  #front .about-lead {
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  #front .work {
    padding-top: 100px;
  }
  #front .work-list__item {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #302D2C;
  }
  #front .work-list__item .work-list__link {
    cursor: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 25px;
    height: 100%;
    min-height: 300px;
  }
  #front .work-list__item .work-list__link:hover {
    opacity: 1;
  }
  #front .work-list__item .ttl {
    color: white;
    display: block;
    font-size: 2rem;
    max-width: 500px;
    font-weight: 700;
    opacity: 0;
    transition: all 0.6s ease;
  }
  #front .work-list__item .client {
    display: block;
    margin-top: 15px;
    color: white;
    font-size: 1.6rem;
    opacity: 0;
    transition: all 0.6s ease;
  }
  #front .work-list__item.active .ttl {
    opacity: 1;
  }
  #front .work-list__item.active .client {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  #front .work-list__item .ttl {
    opacity: 1;
  }
  #front .work-list__item .client {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  #front .work-list__item:nth-child(3) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #front .work-link {
    margin: 30px auto 0;
    width: 100px;
    height: 100px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 50%;
    transition: all 0.6s ease;
  }
  #front .work-link:hover {
    opacity: 1;
    background-color: #302D2C;
    color: #FFE200;
  }
}
@media screen and (max-width: 768px) {
  #front .work-cursor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
  }
  #front .work-cursor img {
    width: 40px;
    height: auto;
  }
  #front .work-cursor.active {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #front .service {
    margin-top: 40px;
  }
  #front .service-before {
    width: 100%;
  }
  #front .service-after {
    width: 100%;
  }
  #front .service-main {
    background-color: #F2F1EC;
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  #front .service-main .container {
    max-width: 1410px;
  }
  #front .service-ttl {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }
  #front .service-block {
    border-bottom: 2px solid #707070;
    padding: 15px 30px 15px;
    padding-bottom: 40px;
  }
  #front .service-block.block01 {
    border-top: 2px solid #707070;
  }
  #front .service-block__number {
    font-size: 4rem;
    font-weight: bold;
    margin-right: 45px;
  }
  #front .service-block__ttl {
    margin-top: 15px;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.6;
  }
  #front .service-block__desc {
    font-size: 1.4rem;
    margin-top: 20px;
  }
  #front .service-block__list {
    margin-top: 30px;
  }
  #front .service-block__item {
    margin: 20px auto;
    background-color: #F7F6F2;
    border-radius: 10px;
    padding: 30px;
    flex-shrink: 0;
    max-width: 280px;
    aspect-ratio: 1/1;
  }
  #front .service-block__h4 {
    font-size: 1.7rem;
    font-weight: 500;
    text-align: center;
  }
  #front .service-block.block01 .item01 img {
    width: 200px;
    margin: 47px auto 0;
  }
  #front .service-block.block01 .item02 img {
    width: 157px;
    margin: 40px auto 0;
  }
  #front .service-block.block01 .item03 img {
    width: 147px;
    margin: 47px auto 0;
  }
  #front .service-block.block01 .item04 img {
    width: 168px;
    margin: 78px auto 0;
  }
  #front .service-block.block02 .item01 img {
    width: 131px;
    margin: 47px auto 0;
  }
  #front .service-block.block02 .item02 img {
    width: 188px;
    margin: 37px auto 0;
  }
  #front .service-block.block02 .item03 img {
    width: 186px;
    margin: 40px auto 0;
  }
  #front .service-block.block02 .item04 img {
    width: 186px;
    margin: 43px auto 0;
  }
}
@media screen and (max-width: 768px) {
  #front .company {
    padding-top: 80px;
    padding-bottom: 150px;
  }
  #front .company .container {
    max-width: 920px;
  }
  #front .company-table {
    margin-top: 60px;
    border-collapse: collapse;
    width: 100%;
  }
  #front .company-table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  #front .company-table tr th {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
    line-height: 1.5;
  }
  #front .company-table tr td {
    font-size: 1.4rem;
    line-height: 2.5;
    font-weight: 400;
  }
  #front .company-banner {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #front .company-banner__item {
    max-width: 398px;
    margin-bottom: 20px;
    width: 90%;
  }
  #front .company-banner__ttl {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
  }
  #front .company-banner__button {
    margin-top: 20px;
    background-color: white;
    border-radius: 10px;
    height: 114px;
    display: flex;
  }
  #front .company-banner__button img {
    margin: auto;
  }
  #front .company-banner .left img {
    width: 146px;
  }
  #front .company-banner .right img {
    width: 158px;
  }
}
@media screen and (max-width: 768px) {
  #front .contact {
    background-color: white;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #front .contact-lead {
    margin-top: 25px;
    font-size: 1.4rem;
    text-align: center;
  }
  #front .contact-cta {
    margin: 25px auto 0;
    background-color: #302D2C;
    border-radius: 10px;
    max-width: 398px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    text-align: center;
    color: white;
    transition: all 0.6s ease;
  }
  #front .contact-cta:hover {
    background-color: #FFE200;
    color: #302D2C;
    opacity: 1;
  }
}
/*****************/
/****   PC   *****/
/*****************/
@media screen and (min-width: 769px) {
  #contact {
    background-color: #F2F1EC;
    /*****************/
    /****   hero   *****/
    /*****************/
    /*****************/
    /****   form   *****/
    /*****************/
    /*****************/
    /****   value   *****/
    /*****************/
    /*****************/
    /****   thanks   *****/
    /*****************/
  }
  #contact .hero {
    padding-top: 190px;
  }
  #contact .form {
    margin-top: 137px;
    padding-bottom: 140px;
  }
  #contact .form .container {
    max-width: 930px;
  }
  #contact .form label {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 23px;
    margin-top: 52px;
  }
  #contact .form label span {
    color: #FF4000;
    display: inline-block;
    margin-left: 23px;
  }
  #contact .form input,
#contact .form textarea {
    background-color: white;
    border: 1px solid #707070;
    border-radius: 10px;
    padding: 30px 35px;
    font-size: 1.6rem;
    font-weight: 600;
    width: 100%;
    line-height: 1.6;
  }
  #contact .form input::-moz-placeholder, #contact .form textarea::-moz-placeholder {
    color: #9A9A9A;
  }
  #contact .form input::placeholder,
#contact .form textarea::placeholder {
    color: #9A9A9A;
  }
  #contact .form textarea {
    height: 422px;
    resize: vertical;
  }
  #contact .form .checkbox {
    justify-content: center;
  }
  #contact .form .checkbox a {
    font-size: 1.9rem;
    font-weight: 500;
  }
  #contact .form .checkbox input {
    width: 20px;
    height: 20px;
    margin-bottom: 0;
    margin-right: 20px;
  }
  #contact .form button {
    margin: 50px auto 0;
    width: 312px;
    height: 52px;
    border-radius: 26px;
    background-color: #302D2C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    cursor: pointer;
  }
  #contact .value {
    margin-top: 137px;
    padding-bottom: 140px;
  }
  #contact .value .container {
    max-width: 930px;
  }
  #contact .value dl dt {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 23px;
    margin-top: 52px;
  }
  #contact .value dl dt span {
    color: #FF4000;
    display: inline-block;
    margin-left: 23px;
  }
  #contact .value dl dd {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
  }
  #contact .value .confirm-actions {
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  #contact .value .confirm-actions button {
    width: 312px;
    height: 52px;
    border-radius: 26px;
    background-color: #302D2C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    cursor: pointer;
  }
  #contact .thanks {
    margin-top: 137px;
    padding-bottom: 140px;
  }
  #contact .thanks .container {
    max-width: 930px;
  }
  #contact .thanks p {
    font-size: 1.6rem;
    font-weight: 400;
  }
  #contact .thanks a {
    margin: 50px auto 0;
    width: 312px;
    height: 52px;
    border-radius: 26px;
    background-color: #302D2C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    cursor: pointer;
  }
  #contact #cf7-contact {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
}
/*****************/
/****   SP   *****/
/*****************/
@media screen and (max-width: 768px) {
  #contact {
    background-color: #F2F1EC;
    /*****************/
    /****   hero   *****/
    /*****************/
    /*****************/
    /****   form   *****/
    /*****************/
    /*****************/
    /****   value   *****/
    /*****************/
    /*****************/
    /****   thanks   *****/
    /*****************/
  }
  #contact .hero {
    padding-top: 100px;
  }
  #contact .form {
    margin-top: 70px;
    padding-bottom: 70px;
  }
  #contact .form .container {
    max-width: 930px;
  }
  #contact .form label {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
  }
  #contact .form label span {
    color: #FF4000;
    display: inline-block;
    margin-left: 15px;
  }
  #contact .form input,
#contact .form textarea {
    background-color: white;
    border: 1px solid #707070;
    border-radius: 10px;
    padding: 20px 25px;
    font-size: 1.6rem;
    font-weight: 600;
    width: 100%;
    line-height: 1.6;
  }
  #contact .form input::-moz-placeholder, #contact .form textarea::-moz-placeholder {
    color: #9A9A9A;
  }
  #contact .form input::placeholder,
#contact .form textarea::placeholder {
    color: #9A9A9A;
  }
  #contact .form textarea {
    height: 300px;
    resize: vertical;
  }
  #contact .form .checkbox {
    justify-content: center;
  }
  #contact .form .checkbox a {
    font-size: 1.7rem;
    font-weight: 500;
  }
  #contact .form .checkbox input {
    width: 20px;
    height: 20px;
    margin-bottom: 0;
    margin-right: 20px;
  }
  #contact .form button {
    margin: 50px auto 0;
    width: 200px;
    height: 40px;
    border-radius: 26px;
    background-color: #302D2C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    cursor: pointer;
  }
  #contact .value {
    margin-top: 70px;
    padding-bottom: 70px;
  }
  #contact .value .container {
    max-width: 930px;
  }
  #contact .value dl dt {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
  }
  #contact .value dl dt span {
    color: #FF4000;
    display: inline-block;
    margin-left: 15px;
  }
  #contact .value dl dd {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
  }
  #contact .value .confirm-actions {
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  #contact .value .confirm-actions button {
    width: 200px;
    height: 40px;
    border-radius: 26px;
    background-color: #302D2C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    cursor: pointer;
  }
  #contact .thanks {
    margin-top: 70px;
    padding-bottom: 70px;
  }
  #contact .thanks .container {
    max-width: 930px;
  }
  #contact .thanks p {
    font-size: 1.4rem;
    font-weight: 400;
  }
  #contact .thanks a {
    margin: 50px auto 0;
    width: 200px;
    height: 40px;
    border-radius: 26px;
    background-color: #302D2C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    cursor: pointer;
  }
  #contact #cf7-contact {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
}
/*****************/
/****   PC   *****/
/*****************/
@media screen and (min-width: 769px) {
  #archive .content {
    margin-top: 80px;
    padding-bottom: 30px;
  }
  #archive .content .container {
    max-width: 1400px;
  }
  #archive .content .category-list {
    display: flex;
    align-items: center;
  }
  #archive .content .category-list__item {
    font-size: 1.6rem;
    font-weight: bold;
    margin-right: 35px;
    cursor: pointer;
  }
  #archive .content .category-list__item:last-child {
    margin-right: 0;
  }
  #archive .content .work-wrapper {
    margin-top: 66px;
    display: none;
  }
  #archive .content .work-wrapper.active {
    display: block;
  }
  #archive .content .work-wrapper .work-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 2%;
  }
  #archive .content .work-wrapper .work-list__item {
    width: 32%;
    margin-bottom: 100px;
    position: relative;
    padding-bottom: 25px;
  }
  #archive .content .work-wrapper .work-list__thumb {
    aspect-ratio: 440/250;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
  }
  #archive .content .work-wrapper .work-list .ttl {
    margin-top: 20px;
    line-height: 1.6;
    font-size: 1.4rem;
    font-weight: 600;
    color: #302D2C;
  }
  #archive .content .work-wrapper .work-list .client {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 1.2rem;
    font-weight: 400;
  }
}
/*****************/
/****   SP   *****/
/*****************/
@media screen and (max-width: 768px) {
  #archive .content {
    margin-top: 50px;
    padding-bottom: 30px;
  }
  #archive .content .container {
    max-width: 1400px;
  }
  #archive .content .category-list {
    display: flex;
    align-items: center;
  }
  #archive .content .category-list__item {
    font-size: 1.4rem;
    font-weight: bold;
    margin-right: 20px;
    cursor: pointer;
  }
  #archive .content .category-list__item:last-child {
    margin-right: 0;
  }
  #archive .content .work-wrapper {
    margin-top: 36px;
    display: none;
  }
  #archive .content .work-wrapper.active {
    display: block;
  }
  #archive .content .work-wrapper .work-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 2%;
  }
  #archive .content .work-wrapper .work-list__item {
    flex-shrink: 0;
    width: 320px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 25px;
  }
  #archive .content .work-wrapper .work-list__thumb {
    aspect-ratio: 440/250;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
  }
  #archive .content .work-wrapper .work-list .ttl {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 1.4rem;
    font-weight: 600;
    color: #302D2C;
  }
  #archive .content .work-wrapper .work-list .client {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 1.2rem;
    font-weight: 400;
  }
}
/*****************/
/****   PC   *****/
/*****************/
@media screen and (min-width: 769px) {
  #single .hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 898px;
  }
  #single .content {
    background-color: #F2F1EC;
    padding-top: 63px;
    padding-bottom: 180px;
  }
  #single .content .container {
    max-width: 1030px;
  }
  #single .content-cats {
    display: flex;
    align-items: center;
  }
  #single .content-cats__item {
    font-size: 1.6rem;
    font-weight: bold;
    margin-right: 20px;
  }
  #single .content-ttl {
    margin-top: 10px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.6;
  }
  #single .content-client {
    margin-top: 15px;
    font-size: 1.4rem;
  }
  #single .content-content {
    margin-top: 50px;
  }
  #single .content-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  #single .content-content figure {
    width: 100%;
    margin: 0 auto 50px;
    border-radius: 10px;
    overflow: hidden;
  }
  #single .content-pager {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #single .content-pager__arrow a {
    font-size: 4rem;
    font-weight: bold;
    color: #302D2C;
  }
  #single .content-pager__all {
    font-size: 1.6rem;
    font-weight: 500;
    color: #302D2C;
  }
}
/*****************/
/****   SP   *****/
/*****************/
@media screen and (max-width: 768px) {
  #single .hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
  }
  #single .content {
    background-color: #F2F1EC;
    padding-top: 40px;
    padding-bottom: 90px;
  }
  #single .content .container {
    max-width: 1030px;
  }
  #single .content-cats {
    display: flex;
    align-items: center;
  }
  #single .content-cats__item {
    font-size: 1.4rem;
    font-weight: bold;
    margin-right: 15px;
  }
  #single .content-ttl {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
  }
  #single .content-client {
    margin-top: 10px;
    font-size: 1.2rem;
  }
  #single .content-content {
    margin-top: 30px;
  }
  #single .content-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  #single .content-content figure {
    width: 100%;
    margin: 0 auto 30px;
    border-radius: 10px;
    overflow: hidden;
  }
  #single .content-pager {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #single .content-pager__arrow a {
    font-size: 3rem;
    font-weight: bold;
    color: #302D2C;
  }
  #single .content-pager__all {
    font-size: 1.4rem;
    font-weight: 500;
    color: #302D2C;
  }
}
/*# sourceMappingURL=main.css.map */