@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Noto+Sans+JP:wght@100..900&display=swap');
/*------------------------------
    Commons Layout 
    created: 2025.11.12
    update: 2025.12.1
---------------------------------*/
#wrapper,
header,
footer { width: auto; }

/*----------------------------------------
    header & grobal navigation
-----------------------------------------*/
#headTitle {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

#headTitle a {
    display: flex;
    align-items: center;
    column-gap: 20px;
    color: #444444;
    text-decoration: none;
}

#headTitle a img {
    width: 80px;
}

#headTitle h1 {  
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    height: auto;
    line-height: 1.0;
}

#headTitle p { 
    font-weight: 400;
    padding-left: 0.3em;
}

/*----------------------------------------
    breadCrumb
-----------------------------------------*/
.breadCrumb {
    background-color: #47484b;
    padding: 18px 32px;
}

.breadCrumb ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.breadCrumb ul li {
    color: whitesmoke;
    font-size: 14px;
}

.breadCrumb ul li:not(:last-child)::after {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    content: "　>";
}

.breadCrumb ul li a {
    color: whitesmoke;
    text-decoration: none;
}

.breadCrumb ul li a:hover {
    border-bottom: 1px solid whitesmoke;
}

/*----------------------------------------
    title
-----------------------------------------*/
.title {
    background-color: #262626;
    padding: 18px 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 50px;
    color: white;
}

.title h1 {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.title h1 span {
    display: inline-block;
}

.title nav.rightNavi {
    margin-left: auto;
}

.title nav.rightNavi ul {
    display: flex;
    align-items: flex-end;
    column-gap: 10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
}

.title nav.rightNavi ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    width: 80px;
}

.title nav.rightNavi ul li.toCustomer a img { width: 60px;}
.title nav.rightNavi ul li.toCertificate a img { width: 85px;}
.title nav.rightNavi ul li.toKensaki a img { width: 65px;}

.title nav.rightNavi ul li a span {
    display: inline-block;
    text-align: center;
}

/*----------------------------------------
    contents
-----------------------------------------*/

/* 申し込みフォーム */
#application {
	margin: 100px 50px 0;
}

#application .formHeader {
    display: flex;
    align-items: center;
    gap: 32px 50px;
    color: #4A4A4A;
    padding-bottom: 50px;
}

#application .formHeader img { 
    max-width: 100px;
    height: auto;
    flex-shrink: 0;
}

#application .formHeader h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: normal;
    color: seagreen;
    text-align: center;
    padding-bottom: 32px;
}

#application .formHeader h2 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-optical-sizing: auto;
    font-style: normal;
    color: #3E3731;
    background-color: rgba(0,0,0,0);
    border-top: 3px solid #7F7B75;
    border-bottom: 3px solid #7F7B75;
    padding-top: 22px;
    padding-bottom: 22px;
    margin: 0 0 32px 0;
    text-align: center;
}

#application .formHeader p:last-child {
    text-align: right;
    margin-top: 50px;
}


#application iframe {
	border: none;
	width: 100%;
	height: calc(100vh - 100px);
}






@media only screen and (max-width: 1025px) {
    header { height: auto; }
   
    #headTitle {  padding: 10px 0; }

	.breadCrumb {  padding: 15px 22px; }
    
    .title {
        padding: 15px 22px;
        gap: 15px 32px;
    }
    
    #application {
        margin: 100px 0 0 0;
    }
}

/* -SP- -599px */
@media screen and (max-width: 599px){
    
    header div.globalNav { padding-left: 15px; }
    
    .title h1 { line-height: 1.2; }
    .title h1.f1 { font-size: 1.1rem; }
    
    #application .formHeader {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #application .formHeader img { max-width: 70px; }
    
    #application .formHeader h3 { text-align: left; }
    
    #application .formHeader p:last-child { margin-top: 22px; }

}

@media screen and (max-width: 546px){
    
    #headTitle { padding: 5px 0; }
    
    #headTitle a img { width: 60px; }
    
    #headTitle h1.f4 { font-size: 2rem;  }
    
    #headTitle p { padding: 0 0 0 0.2em; }
}


