@charset "UTF-8";

:root {
  --accent-color: #d23a00;
}

.inner {
  max-width: 682px;
}

.mod_banner {
  margin-bottom: 40px;
  text-align: center;
}
.mod_banner a{
    transition: all 0.3s;
}
.mod_banner a:hover {
    opacity: 0.7;
}

.mod_moving-strong {
  font-weight: inherit;
  color: var(--accent-color);
}

.mod_acd {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fafafa;
}
.mod_acd .acd_head {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 0;
  padding: 1.7rem 3.2rem 1.7rem 2.1rem;
  color: #000;
  font-weight: 500;
  font-size: 1.4rem;
  cursor: pointer;
}
.mod_acd .acd_head > * {
  font-size: 1.4rem;
  font-weight: 500;
}
.mod_acd .acd_head::-webkit-details-marker {
  display: none;
}
.mod_acd .acd_icon {
  position: absolute;
  top: 50%;
  right: 2.1rem;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}
.mod_acd .acd_icon::before,
.mod_acd .acd_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
  background-color: var(--accent-color);
  content: "";
}
.mod_acd .acd_icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
  transition: transform 0.2s ease;
}
.mod_acd[open] .acd_icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.mod_acd .acd_body {
  padding: 0 2.8rem 1.25rem;
  overflow: hidden;
}

.mod_moving {
  overflow: hidden;
  padding: 19px 0;
  background: #fafafa;
}

.mod_process {
  margin-top: 46px;
}

.mod_process .title {
  margin-bottom: 25px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
}

.mod_step .stepList {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 343px;
  margin: 0 auto 30px;
}

.mod_step .stepList > li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: calc(100% / 4);
  z-index: 0;
}

.mod_step .stepList > li:not(:first-child)::before {
  position: absolute;
  top: 12.5px;
  left: calc(-50% + 12.5px);
  width: calc(100% - 25px);
  height: 1px;
  background-color: #e5e5e5;
  z-index: -1;
  content: '';
}

.mod_step .stepList .num {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #808080;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
}

.mod_step .stepList .label {
  font-size: 1.1rem;
  line-height: 1;
}

.mod_step .stepList > li.active .num,
.mod_step .stepList > li.complete .num {
  background: var(--accent-color);
  color: #fff;
}
.mod_step .stepList > li.active .label,
.mod_step .stepList > li.complete .label {
  color: var(--accent-color);
}
.mod_step .stepList > li.active + li::before  {
  background: linear-gradient(to right, var(--accent-color) 0%, #e5e5e5 100%);
}
.mod_step .stepList > li.complete + li::before {
  background: var(--accent-color);
}

.mod_flowItem .flowHeading {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.mod_flowItem .flowHeading .number {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 2px solid #d9d9d9;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 3.2rem;
}
.mod_flowItem .flowHeading .text {
  flex: 1;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: left;
}
.mod_flowItem .img img {
  width: 100%;
}
.mod_flowItem .img:not(:last-child) {
  margin-bottom: 12px;
}
.mod_flowItem .notes {
  margin-top: 8px;
  font-size: 1.1rem;
}

.mod_moving .mod_panel .stepContent[data-active="false"] {
  display: none;
}
.mod_moving .mod_panel .stepContent[data-active="true"] {
  display: block;
}
.mod_panel .stepContent .notes {
  margin-top: 10px;
  font-size: 1.2rem;
}

.mod_moving .mod_panel:not(.is-switching) {
  padding: 36px 22px 42px;
  border-radius: 16px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.04);
}

.mod_moving .mod_panel.is-switching {
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.mod_moving .mod_question {
  position: relative;
  margin-bottom: 40px;
  padding-top: 43px;
}
.mod_moving .mod_question[data-active="false"] {
  display: none;
}
.mod_moving .mod_question::before {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 262px;
  height: 1px;
  background-color: #e5e5e5;
  z-index: 2;
  content: "";
}

.mod_moving .mod_panel .heading {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
}
.mod_moving .mod_panel .heading.disabled {
  margin-bottom: 8px;
  color: rgb(46 34 12 / 0.37);
}

.mod_moving .mod_panel:not(.is-switching) .mod_question:first-child {
  padding-top: 0;
}
.mod_moving .mod_panel:not(.is-switching) .mod_question:first-child::before {
  display: none;
}

.mod_moving .mod_question .notes {
  margin-top: 14px;
  text-align: center;
  font-size: 1.1rem;
  color: rgb(0 0 0 / 0.6);
}
.mod_moving .mod_question .row {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  margin-top: 25px;
  margin-inline: auto;
}
.mod_moving .mod_question .text {
  margin-bottom: 26px;
  color: #000;
  text-align: center;
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: 500;
}
.mod_moving .mod_question .text .textMini {
  font-size: 1.2rem;
}
.mod_moving .mod_question .checkList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.mod_moving .mod_question .checkList > li {
  padding: 9px 15px;
  border-radius: 8px;
  background: #fff4f4;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}

.mod_moving .mod_panel.is-switching .mod_question {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 40px;
}
.mod_moving .mod_panel.is-switching .mod_question::after {
  display: block;
  position: absolute;
  left: 0;
  top: -10px;
  width: 100%;
  height: 40px;
  background: #fff;
  z-index: 1;
  content: "";
}
.mod_moving .mod_panel.is-switching .mod_question.is-question1 {
  padding: 36px 22px 42px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
}
.mod_moving .mod_panel.is-switching .mod_question.is-question2[data-active="true"],
.mod_moving .mod_panel.is-switching .mod_question.is-question3[data-active="true"] {
  padding: 36px 22px 42px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
}

#cv_diagnosis,
#less,
#cv_tel,
#cv_moving {
  margin-top: 46px;
}

.radioWrap *,
.radioWrap *::before,
.radioWrap *::after {
  box-sizing: border-box;
}
.radioWrap {
  display: inline-block;
  flex: 1;
  line-height: 1;
  cursor: pointer;
}
.radioWrap_label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 56px;
  border: 1px solid #707070;
  border-radius: 8px;
  background-color: #fff;
  padding: 9px 16px 10px 40px;
  text-align: center;
  cursor: pointer;
}
.radioWrap_label::before,
.radioWrap_label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
}
.radioWrap_label::before {
  width: 24px;
  height: 24px;
  border: 1px solid #707070;
}
.radioWrap_label::after {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background-color: var(--accent-color);
  opacity: 0;
}
.radioWrap_label.active {
  border-color: var(--accent-color);
}
.radioWrap_label.active::after {
  opacity: 1;
}
.radioWrap input {
  position: absolute;
  display: none;
}
.radioWrap input:checked + .radioWrap_label {
  border-color: var(--accent-color);
  border-right: 1px solid var(--accent-color);
}
.radioWrap input:checked + .radioWrap_label::after {
  opacity: 1;
}
.radioWrap_label .number {
  margin-right: 3px;
  vertical-align: baseline;
  font-size: 2rem;
}

