@charset "UTF-8";
@import url(reset.css);
@font-face {
    font-family: "news-gothic";
    src: url("news-gothic-mt.ttf") format('truetype');
}
:root {
    --main-blue: #052A6B;
    --main-white: #FFFFFF;
    --border-color: #052A6B;
    --bg-gray: #D9E1F2;
}
* html body {
    background: url(null) fixed;
    width: 100%;
}
html, body {
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    padding: 0;
    color: #2b2b2b;
    background-color: var(--main-white);
    font-family: "Noto Sans JP", sans-serif;
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
html {
    overflow-x: hidden;
}
a {
    color: #1c4e93;
    text-decoration: none;
}
a:hover {
    color: #1c4e93;
    text-decoration: underline;
}
.fade-in-item {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(10px);
    transition:
        opacity 1.0s ease-out, filter 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, filter, transform;
}
.fade-in-item.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
.noise-gradient-bg {
    background-color: #0D438E;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"), linear-gradient(to bottom, #C7D0E8 20%, #0D438E 80%);
    background-blend-mode: soft-light;
    background-size: 200px 200px, auto;
    background-repeat: repeat;
}
.clear_pc {
    display: none;
}
@media (max-width: 768px) {
    .clear_pc {
        display: block;
    }
    .clear {
        display: none;
    }
}

.mainvisual {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 0 100px;
    width: 100%;
    background: url(../img/2026/controlpanel_mainvisal_01.webp) center top / cover no-repeat;
    overflow: hidden;
}
h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0 20px;
    color: var(--main-blue);
    font-size: 78px;
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
}
h2 span {
    font-size: 22px;
    font-weight: 500;
}
h3 {
    color: var(--main-blue);
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}
h3 span {
    font-size: 68px;
    font-weight: 900;
}
.mainvisual p {
    font-size: 14px;
    color: #536686;
    text-align: center;
    padding: 0 10px;
}
.equipment-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 50px;
    width: 100%;
    max-width: 1000px;
    height: 600px;
}
.eq-item {
    position: absolute;
    opacity: 0;
    filter: blur(20px) brightness(1.2);
    transform: scale(0.8) translateY(40px);
    transition:
        opacity 1.5s ease-out, filter 1.2s ease-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}
.eq-item.is-active {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1) translateY(0);
}
.part-1 {
    bottom: 15%;
    left: 0%;
    width: 47%;
    z-index: 1;
}
.part-2 {
    bottom: 23%;
    right: 0%;
    width: 52%;
    z-index: 1;
}
.part-3 {
    bottom: 0%;
    left: 23%;
    width: 40%;
    z-index: 4;
}
.part-4 {
    top: 8%;
    left: 39%;
    width: 25%;
    z-index: 3;
}
.part-5 {
    bottom: 5%;
    left: 50%;
    width: 25%;
    z-index: 5;
}
.mainvisual .trouble_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    box-sizing: border-box;
}
.trouble_box .trouble_box_ttl_01 {
    color: var(--main-white);
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}
.trouble_box .trouble_box_ttl_02 {
    color: var(--main-white);
    font-size: 68px;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
}
.trouble-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px auto 40px;
    width: 100%;
    max-width: 1000px;
}
.trouble-list li {
    position: relative;
    width: fit-content;
    max-width: 80%;
    padding: 30px;
    background: linear-gradient(to bottom, #ffffff 0%, #e6efff 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #003399;
    font-size: 24px;
    font-weight: bold;
}
.trouble-list li:nth-child(odd) {
    align-self: flex-start;
}
.trouble-list li:nth-child(odd)::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #e6efff transparent transparent transparent;
}
.trouble-list li:nth-child(even) {
    align-self: flex-end;
}
.trouble-list li:nth-child(even)::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #e6efff transparent transparent transparent;
}
.scroll-indicator {
    position: absolute;
    top: 85%;
    left: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    z-index: 100;
}
.scroll-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--main-white);
    writing-mode: vertical-rl;
    margin-bottom: 10px;
    font-family: "news-gothic";
}
.scroll-line {
    position: relative;
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}
.scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-white);
    animation: scrollLineMove 2s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
