/* step */
.step-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .step-sp {
    display: block;
  }
  .step-pc {
    display: none;
  }
}
.progress-bar {
  display: flex;
  margin: 60px 0;
  user-select: none;
}
.progress-bar .step {
  text-align: center;
  width: 100%;
  position: relative;
}
.progress-bar .step.active .bullet {
  color: #fff;
  transition: 0.3s;
  background-color: #113585;
}
.progress-bar .step.active .bullet span {
  color: #fff;
}
.progress-bar .step .bullet {
  background-color: #cfd7e7;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: relative;
}
.progress-bar .step .bullet span {
  font-size: var(--font20pt);
  font-weight: 600;
  z-index: 2;
  margin-left: 2.2rem;
}
.progress-bar .step:not(:nth-last-child(1)) .bullet::after {
  content: '';
  position: absolute;
  top: 0;
  right: -26px;
  width: 60px;
  height: 60px;
  transform: scale(0.707) rotate(45deg);

  z-index: 1;
  background-color: #cfd7e7;
  box-shadow: 3px -2px 0 0px rgb(255 255 255), 3px -3px 0 2px rgb(255 255 255);
  transition: 0.3s;
}
.progress-bar .step.active .bullet:after {
  transition: 0.3s;
  background-color: #113585;
}
@media screen and (max-width: 1130px) {
  .progress-bar .step .bullet span {
    font-size: min(1.7vw, 1.8rem);
    margin-left: 2rem;
  }
  .progress-bar .step:nth-child(1) .bullet span {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .progress-bar .step .bullet span {
    margin-left: 1rem;
    font-size: 1.6rem;
  }
  .progress-bar .step {
    width: 50%;
  }
  .progress-bar .step.step.active {
    width: 100%;
  }
  .progress-bar .step:not(:nth-last-child(1)) .bullet::after {
    top: -5px;
    right: -38px;
    width: 78px;
    height: 70px;
    transform: scale(0.434) rotate(63deg) skew(32deg);
  }
}
@media screen and (max-width: 640px) {
  .progress-bar .step .bullet span {
    font-size: min(4.8vw, 1.6rem);
    margin-left: 4vw;
  }
  .progress-bar {
    margin: 40px 0 40px;
  }
  .progress-bar .step {
    width: 30%;
  }
}
#estimate p,
#estimate span,
label,
input,
input[type='text'],
.form-area dt,
.form-area dt span,
.form-area dt p,
.form-area dd,
.form-area dd span,
.form-area dd select,
.form-area dd select option,
.form-area dd p,
.des-label p a,
.form-btn a,
input::placeholder,
.form-area.agree dd a,
.ui-datepicker-trigger,
.check-area p,
.estimate-box .estimate-close,
.complet-area .complet-sub,
.complet-box dl,
.complet-box dd,
.complet-box dt,
.small-des {
  font-family: 'Noto Sans JP';
  font-weight: 500;
}
::placeholder {
  color: #c7c7c7;
}
textarea {
  font-family: 'Noto Sans JP';
  font-weight: 400;
}

/* 共通bottom固定 */

#estimate {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  /* width: 100%; */
}
#estimate .estimate-box {
  /* width: 350px; */
  max-width: 100%;
  display: flex;
  align-items: center;
  background-color: #cbeaf7;
  float: right;
  padding: 2.8rem 4rem;
  border-radius: 1.5rem 1.5rem 0 0;
}
#estimate .estimate-box > p {
  text-align: left;
  font-size: var(--font16pt);
  font-weight: 500;
  color: #113686;
  line-height: 1.5;

  padding-right: 2rem;
}
#estimate .estimate-box .estimate-txt-area {
  border-left: 1px solid #113686;
  padding-left: 2rem;
}
#estimate .estimate-box .estimate-txt-area p {
  text-align: center;
  font-size: var(--font16pt);
  font-weight: var(--fontWeightDefault);
  color: #113686;
  /* display: flex;
  align-items: center; */
}
#estimate .estimate-box .estimate-txt-area p:nth-child(1) {
  background-color: #fff;
  color: #ed3a3a;
  border-radius: 5px;
}
#estimate .estimate-box .estimate-txt-area p:nth-child(2) {
  display: flex;
  align-items: end;
  margin-top: 1rem;
}
#estimate .estimate-box .estimate-txt-area p .estimate-price {
  font-size: var(--font26pt);
  /* font-weight: 700; */
  font-weight: 600;
  background-color: #fff;
  color: #ed3a3a;
  padding: 0 1.2rem;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 7px;
}
.estimate-box .estimate-close {
  display: none;
}
@media screen and (max-width: 640px) {
  #estimate {
    width: 100%;
  }
  #estimate .estimate-box {
    flex-direction: column;
    width: 100%;
    padding: 1.5rem 0;
    border-radius: 0px;
  }
  #estimate .estimate-box > p br {
    display: none;
  }
  #estimate .estimate-box .estimate-txt-area {
    border-left: none;
    padding-left: 0;
    padding-top: 1rem;
  }
  .estimate-box {
    position: relative;
  }
  .estimate-box .estimate-close {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -39px;
    left: 0;
    height: 40px;
    padding: 0.5rem 1.2rem;
    font-size: var(--font16pt);
    background-color: var(--gradationEnd);
    border-top-right-radius: 10px;
  }
  #estimate .estimate-box .estimate-close span {
    font-weight: 400;
  }
  .estimate-box .estimate-close img {
    margin-left: 0.5rem;
    max-width: 15px;
  }
  .disappear {
    display: none;
  }
  .estimate-close span {
    display: inline-block;
  }

  .estimate-close span:last-child {
    display: none;
  }
}
#main {
  max-width: 1280px;
  width: 90%;
  padding: 0;
}
a {
  text-decoration: none;
}

