@charset "UTF-8";

/*-----------------------------------

	reset(form用)

-----------------------------------*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}
input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}
input[type="submit"],
input[type="button"],
button {
  transition: 0.5s all;
}
select::-ms-expand {
  display: none;
}
input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
  opacity: 0.6;
}
/*-----------------------------------

	headline

-----------------------------------*/
#headline h1 {
  margin-bottom: 50px;
}
#headline h1 span {
  color: var(--mClr1);
}
#headline p {
  text-align: center;
  line-height: 2;
  font-size: 20px;
  letter-spacing: 0.04em;
}
#headline p .tab {
  display: none;
}
#headline p span {
  background: var(--sClr1);
  font-weight: 700;
  margin: 0 5px;
  padding: 0 5px;
}
#headline p.note {
  font-size: 12px;
  color: #d80c18;
}
@media screen and (max-width: 840px) {
  #headline p .tab {
    display: inline;
  }
}
@media screen and (max-width: 640px) {
  #headline h1 {
    margin-bottom: 20px;
  }
  #headline p {
    font-size: 12px;
  }
  #headline p.note {
    font-size: 10px;
  }
}
/*-----------------------------------

	estimate_common

-----------------------------------*/
#contents {
  counter-reset: number;
}
section:not(:last-of-type) {
  padding-bottom: 20px;
}
section:last-of-type {
  margin-bottom: 80px;
}
section .box {
  background: var(--mClr2);
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
}
section .box h2 {
  padding-left: 70px;
  line-height: 50px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  counter-increment: number;
}
section .box h2::before {
  content: counter(number);
  font-size: 26px;
  color: #fff;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: var(--mClr1);
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: calc(50% - 24px);
  left: 0;
}
section .box h2 .color {
  color: var(--mClr1);
}
section .box > *:nth-child(1) {
  width: 40%;
}
section .box > *:nth-child(2) {
  width: 35%;
}
section .box > *:nth-child(3) {
  width: 25%;
}
section .box > *:nth-child(3) > * {
  width: fit-content;
  margin: 0 auto;
  font-size: 14px;
}
section .box > *:nth-child(3) a {
  text-decoration: underline;
}
section .box > *:nth-child(3) .note {
  color: #d80c18;
}
@media screen and (max-width: 840px) {
  section .box {
    flex-direction: column;
    gap: 15px 0;
  }
  section .box > *:nth-child(1) {
    width: 100%;
  }
  section .box > *:nth-child(2) {
    width: 100%;
  }
  section .box > *:nth-child(3) {
    width: 100%;
  }
  section .box > *:nth-child(3) > * {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 640px) {
  section:not(:last-of-type) {
    padding-bottom: 10px;
  }
  section:last-of-type {
    margin-bottom: 40px;
  }
  section .contents_inner {
    width: 100%;
  }
  section .box {
    border-radius: 0;
    padding: 20px;
  }
  section .box > *:nth-child(3) > * {
    font-size: 12px;
  }
  section .box h2 {
    padding-left: 40px;
    line-height: 1;
    font-size: 14px;
  }
  section .box h2::before {
    font-size: 12px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    top: calc(50% - 13px);
  }
}
/*-----------------------------------

	meter

-----------------------------------*/
#meter {
  position: fixed;
  top: 250px;
  right: 0;
  background: var(--mClr1);
  border-radius: 10px 0 0 10px;
  padding: 15px 10px;
  z-index: 99;
  color: #fff;
}
#meter .ttl {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10px;
}
#meter .meter_wrap {
  display: flex;
  justify-content: center;
  gap: 5px;
}
#meter .meter_wrap .value {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  font-size: 11px;
  font-weight: 700;
}
#meter .meter_wrap .scale_wrap {
  width: 35px;
  height: 180px;
  border-radius: 3px;
  padding: 3px;
  background: #fff;
  display: flex;
  align-items: flex-end;
}
#meter .meter_wrap .scale_wrap .scale_inner {
  width: 100%;
  background: var(--sClr1);
  border-radius: 3px;
}
#meter .meter_wrap .scale_wrap .scale_inner.full {
  background: #d80c18;
}
@media screen and (max-width: 640px) {
  #meter {
    top: 130px;
    padding: 10px 5px;
  }
  #meter .ttl {
    font-size: 11px;
    margin-bottom: 5px;
  }
  #meter .meter_wrap .value {
    font-size: 10px;
  }
  #meter .meter_wrap .scale_wrap {
    width: 24px;
    height: 126px;
    padding: 2px;
  }
}
/*-----------------------------------

	estimate01_block

-----------------------------------*/
#estimate01_block h2 {
  counter-increment: number 0;
}
#estimate01_block h2::before {
  content: "";
  width: 0;
  height: 0;
  background: none;
}
#estimate01_block .service {
  font-size: 20px;
  font-weight: 700;
  color: var(--mClr1);
  text-align: center;
}
/*-----------------------------------

	estimate02_block

-----------------------------------*/
#estimate02_block select {
  background: #fff url(../img/common/contact_arrow.svg) no-repeat
    calc(100% - 20px) center/12px;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  padding: 18px 40px 18px 20px;
  width: 100%;
  border-radius: calc(1px / 0);
  color: #000;
}
#estimate02_block .box > *:nth-child(3) a.link {
  padding-right: 16px;
  background: url(../img/common/icon_link.svg) no-repeat right center/11px;
}
@media screen and (max-width: 840px) {
  #estimate02_block select {
    font-size: 16px;
    width: 240px;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 640px) {
  #estimate02_block select {
    background: #fff url(../img/common/contact_arrow.svg) no-repeat
      calc(100% - 15px) center/12px;
    font-size: 14px;
  }
}
/*-----------------------------------

	estimate03_block

-----------------------------------*/
#estimate03_block select {
  background: #fff url(../img/common/contact_arrow.svg) no-repeat
    calc(100% - 20px) center/12px;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  padding: 18px 40px 18px 20px;
  width: 100%;
  border-radius: calc(1px / 0);
  color: #000;
}
#estimate03_block .box > *:nth-child(3) a.link {
  padding-right: 16px;
  background: url(../img/common/icon_link.svg) no-repeat right center/11px;
}
@media screen and (max-width: 840px) {
  #estimate03_block select {
    font-size: 16px;
    width: 240px;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 640px) {
  #estimate03_block select {
    background: #fff url(../img/common/contact_arrow.svg) no-repeat
      calc(100% - 15px) center/12px;
    font-size: 14px;
  }
}
/*-----------------------------------

	estimate04_block

-----------------------------------*/
#estimate04_block .box {
  border-radius: 10px 10px 0 0;
}
#estimate04_block .search_box_wrap {
  position: relative;
}
#estimate04_block #search-box {
  background: #fff;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  padding: 18px 50px 18px 20px;
  width: 100%;
  border-radius: calc(1px / 0);
  height: 54px;
}
#estimate04_block #search-box + button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