@keyframes scrollLineMove {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    45% {
        transform: scaleY(1);
        transform-origin: top;
    }
    55% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.cause-wrapper {
    padding: 100px 0 120px;
    background: var(--main-white) url(../img/2026/bg_wrapper.svg) 0 0 repeat;
}
.cause-wrapper h3 {
    margin-bottom: 60px;
    padding: 0 20px;
}
.point-card {
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    margin: 160px auto 0;
    padding: 80px 80px 50px;
    background-color: transparent;
    width: 80%;
    max-width: 920px;
}
.point-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
    height: 2px;
    background-color: var(--main-white);
}
.point-card::after {
    display: none;
}
.point-svg-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -100px;
    z-index: 10;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}
.point-svg {
    width: 100%;
    height: auto;
    display: block;
}
.point-content-box {
    text-align: center;
}
.point-title {
    margin-bottom: 30px;
    color: var(--main-blue);
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
}
.point-text {
    font-size: 18px;
    line-height: 2.2;
}

.spec-wrapper {
    position: relative;
    padding: 100px 0 120px;
}
.spec-wrapper h3 {
    color: var(--main-white);
    padding: 0 20px;
}
.spec-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.spec-card {
    flex: 1;
    background-color: var(--main-white);
    border-radius: 10px;
    padding: 50px 30px;
    text-align: center;
    color: var(--main-blue);
    box-shadow: 6px 6px 0px rgba(5, 42, 107, 1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.spec-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spec-icon img {
    width: 100%;
    height: auto;
}
.spec-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-blue);
    margin-bottom: 30px;
}
.spec-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
    color: var(--main-blue);
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 100px;
}
.spec-desc {
    font-size: 18px;
    line-height: 1.8;
    text-align: left;
}
.spec-list li {
    font-size: 16px;
    text-align: left;
    margin-top: 15px;
}
.spec-list li span {
    display: block;
    width: 90px;
    padding: 2px 0 3px;
    margin-bottom: 8px;
    text-align: center;
    border: 1px solid var(--main-blue);
    border-radius: 3px;
}
.spec-caption {
    width: 80%;
    max-width: 800px;
    margin: auto;
    color: var(--main-white);
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

.quality-wrapper {
    padding: 100px 0 70px;
    background: var(--main-white) url(../img/2026/bg_wrapper.svg) 0 0 repeat;
}
.quality-wrapper h3 {
    margin-bottom: 60px;
    padding: 0 20px;
}
.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--main-blue);
    margin-bottom: 20px;
}
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    padding: 0 20px;
}
.quality-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.quality-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
}
.quality-text-box {
    width: 85%;
    background-color: #0E438E;
    color: #ffffff;
    padding: 90px 25% 90px 50px;
    box-sizing: border-box;
    z-index: 1;
}
.quality-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
}
.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.quality-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}
.quality-desc {
    font-size: 18px;
    line-height: 2;
    max-width: 100%;
}

.works-wrapper {
    position: relative;
    padding: 100px 0 120px;
}
.works-wrapper h3 {
    margin-bottom: 60px;
    color: var(--main-white);
    padding: 0 20px;
}
.works-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}
.carousel {
    width: 100%;
    height: 100%;
    display: flex;
    max-width: 1200px;
    max-height: 600px;
    overflow: hidden;
    position: relative;
}
.carousel-item {
    visibility: visible;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    background-color: #fff;
    flex-shrink: 0;
    position: absolute;
    z-index: 0;
    transition: 0.6s all linear;
}
.carousel-item__info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
    left: 0;
    margin: auto;
    padding: 0 40px 0 60px;
    width: 45%;
}
.carousel-item__image {
    width: 55%;
    height: 100%;
    order: 2;
    align-self: flex-end;
    flex-basis: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    transform: translateX(100%);
    transition: 0.6s all ease-in-out;
}
.carousel-item__title {
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--main-blue);
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
}
.carousel-item__description {
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 1.6;
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
}
.carousel-item__data {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    gap: 30px 0;
    font-size: 18px;
    color: var(--main-blue);
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
}
.carousel-item__data dt {
    width: 25%;
}
.carousel-item__data dd {
    width: 75%;
}
.carousel-item--1 .carousel-item__image {
    background-image: url('../img/2026/controlpanel_img_03.webp');
}
.carousel-item--2 .carousel-item__image {
    background-image: url('../img/2026/controlpanel_img_04.webp');
}
.carousel-item--3 .carousel-item__image {
    background-image: url('../img/2026/controlpanel_img_05.webp');
}
.carousel-item__btn {
    color: #2C2C2C;
    letter-spacing: 3px;
    font-size: 11px;
    text-transform: uppercase;
    margin: 0;
    width: 35%;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
}
.carousel__nav {
    position: absolute;
    right: 0;
    z-index: 2;
    background-color: #fff;
    bottom: 0;
}
.carousel__icon {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    fill: #5d5d5d;
}
.carousel__arrow {
    cursor: pointer;
    display: inline-block;
    padding: 11px 15px;
    position: relative;
}
.carousel__arrow:nth-child(1):after {
    content: '';
    right: -3px;
    position: absolute;
    width: 1px;
    background-color: #b0b0b0;
    height: 14px;
    top: 50%;
    margin-top: -7px;
}
.active {
    z-index: 1;
    display: flex;
    visibility: visible;
}
.active .carousel-item__subtitle, .active .carousel-item__title, .active .carousel-item__description, .active .carousel-item__data {
    transform: translateY(0);
    opacity: 1;
    transition: 0.6s all ease-in-out;
    visibility: visible;
}
.active .carousel-item__image {
    transition: 0.6s all ease-in-out;
    transform: translateX(0);
}

