:root{
    --blu-color : #0974E8;
    --fblu-color : #333D5A;
}

html{
    font-size: 62.5%;
}

@media screen and (max-width: 1023px){
    html{
        font-size: 56.5%;
    }
}

body{
    margin: 0;

    background-color: #fff;
}

span,
a{

    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: normal;

    transform: rotate(0.04deg);
    transition: .3s ease-in-out;
    color: var(--txtdef-color);
}

.section{
    display: flex;
    width: 100%;
    justify-content: center;
}

img{
    display: block;
    width: 100%;
    height: auto;
}

.section .maindiv .logotec{
    display: flex;
    position: relative;
    height: 96px;
    align-items: center;
}

.section .maindiv .logotec img{
    max-width: 158px;
}

.section .maindiv{
    display: flex;
    width: 95%;
    max-width: 1440px;
    justify-content: center;
    flex-direction: column;
    text-align: -webkit-center;
    padding-bottom: 80px;
}

.section .maindiv .title_t{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 48px;
    align-self: center;
    max-width: 1170px;
    width: 100%;
    margin-bottom: 48px;
    border-bottom: 2px solid #0974E8;
    transition: .3s ease-in-out;
}

.section .maindiv .title_t span{
    font-size: 30px;
    line-height: 130%; /* 39px */
}
.section .maindiv .title_t span .blu{
    color: var(--blu-color);
}

.section .maindiv .submain{
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
}

.section .maindiv .submain .formdiv{
    
}