#estimate04_block .estimate04_inner {
  margin-top: 20px;
  padding-bottom: 30px;
  position: relative;
}
#estimate04_block .estimate04_inner h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}
#estimate04_block .estimate04_inner .estimate04_wrap {
  display: flex;
  flex-wrap: wrap;
}
#estimate04_block .estimate04_inner .estimate04_wrap .estimate04_wrap_box {
  width: 16.66%;
  padding: 20px 10px;
  text-align: center;
  position: relative;
}
#estimate04_block
  .estimate04_inner
  .estimate04_wrap
  .estimate04_wrap_box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  outline: 1px solid #cccccc;
  outline-offset: -0.5px;
}
#estimate04_block
  .estimate04_inner
  .estimate04_wrap
  .estimate04_wrap_box.active {
  outline: 2px solid var(--mClr1);
  outline-offset: -1px;
}
#estimate04_block .estimate04_inner .estimate04_wrap .estimate04_wrap_box .ttl {
  height: 40px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#estimate04_block .estimate04_inner .estimate04_wrap .estimate04_wrap_box .ex {
  width: 100%;
  font-size: 12px;
  height: 40px;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.number-spinner-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.number-spinner-wrap input::-webkit-outer-spin-button,
.number-spinner-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.number-spinner-wrap input[type="number"] {
  -moz-appearance: textfield;
}
.number-spinner-wrap .spinner {
  width: 25px;
  height: 25px;
  background: #cccccc;
  border-radius: 50%;
  color: #fff;
  line-height: 25px;
  text-align: center;
}
.estimate04_wrap_box .number-spinner-wrap input {
  border: 1px solid #cccccc;
  border-radius: 5px;
  width: 60px;
  text-align: right;
  line-height: 1;
  padding: 5px 10px;
  font-size: 16px;
}
.estimate04_wrap_box.active .number-spinner-wrap input {
  border: 1px solid #8dd1a3;
}
#estimate04_block .estimate04_inner .more {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  padding-right: 35px;
  width: fit-content;
  height: 25px;
  position: relative;
  margin: 30px auto 0;
  cursor: pointer;
}
#estimate04_block .estimate04_inner .more::before {
  content: "もっと表示";
}
#estimate04_block .estimate04_inner .more.active::before {
  content: "とじる";
}
#estimate04_block .estimate04_inner .more::after,
#estimate04_block .estimate04_inner .more.active::after {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  color: #fff;
  background: var(--mClr1);
  text-align: center;
  position: absolute;
  top: calc(50% - 12.5px);
  right: 0;
}
#estimate04_block .estimate04_inner .more::after {
  content: "+";
}
#estimate04_block .estimate04_inner .more.active::after {
  content: "-";
}
.hidden {
  display: none !important;
}
@media screen and (max-width: 1090px) {
  #estimate04_block .estimate04_inner .estimate04_wrap .estimate04_wrap_box {
    padding: 20px 10px;
  }
  #estimate04_block
    .estimate04_inner
    .estimate04_wrap
    .estimate04_wrap_box
    .ttl {
    height: 35px;
    font-size: 14px;
  }
  #estimate04_block
    .estimate04_inner
    .estimate04_wrap
    .estimate04_wrap_box
    .ex {
    bottom: 60px;
  }
  .number-spinner-wrap {
    gap: 5px;
  }
  .estimate04_wrap_box .number-spinner-wrap input {
    width: 50px;
    padding: 3px 5px;
  }
}
@media screen and (max-width: 840px) {
  #estimate04_block .estimate04_inner .estimate04_wrap .estimate04_wrap_box {
    width: 25%;
  }
}
@media screen and (max-width: 640px) {
  #estimate04_block #search-box {
    font-size: 16px;
    padding: 17px 50px 17px 20px;
    height: 50px;
  }
  #estimate04_block .estimate04_inner .estimate04_wrap .estimate04_wrap_box {
    width: 33.33%;
    padding: 10px 5px;
  }
  #estimate04_block
    .estimate04_inner
    .estimate04_wrap
    .estimate04_wrap_box
    .ttl {
    height: 30px;
    font-size: 12px;
    margin-bottom: 5px;
  }
  #estimate04_block
    .estimate04_inner
    .estimate04_wrap
    .estimate04_wrap_box
    .ex {
    font-size: 10px;
    height: 20px;
    bottom: 40px;
  }
  .number-spinner-wrap .spinner {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
  #estimate04_block .estimate04_inner .more {
    font-size: 12px;
    line-height: 50px;
    padding-right: 30px;
    height: 50px;
    margin: 15px auto 0;
  }
}
/*-----------------------------------

	estimate05_block

-----------------------------------*/
#estimate05_block {
  padding-bottom: 80px;
}
#estimate05_block .box {
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  #estimate05_block {
    padding-bottom: 40px;
  }
  #estimate05_block .box h2 {
    line-height: 1.4;
  }
}
/*-- intro --*/
#estimate05_block .intro {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 50px;
}
#estimate05_block .intro ul li span {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
}
#estimate05_block .intro .left ul li {
  white-space: nowrap;
}
#estimate05_block .intro .left ul li .bold {
  width: 3.5em;
}
#estimate05_block .intro .left ul li .color {
  color: var(--mClr1);
  margin-right: 10px;
}
#estimate05_block .intro .right {
  padding-left: 80px;
  position: relative;
}
#estimate05_block .intro .right::before {
  content: "お得";
  font-weight: 900;
  color: #fff;
  line-height: 60px;
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #d80c18;
  position: absolute;
  top: calc(50% - 30px);
  left: 0;
}
#estimate05_block .intro .right ul li .bold {
  width: 5em;
}
#estimate05_block .intro .right ul li .color {
  color: #d80c18;
  margin-right: 10px;
}
#estimate05_block .intro .right .note {
  font-size: 12px;
}
@media screen and (max-width: 1090px) {
  #estimate05_block .intro {
    gap: 40px;
  }
}
@media screen and (max-width: 840px) {
  #estimate05_block .intro {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 640px) {
  #estimate05_block .intro {
    width: 90%;
    margin: 0 auto 30px;
  }
  #estimate05_block .intro ul li span {
    font-size: 12px;
  }
  #estimate05_block .intro .right {
    padding-left: 45px;
  }
  #estimate05_block .intro .right::before {
    line-height: 38px;
    width: 38px;
    height: 38px;
    top: calc(50% - 19px);
  }
  #estimate05_block .intro .right .note {
    font-size: 10px;
  }
}
/*-- calendar --*/
#estimate05_block .calendar .monthArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
#estimate05_block .calendar .monthArea button {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
}
#estimate05_block .calendar .monthArea button::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 12px;
  height: 12px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  pointer-events: none;
  z-index: -1;
}
#estimate05_block .calendar .monthArea button.prev::before {
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#estimate05_block .calendar .monthArea button.next::before {
  right: 50%;
  transform: translate(50%, -50%) rotate(-135deg);
}
/* #estimate05_block .calendar .monthArea a {
    width: 12px;
    height: 12px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
}
#estimate05_block .calendar .monthArea a.prev {
    transform: rotate(45deg);
}
#estimate05_block .calendar .monthArea a.next {
    transform: rotate(-135deg);
} */
#estimate05_block .calendar .monthArea .month {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
#estimate05_block .calendar .table_scroll {
  margin-bottom: 10px;
  overflow-x: scroll;
}
#estimate05_block .calendar table {
  width: 100%;
  border-top: 1px solid #e5e5e5;
  line-height: 1;
  white-space: nowrap;
}
#estimate05_block .calendar table tr {
  border-bottom: 1px solid #e5e5e5;
  display: flex;
}
#estimate05_block .calendar table th {
  width: 14.28%;
  padding: 15px 0;
  text-align: center;
}
#estimate05_block .calendar table td {
  padding: 15px 5px;
  display: flex;
  flex-direction: column;
  width: 14.28%;
  min-width: 140px;
}
#estimate05_block .calendar table td .date {
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 auto 10px;
}
#estimate05_block .calendar table td.today .date {
  width: 32px;
  height: 32px;
  background-color: var(--sClr1);
  border-radius: 50%;
}
#estimate05_block .calendar table td ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  gap: 5px;
}
#estimate05_block .calendar table td ul li {
  width: 100%;
  height: 36px;
}
#estimate05_block .calendar table td.holiday ul li {
  font-size: 14px;
  padding: 10px 0;
  color: #7f7f7f;
  text-align: center;
}
#estimate05_block .calendar table td ul li label {
  background: #fff8d8;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  min-width: 140px;
}
#estimate05_block .calendar table td ul li label .time {
  font-size: 12px;
}
#estimate05_block .calendar table td.inactive ul li label {
  background: #f8f8f8;
  cursor: default;
}
#estimate05_block .calendar table td ul li.full label {
  background: #dddddd;
  cursor: default;
}
input.date_item_radio:checked + label.date_item_rabel {
  background: var(--mClr1) !important;
  color: #fff;
}
input.date_item_radio:checked + label.date_item_rabel .price {
  text-decoration: underline;
}
#estimate05_block .calendar .note {
  text-align: right;
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  #estimate05_block .calendar .monthArea {
    width: 90%;
    margin: 0 auto 15px;
  }
  #estimate05_block .calendar .monthArea .month {
    font-size: 20px;
  }
  #estimate05_block .calendar table td {
    min-width: 125px;
  }
  #estimate05_block .calendar table td .date {
    font-size: 16px;
    line-height: 28px;
  }
  #estimate05_block .calendar table td.today .date {
    width: 28px;
    height: 28px;
  }
  #estimate05_block .calendar table td ul li label {
    min-width: 125px;
  }
  #estimate05_block .calendar .note {
    font-size: 10px;
  }
}
/*-----------------------------------

	estimate06_block

-----------------------------------*/
#estimate06_block .estimate_box {
  border-radius: 10px;
  overflow: hidden;
}
#estimate06_block .estimate_box h2 {
  display: block;
  background: var(--mClr1);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 20px 0;
}
#estimate06_block .estimate_box .estimate_box_inner {
  padding: 30px 0 50px;
  background-image: var(--bgDotY-i);
  background-position: var(--bgDotY-p);
  background-size: var(--bgDotY-s);
}
#estimate06_block .white_box {
  max-width: 900px;
  width: 90%;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 5px;
  padding: 20px 30px;
}
#estimate06_block .white_box table {
  width: 100%;
  margin-bottom: 30px;
}
#estimate06_block .white_box table tr {
  border-bottom: 1px solid #e5e5e5;
}
#estimate06_block .white_box table th {
  text-align: left;
  padding: 20px 0;
  width: 8em;
  font-size: 18px;
}
#estimate06_block .white_box table td {
  padding: 20px 0;
  width: calc(100% - 8em);
}
#estimate06_block .white_box table td .date {
  margin-right: 20px;
}
#estimate06_block .white_box table td.items {
  position: relative;
}
#estimate06_block .white_box table td.items .item {
  display: inline-block;
  width: 230px;
}
#estimate06_block .white_box table td.items .total {
  position: absolute;
  bottom: 20px;
  right: 0;
  font-size: 20px;
  font-weight: 700;
}
#estimate06_block .white_box table td.approximation {
  font-size: 20px;
  font-weight: 700;
}
#estimate06_block .white_box table td.approximation dl {
  width: min(350px, 100%);
  margin: 0 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  text-align: right;
}
#estimate06_block .white_box table td.approximation dl dt.amount {
  grid-area: 1 / 1 / 2 / 2;
}
#estimate06_block .white_box table td.approximation dl dd.amount.discounted {
  text-decoration: line-through;
  grid-area: 1 / 2 / 2 / 3;
}
#estimate06_block .white_box table td.approximation dl dt.discount {
  color: var(--mClr1);
  font-size: 18px;
  grid-area: 2 / 1 / 3 / 2;
}
#estimate06_block .white_box table td.approximation dl dt.discount .rate {
  display: inline-block;
  background: var(--mClr1);
  color: #fff;
  border-radius: 3px;
  font-size: 16px;
  line-height: 1;
  padding: 1px 3px 3px;
  margin-left: 5px;
}
#estimate06_block .white_box table td.approximation dl dd.discount {
  color: var(--mClr1);
  grid-area: 2 / 2 / 3 / 3;
}
#estimate06_block
  .white_box
  table
  td.approximation
  dl
  dt.discount
  .rate
  .number {
  font-size: 24px;
}
#estimate06_block .white_box table td.approximation dl dt.totalprice {
  grid-area: 3 / 1 / 4 / 2;
  color: #d80c18;
  padding-top: 20px;
}
#estimate06_block .white_box table td.approximation dl dd.totalprice {
  grid-area: 3 / 2 / 4 / 3;
  color: #d80c18;
  line-height: 1;
}
#estimate06_block .white_box table td.approximation dl dd.totalprice .number {
  font-size: 50px;
  font-weight: 900;
  display: inline-block;
}
#estimate06_block
  .white_box
  table
  td.approximation
  dl
  dd.totalprice
  .taxexcluded {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}