.flow-wrapper {
    padding: 100px 0 120px;
    background: var(--main-white) url(../img/2026/bg_wrapper.svg) 0 0 repeat;
}
.flow-wrapper h3 {
    margin-bottom: 60px;
    padding: 0 20px;
}
.flow-section {
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.flow-container {
    position: relative;
    padding-left: 45px;
}
.flow-container::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 45px;
    bottom: 45px;
    width: 2px;
    background-color: var(--main-blue);
    z-index: 1;
}
.flow-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}
.flow-item:last-child {
    margin-bottom: 0;
}
.flow-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background-color: var(--main-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 60px;
    margin-left: -45px;
}
.flow-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.flow-content {
    flex: 1;
    padding-top: 25px;
}
.flow-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-blue);
    margin-bottom: 15px;
}
.flow-text {
    font-size: 18px;
    line-height: 1.8;
}

.faq-wrapper {
    position: relative;
    padding: 100px 0 120px;
}
.faq-wrapper h3 {
    margin-bottom: 60px;
    color: var(--main-white);
    padding: 0 20px;
}
.faq-section {
    color: var(--main-white)
}
.faq-container {
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.faq-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.faq-label-q {
    font-size: 60px;
    font-weight: 900;
    font-style: italic;
    margin-right: 30px;
    line-height: 1;
    font-family: "news-gothic";
}
.faq-question-text {
    font-size: 28px;
    font-weight: 700;
    margin: 8px 0 0 0;
    line-height: 1.4;
}
.faq-answer {
    display: flex;
    align-items: flex-start;
    padding-left: 90px;
}
.faq-label-a {
    font-size: 40px;
    font-weight: 900;
    font-style: italic;
    margin-right: 20px;
    line-height: 1;
    font-family: "news-gothic";
}
.faq-answer-text {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 5px;
}

.contact-wrapper {
    padding: 100px 0 120px;
    background: var(--main-white) url(../img/2026/bg_wrapper.svg) 0 0 repeat;
}
.contact-wrapper h3 {
    margin-bottom: 60px;
    padding: 0 20px;
}
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}
.contact-card {
    background-color: var(--main-white);
    border: 1px solid #EDEDED;
    width: 90%;
    max-width: 1000px;
    padding: 40px;
    margin: auto;
    border-radius: 20px;
    text-align: center;
    box-sizing: border-box;
}
.contact-card__title {
    font-size: 24px;
    font-weight: 500;
    color: var(--main-blue);
    margin-bottom: 40px;
}
.contact-group {
    margin-bottom: 40px;
}
.contact-group:last-child {
    margin-bottom: 0;
}
.contact-number {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px;
}
.contact-label {
    font-size: 48px;
    font-weight: 700;
    color: var(--main-blue);
}
.contact-val {
    font-size: 48px;
    font-weight: 700;
    color: var(--main-blue);
    line-height: 1;
}
.contact-subtext {
    font-size: 16px;
}
.mail-section {
    padding: 100px 20px 0;
    box-sizing: border-box;
}
.mail-card {
    background-color: var(--main-white);
    border: 1px solid #EDEDED;
    width: 100%;
    max-width: 1000px;
    padding: 50px 50px 100px;
    margin: auto;
    border-radius: 20px;
    box-sizing: border-box;
}
.mail-card__title {
    font-size: 24px;
    color: var(--main-blue);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}
