:root {
    --width: 1px;
    --text-color: #333333;
    --accent-color: #D01126;
    --red-color: #BB1829;
    --red02-color: #DA335D;
    --white-color: #FFFFFF;
    --white02-color: #F2F2F2;
    --white03-color: #FBFBFB;
    --white04-color: #F6F6F6;
    --white-color-66: #FFFFFF66;
    --green-color: #19BE00;
    --green02-color: #23A889;
    --gray-color: #C2C2C233;
    --gray02-color: #CDCDCD;
    --gray03-color: #7A7A7A;
    --gray04-color: #A4A4A4;
    --black-color: #000000;
    --black01-color: #313131;
}
.pc{display: block;} .sp{display: none;}
@media screen and (max-width: 780px) {
    :root {
        --width: calc(1 / 390 * 100vw);
    }
    .pc{display: none;}
    .sp{display: block;}
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
}
html {
    scroll-behavior: smooth;
}
header,
main,
footer {
    margin: 0 auto;
}
img {
    width: 100%;
    height: auto;
    display: block;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(105 * var(--width));
    border-bottom: 1px solid var(--white-color-66);
    background: transparent;
    transition: background 0.3s ease;
}
header.active {
    background: #fff;
}
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
header nav .logo {
    width: calc(87 * var(--width));
    height: auto;
}
.header-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: calc(80 * var(--width));
}
.header-links a {
    color: var(--white-color);
    text-decoration: none;
    font-size: calc(16 * var(--width));
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    transition: color 0.3s;
}
header.active .header-links a {
    color: var(--text-color);
}
.header-links a:hover,
header.active .header-links a:hover {
    color: var(--accent-color);
}
.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(2 * var(--width));
    background: var(--accent-color);
    width: calc(107 * var(--width));
    height: 100%;
}
.contact-btn p {
    font-size: calc(15 * var(--width));
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    color: var(--white-color);
}
.contact-btn img {
    width: calc(47 * var(--width));
    height: auto;
}

@media screen and (max-width: 780px) {
    header {
        padding: 0 calc(12 * var(--width));
        height: calc(68 * var(--width));
    }
    header nav .logo {
        width: calc(50 * var(--width));
    }
    .header-links a {
        display: none;
    }
}

.fv {
    background-image: url('../img/fv-bg.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding-top: calc(105 * var(--width));
}
.fv-contents {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: calc(86 * var(--width));
    padding-left: calc(83 * var(--width));
    padding-bottom: calc(174 * var(--width));
}
.fv-contents h1 {
    font-size: calc(68 * var(--width));
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: calc(24 * var(--width));
    letter-spacing: 0.04em;
}
.fv-contents p {
    font-size: calc(20 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: calc(48 * var(--width));
    line-height: 1.8;
}
.fv-contents .btn {
    font-size: calc(18 * var(--width));
    font-weight: 500;
    color: var(--white-color);
    background: var(--accent-color);
    padding: calc(16 * var(--width)) calc(24 * var(--width));
    text-decoration: none;
    transition: background 0.3s;
    letter-spacing: 0.1em;
}
.fv-contents .btn:hover {
    background: var(--green-color);
}
@media screen and (max-width: 780px) {
    .fv {
        background: url('../img/fv-bg-sp.webp') no-repeat center center / cover;
        padding-top: calc(68 * var(--width));
    }
    .fv-contents {
        padding-top: calc(104 * var(--width));
        padding-left: calc(16 * var(--width));
        padding-bottom: calc(179 * var(--width));
    }
    .fv-contents h1 {
        font-size: calc(45 * var(--width));
    }
    .fv-contents p {
        font-size: calc(15 * var(--width));
    }
}

.works {
    width: 100%;
    height: auto;
    padding: calc(104 * var(--width)) 0 calc(121 * var(--width));
}
.works-contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.works-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: calc(64 * var(--width));
}
.works-title-sub {
    font-size: calc(56 * var(--width));
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
    margin-bottom: calc(16 * var(--width));
}
.works-title-underline {
    width: calc(88 * var(--width));
    height: 1px;
    background: var(--accent-color);
    margin-bottom: calc(16 * var(--width));
    opacity: 1;
    border: none;
    outline: none;
}
.works-title-main {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    margin-bottom: calc(40 * var(--width));
    letter-spacing: 0.1em;
}
.works-title-description {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    text-align: center;
    line-height: 1.8;
}
.works-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-bottom: calc(64 * var(--width));
}
.works-item {
    width: 100%;
    height: auto;
    aspect-ratio: 1.76 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.works-item.is-hidden {
    display: none !important;
}
.works-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.works-item:hover::before {
    opacity: 1;
    visibility: visible;
}
.works-item-thumb {
    width: 100%;
    height: 100%;
}
.works-item-thumb--empty {
    background: #d9d9d9;
}
.works-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.works-item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-left: calc(17 * var(--width));
    padding-left: calc(15 * var(--width));
    z-index: 1;
}
.works-item-title::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    opacity: 0.4;
    z-index: -1;
}
.works-item-category {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(16 * var(--width));
    margin-bottom: calc(4 * var(--width));
}
.works-item-category p {
    font-size: calc(14 * var(--width));
    font-weight: 500;
    color: var(--white-color);
    background: var(--accent-color);
    padding: calc(2 * var(--width)) calc(6 * var(--width));
}
.works-item-title h3 {
    font-size: calc(16 * var(--width));
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: calc(16 * var(--width));
}

