@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/*日付を非表示にする*/
.post-9 .date-tags {
display: none;
}


/*チェックボックスの設定*/

.box2 form {
    margin: 50px;
    text-align: center;
	font-size: x-large;

    /* 同意するボタン  */
    input[type=button] {
        margin-top: 30px;
        background: #EAEAEA;
        border: #C0C0C0 solid 1px;
        border-radius: 10px;
        color: #C0C0C0;
        padding: 10px 80px;
        pointer-events: none;
        transition: background-color .3s, color .5s;
		font-size: xx-large;

        &:focus {
        /* チェックボタンが押されていないときはボタン不可視  */
        visibility: hidden;
        }
    }
	
	input[type=checkbox]{
		width:32px;
		height:32px;
	    display:    inline-block;
        position:   absolute;
        left:     0;
        background-color: #fff;
        box-shadow:   inset 1px 2px 3px 0px #000;
        border-radius:    6px 6px 6px 6px;
		
	}
	
	
}

 .box2 form input[type=button].btn-On{
    background: #222;
    border: #222 solid 1px;
    color: #E1E1E1;
    cursor: pointer;
    pointer-events: auto;
 }

.box2 form input[type=button].btn-On:focus {
    visibility: visible;
}

@media (hover: hover) {
    .box2 form input[type=button].btn-On:hover {
        background: #222;
        color: #fff;
    }
}

/* ラベルのスタイル　*/
.box2 form label {
  padding-left:   38px;
  font-size:    xx-large;
  line-height:    32px;
  display:    inline-block;
  cursor:     pointer;
  position:   relative;
}