input::placeholder {
  font-weight: 300;
}
.form-area {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #c7c7c7;
  padding: 3.5rem 0;
  color: var(--fontColor);
}
.form-area.agree {
  flex-direction: column;
}
.form-area.agree dd {
  margin-left: 6.5rem;
  width: auto;
}
.form-area.agree dd p {
  margin: 2rem 0 3rem;
  font-size: var(--font16pt);
}
.check-style input[type='checkbox'] + label:before {
  width: 25px;
  height: 25px;
  background-color: #f4f4f4;
}
.check-style input[type='checkbox'] + label:after {
  content: '';
  display: block;
  transition: all 0.2s;
  transform: rotate(40deg);
  position: absolute;
  top: -9px;
  left: 7px;
  width: 13px;
  height: 27px;
  border-bottom: 4px solid #333333;
  border-right: 4px solid #333333;
  opacity: 0;
  margin: auto;
  bottom: 0;
}
label[for='prv'] {
  font-size: var(--font20pt);
}

.form-area:nth-last-of-type(1) {
  border-bottom: none;
  margin-bottom: 12rem;
  /* padding-bottom: 0; */
}
.form-area.btn-tsuika {
  border-bottom: none;
  margin-bottom: 12rem;
  padding-bottom: 0;
}
.form-area.cover {
  border-bottom: 1px solid #c7c7c7;
  margin-bottom: 4rem;
}
.cover-sm {
  font-family: 'Noto Sans JP';
  font-size: var(--font12pt);
  padding-bottom: 12rem;
}
.form-area dt {
  font-size: var(--font16pt);
  min-width: 260px;
  display: flex;
  align-items: start;
}

