@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------------------------------
　 　MV
----------------------------------------------------------------------------------------------------------------------------------*/
.mv_outline{
	width: 100%;
}
.mv_inner{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
	min-height: 160px;
}

/*----------------------------------------------------------------------------------------------------------------------------------
　 　店舗募集応募
----------------------------------------------------------------------------------------------------------------------------------*/
.inner{
	width: 90%;
	max-width: 800px;
    margin: 30px auto 50px;
}
.red_title{
    color: #c11920;
    font-size: 220%;
    margin: 50px auto 15px;
    line-height: 160%;
	font-weight: 900;
}

.text{
    font-size: 100%;
    line-height: 190%;
}
.btn{
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 1.5em 0;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
	transition: all .3s;
	font-weight: bold;
	background:url("../img/btn_bk.png") #000;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	font-size: 125%;
}
.btn::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 30px solid #c11920;
	border-right: 30px solid transparent;
}
.btn:hover{transform: scale(1.03);}

.icon{
	width: 1.5em;
	height: 1.5em;
	display: inline-block;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: .5em;
}
.pdf{background-image: url("../img/pdf.svg");}

.base_tbl tbody,
.base_tbl td,
.base_tbl th,
.base_tbl tr{
	width: 100%;
	display: inline-block;
}

.base_tbl th{
    margin: 25px 0 15px;
	font-size: 110%;
    border-left: solid 10px #c11920;
    padding: 5px 10px;
    line-height: 150%;
}
.base_tbl th span{
	display: inline-block;
	padding: 0 0 0 10px;
	font-size: 78%;
}
.base_tbl td{
	line-height: 190%;
	padding-left: 15px;
}

.come_red,
.red_text{color: #c11920;}
.come_red{
	display:inline-block;
	font-weight: bold;
}

.medium{max-width: 250px;}
.small{max-width: 150px;}

textarea{
	resize:none;
	min-height: 100px;
	
}
button{
	cursor: pointer;
	border: none;
}

input[type="text"], button, input[type="radio"], select, textarea, input[type="submit"],input[type="file"]{
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
    border-radius: 0;
    height: 100%;
    width: 100%;
    padding: 12px 10px;
    font-size: 100%;
}
input[type="text"], input[type="radio"], select, textarea, input[type="submit"],input[type="file"]{
    border: 2px solid #cecece;
}


.select {
    position: relative;
    display: inline-block;
    width: 100%;
	background: #fff;
}
.select::before {
	content: "\f0d8";
	top: 8px;
}
.select::after {
	content: "\f0d7";
	bottom: 8px;
}

.select::before,
.select::after {
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 100%;
    position: absolute;
    color: #000;
    right: 10px;
	z-index: 1;
}


.select select{
	background: transparent;
	position: relative;
	z-index: 2;
	cursor: pointer;
}

.sub_title{
	background:#c11920;
	color: #fff;
	padding: 0.5em 1em;
	margin:20px 0 10px;
	font-size: 90%;
}

.img_box {
	display: inline-block;
    width: 100%;
    max-width: 32%;
    padding-top: 32%;
    overflow: hidden;
    background: #ffffff;
    background-size: cover;
    background-position: center;
    z-index: 1;
    border: solid 2px #cecece;
}
.img_box img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
     min-width: 100%; 
    min-height: 100%;
    object-fit: cover;
    font-family: "object-fit:cover;";
    border: none;
    width: auto;
    height: 100%;
    z-index: 3;
}
.img_box input[type="file"] {
    display: none;
}
.row_list2 {justify-content: flex-start;}
.row_list2 .img_box{margin-right: 2%;}

/* check ーーーー*/
.checkitem{margin: 45px 0 10px;}

input[type='checkbox']{ display: none; }
input[type='checkbox'] + label{
  line-height:160%;
  position: relative;
  display: inline-block;
  color: #000;
  transition: color 250ms cubic-bezier(.4,.0,.23,1);
  font-size: 113%;
}
input[type='checkbox'] + label > .box{
  display: inline-block;
  justify-content: center;
  align-items: center;
  margin:0 10px;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  background: #fff;
  border: 3px solid #cecece;
  cursor: pointer;  
  transition: all 250ms cubic-bezier(.4,.0,.23,1);
 position: relative;
}

input[type='checkbox']:checked + label > .box{border: 3px solid #c11920;}
input[type='checkbox']:checked + label > .box:before{
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  border-right: 4px solid #c11920;
  border-bottom: 4px solid #c11920;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checkbox-check 125ms 250ms cubic-bezier(.4,.0,.23,1) forwards;
}
@keyframes checkbox-check{
  0%{
    width: 0;
    height: 0;
    border-color: #c11920;
    transform: translate3d(0,0,0) rotate(45deg);
  }
  33%{
    width: .35em;
    height: 0;
    transform: translate3d(0,0,0) rotate(45deg);
  }
  100%{    
    width: .35em;
    height: .65em;    
    border-color: #c11920;
    transform: translate3d(0,-.4em,0) rotate(45deg);
  }
}
.radio_inner{;
	padding:5px 0 0 30px;
  	width: 100%;
}

.radio {
    font-size: 100%;
    border: none;
    padding: 0px 5px;
    display: inline-block;
    cursor: pointer;
}

.radio input[type=radio] {
    margin: .4em .5em .4em .2em;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px ;
    width: 20px;
    vertical-align: -0.7rem;
    transition: all .15s ease-out 0s;
    color: #fff;
    display: inline-block;
    outline: none;
    border-radius: 50%;
    padding: 3px;
	border: 2px solid #e2e2e2;
    background: #fff;
}
.radio input[type=radio]:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: all ease-out 250ms;
    background: #000;
}

.radio input[type=radio]:checked:before {transform: scale(1);}


@media print, screen and (max-width: 750px){
.base_tbl th{font-size: 100%;}
.btn{font-size: 107%;}

.base_tbl td{font-size: 88%;}
input[type='checkbox'] + label{font-size: 90%;}
input[type='checkbox'] + label > .box {
    margin: 0 8px;
    width: 20px;
    height: 20px;
    border: 2px solid #cecece;
}
input[type='checkbox']:checked + label > .box:before {
    top: 0px;
    left: 0px;
    border-right: 3px solid #c11920;
    border-bottom: 3px solid #c11920;
}
.red_title{
	font-size: 138%;
	margin: 50px auto 10px;
	}
}

/*----------------------------------------------------------------------------------------------------------------------------------
　 　募集要項
----------------------------------------------------------------------------------------------------------------------------------*/
.youkou_tbl td{
	padding: 0px 15px 20px 15px;
	font-weight: 500;
}
.youkou_tbl th{
    border-bottom: solid 2px #e4e4e4;
    padding: 10px 10px;
}
.mini_tbl td{
	width: auto!important;
	margin: 0;
	vertical-align: top;
	padding: 5px;
	font-size: 100%!important;
}
.num_list li {
	list-style-type: none;
	counter-increment: cnt;
    padding-left: 2em;
    text-indent: -1.8em;
	margin-bottom: 10px;
}

.num_list li::before {
	  content: "("counter(cnt)")";
	margin-right: .5em;
}
.dot_list li{
	position: relative;
	padding-left: 25px;
}
.dot_list li::before{
	content: "⚫︎";
	font-size: 113%;
	color: #c11920;
	position: absolute;
	top: 0;
	left: 0;
	
}
@media print, screen and (max-width: 550px){
.youkou_tbl td{font-size: 88%;}

}