@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  color: #000;
  scroll-behavior: smooth;
}

main {
  padding-top: 152px;
}

@media screen and (max-width: 767px) {
  main {
    padding-top: 99px;
  }
}

main:has(.login) {
  padding-top: 0;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.image--100 {
  height: 100%;
}

.image--auto {
  width: auto;
}

.image--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.select {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.75em;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .select {
    font-size: 16px;
  }
}

.select--bordered {
  border: 1px solid #000;
}

.select select {
  display: none;
}

.select--gray .select__selected {
  background-color: #f4f2f2;
}

.select__selected {
  position: relative;
  background-color: #fff;
  padding: 0 15px;
  font-weight: 500;
  cursor: pointer;
}

@media screen and (max-width: 1000px) {
  .select__selected {
    padding: 0 10px;
  }
}

.select__selected::after {
  content: "";
  position: absolute;
  top: 0;
  right: 4.92%;
  bottom: 0;
  margin: auto;
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  border-left: none;
  border-top: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 1080px) {
  .select__selected::after {
    width: 6.4px;
    height: 6.4px;
  }
}

.select__selected.select-active {
  background-color: #e7f5fd;
}

.select__selected.select-disabled {
  color: #868686;
}

.select__option-list {
  position: absolute;
  inset: 100% 0 auto;
  margin: auto;
  cursor: pointer;
  z-index: 1000;
}

.select__option-list.select-hide {
  display: none;
}

.select__option {
  border-top: 1px solid #c9caca;
  padding-inline: 4.92%;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: rgba(0, 0, 0, 0.5);
}

.select__option:hover {
  background-color: #e7f5fd;
  color: #000;
}

.input {
  /* stylelint-disable */
  /* stylelint-enable */
}

.input input[type=text],
.input input[type=email],
.input input[type=password],
.input input[type=search],
.input input[type=tel],
.input input[type=url],
.input input[type=number],
.input textarea {
  display: block;
  width: 100%;
  border: none;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 2.75em;
  padding: 0 15px;
}

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

  .input input[type=text],
  .input input[type=email],
  .input input[type=password],
  .input input[type=search],
  .input input[type=tel],
  .input input[type=url],
  .input input[type=number],
  .input textarea {
    padding: 0 10px;
  }
}

.input input[type=text]::-webkit-input-placeholder,
.input input[type=email]::-webkit-input-placeholder,
.input input[type=password]::-webkit-input-placeholder,
.input input[type=search]::-webkit-input-placeholder,
.input input[type=tel]::-webkit-input-placeholder,
.input input[type=url]::-webkit-input-placeholder,
.input input[type=number]::-webkit-input-placeholder,
.input textarea::-webkit-input-placeholder {
  color: #868686;
}

.input input[type=text]::-moz-placeholder,
.input input[type=email]::-moz-placeholder,
.input input[type=password]::-moz-placeholder,
.input input[type=search]::-moz-placeholder,
.input input[type=tel]::-moz-placeholder,
.input input[type=url]::-moz-placeholder,
.input input[type=number]::-moz-placeholder,
.input textarea::-moz-placeholder {
  color: #868686;
}

.input input[type=text]:-ms-input-placeholder,
.input input[type=email]:-ms-input-placeholder,
.input input[type=password]:-ms-input-placeholder,
.input input[type=search]:-ms-input-placeholder,
.input input[type=tel]:-ms-input-placeholder,
.input input[type=url]:-ms-input-placeholder,
.input input[type=number]:-ms-input-placeholder,
.input textarea:-ms-input-placeholder {
  color: #868686;
}

.input input[type=text]::-ms-input-placeholder,
.input input[type=email]::-ms-input-placeholder,
.input input[type=password]::-ms-input-placeholder,
.input input[type=search]::-ms-input-placeholder,
.input input[type=tel]::-ms-input-placeholder,
.input input[type=url]::-ms-input-placeholder,
.input input[type=number]::-ms-input-placeholder,
.input textarea::-ms-input-placeholder {
  color: #868686;
}

.input input[type=text]::placeholder,
.input input[type=email]::placeholder,
.input input[type=password]::placeholder,
.input input[type=search]::placeholder,
.input input[type=tel]::placeholder,
.input input[type=url]::placeholder,
.input input[type=number]::placeholder,
.input textarea::placeholder {
  color: #868686;
}

.input__item:not(:last-of-type) {
  margin-bottom: 10px;
}

.input__item--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .input__item--row {
    gap: 20px;
  }
}

.input__item--row:not(:last-of-type) {
  margin-bottom: 0;
}

.input__label {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 3.1428571429em;
  letter-spacing: 0.07em;
}

.input__field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  border: 2px solid #000;
  overflow: hidden;
}

.input__field-wrapper input[type=text],
.input__field-wrapper input[type=email],
.input__field-wrapper input[type=password],
.input__field-wrapper input[type=search],
.input__field-wrapper input[type=tel],
.input__field-wrapper input[type=url],
.input__field-wrapper input[type=number],
.input__field-wrapper textarea {
  padding: 0 2%;
}

.input__field-button {
  width: 154px;
  background-color: #3e3a39;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .input__field-button {
    width: 77px;
    font-size: 1.3rem;
  }
}

.input__field-button:hover {
  opacity: 0.8;
}

.input__link {
  color: #727171;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .input__link {
    font-size: 1.3rem;
  }
}

