@charset "utf-8";

/*--------------------------------------------------
共通
--------------------------------------------------*/

/*--- item スイッチ ---*/
[switch="on"] {
    display: block;
}
[switch="off"] {
    display: none;
}

/*---SP改行 PCinline ---*/
.block_sp {
    display: block;
}
/*---PC改行 SPinline ---*/
.block_PC {
    display: inline;
}

/*---SP only表示 ---*/
.sp_only_display {
    display: block;
}


/*--- flex ---*/
.row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.column {
    display: block;
    width: 100%;
	padding-left: 7.5px;
    padding-right: 7.5px;
	box-sizing: border-box;
}

/*--- btn area ---*/
.btn_pink_area p {
	background: #f99d7d;
    color: #ffffff;
    font-weight: bold;
    display: block;
    text-align: center;
    border: solid #f99d7d 1px;
    line-height: 55px;
    width: 80%;
	margin: 0 auto;
	position: relative;
	transition: .2s;
}
.btn_pink_area a {
	text-decoration: none;
}
.btn_pink_area p:hover {
	background: #fff;
    color: #f99d7d;
    font-weight: bold;
    display: block;
    text-align: center;
    border: solid #f99d7d 1px;
    line-height: 55px;
    width: 80%;
	margin: 0 auto;
}
.btn_pink_area p::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 10px;
    background-image: url("https://shirai.itembox.design/item/common/jointspace/img/register/img_icon_right_white.png");
    background-size: contain;
	background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 22px;
    overflow: hidden;
}
.btn_pink_area p:hover::after {
    background-image: url("https://shirai.itembox.design/item/common/jointspace/img/register/img_icon_right_pink.png");
}


/*-------------- PC size --------------*/
@media screen and (min-width: 767px) {

	/*---SP改行 PCinline ---*/
	.block_sp {
		display: inline;
	}
	
	/*---PC改行 SPinline ---*/
	.block_pc {
		display: block;
	}
	
	/*--- PC時に　なし ---*/
	.sp_only_display {
		display: none;
	}
	
	.btn_pink_area p::after {
		right: 20px;
		top: 24px;
	}
	

}

/*-------------- ipad size --------------*/
@media screen and (width: 768px) {

}