.form-area dt span {
  background-color: #ed3939;
  color: #fff;
  padding: 0rem 0.3rem;
  margin-top: 4px;
  margin-right: 2rem;
  font-size: var(--font12pt);
}
.form-area dt .not-required {
  margin-left: 5rem;
}
.form-area dd {
  font-size: var(--font20pt);
  width: 100%;
}
.form-area dd input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  box-shadow: 0 0 0 1000px white inset;
}
.form-area dd .input-error {
  font-family: 'Noto Sans JP';
  font-weight: 500;
  font-size: var(--font16pt);
}
.form-area dd select[name^='comforter'] {
  /* font-size: min(1.6vw, 1.95rem); */
  width: 100%;
}
dd .type-area {
  display: flex;
}
.form-area dd input[name='sei'],
.form-area dd input[name='sei_kana'] {
  margin-right: 2rem;
}
input[name^='sei'],
input[name^='na'],
input[name^='sei_kana'],
input[name^='na_kana'] {
  max-width: 46%;
}
input[name^='shop'] {
  width: 70%;
}
input[name^='number'] {
  width: max(300px, 40%);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('../images/select-arrow.png');
  background-position: right 15px center;
  background-repeat: no-repeat;
}
.form-area dd select,
.form-area input[type='text'],
.form-area textarea {
  background-color: #f3f3f3;
  border: 1px solid var(--fontColor);
  box-shadow: 0 1px 1px rgb(0 0 0 / 8%) inset;
  line-height: 1.42857;
  padding: 6px 40px 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  color: var(--fontColor);
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.form-area dd select {
  font-weight: 400;
}
.form-area dd select option {
  font-weight: 400;
}
.form-area input[type='text'] {
  padding: 8px 1rem;
}
input[name^='tel'] {
  max-width: 80px;
  text-align: center;
  margin-right: 10px;
}
input[name^='textfield'] {
  width: 65px;
}

input[name^='add'] {
  width: 70%;
}

select[id^='pref'] {
  width: auto;
}
.form-area dd .select-des {
  margin-bottom: 2rem;
}
.form-area .des-label div {
  margin: 0.5rem 0;
}
.form-area .des-label p {
  font-size: var(--font16pt);
}
.form-area .des-label p a,
.form-area.agree dd a {
  text-decoration: underline;
  text-underline-position: under;
}
.app-course .des-label span {
  margin-right: 1.8rem;
}
.app-course .select-des span {
  font-size: var(--font16pt);
}
.form-area input[type='radio'] {
  min-width: 20px;
  min-height: 20px;
  accent-color: #333333;
  margin-right: 15px;
}
.form-area dd input[id='hope1'],
.form-area dd input[id='hope2'] {
  max-width: 240px;
}
.form-area dd .captcha-img {
  font-family: 'Noto Sans JP';
  font-weight: 500;
  font-size: var(--font16pt);
  padding: 5px 8px;
  background-color: #cbeaf7;
  margin-left: 2.3rem;
}
.form-area dd .captcha-area {
  display: flex;
  align-items: center;
}
.input-area {
  display: flex;
  align-items: center;
  margin-right: 5rem;
}

.type-txt {
  padding: 3rem 4rem;
  border: 1px solid var(--fontColor);
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.type-txt p {
  font-size: var(--font16pt);
}
.type-des {
  margin-top: 2rem;
}
.type-des p {
  font-size: var(--font12pt);
}
form .btn-area {
  margin-bottom: 12rem;
}
.form-btn {
  height: 100%;
  vertical-align: bottom;
  margin-left: 2rem;
  transition: 0.3s;
}
.form-btn:hover {
  opacity: 0.8;
}
.form-btn a,
.ui-datepicker-trigger {
  font-size: var(--font16pt);
  background-color: var(--gradationEnd);
  color: #fff;
  display: inline-block;
  padding: 0.4rem 1rem;
}
/* カレンダー */
#ui-datepicker-div div,
#ui-datepicker-div span,
#ui-datepicker-div p,
#ui-datepicker-div a {
  font-family: 'Noto Sans JP';
}
#ui-datepicker-div {
  max-width: 240px;
  width: 100%;
  z-index: 2 !important;
}
.ui-datepicker-trigger {
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  outline: medium none;
  box-shadow: none;
  transition: 0.3s;
}
.ui-datepicker-trigger:hover {
  background-color: var(--gradationEnd);
  border: none;
  box-shadow: none;
  opacity: 0.8;
}
@media screen and (max-width: 900px) {
  .type-txt {
    padding: 2rem 3rem;
  }
  .type-txt p {
    font-size: min(1.4vw, 1.5rem);
  }
}
@media screen and (max-width: 768px) {
  .form-area {
    flex-direction: column;
  }
  .type-txt {
    flex: 1;
  }
  .type-txt p {
    font-size: var(--font16pt);
  }
  .form-area dt {
    margin-bottom: 2rem;
    width: auto;
  }
  .form-area dt p br {
    display: none;
  }
  .form-area dd {
    font-size: min(2.4vw, 1.95rem);
  }
  .input-area {
    flex-direction: column;
    margin-right: 3.5rem;
  }
  .netcolor .input-area {
    flex-direction: initial;
    align-items: start;
  }
  .form-area.netcolor input[type='radio'] {
    margin-right: 15px;
    margin-bottom: 0;
  }
  .form-area input[type='radio'] {
    min-width: 30px;
    min-height: 30px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .form-area .des-label input[type='radio'] {
    margin-bottom: 0;
    margin-right: 15px;
  }
  .form-area .des-label div {
    display: flex;
    align-items: start;
    margin-bottom: 12px;
  }
  .form-area.agree dd,
  .form-area dt .not-required {
    margin: 0;
  }
}
@media screen and (max-width: 640px) {
  .form-area:nth-last-of-type(1) {
    margin-bottom: 6rem;
  }
  .form-area dt,
  .form-area dd .input-error {
    font-size: min(3.5vw, 1.5rem);
  }
  .form-area dd select {
    padding: 1.5rem 1rem;
    font-size: min(4.8vw, 1.6rem);
  }
  .form-area dd {
    font-size: min(4vw, 1.4rem);
  }
  .gra-btn.libl-bg {
    font-size: min(4.5vw, 1.6rem);
    order: 1;
    margin-right: 0;
    margin-top: 3rem;
  }

  .form-area dd input[name='sei'],
  .form-area dd input[name='sei_kana'] {
    margin-right: 0;
  }
  input[name^='sei'],
  .form-area dd input[name='sei_kana'],
  input[name^='na'],
  .form-area dd input[name='na_kana'],
  input[name='tel'] {
    width: 48%;
  }
  input[name^='na'] {
    float: right;
  }
  .form-area dd select {
    width: 100%;
  }
  input[name^='number'],
  input[name^='add'],
  input[name^='mail'],
  input[name^='mail2'],
  input[name^='shop'] {
    width: 100%;
  }
  .form-btn {
    font-size: min(3vw, 1.5rem);
    display: block;
    margin-top: 2rem;
  }
  .form-area input[type='text'] {
    padding: 1.5rem 1rem;
    font-size: min(4.8vw, 1.6rem);
    text-align: left;
  }
  input[name='textfield'],
  input[name^='zip'] {
    max-width: 110px;
  }
  .form-btn a {
    padding: 0.4rem 1.5rem;
  }
  .form-area dd input[id='hope1'],
  .form-area dd input[id='hope2'] {
    width: 55%;
  }
  #ui-datepicker-div {
    width: 50%;
  }
  .form-area dt span {
    width: auto;
    height: 100%;
  }
  .type-txt {
    padding: 1rem 2rem;
  }
  .type-txt p {
    font-size: min(2.9vw, 1.5rem);
  }
}
@media screen and (max-width: 513px) {
  .check-style input[type='checkbox'] + label:after {
    top: -35px;
  }
  .check-style input[type='checkbox'] + label:before {
    top: 16px;
  }
}
@media screen and (max-width: 480px) {
  .form-area dt span {
    min-width: 28px;
    font-size: min(3.5vw, 1.1rem);
    margin-right: 1rem;
    padding: 0 0.5rem;
  }
  .form-area dd input[id='hope1'],
  .form-area dd input[id='hope2'] {
    width: 48%;
  }
}
.sample {
  font-size: var(--font16pt);
  margin-top: 5px;
}
.year-sort {
  display: flex;
  align-items: end;
}
.year-sort input {
  margin-right: 2rem;
}
.form-area textarea {
  width: 100%;
  height: 130px;
}
/* 入力内容確認 */
form.check .form-area:nth-last-of-type(1) {
  border-bottom: 1px solid #c7c7c7;
  margin-bottom: 0;
}
.payment-des {
  font-size: var(--font16pt);
}
.form-area dd .check-price,
.form-area dd .check-price span {
  font-size: var(--font26pt);
  font-family: 'Noto Serif JP';
}
.form-area dd .check-price {
  margin: 2.5rem 0 1.5rem;
}
.check-list {
  font-size: var(--font16pt);
}
.check-list span {
  font-size: var(--font20pt);
}
.check-area {
  text-align: center;
  margin: 8rem 0;
}
.check-area p:nth-child(1) {
  font-size: var(--font20pt);
}
.check-area p:nth-child(2) {
  font-size: var(--font12pt);
}
/* お申し込み完了  */
.complet-area .complet-title {
  font-size: var(--font20pt);
  font-weight: var(--fontWeightDefault);
  text-align: center;
  margin-bottom: 4rem;
}
.complet-area .complet-sub {
  font-size: var(--font16pt);
  text-align: center;
  margin-bottom: 3rem;
}
.complet-box {
  background-color: #f7f7f7;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  max-width: 800px;
  width: 100%;
  margin: 10rem auto 15rem;
  padding: 4.2rem;
}
.small-des {
  font-size: var(--font12pt);
}
.complet-box dl {
  border-bottom: 1px solid #c7c7c7;
  display: flex;
  width: 100%;
  padding: 1.5rem 0;
}
.complet-box dl:nth-last-child(1) {
  border-bottom: none;
}
.complet-box dl:nth-child(1) {
  padding-top: 0;
}
.complet-box dl:nth-last-child(1) {
  padding-bottom: 0;
}
.complet-box dt {
  width: 20%;
  font-size: var(--font16pt);
  font-weight: 500;
}
.complet-box dd {
  width: calc(100% - 20%);
  font-size: var(--font16pt);
  font-weight: 400;
}
@media screen and (max-width: 640px) {
  .complet-area .complet-sub br {
    display: none;
  }
  .complet-area .complet-sub {
    text-align: left;
  }
  .complet-area .complet-title {
    margin-bottom: 3rem;
  }
  .complet-box {
    padding: 2.5rem;
    margin: 4rem auto 8rem;
  }
  .complet-box dl {
    flex-direction: column;
  }
  .complet-box dt,
  .complet-box dd {
    width: 100%;
  }
}
/* リメイク */
.remake .progress-bar .step.active .bullet {
  background-color: #00947d;
}
.remake .progress-bar .step:not(:nth-last-child(1)) .bullet::after {
  background-color: #b2dfd8;
}
.remake .progress-bar .step.active .bullet:after {
  background-color: #00947d;
}
.remake .progress-bar .step .bullet {
  background-color: #b2dfd8;
}
.remake .cart {
  display: flex;
  position: relative;
  margin-bottom: 50px;
}
/* remake form img frame */
.remake .cart > div img {
  border: 1px solid #c7c7c7;
}
.remake .cart .cart-title {
  position: absolute;
  font-size: var(--font26pt);
  font-weight: 600;
  top: -10px;
  left: 270px;
}
.remake .cart img {
  max-width: 250px;
}
.remake .cart .price-are {
  padding-top: 4rem;
  margin-left: 20px;
  font-size: var(--font16pt);
  font-weight: 600;
}
.remake .cart .price-are .btn-area {
  margin-bottom: 0;
  margin-top: 7rem;
}
.remake .cart .price-are p {
  font-family: 'Noto Sans JP';
  font-weight: 400;
}
.remake .price-are .price-txt {
  font-size: var(--font36pt);
  font-weight: 600;
  margin-left: 5px;
}
.remake .price-are .quantity-txt {
  font-size: var(--font20pt);
  font-weight: 600;
  margin-left: 5px;
}
.remake .form-area.border-top {
  border-top: 1px solid #c7c7c7;
}
@media screen and (max-width: 640px) {
  .remake .cart {
    flex-direction: column;
  }
  .remake .cart img {
    max-width: 100%;
    margin-top: 4rem;
  }
  .remake .cart .cart-title {
    left: 0;
  }
  .remake .cart .price-are {
    padding-top: 0;
    margin-left: 0;
  }
  .remake .cart .price-are .btn-area {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .remake .cart .cart-title {
    font-size: min(5.5vw, 2.4rem);
  }
  .remake .cart .price-are {
    font-size: min(3.5vw, 1.6rem);
  }
  .remake .price-are .price-txt {
    font-size: min(5.5vw, 3.3rem);
  }
  .remake .price-are .quantity-txt {
    font-size: min(4.5vw, 1.95rem);
  }
}
/* お問い合わせ */
.contact .progress-bar .step.active .bullet {
  background-color: #54b8e6;
}
.contact .progress-bar .step:not(:nth-last-child(1)) .bullet::after {
  background-color: #ddf1fa;
}
.contact .progress-bar .step.active .bullet:after {
  background-color: #54b8e6;
}
.contact .progress-bar .step .bullet {
  background-color: #ddf1fa;
}

.tel-contact {
  border: 1px solid #54b8e6;
  max-width: 720px;
  width: 100%;
  padding: 2.5rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 10rem;
}
.tel-area .tel-contact {
  margin: 5rem auto;
}
.tel-contact .tel-title {
  font-size: var(--font26pt);
  font-weight: 600;
  color: #54b8e6;
  margin-bottom: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel-contact .tel-title::before {
  content: '';
  flex-grow: 1;
  background: #54b8e6;
  height: 1px;
  line-height: 0px;
  margin-right: 15px;
}
.tel-contact .tel-title::after {
  content: '';
  flex-grow: 1;
  background: #54b8e6;
  height: 1px;
  line-height: 0px;
  margin-left: 15px;
}
.tel-contact .tel-des {
  font-size: var(--font16pt);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
.tel-contact .tel-num {
  font-size: var(--font24pt);
  /* font-weight: 700; */
  font-weight: 600;
  color: #04151f;
  margin: 0.5rem 0;
}
.tel-contact .des {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: var(--font15pt);
}
@media screen and (max-width: 640px) {
  .tel-contact {
    padding: 2.5rem;
  }
  .tel-contact .tel-des {
    font-size: min(3.2vw, 1.6rem);
  }
  .tel-contact .des {
    font-size: min(2.7vw, 1.45rem);
  }
  .tel-contact .tel-title::before,
  .tel-contact .tel-title::after {
    display: none;
  }
}
/* 無料診断 */
.diagnose-area {
  margin: 6rem 0 10rem;
}
.diagnose-area .diagnose-list {
  background-color: #ddf1fa;
  padding: 3px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 3.5rem;
}
.diagnose-area .diagnose-list ul {
  border: 1px solid #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem 3rem;
}

.diagnose-area .diagnose-list ul li {
  width: 50%;
  /* border: 1px solid red; */
  font-size: var(--font20pt);
  font-weight: 600;
}
.diagnose-area .diagnose-list ul li::before {
  content: '・';
  color: #54b8e6;
}
.diagnose-area .diagnose-des {
  font-size: var(--font16pt);
  text-align: center;
  margin-bottom: 2.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .diagnose-area .diagnose-list ul li {
    font-size: min(2.5vw, 1.95rem);
  }
}
@media screen and (max-width: 640px) {
  .diagnose-area .diagnose-list ul {
    padding: 1.5rem;
  }
  .diagnose-area .diagnose-list ul li {
    width: 100%;
    font-size: min(4.5vw, 2.2rem);
  }
  .diagnose-area .diagnose-des {
    text-align: left;
  }
  .diagnose-area .diagnose-list ul li::before {
    font-size: 2.2rem;
  }
  .diagnose-area .diagnose-des {
    font-size: min(3.7vw, 1.6rem);
  }
}

/* プラン選択 sildedown 追加 */
form .btn-area.plan-list-btn {
  background-color: #cbeaf7;
  padding: 6rem 3rem;
}
#hidden-div {
  display: none;
}
.form-area.plan-list-area {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.form-area.plan-list-area .des-label {
  margin-left: 0;
}
.form-area.plan-list-area .des-label span {
  margin-right: 1rem;
}
.form-area.plan-list-area dd .select-des span {
  font-size: var(--font12pt);
}
.form-area.plan-list-area dd > span {
  margin-right: 1rem;
}
.btn-area.plan-next {
  display: none;
}
#hidden-div .course-txt {
  display: flex;
  align-items: center;
  margin-top: 3.5rem;
}
#hidden-div .course-txt img {
  width: 70px;
}
#hidden-div .course-txt::before,
#hidden-div .course-txt::after {
  content: '';
  flex-grow: 1;
  background: #c7c7c7;
  height: 1px;
  line-height: 0px;
}
#hidden-div .course-txt::before {
  margin-right: 30px;
}
#hidden-div .course-txt::after {
  margin-left: 30px;
}
@media screen and (max-width: 640px) {
  #hidden-div .course-txt img {
    width: 40px;
  }
  #hidden-div .course-txt::before {
    margin-right: 15px;
  }
  #hidden-div .course-txt::after {
    margin-left: 15px;
  }
  .form-area.plan-list-area dd .select-des span {
    display: inline-block;
  }
  form .btn-area.plan-list-btn {
    padding: 5rem 1.5rem;
  }
}
/* form error css */
.error-area {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--font16pt);
  color: #ed3939;
}
.error {
  font-size: var(--font16pt);
  color: #ed3939;
}
form .gra-btn {
  text-decoration: none;
  position: relative;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: #fff;
  margin: 4px;
}
.gra-btn a {
  width: 100%;
}
/* 申し込み備考des追加 */
.bikou {
  width: 260px;
  min-width: auto;
  line-height: 1.2;
  margin-right: 1.5rem;
  margin-left: 5rem;
}
.form-area dt .bikou .not-required {
  margin-left: 0;
}
.form-area dt .bikou em {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--font12pt);
  font-style: normal;
  color: #ed3939;
}
@media screen and (max-width: 768px) {
  .bikou {
    margin: 0;
    width: auto;
  }
}
@media screen and (max-width: 420px) {
  .form-area dt .bikou em {
    font-size: min(3vw, 1.2rem);
  }
}
.gra-btn-center {
  align-items: center;
}
#diagnose-next-button.gra-btn-center {
  margin-bottom: 12rem;
}

/* #header #logo a {
  cursor: Default;
}
#header #include-header a {
  cursor: Default;
} */