@media screen and (max-width: 780px) {
    .works {
        padding: calc(64 * var(--width)) 0;
    }
    .works-title {
        padding: 0 calc(16 * var(--width));
        margin-bottom: calc(40 * var(--width));
    }
    .works-title-sub {
        font-size: calc(40 * var(--width));
    }
    .works-title-description {
        font-size: calc(15 * var(--width));
    }
    .works-list {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: calc(40 * var(--width));
    }
    .works-item-category {
        gap: calc(8 * var(--width));
    }
    .works-item-category p {
        font-size: calc(13 * var(--width));
    }
    .works-item-title h3 {
        font-size: calc(15 * var(--width));
    }
}

.btn02 {
    font-size: calc(16 * var(--width));
    font-weight: 500;
    color: var(--white-color);
    background: var(--accent-color);
    padding: calc(16 * var(--width)) calc(24 * var(--width));
    text-decoration: none;
    transition: background 0.3s;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(8 * var(--width));
    border: none;
    cursor: pointer;
}
.btn02:hover {
    background: var(--green-color);
}

.about {
    background: url('../img/aboutus-bg.webp') no-repeat center center / cover;
    width: 100%;
    height: auto;
    padding: calc(164 * var(--width)) calc(0 * var(--width)) calc(95 * var(--width));
    position: relative;
    z-index: 1;
}
.about::before {
    position: absolute;
    content: "";
    top: calc(20 * var(--width));
    left: calc(24 * var(--width));
    right: calc(24 * var(--width));
    bottom: calc(20 * var(--width));
    border: 1px solid var(--white-color);
    z-index: -1;
    opacity: 0.5;
}
.about-contents {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.about-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: calc(1125 * var(--width));
    width: 90%;
}
.about-img {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.about-img img {
    width: calc(377 * var(--width));
    height: calc(427 * var(--width));
    object-fit: cover;
    object-position: center;
    margin-bottom: calc(17 * var(--width));
}
.about-img-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.about-img-title-name {
    font-size: calc(24 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: calc(4 * var(--width));
    font-family: 'Raleway', sans-serif;
}
.about-img-title-name-ja {
    font-size: calc(15 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    opacity: 0.6;
}
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    max-width: calc(623 * var(--width));
    width: 90%;
    margin-left: calc(20 * var(--width));
}
.about-icon {
    position: absolute;
    top: calc(-13 * var(--width));
    right: calc(100% + 18 * var(--width));
    width: calc(33 * var(--width));
    height: auto;
}
.about-text h2 {
    font-size: calc(48 * var(--width));
    font-weight: 300;
    color: var(--white-color);
    margin-bottom: calc(24 * var(--width));
    line-height: 1.5;
}
.about-text p {
    font-size: calc(20 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: calc(56 * var(--width));
    line-height: 2.3;
}

@media screen and (max-width: 780px) {
    .about {
        padding: calc(64 * var(--width)) 0;
    }
    .about::before {
        top: calc(10 * var(--width));
        left: calc(7 * var(--width));
        right: calc(7 * var(--width));
        bottom: calc(10 * var(--width));
    }
    .about-row {
        flex-direction: column;
    }
    .about-img {
        margin-bottom: calc(40 * var(--width));
    }
    .about-img img {
        width: calc(203 * var(--width));
        height: calc(229 * var(--width));
    }
    .about-img-title-name {
        font-size: calc(20 * var(--width));
        line-height: 2;
        margin-bottom: 0;
    }
    .about-img-title-name-ja {
        font-size: calc(13 * var(--width));
    }
    .about-icon {
        width: calc(21 * var(--width));
        right: auto;
        top: 0;
        left: 0;
    }
    .about-text {
        margin-left: 0;
        align-items: center;
        width: calc(312 * var(--width));
    }
    .about-text h2 {
        font-size: calc(28 * var(--width));
        text-align: center;
    }
    .about-text p {
        font-size: calc(15 * var(--width));
    }
}

.partner {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: calc(104 * var(--width)) 0 calc(140 * var(--width));
    overflow: hidden;
}
.partner-text-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: calc(156 * var(--width));
    font-weight: 300;
    color: var(--gray-color);
    z-index: -1;
    white-space: nowrap;
}
.partner-contents {
    max-width: calc(1180 * var(--width));
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    position: relative;
    z-index: 1;
    background: var(--red-color);
}
.partner-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(238 * var(--width));
    height: calc(238 * var(--width));
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.partner-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.partner-img {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: calc(554 * var(--width));
    width: 48%;
}
.partner-img::before {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: calc(90 * var(--width));
    background: var(--red-color);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.partner-img img {
    width: 100%;
    height: calc(360 * var(--width));
    object-fit: cover;
    object-position: left center;
}
.partner-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    padding-left: calc(30 * var(--width));
}
.partner-text h2 {
    font-size: calc(32 * var(--width));
    font-weight: 300;
    color: var(--white-color);
    margin-bottom: calc(16 * var(--width));
    line-height: 1.5;
}
.partner-text hr {
    width: calc(98 * var(--width));
    height: 1px;
    background: var(--white-color);
    margin-bottom: calc(16 * var(--width));
    opacity: 1;
    outline: none;
    border: none;
}
.partner-text p {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: calc(32 * var(--width));
    line-height: 2;
}
.partner-text .btn02 {
    border: 1px solid var(--white-color);
}

@media screen and (max-width: 780px) {
    .partner {
        padding: calc(64 * var(--width)) calc(16 * var(--width)) calc(147 * var(--width));
    }
    .partner-text-bottom {
        font-size: calc(76 * var(--width));
        left: 0;
        transform: translateX(0);
        bottom: calc(40 * var(--width));
    }
    .partner-contents {
        width: 100%;
    }
    .partner-row {
        flex-direction: column;
    }
    .partner-img {
        width: 100%;
    }
    .partner-img::before {
        top: auto;
        bottom: 0;
        width: 100%;
        height: calc(60 * var(--width));
    }
    .partner-img img {
        width: 100%;
        height: calc(240 * var(--width));
    }
    .partner-text {
        padding: calc(24 * var(--width)) calc(20 * var(--width)) calc(54 * var(--width));
    }
    .partner-text h2 {
        font-size: calc(22 * var(--width));
    }
    .partner-text p {
        font-size: calc(15 * var(--width));
    }
}

.contact {
    width: 100%;
    height: auto;
    padding: calc(104 * var(--width)) 0 calc(104 * var(--width));
    background: url('../img/contact-bg.webp') no-repeat center center / cover;
    position: relative;
    z-index: 1;
}
.contact::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    opacity: 0.6;
    z-index: -1;
}
.contact-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.contact-title-sub {
    font-size: calc(56 * var(--width));
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
    margin-bottom: calc(16 * var(--width));
    color: var(--white-color);
}
.contact-title-underline {
    width: 88px;
    height: 1px;
    background: var(--accent-color);
    margin-bottom: calc(16 * var(--width));
    opacity: 1;
    border: none;
    outline: none;
}
.contact-title-main {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    margin-bottom: calc(40 * var(--width));
    letter-spacing: 0.1em;
    color: var(--white-color);
}
.contact-title-description {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    margin-bottom: calc(40 * var(--width));
    text-align: center;
    line-height: 1.8;
    color: var(--white-color);
}

@media screen and (max-width: 780px) {
    .contact {
        padding: calc(80 * var(--width)) calc(16 * var(--width)) calc(80 * var(--width));
    }
    .contact-title-sub {
        font-size: calc(40 * var(--width));
    }
    .contact-title-underline {
        width: calc(88 * var(--width));
    }
    .contact-title-main {
        font-size: calc(16 * var(--width));
    }
    .contact-title-description {
        font-size: calc(15 * var(--width));
    }
}
footer {
    background-color: #222222;
    color: var(--white-color);
    text-align: center;
    padding: calc(80 * var(--width)) calc(0 * var(--width));
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: calc(1180 * var(--width));
    margin: 0 auto;
}
.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-left-logo-text {
    font-size: calc(24 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    line-height: 2;
    margin-bottom: calc(16 * var(--width));
}
.footer-left-text-address {
    font-size: calc(15 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    line-height: 1.5;
    text-align: left;
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}
.footer-right-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: calc(64 * var(--width));
    margin-bottom: calc(48 * var(--width));
}
.footer-right-link {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    line-height: 1;
    text-decoration: none;
}
.footer-right-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: calc(40 * var(--width));
}
.footer-right-bottom-link {
    font-size: calc(15 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    line-height: 1.5;
    opacity: 0.6;
    text-decoration: none;
}
.footer-right-bottom p {
    font-size: calc(15 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    line-height: 1.5;
    opacity: 0.6;
}

@media screen and (max-width: 780px) {
    footer {
        padding: calc(40 * var(--width)) calc(24 * var(--width));
    }
    .footer-row {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .footer-left {
        margin-bottom: calc(40 * var(--width));
    }
    .footer-left-logo-text {
        font-size: calc(24 * var(--width));
    }
    .footer-left-text-address {
        font-size: calc(15 * var(--width));
    }
    .footer-right {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .footer-right-links {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: calc(16 * var(--width));
        margin-bottom: calc(24 * var(--width));
    }
    .footer-right-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: calc(16 * var(--width));
    }
}

.menu {
    display: none;
}
@media screen and (max-width: 780px) {
    .menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: calc(33 * var(--width));
        height: calc(22 * var(--width));
        position: fixed;
        top: calc(23 * var(--width));
        right: calc(13 * var(--width));
        z-index: 100;
        cursor: pointer;
    }
    .menu div {
        width: 100%;
        height: 1px;
        background: var(--white-color);
        transition: background 0.3s;
    }
    .menu.active div {
        background: var(--black-color);
    }
}

.menu-contents {
    display: none;
}

@media screen and (max-width: 780px) {
    .menu-contents {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 200;
        background: var(--white-color);
        flex-direction: column;
        justify-content: space-between;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu-contents.active {
        opacity: 1;
        visibility: visible;
    }
    .menu-close {
        position: absolute;
        top: calc(23 * var(--width));
        right: calc(13 * var(--width));
        width: calc(33 * var(--width));
        height: calc(33 * var(--width));
        background: transparent;
        border: none;
        font-size: calc(40 * var(--width));
        color: var(--black-color);
        cursor: pointer;
        z-index: 201;
        line-height: 1;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu-close div {
        width: 100%;
        height: 1px;
        background: var(--black-color);
        position: absolute;
        left: 0;
        top: 50%;
    }
    .menu-close div:nth-child(1) {
        transform: rotate(45deg) translateY(-50%);
    }
    .menu-close div:nth-child(2) {
        transform: rotate(-45deg) translateY(-50%);
    }
    .menu-contents-top {
        width: 100%;
        padding: calc(56 * var(--width)) 0 0 calc(24 * var(--width));
        flex: 1;
    }

    .menu-contents-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: calc(40 * var(--width));
    }

    .menu-link {
        font-size: calc(20 * var(--width));
        font-weight: 400;
        color: var(--black-color);
        text-decoration: none;
        font-family: 'Raleway', sans-serif;
    transition: color 0.3s;
        text-transform: uppercase;
    }

    .menu-link-active {
        color: var(--accent-color);
    }

    .menu-contents-bottom {
        width: 100%;
        background: var(--accent-color);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-contact-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: calc(16 * var(--width));
        text-decoration: none;
        width: 100%;
        padding: calc(16 * var(--width)) 0;
    }

    .menu-contact-btn img {
        width: calc(47 * var(--width));
        height: auto;
    }
    .menu-contact-btn span {
        color: var(--white-color);
        font-size: calc(20 * var(--width));
        font-weight: 500;
        font-family: 'Raleway', sans-serif;
    }
    .menu-contact-btn-active {
        opacity: 0.8;
    }
}

.sub-fv {
    padding-top: calc(105 * var(--width));
    height: calc(440 * var(--width));
    width: 100%;
}
.sub-fv.works-fv {
    background: url('../img/fv-works.webp') no-repeat center center / cover;
}
.sub-fv-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: calc(92 * var(--width));
    padding-bottom: calc(96 * var(--width));
}
.sub-fv-contents-sub {
    font-size: calc(64 * var(--width));
    font-weight: 300;
    color: var(--white-color);
    text-align: center;
    font-family: 'Raleway', sans-serif;
    line-height: 1.5;
}
.sub-fv-contents-underline {
    width: calc(88 * var(--width));
    height: 3px;
    background: var(--accent-color);
    margin-bottom: calc(24 * var(--width));
    opacity: 1;
    border: none;
    outline: none;
}
.sub-fv-contents-title {
    font-size: calc(15 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(8 * var(--width));
}
.sub-fv-contents-title span,
.sub-fv-contents-title h1 {
    font-size: calc(15 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-works {
    padding: 0 0 calc(107 * var(--width));
}
.sub-works .btn02 {
    width: calc(215 * var(--width));
}
@media screen and (max-width: 780px) {
    .sub-fv {
        padding-top: calc(68 * var(--width));
        height: calc(390 * var(--width));
    }
    .sub-fv-contents {
        padding-top: calc(80 * var(--width));
        padding-bottom: 0;
    }
    .sub-fv-contents-sub {
        font-size: calc(48 * var(--width));
    }
    .sub-fv-contents-title {
        flex-wrap: wrap;
        font-size: calc(13 * var(--width));
    }
}


.works-detail {
    width: 100%;
    height: auto;
    padding: calc(104 * var(--width)) 0;
}
.works-detail-contents {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: calc(986 * var(--width));
    margin: 0 auto;
}
.works-detail-thumbnail {
    display: flex;
    margin-bottom: calc(40 * var(--width));
}
.works-detail-article {
    width: 100%;
}
.works-detail-article-category {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: calc(16 * var(--width));
    margin-bottom: calc(16 * var(--width));
}
.works-detail-article-category p {
    font-size: calc(14 * var(--width));
    font-weight: 500;
    color: var(--white-color);
    background: var(--accent-color);
    padding: calc(2 * var(--width)) calc(6 * var(--width));
}
.works-detail-article-title {
    font-size: calc(32 * var(--width));
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.5;
    padding-bottom: calc(40 * var(--width));
    margin-bottom: calc(40 * var(--width));
    border-bottom: 1px solid var(--gray02-color);
}
.works-detail-article-description {
    width: 100%;
    border-bottom: 1px solid var(--gray02-color);
    margin-bottom: calc(40 * var(--width));
}
.works-detail-article-description h2 {
    font-size: calc(28 * var(--width));
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.5;
    padding-left: calc(16 * var(--width));
    margin-bottom: calc(40 * var(--width));
    border-left: 3px solid var(--red-color);
}
.works-detail-article-description h3 {
    font-size: calc(24 * var(--width));
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: calc(40 * var(--width));
    padding-bottom: calc(12 * var(--width));
    border-bottom: 2px solid var(--gray02-color);
    z-index: 1;
    position: relative;
}
.works-detail-article-description h3::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    display: block;
    width: calc(104 * var(--width));
    height: 2px;
    background: var(--red-color);
    z-index: -1;
}
.works-detail-article-description h4 {
    font-size: calc(20 * var(--width));
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: calc(40 * var(--width));
    padding-left: calc(26 * var(--width));
    z-index: 1;
    position: relative;
}
.works-detail-article-description h4::before {
    position: absolute;
    content: '';
    top: calc(6 * var(--width));
    left: 0;
    width: calc(16 * var(--width));
    height: calc(16 * var(--width));
    display: block;
    background: var(--red-color);
    z-index: -1;
}
.works-detail-article-description table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid var(--gray02-color);
    margin-bottom: calc(40 * var(--width));
}
.works-detail-article-description table th {
    font-size: calc(16 * var(--width));
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.5;
    padding: calc(8 * var(--width)) 0;
    border: 1px solid var(--gray02-color);
    background: var(--white02-color);
    width: calc(120 * var(--width));
    height: calc(48 * var(--width));
}
.works-detail-article-description table td {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.5;
    padding: calc(8 * var(--width)) calc(12 * var(--width));
    border: 1px solid var(--gray02-color);
    width: calc(100% - 120 * var(--width));
}
.works-detail-article-description table td a {
    color: var(--accent-color);
    overflow-wrap: anywhere;
}
.works-detail-article-description p {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--text-color);
    line-height: 2;
    margin-bottom: calc(40 * var(--width));
}
.works-detail-article-back {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--accent-color);
}
@media screen and (max-width: 780px) {
    .works-detail {
        padding: calc(40 * var(--width)) calc(16 * var(--width));
    }
    .works-detail-article-category p {
        font-size: calc(13 * var(--width));
    }
    .works-detail-article-title {
        font-size: calc(28 * var(--width));
    }
    .works-detail-article-description h2 {
        font-size: calc(24 * var(--width));
    }
    .works-detail-article-description h3 {
        font-size: calc(20 * var(--width));
    }
    .works-detail-article-description h4 {
        font-size: calc(16 * var(--width));
    }
    .works-detail-article-description table th {
        font-size: calc(14 * var(--width));
    }
    .works-detail-article-description table td {
        font-size: calc(14 * var(--width));
    }
    .works-detail-article-description p {
        font-size: calc(15 * var(--width));
    }
    .works-detail-article-back {
        font-size: calc(15 * var(--width));
    }
}


.message {
    width: 100%;
    height: auto;
    padding: calc(88 * var(--width)) 0 calc(113 * var(--width));
    overflow: hidden;
}
.message-contents {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: calc(1180 * var(--width));
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.message-img {
    position: absolute;
    top: 0;
    right: calc(-66 * var(--width));
    width: calc(558 * var(--width));
    height: auto;
    z-index: -1;
}
.message-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: calc(64 * var(--width));
    max-width: calc(840 * var(--width));
}
.message-title-sub {
    font-size: calc(56 * var(--width));
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
    margin-bottom: calc(16 * var(--width));
    color: var(--text-color);
}
.message-title-underline {
    width: calc(88 * var(--width));
    height: 1px;
    background: var(--accent-color);
    margin-bottom: calc(16 * var(--width));
    opacity: 1;
    border: none;
    outline: none;
}
.message-title-main {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    margin-bottom: calc(40 * var(--width));
    letter-spacing: 0.1em;
    color: var(--text-color);
}
.message-title-description {
    font-size: calc(20 * var(--width));
    font-weight: 400;
    text-align: left;
    line-height: 2.3;
    color: var(--text-color);
}
.message-title-name {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.5;
    margin-top: calc(24 * var(--width));
}
@media screen and (max-width: 780px) {
    .message {
        padding-bottom: calc(490 * var(--width));
    }
    .message-img {
        top: 100%;
        width: calc(246 * var(--width));
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .message-title {
        margin-bottom: calc(48 * var(--width));
    }
    .message-title-sub {
        font-size: calc(40 * var(--width));
    }
    .message-title-description {
        font-size: calc(15 * var(--width));
    }
}

.company {
    background: var(--white03-color);
    padding: calc(80 * var(--width)) 0 ;
}
.company-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: calc(80 * var(--width));
}
.company-title-sub {
    font-size: calc(56 * var(--width));
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
    margin-bottom: calc(16 * var(--width));
}
.company-title-underline {
    width: calc(88 * var(--width));
    height: 1px;
    background: var(--accent-color);
    margin-bottom: calc(16 * var(--width));
    opacity: 1;
    border: none;
    outline: none;
}
.company-title-main {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    letter-spacing: 0.1em;
}
.company-title-description {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    text-align: center;
    line-height: 1.8;
}
.company-row {
    max-width: calc(1180 * var(--width));
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: calc(40 * var(--width));
    margin: 0 auto;
}
.company-table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: calc(24 * var(--width));
    max-width: calc(570 * var(--width));
    width: 50%;
}
.company-table table {
    width: 100%;
    border-collapse: collapse;
}
.company-table table th {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--text-color);
    line-height: 2;
    border-bottom: 1px solid var(--red-color);
    width: calc(97 * var(--width));
    padding: calc(14 * var(--width)) 0;
    text-align: left;
}
.company-table table td {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--text-color);
    line-height: 2;
    border-bottom: 1px solid var(--gray02-color);
    width: calc(100% - 97 * var(--width));
    padding: calc(14 * var(--width)) 0 calc(14 * var(--width)) calc(23 * var(--width));
}
.company-table table td a {
    color: var(--accent-color);
    overflow-wrap: anywhere;
}
.company-map {
    max-width: calc(570 * var(--width));
    width: 50%;
}
.company-map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 1.295	 / 1;
}
@media screen and (max-width: 780px) {
    .company {
        padding: calc(40 * var(--width)) 0 calc(48 * var(--width));
    }
    .company-title {
        margin-bottom: calc(48 * var(--width));
    }
    .company-title-sub {
        font-size: calc(40 * var(--width));
    }
    .company-title-underline {
        width: calc(50 * var(--width));
    }
    .company-title-main {
        font-size: calc(15 * var(--width));
    }
    .company-row {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: calc(40 * var(--width));
    }
    .company-table {
        width: 100%;
    }
    .company-map {
        width: 100%;
    }
    .company-table table th,
    .company-table table td {
        font-size: calc(14 * var(--width));
    }
}