.section .maindiv .submain .imgdiv{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.section .maindiv .submain .imgdiv .logostitle{

}
.section .maindiv .submain .imgdiv .logostitle span{
    font-size: 24px;
    line-height: 150%;  
}

.section .maindiv .submain .imgdiv .logosdiv{
    display: flex;
    width: 95%;
    max-width: 680px;
}
.section .maindiv .submain .imgdiv .logosdiv ul{
    padding: 0;
    display: grid;
    margin: auto;
    gap: 24px;
    grid-template-columns: repeat(6, 1fr);
    box-sizing: border-box;
}
.section .maindiv .submain .imgdiv .logosdiv ul li{
    padding: 0;
    list-style: none;
}

.section .maindiv .submain .imgdiv .mimgdiv{
    display: flex;
    width: 100%;
    justify-content: center;
}

.section .maindiv .submain .imgdiv .mimgdiv img{
    max-width: 460px;
    transition: .3s ease-in-out;
}

.section .maindiv .submain .imgdiv .grydiv{
    display: flex;
    padding: 24px 32px;
    gap: 24px;
    border-radius: 10px;
    background: #F3F3F4;
}
.section .maindiv .submain .imgdiv .grydiv .imgdiv{
    display: flex;
}   
.section .maindiv .submain .imgdiv .grydiv .imgdiv img{
    max-width: 210px;
}
.section .maindiv .submain .imgdiv .grydiv .txtdiv{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.section .maindiv .submain .imgdiv .grydiv .txtdiv .title{
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
.section .maindiv .submain .imgdiv .grydiv .txtdiv .title span{
    color: var(--fblu-color);
    font-size: 20px;
    line-height: 100%; 
}
.section .maindiv .submain .imgdiv .grydiv .txtdiv .contents{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 6px;
}
.section .maindiv .submain .imgdiv .grydiv .txtdiv .contents span{
    color: var(--fblu-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%; /* 21px */
}
.section .maindiv .submain .imgdiv .grydiv .miniimgdiv{
    display: none;
}
.section .maindiv .submain .imgdiv .grydiv .miniimgdiv img{
    max-width: 144px;
    transition: .3s ease-in-out;
}


/* form style */
.section .maindiv .submain .formdiv{
    width: 95%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(75deg, #1F9DFF 0%, #0974E8 100%);
    padding-bottom: 10px;
    height: max-content;
}
.section .maindiv .submain .formdiv .formtitle{
    padding: 16px 0px;
}
.section .maindiv .submain .formdiv .formtitle span{
    font-size: 22px;
    line-height: 150%; /* 33px */
    color: #fff;
}
.section .maindiv .submain .formdiv .formcontents{
    display: flex;
    width: 100%;
    justify-content: center;
}

.section .maindiv .submain .formdiv .formcontents .formmain{
    width: 95%;
    border-radius: 6px;
    background: #FFF;
}

.formmain .btndiv{
    display: flex;
    width: 95%;
    align-self: center;
    justify-content: center;
    margin-bottom: 30px;
}

.formmain .btndiv button{
    cursor: pointer;
    color: #000;
    display: flex;
    text-decoration: none;
    height: 6rem;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    border-radius: 3rem;
    background: #FFCA3A;
    box-shadow: 0rem 0.3rem 1rem 0rem rgba(0, 0, 0, 0.25);
    border: 0;
    max-width: 28rem;
    transition: .3s ease-in-out;
}
.formmain .btndiv button span{
    font-size: 2.6rem;
    line-height: 134%;
    font-weight: 700;
}
.formmain .btndiv button:hover{
    transform: translateY(0.3rem);
    box-shadow: none;
}

.section .maindiv .txtcp{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 48px;
}
.section .maindiv .txtcp span{
    color: #252729;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 134%;
}


/* hsform style */
/* common form styles  */
.hbspt-form{
    width: 100%;
    margin-bottom: 1.6rem;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.hbspt-form form{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 90%;
}
.hbspt-form form ul{
    list-style: none;
    margin: 0;
    margin-top: 0.8rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hbspt-form form ul label{
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.0225rem;
    position: relative;
    display: flex;
    color: #FD3F4A;
    font-family: 'Noto Sans JP', sans-serif !important;
}

.hbspt-form form ul .hs-form-radio label,
.hbspt-form form ul .hs-form-booleancheckbox label{
    color: #252729;
}
.hbspt-form form ul .hs-form-radio label span{
    font-size: 1.4rem;
    font-weight: 400;
    text-align: left;
}

.hbspt-form form a{
    text-decoration: none;
    color: #18A0FB;
    text-decoration: underline;
    font-size: 1.2rem;
    font-weight: 400;
}
.hbspt-form form span{
    font-size: 1.4rem;
    line-height: 120%;
    display: flex;
    font-family: 'Noto Sans JP', sans-serif !important;
}


.hbspt-form form #label-company-ea9e43ff-947c-4510-9211-3bb592544cc4 span::before,
.hbspt-form form #label-toiawase_form_busho__c-ea9e43ff-947c-4510-9211-3bb592544cc4 span::before,
.hbspt-form form #label-position-ea9e43ff-947c-4510-9211-3bb592544cc4 span::before,
.hbspt-form form #label-lastname-ea9e43ff-947c-4510-9211-3bb592544cc4 span::before,
.hbspt-form form #label-firstname-ea9e43ff-947c-4510-9211-3bb592544cc4 span::before,
.hbspt-form form #label-email-ea9e43ff-947c-4510-9211-3bb592544cc4 span::before,
.hbspt-form form #label-phone-ea9e43ff-947c-4510-9211-3bb592544cc4 span::before,
.hbspt-form form #label-e_or_b-ea9e43ff-947c-4510-9211-3bb592544cc4 span::before{
    height: 1.1rem;
    content: "必須";
    margin-right: 0.5rem;
    display: flex;
    padding: 0.3rem 0.5rem;
    justify-content: center;
    width: 2.2rem;
    align-items: center;
    border-radius: 0.2rem;
    border: 0.1rem solid #FD3F4A;
    color: #FD3F4A;
    font-weight: 400;
    line-height: 100%;
    font-size: 1.1rem;
    white-space: nowrap;
}
.hbspt-form form #label-contact_detail-ea9e43ff-947c-4510-9211-3bb592544cc4 span{
    visibility: inherit;
    font-size: 0;
    display: flex;
    align-items: center;
}
.hbspt-form form #label-contact_detail-ea9e43ff-947c-4510-9211-3bb592544cc4 span::before{
    height: 1.1rem;
    content: "任意";
    margin-right: 0.5rem;
    display: flex;
    padding: 0.3rem 0.5rem;
    justify-content: center;
    width: 2.2rem;
    align-items: center;
    border-radius: 0.2rem;
    border: 0.1rem solid #ACACAC;
    color: #ACACAC;
    font-weight: 400;
    line-height: 100%;
    font-size: 1.1rem;
    visibility: initial;
    white-space: nowrap;
}
.hbspt-form form #label-contact_detail-ea9e43ff-947c-4510-9211-3bb592544cc4 span::after{
    content: 'お問い合わせ詳細';
    visibility: visible;
    font-size: 1.4rem;  
    display: flex;
    line-height: 120%;
    font-family: 'Noto Sans JP', sans-serif !important;
}



.hs-custom-style>div input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]), 
.hs-custom-style fieldset input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]) {
    min-height: 4.2rem !important;
    color: #252729;
    line-height: 0 !important;

    width: 100%;
    margin-top: 0.8rem;
    font-family: 'Noto Sans JP', sans-serif !important;

    border-radius: 3px;
    border: 1px solid #E2E2E2;
    background: #F7F7F7;
}

.hbspt-form form select{
    min-height: 4.2rem !important;
    color: #252729;
    line-height: 0 !important;
    border-radius: 0.3rem;
    border: 0.1rem solid #E2E2E2;
    background: #F7F7F7;
    width: 100%;
    margin-top: 0.8rem;
    font-family: 'Noto Sans JP', sans-serif !important;
    padding: 0 1.5rem;
}

.hbspt-form form .hs-form-required{
    color: #FD3F4A;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.0225rem;
    display: none;
}
.hbspt-form form .hs-form-required::before{
    display: none;
}

