@charset "UTF-8";
.form-field {
  border-top: solid 1px #cccccc;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.form-field__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: calc(8px * 4);
  padding-bottom: calc(8px * 4);
  border-bottom: solid 1px #cccccc;
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.5);
  }
}

.form-field dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 304px;
}

@media screen and (max-width: 959px) {
  .form-field dt {
    width: 100%;
    margin-bottom: 8px;
  }
}

.form-field dd {
  width: calc(100% - 320px);
}

@media screen and (max-width: 959px) {
  .form-field dd {
    width: 100%;
  }
}

.form-required,
.form-optional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 44px;
  height: 24px;
  color: #ffffff;
  font-size: 1.4rem;
}

.form-required {
  background: #E85F5F;
}

.form-optional {
  background: #6CA4E9;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #eeeeee;
  font-size: 1.6rem;
  font-family: "M PLUS Rounded 1c", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "Inter", sans-serif;
  line-height: 56px;
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #A2A294;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #A2A294;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #A2A294;
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #A2A294;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #A2A294;
}

input:focus,
select:focus,
textarea:focus {
  outline: solid 2px #333333;
}

select {
  background: url("/wp-content/themes/itreat_base/dist/img/common/select.svg") center right 16px/14px 14px no-repeat #eeeeee;
}

textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

.wpcf7-checkbox .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-checkbox .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  z-index: 1;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #A2A294 #A2A294 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.wpcf7-checkbox .wpcf7-list-item label input:focus + .wpcf7-list-item-label {
  outline: solid 2px #333333;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #A2A294;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-radio .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-radio .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-radio .wpcf7-list-item label:has(input[type="radio"]:focus) {
  outline: solid 2px #FFA62C;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  border-radius: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #A2A294;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #A2A294;
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.form-send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #A2A294;
  color: #ffffff;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 1279px) {
  .form-send {
    height: 72px;
  }
}

@media screen and (max-width: 959px) {
  .form-send {
    height: 64px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    height: 56px;
  }
}

.form-send input[type="submit"] {
  opacity: 0;
  position: absolute;
}

.form-send:has(input[type="submit"]:focus) {
  outline: solid 2px #FFA62C;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
  margin-bottom: calc(8px * 5);
  padding: 32px;
  border-radius: 4px;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    padding: 24px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #ffffff;
  border: solid 1px #5DB160;
  color: #5DB160;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(232, 95, 95, 0.08);
  color: #E85F5F;
  border: solid 1px #E85F5F;
}

.wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.unaccepted input::-webkit-input-placeholder, .wpcf7 form.unaccepted select::-webkit-input-placeholder, .wpcf7 form.unaccepted textarea::-webkit-input-placeholder {
  color: rgba(232, 95, 95, 0.4);
}

.wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.unaccepted input::-moz-placeholder, .wpcf7 form.unaccepted select::-moz-placeholder, .wpcf7 form.unaccepted textarea::-moz-placeholder {
  color: rgba(232, 95, 95, 0.4);
}

.wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.unaccepted input:-ms-input-placeholder, .wpcf7 form.unaccepted select:-ms-input-placeholder, .wpcf7 form.unaccepted textarea:-ms-input-placeholder {
  color: rgba(232, 95, 95, 0.4);
}

.wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.unaccepted input::-ms-input-placeholder, .wpcf7 form.unaccepted select::-ms-input-placeholder, .wpcf7 form.unaccepted textarea::-ms-input-placeholder {
  color: rgba(232, 95, 95, 0.4);
}

.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.unaccepted input::placeholder,
.wpcf7 form.unaccepted select::placeholder,
.wpcf7 form.unaccepted textarea::placeholder {
  color: rgba(232, 95, 95, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(255, 166, 44, 0.08);
  color: #E85F5F;
  border: solid 1px #FFA62C;
}

.wpcf7 form.spam input::-webkit-input-placeholder, .wpcf7 form.spam select::-webkit-input-placeholder, .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(255, 166, 44, 0.4);
}

.wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(255, 166, 44, 0.4);
}

.wpcf7 form.spam input:-ms-input-placeholder, .wpcf7 form.spam select:-ms-input-placeholder, .wpcf7 form.spam textarea:-ms-input-placeholder {
  color: rgba(255, 166, 44, 0.4);
}

.wpcf7 form.spam input::-ms-input-placeholder, .wpcf7 form.spam select::-ms-input-placeholder, .wpcf7 form.spam textarea::-ms-input-placeholder {
  color: rgba(255, 166, 44, 0.4);
}

.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(255, 166, 44, 0.4);
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  padding: 4px 0 0;
  color: #E85F5F;
  font-size: 1.4rem;
}

.screen-reader-response {
  display: none;
}

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #E85F5F;
  font-size: 1.4rem;
  background-color: rgba(232, 95, 95, 0.1);
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-txt {
  text-align: center;
}

.recaptcha-txt a {
  color: #A2A294;
  text-decoration: underline;
}

.recaptcha-txt a:hover {
  text-decoration: none;
}

.front-page {
  overflow: hidden;
}

.front-page .headline {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: calc(8px * 4);
  font-size: 3.2rem;
}