.form-row {
    display: flex;
    padding: 30px 0;
    border-top: 1px solid #E5E5E5;
    align-items: center;
}
.form-label-area {
    flex: 0 0 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 50px;
}
.form-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
}
.form-badge {
    background: #333;
    color: #fff;
    font-size: 11px;
    padding: 5px 13px;
    border-radius: 20px;
    line-height: 1;
    vertical-align: middle;
}
.form-input-area {
    flex: 1;
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%;
    border: 1px solid #D2D2D2;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 16px;
    box-sizing: border-box;
}
textarea {
    height: 200px;
    resize: vertical;
}
.file-upload-wrapper {
    margin-top: 5px;
}
.file-input-hidden {
    display: none;
}
.file-upload-btn {
    display: inline-block;
    background-color: #777777;
    color: var(--main-white);
    padding: 12px 45px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.file-upload-btn:hover {
    background-color: #555555;
}
.privacy-box {
    border: 1px solid #D2D2D2;
    padding: 50px 60px;
    background-color: var(--main-white);
    margin-top: 40px;
}
.privacy-box__title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 35px;
}
.privacy-box__content {
    height: 250px;
    overflow-y: scroll;
    font-size: 14px;
    line-height: 2.2;
    padding-right: 25px;
}
.privacy-box__content h5 {
    font-size: 15px;
    margin: 30px 0 10px;
    font-weight: bold;
}
.privacy-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dotted #ccc;
    font-size: 13px;
}
.privacy-box__content::-webkit-scrollbar {
    width: 6px;
}
.privacy-box__content::-webkit-scrollbar-track {
    background: #f8f8f8;
}
.privacy-box__content::-webkit-scrollbar-thumb {
    background: var(--main-blue);
    border-radius: 10px;
}
.agree-container {
    text-align: center;
    margin: 50px 0;
}
.agree-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}
.agree-label p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
}
.agree-label .wpcf7-form-control-wrap {
    display: inline-flex;
    width: auto !important;
    margin-right: 12px;
}
.agree-checkbox, .agree-container input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
    margin: 0;
    cursor: pointer;
}
.agree-text {
    font-size: 15px;
    white-space: nowrap;
    line-height: 1;
    color: #333;
}
.agree-label {
    cursor: pointer;
    display: block;
    width: 100%;
}
.agree-label .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    white-space: nowrap;
}
.submit-container {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 60px;
    text-align: center;
}
.submit-container p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
}
.form-submit-btn {
    background-color: var(--main-blue);
    color: var(--main-white);
    border: none;
    padding: 22px 120px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(36, 58, 120, 0.35);
    appearance: none;
    -webkit-appearance: none;
    white-space: nowrap;
}
.form-submit-btn:hover {
    background-color: #1a2c5e;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(36, 58, 120, 0.45);
}
.wpcf7-spinner {
    display: none !important;
}
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.wpcf7-not-valid-tip {
    font-size: 13px;
    margin-top: 5px;
    color: #f00;
}
.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px !important;
    border-radius: 8px !important;
    font-size: 15px;
    line-height: 1.4;
}
.file-input-hidden {
    display: none !important;
}
.agree-label .wpcf7-list-item {
    margin: 0;
    display: inline-block;
}

footer {
    padding: 80px 0 40px;
    clear: both;
    color: var(--main-white);
    background-color: #404857;
}
footer .inner {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    margin: auto;
    width: 1000px;
    max-width: 90%;
}
footer .data {
    width: 400px;
    font-size: 15px;
    line-height: 1.4em;
}
footer .data h5 {
    margin-bottom: 50px;
}
footer .link {
    width: 300px;
}
footer .link ul {
    float: left;
    position: relative;
    width: calc((100% - 30px) / 2);
}
footer .link li {
    margin-bottom: 30px;
}
footer .link a {
    color: var(--main-white);
    font-size: 14px;
    text-decoration: none;
}
footer .link a:hover {
    text-decoration: underline;
}
footer .link ul:not(:first-child) {
    margin-left: 30px;
}
footer address {
    padding-top: 60px;
    width: 100%;
    font-size: 14px;
    text-align: center;
}
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    footer .inner {
        flex-direction: column;
        padding: 0 15px;
    }
    footer .data {
        width: 100%;
        text-align: center;
    }
    footer .data h5 {
        margin-bottom: 30px;
    }
    footer .link {
        display: none;
    }
    footer address {
        width: 100%;
    }
}

