@charset "UTF-8";

.l-page {
  font-family: YuGothic, "Yu Gothic", Arial, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.l-page__contents {
  max-width: 1300px;
  width: calc(100% - 60px);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .l-page__contents {
    width: auto;
    padding-inline: 5.33vw;
  }
}

.l-page__contents--request {
  margin-block: 80px;
}

@media screen and (max-width: 767px) {
  .l-page__contents--request {
    margin-block: 8vw 9.33333vw;
  }
}

.page-hero {
  margin: 0 0 20px;
  background-color: #d3eae6;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-hero {
    margin: 0 0 5.33333vw;
    text-align: left;
  }
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1000px;
  min-height: 220px;
  gap: 15px;
  margin: 0 auto;
  padding: 50px 0;
}

@media screen and (max-width: 767px) {
  .page-hero__inner {
    gap: 0.53333vw;
    min-height: 37.33333vw;
    padding: 6.66667vw 5.33333vw 4vw;
  }
}

.page-hero__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 13px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .page-hero__main {
    justify-content: flex-start;
    gap: 0 2.66667vw;
    font-size: 7.73333vw;
  }
}

@media screen and (max-width: 767px) {
  .page-hero__main--v2 {
    font-size: 6.66667vw;
  }
}

.page-hero__main--request:before {
  content: "";
  display: block;
  width: 64px;
  aspect-ratio: 64 / 53;
  background: url(../img/icon_document.svg) no-repeat center center/contain;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .page-hero__main--request:before {
    width: 8vw;
  }
}

.page-hero__main--qa:before {
  content: "";
  display: block;
  width: 57px;
  aspect-ratio: 1 / 1;
  background: url(../img/icon_faq.svg) no-repeat center center/contain;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .page-hero__main--qa:before {
    width: 9.86667vw;
  }
}

.page-hero__main--case:before {
  content: "";
  display: block;
  width: 64px;
  aspect-ratio: 64 / 53;
  background: url(../img/icon_case.svg) no-repeat center center/contain;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .page-hero__main--case:before {
    width: 9.86667vw;
  }
}

.page-hero__sub {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7333;
}

@media screen and (max-width: 767px) {
  .page-hero__sub {
    font-size: 4vw;
  }
}

.page-hero__sub--v2 {
  font-size: 34px;
}

@media screen and (max-width: 767px) {
  .page-hero__sub--v2 {
    font-size: 4.53333vw;
  }
}

.page-faq {
  margin: 70px 0 160px;
}

@media screen and (max-width: 767px) {
  .page-faq {
    margin: 8vw 0 14.66667vw;
  }
}

.page-faq-filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .page-faq-filter {
    margin: 0 0 5.33333vw;
    gap: 5.33333vw 0;
    grid-template-columns: 100%;
  }
}

.page-faq-filter__title {
  padding: 12px 20px;
  background-color: #249582;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .page-faq-filter__title {
    padding: 2.4vw 4.53333vw;
    font-size: 5.06667vw;
  }
}

.page-faq-filter__button-wrap {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .page-faq-filter__button-wrap {
    margin-top: 2.66667vw;
    gap: 1.86667vw;
  }
}

