.h-container {
    margin-right: auto;
}

@media screen and (min-width: 1600px) {
    .sec-about-img {
        border-radius: 32px;
    }
    .sec-control-img {
        border-radius: 32px;
    }
}

.wpcf7 form.sent .wpcf7-response-output {
    display: none;
}

.cf7-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.cf7-modal-content {
    background-color: #fff;
    padding: min(5vw, 80px);
    border-radius: 8px;
    width: 80%;
    max-width: 1024px;
    min-height: 563px;
    font-size: 18px;
    position: relative;
}

.cf7-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.cf7-close:hover {
    color: #000;
}

.cf7-modal-content p {
    margin-bottom: 30px;
    font-weight: 500;
    padding-left: 20px;
}

.cf7-modal-content .cf7-modal-title {
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    position: relative;
    margin-bottom: 80px;
    font-size: 30px;
    padding-bottom: 10px;
}

.cf7-modal-title::before {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    margin: auto;
    width: 440px;
    height: 1px;
    background-color: #000;
}

.cf7-modal-content a {
    color: #8ABCF9;
    font-weight: 500;
    padding-left: 20px;
}

@media screen and (max-width: 768px) {
    .cf7-close {
        font-size: 20rem;
        z-index: 100;
    }
    .cf7-modal-content {
        min-height: initial;
    }
    .cf7-modal-content .cf7-modal-title,
    .cf7-modal-content p,
    .cf7-modal-content a {
        padding-left: 0;
        font-size: 16rem;
        margin-bottom: 30px;
    }
    .cf7-modal-title::before {
        width: 215rem;
    }
}

.sec-robot-list .more-btn {
    text-align: center;
    margin-top: 30px;
}

.sec-robot-list .more-btn a {
	padding: 20px 70px;
}

@media screen and (max-width: 768px) {
    .header-sp-menu-head-logo img {
        width: initial;
        height: 48rem;
    }
    .header-sp-menu {
        padding: 16rem;
    }
    .header-sp-menu-head-btn button,
    .header-sp-menu-head-btn button svg {
        width: 32rem;
    }
}

.robot-feature__elem-img img {
    -o-object-fit: contain;
    object-fit: contain;
}

.sec-fv-slide__elem .container {
	z-index: 10;
}

.sec-area {
	margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
	.sec-area {
		margin-bottom: 40px;
	}
}

.about-company__elem-val a {
	font-size: 16px;
}

@media screen and (max-width: 1025px) {
    .about-company__elem-val a {
        font-size: 16rem;
    }
}

@media screen and (max-width: 768px) {
	.about-company__elem-val._map {
		flex-direction: column;
	}
	.about-company__elem-val-map {
		width: 100%;
		margin-top: 20rem;
	}
	.about-company__elem-val a {
		font-size: 16rem;
	}
}

.sec-news__elem-img img,
.blog-list__elem-img img,
.blog-single-img img {
	object-fit: contain;
}

.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .wpcf7-checkbox {
        margin-top: 20px;
    }
}

.wpcf7-checkbox .wpcf7-list-item {
    width: fit-content;
}

.wpcf7-checkbox .wpcf7-list-item label {
    display: flex;
    align-items: center;
}

.wpcf7-checkbox .wpcf7-list-item-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}

.contact-form__elem-inp .wpcf7-checkbox input {
    width: 15px;
    height: 15px;
}

.contact-form-submit input {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    transition: all 0.4s ease-in-out;
    border-radius: 100px;
    position: relative;
    color: #FFF;
    background: linear-gradient(93.58deg, #3D87FF 0%, #0043B1 100%);
    width: 416px;
    margin: auto;
    border: unset;
    outline: unset;
    cursor: pointer;
}

.contact-form-submit input::after {
    content: "";
    position: absolute;
    width: 99%;
    height: 92%;
    background: var(--g-color-white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease-in-out;
    border-radius: 100px;
    z-index: 1;
    opacity: 0;
}

/* デフォルトのチェックボックスを完全リセット */
input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;      /* チェックボックスの大きさを統一 */
    height: 20px;
    border: 2px solid #2764C8;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    padding: 8px !important
}

/* ホバー時の見た目(任意) */
input[type="checkbox"]:hover {
    border-color: #1d4fa3;
}

/* チェックされた後 */
input[type="checkbox"]:checked {
    background: #2764C8;
    border-color: #2764C8;
}

/* チェックマーク */
input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}


.single-download-btn.sec-contact-btns {
    margin-bottom: 80px;
}

.single-download-btn .sec-contact-btn a svg {
    width: 16px;
}

.single-download-btn .sec-contact-btn a:hover svg path {
    stroke: unset;
    fill: var(--g-color-orange);
}

.single-download-btn .sec-contact-btn a svg rect {
    transition: all 0.5s;
}

.single-download-btn .sec-contact-btn a:hover svg rect {
    fill: var(--g-color-orange);
    transition: all 0.5s;
}

.robot-single-works {
    margin-bottom: 80px!important;
}

@media screen and (max-width: 768px) {
    .single-download-btn.sec-contact-btns {
        margin-bottom: 40px;
    }
    .single-download-btn.sec-contact-btns .sec-contact-btn {
        width: 90%;
    }
    .robot-single-works {
        margin-bottom: 40px!important;
    }
}


.robot-maker-txt-white {
    width: 330px!important;
    transform: translate(-40%, -60%)!important;
}

@media screen and (max-width: 1300px) {
    .robot-maker-txt-white {
        width: 330rem!important;
    }
}

.robot-maker-txt-blue {
    width: 198px!important;
}

@media screen and (max-width: 1300px) {
    .robot-maker-txt-blue {
        width: 198rem!important;
    }
}

@media screen and (max-width: 768px) {
    .robot-maker-h2 {
        font-size: 32rem!important;
    }
    .robot-maker-txt-blue {
        right: 27%!important;
        top: -70%!important;
    }
    .robot-maker-txt-white {
        transform: translate(-30%, -60%) !important;
    }
}

.sec-robots .more-btn {
	margin-top: 50px;
	text-align: center;
}

@media screen and (max-width: 768px) {
    .sec-customers-main {
        height: initial;
    }
}