.contact_fix_button {
    position: fixed;
    top: 10%;
    right: 0;
    z-index: 999;
}
.contact_fix_button a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    font-size: 18px;
    font-weight: 700;
    width: 66px;
    height: 160px;
    border-top: 1px solid #9AA3B2;
    border-bottom: 1px solid #9AA3B2;
    border-left: 1px solid #9AA3B2;
    border-radius: 5px 0 0 5px;
    background: #FDFEFF url(../img/2026/contact_icon.svg) center 20px no-repeat;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.contact_fix_button a:hover {
    text-decoration: none;
    opacity: .7;
}

#pagetop {
    position: fixed;
    right: 5px;
    bottom: 100px;
    z-index: 1000;
}
#pagetop a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .mainvisual {
        padding: 40px 0 60px;
    }
    h2 {
        font-size: 32px;
        margin: 50px 0 20px;
    }
    h2 span {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
    }
    .mainvisual p {
        font-size: 12px;
    }
    h3 {
        font-size: 24px;
    }
    h3 span {
        font-size: 34px;
    }
    .equipment-container {
        height: 280px;
        margin-bottom: 0;
    }
    .part-1 {
        bottom: 5%;
        left: -10%;
        width: 70%;
    }
    .part-2 {
        bottom: 15%;
        right: -10%;
        width: 75%;
    }
    .part-3 {
        bottom: 0%;
        left: 15%;
        width: 60%;
    }
    .part-4 {
        top: 0;
        left: 30%;
        width: 45%;
    }
    .part-5 {
        bottom: 3%;
        left: 45%;
        width: 40%;
        z-index: 4;
    }
    .eq-item {
        transform: scale(0.6) translateY(20px);
    }
    .eq-item.is-active {
        transform: scale(0.6) translateY(0);
    }
    .mainvisual .trouble_box {
        gap: 10px;
    }
    .trouble_box .trouble_box_ttl_01 {
        font-size: 20px;
    }
    .trouble_box .trouble_box_ttl_02 {
        font-size: 24px;
    }
    .trouble-list {
        width: 100%;
    }
    .trouble-list li {
        font-size: 14px;
        line-height: 1.4;
        padding: 20px;
        max-width: 100%;
        align-self: center !important;
        width: 100%;
        box-sizing: border-box;
    }
    .scroll-indicator {
        display: none;
    }
    
    .cause-wrapper {
        padding: 60px 0 80px;
    }
    .cause-wrapper h3 {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    .point-card {
        width: 90%;
        padding: 60px 30px 30px;
        margin-top: 100px;
        box-sizing: border-box;
    }
    .point-card::before {
        content: "";
        position: absolute;
        top: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 2px;
        background-color: var(--main-white);
    }
    .point-svg-wrapper {
        width: 100px;
        height: 100px;
        top: -60px;
    }
    .point-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .point-text {
        font-size: 16px;
        line-height: 1.8;
        text-align: left;
    }
    
    .spec-wrapper {
        padding: 60px 0 80px;
    }
    .spec-container {
        flex-direction: column;
        gap: 30px;
        margin: 40px auto 0;
    }
    .spec-card {
        padding: 40px 30px;
    }
    .spec-title {
        font-size: 26px;
    }
    .spec-data {
        font-size: 20px;
        min-height: auto;
    }
    
    .quality-wrapper {
        padding: 60px 0 80px;
    }
    .quality-wrapper h3 {
        margin-bottom: 40px;
    }
    .section-intro {
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }
    .quality-item {
        flex-direction: column-reverse;
        margin-bottom: 0px;
    }
    .quality-image {
        position: relative;
        width: 90%;
        transform: none;
        bottom: -40px;
        right: 0;
        border-radius: 10px;
    }
    .quality-text-box {
        width: 100%;
        padding: 60px 30px 30px;
        border-radius: 10px;
    }
    .quality-title {
        font-size: 20px;
        text-align: center;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .quality-desc {
        font-size: 14px;
    }
    .works-wrapper {
        padding: 60px 0 80px;
    }
    .works-wrapper h3 {
        margin-bottom: 40px;
    }
    .works-container {
        height: 500px;
        min-height: auto;
    }
    .carousel {
        max-height: none;
        height: 100%;
        margin: 0 5%;
    }
    .carousel-item {
        flex-direction: column;
        justify-content: flex-start;
    }
    .carousel-item__image {
        width: 100%;
        height: 50%;
        order: 1;
        flex-basis: auto;
        transform: translateY(-20px);
        opacity: 0;
    }
    .carousel-item__info {
        width: 100%;
        height: 50%;
        order: 2;
        padding: 30px 20px 80px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .carousel-item__title {
        font-size: 20px;
        margin-bottom: 20px;
        transform: translateY(20px);
    }
    .carousel-item__data {
        font-size: 14px;
        gap: 10px 0;
    }
    .carousel-item__data dt {
        width: 30%;
    }
    .carousel-item__data dd {
        width: 70%;
    }
    .active .carousel-item__image {
        transform: translateY(0);
        opacity: 1;
    }
    .active .carousel-item__title, .active .carousel-item__description, .active .carousel-item__data {
        transform: translateY(0);
        opacity: 1;
    }
/*
    .carousel__nav {
        right: auto;
        left: 0;
    }
*/
    
    .flow-wrapper {
        padding: 60px 0 60px;
    }
    .flow-wrapper h3 {
        margin-bottom: 40px;
    }
    .flow-section {
        max-width: 900px;
        margin: auto;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .flow-container {
        padding-left: 30px;
    }
    .flow-container::before {
        left: 29px;
        top: 0px;
        bottom: 70px;
    }
    .flow-item {
        align-items: flex-start;
        margin-bottom: 0;
        padding-bottom: 20px;
    }
    .flow-icon {
        width: 60px;
        height: 60px;
        margin: 0 0 15px -30px;
    }
    .flow-icon img {
        width: 30px;
        height: 30px;
    }
    .flow-content {
        padding: 18px 0 0 30px;
    }
    .flow-title {
        font-size: 20px;
    }
    .flow-text {
        font-size: 14px;
    }
    
    .faq-wrapper {
        padding: 60px 0;
    }
    .faq-wrapper h3 {
        margin-bottom: 40px;
    }
    .faq-item {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .faq-label-q {
        font-size: 40px;
        margin-right: 15px;
    }
    .faq-question-text {
        font-size: 16px;
    }
    .faq-label-a {
        font-size: 30px;
        margin-right: 15px;
    }
    .faq-answer {
        padding-left: 0;
        margin-top: 10px;
    }
    .faq-answer-text {
        font-size: 14px;
    }
    
    .contact-wrapper {
        padding: 60px 0 80px;
    }
    .contact-wrapper h3 {
        margin-bottom: 40px;
    }
    .contact-card, .mail-card {
        padding: 40px 20px;
        width: 100%;
    }
    .contact-card__title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .contact-group {
        margin-bottom: 20px;
    }
    .contact-label {
        font-size: 20px;
    }
    .contact-val {
        font-size: 30px;
    }
    .contact-subtext {
        font-size: 13px;
    }
    .mail-section {
        padding: 40px 20px 0;
    }
    .mail-card__title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .form-row {
        align-items: flex-start;
        flex-flow: wrap;
        padding: 20px 0 30px
    }
    .form-label-area {
        flex: auto;
        width: 100%;
        margin-bottom: 20px;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .form-input-area {
        width: 100%;
    }
    .privacy-box {
        padding: 30px 20px;
    }
    .form-submit-btn {
        padding: 18px 60px;
        font-size: 16px;
        width: 100%;
    }
    #pagetop {
        position: fixed;
        right: 18px;
        bottom: 90px;
        z-index: 1000;
    }
    #pagetop img {
        width: 40px;
    }
    .contact_fix_button {
        top: 10px;
    }
    .contact_fix_button a {
        width: 50px;
        height: 120px;
        font-size: 14px;
        padding-top: 25px;
        background-size: 20px;
    }
}