#estimate06_block .white_box .apply {
  display: block;
  background: #d80c18 var(--bgArwW);
  background-position: calc(100% - 30px) center;
  background-size: 22px;
  color: #fff;
  width: min(640px, 100%);
  margin: 0 auto 40px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  padding: 35px 0;
  border-radius: 20px;
  border: none;
}
#estimate06_block .white_box .present {
  border: 3px solid #8dd1a3;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  width: min(640px, 100%);
  margin: 0 auto 30px;
  position: relative;
}
#estimate06_block .white_box .present::before {
  content: "いまなら";
  width: 88px;
  height: 88px;
  background: var(--mClr1);
  border-radius: 50%;
  line-height: 88px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: -35px;
  left: -35px;
  transform: rotate(-15deg);
}
#estimate06_block .white_box .present .image {
  width: 100px;
}
#estimate06_block .white_box .present .text .copy {
  font-size: 20px;
  font-weight: 700;
  color: var(--mClr1);
}
#estimate06_block .white_box .present .text .ttl {
  font-size: 30px;
  font-weight: 700;
}
#estimate06_block .white_box .note {
  font-size: 12px;
}
#estimate06_block .estimate_box .btnArea {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
#estimate06_block .estimate_box .btnArea .left,
#estimate06_block .estimate_box .btnArea .right {
  border-radius: calc(1px / 0);
  background: #fff;
}
#estimate06_block .estimate_box .btnArea .left .redo {
  width: 245px;
  height: 100%;
  background: #dddddd url(../img/common/icon_redo.svg) no-repeat 25px
    center/18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 0 20px 20px;
  text-align: center;
  border-radius: calc(1px / 0);
  appearance: none;
}
#estimate06_block .estimate_box .btnArea .right {
  width: 350px;
}
#estimate06_block .estimate_box .btnArea .right .login {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: var(--mClr1);
  line-height: 1;
  padding: 20px 0;
  text-align: center;
  border-radius: calc(1px / 0);
  border: 1px solid var(--mClr1);
  background: #fff;
}
@media screen and (max-width: 840px) {
  #estimate06_block .white_box table td.items .item {
    width: 160px;
  }
  #estimate06_block .white_box table td.approximation dl dt.totalprice {
    padding-top: 12px;
  }
  #estimate06_block .white_box table td.approximation dl dd.totalprice .number {
    font-size: 40px;
  }
  #estimate06_block .white_box .apply {
    font-size: 24px;
    padding: 30px 0;
  }
  #estimate06_block .white_box .present {
    gap: 0 15px;
  }
  #estimate06_block .white_box .present::before {
    width: 76px;
    height: 76px;
    line-height: 76px;
  }
  #estimate06_block .white_box .present .text .copy {
    font-size: 18px;
  }
  #estimate06_block .white_box .present .text .ttl {
    font-size: 26px;
    font-weight: 700;
  }
  #estimate06_block .estimate_box .btnArea .left .redo {
    background: #dddddd url(../img/common/icon_redo.svg) no-repeat 20px
      center/18px;
    width: 230px;
  }
  #estimate06_block .estimate_box .btnArea .right {
    width: 300px;
  }
}
@media screen and (max-width: 640px) {
  #estimate06_block .contents_inner {
    width: 90%;
  }
  #estimate06_block .estimate_box {
    border-radius: 0;
    overflow: initial;
  }
  #estimate06_block .estimate_box h2 {
    font-size: 18px;
    padding: 10px 0;
    border-radius: 5px 5px 0 0;
  }
  #estimate06_block .estimate_box .estimate_box_inner {
    padding: 0;
    background: none;
  }
  #estimate06_block .white_box {
    width: 100%;
    border: 1px solid var(--mClr1);
    border-radius: 0 0 5px 5px;
    margin: 0 auto 30px;
    padding: 10px 20px 20px 20px;
  }
  #estimate06_block .white_box table {
    margin-bottom: 15px;
  }
  #estimate06_block .white_box table th {
    display: block;
    width: 100%;
    padding: 10px 0 0 0;
    font-size: 14px;
  }
  #estimate06_block .white_box table td {
    display: block;
    width: 100%;
    padding: 0 0 10px 0;
  }
  #estimate06_block .white_box table td.items .item {
    min-width: 120px;
    width: auto;
  }
  #estimate06_block .white_box table td.items .total {
    position: static;
    font-size: 14px;
    text-align: right;
  }
  #estimate06_block .white_box table td.approximation {
    font-size: 19px;
  }
  #estimate06_block .white_box table td.approximation dl {
    width: min(260px, 100%);
    grid-column-gap: 15px;
    grid-row-gap: 5px;
  }
  #estimate06_block .white_box table td.approximation dl dt.discount {
    font-size: 14px;
  }
  #estimate06_block .white_box table td.approximation dl dt.discount .rate {
    font-size: 12px;
  }
  #estimate06_block
    .white_box
    table
    td.approximation
    dl
    dt.discount
    .rate
    .number {
    font-size: 19px;
  }
  #estimate06_block .white_box table td.approximation dl dt.totalprice {
    padding-top: 6px;
  }
  #estimate06_block .white_box table td.approximation dl dd.totalprice .number {
    font-size: 32px;
  }
  #estimate06_block
    .white_box
    table
    td.approximation
    dl
    dd.totalprice
    .taxexcluded {
    font-size: 12px;
    margin-top: 5px;
  }
  #estimate06_block .white_box .apply {
    background: #d80c18;
    font-size: 18px;
    padding: 20px 0;
  }
  #estimate06_block .white_box .present {
    border: 2px solid #8dd1a3;
    padding: 15px 20px;
    flex-direction: column;
    gap: 20px 0;
    margin: 0 auto 20px;
  }
  #estimate06_block .white_box .present::before {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 10px;
    top: -20px;
    left: -20px;
  }
  #estimate06_block .white_box .present .text .copy {
    font-size: 14px;
  }
  #estimate06_block .white_box .present .text .ttl {
    font-size: 20px;
  }
  #estimate06_block .white_box .note {
    font-size: 10px;
  }
  #estimate06_block .estimate_box .btnArea {
    flex-direction: column-reverse;
    align-items: center;
    gap: 25px;
    width: 250px;
  }
  #estimate06_block .estimate_box .btnArea .left .redo {
    width: 200px;
    font-size: 14px;
    padding: 15px 0;
  }
  #estimate06_block .estimate_box .btnArea .right {
    width: 100%;
  }
  #estimate06_block .estimate_box .btnArea .right .login {
    font-size: 16px;
    padding: 20px 0;
  }
}