.input__field-row {
  margin-block: 25px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

@media screen and (max-width: 767px) {
  .input__field-row {
    margin-block: 12.5px 20px;
    gap: 16px;
  }
}

.input__range {
  position: relative;
}

.input__range-value {
  position: absolute;
  top: 100%;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 767px) {
  .input__range-value {
    font-size: 1.2rem;
  }
}

.input__range-value[data-female-ratio] {
  left: 0;
}

.input__range-value[data-male-ratio] {
  right: 0;
}

.input input[type=range] {
  width: 100%;
  height: 27px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .input input[type=range] {
    height: 13.5px;
  }
}

.input input[type=range]::-webkit-slider-thumb {
  height: 27px;
  aspect-ratio: 1;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 1px inset #000;
  box-shadow: 0 0 0 1px inset #000;
  border-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #1e5cb9), color-stop(0, #d03030)) 0 1/calc(50% - 3px) 100vw/0 calc(100vw + 0px);
  border-image: linear-gradient(90deg, #1e5cb9 50%, #d03030 0) 0 1/calc(50% - 3px) 100vw/0 calc(100vw + 0px);
  -webkit-appearance: none;
  appearance: none;
}

@media screen and (max-width: 767px) {
  .input input[type=range]::-webkit-slider-thumb {
    height: 13.5px;
  }
}

.input input[type=range]::-moz-range-thumb {
  height: 27px;
  width: 27px;
  background: none;
  border-radius: 50%;
  box-shadow: 0 0 0 1px inset #000;
  border-image: linear-gradient(90deg, #1e5cb9 50%, #d03030 0) 0 1/calc(50% - 3px) 100vw/0 calc(100vw + 0px);
  -moz-appearance: none;
  appearance: none;
}

@media screen and (max-width: 767px) {
  .input input[type=range]::-moz-range-thumb {
    width: 13.5px;
    height: 13.5px;
  }
}

.input__add-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
}

.input__add-icon {
  cursor: pointer;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.input__add-icon svg {
  width: 10px;
  height: 10px;
}

.input__add-button {
  cursor: pointer;
  width: 198px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  font: 500 1.6rem "Zen Kaku Gothic New", sans-serif;
}

.button {
  position: relative;
  display: block;
  border: none;
  background-color: #3e3a39;
  border-radius: 4px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.2em;
  letter-spacing: 0.25em;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1080px) {
  .button {
    font-size: 1.6rem;
  }
}

.button:hover {
  opacity: 0.8;
}

.button span {
  position: relative;
}

.button--search {
  padding: 0 30px 0 20px;
}

@media screen and (max-width: 1000px) {
  .button--search {
    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .button--search {
    padding: 0 15px 0 10px;
  }
}

.button--search span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background-image: url("/public/img/icons/search.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1080px) {
  .button--search span::before {
    width: 14.4px;
    height: 14.4px;
  }
}

@media screen and (max-width: 767px) {
  .button--search span::before {
    width: 14px;
    height: 14px;
  }
}

.button--next {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #868686;
  border-radius: 20px;
  padding-inline: 55px;
  text-align: center;
}

.button--cancel {
  border-radius: 14px;
  background-color: #c9caca;
  text-align: center;
  font-size: 1.4rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  letter-spacing: 0.01em;
}

.button--request {
  border-radius: 14px;
  background-color: #30ad30;
  text-align: center;
  font-size: 1.4rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  letter-spacing: 0.01em;
}

.button--start {
  background-color: #3889b7;
  text-align: center;
}

.button--clear {
  background-color: #868686;
  text-align: center;
}

.pill {
  border-radius: 20px;
  font-size: 1.4rem;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1080px) {
  .pill {
    font-size: 1.12rem;
  }
}

.pill:hover {
  opacity: 0.8;
}

.pill--dark-violet {
  background-color: #7845aa;
}

.pill--light-violet {
  background-color: rgba(120, 69, 170, 0.4);
}

.pill--gray {
  background-color: #c9caca;
}

.pill--gray-ed {
  background-color: #edeaf0;
  color: #000;
}

.pill--gray-72 {
  background-color: #727171;
}

.pill--green-30 {
  background-color: #30ad30;
}

.chart {
  position: relative;
}

.chart .remark--floating {
  position: absolute;
  right: 2.68%;
  bottom: -28.04%;
}

@media screen and (max-width: 767px) {
  .chart .remark--floating {
    position: relative;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 20px auto 0;
  }
}

.chart__header {
  padding-block: 4px;
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #3e3a39;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.chart__content {
  padding-block: 35px;
}

.chart__content--bg-gray {
  background-color: #f8f8f8;
}

.chart__content--tall-content {
  padding-inline: 33px;
  height: calc(100% - 30px);
}

@media screen and (max-width: 767px) {
  .chart__content--tall-content {
    height: auto;
    padding-inline: 16.5px;
  }
}

.chart__content--tall-content .chart__table {
  width: 100%;
  font-size: 12px;
  margin-bottom: 25px;
}

.chart__content--tall-content .remark {
  margin-left: 23px;
}

.chart__data-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
  padding-inline: 10px;
}

@media screen and (max-width: 767px) {
  .chart__data-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.chart__table {
  width: 46.8%;
  border-collapse: collapse;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1080px) {
  .chart__table {
    font-size: 1.12rem;
  }
}

@media screen and (max-width: 767px) {
  .chart__table {
    width: 100%;
  }
}

.chart__table tr:not(:first-of-type) {
  height: 44px;
}

.chart__table tr:not(:last-of-type) {
  border-bottom: 1px dotted #000;
}

.chart__table tr:first-of-type {
  height: 28px;
}

.chart__table tr:last-of-type {
  border-bottom: 1px solid #000;
}

.chart__table td {
  width: 37.58%;
}

.chart__table td:not(:first-of-type) {
  text-align: center;
}

.chart__table--fullwidth {
  width: 92.66%;
  margin: auto;
}

.chart__table--fullwidth td {
  width: auto;
}

.chart__table--fullwidth tr:last-of-type {
  border-bottom: none;
}

.chart__table--last-row-bordered tr:last-of-type {
  border-bottom: 1px solid #000;
}

.chart__table-tag--many,
.chart__table-tag--few {
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.chart__table-tag--many::before,
.chart__table-tag--few::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.chart__table-tag--many::before {
  background-color: #f9c8c8;
}

.chart__table-tag--few::before {
  background-color: #c8e1f9;
}

.chart__data-header {
  background-color: #3889b7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 15px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

@media screen and (max-width: 1080px) {
  .chart__data-header {
    font-size: 1.12rem;
  }
}

.chart__remark-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 32px;
  margin-bottom: 50px;
  padding-inline: 10px;
}

@media screen and (max-width: 767px) {
  .chart__remark-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.chart__graph-wrapper {
  width: 100%;
  padding-inline: 2%;
}

.tooltip {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #000;
  text-align: start;
}

.tooltip:has(.tooltip-active) {
  z-index: 2;
}

.tooltip .bold {
  font-weight: 700;
}

.tooltip__close {
  display: block;
  margin-left: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .tooltip__close {
    width: 8.5px;
    height: 8.5px;
  }
}

.tooltip__title {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.0625em;
  letter-spacing: 0.11em;
}

@media screen and (max-width: 1080px) {
  .tooltip__title {
    margin-bottom: 9.6px;
    font-size: 1.28rem;
  }
}

.tooltip__title--has-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.tooltip__title--has-icon::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url("/public/img/icons/question-mark-whole.svg") no-repeat center/100% 100%;
}

.tooltip__content-block {
  position: absolute;
  left: 100%;
  bottom: 100%;
  display: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #000;
  border-radius: 12px;
  background-color: #fff;
  -webkit-box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.25);
  padding: 14px 15px 18px 20px;
}

@media screen and (max-width: 767px) {
  .tooltip__content-block {
    bottom: auto;
    top: 25px;
    left: -100px;
  }
}

.tooltip__content-block.active {
  display: block;
  z-index: 1000;
}

.tooltip__content {
  font-size: 1.4rem;
  line-height: 1.2142857143em;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1080px) {
  .tooltip__content {
    font-size: 1.12rem;
  }
}

.tooltip__content--ls-tight {
  letter-spacing: -0.01em;
}

.tooltip__content--fs-small {
  font-size: 12px;
}

.tooltip__footnote {
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.4166666667em;
}

@media screen and (max-width: 1080px) {
  .tooltip__footnote {
    font-size: 0.96rem;
  }
}

.js-tooltip-trigger {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #fff;
  isolation: isolate;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1080px) {
  .js-tooltip-trigger {
    width: 17.6px;
    height: 17.6px;
  }
}

.js-tooltip-trigger svg {
  pointer-events: none;
  width: 66.67%;
  -o-object-fit: contain;
  object-fit: contain;
}

.js-tooltip-trigger.tooltip-active {
  z-index: 2;
}

.js-tooltip-trigger:not(.tooltip-active)~.tooltip__content-block {
  display: none;
}

.js-tooltip-trigger.tooltip-active~.tooltip__content-block {
  display: block;
}

.table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.75em;
}

@media screen and (max-width: 1080px) {
  .table table {
    font-size: 1.28rem;
  }
}

.table th {
  background-color: #3e3a39;
  border-inline: 2.5px solid #fff;
  padding-block: 5px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.11em;
}

@media screen and (max-width: 1080px) {
  .table th {
    font-size: 1.12rem;
  }
}

.table tr:has(td) {
  border-bottom: 1px solid #c9caca;
}

.table td {
  padding: 20px;
}

@media screen and (max-width: 1080px) {
  .table td {
    padding: 16px;
  }
}

@media screen and (max-width: 767px) {
  .table td {
    padding: 10px;
  }
}

.table td:not(:first-of-type) {
  text-align: center;
}

.table td small {
  font-size: 1.2rem;
}

@media screen and (max-width: 1080px) {
  .table td small {
    font-size: 0.96rem;
  }
}

.table td.tenant span {
  text-decoration: underline;
}

.table__property-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.table__rate {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.table__rate small {
  font-size: 1.6rem;
}

.table__stars {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}

.table__stars span {
  color: #d9dada;
}

.table__stars span.filled {
  color: #492869;
}

.table__link {
  display: block;
  width: 71px;
  height: 28px;
  border: 1px solid #000;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1080px) {
  .table__link {
    width: 56.8px;
    height: 22.4px;
  }
}

.table__link--reverse {
  border-color: #fff;
  width: 118px;
  height: 39px;
  border-radius: 14px;
}

.table__property-name-column {
  width: 20.1%;
}

.table__rating-column {
  width: 9.5%;
}

.table__sales-column {
  width: 7%;
}

.table__rent-column {
  width: 7.3%;
}

.table__chart-column {
  width: 11.4%;
  padding: 0;
}

.table__pill-column {
  padding-inline: 0 !important;
}

.table__pill-column .pill {
  height: 38px;
}

@media screen and (max-width: 1080px) {
  .table__pill-column .pill {
    height: 30.4px;
  }
}

.table__pill-column .pill:not(:last-of-type) {
  margin-bottom: 12px;
}

@media screen and (max-width: 1080px) {
  .table__pill-column .pill:not(:last-of-type) {
    margin-bottom: 9.6px;
  }
}

.table .tooltip {
  margin: auto;
}

.table__th-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  margin-inline: 5px;
}

.table__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 1080px) {
  .table__heading {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 767px) {
  .table__heading {
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.table__count {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8333333333em;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 1080px) {
  .table__count {
    font-size: 1.92rem;
  }
}

.table__count span {
  font-size: 1.6rem;
  line-height: 2.75em;
}

@media screen and (max-width: 1080px) {
  .table__count span {
    font-size: 1.28rem;
  }
}

.table__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 67px;
}

@media screen and (max-width: 1080px) {
  .table__sort {
    margin-left: 53.6px;
  }
}

@media screen and (max-width: 767px) {
  .table__sort {
    margin-left: auto;
  }
}

.table__sort-label {
  margin-right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 3.1428571429em;
}

@media screen and (max-width: 1080px) {
  .table__sort-label {
    margin-right: 8px;
    font-size: 1.12rem;
  }
}

.table__select-field {
  width: 242px;
}

@media screen and (max-width: 1080px) {
  .table__select-field {
    width: 193.6px;
  }
}

.table__legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .table__legend {
    margin-left: initial;
  }
}

.table__legend-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 2px;
}

.table__legend-column:first-of-type {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  max-width: 170px;
}

@media screen and (max-width: 1080px) {
  .table__legend-column:first-of-type {
    max-width: 136px;
  }
}

.table__legend-column:first-of-type .legend {
  -ms-flex-preferred-size: 80px;
  flex-basis: 80px;
}

@media screen and (max-width: 1080px) {
  .table__legend-column:first-of-type .legend {
    -ms-flex-preferred-size: 64px;
    flex-basis: 64px;
  }
}

.table__legend-column:last-of-type {
  max-width: 275px;
}

@media screen and (max-width: 1080px) {
  .table__legend-column:last-of-type {
    max-width: 220px;
  }
}

.table__legend-column:last-of-type .legend {
  -ms-flex-preferred-size: 90px;
  flex-basis: 90px;
}

@media screen and (max-width: 1080px) {
  .table__legend-column:last-of-type .legend {
    -ms-flex-preferred-size: 72px;
    flex-basis: 72px;
  }
}

.table__legend-column .legend--weekday,
.table__legend-column .legend--weekends {
  padding-right: 15px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.table table:has(.table__subtable)>tbody>tr>td {
  padding: 0;
}

.table table:has(.table__subtable)>tbody>tr {
  border-block: 2px solid #727171;
}

.table__subtable th {
  background-color: #f4f2f2;
  color: #000;
  border: 1px solid #c9caca;
}

.table__subtable td {
  border-right: 1px dotted #c9caca;
}

.table__subtable td.table__chart {
  border-right: none;
  padding-bottom: 25px !important;
}

.table__subtable td.table__chart canvas {
  width: 80px;
}

.table__next-button {
  padding-block: 1.5px;
  margin: 82px auto 0;
}

@media screen and (max-width: 1080px) {
  .table__next-button {
    margin-top: 65.6px;
  }
}

@media screen and (max-width: 767px) {
  .table__next-button {
    margin-top: 41px;
  }
}

.table__chart {
  padding: 0 !important;
}

.table__dougnut-chart {
  width: 80px;
  margin: auto;
}

.table__dougnut-chart canvas {
  width: 100%;
  height: 100%;
}

.table__schedule {
  font-weight: 300;
  line-height: 1.7142857143em !important;
  letter-spacing: 0.11em;
}

.container {
  width: 1000px;
  margin: auto;
}

@media screen and (max-width: 1080px) {
  .container {
    width: 95%;
  }
}

.container--narrow {
  width: 980px;
}

@media screen and (max-width: 1080px) {
  .container--narrow {
    max-width: 1000px;
    width: 95%;
  }
}

.container--extra-narrow {
  width: 789px;
}

@media screen and (max-width: 1080px) {
  .container--extra-narrow {
    max-width: 1000px;
    width: 95%;
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

.header__user-block {
  position: relative;
  padding-block: 10px;
  background-color: #f2f1f1;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 1080px) {
  .header__user-block {
    padding-block: 8px;
  }
}

.header__user-block--reverse {
  background-color: #000;
  color: #fff;
}

.header__action-search {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  margin-block: auto;
  width: 18px;
  height: 18px;
}

.header__user-block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 32px;
  max-width: 1080px;
  width: 75%;
  margin: auto;
}

@media screen and (max-width: 1080px) {
  .header__user-block-content {
    width: 90%;
    gap: 26px;
    font-size: 1.2rem;
  }
}

.header__action-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.header__logout-form {
  margin: 0;
}

.header__main {
  background-color: #fff;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 1080px;
  margin: auto;
  padding-inline: 2%;
  padding-block: 30px 25px;
}

@media screen and (max-width: 1080px) {
  .header__content {
    width: 95%;
    padding-inline: unset;
    padding-block: 24px 20px;
  }
}

@media screen and (max-width: 767px) {
  .header__content {
    padding-block: 15px 12.5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.header__logo {
  max-width: 150px;
  margin-right: 9.72%;
}

@media screen and (max-width: 1080px) {
  .header__logo {
    max-width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 100px;
  }
}

.header__secondary-logo {
  max-width: 100px;
  margin-left: auto;
}

@media screen and (max-width: 1080px) {
  .header__secondary-logo {
    max-width: 80px;
  }
}

@media screen and (max-width: 767px) {
  .header__secondary-logo {
    margin-top: auto;
    margin-left: unset;
  }
}

@media screen and (max-width: 767px) {
  .header__nav {
    position: absolute;
    inset: 98px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    height: calc(100dvh - 98px);
    padding: 30px 5%;
    background-color: #fff;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

@media screen and (max-width: 767px) {
  .header__nav.active {
    -webkit-transform: initial;
    transform: initial;
  }
}

.header__link {
  font-size: 1.6rem;
  font-weight: 500;
}

@media screen and (max-width: 1080px) {
  .header__link {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .header__link {
    font-size: 1.6rem;
  }
}

.header__link:not(:last-of-type) {
  margin-right: 80px;
}

@media screen and (max-width: 1080px) {
  .header__link:not(:last-of-type) {
    margin-right: 64px;
  }
}

.header__hamburger {
  border: none;
  background-color: transparent;
}

.header__hamburger.active span:first-of-type {
  -webkit-transform: rotate(-45deg) translateY(10px);
  transform: rotate(-45deg) translateY(10px);
}

.header__hamburger.active span:nth-of-type(2) {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.header__hamburger.active span:last-of-type {
  -webkit-transform: rotate(45deg) translateY(-10px);
  transform: rotate(45deg) translateY(-10px);
}

.header__hamburger-icon span {
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background-color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header__hamburger-icon span:not(:last-of-type) {
  margin-bottom: 5px;
}

.footer {
  padding-block: 34px 139px;
  background-color: #333;
}

@media screen and (max-width: 1080px) {
  .footer {
    padding-block: 27.2px 111px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    overflow: hidden;
    padding-block: 17px 55.5px;
  }
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .footer__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
  }
}

.footer__navigation {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 65px;
  color: #fff;
}

@media screen and (max-width: 1080px) {
  .footer__navigation {
    gap: 42px;
  }
}

@media screen and (max-width: 767px) {
  .footer__navigation {
    -ms-flex-negative: initial;
    flex-shrink: initial;
    gap: 32.5px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .footer__navigation-column {
    width: 100%;
  }
}

.footer__navigation-label {
  margin-bottom: 15px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1080px) {
  .footer__navigation-label {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__navigation-label {
    margin-bottom: 7.5px;
  }
}

.footer__navigation-link {
  display: block;
  font-size: 1.6rem;
  line-height: 2.15625em;
}

@media screen and (max-width: 1080px) {
  .footer__navigation-link {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__navigation-link {
    width: 100%;
  }
}

.footer__navigation-link::before {
  content: "- ";
}

.footer__contact-block {
  gap: 20px;
  width: 323px;
  height: 96px;
  margin-left: auto;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1080px) {
  .footer__contact-block {
    gap: 16px;
    width: 258px;
    height: 77px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__contact-block {
    margin: auto;
    gap: 10px;
  }
}

.footer__contact-link {
  max-width: 105px;
}

@media screen and (max-width: 1080px) {
  .footer__contact-link {
    max-width: 84px;
  }
}

.footer__cpy-block {
  padding-block: 28px;
  background-color: #fff;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1.3125em;
  letter-spacing: -0.02em;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .footer__cpy-block {
    padding-block: 22px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__cpy-block {
    padding-block: 14px;
  }
}

.page-title {
  padding-block: 3px;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.8333333333em;
  letter-spacing: 0.07em;
  color: #fff;
}

@media screen and (max-width: 1080px) {
  .page-title {
    font-size: 1.92rem;
  }
}

@media screen and (max-width: 767px) {
  .page-title {
    font-size: 14px;
  }
}

.page-title--violet {
  background-color: #7845aa;
}

.page-title--green {
  background-color: #30ad30;
}

.page-title--blue {
  background-color: #296ebd;
}

.page-title--gray {
  background-color: #868686;
}

.legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  line-height: 1.9166666667em;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media screen and (max-width: 1080px) {
  .legend {
    font-size: 0.96rem;
    gap: 8px;
  }
}

.legend::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 19px;
  height: 19px;
}

@media screen and (max-width: 1080px) {
  .legend::before {
    width: 15.2px;
    height: 15.2px;
  }
}

.legend--diet::before {
  background-color: #8fd0c4;
}

.legend--merchandise::before {
  background-color: #b3c8e7;
}

.legend--weekday::before {
  background-color: #efe3d0;
}

.legend--time-11::before {
  background-color: #f4c45b;
}

.legend--time-17::before {
  background-color: #fbe7bd;
}

.legend--food::before {
  background-color: #fbb;
}

.legend--service::before {
  background-color: #f2f1f1;
}

.legend--weekends::before {
  background-color: #9e9e9e;
}

.legend--time-14::before {
  background-color: #f8fabe;
}

.legend--time-late-night::before {
  background-color: #fdf3de;
}

.return {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 3.1428571429em;
}

@media screen and (max-width: 1080px) {
  .return {
    font-size: 1.12rem;
  }
}

.return::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 1080px) {
  .return::before {
    width: 6.4px;
    height: 6.4px;
  }
}

.title-block {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8333333333em;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .title-block {
    margin-bottom: 16px;
    font-size: 1.92rem;
  }
}

.title-block--bold {
  font-weight: 700;
}

.header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  background-color: #f3f2f2;
  padding-block: 16.5px;
  padding-inline: 2% 0.5%;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1080px) {
  .header-block {
    gap: 12px;
  }
}

@media screen and (max-width: 767px) {
  .header-block {
    padding-inline: 2%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.header-block__name {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 1080px) {
  .header-block__name {
    font-size: 1.76rem;
  }
}

.header-block__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

@media screen and (max-width: 1080px) {
  .header-block__actions {
    gap: 12px;
  }
}

.header-block__action {
  width: 24px;
  height: 20px;
}

@media screen and (max-width: 1080px) {
  .header-block__action {
    width: 19.2px;
    height: 16px;
  }
}

.header-block__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-left: auto;
}

@media screen and (max-width: 1080px) {
  .header-block__links {
    gap: 12px;
  }
}

@media screen and (max-width: 767px) {
  .header-block__links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: initial;
  }
}

.header-block__links .pill {
  width: 169px;
  padding: 6.5px 20px;
}

@media screen and (max-width: 1080px) {
  .header-block__links .pill {
    width: 135.2px;
    padding: 5.2px 16px;
  }
}

.overview {
  position: relative;
  margin-bottom: 45px;
  padding-block: 25px 40px;
}

@media screen and (max-width: 1080px) {
  .overview {
    margin-bottom: 36px;
    padding-block: 20px 32px;
  }
}

.overview--no-border {
  padding-bottom: 0;
}

.overview--no-border::after {
  display: none;
}

.overview::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #000;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.overview__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 1080px) {
  .overview__item {
    gap: 8px;
    font-size: 1.28rem;
  }
}

@media screen and (max-width: 767px) {
  .overview__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
  }
}

.overview__item:not(:last-of-type) {
  margin-bottom: 5px;
}

.overview__item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 65px;
  margin-bottom: 5px;
}

@media screen and (max-width: 1080px) {
  .overview__item-row {
    gap: 52px;
  }
}

@media screen and (max-width: 767px) {
  .overview__item-row {
    width: 100%;
  }
}

.overview__item-row .overview__item {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
  .overview__item-row .overview__item {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .overview__item-row .overview__content {
    text-align: center;
    width: 100%;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .overview__item-row .overview__content p {
    margin: auto;
  }
}

.overview__label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 80px;
  flex-basis: 80px;
  padding-block: 2px;
  background-color: #3e3a39;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 1080px) {
  .overview__label {
    -ms-flex-preferred-size: 64px;
    flex-basis: 64px;
    font-size: 1.12rem;
  }
}

@media screen and (max-width: 767px) {
  .overview__label {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.overview__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .overview__content {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .overview__content p {
    margin: auto;
  }
}

.overview__rating-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.overview__rating-wrapper:last-of-type {
  margin-left: 40px;
}

.overview__rating-text {
  font-size: 1.4rem;
}

@media screen and (max-width: 1080px) {
  .overview__rating-text {
    font-size: 1.12rem;
  }
}

.overview__rating {
  margin-left: 15px;
  font-size: 2rem;
  letter-spacing: 0.02%;
}

@media screen and (max-width: 1080px) {
  .overview__rating {
    margin-left: 12px;
    font-size: 1.6rem;
  }
}

.overview__grid {
  display: grid;
  grid-template-columns: 40.5% 59.5%;
  grid-template-rows: 1fr auto;
  margin-block: 40px;
  gap: 2px;
}

@media screen and (max-width: 1080px) {
  .overview__grid {
    margin-block: 32px;
  }
}

@media screen and (max-width: 767px) {
  .overview__grid {
    grid-template-columns: auto;
    grid-template-rows: auto;
  }
}

@media screen and (max-width: 767px) {
  .overview__grid .legend {
    width: 100%;
  }
}

.overview__grid .legend::before {
  width: 52px;
}

.overview__grid-computation-cell {
  grid-column: 1/2;
  grid-row: 1/3;
  place-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-inline: 2px dotted #000;
  padding: 18px;
}

@media screen and (max-width: 1080px) {
  .overview__grid-computation-cell {
    padding: 14.4px;
  }
}

@media screen and (max-width: 767px) {
  .overview__grid-computation-cell {
    width: 100%;
    grid-row: auto;
  }
}

.overview__grid-chart-wrapper {
  width: 55.1%;
  margin-left: auto;
}

.overview__grid-chart-wrapper--small {
  position: relative;
  width: 100%;
  margin: auto;
}

.overview__grid-chart-wrapper canvas {
  width: 100%;
  height: 100%;
}

.overview__grid-label {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 3.1428571429em;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1080px) {
  .overview__grid-label {
    font-size: 1.12rem;
  }
}

.overview__grid-label--centered {
  display: block;
  text-align: center;
}

.overview__grid-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .overview__grid-row {
    width: 100%;
    border-inline: 2px dotted #000;
    grid-row: auto;
    grid-column: auto;
  }
}

@media screen and (max-width: 767px) {
  .overview__grid-row--first {
    grid-row: auto;
    grid-column: auto;
  }
}

.overview__grid-row--first .overview__grid-cell::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 0;
  left: 10%;
  display: block;
  height: 2px;
  border-bottom: 2px dotted #000;
}

@media screen and (max-width: 767px) {
  .overview__grid-row--first .overview__grid-cell::after {
    display: none;
  }
}

.overview__grid-cell {
  width: 20.34%;
  position: relative;
  border-right: 2px dotted #000;
  padding: 12px;
}

@media screen and (max-width: 1080px) {
  .overview__grid-cell {
    padding: 9.6px;
  }
}

@media screen and (max-width: 767px) {
  .overview__grid-cell {
    width: 28.09%;
    border: none;
  }
}

.overview__grid-cell--legend-wrapper {
  -ms-flex-preferred-size: 38.33%;
  flex-basis: 38.33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.overview__grid-legend-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .overview__grid-legend-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.overview__grid-legend-layout .legend::before {
  width: 27px;
}

@media screen and (max-width: 1080px) {
  .overview__grid-legend-layout .legend::before {
    width: 21.6px;
  }
}

.overview__grid-legend-items {
  margin-left: auto;
  -ms-flex-preferred-size: 105px;
  flex-basis: 105px;
}

@media screen and (max-width: 1080px) {
  .overview__grid-legend-items {
    -ms-flex-preferred-size: 84px;
    flex-basis: 84px;
  }
}

@media screen and (max-width: 767px) {
  .overview__grid-legend-items {
    width: 100%;
    margin-left: initial;
  }
}

.overview__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .overview__row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
  }
}

.overview__computation-table {
  width: 190px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 3.1428571429em;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1080px) {
  .overview__computation-table {
    font-size: 1.12rem;
    width: 152px;
  }
}

@media screen and (max-width: 767px) {
  .overview__computation-table {
    width: 300px;
    margin: auto;
  }
}

.overview__computation-table:not(:first-of-type) {
  margin-left: 30px;
}

@media screen and (max-width: 1080px) {
  .overview__computation-table:not(:first-of-type) {
    margin-left: 24px;
  }
}

@media screen and (max-width: 767px) {
  .overview__computation-table:not(:first-of-type) {
    margin: 30px auto 0;
  }
}

.overview__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 2px dotted #000;
  border-collapse: collapse;
}

.overview__table-data {
  -ms-flex-preferred-size: 80px;
  flex-basis: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  white-space: nowrap;
}

@media screen and (max-width: 1080px) {
  .overview__table-data {
    -ms-flex-preferred-size: 64px;
    flex-basis: 64px;
  }
}

.overview__table-data:not(:first-of-type) {
  text-align: end;
}

.overview__table-cells {
  position: relative;
  text-align: end;
  -ms-flex-preferred-size: 70px;
  flex-basis: 70px;
}

@media screen and (max-width: 1080px) {
  .overview__table-cells {
    -ms-flex-preferred-size: 56px;
    flex-basis: 56px;
  }
}

.overview__table-cells::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  height: 2px;
  border-bottom: 2px dotted #000;
  pointer-events: none;
}

.overview__note {
  font-size: 1.2rem;
  line-height: 1.5em;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 1080px) {
  .overview__note {
    font-size: 0.96rem;
  }
}

@media screen and (max-width: 767px) {
  .overview__note {
    margin-top: 25px;
  }
}

.overview__graph-inner-content {
  position: absolute;
  inset: 7px 0 0;
  gap: 3px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .overview__graph-inner-content {
    margin-bottom: 5px;
    position: relative;
  }
}

.overview__tooltip-number {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.overview__graph-tooltip {
  width: 17px;
  height: 17px;
}

.remark {
  position: relative;
  width: 189px;
  height: 123px;
  background-color: #fff;
  border: 2px solid #c02a2a;
  border-radius: 14px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 1.4rem;
  line-height: 1.7142857143em;
  letter-spacing: 0.02%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .remark {
    width: 151.2px;
    height: 98.4px;
    font-size: 1.12rem;
  }
}

.remark::before {
  content: "";
  position: absolute;
  top: -17px;
  left: -17px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-color: #c02a2a;
  background-image: url("/public/img/icons/check-mark.svg");
  background-size: 60.61%;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .remark::before {
    width: 26.4px;
    height: 26.4px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background-color: rgba(35, 24, 21, 0.5);
  z-index: -10;
  pointer-events: none;
}

.modal.active {
  display: grid;
  pointer-events: all;
  z-index: 1001;
}

.modal__content {
  width: 400px;
  padding-block: 25px 20px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #000;
  text-align: center;
  -webkit-box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .modal__content {
    width: 320px;
    padding-block: 20px 16px;
  }
}

.modal__title {
  display: block;
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.0625em;
  letter-spacing: 0.11em;
}

@media screen and (max-width: 767px) {
  .modal__title {
    margin-bottom: 12px;
    font-size: 1.4rem;
  }
}

.modal__text {
  font-size: 1.2rem;
  line-height: 1.4166666667em;
}

.modal__actions {
  margin-top: 30px;
  gap: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .modal__actions {
    margin-top: 30.4px;
  }
}

.modal__actions .button {
  width: 118px;
  padding-block: 4.5px;
}

@media screen and (max-width: 767px) {
  .modal__actions .button {
    width: 94.4px;
  }
}

.hero {
  margin-block: 35px 50px;
}

@media screen and (max-width: 1080px) {
  .hero {
    margin-block: 28px 40px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    margin-block: 17.5px 25px;
  }
}

.hero__terms {
  margin-bottom: 5px;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1080px) {
  .hero__terms {
    margin-bottom: 4px;
    font-size: 1.76rem;
  }
}

@media screen and (max-width: 767px) {
  .hero__terms {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.hero__terms .hero__refine-field {
  padding: 4px;
  background-color: #f1f1f1;
}

.hero__terms .input__item.input__item--row {
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .hero__terms .input__item.input__item--row {
    width: 100%;
  }
}

.hero__terms .input__label {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2em;
}

@media screen and (max-width: 1080px) {
  .hero__terms .input__label {
    font-size: 1.76rem;
  }
}

@media screen and (max-width: 767px) {
  .hero__terms .input__label {
    width: 110px;
  }
}

.hero__refine-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  background-color: #f1f1f1;
  padding: 7.5px 1.4%;
}

@media screen and (max-width: 1080px) {
  .hero__refine-search {
    gap: 14.4px;
    padding-block: 6px;
  }
}

@media screen and (max-width: 767px) {
  .hero__refine-search {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.hero__refine-search label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}

@media screen and (max-width: 1080px) {
  .hero__refine-search label {
    width: 60px;
    font-size: 1.12rem;
  }
}

@media screen and (max-width: 767px) {
  .hero__refine-search .input__item--row {
    gap: 0;
    width: 100%;
  }
}

.hero__refine-search .button {
  margin-left: auto;
}

@media screen and (max-width: 1080px) {
  .hero__custom-row {
    gap: 10px;
  }
}

@media screen and (max-width: 1080px) {
  .hero__custom-row label {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

@media screen and (max-width: 767px) {
  .hero__custom-row label {
    width: 60px;
  }
}

.hero__refine-field {
  width: 242px !important;
}

@media screen and (max-width: 1000px) {
  .hero__refine-field {
    width: 193.6px !important;
  }
}

@media screen and (max-width: 767px) {
  .hero__refine-field {
    width: 100% !important;
  }
}

.hero__refine-field.w100 {
  width: 130px !important;
}

@media screen and (max-width: 1000px) {
  .hero__refine-field.w100 {
    width: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .hero__refine-field.w100 {
    width: 100% !important;
  }
}

.hero__refine-field.w130 {
  width: 130px !important;
}

@media screen and (max-width: 1000px) {
  .hero__refine-field.w130 {
    width: 105px !important;
  }
}

@media screen and (max-width: 767px) {
  .hero__refine-field.w130 {
    width: 100% !important;
  }
}

.hero__refine-field.w210 {
  width: 210px !important;
}

@media screen and (max-width: 1000px) {
  .hero__refine-field.w210 {
    width: 190px !important;
  }
}

@media screen and (max-width: 767px) {
  .hero__refine-field.w210 {
    width: 100% !important;
  }
}

.hero__refine-field.w150 {
  width: 150px !important;
}

@media screen and (max-width: 1000px) {
  .hero__refine-field.w150 {
    width: 115px !important;
  }
}

@media screen and (max-width: 767px) {
  .hero__refine-field.w150 {
    width: 100% !important;
  }
}

.hero__map {
  position: relative;
  height: 444px;
  margin-top: 1px;
}

@media screen and (max-width: 1080px) {
  .hero__map {
    height: 355.2px;
  }
}

@media screen and (max-width: 767px) {
  .hero__map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}

.hero__map--h530 {
  height: 530px;
}

@media screen and (max-width: 1080px) {
  .hero__map--h530 {
    height: 480px;
  }
}

@media screen and (max-width: 767px) {
  .hero__map--h530 {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}

@media screen and (max-width: 767px) {
  .hero__map iframe {
    position: relative;
    height: calc(100svh - 140px);
  }
}

.hero__map-search-action {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 3.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  border: none;
  color: #fff;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 2em;
  letter-spacing: 0.04%;
  z-index: 1;
}

.hero__map-search-action::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url("/public/img/icons/search.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.hero__search {
  width: 361px;
  padding: 19px 28px 34px;
  border-radius: 20px;
  border: 1px solid #000;
  background-color: #f1f1f1;
  -webkit-box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 36px;
  left: 28px;
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 1080px) {
  .hero__search {
    top: 16px;
    left: 16px;
  }
}

@media screen and (max-width: 767px) {
  .hero__search {
    position: static;
    width: 100%;
    margin-top: 20px;
    padding: 15px 15px 30px;
  }
}

.hero__search--numbered {
  counter-reset: search-label;
}

.hero__search--numbered .hero__search-label {
  position: relative;
}

.hero__search--numbered .hero__search-label::before {
  counter-increment: search-label;
  content: counter(search-label) ".";
}

.hero__search-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  gap: 10px;
  font-size: 2rem;
  letter-spacing: 0.09em;
  line-height: 2.2em;
}

@media screen and (max-width: 767px) {
  .hero__search-title {
    font-size: 18px;
  }
}

.hero__search-title::before {
  content: "";
  width: 23px;
  height: 23px;
  background: url("/public/img/icons/search-black.svg") no-repeat center/100% 100%;
}

@media screen and (max-width: 767px) {
  .hero__search-title::before {
    width: 20px;
    height: 20px;
  }
}

.hero__search-text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 17px 0 7px;
  line-height: 1.5em;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .hero__search-text {
    width: 100%;
    margin: 12px 0 5px;
  }
}

.hero__search-item {
  font-weight: 500;
}

.hero__search-item label,
.hero__search-item input,
.hero__search-item select {
  font-weight: inherit;
}

.hero__search-item input,
.hero__search-item select {
  margin-top: -9px;
}

.hero__search-item:not(:last-of-type) {
  margin-bottom: 7px;
}

.hero__search-button-wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 27px auto 0;
}

.hero__search-button {
  width: 124px;
  height: 42px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .hero__search-button {
    width: 100px;
    height: 36px;
  }
}

.hero__search-button span::before {
  display: none;
}

.result__list {
  counter-reset: result-item;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .result__list {
    margin-top: 20px;
  }
}

.result__list .result__item:last-of-type {
  border-bottom: 1px solid #c9caca;
}

.result__list.mt21 {
  margin-top: 21px;
}

.result__list--numbered .result__item {
  padding-left: 0;
}

.result__list--numbered .result__area {
  position: relative;
  width: 294px;
  padding-left: 34px;
}

@media screen and (max-width: 767px) {
  .result__list--numbered .result__area {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-left: 16px;
  }
}

.result__list--numbered .result__area::before {
  counter-increment: result-item;
  content: counter(result-item) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.result__title {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 2.2em;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .result__title {
    font-size: 18px;
  }
}

.result__item,
.result__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.result__item {
  padding: 13px 24px 8px 5px;
  border-top: 1px solid #c9caca;
}

@media screen and (max-width: 767px) {
  .result__item {
    gap: 12px;
    padding: 10px 3%;
  }
}

.result__area {
  width: 260px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  .result__area {
    gap: 8px;
    font-size: 14px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.result__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}

@media screen and (max-width: 767px) {
  .result__buttons {
    gap: 6px;
  }
}

.result__buttons .result__button:last-of-type {
  width: 71px;
}

@media screen and (max-width: 767px) {
  .result__buttons .result__button:last-of-type {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.result__button {
  cursor: pointer;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.09em;
  border-radius: 12px;
  border: 1px solid #000;
  background-color: #fff;
  width: 121px;
  height: 28px;
}

@media screen and (max-width: 767px) {
  .result__button {
    font-size: 12px;
    height: 24px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 10px;
    border-radius: 8px;
  }
}

.menu {
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}

@media screen and (max-width: 1000px) {
  .menu {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .menu {
    padding: 50px 2.5%;
  }
}

.menu__heading,
.menu__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-align: center;
  margin-bottom: 34px;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4%;
}

@media screen and (max-width: 1000px) {
  .menu__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px 4%;
  }
}

.menu__list .menu__item:nth-of-type(2) .menu__title::before {
  background-color: #30ad30;
}

.menu__list .menu__item:nth-of-type(3) .menu__title::before {
  background-color: #296ebd;
}

.menu__list .menu__item:nth-of-type(4) {
  width: 19%;
  max-width: 190px;
}

@media screen and (max-width: 1000px) {
  .menu__list .menu__item:nth-of-type(4) {
    width: 35%;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .menu__list .menu__item:nth-of-type(4) {
    width: 100%;
  }
}

.menu__list .menu__item:nth-of-type(4) .menu__title::before {
  background-color: #868686;
}

.menu__list .menu__item:nth-of-type(4) .menu__link {
  letter-spacing: -0.02em;
}

.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  width: 24.5%;
  max-width: 245px;
}

@media screen and (max-width: 1000px) {
  .menu__item {
    width: 35%;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .menu__item {
    width: 100%;
  }
}

.menu__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  line-height: 1;
  margin-bottom: 11px;
}

.menu__title::before {
  content: "";
  width: 8px;
  height: 26px;
  background-color: #7845aa;
}

.menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 36px;
  padding-left: 15px;
  border-radius: 6px;
  border: 1px solid #c9caca;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.menu__link:hover {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.top .mv {
  position: relative;
  width: 100%;
  height: 766px;
}

@media screen and (max-width: 767px) {
  .top .mv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}

.top .mv__map {
  height: 100%;
}

@media screen and (max-width: 767px) {
  .top .mv__map {
    height: calc(100svh - 98px);
  }
}

.top .mv__overlay {
  position: absolute;
  inset: 0;
}

@media screen and (max-width: 767px) {
  .top .mv__overlay {
    position: static;
  }
}

.top .mv__overlay .container {
  height: 100%;
}

@media screen and (max-width: 767px) {
  .top .mv__overlay .container {
    width: 100%;
  }
}

.top .mv__search-block {
  position: relative;
  top: 11.75%;
  max-width: 361px;
  background-color: #f1f1f1;
  border-radius: 20px;
  padding: 28px;
  -webkit-box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .top .mv__search-block {
    max-width: 100%;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 15px 15px 30px;
  }
}

.top .mv__search-block-title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

@media screen and (max-width: 767px) {
  .top .mv__search-block-title {
    font-size: 1.8rem;
  }
}

.top .mv__search-block-title::before {
  content: "";
  position: relative;
  top: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-image: url("/public/img/icons/search.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

@media screen and (max-width: 767px) {
  .top .mv__search-block-title::before {
    width: 18px;
    height: 18px;
    top: 3px;
  }
}

.top .mv__search-block-info {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2352941176em;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .top .mv__search-block-info {
    line-height: 1.7em;
  }
}

.top .mv__search-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 25px;
}

.top .mv .input__additional-fields.init-hide {
  display: none;
}

.top .function {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 20px;
  padding-top: 45px;
}

@media screen and (max-width: 1080px) {
  .top .function {
    gap: 1.6rem;
    padding-top: 36px;
  }
}

@media screen and (max-width: 767px) {
  .top .function {
    gap: 10px;
    padding-top: 22.5px;
  }
}

.top .function__block {
  width: 48.67%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .top .function__block {
    width: 100%;
  }
}

.top .function__block--violet {
  background-color: rgba(73, 40, 105, 0.1);
}

.top .function__block--violet .function__header {
  background-color: #7845aa;
}

.top .function__block--violet .function__link {
  padding-inline: 8.77%;
}

.top .function__block--green {
  background-color: rgba(27, 153, 27, 0.1);
}

.top .function__block--green .function__header {
  background-color: #30ad30;
}

.top .function__block--green .function__link {
  padding-inline: 5.76%;
}

.top .function__block--blue {
  background-color: rgba(56, 137, 183, 0.1);
}

.top .function__block--blue .function__header {
  background-color: #296ebd;
}

.top .function__block--blue .function__link {
  padding-inline: 8.27%;
}

.top .function__block--gray {
  background-color: rgba(217, 218, 218, 0.3);
}

.top .function__block--gray .function__header {
  background-color: #868686;
}

.top .function__block--gray .function__link {
  padding-inline: 5.51% 0;
}

.top .function__header {
  height: 76px;
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1080px) {
  .top .function__header {
    height: 61px;
  }
}

@media screen and (max-width: 767px) {
  .top .function__header {
    height: 38px;
  }
}

.top .function__header h2,
.top .function__header span {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.8333333333em;
}

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

  .top .function__header h2,
  .top .function__header span {
    font-size: 18px;
  }
}

.top .function__items {
  padding: 30px 8.39% 40px;
}

@media screen and (max-width: 767px) {
  .top .function__items {
    padding-block: 15px 20px;
  }
}

.top .function__link {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #c9caca;
  padding-block: 15px;
  font-size: 1.7rem;
  line-height: 1.8333333333em;
  letter-spacing: 0.03em;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .top .function__link {
    font-size: 1.4rem;
  }
}

.top .function__link:not(:last-of-type) {
  margin-bottom: 17px;
}

@media screen and (max-width: 1080px) {
  .top .function__link:not(:last-of-type) {
    margin-bottom: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .top .function__link:not(:last-of-type) {
    margin-bottom: 8.5px;
  }
}

.top .function__link:hover {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: initial;
  box-shadow: initial;
}

.top .function__link .negative-ls {
  letter-spacing: -0.03em;
}

.top .function__link .has-image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 17px;
}

@media screen and (max-width: 767px) {
  .top .function__link .has-image {
    gap: 12px;
  }
}

.top .function__link .has-image::before {
  content: "";
  display: inline-block;
  width: auto;
  height: 42px;
  aspect-ratio: 91/52;
  background: url("/public/img/globe.svg") no-repeat center/100% 100%;
}

@media screen and (max-width: 767px) {
  .top .function__link .has-image::before {
    height: 32px;
  }
}

.search__button {
  margin-right: auto;
  margin-left: initial !important;
}

@media screen and (max-width: 767px) {
  .search .results__table-wrapper {
    overflow: auto;
  }
}

@media screen and (max-width: 767px) {
  .search .results__table-wrapper table {
    min-width: 980px;
  }
}

@media screen and (max-width: 767px) {
  .property__table-wrapper {
    overflow: auto;
  }
}

@media screen and (max-width: 767px) {
  .property__table-wrapper table {
    min-width: 760px;
  }
}

@media screen and (max-width: 767px) {
  .property__table-wrapper .tooltip__content-block {
    left: unset;
    right: 100%;
  }
}

@media screen and (max-width: 767px) {
  .property .table__count {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .property .table__sort {
    margin-left: unset;
  }
}

.property__select-field {
  width: 193px;
}

.property__chart-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .property__chart-layout {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
  }
}

.property__bar-wrapper {
  width: 72.6%;
}

@media screen and (max-width: 1080px) {
  .property__bar-wrapper {
    width: 80%;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .property__bar-wrapper {
    width: 95%;
  }
}

.property__chart-column {
  width: 23.7%;
}

.property__ratio-chart-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 40px;
}

.property__ratio-item-wrapper {
  max-width: 105px;
  width: 50.41%;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

.property__ratio-chart {
  position: relative;
}

.property__tooltip-title {
  font-size: 1.6rem;
}

.property__tooltip-content {
  font-size: 1.2rem;
}

.property__chart-group {
  display: grid;
  gap: 30px 10px;
  grid-template-columns: 67% 32.4%;
  grid-template-rows: auto;
  padding-bottom: 80px;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .property__chart-group {
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    padding-bottom: 0;
  }
}

.property__chart-group .property__chart:first-of-type {
  grid-row: 1/2;
}

@media screen and (max-width: 767px) {
  .property__chart-group .property__chart:first-of-type {
    grid-row: auto;
    grid-column: 1/2;
  }
}

.property__chart-group .property__chart:nth-of-type(2) {
  grid-row: 2/3;
  grid-column: 1/2;
}

@media screen and (max-width: 767px) {
  .property__chart-group .property__chart:nth-of-type(2) {
    grid-row: auto;
    grid-column: 1/2;
  }
}

.property__chart-group .property__chart:nth-of-type(3) {
  height: 100%;
  grid-row: 1/3;
  grid-column: 2/3;
}

@media screen and (max-width: 767px) {
  .property__chart-group .property__chart:nth-of-type(3) {
    grid-row: auto;
    grid-column: 1/2;
  }
}

.property__related-pill {
  border-right: none !important;
}

.property__related-pill .pill {
  width: 110px;
  height: 38px;
  margin: auto;
}

.property__related-table {
  margin-top: 40px;
}

.property__chart-wrapper[data-content=annual-household-income] {
  height: 250px;
  margin-block: 15px 22px;
}

.competitor__table svg {
  width: 24px;
  margin: auto;
}

.competitor__table th:first-of-type {
  width: 9.5%;
}

.competitor__table th:nth-of-type(2) {
  width: 26%;
}

.competitor__table th:nth-of-type(3),
.competitor__table th:nth-of-type(4) {
  width: 7.9%;
}

.competitor__table th:nth-of-type(5) {
  width: 27%;
}

.competitor__table th:nth-of-type(6) {
  width: 7%;
}

.competitor__table th:nth-of-type(7) {
  width: 11.4%;
}

.competitor__table td {
  vertical-align: text-top;
  line-height: 1.5em;
}

.competitor__table td:nth-of-type(2) {
  text-align: start;
}

.competitor__table td:has(svg) {
  vertical-align: top;
}

.competitor__data-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 26px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  background-color: #3e3a39;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .competitor__data-heading {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .competitor__data-table-wrap {
    overflow: scroll;
  }
}

.competitor__data-table {
  margin-top: 14px;
  border-collapse: collapse;
}

@media screen and (max-width: 767px) {
  .competitor__data-table {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.competitor__data-table.mt30 {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .competitor__data-table.mt30 {
    margin-top: 10px;
  }
}

.competitor__data-table tr {
  border-bottom: 1px solid #c9caca;
}

.competitor__data-table tr th:not(:first-of-type) {
  font-weight: 500;
}

.competitor__data-table tr td:first-of-type {
  background-color: #f2f1f1;
}

.competitor__data-table tr:nth-child(-n+4) td:first-of-type {
  background-color: rgba(143, 208, 196, 0.5);
}

.competitor__data-table th {
  font-size: 1.4rem;
  line-height: 3.1428571429em;
  letter-spacing: 0.02em;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .competitor__data-table th {
    font-size: 12px;
  }
}

.competitor__data-table th:nth-of-type(1) {
  width: 341px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .competitor__data-table th:nth-of-type(1) {
    width: 210px;
  }
}

.competitor__data-table th:nth-of-type(2) {
  width: 116px;
}

@media screen and (max-width: 767px) {
  .competitor__data-table th:nth-of-type(2) {
    width: 75px;
  }
}

.competitor__data-table th:nth-of-type(3) {
  width: 144px;
}

@media screen and (max-width: 767px) {
  .competitor__data-table th:nth-of-type(3) {
    width: 75px;
  }
}

.competitor__data-table th:nth-of-type(4) {
  width: 118px;
}

@media screen and (max-width: 767px) {
  .competitor__data-table th:nth-of-type(4) {
    width: 75px;
  }
}

.competitor__data-table th:nth-of-type(5) {
  width: 160px;
}

@media screen and (max-width: 767px) {
  .competitor__data-table th:nth-of-type(5) {
    width: 75px;
  }
}

.competitor__data-table th:nth-of-type(6) {
  width: 121px;
}

@media screen and (max-width: 767px) {
  .competitor__data-table th:nth-of-type(6) {
    width: 75px;
  }
}

.competitor__data-table td {
  font-weight: 500;
  line-height: 3.1428571429em;
}

.competitor__data-table td:not(:first-of-type) {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .competitor__data-table td:not(:first-of-type) {
    font-size: 12px;
  }
}

.competitor__data-table td:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 52px;
  padding: 0 23px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .competitor__data-table td:first-of-type {
    gap: 26px;
    font-size: 14px;
    padding: 0 12px;
  }
}

.competitor__data-table td p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
}

@media screen and (max-width: 767px) {
  .competitor__data-table td p {
    gap: 28px;
  }
}

.competitor__data-table td p span:first-of-type {
  width: 64px;
}

@media screen and (max-width: 767px) {
  .competitor__data-table td p span:first-of-type {
    width: 60px;
  }
}

.competitor__data-table td span.num {
  font-weight: 700;
}

.competitor__search {
  margin-top: 58px;
  padding: 31px 61px 37px 55px;
  background-color: rgba(71, 81, 71, 0.1);
}

@media screen and (max-width: 767px) {
  .competitor__search {
    margin-top: 30px;
    padding: 15px;
  }
}

.competitor__search--mt34 {
  margin-top: 34px;
}

.competitor__search-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: 10px;
  font-size: 2rem;
  letter-spacing: 0.09em;
  line-height: 2.2em;
  padding-left: 8px;
}

@media screen and (max-width: 767px) {
  .competitor__search-title {
    font-size: 18px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.competitor__search-title::before {
  content: "";
  width: 23px;
  height: 23px;
  background: url("/public/img/icons/search-black.svg") no-repeat center/100% 100%;
}

@media screen and (max-width: 767px) {
  .competitor__search-title::before {
    width: 20px;
    height: 20px;
    padding-top: 20px;
  }
}

.competitor__search-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 4px;
  width: 100%;
  min-height: 44px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  border-radius: 6px;
  padding: 6px 32px;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 2.75em;
  cursor: text;
}

@media screen and (max-width: 767px) {
  .competitor__search-field {
    margin-top: 6px;
    padding: 0 20px;
  }
}

.competitor__search-input {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  min-width: 400px;
  height: 100%;
  border: none;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

@media screen and (max-width: 767px) {
  .competitor__search-input {
    min-width: 100px;
  }
}

.competitor__search-input::-webkit-input-placeholder {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #c9caca;
}

.competitor__search-input::-moz-placeholder {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #c9caca;
}

.competitor__search-input:-ms-input-placeholder {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #c9caca;
}

.competitor__search-input::-ms-input-placeholder {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #c9caca;
}

.competitor__search-input::placeholder {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #c9caca;
}

.competitor__search-input:focus {
  border: none;
  outline: none;
}

.competitor__search-text {
  cursor: pointer;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  height: 24px;
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 1.4rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.competitor__search-text::after {
  content: " ✕";
}

.competitor__search-wrapper {
  width: 740px;
  margin: 21px auto 0;
}

@media screen and (max-width: 860px) {
  .competitor__search-wrapper {
    width: 100%;
    margin-top: 15px;
  }
}

.competitor__search-subtitle {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 3.1428571429em;
  padding-left: 3px;
}

.competitor__search-keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 7px 9px;
  border-radius: 10px;
  background-color: #fff;
  padding: 10px 22px 18px;
  margin-top: -4px;
}

@media screen and (max-width: 860px) {
  .competitor__search-keywords {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 18px 22px;
  }
}

@media screen and (max-width: 860px) {
  .competitor__search-keywords {
    padding: 12px 8px;
  }
}

.competitor__search-word {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 67px;
  height: 23px;
  border-radius: 5px;
  font-size: 1.2rem;
  line-height: 3.1426101988em;
  background-color: #8fd0c4;
}

.competitor__search-word.w58 {
  width: 58px;
}

.competitor__search-word.w84 {
  width: 84px;
}

.competitor__search-word.w115 {
  width: 115.5px;
}

.competitor__search-word.w124 {
  width: 124.5px;
}

.competitor__search-word.w131 {
  width: 131.8px;
}

.competitor__search-word.mr4 {
  margin-right: 4px;
}

.competitor__search-word.mr7 {
  margin-right: 7px;
}

.competitor__search-word.pink {
  background-color: #fbb;
}

.competitor__search-word.blue {
  background-color: #b3c8e7;
}

.competitor__search-word.gray {
  background-color: #f2f1f1;
}

.competitor__search-button-wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 58px auto 0;
}

@media screen and (max-width: 767px) {
  .competitor__search-button-wrap {
    margin-top: 30px;
  }
}

.competitor__search-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 154px;
  height: 52px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 767px) {
  .competitor__search-button {
    width: 120px;
    height: 48px;
  }
}

.competitor__search-button--comparison {
  width: 278px;
}

.trade-area--result {
  padding-top: 22px;
}

@media screen and (max-width: 767px) {
  .trade-area--result {
    padding-top: 11px;
  }
}

.trade-area__table-header {
  width: 180px;
}

@media screen and (max-width: 767px) {
  .trade-area__table-wrapper {
    overflow: auto;
  }
}

.trade-area__report-table {
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .trade-area__report-table {
    min-width: 767px;
    font-size: 1.1rem;
  }
}

.trade-area__report-table tr:first-of-type {
  border-bottom: none;
}

.trade-area__report-table tr:not(:first-of-type) {
  border-bottom: 1px dotted #000;
}

.trade-area__report-table th {
  padding-block: 3.5px;
  border-bottom: none;
  background-color: #f1f1f1;
  text-align: center;
  font-weight: 500;
}

.trade-area__report-table th.blue {
  background-color: #cce9f9;
}

.trade-area__report-table td {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.trade-area__title {
  font-size: 2.2rem;
  line-height: 44px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .trade-area__title {
    font-size: 1.8rem;
  }
}

.trade-area__subtitle {
  font-size: 2rem;
  line-height: 44px;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .trade-area__subtitle {
    font-size: 1.6rem;
  }
}

.trade-area__chart {
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .trade-area__chart {
    margin-top: 24px;
  }
}

.trade-area__chart .chart {
  margin-bottom: 29px;
}

@media screen and (max-width: 767px) {
  .trade-area__chart .chart {
    margin-bottom: 15px;
  }
}

.trade-area__chart-content {
  gap: 4.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 900px) {
  .trade-area__chart-content {
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.trade-area__chart-graph {
  padding: 0;
  width: 36.9%;
  height: 221px;
}

@media screen and (max-width: 900px) {
  .trade-area__chart-graph {
    width: 100%;
    max-width: 269px;
  }
}

.trade-area__chart-table {
  width: 54.5%;
}

@media screen and (max-width: 1000px) {
  .trade-area__chart-table {
    width: 59%;
  }
}

@media screen and (max-width: 900px) {
  .trade-area__chart-table {
    width: 100%;
  }
}

.trade-area__chart-table td {
  width: 16.67%;
  padding-right: 2%;
}

.trade-area__chart-table td:first-child {
  padding-right: 0;
}

.trade-area__chart-table td:last-child {
  text-align: right;
}

.trade-area__button {
  margin-top: 49px;
}

.trade-area__button .button {
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-inline: 20px;
}

.tc {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .tc {
    font-size: 1.2rem;
  }
}

.tc__input-block {
  padding-bottom: 45px;
  border-bottom: 2px dotted #727171;
}

@media screen and (max-width: 767px) {
  .tc__input-block {
    padding-bottom: 22.5px;
    border-bottom: 1px dotted #727171;
  }
}

.tc__input-block:first-of-type {
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  .tc__input-block:first-of-type {
    margin-top: 22.5px;
  }
}

.tc__input-block:not(:first-of-type) {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .tc__input-block:not(:first-of-type) {
    padding-top: 15px;
  }
}

.tc__input-block:last-of-type {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .tc__input-block:last-of-type {
    margin-bottom: 10px;
  }
}

.tc__input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 35px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .tc__input-row {
    margin-top: 20px;
    gap: 17.5px;
  }
}

.tc__input-row .button {
  width: 186px;
}

@media screen and (max-width: 767px) {
  .tc__input-row .button {
    width: 93px;
  }
}

.tc__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .tc__row {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    gap: 18px 8.71%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 25px;
  }
}

.tc__button {
  width: 27.9%;
  padding-block: 29px;
  font-size: 1.8rem;
  border: 2px solid #000;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.07em;
  -webkit-box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .tc__button {
    width: 39.86%;
    padding-block: 14.5px;
    font-size: 1.4rem;
  }
}

.tc__button:hover {
  opacity: 0.5;
}

.tc__button--yellow {
  background-color: #f8fabe;
}

.tc__button--blue {
  background-color: #dcf7ff;
}

.tc__button--red {
  background-color: #fab1b1;
}

.tc__button--green {
  background-color: #d5f6d3;
}

.mypage {
  padding-top: 29px;
}

@media screen and (max-width: 767px) {
  .mypage {
    padding-top: 15px;
  }
}

.mypage__heading {
  color: #fff;
  font-size: 2rem;
  padding: 7px 34px;
  line-height: 22.54px;
  letter-spacing: 0.03em;
  font-weight: 500;
  background-color: #868686;
}

@media screen and (max-width: 767px) {
  .mypage__heading {
    font-size: 1.6rem;
    padding: 5px 20px;
  }
}

.mypage__content:not(:last-child) {
  margin-bottom: 110px;
}

@media screen and (max-width: 767px) {
  .mypage__content:not(:last-child) {
    margin-bottom: 55px;
  }
}

.mypage__graph {
  display: grid;
  gap: 11px 15px;
  padding: 0 59px;
  margin-top: 22px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: 218px 218px 300px;
}

@media screen and (max-width: 940px) {
  .mypage__graph {
    gap: 8px;
    padding: 0;
    margin-inline: auto;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 218px 218px;
  }
}

@media screen and (max-width: 550px) {
  .mypage__graph {
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}

.mypage__graph-item {
  text-align: center;
  border-radius: 20px;
  padding: 19px 10px 30px;
  grid-row: span 2/span 2;
  background-color: #fff;
  border: 0.4px solid #d9dada;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 940px) {
  .mypage__graph-item {
    grid-row: unset;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}

.mypage__graph-item:nth-child(2) {
  grid-row: span 2/span 2;
}

@media screen and (max-width: 940px) {
  .mypage__graph-item:nth-child(2) {
    grid-row: unset;
  }
}

.mypage__graph-item:nth-child(3) {
  grid-row: unset;
}

@media screen and (max-width: 940px) {
  .mypage__graph-item:nth-child(3) {
    grid-column: span 2/span 2;
  }
}

.mypage__graph-item:nth-child(4) {
  grid-row: 2;
  grid-column-start: 3;
}

@media screen and (max-width: 940px) {
  .mypage__graph-item:nth-child(4) {
    grid-column: span 2/span 2;
    grid-row-start: 3;
  }
}

.mypage__chart {
  width: 147px;
  height: 147px;
  margin-top: 32px;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .mypage__chart {
    width: unset;
    height: unset;
    margin-top: 17px;
    aspect-ratio: 11/11;
  }
}

.mypage__graph-label {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 20px;
  line-height: 22.54px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

@media screen and (max-width: 767px) {
  .mypage__graph-label {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

.mypage__graph-dot {
  font-size: 1.4rem;
  line-height: 22.54px;
  letter-spacing: 0.03em;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media screen and (max-width: 767px) {
  .mypage__graph-dot {
    font-size: 1.2rem;
  }
}

.mypage__graph-dot .dot {
  color: #ffdf00;
  text-decoration: underline;
  text-decoration-color: #ffdf00;
}

.mypage__graph-wrap {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .mypage__graph-wrap {
    gap: 15px;
  }
}

.mypage__graph-text {
  font-size: 1.6rem;
  line-height: 22.54px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mypage__graph-text {
    font-size: 1.4rem;
  }
}

.mypage__graph-btn {
  width: 111px;
  height: 42px;
  font-size: 1.6rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
  background-color: #00b900;
}

@media screen and (max-width: 767px) {
  .mypage__graph-btn {
    width: 80px;
    height: 35px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mypage__table-wrapper {
    display: block;
  }
}

.mypage__table-heading {
  margin-top: 6px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .mypage__table-heading {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.mypage__table-count {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .mypage__table-count {
    font-size: 1.4rem;
  }
}

.mypage__table-sort {
  margin-left: auto;
}

.mypage__subtable {
  font-size: 1.4rem;
}

.mypage__subtable th {
  padding: 20px;
}

.prof-calc .page-title {
  margin-bottom: 25px;
}

.prof-calc__block {
  width: 730px;
  margin: 80px auto 0;
}

@media screen and (max-width: 767px) {
  .prof-calc__block {
    width: 95%;
  }
}

.prof-calc__block:not(:last-of-type) {
  margin-bottom: 60px;
}

.prof-calc__section-title {
  padding-bottom: 15px;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #868686;
}

@media screen and (max-width: 767px) {
  .prof-calc__section-title {
    padding-bottom: 12px;
    font-size: 1.6rem;
  }
}

.prof-calc__section-title--result {
  padding-bottom: 0;
}

.prof-calc__section-title--no-border {
  border-bottom: none;
}

.prof-calc__input-block {
  margin-top: 20px;
  padding: 0 6.94%;
}

@media screen and (max-width: 1080px) {
  .prof-calc__input-block {
    padding: 0 5.552%;
  }
}

@media screen and (max-width: 767px) {
  .prof-calc__input-block {
    margin-top: 16px;
  }
}

.prof-calc__input-block .input__item--row {
  gap: 0;
}

@media screen and (max-width: 767px) {
  .prof-calc__input-block .input__item--row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }
}

.prof-calc__input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .prof-calc__input-row {
    margin-top: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.prof-calc__input-row input {
  width: 76px !important;
}

.prof-calc__input-row>.input__item:not(:last-of-type) {
  margin-right: 40px;
}

.prof-calc__narrow-row {
  gap: 0;
}

@media screen and (max-width: 767px) {
  .prof-calc__narrow-row {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.prof-calc__narrow-row input {
  margin-left: auto;
  width: 76px !important;
}

@media screen and (max-width: 767px) {
  .prof-calc__narrow-row input {
    width: 100px !important;
    margin-left: initial;
  }
}

@media screen and (max-width: 767px) {
  .prof-calc__narrow-row .input__label {
    width: 45px !important;
    -ms-flex-preferred-size: unset !important;
    flex-basis: unset !important;
  }
}

.prof-calc__input-field {
  max-width: 412px;
  padding: 0 10px !important;
  border: 1px solid #000 !important;
  font-size: 1.4rem !important;
}

@media screen and (max-width: 767px) {
  .prof-calc__input-field {
    width: 100%;
    font-size: 1.6rem !important;
  }
}

.prof-calc__input-field[value] {
  border: 1px solid transparent !important;
  background-color: #f2f1f1;
  font-weight: 700;
}

.prof-calc__input-unit {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-left: 11px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.prof-calc .input__label {
  width: 50px;
  margin-right: 25px;
}

@media screen and (max-width: 767px) {
  .prof-calc .input__label {
    width: 100%;
  }
}

.prof-calc__table-component {
  margin-bottom: 50px;
}

.prof-calc__table-component:has([value]) {
  margin-bottom: 23px;
}

.prof-calc__component-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .prof-calc__component-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.prof-calc__component-row:first-of-type .prof-calc__component-field-wrapper {
  border-top: 1px solid #868686;
}

.prof-calc__component-row:not(:last-of-type) .prof-calc__component-label {
  border-bottom: 3px solid #fff;
}

.prof-calc__component-row:not(:last-of-type) .prof-calc__component-field-wrapper {
  position: relative;
  border-bottom: 1px dotted #868686;
}

.prof-calc__component-row:last-of-type .prof-calc__component-field-wrapper {
  border-bottom: 1px solid #868686;
}

.prof-calc__component-label {
  -ms-flex-preferred-size: 115px;
  flex-basis: 115px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 15px;
  background-color: #3889b7;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .prof-calc__component-label {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 20px 0;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.prof-calc__component-field-wrapper {
  width: 100%;
  padding: 10px;
  margin-left: 3px;
}

.prof-calc__component-field {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
  font-size: 1.4rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .prof-calc__component-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.12rem;
    padding: 8px 0;
  }
}

.prof-calc__component-field:not(:last-of-type) {
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .prof-calc__component-field:not(:last-of-type) {
    margin-right: 0;
  }
}

.prof-calc__component-field-label {
  -ms-flex-preferred-size: max-content;
  flex-basis: max-content;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 13px;
}

@media screen and (max-width: 767px) {
  .prof-calc__component-field-label {
    width: 90px !important;
    -ms-flex-preferred-size: 90px !important;
    flex-basis: 90px !important;
    text-align: left !important;
    margin-right: 0 !important;
  }
}

.prof-calc__component-input-field {
  margin-right: 3px;
  width: 78px;
  height: 45px;
  border-radius: 10px;
  background-color: #f4f2f2;
  border: none;
  padding: 0;
  text-align: center;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .prof-calc__component-input-field {
    font-size: 1.6rem;
  }
}

.prof-calc__component-input-unit {
  -ms-flex-item-align: end;
  align-self: flex-end;
  white-space: nowrap;
}

.prof-calc__button {
  width: 178px;
  margin: auto;
  padding: 5px 0;
  border: 8px;
  font-size: 2rem;
  letter-spacing: 0.01em;
  text-align: center;
}

.prof-calc__computation-arrow {
  width: 62px;
  height: 62px;
  margin: 0 auto 23px;
}

@media screen and (max-width: 767px) {
  .prof-calc__computation-arrow {
    width: 31px;
    height: 31px;
    margin-block: 17px;
  }
}

.prof-calc__computation-block {
  gap: 15px;
  height: 131px;
  margin-bottom: 65px;
  background-color: #f4f2f2;
  border: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .prof-calc__computation-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    height: auto;
    padding: 20px;
  }
}

.prof-calc__equal-sign {
  width: 19px;
  height: 9px;
}

.prof-calc__computation-statement {
  position: relative;
  padding: 0 15px;
  font-size: 1.4rem;
  line-height: 3.1428571429em;
}

@media screen and (max-width: 767px) {
  .prof-calc__computation-statement {
    margin-right: 25px;
  }
}

.prof-calc__computation-statement span {
  display: block;
  text-align: center;
}

.prof-calc__computation-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  height: 1px;
  background-color: #000;
}

.prof-calc__computation-statement::after {
  display: none;
  content: "";
  width: 12px;
  aspect-ratio: 19/9;
  background: url("/public/img/icons/equal-sign.svg") no-repeat center/100% 100%;
  position: absolute;
  top: 50%;
  right: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .prof-calc__computation-statement::after {
    display: block;
  }
}

.prof-calc__grand-result {
  font-size: 2.4rem;
  font-weight: 700;
}

.prof-calc__result-unit {
  font-size: 1.6rem;
}

.prof-calc__simulation-block {
  padding: 45px 50px 0;
  background-color: #f4faff;
}

@media screen and (max-width: 767px) {
  .prof-calc__simulation-block {
    padding: 45px 0;
    padding: 0 25px;
  }
}

.prof-calc__simulation-header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-block: 30px 15px;
}

@media screen and (max-width: 767px) {
  .prof-calc__simulation-header-actions {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.prof-calc__action-block {
  color: #000;
  width: 264px;
  height: 45px;
  background-color: #c9caca;
  border-radius: 10px;
  border: none;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .prof-calc__action-block {
    width: 100%;
  }
}

.prof-calc__action-block span {
  margin-right: 20px;
}

.prof-calc__action-block button:first-of-type {
  margin-right: 30px;
}

.prof-calc__action-block--white {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 188px;
  margin-left: auto;
  padding: 0 21px;
  background-color: #fff;
  border: 1px solid #000;
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.prof-calc__action-block--white:hover {
  opacity: 0.7;
}

.prof-calc__action-block--white span {
  margin-right: 0;
  margin-left: 5px;
}

.prof-calc__action-button {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.prof-calc__action-button svg {
  width: 40%;
  margin: auto;
}

.prof-calc__button-icon {
  width: 18px;
  height: 18px;
}

.prof-calc__table-wrapper {
  overflow: auto;
}

.prof-calc__simulation-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 2.75em;
}

@media screen and (max-width: 767px) {
  .prof-calc__simulation-table {
    min-width: 768px;
  }
}

.prof-calc__simulation-table tr {
  border-block: 1px solid #000;
}

.prof-calc__simulation-table th {
  width: 200px;
  padding: 10px 0;
  text-align: start;
}

.prof-calc__rank {
  width: 52px;
  height: 45px;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.prof-calc__rank--g {
  background-color: #bd292b;
}

.prof-calc__rank--f {
  background-color: #bd6c29;
}

.prof-calc__rank--e {
  background-color: #bd8c29;
}

.prof-calc__rank--d {
  background-color: #bda729;
}

.prof-calc__rank--c {
  background-color: #296ebd;
}

.prof-calc__rank--b {
  background-color: #1a3c63;
}

.prof-calc__rank--a {
  background-color: #000;
}

.prof-calc__simulation-button {
  width: 188px;
  height: 44px;
  margin-top: 18px;
  margin-left: auto;
  background-color: #b3c8e7;
  border: 1px solid #000;
  border-radius: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.prof-calc__simulation-button:hover {
  opacity: 0.7;
}

.prof-calc__simulation-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 40px;
  margin-top: 35px;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
}

@media screen and (max-width: 767px) {
  .prof-calc__simulation-legend {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: initial;
    transform: initial;
  }
}

.prof-calc__simulation-legend .prof-calc__rank {
  width: 40px;
  height: 35px;
  font-size: 1.8rem;
}

.prof-calc__legend-label {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.login__layout {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.login__logo {
  place-self: flex-start;
  width: 149px;
  margin: 27px 0 0 41px;
}

@media screen and (max-width: 980px) {
  .login__logo {
    place-self: center;
    margin-bottom: 40px;
  }
}

.login__form {
  width: 588px;
  background-color: #fff;
  border: 1px solid #d9dada;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .login__form {
    width: 90%;
  }
}

.login__heading {
  padding-block: 20px 19px;
  border-bottom: 1px solid #c9caca;
}

@media screen and (max-width: 767px) {
  .login__heading {
    padding-block: 16px 15px;
  }
}

.login__heading h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .login__heading h1 {
    font-size: 1.9rem;
  }
}

.login__form-content {
  padding: 27px 55px 60px;
}

@media screen and (max-width: 767px) {
  .login__form-content {
    padding: 21.6px 7% 48px;
  }
}

.login__input-item:not(:last-of-type) {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .login__input-item:not(:last-of-type) {
    margin-bottom: 12px;
  }
}

.login__input-label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.7rem;
  font-weight: 700;
}

.login__field {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #000;
  padding-inline: 15px;
  font-size: 1.6rem;
  line-height: 2.75em;
}

.login__field::-webkit-input-placeholder {
  color: #868686;
}

.login__field::-moz-placeholder {
  color: #868686;
}

.login__field:-ms-input-placeholder {
  color: #868686;
}

.login__field::-ms-input-placeholder {
  color: #868686;
}

.login__field::placeholder {
  color: #868686;
}

.login__forgot-pass {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #868686;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.login__forgot-pass:hover {
  opacity: 0.6;
}

.login__privacy-block {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.5em;
}

.login__privacy-statement .login__link {
  display: inline-block;
}

.login__privacy-statement:first-of-type a {
  margin-bottom: 5px;
}

.login__privacy-statement:last-of-type a {
  margin-top: 5px;
}

.login__privacy-statement:not(:last-of-type) {
  margin-bottom: 5px;
}

.login__captcha-wrapper {
  margin: 25px auto 42px;
  width: 272px;
  height: 69px;
}

@media screen and (max-width: 767px) {
  .login__captcha-wrapper {
    width: 100%;
    margin: 20px auto 33.6px;
  }
}

.login__link {
  color: #3889b7;
  text-decoration: underline;
  font-weight: 500;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.login__link--fs-16 {
  display: block;
  text-align: center;
  font-size: 1.6rem;
}

.login__link:hover {
  opacity: 0.6;
}

.login__button {
  margin: 0 auto 40px;
  width: 178px;
  height: 58px;
  font-size: 2rem;
  letter-spacing: 0.01em;
}
.login__button:disabled {
  background-color: #CCC;
  cursor: not-allowed;
}

.login__cpy {
  margin-block: 65px 22px;
  text-align: center;
  font-size: 1.4rem;
  color: #868686;
}

@media screen and (max-width: 767px) {
  .login__cpy {
    margin-block: 52px 17.6px;
  }
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.filled {
  color: #492869;
}

.yugo {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}

.black {
  color: #000;
}