.page-faq-filter__button {
  position: relative;
  display: block;
  border: 1px solid #dedede;
  padding: 12px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

@media print, screen and (min-width: 768px) {
  .page-faq-filter__button {
    transition: ease opacity 0.3s;
  }
  .page-faq-filter__button:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .page-faq-filter__button {
    padding: 2.66667vw;
    font-size: 4.53333vw;
  }
}

.page-faq-filter__button input {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
}

.page-faq-filter__button > span {
  position: relative;
  padding-left: 35px;
}

.page-faq-filter__button > span:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 2;
  width: 20px;
  aspect-ratio: 1 / 1;
  border: 1px solid #dedede;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}

.page-faq-filter__button > span:before {
  content: '';
  position: absolute;
  z-index: 5;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 13px;
  transform: rotate(45deg);
  display: inline-block;
  border-right: 3px solid #249582;
  border-bottom: 3px solid #249582;
  pointer-events: none;
  opacity: 0;
}

.page-faq-filter__button input:checked + span:before {
  opacity: 1;
}

.page-faq-filter__button--blank:after {
  position: relative;
  top: -1px;
  content: "";
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  aspect-ratio: 22 / 20;
  background: url(../img/icon_blank.svg) no-repeat center center/contain;
}

@media screen and (max-width: 767px) {
  .page-faq-filter__button--blank:after {
    width: 4.26667vw;
  }
}

.page-faq-more {
  display: flex;
  justify-content: center;
  margin: 60px 0 0;
}

@media screen and (max-width: 767px) {
  .page-faq-more {
    margin: 8vw 0 0;
  }
}

.page-faq-more__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  width: 510px;
  max-width: 100%;
  font-weight: 700;
  font-size: 2rem;
  background-color: #dedede;
}

@media print, screen and (min-width: 768px) {
  .page-faq-more__button {
    transition: ease opacity 0.3s;
  }
  .page-faq-more__button:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .page-faq-more__button {
    padding: 4vw;
    width: 100%;
    font-size: 4.53333vw;
  }
}

.page-faq-more__button:after {
  position: absolute;
  z-index: 2;
  top: calc(50% - 5px);
  right: 20px;
  width: 10px;
  aspect-ratio: 1 / 1;
  transform: rotate(45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
  display: block;
  transition: ease all 0.3s;
}

@media screen and (max-width: 767px) {
  .page-faq-more__button:after {
    right: 20px;
    width: 6px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
}

.page-faq-section {
  margin-top: 70px;
  display: none;
}

@media screen and (max-width: 767px) {
  .page-faq-section {
    margin-top: 13.33333vw;
  }
}

.page-faq-section__title {
  margin: 0 0 15px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .page-faq-section__title {
    margin: 0 0 6.66667vw;
    font-size: 6.66667vw;
  }
}

.page-faq-list {
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  gap: 20px 0;
}

@media screen and (max-width: 767px) {
  .page-faq-list {
    gap: 5.33333vw 0;
  }
}

.page-faq-list__q {
  position: relative;
  padding: 20px 54px 20px 35px;
  font-size: 22px;
  line-height: 1.4;
  cursor: pointer;
  font-feature-settings: "palt";
  background-color: #d3eae6;
}

@media screen and (max-width: 767px) {
  .page-faq-list__q {
    padding: 4.8vw 10.66667vw 4.8vw 5.33333vw;
    font-size: 4.53333vw;
  }
}

.page-faq-list__q:before, .page-faq-list__q:after {
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  .page-faq-list__q:before, .page-faq-list__q:after {
    width: 5.33333vw;
    height: 1px;
    right: 4vw;
  }
}

.page-faq-list__q:before {
  transform: rotate(90deg);
}

.is-open .page-faq-list__q:before {
  transform: rotate(0deg);
}

.page-faq-list__a {
  display: none;
  border: 1px solid #000;
  padding: 20px 35px;
  font-size: 18px;
  line-height: 1.72;
}

@media screen and (max-width: 767px) {
  .page-faq-list__a {
    font-size: 3.73333vw;
    padding: 4.8vw 5.33333vw;
  }
}

.page-faq-list__a > div > :first-child {
  margin-top: 0 !important;
}

.page-faq-list__a figure {
  margin: 1.5em 0;
}

.page-faq-list__a figure img {
  max-width: 100%;
  height: auto;
}

.page-case {
  margin: 70px 0 80px;
}

@media screen and (max-width: 767px) {
  .page-case {
    margin: 6.66667vw 0 17.33333vw;
  }
}

.page-case-filter {
  border: 1px solid #50aa9b;
  margin: 0 0 80px;
}

@media screen and (max-width: 767px) {
  .page-case-filter {
    margin: 0 0 8vw;
  }
}

.page-case-filter__header {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  -webkit-appearance: none;
          appearance: none;
  padding: 10px;
  background-color: #50aa9b;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .page-case-filter__header {
    padding: 2.4vw;
    font-size: 4.53333vw;
  }
}

.page-case-filter__header:before, .page-case-filter__header:after {
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .page-case-filter__header:before, .page-case-filter__header:after {
    width: 4vw;
    height: 1px;
    right: 4vw;
  }
}

.page-case-filter__header:before {
  transform: rotate(90deg);
}

.is-open .page-case-filter__header:before {
  transform: rotate(0deg);
}

.page-case-filter__detail {
  display: none;
  padding: 20px 30px;
}

@media screen and (max-width: 767px) {
  .page-case-filter__detail {
    padding: 2.66667vw;
  }
}

.page-case-filter__detail__title {
  margin: 0 0 14px;
  padding: 12px;
  background-color: #dedede;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-case-filter__detail__title {
    margin: 0 0 2.66667vw;
    padding: 1.86667vw;
    font-size: 4.53333vw;
  }
}

