@charset "UTF-8";

/* ===================
Questionnaire Page 
======================*/
.question{
 padding: 2rem 3% 4rem 
}
.question .read-txt{
 margin-bottom: 2rem;
 line-height: 1.6;
}
.required{
 color: var(--main-red);
 font-size: 1.3rem;
}
.form-wrap{
 background: var(--base);
 border: 2px solid var(--acnt-black);
 margin-bottom: 3rem;
}
.form-wrap dt{
 background: var(--acnt-black);
 color: var(--base);
 padding: .8rem .5rem;
 font-weight: 600;
}
.form-wrap dd{
 padding: 1.3rem 1.3rem;
}
.form-wrap .form-txt{
 border: 1px solid var(--gray2);
 border-radius: .5rem;
 padding: 1.1rem 1.5rem;
 width: 100%;
 font-size: 1.4rem;
}
.form-wrap .form-txt2{
 border: 1px solid var(--gray2);
 border-radius: .5rem;
 padding: 1.1rem 1.5rem;
 width: 40%;
 font-size: 1.4rem;
 margin-right: 1rem;
}
.form-wrap .form-txt2:last-of-type{
 margin-right: 0;
}
.form-wrap .select{
 font-size: 1.4rem;
 padding: 1.1rem 1.5rem;
 border-radius: .5rem;
 border: 1px solid var(--gray2);
 background-image: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, .4) 50%), linear-gradient(-45deg, transparent 50%, rgba(0, 0, 0, .4) 50%);
 background-size: 5px 5px, 5px 5px;
 background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
 background-repeat: no-repeat;
 vertical-align: bottom;
 width: 100%;
}
.form-wrap dd ul.flexW li{
 display: flex;
 align-items: center;
 width: 30%;
}
.form-wrap dd ul.flexW li:last-child{
 width: 25%;
}
.form-wrap dd ul.flexW li span{
 display: block;
 margin: 0 1rem;
}
.form-wrap dd .textarea {
 border: 1px solid var(--gray2);
 width: 100%;
 border-radius: .5rem;
 padding: 1.1rem 1.5rem;
 box-sizing: border-box;
 max-width: 768px;
 height: 120px;
 max-height: 120px;
 line-height: 1.6;
 font-size: 1.6rem;
}
.mood .select{
 margin-bottom: 1rem;
}
.mood p{
 margin-bottom: 0.5rem;
}
.scoring .flexW{
flex-wrap: nowrap;
}
/* radio */
.form-wrap .flexW{
 gap: 2rem;
}
.form-wrap .multiple > div:first-of-type,
.form-wrap .multiple p{
 margin-bottom: 1rem;
}
.form-group{
 font-size: 1.6rem;
}
.custom-radio {
 display: none;
}
.custom-radio + label {
 font-weight: normal;
 cursor: pointer;
}
.custom-radio + label span {
 display: inline-block;
 vertical-align: bottom;
 margin-right: 5px;
 width: 18px;
 height: 18px;
 cursor: pointer;
 border-radius: 50%;
 position: relative;
 border: 1px solid var(--main-red);
}
.custom-radio + label span::before {
 content: "";
 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
 opacity: 0;
 width: 9px;
 height: 9px;
 border-radius: 50%;
 background-color: var(--main-red);
 position: absolute;
 left: 50%;
 top: 50%;
 bottom: auto;
 right: auto;
 transform: translate(-50%, -50%);
 transition: opacity 0.2s;
}
.custom-radio:checked + label span::before {
 filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
 opacity: 1;
}
.custom-radio:disabled + label {
 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
 opacity: 0.5;
}
.custom-radio:disabled + label, .custom-radio:disabled + label span {
 cursor: default;
}
/* 戻るボタン */
.return-btn{
  width: 140px;
}
.return-btn::after{
  background: var(--main-red);
}
.confirm-btn.flexC{
  gap: 1rem;
}
.return-btn:hover::after{
  background: var(--acnt-black);
}

/* error */
.form .error .error-message{
  color: var(--main-red);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.form .error .form-txt,
.form .error .textarea{
  border: 1px solid var(--main-red);
}
/* entry */
.entry dd.flexW{
  flex-wrap: nowrap;
  align-items: flex-end;
}

/* checkbox */
.control {
  display: block;
  position: relative;
  padding-left: 25px;
  padding-top: 3px;
  /* margin-bottom: 15px; */
  cursor: pointer;
  font-size: 1.6rem;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 16px;
  width: 16px;
  background: #e6e6e6;
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}
.control input:checked ~ .control__indicator {
  background: var(--main-red);
}
/* .control:hover input:not([disabled]):checked ~ .control__indicator, */
.control input:checked:focus ~ .control__indicator {
  background: #d0001d;
}
/* .control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
} */
.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/* .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
} */
.checkbox-area p{
  margin-bottom: 1rem;
}
.checkbox-area .flexW{
  gap: 1rem;
  margin: 1rem 0 2rem;
}
.checkbox-area .flexW.select-time{
  flex-wrap: nowrap;
  align-items: center;
  font-size: 1.6rem;
}
.checkbox-area .select-time .select{
  width: 30%;
}

/* 年齢 */
.review .read-txt{
  margin-bottom: .5rem;
 } 
.age-txt .form-txt{
  width: 20%;
  vertical-align: bottom;
  margin-right: .5rem;
}