@media screen and (max-width: 959px) {
  .front-page .headline {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .front-page .headline {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

.fs-orn {
  color: #FFA62C;
}

.fs-grn {
  color: #5DB160;
}

.ttl-l {
  position: relative;
  margin-bottom: calc(8px * 5);
  text-align: center;
}

@media screen and (max-width: 959px) {
  .ttl-l {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .ttl-l {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.ttl-l::before {
  content: "";
  position: absolute;
  top: -46px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 46px;
  height: 44px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/ttl-l-deco.png") center/contain no-repeat;
}

.ttl-l__main {
  font-size: 3.6rem;
}

@media screen and (max-width: 1023px) {
  .ttl-l__main {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 959px) {
  .ttl-l__main {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .ttl-l__main {
    font-size: 2.4rem;
  }
}

.ttl-l__sub {
  color: #5DB160;
}

.ttl-m {
  position: relative;
  font-size: 2.6rem;
  padding-bottom: 10px;
  margin-bottom: 16px;
}

@media screen and (max-width: 959px) {
  .ttl-m {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .ttl-m {
    font-size: 2rem;
  }
}

.ttl-m::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/ttl-m-deco.svg") repeat-x;
}

.step-ttl {
  margin-bottom: calc(8px * 4);
  position: relative;
  font-size: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 959px) {
  .step-ttl {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .step-ttl {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 1023px) {
  .step-ttl {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 959px) {
  .step-ttl {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .step-ttl {
    font-size: 2.4rem;
  }
}

.step-ttl::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -44px;
  width: 42px;
  height: 61px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/leaves-ttl-l.svg") center/contain no-repeat;
}

@media screen and (max-width: 1023px) {
  .step-ttl::before {
    left: -33px;
  }
}

@media screen and (max-width: 959px) {
  .step-ttl::before {
    left: -24px;
    width: 32px;
    height: 51px;
  }
}

.step-ttl::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 2px;
  background: #5DB160;
  border-radius: 1px;
}

.hero {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

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

.worries {
  background: #FFFDEB;
  overflow: hidden;
}

.worries .worries-unit {
  position: relative;
  padding-top: calc(8px * 11);
  padding-bottom: calc(8px * 6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: "" nowrap;
  flex-direction: "" nowrap;
}

@media screen and (max-width: 959px) {
  .worries .worries-unit {
    padding-top: calc((8px * 11) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .worries .worries-unit {
    padding-top: calc((8px * 11) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .worries .worries-unit {
    padding-bottom: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .worries .worries-unit {
    padding-bottom: calc((8px * 6) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .worries .worries-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
}

@media screen and (max-width: 519px) {
  .worries .worries-unit {
    padding-top: 24px;
  }
}

.worries .worries-unit::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(50% - 284px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2300px;
  height: 1060px;
  border-radius: 50%;
  background: #ffffff;
}

@media screen and (max-width: 2000px) {
  .worries .worries-unit::before {
    width: 1060px;
  }
}

@media screen and (max-width: 1279px) {
  .worries .worries-unit::before {
    right: calc(50% - 220px);
  }
}

@media screen and (max-width: 959px) {
  .worries .worries-unit::before {
    top: 180px;
    right: calc(50% - 520px);
  }
}

@media screen and (max-width: 767px) {
  .worries .worries-unit::before {
    top: 10%;
  }
}

.worries .worries-unit::after {
  content: "";
  position: absolute;
  top: calc(50% + 17px);
  right: calc(50% - 324px);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
  border-width: 34px 0px 34px 58.89px;
}

@media screen and (max-width: 1279px) {
  .worries .worries-unit::after {
    right: calc(50% - 240px);
  }
}

@media screen and (max-width: 959px) {
  .worries .worries-unit::after {
    display: none;
  }
}

.worries .worries-unit__dtl {
  width: calc(100% - 310px);
}

@media screen and (max-width: 959px) {
  .worries .worries-unit__dtl {
    width: 100%;
  }
}

.worries .worries-unit__dtl .worries-ttl {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 6px;
  margin-bottom: calc(8px * 4);
  font-size: 3.6rem;
}

@media screen and (max-width: 959px) {
  .worries .worries-unit__dtl .worries-ttl {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .worries .worries-unit__dtl .worries-ttl {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 1279px) {
  .worries .worries-unit__dtl .worries-ttl {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 959px) {
  .worries .worries-unit__dtl .worries-ttl {
    font-size: 2.4rem;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .worries .worries-unit__dtl .worries-ttl {
    font-size: 2rem;
    line-height: 1.3;
    padding-bottom: 14px;
  }
}

.worries .worries-unit__dtl .worries-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/border-deco.svg") repeat-x;
}

.worries .worries-unit__dtl .worries-ttl span {
  color: #5DB160;
  font-size: 4rem;
}

@media screen and (max-width: 1279px) {
  .worries .worries-unit__dtl .worries-ttl span {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 959px) {
  .worries .worries-unit__dtl .worries-ttl span {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .worries .worries-unit__dtl .worries-ttl span {
    font-size: 2.4rem;
  }
}

.worries .worries-unit__dtl .list__item {
  font-size: 1.8rem;
}

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

.worries .worries-unit__dtl .list__item::before {
  top: 10px;
}

.worries .worries-unit__dtl .list__item::after {
  top: 18px;
}

.worries .worries-unit__dtl .list__item span {
  font-size: 2.4rem;
  color: #FFA62C;
  background: rgba(255, 166, 44, 0.2);
}

@media screen and (max-width: 959px) {
  .worries .worries-unit__dtl .list__item span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .worries .worries-unit__dtl .list__item span {
    font-size: 1.8rem;
  }
}

.worries .worries-unit__vsl {
  position: relative;
  z-index: 1;
  width: 310px;
}

@media screen and (max-width: 767px) {
  .worries .worries-unit__vsl {
    width: 240px;
  }
}

@media screen and (max-width: 519px) {
  .worries .worries-unit__vsl {
    width: 180px;
  }
}

.worries .worries-comic {
  position: relative;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: calc(8px * 11);
}

@media screen and (max-width: 959px) {
  .worries .worries-comic {
    margin-bottom: calc((8px * 11) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .worries .worries-comic {
    margin-bottom: calc((8px * 11) * 0.5);
  }
}

.message {
  padding-top: calc(8px * 11);
  padding-bottom: calc(8px * 11);
  margin-bottom: 104px;
  background: #FFFDEB;
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .message {
    padding-top: calc((8px * 11) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .message {
    padding-top: calc((8px * 11) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .message {
    padding-bottom: calc((8px * 11) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .message {
    padding-bottom: calc((8px * 11) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .message {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 519px) {
  .message {
    margin-bottom: 64px;
  }
}

.message .message-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 56px;
  position: relative;
  z-index: 0;
}

.message .message-unit::before {
  content: "";
  position: absolute;
  bottom: -88px;
  left: calc(50% + 245px);
  z-index: -1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 934px;
  height: 804px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/leaves-bg.svg") center/contain no-repeat;
}

@media screen and (max-width: 959px) {
  .message .message-unit::before {
    left: 50%;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit::before {
    width: 634px;
    height: 504px;
  }
}

@media screen and (max-width: 519px) {
  .message .message-unit::before {
    width: 534px;
    height: 404px;
  }
}

@media screen and (max-width: 1279px) {
  .message .message-unit {
    gap: 40px;
  }
}

@media screen and (max-width: 1023px) {
  .message .message-unit {
    gap: 38px;
  }
}

@media screen and (max-width: 959px) {
  .message .message-unit {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.message .message-unit__vsl {
  width: 617px;
}

@media screen and (max-width: 1279px) {
  .message .message-unit__vsl {
    width: 480px;
  }
}

@media screen and (max-width: 1023px) {
  .message .message-unit__vsl {
    width: 400px;
  }
}

@media screen and (max-width: 959px) {
  .message .message-unit__vsl {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }
}

.message .message-unit__dtl {
  position: relative;
  width: calc(100% - 673px);
}

@media screen and (max-width: 1279px) {
  .message .message-unit__dtl {
    width: calc(100% - 520px);
  }
}

@media screen and (max-width: 1023px) {
  .message .message-unit__dtl {
    width: calc(100% - 438px);
  }
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl {
    width: 100%;
  }
}

.message .message-unit__dtl .message-ttl {
  position: relative;
  padding-bottom: calc(8px * 3);
  margin-bottom: calc(8px * 4);
  font-size: 3.6rem;
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl {
    padding-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .message .message-unit__dtl .message-ttl {
    padding-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .message .message-unit__dtl .message-ttl {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 1023px) {
  .message .message-unit__dtl .message-ttl {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .message .message-unit__dtl .message-ttl {
    font-size: 2.4rem;
  }
}

.message .message-unit__dtl .message-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/border-deco.svg") repeat-x;
}

.message .message-unit__dtl .message-ttl .message-ttl-deco {
  position: relative;
  margin-right: 14px;
  font-size: 6.2rem;
}

@media screen and (max-width: 1023px) {
  .message .message-unit__dtl .message-ttl .message-ttl-deco {
    font-size: 4.8rem;
  }
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl .message-ttl-deco {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 519px) {
  .message .message-unit__dtl .message-ttl .message-ttl-deco {
    font-size: 2.8rem;
  }
}

.message .message-unit__dtl .message-ttl .message-ttl-deco::before, .message .message-unit__dtl .message-ttl .message-ttl-deco::after {
  content: "";
  width: 40px;
  height: 42px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/message-ttl-deco.svg") center/contain no-repeat;
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl .message-ttl-deco::before, .message .message-unit__dtl .message-ttl .message-ttl-deco::after {
    width: 25px;
    height: 27px;
  }
}

.message .message-unit__dtl .message-ttl .message-ttl-deco::before {
  position: absolute;
  top: -10px;
  right: -36px;
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl .message-ttl-deco::before {
    top: -14px;
    right: -25px;
  }
}

.message .message-unit__dtl .message-ttl .message-ttl-deco::after {
  position: absolute;
  bottom: -4px;
  left: -32px;
  rotate: -180deg;
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl .message-ttl-deco::after {
    left: -20px;
  }
}

.message .message-unit__dtl .message-ttl .message-ttl-deco .message-txt-deco {
  position: relative;
  color: #5DB160;
}

.message .message-unit__dtl .message-ttl .message-ttl-deco .message-txt-deco::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 26px;
  height: 16px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/leaves.svg") center/contain no-repeat;
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-ttl .message-ttl-deco .message-txt-deco::before {
    top: -11px;
    width: 21px;
    height: 11px;
  }
}

.message .message-unit__dtl .message-sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 12px;
}

.message .message-unit__dtl .message-sign__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #5DB160;
  color: #ffffff;
  padding: 1px 8px;
  border-radius: 2px;
}

@media screen and (max-width: 1023px) {
  .message .message-unit__dtl .message-sign__post {
    font-size: 1.4rem;
  }
}

.message .message-unit__dtl .message-sign__name {
  font-size: 2.4rem;
}

@media screen and (max-width: 1023px) {
  .message .message-unit__dtl .message-sign__name {
    font-size: 2rem;
  }
}

@media screen and (max-width: 959px) {
  .message .message-unit__dtl .message-sign__name {
    font-size: 1.6rem;
  }
}

.movie {
  margin-bottom: calc(8px * 10);
}

@media screen and (max-width: 959px) {
  .movie {
    margin-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .movie {
    margin-bottom: calc((8px * 10) * 0.5);
  }
}

.movie .ttl-l {
  margin-bottom: calc(8px * 2);
}

@media screen and (max-width: 959px) {
  .movie .ttl-l {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .movie .ttl-l {
    margin-bottom: calc((8px * 2) * 0.5);
  }
}

.movie .ttl-l::before {
  top: -40px;
  width: 38px;
  height: 37px;
}

@media screen and (max-width: 767px) {
  .movie .ttl-l::before {
    width: 34px;
    height: 33px;
  }
}

.movie .ttl-l__main {
  font-size: 2.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .movie .ttl-l__main {
    font-size: 2rem;
    line-height: 1.2;
  }
}

.movie iframe {
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 720px;
  height: auto;
  padding-top: 8px;
  margin: 0 auto 16px;
}

@media screen and (max-width: 959px) {
  .movie iframe {
    margin: 0 auto 8px;
  }
}

.lawyer-message {
  margin-bottom: calc(8px * 10);
}

@media screen and (max-width: 959px) {
  .lawyer-message {
    margin-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .lawyer-message {
    margin-bottom: calc((8px * 10) * 0.5);
  }
}

.lawyer-message .lawyer-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
}

@media screen and (max-width: 767px) {
  .lawyer-message .lawyer-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.lawyer-message .lawyer-unit__vsl {
  width: 300px;
}

@media screen and (max-width: 767px) {
  .lawyer-message .lawyer-unit__vsl {
    margin-inline: auto;
    max-width: 420px;
    width: 100%;
  }
}

@media screen and (max-width: 519px) {
  .lawyer-message .lawyer-unit__vsl {
    max-width: 240px;
  }
}

.lawyer-message .lawyer-unit__dtl {
  width: calc(100% - 332px);
}

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

.lawyer-message .lawyer-unit__dtl .step-ttl {
  margin-left: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  .lawyer-message .lawyer-unit__dtl .step-ttl {
    margin-left: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .lawyer-message .lawyer-unit__dtl .step-ttl {
    margin-left: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .lawyer-message .lawyer-unit__dtl .step-ttl {
    margin-left: 0;
  }
}

.lawyer-message .lawyer-unit__dtl .lawyer-txt {
  margin-bottom: 12px;
}

.lawyer-message .lawyer-unit__dtl .lawyer-sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.lawyer-message .lawyer-unit__dtl .lawyer-sign__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFA62C;
  color: #ffffff;
  padding: 1px 8px;
  border-radius: 2px;
}

@media screen and (max-width: 1023px) {
  .lawyer-message .lawyer-unit__dtl .lawyer-sign__post {
    font-size: 1.4rem;
  }
}

.lawyer-message .lawyer-unit__dtl .lawyer-sign__name {
  font-size: 2.4rem;
}

@media screen and (max-width: 1023px) {
  .lawyer-message .lawyer-unit__dtl .lawyer-sign__name {
    font-size: 2rem;
  }
}

@media screen and (max-width: 959px) {
  .lawyer-message .lawyer-unit__dtl .lawyer-sign__name {
    font-size: 1.6rem;
  }
}

.step {
  margin-bottom: calc(8px * 10);
}

@media screen and (max-width: 959px) {
  .step {
    margin-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .step {
    margin-bottom: calc((8px * 10) * 0.5);
  }
}

.step .step-unit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

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

.step .step-unit dt {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -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-direction: column;
  flex-direction: column;
  padding: 0 12px;
  font-size: 1.4rem;
  line-height: 1;
  background: #5DB160;
  color: #ffffff;
  border-radius: 3px 0 0 3px;
}

@media screen and (max-width: 767px) {
  .step .step-unit dt {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 3px 3px 0 0;
    color: #ffffff;
  }
}

.step .step-unit dt span {
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .step .step-unit dt span {
    font-size: 2rem;
  }
}

.step .step-unit dd {
  width: 100%;
  padding: 16px 16px 16px 20px;
  border: 1px solid #5DB160;
  border-radius: 0 3px 3px 0;
}

@media screen and (max-width: 767px) {
  .step .step-unit dd {
    padding: 12px;
    border-radius: 0 0 3px 3px;
  }
}

.step .step-unit dd.hav-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 32px;
}

@media screen and (max-width: 767px) {
  .step .step-unit dd.hav-img {
    gap: 16px;
  }
}

@media screen and (max-width: 519px) {
  .step .step-unit dd.hav-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.step .step-unit dd.hav-img .step-unit__dtl {
  width: calc(100% - 257px);
}

@media screen and (max-width: 767px) {
  .step .step-unit dd.hav-img .step-unit__dtl {
    width: calc(100% - 196px);
  }
}

@media screen and (max-width: 519px) {
  .step .step-unit dd.hav-img .step-unit__dtl {
    width: 100%;
  }
}

.step .step-unit dd.hav-img .step-unit__vsl {
  width: 225px;
}

@media screen and (max-width: 767px) {
  .step .step-unit dd.hav-img .step-unit__vsl {
    width: 180px;
  }
}

@media screen and (max-width: 519px) {
  .step .step-unit dd.hav-img .step-unit__vsl {
    width: 100%;
    max-width: 240px;
    margin-inline: auto;
  }
}

.step .step-unit dd .step-unit-ttl {
  margin-bottom: 8px;
  color: #5DB160;
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .step .step-unit dd .step-unit-ttl {
    font-size: 1.6rem;
    margin-bottom: 2px;
  }
}

.step .step-unit dd .step-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

@media screen and (max-width: 519px) {
  .step .step-unit dd .step-txt {
    font-size: 1.4rem;
  }
}

.step .step-unit dd .step-txt span {
  padding: 6px 8px;
  background: #eeeeee;
}

.step .step-unit:not(:last-of-type) {
  margin-bottom: 42px;
}

.step .step-unit:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 24px;
  height: 12px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/arro-g.svg") center/contain no-repeat;
}

.step .step-unit:nth-of-type(2n):not(:last-of-type)::after {
  background: url("/wp-content/themes/itreat_base/dist/img/top/arro-o.svg") center/contain no-repeat;
}

.step .step-unit:nth-of-type(2n) dt {
  background: #FFA62C;
}

.step .step-unit:nth-of-type(2n) dd {
  border: 1px solid #FFA62C;
}

.step .step-unit:nth-of-type(2n) dd .step-unit-ttl {
  color: #FFA62C;
}

.wave-area {
  contain: paint;
}

.point {
  position: relative;
  background: #FFFDEB;
  padding-bottom: calc(8px * 4);
  padding-top: calc(8px * 10);
  margin-bottom: calc(8px * 26);
}

@media screen and (max-width: 959px) {
  .point {
    padding-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .point {
    padding-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .point {
    padding-top: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .point {
    padding-top: calc((8px * 10) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .point {
    margin-bottom: calc((8px * 26) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .point {
    margin-bottom: calc((8px * 26) * 0.5);
  }
}

.point .wave {
  position: absolute;
  height: 106px;
  width: 100%;
  background: #FFFDEB;
  bottom: -106px;
}

@media screen and (max-width: 959px) {
  .point .wave {
    bottom: -46px;
    z-index: -1;
  }
}

.point .wave::before, .point .wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50% 100%;
}

.point .wave::before {
  width: 55%;
  height: 100%;
  background: #FFFDEB;
  right: -1.5%;
  top: 40%;
}

.point .wave::after {
  width: 55%;
  height: 109%;
  background-color: #fff;
  left: -1.5%;
  top: 60%;
}

.point .point-ttl {
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 40px;
}

@media screen and (max-width: 519px) {
  .point .point-ttl {
    margin-bottom: 32px;
  }
}

.point .point-ttl__sub {
  position: relative;
  font-size: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  text-align: center;
  color: #FFA62C;
  margin-inline: auto;
}

@media screen and (max-width: 519px) {
  .point .point-ttl__sub {
    gap: 2px;
  }
}

@media screen and (max-width: 1023px) {
  .point .point-ttl__sub {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 959px) {
  .point .point-ttl__sub {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .point .point-ttl__sub {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 519px) {
  .point .point-ttl__sub {
    margin-bottom: 2px;
  }
}

.point .point-ttl__sub::before {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 2px;
  background: #FFA62C;
  border-radius: 1px;
}

.point .point-ttl__sub::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 2px;
  background: #FFA62C;
  border-radius: 1px;
}

.point .point-ttl__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 16px;
}

.point .point-ttl__main img {
  width: 300px;
}

@media screen and (max-width: 519px) {
  .point .point-ttl__main img {
    width: 270px;
  }
}

.point .point-ttl__main .point-main-deco span {
  font-size: 4.8rem;
  padding: 4px 12px;
  background: #5DB160;
  border-radius: 3px;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .point .point-ttl__main .point-main-deco span {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 519px) {
  .point .point-ttl__main .point-main-deco span {
    font-size: 2.8rem;
  }
}

.point .point-ttl__main .point-main-deco span:not(:last-of-type) {
  margin-right: 6px;
}

.point .point-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
}

@media screen and (max-width: 1279px) {
  .point .point-unit {
    gap: 24px;
  }
}

@media screen and (max-width: 1023px) {
  .point .point-unit {
    gap: 20px;
  }
}

@media screen and (max-width: 959px) {
  .point .point-unit {
    gap: 16px;
  }
}

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

.point .point-unit:not(:last-of-type) {
  margin-bottom: calc(8px * 5);
  padding-bottom: calc(8px * 5);
  border-bottom: 3px dotted #cccccc;
}

@media screen and (max-width: 959px) {
  .point .point-unit:not(:last-of-type) {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .point .point-unit:not(:last-of-type) {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .point .point-unit:not(:last-of-type) {
    padding-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .point .point-unit:not(:last-of-type) {
    padding-bottom: calc((8px * 5) * 0.5);
  }
}

.point .point-unit__dtl {
  width: calc(100% - 566px);
}

@media screen and (max-width: 1279px) {
  .point .point-unit__dtl {
    width: calc(100% - 474px);
  }
}

@media screen and (max-width: 1023px) {
  .point .point-unit__dtl {
    width: calc(100% - 400px);
  }
}

@media screen and (max-width: 959px) {
  .point .point-unit__dtl {
    width: calc(100% - 356px);
  }
}

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

.point .point-unit__dtl .point-unit-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .point .point-unit__dtl .point-unit-ttl {
    gap: 8px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 519px) {
  .point .point-unit__dtl .point-unit-ttl {
    margin-bottom: 10px;
  }
}

.point .point-unit__dtl .point-unit-ttl__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -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-direction: column;
  flex-direction: column;
  padding: 12px 14px;
  background: #5DB160;
  border-radius: 3px;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .point .point-unit__dtl .point-unit-ttl__num {
    padding: 8px 10px;
  }
}

@media screen and (max-width: 519px) {
  .point .point-unit__dtl .point-unit-ttl__num {
    padding: 6px 7px;
  }
}

.point .point-unit__dtl .point-unit-ttl__num em {
  font-size: 3.0rem;
}

@media screen and (max-width: 959px) {
  .point .point-unit__dtl .point-unit-ttl__num em {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 519px) {
  .point .point-unit__dtl .point-unit-ttl__num em {
    font-size: 2.4rem;
  }
}

.point .point-unit__dtl .point-unit-ttl__main {
  color: #5DB160;
  font-size: 2.4rem;
  line-height: 1.2;
}

@media screen and (max-width: 959px) {
  .point .point-unit__dtl .point-unit-ttl__main {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .point .point-unit__dtl .point-unit-ttl__main {
    font-size: 1.8rem;
  }
}

.point .point-unit__dtl .point-unit-ttl__main em {
  font-size: 3.2rem;
}

@media screen and (max-width: 959px) {
  .point .point-unit__dtl .point-unit-ttl__main em {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .point .point-unit__dtl .point-unit-ttl__main em {
    font-size: 2.2rem;
  }
}

.point .point-unit__vsl {
  width: 534px;
}

@media screen and (max-width: 1279px) {
  .point .point-unit__vsl {
    width: 450px;
  }
}

@media screen and (max-width: 1023px) {
  .point .point-unit__vsl {
    width: 380px;
  }
}

@media screen and (max-width: 959px) {
  .point .point-unit__vsl {
    width: 340px;
  }
}

@media screen and (max-width: 767px) {
  .point .point-unit__vsl {
    max-width: 440px;
    width: 100%;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .point .point-unit:nth-of-type(2n-1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.point .point-unit:nth-of-type(2n-1) .point-unit__dtl .point-unit-ttl__num {
  background: #FFA62C;
}

.point .point-unit:nth-of-type(2n-1) .point-unit__dtl .point-unit-ttl__main {
  color: #FFA62C;
}

.blog-bnr a {
  display: block;
  max-width: 640px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 88px;
}

.blog-bnr a:hover {
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
  opacity: .8;
}

.price {
  margin-bottom: calc(8px * 11);
}

@media screen and (max-width: 959px) {
  .price {
    margin-bottom: calc((8px * 11) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .price {
    margin-bottom: calc((8px * 11) * 0.5);
  }
}

.price .price-txt {
  margin-bottom: calc(8px * 5);
  padding: 32px 24px;
  border: 1px solid #5DB160;
  border-radius: 4px;
  background: rgba(93, 177, 96, 0.04);
  text-align: center;
}

@media screen and (max-width: 959px) {
  .price .price-txt {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .price .price-txt {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .price .price-txt {
    padding: 24px 16px;
  }
}

.price .price-txt .price-messe {
  font-size: 2.4rem;
  color: #5DB160;
  margin-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .price .price-txt .price-messe {
    font-size: 2rem;
  }
}

.price .price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 14px;
}

@media screen and (max-width: 519px) {
  .price .price-list {
    gap: 8px;
  }
}

.price .price-list:not(:last-of-type) {
  margin-bottom: 12px;
}

.price .price-list dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 4px;
  min-width: 112px;
  background: rgba(93, 177, 96, 0.06);
  color: #5DB160;
}

@media screen and (max-width: 519px) {
  .price .price-list dt {
    font-size: 1.4rem;
    padding: 8px 4px;
    min-width: 88px;
  }
}

.features {
  margin-bottom: calc(8px * 10);
  position: relative;
}

@media screen and (max-width: 959px) {
  .features {
    margin-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .features {
    margin-bottom: calc((8px * 10) * 0.5);
  }
}

.features::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 8px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/features-deco.svg") repeat-x;
}

.features .features-inner {
  position: relative;
  margin-bottom: calc(8px * 8);
  padding: 0 24px;
}

@media screen and (max-width: 959px) {
  .features .features-inner {
    margin-bottom: calc((8px * 8) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .features .features-inner {
    margin-bottom: calc((8px * 8) * 0.5);
  }
}

.features .features-inner::before {
  content: "";
  position: absolute;
  top: 70%;
  left: 0;
  z-index: -2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 8px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/features-deco.svg") repeat-x;
}

.features .features-ttl {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.features .features-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: calc(100% + 48px);
  height: 100%;
  background: #ffffff;
}

@media screen and (max-width: 519px) {
  .features .features-ttl::before {
    width: calc(100% + 10px);
  }
}

.features .features-ttl img {
  width: 560px;
  margin-inline: auto;
}

@media screen and (max-width: 959px) {
  .features .features-ttl img {
    width: 440px;
  }
}

@media screen and (max-width: 767px) {
  .features .features-ttl img {
    width: 340px;
  }
}

@media screen and (max-width: 767px) {
  .features .features-ttl img {
    width: 300px;
  }
}

.features .features-ttl__txt {
  text-align: center;
  font-size: 3.4rem;
  line-height: 0.3;
}

@media screen and (max-width: 959px) {
  .features .features-ttl__txt {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .features .features-ttl__txt {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 519px) {
  .features .features-ttl__txt {
    font-size: 2.4rem;
  }
}

.features .features-ttl__txt span {
  font-size: 7.6rem;
  color: #FFA62C;
}

@media screen and (max-width: 959px) {
  .features .features-ttl__txt span {
    font-size: 5.6rem;
  }
}

@media screen and (max-width: 767px) {
  .features .features-ttl__txt span {
    font-size: 4rem;
  }
}

@media screen and (max-width: 519px) {
  .features .features-ttl__txt span {
    font-size: 3.2rem;
  }
}

.features .features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: calc(8px * 7);
}

@media screen and (max-width: 959px) {
  .features .features-list {
    margin-bottom: calc((8px * 7) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .features .features-list {
    margin-bottom: calc((8px * 7) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .features .features-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.features .features-list-innner {
  width: calc(50% - 12px);
}

@media screen and (max-width: 959px) {
  .features .features-list-innner {
    width: 100%;
  }
}

.features .features-list-innner .features-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

@media screen and (max-width: 767px) {
  .features .features-list-innner .features-list__item {
    gap: 10px;
  }
}

@media screen and (max-width: 519px) {
  .features .features-list-innner .features-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.features .features-list-innner .features-list__item:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2.5px dotted rgba(204, 204, 204, 0.4);
}

@media screen and (max-width: 519px) {
  .features .features-list-innner .features-list__item:not(:last-of-type) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.features .features-list-innner .features-list__item dt {
  position: relative;
  padding-top: 14px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  background: #5DB160;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 767px) {
  .features .features-list-innner .features-list__item dt {
    width: 64px;
    height: 64px;
  }
}

@media screen and (max-width: 519px) {
  .features .features-list-innner .features-list__item dt {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border-radius: 20px;
    letter-spacing: 0;
  }
}

.features .features-list-innner .features-list__item dt::before {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 0;
  width: 13px;
  height: 13px;
  background: #5DB160;
  border-radius: 50%;
}

@media screen and (max-width: 519px) {
  .features .features-list-innner .features-list__item dt::before {
    bottom: -5px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.features .features-list-innner .features-list__item dt span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.8rem;
  margin-inline: auto;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .features .features-list-innner .features-list__item dt span {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .features .features-list-innner .features-list__item dt span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  .features .features-list-innner .features-list__item dt span {
    margin-inline: 0;
  }
}

.features .features-list-innner .features-list__item dd {
  width: calc(100% - 74px);
  letter-spacing: -1.1px;
}

@media screen and (max-width: 519px) {
  .features .features-list-innner .features-list__item dd {
    width: 100%;
  }
}

.features .features-list-innner .features-list__item dd span {
  color: #5DB160;
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .features .features-list-innner .features-list__item dd span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  .features .features-list-innner .features-list__item dd span {
    font-size: 1.8rem;
  }
}

.features .features-list-innner:nth-of-type(1) .features-list__item:nth-of-type(2n) dt {
  background: #FFA62C;
}

.features .features-list-innner:nth-of-type(1) .features-list__item:nth-of-type(2n) dt::before {
  background: #FFA62C;
}

.features .features-list-innner:nth-of-type(1) .features-list__item:nth-of-type(2n) dd span {
  color: #FFA62C;
}

.features .features-list-innner:nth-of-type(2) .features-list__item:nth-of-type(2n-1) dt {
  background: #FFA62C;
}

.features .features-list-innner:nth-of-type(2) .features-list__item:nth-of-type(2n-1) dt::before {
  background: #FFA62C;
}

.features .features-list-innner:nth-of-type(2) .features-list__item:nth-of-type(2n-1) dd span {
  color: #FFA62C;
}

.features .features-txt {
  padding-bottom: calc(8px * 9);
  text-align: center;
  font-size: 2.6rem;
}

@media screen and (max-width: 959px) {
  .features .features-txt {
    padding-bottom: calc((8px * 9) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .features .features-txt {
    padding-bottom: calc((8px * 9) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .features .features-txt {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .features .features-txt {
    font-size: 2rem;
  }
}

.features .features-txt span {
  font-size: 3.2rem;
  color: #5DB160;
}

@media screen and (max-width: 959px) {
  .features .features-txt span {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .features .features-txt span {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .features .features-txt span {
    font-size: 2rem;
  }
}

.compensation {
  margin-bottom: calc(8px * 10);
}

@media screen and (max-width: 959px) {
  .compensation {
    margin-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .compensation {
    margin-bottom: calc((8px * 10) * 0.5);
  }
}

.compensation .compensation-tool {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
  background: #ffffff;
  border: solid 3px #FFA62C;
  border-radius: 6px;
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 24px 28px 28px 28px;
  }
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 16px 16px 24px;
  }
}

.compensation .compensation-tool::before, .compensation .compensation-tool::after {
  position: absolute;
  content: "";
  top: 16px;
  width: 12px;
  height: 12px;
  background: #FFA62C;
  border-radius: 50%;
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool::before, .compensation .compensation-tool::after {
    top: 8px;
    width: 8px;
    height: 8px;
  }
}

.compensation .compensation-tool::before {
  left: 16px;
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool::before {
    left: 8px;
  }
}

.compensation .compensation-tool::after {
  right: 16px;
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool::after {
    right: 8px;
  }
}

.compensation .compensation-tool .compensation-tool-ttl {
  margin-bottom: 14px;
  text-align: center;
  font-size: 2.4rem;
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool .compensation-tool-ttl {
    font-size: 2rem;
  }
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool .compensation-tool-ttl {
    margin-bottom: 12px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

.compensation .compensation-tool .compensation-tool-ttl span {
  position: relative;
  display: inline-block;
  padding: 0 48px;
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool .compensation-tool-ttl span {
    padding: 0 40px;
  }
}

.compensation .compensation-tool .compensation-tool-ttl span::before, .compensation .compensation-tool .compensation-tool-ttl span::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 38px;
  height: 27px;
  background: url("/wp-content/themes/itreat_base/dist/img/top/flower-yel.svg") center/contain no-repeat;
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool .compensation-tool-ttl span::before, .compensation .compensation-tool .compensation-tool-ttl span::after {
    width: 30px;
    height: 21px;
  }
}

.compensation .compensation-tool .compensation-tool-ttl span::before {
  left: 0;
}

.compensation .compensation-tool .compensation-tool-ttl span::after {
  right: 0;
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
}

.compensation .compensation-tool .compensation-tool-lead p:not(:last-of-type) {
  margin-bottom: 16px;
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool .compensation-tool-lead p:not(:last-of-type) {
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool .compensation-tool-lead p:not(:last-of-type) {
    margin-bottom: 8px;
  }
}

.compensation .compensation-tool .compensation-tool-lead p .note-txt {
  margin-left: 0;
}

.compensation .compensation-tool .compensation-tool-lead .note-txt {
  color: #E85F5F;
}

.compensation .compensation-tool .calculator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: calc(8px * 4);
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool .calculator {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .compensation .compensation-tool .calculator {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool .calculator {
    gap: 12px;
  }
}

.compensation .compensation-tool .calculator__item {
  width: calc(33.33% - 16px);
  max-width: 260px;
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool .calculator__item {
    width: calc(33.33% - 8px);
  }
}

@media screen and (max-width: 767px) {
  .compensation .compensation-tool .calculator__item {
    width: 100%;
    max-width: none;
  }
}

.compensation .compensation-tool .calculator__item dt {
  margin-bottom: 8px;
  color: #5DB160;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .compensation .compensation-tool .calculator__item dt {
    margin-bottom: 0;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .compensation .compensation-tool .calculator__item dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.compensation .compensation-tool .calculator__item dd input {
  display: block;
  width: 100%;
  height: 56px;
  margin-bottom: 8px;
  padding: 0 16px;
  background: #ffffff;
  border: solid 1px #5DB160;
  font-size: 1.6rem;
  font-family: "M PLUS Rounded 1c", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "Inter", sans-serif;
  line-height: 56px;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .compensation .compensation-tool .calculator__item dd input {
    height: 48px;
    line-height: 48px;
  }
}

.compensation .compensation-tool .calculator__item dd input::-webkit-input-placeholder {
  color: #A2A294;
}

.compensation .compensation-tool .calculator__item dd input::-moz-placeholder {
  color: #A2A294;
}

.compensation .compensation-tool .calculator__item dd input:-ms-input-placeholder {
  color: #A2A294;
}

.compensation .compensation-tool .calculator__item dd input::-ms-input-placeholder {
  color: #A2A294;
}

.compensation .compensation-tool .calculator__item dd input::placeholder {
  color: #A2A294;
}

.compensation .compensation-tool .calculator__item dd input[type="number"]::-webkit-outer-spin-button, .compensation .compensation-tool .calculator__item dd input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

@media screen and (max-width: 767px) {
  .compensation .compensation-tool .calculator__item dd .calculator-field {
    width: 100%;
  }
}

.compensation .compensation-tool .calculator__item dd .calculator-note {
  margin: 0 !important;
  color: #5DB160;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool .calculator__item dd .calculator-note {
    text-align: left;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .compensation .compensation-tool .calculator__item dd .calculator-note {
    padding: 0 0 6px;
    text-align: left;
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

.compensation .compensation-tool .calculator-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 480px;
  height: 56px;
  margin: 0 auto;
  background: #5DB160;
  border: solid 2px #5DB160;
  border-radius: 56px;
  color: #ffffff;
  font-size: 1.6rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .compensation .compensation-tool .calculator-submit {
    height: 48px;
    border-radius: 48px;
  }
}

.compensation .compensation-tool .calculator-submit:hover {
  background: #ffffff;
  color: #5DB160;
}

.compensation .compensation-tool .calculator-result {
  padding-top: 32px;
  color: #5DB160;
  font-size: 2.4rem;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .compensation .compensation-tool .calculator-result {
    font-size: 2rem;
  }
}

@media screen and (max-width: 959px) {
  .compensation .compensation-tool .calculator-result {
    padding-top: 28px;
  }
}

@media screen and (max-width: 767px) {
  .compensation .compensation-tool .calculator-result {
    padding-top: 24px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 519px) {
  .faq {
    padding-top: 48px;
  }
}

.faq .faq-list {
  margin-bottom: calc(8px * 10);
}

@media screen and (max-width: 959px) {
  .faq .faq-list {
    margin-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .faq .faq-list {
    margin-bottom: calc((8px * 10) * 0.5);
  }
}

.faq .faq-list__item:not(:last-of-type) {
  padding-bottom: calc(8px * 3);
  margin-bottom: calc(8px * 3);
  border-bottom: 2.5px dotted rgba(204, 204, 204, 0.4);
}

@media screen and (max-width: 959px) {
  .faq .faq-list__item:not(:last-of-type) {
    padding-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .faq .faq-list__item:not(:last-of-type) {
    padding-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .faq .faq-list__item:not(:last-of-type) {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .faq .faq-list__item:not(:last-of-type) {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

.faq .faq-list__item dt {
  position: relative;
  margin-bottom: 8px;
  padding-left: 36px;
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .faq .faq-list__item dt {
    font-size: 2rem;
  }
}

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

@media screen and (max-width: 519px) {
  .faq .faq-list__item dt {
    padding-left: 30px;
  }
}

.faq .faq-list__item dt::before {
  position: absolute;
  top: -9px;
  left: 0;
  content: "Q";
  font-size: 3.2rem;
  color: #5DB160;
}

@media screen and (max-width: 519px) {
  .faq .faq-list__item dt::before {
    font-size: 2.8rem;
  }
}

.faq .faq-list__item dd {
  position: relative;
  padding-left: 36px;
}

@media screen and (max-width: 519px) {
  .faq .faq-list__item dd {
    padding-left: 30px;
  }
}

.faq .faq-list__item dd::before {
  position: absolute;
  top: -8px;
  left: 0;
  content: "A";
  font-size: 3.2rem;
  color: #FFA62C;
}

@media screen and (max-width: 519px) {
  .faq .faq-list__item dd::before {
    left: 1px;
    font-size: 2.8rem;
  }
}

/*# sourceMappingURL=../../maps/pages/accident.css.map */