.mod_cv {
  padding-bottom: 33px;
}
.mod_cv[data-active="false"] {
  display: none;
}
.mod_cv .btnWrap {
  text-align: center;
}
.mod_cv .btnWrap .shoulder {
  margin-bottom: 4px;
  color: #d92323;
  font-weight: 700;
  font-size: 1.1rem;
}
.mod_cv .btnWrap .btn {
  display: grid;
  place-content: center;
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 56px;
  margin-inline: auto;
  padding: 5px 22px 5px 27px;
  border-radius: 500px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.12;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.08);
  letter-spacing: -0.01px;
}




.mod_cv .btnWrap .btn.disabled {
  background: #F5F5F5;
  box-shadow: none;
  color: #C0C0C0;
  pointer-events: none;
}
.mod_cv .btnWrap .btn > span {
  display: block;
  font-size: 1.2rem;
}
.mod_cv .btnWrap .btn::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  width: 7px;
  height: 12px;
  transform: translateY(-50%);
  background: url(/denki/assets/img/cs/support2/icon_arrow_btn.svg) no-repeat center center / contain;
  content: "";
}
.mod_cv .btnWrap .btn.disabled::before {
  background-image: url(/denki/assets/img/cs/support2/icon_arrow_btn_disabled.svg);
}
#datepicker-inline {
  border: none;
  box-sizing: border-box;
}
@media screen and (max-width: 414px) {
  #datepicker-inline {
    width: 100%;
  }
}
#datepicker-input-wrap {
  display: none;
}
.mod_datepicker .ui-datepicker {
  width: 100%;
  max-width: 322px;
  margin-inline: auto;
  border: none;
  box-sizing: border-box;
  padding: 0;
}
.mod_datepicker .ui-datepicker .ui-datepicker-calendar {
  margin-bottom: 0;
}
.mod_datepicker .ui-datepicker .ui-datepicker-header {
  position: relative;
  background: none;
  border: none;
  margin: 0 .7em 15px;
}
.mod_datepicker .ui-datepicker .ui-datepicker-prev,
.mod_datepicker .ui-datepicker .ui-datepicker-next {
  top: 50%;
  bottom: auto;
  left: auto;
  width: 18px;
  height: 18px;
  background: rgba(189, 10, 10, 0.08);
  border: none;
  border-radius: 50%;
  transform: translateY(-50%);
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.mod_datepicker .ui-datepicker .ui-datepicker-prev span,
.mod_datepicker .ui-datepicker .ui-datepicker-next span {
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  margin: 0;
  background-image: none;
  mask: url(/denki/assets/img/common/arrow_o01.svg) center no-repeat;
  mask-size: 18px 10px;
  background-color: var(--accent-color);
  cursor: inherit;
}
.mod_datepicker .ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.mod_datepicker .ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.mod_datepicker .ui-datepicker .ui-datepicker-prev span {
  transform: translate(-50%, -50%) scale(-1, 1);
}
.mod_datepicker .ui-datepicker .ui-datepicker-title {
  margin: 0;
  text-align: center;
  color: #808080;
  line-height: 1.286;
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}
.mod_datepicker .ui-datepicker th {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(52, 72, 94, 0.54);
}
.mod_datepicker .ui-datepicker td {
  position: relative;
  font-size: 1.3rem;
  opacity: 1!important;
  z-index: 1;
  font-family: "Nunito", sans-serif;
}
.mod_datepicker .ui-datepicker td span,
.mod_datepicker .ui-datepicker td a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: inherit!important;
  border: none!important;
  text-align: center;
  padding: .7em .2em .5em;
  font-weight: 500;
}
.mod_datepicker .ui-datepicker td .ui-state-default {
  color: #8f2929;
}
.mod_datepicker .ui-datepicker td .ui-state-active {
  color: #fff !important;
}
.mod_datepicker .ui-datepicker td.ui-datepicker-other-month .ui-state-default {
  color: #808080;
}
.mod_datepicker .ui-datepicker td.ui-state-disabled .ui-state-default {
  color: #e1e4e7;
}

.mod_datepicker .ui-datepicker-today {
  position: relative;
  background: none !important;
  color: #fff !important;
  z-index: 1;
}

.mod_datepicker .ui-datepicker .ui-state-active {
  position: relative;
  z-index: 1;
}
.mod_datepicker .ui-datepicker td:has(.ui-state-active)::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  background: var(--accent-color) !important;
  z-index: 0;
  content: "";
}

.mod_info .text {
  margin-top: 1.5em;
}
