
/* **************************
  .c--common-form
************************** */
.c--common-form form input[type="checkbox"]{
  display: none;
}
.c--common-form form input[type="checkbox"] ~ label{
  color: #333;
  padding-left: 32px;
  display: block;
  position: relative;
}
.c--common-form form input[type="checkbox"] ~ label:after,
.c--common-form form input[type="checkbox"] ~ label::before{
  background-color: #333;
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 8px;
}
.c--common-form form input[type="checkbox"] ~ label:after{
  margin-top: -9px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.c--common-form form input[type="checkbox"] ~ label:before{
  left: 15px;
  margin-top: -6px;
  width: 7px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
  z-index: 1;
}
.c--common-form form input[type="checkbox"]:checked ~ label:before{
  opacity: 1;
}

.c--common-form form input[type="checkbox"] ~ label span{
  display: block;
}

@media screen and (min-width: 768px) {
  .c--common-form form{
    max-width: 600px;
    margin: auto;
    width: 100%;
  }
  .c--common-form form > dl{
    padding-bottom: 28px;
    overflow: hidden;
    width: 100%;
  }
  .c--common-form form > dl:last-of-type{
    padding-bottom: 40px;
  }
  .c--common-form form > dl> dt{
    /*
    background-color: #f4f4f4;
    border: 1px solid #b0afaf;
    */
    padding-left: 6px;
    padding: 0 0 3px 6px;
    width: 100%;
    color: #606060;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c--common-form form > dl> dt > span{
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c--common-form form > dl > dd{
    /*
    background-color: #f4f4f4;
    border-top: 1px solid #b0afaf;
    border-top: 1px solid #b0afaf;
    border-top: 1px solid #b0afaf;
    */
    margin-bottom: 5px;
    width: 100%
  }
  .c--common-form form > dl > dd:last-of-type{
    margin-bottom: 0;
  }
  .c--common-form form > dl.for-2-input > dd{
    float: left;
    margin-right: 1%;
    width: 49.5%;
  }
  .c--common-form form > dl.for-2-input > dd:last-of-type{
    margin-right: 0;
  }
  .c--common-form form input[type='text'],
  .c--common-form form input[type='email'],
  .c--common-form form input[type='password'],
  .c--common-form form textarea,
  .c--common-form form select{
    border: 1px solid #bdbdbd;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #969696;
    padding: 8px 15px;
    width: 100%;
    /*font-size: 14px;
    font-size: 0.875rem;*/
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .c--common-form form textarea{
    height: 250px;
  }
  .c--common-form form select{
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../../img/arrow-selectbox-icon.png);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 8px;
    background-color: #fff;
    font-family: inherit;
    font-size: 15px;
    
    background: url(/file/sg_img/common/icon--sp-form-selectbox-arrow.png) no-repeat center right 8px;
    background-color: #fff;
    background-size: 10px auto;
  }
  .c--common-form dt span{
    color: red;
    font-size: 14px;
    font-size: 0.875rem;
    margin-left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .c--common-form form{
    padding: 0;
  }
  .c--common-form form > dl{
    padding-bottom: 20px;
    overflow: hidden;
    width: 100%;
  }
  .c--common-form form > dl:last-of-type{
    padding-bottom: 40px;
  }
  .c--common-form form > dl> dt{
    padding: 0 0 3px 8px;
    width: 100%;
    font-size: 12px;
    font-size: 0.75rem;
    color: #212121;
  }
  .c--common-form dt span{
    color: red;
    font-size: 12px;
    font-size: 0.75rem;
    margin-left: 10px;
  }
  .c--common-form form > dl > dd{
    /*margin-bottom: 5px;
    width: 100%*/
    margin: 0 20px 5px;
  }
  .c--common-form form > dl > dd:last-of-type{
    margin-bottom: 0;
  }
  .c--common-form form > dl.for-2-input > dd{
    float: left;
    margin-right: 3%;
    width: 48.5%
  }
  .c--common-form form > dl.for-2-input > dd:last-of-type{
    margin-right: 0;
  }
  .c--common-form form input[type='text'],
  .c--common-form form input[type='email'],
  .c--common-form form input[type='password'],
  .c--common-form form textarea,
  .c--common-form form select
  {
    border: 1px solid #b0afaf;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #3d3d3d;
    padding: 3px 8px;
    width: 100%;
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .c--common-form form textarea{
    height: 170px;
  }
  .c--common-form form select{
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../../img/arrow-selectbox-icon.png);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 8px;
    background-color: #fff;
    font-family: inherit;
    font-size: 15px;
    
    background: url(/file/sg_img/common/icon--sp-form-selectbox-arrow.png) no-repeat center right 8px;
    background-color: #fff;
    background-size: 9px auto;
  }
  .c--common-form .form-message{
    /*font-size: 15px;
    font-size: 0.9375rem;*/
    /*color: #8e8e8e;*/
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    margin: 0 auto 5px;
  }
  .c--common-form img{
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin: 0 auto;
  }
  .login-form-group{
    padding-bottom: 50px;
  }
}



@media screen and (min-width: 768px) {
  .c--common-form.out-of-focus{
    display: none;
  }
}

/* **************************
  .c--form-title
************************** */
.c--form-title{
  background-color: #eeeeee;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c--form-title{
    background-color: #f6f6f6;
    border: 1px solid #c9c9c9;
    color: #8e8e8e;
    margin-bottom: 20px;
    padding: 9.5px 15px;
  }
}
@media screen and (min-width: 768px) {
  .c--form-title{
    border-radius: 3px;
    color: #616161;
    margin-bottom: 20px;
    padding: 15px;
  }
  .p--article-content{
    padding: 8px 11px;
  }
}
@media screen and (min-width: 768px) and ( max-width: 992px) {
}
@media screen and (min-width: 993px) and ( max-width: 1199px) {
}
@media screen and (min-width: 1200px) {

}

/* **************************
  .c--member-form-entry-method
************************** */
.c--member-form-entry-method > div{
  color: #333;
  padding: 10px 15px;
}
.c--member-form-entry-method > div.for-focus{
  background-color: #ff3815;
  color: #fff;
  cursor : pointer;
}
.c--member-form-entry-method > div:hover{
  background-color: #ff3815;
  color: #fff;
  cursor : pointer;
}
.c--member-form-entry-method > div:nth-of-type(1){
  border-top: 1px solid #c2c2c2;
  border-left: 1px solid #c2c2c2;
  border-right: 1px solid #c2c2c2;
  border-radius: 5px 5px 0 0;
}
.c--member-form-entry-method > div:nth-of-type(2){
  border-left: 1px solid #c2c2c2;
  border-right: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  border-radius: 0 0 5px 5px;
}
/*.c--member-form-entry-method > div:nth-of-type(1){
  border-top: 1px solid #c2c2c2;
  border-left: 1px solid #c2c2c2;
  border-right: 1px solid #c2c2c2;
  border-radius: 5px 5px 0 0;
}
.c--member-form-entry-method > div:nth-of-type(2){
  border-right: 1px solid #c2c2c2;
  border-left: 1px solid #c2c2c2;
}
.c--member-form-entry-method > div:nth-of-type(3){
  border-left: 1px solid #c2c2c2;
  border-right: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  border-radius: 0 0 5px 5px;
}*/
@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) {
  .c--member-form-entry-method > div{
    font-size: 15px;
    font-size: 0.9375rem;
    cursor: pointer;
  }

}


/* =====================
 .c--input-confirm
===================== */
.c--input-confirm > dl {
  display: block;
  /*padding-bottom: 28px;*/
}
.c--input-confirm > dl > dt{
  background-color: #eeeeee;
}
.c--input-confirm > dl > dd{
}
@media screen and (max-width: 767px) {
  .c--input-confirm{
    margin-bottom: 30px;
  }
  .c--input-confirm > dl {
    margin-bottom: 30px;
  }
  .c--input-confirm > dl > dt{
    background-color: #f6f6f6;
    border: 1px solid #c9c9c9;
    color: #8e8e8e;
    padding: 9.5px 15px;
    font-size: 15px;
    font-size: 0.9275rem;
    font-weight: normal;
    margin: 0 15px;
  }
  .c--input-confirm > dl  > dd{
    padding: 12px 5.5px;
    font-size: 13px;
    font-size: 0.8125rem;
    margin: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .c--input-confirm{
    margin-bottom: 30px;
  }
  .c--input-confirm > dl {
    margin-bottom: 30px;
  }
  .c--input-confirm > dl > dt{
    border-radius: 3px;
    color: #616161;
    padding: 15px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
  }
  .c--input-confirm > dl > dd{
    padding: 8px 11px;
    font-size: 16px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) and ( max-width: 992px) {
}
@media screen and (min-width: 993px) and ( max-width: 1199px) {
}
@media screen and (min-width: 1200px) {

}


/* =====================
  c--form-btn
===================== */
.c--form-btn{
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: block;
  padding: 12px 0;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
}
.c--form-btn:hover{
  background-color: #fff;
  color: #212121;
  text-decoration: none;
}
@media screen and (max-width: 320px) {
  .c--form-btn{
    padding: 11.5px 0;
  }
}
@media screen and (max-width: 767px) {
  .c--form-btn{
    text-align: center;
  }
  .c--form-btn{
    padding: 8px 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) and ( max-width: 992px) {
  .c--form-btn{
    max-width: 200px;
  }
}
@media screen and (min-width: 993px) and ( max-width: 1199px) {
  .c--form-btn{
    max-width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .c--form-btn{
    max-width: 300px;
  }
}

/* =====================
  c--form-btn-black
===================== */
.c--form-btn-black{
  background-color: #424242;
  background-repeat: no-repeat;
  border: none;
  text-align: center;
}
.c--form-btn-black:hover{
  background-color: #212121;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  /*
  .c--form-btn-black{
    background-image: url("/file/sg_img/common/icon--sp-pen-white.png");
    background-size: 15px 15px;
    background-position: left 25px center;
    padding-left: 26px;
  }
  .c--form-btn-black:hover{
    background-image: url("/file/sg_img/common/icon--sp-pen-black.png");
  }
  */
}
@media screen and (min-width: 768px) {
  /*
  .c--form-btn-black{
    background-image: url("/file/sg_img/common/icon--pen-white.png");
    background-size: 15px 15px;
    background-position: left 36px center;
    padding-left: 61px;
  }
  .c--form-btn-black:hover{
    background-image: url("/file/sg_img/common/icon--pen-black.png");
  }
  */
}

/* =====================
  c--form-btn-red
===================== */
.c--form-btn-red{
  background-color: #FF7043;
  background-repeat: no-repeat;
  border: none;
  text-align: center;
}
.c--form-btn-red:hover{
  background-color: #FF5722;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  /*
  .c--form-btn-red{
    background-image: url("/file/sg_img/common/icon--sp-pen-white.png");
    background-size: 15px 15px;
    background-position: left 25px center;
    padding-left: 26px;
  }
  .c--form-btn-red:hover{
    background-image: url("/file/sg_img/common/icon--sp-pen-black.png");
  }
  */
}
@media screen and (min-width: 768px) {
  /*
  .c--form-btn-red{
    background-image: url("/file/sg_img/common/icon--pen-white.png");
    background-size: 15px 15px;
    background-position: left 36px center;
    padding-left: 61px;
  }
  .c--form-btn-red:hover{
    background-image: url("/file/sg_img/common/icon--pen-black.png");
  }
  */
}

/* **************************
  .c--fin-message
************************** */
.c--fin-message{
  padding: 0 15px;
}
.c--fin-message .top-fin-message{
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c--fin-message{
    padding: 0;
  }
}
@media screen and (min-width: 993px) {
}
@media screen and (min-width: 1200px) {
}


/* **************************
  .c--form-search-block
************************** */
@media screen and (max-width: 767px) {
  .c--form-textarea{
    border: solid 1px #bdbdbd;
    font-size: 11px;
    font-size: 0.6875rem;
    padding: 10px 15px;
    color: #969696;
    width: 100%;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
  }
}
@media screen and (min-width: 768px) {
  .c--form-textarea{
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: solid 1px #bdbdbd;
    width: 100%;
    color: #969696;
  }
}
@media screen and (min-width: 768px) and ( max-width: 992px) {
  .c--form-textarea{
    font-size: 12px;
    font-size: 0.75rem;
    padding: 8px 5px;
  }
}
@media screen and (min-width: 993px) and ( max-width: 1199px) {
  .c--form-textarea{
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 8px 10px;
  }
}
@media screen and (min-width: 1200px) {
  .c--form-textarea{
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 8px 15px;
  }
}


/* **************************
  .c--form-title-set-group
************************** */
@media screen and (max-width: 767px) {
  .c--form-title-set-group dt{
    font-size: 12px;
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: #212121;
  }
}
@media screen and (min-width: 768px) {
  .c--form-title-set-group dt{
    margin-bottom: 10px;
    color: #606060;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
  }
}
@media screen and (min-width: 768px) and ( max-width: 992px) {
  .c--form-title-set-group dt{
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 993px) and ( max-width: 1199px) {
  .c--form-title-set-group dt{
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 1200px) {
  .c--form-title-set-group dt{
    font-size: 14px;
    font-size: 0.875rem;
  }
}



/* **************************
  .c--form-selectbox
************************** */
@media screen and (max-width: 767px) {
  .c--form-selectbox{
    border: solid 1px #bdbdbd;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    width: 100%;
    background-color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    font-size: 0.75rem;
    color: #969696;
    -moz-appearance: none;
	  -webkit-appearance: none;
	  appearance: none;
    background: url(../../../sg_img/common/icon--sp-form-selectbox-arrow.png) no-repeat center right 8px;
    background-size: 10px auto;
  }
}
@media screen and (min-width: 768px) {
  .c--form-selectbox{
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: solid 1px #bdbdbd;
    width: 100%;
    background-color: #fff;
    height: 35px;
    padding: 0px 15px;
    font-size: 13px;
    font-size: 0.8125rem;
    color: #969696;
    -moz-appearance: none;
	  -webkit-appearance: none;
	  appearance: none;
    background: url(../../../sg_img/common/icon--form-selectbox-arrow.png) no-repeat center right 8px;
  }
}


/* **************************
  .c--form-radio-button-group
************************** */
@media screen and (max-width: 767px) {
  .c--form-radio-button-group{
    overflow: hidden;
    margin: 0 auto;
  }
  .c--form-radio-button{
    display: none;
  }
  .c--form-label{
    margin-right: 5px;
    margin-bottom: 8px;
    border: solid 1px #bdbdbd;
    display: block;
    height: 35px;
    line-height: 35px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    color: #969696;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    font-size: 0.75rem;
    float: left;
    width: 45%;
    width : -webkit-calc(50% - 5px);
    width: calc(50% - 5px);
  }
  .c--form-radio-button:checked + label{
    background-color: #e0e0e0;
    border: solid 1px #e0e0e0;
    color: #5d5d5d;
  }
}
@media screen and (min-width: 768px) {
  .c--form-radio-button-group{
    overflow: hidden;
    margin: 0 auto;
  }
  .c--form-radio-button{
    display: none;
  }
  .c--form-label{
    margin-right: 5px;
    margin-bottom: 8px;
    border: solid 1px #bdbdbd;
    display: block;
    height: 35px;
    line-height: 35px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    color: #969696;
    text-align: center;
    cursor: pointer;
  }
  .c--form-radio-button:checked + label{
    background-color: #e0e0e0;
    border: solid 1px #e0e0e0;
    color: #757575;
  }
  .c--form-label:hover{
    filter:alpha(opacity=70) !important;
    -moz-opacity:0.7 !important;
    opacity:0.7 !important;
  }
}
@media screen and (min-width: 768px) and ( max-width: 992px) {
  .c--form-label{
    font-size: 12px;
    font-size: 0.75rem;
    width: 100%;
  }
}
@media screen and (min-width: 993px) and ( max-width: 1199px) {
  .c--form-label{
    font-size: 13px;
    font-size: 0.8125rem;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .c--form-label{
    font-size: 13px;
    font-size: 0.8125rem;
    float: left;
    width: 45%;
    width : -webkit-calc(50% - 5px);
    width: calc(50% - 5px);
  }
}


/* **************************
  .c--form-short-textarea-group
************************** */
@media screen and (max-width: 767px) {
  .c--form-short-textarea-group{
    display:table;
    table-layout:fixed;
    width: 100%;
  }
  .c--form-short-textarea{
    display:table-cell;
    width: 50%;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .c--form-short-textarea input{
    font-size: 12px;
    font-size: 0.75rem;
    border: solid 1px #bdbdbd;
    padding: 8px 15px;
    width: 80%;
    width : -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    margin-right: 4px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
  }
}
@media screen and (min-width: 768px) {
  .c--form-short-textarea-group{
    width: 100%;
  }
  .c--form-short-textarea{
    width: 50%;
    color: #606060;
  }
  .c--form-short-textarea input{
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: solid 1px #bdbdbd;
    color: #969696;
    margin-right: 4px;
  }
}
@media screen and (min-width: 768px) and ( max-width: 992px) {
  .c--form-short-textarea{
    width: 100%;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .c--form-short-textarea input{
    font-size: 12px;
    font-size: 0.75rem;
    padding: 8px 15px;
    width: 80%;
    width : -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 993px) and ( max-width: 1199px) {
  .c--form-short-textarea-group{
    display:table;
    table-layout:fixed;
  }
  .c--form-short-textarea{
    display:table-cell;
    width: 50%;
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .c--form-short-textarea input{
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 8px 15px;
    width: 80%;
    width : -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    margin-right: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .c--form-short-textarea-group{
    display:table;
    table-layout:fixed;
  }
  .c--form-short-textarea{
    display:table-cell;
    width: 50%;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c--form-short-textarea input{
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 8px 15px;
    width: 80%;
    width : -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    margin-right: 4px;
  }
}


/* **************************
  .c--form-submit-button
************************** */
@media screen and (max-width: 767px) {
  .c--form-submit-button{
    position:relative;
    height: 35px;
  }
  .c--form-submit-button input{
    height: 35px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    outline: 0;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border: solid 1px #232529;
    text-align: center;
    background-color: #fff;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .c--form-submit-button .submit-btn{
    position: absolute;
    right: 5px;
    top: 0;
    color: #232529;
    border: none;
    font-size: 12px;
    font-size: 0.75rem;
    outline: 0;
    height: 35px;
    background:none;
    border: none;
  }
  .c--form-submit-button .submit-btn .fa-search{
    width: 18px;
    height: 18px;
  }
}
@media screen and (min-width: 768px) {
  .c--form-submit-button{
    position:relative;
    height: 35px;
  }
  .c--form-submit-button input{
    height: 35px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    outline: 0;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border: solid 1px #232529;
    text-align: center;
    background-color: #fff;
  }
  .c--form-submit-button .submit-btn{
    position: absolute;
    right: 5px;
    top: 0;
    color: #232529;
    border: none;
    font-size: 15px;
    font-size: 0.9375rem;
    outline: 0;
    height: 35px;
    background:none;
    border: none;
  }
  .c--form-submit-button .submit-btn:hover{
    color: #969696;
  }
}
@media screen and (min-width: 768px) and ( max-width: 992px) {
  .c--form-submit-button{
    margin-right: 0px;
    margin-left: 0px;
  }
  .c--form-submit-button input{
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 993px) and ( max-width: 1199px) {
  .c--form-submit-button{
    margin-right: 0px;
    margin-left: 0px;
  }
  .c--form-submit-button input{
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 1200px) {
  .c--form-submit-button{
    margin-right: 15px;
    margin-left: 15px;
  }
  .c--form-submit-button input{
    font-size: 13px;
    font-size: 0.8125rem;
  }
}


/* **************************
  .js--sp-search-block
************************** */
@media screen and (max-width: 767px) {
  .js--sp-search-block{
    background-color: #fff;
    /*width: 100vw;*/
    /*height: auto;*/
    width: 100vw;
    height: 100vh;
    display: block;
    position: relative;
    z-index: 9998;
    top: 75px;
    left: -35px;
  }
  .js--sp-search-block .l--form-title-set-group{
    margin: 0 20px 15px;
  }
  .js--sp-search-block .l--form-title-set-and-selectbox-group{
    margin: 0 20px 5px;
  }
  .js--sp-search-block .l--form-radio-button-group{
    margin: 0 20px 15px;
  }
  .js--sp-search-block .l--ppv-form-submit-button{
    margin: 10px 20px 0;
  }
}
