@charset "UTF-8";

/* --- テキストフィールド--- */
form input[type=text],
form textarea{
    font-size:16px;
    margin:1px 0;
    background-color: #fff;
    color: #111111;
    color:#111;
    border:1px #bbc solid;
    padding:0.5em;
    border-radius: 5px;
    line-height:1.4;
    box-sizing: border-box;
}
form .search{
    background-image: url("../_css/_form_icon/Icon-material-search_GY.png");
    background-repeat: no-repeat;
    background-position: center left 0.5em ;
    background-size:1.1em 1.1em;
    padding-left:2em!important;
    width:480px;
}
form .calendar{
    background-image: url("../_css/_form_icon/icon_calender.png");
    background-repeat: no-repeat;
    background-position: center right 0.5em ;
    background-size:1.1em 1.1em;
    padding-right:2em!important;
    width:170px;
    cursor:pointer;
}
form input[type=text]:focus,
form textarea:focus{
    background-color: #f7fff7;
}

/* --- placeholder --- */
::-webkit-input-placeholder {
    color: #aaa;
    font-style: oblique; 
    font-size:90%;
}
::-moz-placeholder{
    color: #aaa;
    font-style: oblique; 
    font-size:90%;
}
:-ms-input-placeholder {
    color: #aaa;
    font-style: oblique; 
    font-size:90%;
}
:placeholder-shownr {
    color: #aaa;
    font-style: oblique; 
    font-size:90%;
}
/* --- プルダウンメニュー --- */
.selectbox01 {
    display: inline-flex;
    align-items: center;
    position: relative;
}
.selectbox01::after {
    position: absolute;
    right: 1em;
    width: 1em;
    height: 1em;
    background-color: #777;
    clip-path: polygon(10% 20%, 0 30%, 30% 60%, 50% 80%, 70% 60%, 100% 30%, 90% 20%, 50% 60%);
    content: '';
    pointer-events: none;
}
.selectbox01 select {
    appearance: none;
    min-width: 300px;
    padding:0.5em 3em 0.5em 0.5em;
    border: 1px solid #cccccc;
    border-radius: 5px;
    background-color: #fff;
    color: #111111;
    font-size: 16px;
    cursor: pointer;
    box-sizing: border-box;
}

/* --- チェクボックス --- */
.checkbox01 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em 2em;
    border: none;
        width:630px;
    margin-left:8px;
}
.checkbox01 label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
    font-size:16px;
    white-space:nowrap;
            /* min-width:14em; */
}
.checkbox01 label::before,
.checkbox01 label:has(:checked)::after {
    content: '';
}
.checkbox01  label::before {
    width: 27px;
    height: 27px;
    border-radius: 5px;
    border:1px solid #aaa;
    background-color: #fefefe;
}
.checkbox01 label:has(:checked)::before {
    background-color: #aaa;
}
.checkbox01 label:has(:checked)::after {
    position: absolute;
    top: 1px;
    left: 8px;
    transform: rotate(45deg);
    width: 7px;
    height: 15px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
}
.checkbox01 input {
    display: none;
}

/* ------- submitBtn ------- */
.submitBtn1{
    border-radius: 7px;
    border:1px solid #000;
    font-size:16px;
    color:#fff;
    cursor:pointer;
    line-height:2.5;
    padding:0 5em;
    background-color:#222;
    background-image: url("../_css/_form_icon/Icon material-search_WH.svg");
    background-repeat: no-repeat;
    background-position: center left 3.5em ;
    background-size:1.1em 1.1em;
    margin:0 0.5em;
}
.submitBtn1:hover{
    opacity:0.75;
}
.submitBtn2{
    border-radius: 7px;
    border:1px solid #555;
    font-size:16px;
    color:#111;
    cursor:pointer;
    line-height:2.5;
    padding:0 1em;
    background-color:#fff;
    margin:0 0.5em;
}
.submitBtn2:hover{
    opacity:0.75;
}

/* --- pagination --- */
.Pagination{
    font-size:19px;
    margin-bottom:1em;
}
.Pagination a{
    display:inline-block;
    min-width:2em;
    margin:0 .5em;
    text-align:center;
    white-space:nowrap;
    color:#1E77C9;
    font-weight:550;
    text-decoration:none;
    opacity:1;
    transition: .2s linear;
}
.Pagination a:hover{
    text-decoration:none;
    opacity:0.7;
    transition: .2s linear;
}
.Pagination span{
    display:inline-block;
    min-width:2em;
    margin:0 .5em;
    text-align:center;
    white-space:nowrap;
}
.Pagination a.pNum{
    color:#777;
}





/* ---------------------------- スマホ --------------------------- */
@media screen and (max-width:767px){

form input[type=text],
form textarea{
    font-size: 4.3vw;
}
form .search{
    width:91vw;
}
.selectbox01 select {
    min-width: 91vw;
    width: 91vw;
    font-size: 4.3vw;
    box-sizing: border-box;
}
form .calendar{
    width:40vw;
}

/* --- チェクボックス --- */
.checkbox01 {
    display: block;
    width:100%;
    margin-left:0;
}
.checkbox01 label {
    font-size:4.3vw;
    margin-bottom:1.5em;
    
}
.checkbox01  label::before {
    width: 7.2vw;
    height: 7.2vw;
    border-radius: 5px;
}
.checkbox01 label:has(:checked)::after {
    position: absolute;
    top: 0.3vw;
    left: 2.1vw;
    width: 1.9vw;
    height: 4vw;
    border: solid #fff;
    border-width: 0 3px 3px 0;
}

/* ------- submitBtn ------- */
.submitBtn1{
    font-size:4.3vw;
    line-height:2.5;
    padding:0 25vw;
    margin:0 0.5em;
}
.submitBtn2{
    font-size:4.3vw;
    line-height:2.5;
    padding:0 4vw;
    margin:0 0.5em;
}

/* --- pagination --- */
.Pagination{
    font-size:4vw;
    margin-bottom:1em;
}
.Pagination a{
    display:inline-block;
    min-width:7.5vw;
    margin:0 .2em;
}
.Pagination span{
    min-width:7.5vw;
    margin:0 .2em;
}
.Pagination s{
    font-size:3vw;
    font-weight:550;
    color:#aaa;
    padding:0;
    margin:0;
}







}/* スマホ */