@charset "utf-8";
/* Result */
.result{margin-bottom: 40px;}
.result .found{font-weight: bold; font-size: 2.2rem;}
.result .found span{font-size: 3.2rem; display: inline-block; line-height: 1.3; color: #4B4594;}

@media screen and (max-width: 768px){
    .result .found{font-size: 1.9rem;}
    .result .found span{font-size: 3rem;}
}

/* Group */
.group{padding-bottom: 30px;}

@media screen and (max-width: 768px){
    .group{padding-bottom: 10px;}
}

/* Search */
.search{background: #fff; box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.2); padding: min(4vw,50px); margin-top: 40px; border-radius: 10px;}
.search .m-tit1{text-align: center; line-height: 1; margin-bottom: 40px;}
.search .m-tit4{text-align: center; margin-bottom: 20px;}

@media screen and (max-width: 768px){
    .search{padding: 30px 20px; margin-top: 20px;}
    .search .m-tit1{margin-bottom: 25px;}
    .search .m-tit4{margin-bottom: 10px;}
}

.fieldTxt{width: 100%; border: 1px solid #A6A6A6; border-radius: 6px; background: #fff; font-size: 1.6rem; line-height: 1.6; padding: 8px 10px;}

.radioBtn {display: inline-block; position: relative; padding-left: 30px; cursor: pointer; font-size: 1.6rem; line-height: 1.6;
-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;}
.radioBtn input{position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0;}
.radioBtn span{position: absolute; top: 4px; left: 0; height: 18px; width: 18px; background-color: #fff; border: 1px solid #BCBCBC; border-radius: 50%;}
.radioBtn span:after{content: ""; position: absolute; display: none; top: 4px; left: 4px; width: 8px; height: 8px; border-radius: 50%; background: #4B4594;}
.radioBtn input:checked ~ span:after {display: block;}

.checkBtn{display: inline-block; position: relative; padding-left: 30px; cursor: pointer; font-size: 1.6rem; line-height: 1.6;
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;}
.checkBtn input{position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0;}
.checkBtn span{position: absolute; top: 4px; left: 0; height: 18px; width: 18px; background-color: #fff; border: 1px solid #BCBCBC;}
.checkBtn input:checked ~ span:after{display: block;}
.checkBtn span:after{content: ""; position: absolute; display: none; left: 5px; top: 1px; width: 4px; height: 8px; border: solid #4B4594; border-width: 0 2px 2px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg);}

@media screen and (min-width: 769px){    
    .search-box{max-width: 800px; margin: 0 auto; padding-bottom: 15px;}
    .search-box .row{margin-bottom: 30px; display: flex; flex-wrap: wrap; align-items: flex-start;}
    .search-box .col1{width: 180px; font-size: 2.2rem; line-height: 1.6; font-weight: bold;}
    .search-box .col2{width: calc(100% - 180px);}    
    .search-box .col2 ul{display: flex; flex-wrap: wrap; justify-content: space-between;}
    .search-box .col2 li:not(:last-of-type){margin-right: 10px;}    
    .search-box .row1 .col1{margin-top: 5px;}
    .search-box .row2 .col2{margin-top: 7px;}    
}

@media screen and (max-width: 768px){
    .search-box{padding-bottom: 10px;}
    .search-box .row{margin-bottom: 20px;}
    .search-box .col1{font-size: 1.8rem; line-height: 1.6; font-weight: bold; margin-bottom: 8px;}
    .search-box .col2 ul{display: flex; flex-wrap: wrap;}
    .search-box .col2 li:not(:last-of-type){margin-right: 20px;}  
}

.search-list{display: flex; flex-wrap: wrap; padding-bottom: 20px;}
.search-list .item{background: #EBE9E6; border: 1px solid #A6A6A6; border-radius: 6px;}
.search-list .head{padding: 19px; border-bottom: 1px solid #A6A6A6; font-weight: bold;}
.search-list .inner{padding: 19px;}

@media screen and (min-width: 769px){    
    .search-list .item{width: 49%; margin: 0 2% 2% 0;}
    .search-list .item:nth-of-type(2n){margin-right: 0;}
}

@media screen and (max-width: 768px){
    .search-list{padding-bottom: 10px;}
    .search-list .item{width: 100%; margin-bottom: 15px;}
    .search-list .head{padding: 14px;}
    .search-list .inner{padding: 14px;}    
}

.search-btn{font-size: 1.8rem; line-height: 1.6; font-weight: bold; color: #fff; background: #655C50; display: flex; justify-content: center; align-items: center; max-width: 400px; width: 80%; height: 60px; border-radius: 60px; margin: 0 auto; transition: .4s cubic-bezier(0.37, 0, 0.63, 1); cursor: pointer;}
.search-btn:before{content: ""; width: 23px; height: 23px; background: #fff; margin-right: 8px;
mask: url("../img/common/ic-search.svg") no-repeat top left/100% 100%; -webkit-mask: url("../img/common/ic-search.svg") no-repeat top left/100% 100%;}
.search-btn:hover{background: #4B4594;}

@media screen and (max-width: 768px){
    .search-btn{font-size: 1.6rem; height: 52px;}
    .search-btn:before{width: 20px; height: 20px;}
}