.page-case-filter__detail__list {
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}

@media screen and (max-width: 767px) {
  .page-case-filter__detail__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.66667vw;
    margin: 0 0 4.26667vw;
  }
}

.page-case-filter__detail__list--center {
  justify-content: center;
}

.page-case-filter__button {
  position: relative;
  display: block;
  border: 1px solid #dedede;
  padding: 12px;
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
}

@media print, screen and (min-width: 768px) {
  .page-case-filter__button {
    width: calc(20% - 16px);
    transition: ease opacity 0.3s;
  }
  .page-case-filter__button:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .page-case-filter__button {
    padding: 2.4vw;
    font-size: 3.46667vw;
    font-feature-settings: "palt";
  }
}

.page-case-filter__button input {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
}

.page-case-filter__button > span {
  position: relative;
  display: block;
  padding-left: 30px;
}

@media screen and (max-width: 767px) {
  .page-case-filter__button > span {
    padding-left: 20px;
  }
}

.page-case-filter__button > span:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 2;
  width: 20px;
  aspect-ratio: 1 / 1;
  border: 1px solid #dedede;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-case-filter__button > span:after {
    top: 0;
    width: 15px;
  }
}

.page-case-filter__button > span:before {
  content: '';
  position: absolute;
  z-index: 5;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 13px;
  transform: rotate(45deg);
  display: inline-block;
  border-right: 3px solid #249582;
  border-bottom: 3px solid #249582;
  pointer-events: none;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .page-case-filter__button > span:before {
    top: 2px;
    left: 6px;
    width: 4px;
    height: 10px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }
}

.page-case-filter__button input:checked + span:before {
  opacity: 1;
}

.page-caselist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 25px;
}

@media screen and (max-width: 767px) {
  .page-caselist {
    grid-template-columns: 100%;
    gap: 10.66667vw 0;
  }
}

@media print, screen and (min-width: 768px) {
  .page-caselist__item {
    display: grid;
    gap: 0;
    grid-template-rows: subgrid;
    grid-row: span 4;
  }
  .page-caselist__item:hover .page-caselist__button {
    background-color: #000;
    color: #fff;
  }
  .page-caselist__item:hover .page-caselist__button:after {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}

.page-caselist__image img {
  aspect-ratio: 416 / 277;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.page-caselist__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
}

@media screen and (max-width: 767px) {
  .page-caselist__header {
    gap: 1.33333vw;
    margin: 2.66667vw 0 0;
  }
}

.page-caselist__header__tag {
  padding: 4px 10px;
  background-color: #249582;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .page-caselist__header__tag {
    padding: 0.8vw 1.33333vw;
    font-size: 3.2vw;
  }
}

.page-caselist__header__category {
  font-size: 16px;
  font-weight: 500;
  color: #989898;
}

@media screen and (max-width: 767px) {
  .page-caselist__header__category {
    font-size: 3.2vw;
  }
}

.page-caselist__title {
  margin-top: 0.5em;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .page-caselist__title {
    font-size: 4.8vw;
  }
}

