/**
  * 　ボタン　申込みはこちら
  */

  .btn-f{

    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 0.5rem;
    border: none;
    white-space: nowrap;    
  }
  @media screen and (max-width: 480px) {
    .btn-f{
      width: 100%;
    }    
  }
  
  .btn--green,
  a.btn--green {
    color: #fff;
    background-color: #3EBB44;
  }
  .btn--green:hover,
  a.btn--green:hover,
  .btn--gray:hover,
  a.btn--gray:hover{
    color: #fff;
    background: #8BD990;
  }

  .btn--gray,
  a.btn--gray {
    color: #fff;
    background-color: #7C7C7C;
  }




  .alert-danger {
    --bs-alert-color: var(--bs-danger-text-emphasis);
    --bs-alert-bg: var(--bs-danger-bg-subtle);
    --bs-alert-border-color: var(--bs-danger-border-subtle);
    --bs-alert-link-color: var(--bs-danger-text-emphasis);
  }

  .alert {
    width: 100%;
    padding: 20px 50px;
    border-radius: 0.5em;
  }

  .alert-danger {
    background-color: #FBD4DB;
    border: solid 2px #F7A5B3;
  }


/*
* プログレスバー
*/
.progressbar {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33.333%;
  color: #999999;
  font-weight: bold;
  counter-increment: steps;
}
.progressbar li:before {
  display: block;
  width: 26px;
  height: 26px;
  margin: 7px auto 20px auto;
  content: '';
  line-height: 26px;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
  background-color: #F5F5F5;
  content: counter(steps);
  
}
.progressbar li:after {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #F5F5F5;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active,
.progressbar li.complet,
.progressbar li.active:after,
.progressbar li.complete:after {
  color: #3EBB44;
}
.progressbar li.active:before,
.progressbar li.complete:before,
.radiobutton:checked + label {
  background-color: #3EBB44;
  color: #FFF;
}


/*
* 性別のラジオボタン
*/
.radiobutton {
  display: none;
}


.radiobox label {
  background-color: #B2B2B2;
  padding: 10px 20px;
  font-weight: bold;
  color: #fff;
}


/*
* form
*/
.form-e_row{

  border-top: 1px solid #d0d0d0;
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  padding-left: 20%;
}

.form-flex{
  display: flex;
}

.f-select{

  width: 12rem;
  margin-right: 1rem;
}

.form-f_item{
  margin-right: 50px;
  margin-bottom: 30px;
}


.form-textAlignCenter{ 
  text-align: center;
  margin: 0 auto;
}
.form-margin0Auto{
  
  margin: 0 auto;
}
.form-textAliginCenter{
  text-align: center;
}

/*
* margin left
*/
.from-margin-left10{
  margin-left: 10px;
}


/*
* margin bottom
*/
.form-marginBottom50{
  margin-bottom: 50px;
}
.form-marginBottom30{
  margin-bottom: 30px;
}
.form-marginBottom20{
  margin-bottom: 20px;
}


/*
* padding left
*/
.form-confirm > section {
  padding-left: 20%;
}

/*
* width
*/
.f-wid_13 > *:first-child {
  width: 13rem;
}

.width80{
  width: 80%;
}

.width60{
  width: 60%;
}

.width50,.birthdayWidth50{
  width: 50%;
}

.width40,.birthdayWidth40{
  width: 40%;
}

.width30,.birthdayWidth30{
  width: 30%;
}

.width20{
  width: 20%;
}

.width15{
  width: 15%;
}

.width10{
  width: 10%;
}


/*
* 必須マーク
*/

.form-e_row span.required:after,
.l-lesson_row span.required:after,
.form-confirm_row  span.required:after {
  padding: 0px 6px 0px 6px;
  font-size: 0.9em;
  color: #C44;
  background-color: white;
  border: solid 2px #C44;
  content: "必須";
}


/*
* 予約ボタン　固定
*/
.sp-fixed {
  position: sticky;
  bottom: 0;
}

/*
* セレクトボックス
*/

.f-complete{
  width: 100%;
}


@media screen and (min-width: 768px) {

  .selectGreen {
    position: relative;  
  }

  .selectGreen::before,
  .selectGreen::after {
    position: absolute;
    content: '';
    pointer-events: none;
  }
}

.selectGreen select {
  appearance: none;
  height: 2.8em;
  padding: .4em 3.6em .4em .8em;
  border: 2px solid #000;
  border-radius: 3px;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 15px;
}

.option:hover {
  background:#666;
}

/* ボタン全体 */
.btn_form {
  width: 100px;
  height: 40px; 
  background-color: #fff;
  color: #000; 
  font-weight: 400;
  border-radius: 5px;
  font-size: 16px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
  border: 2.5px solid #0CA013;
  margin-top: 20px;
}

/* ボタンにマウスカーソルが乗った時 */
.btn_form:hover {
  background-color: #0CA013; /* 少し暗い緑色 */
}

.visitDate_dd{
  
  height: 40px; 
  background-color: #fff;
  color: #000; 
  margin-right: 5px;
  margin-bottom: 10px;

}
.visitDateTime_dd{
  height: 40px; 
  background-color: #fff; 
  color: #000; 
}

.form-e_row input[type="text"], .form-e_row input[type="number"]{
  height: 40px; 
}

.reservation .hpText{
  margin-bottom: 10px;
  padding: 20px;
  border: 2px solid #000;
  border-radius: 8px;
  position:relative;
  width: 600px;
}
.reservation .hpText::before {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  position: absolute;
  padding: 0 20px;
  left: 10px;
  top: -10px;
}
.visitDateText::before{
  content: "園内見学について";
}
.explanationDateText::before{
  content: "説明会について";
}

.reservation .hpText h2 {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  position: absolute;
  padding: 0 20px;
  left: 10px;
  top: -14px;
}

.flex{
  display: flex;
  width: 70%;
}


.form-confirm_row{
    margin-top: 2.25rem;
    padding-top: 2.25rem;
    border-top: 1px solid #d0d0d0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.form-confirm{
  margin: 0 auto;
  width: 600px;
}
.form-confirm > p {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
.f-m_tb02{
  margin-top: 0.2rem;
}
.form-confirm_row {
  dd{
    width: 200%;
  }
}

.form-confirm {
  width: 100%;
}

.btn-center{
  margin: 0 auto;


}
@media screen and (max-width: 768px) {

  .selectGreen {
    position: block;  
    width: 100%;
  }

  .reservation .hpText, .remarks{
    width: 100%;
  }

  .reservation .form-e_row{
    padding: 0px;
    margin: 0 auto;
  }

  .form-flex{
    display: block;
  }



  .marginTop30{
    margin-top: 30px;
  }

  h3{
    margin-top: 30px;
  }

  .inputTextWidth90{
    width: 90%;
    height: 200%;
  }

  .inputTextWidth100{
    width: 100%;
    height: 200%;
  }

  .flex{
    /* display: block; */
    width: 100%;
  }
  .width10{
    width: 15%;
    margin-left: 30px;
  }

  .f-p_l20{
    padding-left: 0px;
  }

  .form-confirm_row{
    display: block;
  }

  .form-confirm_row{
    .btn-f{
      padding: 0.3rem 1.0rem;
      font-size: 120%;
    }
  }

  .form-width100{
    width: 100%;
  }

}

@media screen and (max-width:480px) {
  

  .reservation .form-e_row{
    padding: 0px;
    margin: 0 auto;
  }

.form-confirm_row {
  dd{
      width: 100%;
  }
    .btn-f{
      padding: 0.3rem 1.0rem;
      font-size: 120%;
    }

}


}