@charset "shift_jis";

div.friend_records {
	display:table;
	width:100%;
	table-layout:fixed;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
    padding-bottom:25px;
/*    overflow: hidden;*/
}
div.friend_info {
/*    float: left;*/
	display:table-cell;
    padding:5px 2px;
    text-align: center;
}
div.friend_info:first-child {
	background-color: #FEEC25;
}
div.friend_info:nth-child(2) {
	background-color:#13DE21;
}
div.friend_info:nth-child(3) {
	background-color:#D8003C;
}
div.friend_info:last-child {
	background-color:#006BB9;
}
div.friend_info img {
	width:100%;
}
div.friend_info .friend_name {
	overflow:hidden;
	word-break: break-all;

}

/* ラジオボタン
============================== */
.avatar_box {
	display:table;
	width:100%;
	table-layout:fixed;
	margin-bottom:20px;
	border-right: 1px solid #aaa;
}
div.radio-group {
/* margin-bottom: 10px;
 overflow: hidden;*/
 -webkit-display:table-row;
 display:table-row;
}
div.radio-group input {
 display: none;
}
div.radio-group label {
	width:100%;
	display:table-cell;
 cursor: pointer;
 padding: 5px 10px;
 border-width: 1px 0 1px 1px;
 border-style: solid;
 border-color: #aaa;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #b3b3b3), color-stop(0.00, #d6d6d6));
    background: -webkit-linear-gradient(#d6d6d6, #b3b3b3);
    background: linear-gradient(#d6d6d6, #b3b3b3);
/* background: #eee;
 background-image: -moz-linear-gradient(top, #F6F6F6, #ccc);
 background-image: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#ccc));
 -moz-box-shadow: 2px 2px 6px #ddd;
 -webkit-box-shadow: 2px 2px 6px #ddd;
 text-shadow: 1px 1px 0px #fff;*/
}
/*
div.radio-group label:first-child  {
 -webkit-border-top-left-radius:3px;
 -webkit-border-bottom-left-radius:3px;
 -moz-border-radius-topleft:3px;
 -moz-border-radius-bottomleft:3px;
 border-top-left-radius:3px;
 border-bottom-left-radius:3px;
}
div.radio-group label:last-child  {
	border-right: 1px solid #aaa;
 -webkit-border-top-right-radius:3px;
 -webkit-border-bottom-right-radius:3px;
 -moz-border-radius-topright:3px;
 -moz-border-radius-bottomright:3px;
 border-top-right-radius:3px;
 border-bottom-right-radius:3px;
}
*/
/* ラジオボタン チェック時の色設定 */
div.radio-group input:checked+label {
	border-top:0;
	border-bottom:0;
	-webkit-box-shadow: inset 0 -1px 1px #00470A, inset 0 1px 0 rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 -1px 1px #00470A, inset 0 1px 0 rgba(255, 255, 255, 0.4);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #32B345), color-stop(0.00, #008f15));
	background: -webkit-linear-gradient(#008f15, #32B345);
	background: linear-gradient(#008f15, #32B345);
 color: #fff;
/* background: #C3C3C3;
 background-image: -moz-linear-gradient(top, #0000FF, #001166);
 background-image: -webkit-gradient(linear, left top, left bottom, from(#0000FF), to(#001166));
 text-shadow: 0px 0px 0px #fff;*/
}
div.radio-group img {
	width:100%;
	vertical-align: bottom;
}


.button_update /* 変更ボタン */,
.button_add /* 追加ボタン */ {
    display:block;
    margin: 0 auto;
    width:100%;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
    padding:8px;
    border: none;
    -webkit-border-radius :6px;
    border-radius :6px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #a3a3a3), color-stop(0.00, #d6d6d6));
    background: -webkit-linear-gradient(#d6d6d6, #a3a3a3);
    background: linear-gradient(#d6d6d6, #a3a3a3);
    color:#111  !important;
    text-align :center;
    text-decoration:none;
}
.button_update:hover,
.button_add:hover {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #8a8a8a), color-stop(1.00, #ccc));
	background: -webkit-linear-gradient(#8a8a8a, #ccc);
	background: linear-gradient(#8a8a8a, #ccc);
}


/* 削除ボタン */
.button_delete {
    display:block;
    margin: 0 auto;
    width:100%;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
    padding:8px;
    border:none;
    -webkit-border-radius :6px;
    border-radius :6px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #a3a3a3), color-stop(0.00, #d6d6d6));
    background: -webkit-linear-gradient(#d6d6d6, #a3a3a3);
    background: linear-gradient(#d6d6d6, #a3a3a3);
    color:#111  !important;
    text-align :center;
    text-decoration:none;
}
.button_delete:hover {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #8a8a8a), color-stop(1.00, #ccc));
	background: -webkit-linear-gradient(#8a8a8a, #ccc);
	background: linear-gradient(#8a8a8a, #ccc);
}


/* 戻るボタン */
.button_back {
    display:block;
    width:100%;
    margin: 0 auto;
    padding:8px;
	border: 0;
    -webkit-border-radius :6px;
    border-radius :6px;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #a3a3a3), color-stop(0.00, #d6d6d6));
    background: -webkit-linear-gradient(#d6d6d6, #a3a3a3);
    background: linear-gradient(#d6d6d6, #a3a3a3);
    color:#111  !important;
    text-align :center;
    text-decoration:none;
}
.button_back:hover {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #8a8a8a), color-stop(1.00, #ccc));
	background: -webkit-linear-gradient(#8a8a8a, #ccc);
	background: linear-gradient(#8a8a8a, #ccc);
}


/*
input[type="submit"] {
    display:block;
    width:100%;
    margin: 0 auto;
    padding:8px;
    border:none;
    -webkit-border-radius :6px;
    border-radius :6px;
    -webkit-box-shadow:inset 0 -1px 1px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    box-shadow:inset 0 -1px 1px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.4);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #005c0d), color-stop(0.00, #008f15));
	background: -webkit-linear-gradient(#008f15, #005c0d);
	background: linear-gradient(#008f15, #005c0d);
    color:#fff;
    text-align :center;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(255, 255, 255, 0.5);
    text-decoration:none;
    cursor:pointer;
}
input[type="submit"]:hover {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #005c0d), color-stop(1.00, #008f15));
	background: -webkit-linear-gradient(#005c0d, #008f15);
	background: linear-gradient(#005c0d, #008f15);
}
*/

input[type="text"],
input[type="tel"] {
	display:block;
    margin:1px 0 20px;
    padding:10px;
    border:solid 1px #ccc;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    width:100%;
   	-webkit-box-sizing:border-box;
    box-sizing:border-box;
    font-size:1.16rem;
}
input[type="text"]:focus,
input[type="tel"]:focus {
    border:solid 1px #e00001;
}

.button_layout {
	display:table;
	width:100%;
}
.button_layout div {
	display:table-cell;
	box-sizing:border-box;
	vertical-align: bottom;
}
.button_layout .back {
	width:45%;
	padding-right:10px;
}
.button_layout .back .button_back {
	padding: 8px 4px;
}
.button_layout input {
	font-size: 100%;
}
/* .button_layout 内の変更ボタン */
.button_layout .button_update {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #FF6F22), color-stop(1.00, #FF5900));
	background: -webkit-linear-gradient(#FF6F22, #FF5900);
	background: linear-gradient(#FF6F22, #FF5900);
    color:#fff !important;
}
.button_layout .button_update:hover {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #FF6F22), color-stop(0.00, #FF5900));
	background: -webkit-linear-gradient(#FF5900, #FF6F22);
	background: linear-gradient(#FF5900, #FF6F22);
}

/*ul.sex {
	margin:1px 0 20px;
}
ul.sex li {
	position: relative;
	list-style:none;
	float: left;
	width: 50%;
}
ul.sex li label {
	padding:10px 0;
    border:solid 1px #ccc;
	border-radius:3px 0 0 3px;
	display: block;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #b3b3b3), color-stop(0.00, #d6d6d6));
    background: -webkit-linear-gradient(#d6d6d6, #b3b3b3);
    background: linear-gradient(#d6d6d6, #b3b3b3);
	text-align: center;
}
ul.sex li:last-child label {
	border-radius:0 3px 3px 0;
}
ul.sex li input[type="radio"]:checked + label {
    border:solid 1px #008f15;
background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #32B345), color-stop(0.00, #008f15));
background: -webkit-linear-gradient(#008f15, #32B345);
background: linear-gradient(#008f15, #32B345);
-webkit-box-shadow: inset 0 -1px 1px #00470A, inset 0 1px 0 rgba(255, 255, 255, 0.4);
box-shadow: inset 0 -1px 1px #00470A, inset 0 1px 0 rgba(255, 255, 255, 0.4);
	font-weight: bold;
}
ul.sex li input[type="radio"] {
	padding: 0;
	opacity : 0;
	position: absolute;
	top: -3px;
	left: -3px;
	width: 100%;
	height: 100%;
}
*/

select {
    margin:1px 0 20px;
    padding:10px;
    border:solid 1px #ccc;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    width:100%;
/*	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;*/
    box-sizing:border-box;
    font-size:1.16rem;
}

/* 必須項目 */
.required_item {
	display:inline-block;
	background-color: #e00001;
	margin-left: 5px;
	padding:1px 3px;
	-webkit-border-radius:2px;
	border-radius:2px;
	color:#fff;
}

/* 入力エラーメッセージ */
.error_text {
	color:#f00;
}
input.error {
	background-color:#fcc;
}

dl.confirm_box dt {
    font-weight:bold;
}
dl.confirm_box dd {
    margin-bottom:20px;
    padding-left:15px;
    font-size:1.16rem;
}




h1 {
	background-color: #28B33D;
	margin-bottom:15px;
	padding:5px 10px;
	border-bottom:#1A7427 solid 2px;
	font-weight: bold;
	font-size: 1.3rem;
	text-shadow:1px 1px 0 #064610;
	color:#fff;
}

h2 {
	margin:25px 0 10px;
	padding:4px 5px 4px 8px;
	border-left:5px solid #28B33D;
	border-bottom:1px dotted #666;
	font-weight: bold;
	font-size:1.16rem;
}


/*フォームページ用　20190902 ↓ ------------------------------------------------------*/



  
  .content-body{
    width: 90.66666% !important;
    margin: 16px auto 12px auto !important;
  }
  
 /* .form-group {
  width:90.66666% !important;
    margin:16px auto 12px auto !important;}*/
  
  
  .form-horizontal .form-group{
   margin:0;
  }
  
  
  .content-title{
      font-size:16px;
      font-weight:bold;
  }
  
  .form-fontColor{
    color:#242729 !important;
    font-weight:normal ;} 
  
  
  .common-form {
      padding:0 !important;}
  
  
  /* placeholder色 */
  ::-webkit-input-placeholder {
    color: #D8D8D8;
  }
  ::-moz-placeholder {
    color: #D8D8D8; opacity: 1;
  }
  :-ms-input-placeholder {
    color: #D8D8D8;
  }
 /* placeholder色 */
  
  .meiPaddingRight{
   padding:0 6% 0 0 ;
  }
  
  /* フレックスボックス */
   .cell {
    width:100%;
       margin:8px auto 0px auto !important;
       display:flex !important;
         }
  
  /* フレックスボックス*/
  .cell_2 {
    width:100% !important;
       margin:8px auto 0px auto !important;
       display: flex !important;
       flex-direction: row !important;
       justify-content: space-between !important;
         }
  
  /* フレックスボックス化 */
  .cell_3 {
    width:100%;
       margin:8px auto 0px auto;  
       display:flex !important;
       flex-wrap: wrap;
         }

  /* 必須をアイコン化 */
  .must_icon{
      display:block;
       margin:0 0 0 8px !important;
       width:28px !important;
       height:15px !important;
       line-height:1.5em !important;       
       font-size:0.6em !important;
       padding: 0  !important;
       color: #ffffff !important;
       text-align: center;
       border-radius: 2px;	/* 角丸を指定する */     
       background-color: #e00001 !important;
       }
  
  .arbitrary_icon{
        display:block;
       margin:0 0 0 8px !important;
       width:28px !important;
       height:15px !important;
       line-height:1.5em !important;
       font-size:0.6em !important;
       padding: 0  !important;
       color: #e00001 !important;
       text-align: center;
       border-radius: 2px;	/* 角丸を指定する */     
       background-color: #ffffff !important;
       }
  
  /* 100%に戻す 
   label{
      width:100%;
      margin:0 !important;
      padding:0 !important;
  }*/
  
  input{ 
    width:100%;
    padding:0 8px;
    box-sizing: border-box;
    margin:0 auto 0 auto;
    border: 1px solid #CBC9C9 !important;/* ボックスの境界線を実線で指定する */
    border-radius: 5px;	/* 角丸を指定する */
    height:36px !important;
    font-size: 16px !important;
    }  
  
  
  /* 姓名幅 */
  .inputboxDef{
    width:100% !important;
    margin:0 0 0 0;
  }
  
  #inputNickname,#cf-lname,#cf-sei_hiragana{
    width:100% !important;
    margin:0 0 0 0;
  }
  
  #cf-fname,#cf-mei_hiragana{
    width:94% !important;
    margin:0 0 0 6%;
  }
  

  /* せれクト指定 */
  select{ 
      padding:0 8px;
      box-sizing: border-box;
      height:36px !important; 
      margin:0 0 10px 0;
      border: 1px solid #CBC9C9 !important;/* ボックスの境界線を実線で指定する */
      border-radius: 5px;	/* 角丸を指定する */
      background-color: #ffffff; 
      font-size: 16px !important;
      }  
  
   /*　ラジオボタンbox */     
  .genderBox{
          width:47%;
      }
  
  /* 性別ラジオボタンとる指定 */
  .content-body input[type="radio"]{
        display: none;
        }
  /* 性別ラジオボタン＋div指定 */
  .content-body input[type="radio"]:checked + div{
    width: 100%!important;
      color: #ffffff !important;
       text-align: center;
       background-color: #e00001 !important;
  margin:0 0 10px 0 !important;
  }
  
  /* 性別ラジオボタン */
  .label_gender  {
      background-color: #CBC9C9;
      display: block;	/* ブロックレベル要素化する */ 
      width: 100%!important;/* ボックスの横幅を指定する */
      height: 36px;	/* ボックスの高さを指定する */
      line-height:40px;
      color: #333333;	/* フォントの色を指定 */
      text-align: center;	/* テキストのセンタリングを指定する */
      border-radius: 5px;	/* 角丸を指定する */
   margin:0 0 10px 0 !important;
              }
  
  #birthday-y{
       width:35% !important;
       height:36px;
       word-break: break-all;
       font-size: 16px;
       overflow: hidden;
       white-space: nowrap;
       text-overflow: ellipsis;
       }
                
  #birthday-m,#birthday-d{
       width:26.2% !important;
       height:36px;
       word-break: break-all;
       font-size: 16px;
       overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
       }
                
  #birthtime-h,#birthtime-m{
        width:26.2%  !important;
        height:36px;
        word-break: break-all;
        font-size: 16px;
        }
  
  
   /*出生地 */ /*血液型 */
   .inputdetails{
    width:53%  !important;
  height:36px !important;
    font-size: 16px !important;
  }
  
  .errorText {
      color:#e2041b;
        }

    .st_1{
        color:#e2041b;
        font-size:0.6em;
      }
  
    /* 結婚注意書き */
  .bridecution{
    font-size:0.8em;
    margin:8px auto 0 auto;
    padding:0 0 10px 0;
    line-height:1.3em;
  }
  
  .bridecution p{
    margin:0;
    padding:0;
  }
  
  .cution_text{
    color:#616161;
    font-size:0.8em;
    margin:-10px auto 0 auto;
    padding:0 0 18px 0;
    line-height:1.3em;
  
  }
  .cution_text p{
    margin:0;
    padding:0;
  }
  
  li{
    list-style: none;
  }
          
  .inputButtonStyle{
    margin:0 10px 0 0 ;
   }
  
  /* css checkbox01 */
  .checkbox01-input{
    display: none;
  }
  .checkbox01-parts{
    padding-left: 20px;
    position:relative;
    margin-right: 20px;
  }
  .checkbox01-parts::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #e2041b;
    border-radius: 4px;
  }
  .checkbox01-input:checked + .checkbox01-parts{
    color: #e2041b;
  }
  .checkbox01-input:checked + .checkbox01-parts::after{
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    left: 5px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 3px solid #e2041b;
    border-right: 3px solid #e2041b;
  }
  

  /* 確認ページ用↓ ------------------------------------------------------*/
  
  .confPaddingTop{
   padding-top:10px;
      display: block;
  }
  
  .confPaddingTop8{
    padding-top:8px;
       display: block;
   }
  
  .PaddingBttom8{
   padding-bottom:8px;
      display: block;
  }
  
  
  .MarginBttom18{
    margin-bottom:18px;
   }
  
  
   .content-body-parent{
  
       margin:auto !important;
   }
  
  
  
  .container{
    width:100%;
    margin:auto;}
  
  .btn-wrap{
    width:100% !important;
    margin:auto;}
  
  
  ul.list-check-switch div.text-box{
    padding:18px 0 0 0 !important;
  }
  
  .confContentBox{
   /* width:100%!important; */
    color:#333333;
    height:36px;
    margin:0 auto 10px auto;
    font-size: 16px;
    line-height: 2;
    padding: 0 8px;
    word-break: break-all;
    background-color: rgba(203, 201, 201,0.6);/*#CBC9C9の60％*/
    border-radius: 5px;	/* 角丸を指定する */
  }
  
  
  .confContentBox_a{
  color:#333333;
  width:94% !important;
  margin:0 auto !important;
    min-height:36px;
    font-size: 16px;
    line-height: 2;
    padding: 0 8px;
    word-break: break-all;
    background-color: rgba(203, 201, 201,0.6);
    border-radius: 5px;	/* 角丸を指定する */
  }
  
  .confContentBox_b{
    color:#333333;      
  width:94% !important;
  margin:0 0 0 6% !important;
    min-height:36px;
    font-size: 16px;
    line-height: 2;
    padding: 0 8px;
    word-break: break-all;
    background-color: rgba(203, 201, 201,0.6);
    border-radius: 5px;	/* 角丸を指定する */
  }
  
  .confContentBox_c{
    color:#333333; 
    width:33% !important;
    margin:0 0 0 6% !important;
    margin:0 auto 10px auto;
      height:36px;
      font-size: 16px;
      line-height: 2;
      padding: 0 8px;
      word-break: break-all;
      background-color: rgba(203, 201, 201,0.6);
      border-radius: 5px;	/* 角丸を指定する */
    margin:0 0 10px 0;      
    }
    
    
  #birthday-y-conf{
    color:#333333; 
    width:32% !important;
    height:36px;
    font-size: 16px;
    line-height: 2;
    padding: 0 8px;
    word-break: break-all;
    background-color: rgba(203, 201, 201,0.6);
    border-radius: 5px;	/* 角丸を指定する */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    }
             
  #birthday-m-conf,#birthday-d-conf{
    color:#333333; 
    width:24% !important;
    height:36px;
    font-size: 16px;
    line-height: 2;
    padding: 0 8px;
    word-break: break-all;
    background-color: rgba(203, 201, 201,0.6);
    border-radius: 5px;	/* 角丸を指定する */
    overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
    }
             
    #birthtime-h-conf{
      color:#333333;   
      width:26.2%  !important;
      height:36px;
      font-size: 16px;
      line-height: 2;
      padding: 0 8px;
      word-break: break-all;
      background-color: rgba(203, 201, 201,0.6);
      border-radius: 5px;	/* 角丸を指定する */
      }
    
    #birthtime-m-conf{
       color:#333333;  
       width:26.2%  !important;
       margin-left:6%;
       height:36px;
       font-size: 16px;
       line-height: 2;
       padding: 0 8px;
       word-break: break-all;
       background-color: rgba(203, 201, 201,0.6);
       border-radius: 5px;	/* 角丸を指定する */
       }
  
  /*出生地・血液型 */
  .details-conf{
    color:#333333;  
    width:53%  !important;
    height:36px;
    font-size: 16px;
    line-height: 2;
    padding: 0 8px;
    word-break: break-all;
    background-color: rgba(203, 201, 201,0.6);
    border-radius: 5px;	/* 角丸を指定する */
    margin:0 0 18px 0;
  }
  
  
  /* 性別ラジオボタン */
  div.label_genderConf {
    background-color: #e00001;
    display: block;	/* ブロックレベル要素化する */ 
    width: 47%;	/* ボックスの横幅を指定する */
    height: 36px;	/* ボックスの高さを指定する */
    line-height:40px;
    color: #ffffff;	/* フォントの色を指定 */
    text-align: center;	/* テキストのセンタリングを指定する */
    border-radius: 5px;	/* 角丸を指定する */
    margin:0 0 10px 0;
            }
  