.page-caselist__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 20px 0;
  border: 1px solid #000;
  padding: 15px;
  font-weight: 500;
  font-size: 16px;
  transition: ease all 0.3s;
}

@media screen and (max-width: 767px) {
  .page-caselist__button {
    margin: 5.33333vw 4vw 0;
    padding: 3.2vw;
    font-size: 3.46667vw;
  }
}

.page-caselist__button:after {
  position: absolute;
  z-index: 2;
  top: calc(50% - 5px);
  right: 15px;
  width: 10px;
  aspect-ratio: 1 / 1;
  transform: rotate(45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
  display: block;
  transition: ease all 0.3s;
}

@media screen and (max-width: 767px) {
  .page-caselist__button:after {
    top: calc(50% - 3px);
    width: 6px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
}

.page-case-notfound {
  margin-top: -1em;
  font-size: 2.0rem;
  text-align: center;
  display: none;
}

@media screen and (max-width: 767px) {
  .page-case-notfound {
    margin-top: 0;
    font-size: 1.4rem;
  }
}

.page-case-notfound.is-show {
  display: block;
}

.page-request-index {
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .page-request-index {
    padding: 0 5.33333vw;
  }
}

.page-request-index__section {
  display: grid;
  align-items: center;
  grid-template-columns: 36.66667% 1fr;
  gap: 0 10%;
  margin: 140px 0;
}

@media screen and (max-width: 767px) {
  .page-request-index__section {
    grid-template-columns: 100%;
    gap: 8vw 0;
    margin: 17.33333vw 0;
  }
}

@media screen and (max-width: 767px) {
  .page-request-index__section__title {
    margin: 0 auto;
    width: 46.66667vw;
  }
}

.page-request-index__section__title img {
  width: 100%;
}

.page-request-index__section__list {
  display: grid;
  grid-template-columns: 100%;
  gap: 12px;
}

@media screen and (max-width: 767px) {
  .page-request-index__section__list {
    gap: 6.93333vw;
  }
}

.page-request-index__section__list__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border: 1px solid #000;
  padding: 10px 15px;
  font-size: 28px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .page-request-index__section__list__item {
    min-height: 16vw;
    padding: 1.33333vw;
    font-size: 4.53333vw;
  }
}

.page-request-index__section__list__item:after {
  position: absolute;
  z-index: 2;
  top: calc(50% - 5px);
  right: 15px;
  width: 10px;
  aspect-ratio: 1 / 1;
  transform: rotate(45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
  display: block;
  transition: ease all 0.3s;
}

@media screen and (max-width: 767px) {
  .page-request-index__section__list__item:after {
    top: calc(50% - 3px);
    width: 6px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
}

@media print, screen and (min-width: 768px) {
  .page-request-index__section__list__item {
    transition: ease all 0.3s;
  }
  .page-request-index__section__list__item:hover {
    background-color: #000;
    color: #fff;
  }
  .page-request-index__section__list__item:hover:after {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}

.page-request-form {
  display: grid;
  gap: 0 3.07692%;
  grid-template-rows: -webkit-min-content 1fr;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 51.53846% 43.84615%;
}

@media screen and (max-width: 767px) {
  .page-request-form {
    display: flex;
    flex-direction: column;
  }
}

.page-request-form__headline-v1 {
  position: relative;
  border-bottom: 2px solid #249582;
  padding-bottom: 15px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  color: #249582;
}

@media screen and (max-width: 767px) {
  .page-request-form__headline-v1 {
    border-bottom-width: 1px;
    padding-bottom: 2.66667vw;
    font-size: 4.53333vw;
  }
}

.page-request-form__headline-v1:before, .page-request-form__headline-v1:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scaleY(0.6);
  transform-origin: 50% 0%;
  aspect-ratio: 1 / 1;
  width: 32px;
  background-color: #249582;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

@media screen and (max-width: 767px) {
  .page-request-form__headline-v1:before, .page-request-form__headline-v1:after {
    transform: translateX(-50%) scaleY(0.7);
    width: 4.26667vw;
  }
}

.page-request-form__headline-v1:after {
  top: calc(100% - 3px);
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .page-request-form__headline-v1:after {
    top: calc(100% - 1px);
  }
}

.page-request-form__wp {
  margin: 50px 0 30px;
}

@media screen and (max-width: 767px) {
  .page-request-form__wp {
    margin: 5.33333vw 0;
  }
}

.page-request-form__wp img {
  width: 100%;
}

.page-request-form__wp figcaption {
  margin-top: 0.5em;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #249582;
}

@media screen and (max-width: 767px) {
  .page-request-form__wp figcaption {
    margin-top: 0.8em;
    font-size: 3.73333vw;
  }
}

@media screen and (max-width: 767px) {
  .page-request-form__detail {
    order: 99;
  }
}

.page-request-form__headline-v2 {
  margin: 40px 0 10px;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .page-request-form__headline-v2 {
    margin: 9.33333vw 0 2.13333vw;
    font-size: 4vw;
  }
}

.page-request-form__box {
  border-top: 1px solid #249582;
  border-bottom: 1px solid #249582;
  margin: 5px 0 20px;
  padding: 15px 0;
}

@media screen and (max-width: 767px) {
  .page-request-form__box {
    margin: 1.33333vw 0 2.66667vw;
    padding: 1.6vw 0;
  }
}

.page-request-form__normallist > li {
  position: relative;
  padding-left: 25px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .page-request-form__normallist > li {
    padding-left: 4vw;
    font-size: 4vw;
  }
}

.page-request-form__normallist > li:before {
  position: absolute;
  z-index: 2;
  top: 0.5em;
  left: 0;
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #249582;
}

@media screen and (max-width: 767px) {
  .page-request-form__normallist > li:before {
    top: 0.5em;
    width: 2.93333vw;
  }
}

.page-request-form__ollist {
  display: grid;
  counter-reset: list-item;
}

@media screen and (max-width: 767px) {
  .page-request-form__ollist {
    gap: 0.8vw 0;
  }
}

.page-request-form__ollist > li {
  position: relative;
  padding-left: 25px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  counter-increment: list-item;
}

@media screen and (max-width: 767px) {
  .page-request-form__ollist > li {
    padding-left: 5.33333vw;
    font-size: 4vw;
  }
}

.page-request-form__ollist > li:before {
  content: counter(list-item);
  position: absolute;
  z-index: 2;
  top: 0.6em;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  font-weight: 700;
  font-size: 12px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #249582;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .page-request-form__ollist > li:before {
    top: 0.8em;
    width: 4vw;
    font-size: 1.86667vw;
  }
}

.page-request-form__ollist p {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .page-request-form__ollist p {
    font-size: 70%;
    line-height: 1.5;
  }
}

.page-request-paragraph {
  margin-top: 0.8em;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .page-request-paragraph {
    font-size: 4.26667vw;
  }
}

.page-request-note {
  margin-top: 1.8em;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .page-request-note {
    font-size: 3.73333vw;
  }
}

.page-request-note > li {
  position: relative;
  padding-left: 1em;
}

.page-request-note > li:before {
  content: "※";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}

.page-request-form__input {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}

@media screen and (max-width: 767px) {
  .page-request-form__input {
    margin-top: 5.33333vw;
  }
}

.page-request-form__control {
  padding: 10px 2%;
  border-radius: 10px;
  background-color: #F6F6F6;
}

@media screen and (max-width: 767px) {
  .page-request-form__control {
    padding: 0;
  }
}

.page-request-form__control iframe {
  width: 100%;
  height: 1100px;
}

.page-request-form__notearea {
  margin-top: 2em;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .page-request-form__notearea {
    margin-top: 3em;
    font-size: 2.66667vw;
  }
}

.page-request-form__notearea > li {
  position: relative;
  padding-left: 1em;
}

.page-request-form__notearea > li:before {
  content: "※";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