.hbspt-form form .hs-form-field textarea {
    
    display: flex;
    height: 8rem;
    padding: 0.8rem 1.6rem;
    flex-direction: column;
    align-items: flex-start;

    margin-top: 0.8rem;
    font-family: 'Noto Sans JP', sans-serif !important;
    resize: none;

    border-radius: 3px;
    border: 1px solid #E2E2E2;
    background: #F7F7F7;
}

.hs_submit{
    display: none;
}

.hbspt-form form .form-columns-1 .input{
    margin-right: 0 !important;
    display: flex;
}

.hbspt-form form .form-columns-0 p{
    margin: 0;
    text-align: -webkit-center;
}
.hbspt-form form .form-columns-0 p a{
    text-decoration: underline !important;
}
.hbspt-form form .form-columns-0 p span{
    display: contents;
}

.hbspt-form form .form-columns-1:nth-child(n+12),
.hbspt-form form .hs_error_rollup{
    display: flex;
    align-self: center;
    justify-content: center;
}

.hbspt-form form .form-columns-1:nth-child(n+13):nth-child(-n+18){
    display: none;
} 

.hbspt-form form .form-columns-2{
    display: flex;
}

.hbspt-form form ul .hs-form-booleancheckbox label span{
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 100%; /* 16px */
}
.hbspt-form form div:nth-child(6){
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.hbspt-form form div:nth-child(6) p{
    display: contents;
}
.hbspt-form form div:nth-child(6) p a{
    background-color: transparent !important;
}
.hbspt-form form div:nth-child(6) p span{
    display: contents;
    background-color: transparent !important;
}

.hbspt-form form .hs_privacypolicy{
    display: flex;
    flex-direction: column;
    align-items: center;
}



@media screen and (max-width: 1023px){
    .section .maindiv .submain .imgdiv .logosdiv ul {
        gap: 10px;
    }
    .section .maindiv .submain .imgdiv .grydiv .txtdiv .title span {
        font-size: 15px;
        line-height: 130%; /* 19.5px */
    }
    .section .maindiv .submain .imgdiv .grydiv .txtdiv .contents span {
        font-size: 11px;
        line-height: 150%;
    }
}

@media screen and (max-width: 780px){
    .section .maindiv .submain {
        flex-direction: column;
        gap: 40px;
    }
    .section .maindiv .submain .formdiv {
        align-self: center;
        max-width: unset;
    }
    .section .maindiv .submain .imgdiv .grydiv{
        margin-top: 32px;
        padding-top: 32px;
        width: 80%;
        position: relative;
    }
    .section .maindiv .submain .imgdiv .grydiv .imgdiv{
        display: none;
    }
    .section .maindiv .submain .imgdiv {
        gap: 26px;
    }
    .section .maindiv .submain .imgdiv .grydiv .txtdiv .title span{
        font-size: 20px;
        line-height: 100%; 
    }
    .section .maindiv .submain .imgdiv .grydiv .txtdiv .contents span{
        font-size: 14px;
        line-height: 150%; /* 21px */
    }
    .section .maindiv .submain .imgdiv .grydiv .miniimgdiv{
        display: flex;
        position: absolute;
        right: 30px;
        top: -35px;
    }
    .section .maindiv .logotec img {
        max-width: 120px;
    }
    .section .maindiv .submain .imgdiv .mimgdiv img {
        max-width: 300px;
    }
    .hbspt-form form {   
        width: 90%;
    }
}


@media screen and (max-width: 730px){
    .hbspt-form form .hs-form-field textarea {   
        height: 8rem;
        /* width: 92% !important; */
    }
}

@media screen and (max-width: 630px){
    .section .maindiv .title_t span {
        font-size: 18px;
    }
    .section .maindiv .title_t{
        padding-bottom: 32px;
        margin-bottom: 32px;
    }
    .section .maindiv .submain .imgdiv .grydiv .txtdiv .title span {
        font-size: 15px;
        line-height: 130%; /* 19.5px */
    }
    .section .maindiv .submain .imgdiv .grydiv .txtdiv .contents span {
        font-size: 11px;
        line-height: 150%;
    }
    .section .maindiv .submain .imgdiv .grydiv .miniimgdiv {
        right: 16px;
    }
    .section .maindiv .submain .imgdiv .mimgdiv img {
        max-width: 223px;
    }
    .section .maindiv .submain .imgdiv .logostitle span {
        font-size: 16px;
    }
}

/* 375 under  */
@media screen and (max-width: 374px){
    .section .maindiv .submain .imgdiv .logosdiv ul {
        grid-template-columns: repeat(5, 1fr);
    }
    .section .maindiv .submain .imgdiv .grydiv .miniimgdiv img {
        max-width: 110px;
    }
}

@media screen and (max-width: 480px){
    .hbspt-form form .hs-form-field textarea {
        display: flex;
         width: 89% !important; 
        max-width: unset;
    }
}

.hs-fieldtype-textarea {
    margin-bottom: 0 !important;
}
.hs_error_rollup {
    margin: 0 !important;
}