.founder {
    background: var(--black01-color);
    padding: calc(80 * var(--width)) 0 calc(77 * var(--width));
}
.founder-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: calc(64 * var(--width));
}
.founder-title-sub {
    font-size: calc(56 * var(--width));
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
    margin-bottom: calc(16 * var(--width));
    color: var(--white-color);
}
.founder-title-underline {
    width: calc(88 * var(--width));
    height: 1px;
    background: var(--accent-color);
    margin-bottom: calc(16 * var(--width));
    opacity: 1;
    border: none;
    outline: none;
}
.founder-title-main {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--white-color);
}
.founder-row {
    max-width: calc(1180 * var(--width));
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: calc(73 * var(--width));
    margin: 0 auto calc(57 * var(--width));
}
.founder-table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: calc(24 * var(--width));
    max-width: calc(570 * var(--width));
    width: 50%;
}
.founder-table table {
    width: 100%;
    border-collapse: collapse;
}
.founder-table table th {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    line-height: 2;
    border-bottom: 1px solid var(--red-color);
    width: calc(97 * var(--width));
    padding: calc(14 * var(--width)) 0;
    text-align: left;
}
.founder-table table td {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    line-height: 2;
    border-bottom: 1px solid var(--gray02-color);
    width: calc(100% - 97 * var(--width));
    padding: calc(14 * var(--width)) 0 calc(14 * var(--width)) calc(23 * var(--width));

}
.founder-table table td p {
    text-indent: -1em;
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    line-height: 2;
}
.founder-table table td a {
    color: var(--accent-color);
    overflow-wrap: anywhere;
}
.founder-img {
    max-width: calc(534 * var(--width));
    width: 50%;
}
.founder-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5 / 1;
}
.founder-bottom {
    position: relative;
    width: 100%;
    max-width: calc(980 * var(--width));
    width: 90%;
    margin: 0 auto;
    border: 1px solid var(--gray03-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(40 * var(--width));
}
.founder-bottom-img {
    position: absolute;
    top: 0;
    left: calc(7 * var(--width));
    transform: translateY(-50%);
    width: calc(33 * var(--width));
    height: auto;
}
.founder-bottom p {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--white-color);
    line-height: 2;
}
@media screen and (max-width: 780px) {
    .founder {
        padding: calc(40 * var(--width)) 0 calc(48 * var(--width));
    }
    .founder-title {
        margin-bottom: calc(48 * var(--width));
    }
    .founder-title-sub {
        font-size: calc(40 * var(--width));
    }
    .founder-title-underline {
        width: calc(50 * var(--width));
    }
    .founder-title-main {
        font-size: calc(15 * var(--width));
    }
    .founder-row {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: flex-start;
        gap: calc(40 * var(--width));
    }
    .founder-table {
        width: 100%;
    }
    .founder-img {
        width: 100%;
    }
    .founder-table table th,
    .founder-table table td,
    .founder-table table td p {
        font-size: calc(14 * var(--width));
    }
    .founder-bottom-img {
        width: calc(21 * var(--width));
    }
    .founder-bottom {
        padding: calc(24 * var(--width));
    }
    .founder-bottom p {
        font-size: calc(15 * var(--width));
    }
}

.form {
    width: 100%;
    padding: calc(80 * var(--width)) 0;
    background: var(--white04-color);
}
.form-contents {
    max-width: calc(980 * var(--width));
    width: 90%;
    margin: 0 auto;
}
.form-description {
    font-size: calc(16 * var(--width));
    color: var(--text-color);
    margin-bottom: calc(64 * var(--width));
    line-height: 2;
    text-align: center;
}
.form-article {
    width: 100%;
    background: var(--white-color);
    padding: calc(80 * var(--width));
}
.form-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: calc(30 * var(--width));
    margin-bottom: calc(30 * var(--width));
    border-bottom: 1px solid var(--gray02-color);
    gap: calc(40 * var(--width));
}
.form-checkbox-row {
    border-bottom: none;
    padding-top: calc(34 * var(--width));
    padding-bottom: calc(64 * var(--width));
    margin-bottom: 0;
    margin-top: 0;
}
.form-submit-row {
    border-bottom: none;
    padding: 0;
    margin-bottom: 0;
    margin-top: 0;
}
.form-label {
    width: calc(200 * var(--width));
    font-size: calc(16 * var(--width));
    color: var(--text-color);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: calc(8 * var(--width));
    flex-shrink: 0;
}
.form-required {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: calc(14 * var(--width));
    padding: 0 calc(4 * var(--width));
    font-weight: 400;
    line-height: 1.5;
    border-radius: calc(2 * var(--width));
}
.form-input-wrapper {
    flex: 1;
    min-width: 0;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: calc(4 * var(--width)) calc(16 * var(--width));
    font-size: calc(16 * var(--width));
    color: var(--text-color);
    border: 1px solid var(--gray02-color);
    background: var(--white-color);
    transition: border-color 0.3s;
    border-radius: calc(4 * var(--width));
    line-height: 2;
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray04-color);
}
.form-textarea {
    min-height: calc(200 * var(--width));
    resize: vertical;
}
.wpcf7-radio {
    display: flex;
    flex-direction: column;
}
.wpcf7-list-item {
    margin: 0;
    display: flex;
}
.form-radio .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: calc(8 * var(--width));
    font-size: calc(16 * var(--width));
    color: var(--text-color);
    cursor: pointer;
}
.form-radio .wpcf7-list-item input[type="radio"] {
    width: calc(20 * var(--width));
    height: calc(20 * var(--width));
    cursor: pointer;
}
.form-radio .wpcf7-list-item {
    display: flex;
    align-items: center;
    margin-bottom: calc(8 * var(--width));
}
.form-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(8 * var(--width));
    font-size: calc(16 * var(--width));
    color: var(--text-color);
    cursor: pointer;
}
.form-checkbox-label a {
    color: var(--accent-color);
    text-decoration: underline;
}
.form-checkbox {
    width: calc(20 * var(--width));
    height: calc(20 * var(--width));
    cursor: pointer;
}
.form-submit-btn {
    width: calc(216 * var(--width));
    padding: calc(16 * var(--width)) calc(24 * var(--width));
    background: var(--accent-color);
    color: var(--white-color);
    font-size: calc(16 * var(--width));
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: 0.1em;
    margin: 0 auto;
    display: block;
}
.form-submit-btn:hover {
    background: var(--red-color);
}
@media screen and (max-width: 780px) {
    .form {
        padding: calc(40 * var(--width)) 0;
    }
    .form-contents {
        width: 100%;
        padding: 0 calc(16 * var(--width));
    }
    .form-description {
        font-size: calc(15 * var(--width));
        margin-bottom: calc(40 * var(--width));
    }
    .form-article {
        padding: calc(32 * var(--width)) calc(16 * var(--width));
    }
    .form-row {
        flex-direction: column;
        gap: calc(4 * var(--width));
        margin-bottom: calc(30 * var(--width));
        padding-bottom: calc(30 * var(--width));
    }
    .form-checkbox-row {
        padding-top: calc(10 * var(--width));
        padding-bottom: calc(10 * var(--width));
    }
    .form-submit-row {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .form-label {
        width: 100%;
        font-size: calc(15 * var(--width));
        line-height: 2;
    }
    .form-required {
        font-size: calc(13 * var(--width));
        padding: 0 calc(4 * var(--width));
    }
    .form-input-wrapper {
        width: 100%;
    }
    .form-input,
    .form-textarea {
        font-size: calc(16 * var(--width));
        padding: calc(4 * var(--width)) calc(16 * var(--width));
    }
    .form-textarea {
        min-height: calc(200 * var(--width));
    }
    .form-radio-label,
    .form-checkbox-label {
        font-size: calc(15 * var(--width));
    }
    .form-submit-row {
        margin-top: calc(40 * var(--width));
    }
    .form-submit-btn {
        padding: calc(16 * var(--width)) calc(20 * var(--width));
        width: calc(215 * var(--width));
    }
}

.privacy {
    padding: calc(104 * var(--width)) 0;
}
.privacy-contents {
    max-width: calc(980 * var(--width));
    width: 90%;
    margin: 0 auto;
}
.privacy-description {
    font-size: calc(16 * var(--width));
    color: var(--text-color);
    margin-bottom: calc(40 * var(--width));
    line-height: 2;
}
.privacy-article {
    width: 100%;
}
.privacy-article-title {
    font-size: calc(28 * var(--width));
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: calc(16 * var(--width));
    padding-bottom: calc(16 * var(--width));
    border-bottom: 2px solid var(--gray02-color);
    z-index: 1;
    position: relative;
}
.privacy-article-title::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    display: block;
    width: calc(104 * var(--width));
    height: 2px;
    background: var(--red-color);
}
.privacy-article-description {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--text-color);
    line-height: 2;
    margin-bottom: calc(40 * var(--width));
}
.privacy-article-description span {
    text-indent: -1em;
    padding-left: 1em;
    display: block;
}
.privacy-article-description-link {
    font-size: calc(16 * var(--width));
    font-weight: 400;
    color: var(--text-color);
    line-height: 2;
    text-decoration: underline;
}
@media screen and (max-width: 780px) {
    .privacy {
        padding: calc(40 * var(--width)) 0;
    }
    .privacy-contents {
        width: 100%;
        padding: 0 calc(16 * var(--width));
    }
    .privacy-description {
        font-size: calc(15 * var(--width));
        margin-bottom: calc(40 * var(--width));
    }
    .privacy-article-description {
        font-size: calc(15 * var(--width));
        margin-bottom: calc(40 * var(--width));
    }
    .privacy-article-title {
        font-size: calc(24 * var(--width));
    }
    .privacy-article-title::before {
        width: calc(104 * var(--width));
    }
    .privacy-article-description-link {
        font-size: calc(15 * var(--width));
    }
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    z-index: 1000;
    transition: opacity 1.6s ease, visibility 1.6s ease;
    opacity: 1;
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loading.active {
    opacity: 0;
    visibility: hidden;
}
.loading-contents {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loading-contents-title {
    font-size: calc(224 * var(--width));
    font-weight: 400;
    color: var(--green02-color);
    line-height: 1;
    margin-bottom: calc(36 * var(--width));
    font-family: "Noto Serif JP", serif;
    text-align: center;
}
.loading-contents-description {
    font-size: calc(32 * var(--width));
    font-weight: 400;
    color: var(--red02-color);
    line-height: 1;
    font-family: "Noto Serif JP", serif;
    text-align: center;
}
@media screen and (max-width: 780px) {
    .loading-contents-title {
        font-size: calc(100 * var(--width));
        margin-bottom: calc(24 * var(--width));
    }
    .loading-contents-description {
        font-size: calc(20 * var(--width));
    }
}