@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}
*:before, *:after {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

html {
  font-size: 62.5%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

body {
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.833vw;
  color: #656565;
  background: url(../images/bg_img.webp) no-repeat #ffffff right top/40%;
  position: relative;
  z-index: 0;
}
body img {
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.271vw;
    background-size: 65%;
  }
  body img {
    pointer-events: none;
  }
}

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

.sp_inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_inline {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.flex {
  display: flex;
}

.grid {
  display: grid;
}

section {
  position: relative;
  z-index: 0;
}

h1 {
  font-family: "montserrat", sans-serif;
  font-size: 4.167vw;
  color: #000000;
  margin-top: 2.5vw;
}
h1 span {
  font-family: "ryo-gothic-plusn", sans-serif;
  font-size: 1.563vw;
  font-weight: 900;
  color: #ed4d1c;
  margin-left: 0.521vw;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 9.346vw;
    margin-top: 12.85vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  h1 span {
    font-size: 4.673vw;
    margin-left: 0;
  }
}

header {
  padding-top: 2.083vw;
  margin-left: 2.188vw;
}
header a {
  width: 10.26vw;
  display: block;
  transition: all 0.4s;
}
@media screen and (min-width: 767px) {
  header a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding-top: 2.804vw;
    margin-left: 3.738vw;
  }
  header a {
    width: 26.168vw;
  }
}

main {
  width: 90%;
  max-width: 56.667vw;
  margin: 0 auto;
  /* ボタン */
  /* STEP+フォーム説明 */
  /* form周り */
  /* thanksページ */
}
@media screen and (max-width: 767px) {
  main {
    max-width: 85.981vw;
  }
}
main a.btn-diagnosis_link,
main button.btn-diagnosis_link {
  display: inline-block;
  font-size: 1.458vw;
  text-align: center;
  color: #ffffff;
  background-color: #ed4d1c;
  border: 2px solid #ed4d1c;
  border-radius: 2.813vw;
  padding: 0.7vw 2.083vw;
  transition: all 0.4s;
}
main a.btn-back,
main button.btn-back {
  background-color: #c9aea6;
  border-color: #c9aea6;
}
@media screen and (min-width: 767px) {
  main a:hover.btn-diagnosis_link,
  main button:hover.btn-diagnosis_link {
    color: #ed4d1c;
    background-color: #ffffff;
  }
  main a:hover.btn-back,
  main button:hover.btn-back {
    color: #c9aea6;
  }
}
@media screen and (max-width: 767px) {
  main a.btn-diagnosis_link,
  main button.btn-diagnosis_link {
    font-size: 6.075vw;
    border-radius: 7.944vw;
    padding: 3.037vw 8.178vw;
  }
  main a.btn-back, main a.btn-submit,
  main button.btn-back,
  main button.btn-submit {
    width: 42.056vw;
  }
  main a.btn-submit,
  main button.btn-submit {
    margin-top: 4.673vw;
  }
}
main .inner-intro p {
  line-height: 1.87;
  margin-top: 1.042vw;
}
@media screen and (max-width: 767px) {
  main .inner-intro p {
    margin-top: 3.505vw;
  }
}
main .inner-intro .step_list {
  display: flex;
  margin-top: 3.75vw;
}
@media screen and (max-width: 767px) {
  main .inner-intro .step_list {
    margin-top: 10.514vw;
    margin-left: -0.3vw;
  }
}
main .inner-intro .step_list-item {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.865vw;
  text-align: center;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  main .inner-intro .step_list-item {
    height: 10.514vw;
    margin-right: -2.336vw;
  }
}
main .inner-intro .step_list-item.active::after {
  opacity: 1;
}
main .inner-intro .step_list-item::after {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.3;
}
main .inner-intro .step_list-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.26vw;
  margin-left: -0.781vw;
}
@media screen and (max-width: 767px) {
  main .inner-intro .step_list-inner {
    flex-direction: column;
    align-items: center;
    margin-left: -0.701vw;
  }
}
main .inner-intro .step_list-step01::after {
  background-image: url(../images/step_bg-01.webp);
}
@media screen and (max-width: 767px) {
  main .inner-intro .step_list-step01::after {
    background-image: url(../images/step_bg-01_sp.webp);
  }
}
main .inner-intro .step_list-step02::after {
  background-image: url(../images/step_bg-02.webp);
}
@media screen and (max-width: 767px) {
  main .inner-intro .step_list-step02::after {
    background-image: url(../images/step_bg-02_sp.webp);
  }
}
main .inner-intro .step_list-step03::after {
  background-image: url(../images/step_bg-03.webp);
}
@media screen and (max-width: 767px) {
  main .inner-intro .step_list-step03::after {
    background-image: url(../images/step_bg-03_sp.webp);
  }
}
main .inner-intro .step_list span.step-txt {
  font-family: "noto-sans", sans-serif;
  font-weight: 900;
  font-size: 0.729vw;
}
@media screen and (max-width: 767px) {
  main .inner-intro .step_list span.step-txt {
    font-size: 2.336vw;
  }
}
main .inner-intro .step_list span.step-txt02 {
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-size: 1.25vw;
}
@media screen and (max-width: 767px) {
  main .inner-intro .step_list span.step-txt02 {
    font-size: 4.206vw;
    margin-top: -0.234vw;
  }
}
main .inner-intro .explanation_list {
  margin-top: 3.49vw;
}
main .inner-intro .explanation_list-item {
  line-height: 1.87;
  margin-bottom: 0.26vw;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  main .inner-intro .explanation_list-item {
    line-height: 1.57;
    margin-bottom: 2.336vw;
  }
}
main .inner-intro .explanation_list-item:last-of-type {
  margin-bottom: 0;
}
main .inner-intro .explanation_list-item::before {
  content: "・";
}
main .inner-intro .explanation_list-item.txt-orange {
  color: #ed4d1c;
}
main .inner-form {
  width: 52.604vw;
  margin: 0 auto;
  margin-top: 2.083vw;
}
@media screen and (max-width: 767px) {
  main .inner-form {
    width: 100%;
    margin: 0 auto;
    margin-top: 12.85vw;
  }
}
main .inner-thanks {
  text-align: center;
  margin-top: 5.729vw;
}
main .inner-thanks p {
  font-size: 1.146vw;
  color: #000000;
}
main .inner-thanks p.orange_txt {
  color: #ed4d1c;
  font-size: 1.563vw;
  margin-bottom: 1.042vw;
}
main .inner-thanks .icon_thanks {
  width: 5.313vw;
  margin: 0 auto;
  margin-top: 2.083vw;
  margin-bottom: 4.167vw;
}
@media screen and (max-width: 767px) {
  main .inner-thanks {
    margin-top: 18.692vw;
  }
  main .inner-thanks p {
    font-size: 4.206vw;
    line-height: 1.33;
  }
  main .inner-thanks p.orange_txt {
    font-size: 6.075vw;
    margin-bottom: 5.841vw;
  }
  main .inner-thanks .icon_thanks {
    width: 19.393vw;
    margin-top: 11.682vw;
    margin-bottom: 12.85vw;
  }
}
main .back_mark {
  width: 5.208vw;
  height: 6.823vw;
  position: fixed;
  bottom: 1.563vw;
  right: 11.198vw;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  main .back_mark {
    width: 11.682vw;
    height: 15.187vw;
    position: absolute;
    top: -6vw;
    bottom: auto;
    right: 0;
  }
}

/* form */
form {
  /* 必須アイコン */
  /* 入力欄 */
  /* プルダウン */
  /* 文字カウント */
  /* 制限文字数（300字）を超えたときに適用するスタイル */
  /* error */
  /* 確認画面時 */
  /* チェックボックス */
  /* 個人情報 */
  /* 送信ボタン */
}
form.contact_form-step02 p.annotation_txt, form.contact_form-step02 p.question_txt, form.contact_form-step02 p.contact_address_txt, form.contact_form-step02 p.step02_hidden_txt {
  display: none;
}
form.contact_form-step02 .form_block {
  padding: 0.521vw 0;
}
form.contact_form-step02 .form_block.--textfield {
  padding: 1.563vw 0;
}
form.contact_form-step02 .form_block.--job {
  padding: 1.563vw 0;
}
@media screen and (max-width: 767px) {
  form.contact_form-step02 .form_block {
    padding: 20px 0 10px;
  }
  form.contact_form-step02 .form_block.--textfield {
    padding: 20px 0;
  }
  form.contact_form-step02 .form_block.--job {
    padding: 20px 0;
  }
}
form.contact_form-step02 .char-counter {
  display: none;
}
form.contact_form-step02 .diagnosis_link {
  display: none;
}
form.contact_form-step02 .input_box-school_grade_other {
  margin-top: 0;
}
form.contact_form-step02 .select_wrapper.--diagnosis {
  margin: 0;
}
form p {
  line-height: 1.62;
  /* 「※」マークテキスト */
}
form p.description_txt {
  margin-top: 0.521vw;
  margin-left: 0.833vw;
}
@media screen and (max-width: 767px) {
  form p.description_txt {
    margin-top: 2.336vw;
    margin-left: 0;
  }
}
form p.question_txt {
  color: #000000;
  margin-top: 1.563vw;
  margin-left: 0.833vw;
}
form p.question_txt span {
  display: inline-block;
  margin-bottom: 0.521vw;
}
@media screen and (max-width: 767px) {
  form p.question_txt {
    font-size: 3.738vw;
    margin-top: 3.505vw;
    margin-left: 0;
  }
  form p.question_txt span {
    margin-bottom: 2.336vw;
  }
}
form p.contact_address_txt {
  color: #ed4d1c;
}
@media screen and (max-width: 767px) {
  form p.contact_address_txt {
    font-size: 3.738vw;
  }
}
form p.consent_txt a {
  color: #ed4d1c;
  border-bottom: 1px solid #ed4d1c;
  padding-bottom: 4px;
  transition: all 0.4s;
}
@media screen and (min-width: 767px) {
  form p.consent_txt a:hover {
    opacity: 0.6;
  }
}
form p.annotation_txt {
  color: #989898;
  margin-top: 0.521vw;
}
@media screen and (max-width: 767px) {
  form p.annotation_txt {
    margin-top: 4.673vw;
  }
}
form .form_block {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  border-bottom: 1px dashed #dce0e8;
  gap: 0.781vw 0;
  padding: 2.083vw 0;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  form .form_block {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.5vw 0;
    padding: 3.5vw 0;
  }
}
form .form_block.gridno {
  display: block;
}
form .form_block.--mail {
  position: relative;
}
form .form_block.--remarks {
  border-bottom: none;
}
form .form_block--diagnosis-inner {
  align-items: center;
  grid-template-columns: 23vw 1fr;
}
@media screen and (max-width: 767px) {
  form .form_block--diagnosis-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
form .form_label {
  font-size: 1.042vw;
  color: #000000;
  line-height: 1.1;
  padding-left: 0.521vw;
  border-left: 6px solid #ed4d1c;
  height: 1.302vw;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  form .form_label {
    font-size: 4.206vw;
    padding-left: 2.336vw;
    border-left: none;
    height: auto;
    position: relative;
  }
  form .form_label::before {
    content: "";
    width: 1.402vw;
    height: 4.271vw;
    background-color: #ed4d1c;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  form .gridno .form_label {
    line-height: 1.3;
    margin-bottom: 0;
    display: block;
  }
  form .gridno .form_label::before {
    top: 0.4vw;
  }
}
form .input_box.--date {
  display: flex;
  align-items: flex-end;
}
form .input_box.--date p {
  font-size: 1.042vw;
  margin-left: 0.5vw;
}
@media screen and (max-width: 767px) {
  form .input_box.--date p {
    font-size: 4.206vw;
    margin-left: 1vw;
  }
}
form .input_box-add_02, form .input_box-school_grade_other {
  margin-top: 2.083vw;
}
form .input_box-add_02 p, form .input_box-school_grade_other p {
  margin-bottom: 0.521vw;
}
@media screen and (max-width: 767px) {
  form .input_box-add_02, form .input_box-school_grade_other {
    margin-top: 5.841vw;
  }
  form .input_box-add_02 p, form .input_box-school_grade_other p {
    margin-bottom: 2.336vw;
  }
}
form .input_box-objective_other {
  margin-top: 0.521vw;
}
@media screen and (max-width: 767px) {
  form .input_box-objective_other {
    margin-top: 0;
  }
  form .input_box-objective_other p {
    font-size: 3.738vw;
  }
}
form .form-required {
  margin-left: 0.625vw;
  color: #fff;
  background-color: #ed4d1c;
  padding: 0.208vw 0.417vw;
  font-size: 0.677vw;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  form .form-required {
    margin-left: 2.336vw;
    padding: 0.467vw 1.402vw 0.935vw;
    font-size: 2.804vw;
  }
}
@media screen and (max-width: 767px) {
  form .gridno .form-required {
    padding: 0 1.402vw 0.467vw;
  }
}
form .form_field {
  font-size: 1.042vw;
  line-height: 1.5;
  border: 1px solid #c6c6c6;
  background: #f7f4f0;
  border-radius: 0.26vw;
  padding: 1.042vw;
  width: 42%;
}
@media screen and (max-width: 767px) {
  form .form_field {
    font-size: 3.738vw;
    border-radius: 1.168vw;
    padding: 3.972vw;
    width: 100%;
  }
}
form .form_field--textfield {
  width: 100%;
  height: 11.042vw;
  margin-top: 0.521vw;
}
@media screen and (max-width: 767px) {
  form .form_field--textfield {
    height: 57.944vw;
    margin-top: 2.336vw;
  }
}
form .form_field-age {
  width: 11%;
  margin-left: 0.781vw;
}
@media screen and (max-width: 767px) {
  form .form_field-age {
    width: 25%;
    margin-left: 2vw;
    height: 60px;
  }
}
form .form_field-tel {
  width: 35%;
}
@media screen and (max-width: 767px) {
  form .form_field-tel {
    width: 65%;
  }
}
form .form_field-post_code {
  width: 30%;
  margin-bottom: 0.781vw;
}
@media screen and (max-width: 767px) {
  form .form_field-post_code {
    width: 50%;
    margin-bottom: 3.505vw;
  }
}
form .form_field-add_01 {
  width: 50%;
  margin-top: 0.781vw;
}
@media screen and (max-width: 767px) {
  form .form_field-add_01 {
    width: 100%;
    margin-top: 3.505vw;
  }
}
form .form_field-add_02, form .form_field-school {
  width: 50%;
}
@media screen and (max-width: 767px) {
  form .form_field-add_02, form .form_field-school {
    width: 100%;
  }
}
form .form_field-school_grade_other {
  width: 50%;
}
@media screen and (max-width: 767px) {
  form .form_field-school_grade_other {
    width: 85%;
  }
}
form .form_field-skill {
  margin-top: 1.563vw;
}
@media screen and (max-width: 767px) {
  form .form_field-skill {
    margin-top: 3.505vw;
  }
}
form .form_field-objective_other {
  width: 30%;
}
@media screen and (max-width: 767px) {
  form .form_field-objective_other {
    width: 85%;
  }
}
form input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #f7f4f0 inset;
  text-fill-color: #656565;
  -webkit-box-shadow: 0 0 0 1000px #f7f4f0 inset;
  -webkit-text-fill-color: #656565;
}
form input[type=date] {
  width: 35%;
}
@media screen and (max-width: 767px) {
  form input[type=date] {
    width: 50%;
    -webkit-appearance: none;
    height: 60px;
  }
  form input[type=date]::-webkit-date-and-time-value {
    text-align: left;
  }
}
form input[type=date]:invalid {
  color: #bababa;
}
form input[type=date]:valid {
  color: inherit;
}
form ::-moz-placeholder {
  color: #bababa;
}
form ::placeholder {
  color: #bababa;
}
form .select_wrapper {
  position: relative;
  width: 30%;
}
@media screen and (max-width: 767px) {
  form .select_wrapper {
    width: 50%;
  }
}
form .select_wrapper.--school_grade {
  width: 50%;
}
@media screen and (max-width: 767px) {
  form .select_wrapper.--school_grade {
    width: 85%;
  }
}
form .select_wrapper.--diagnosis {
  width: 32%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  form .select_wrapper.--diagnosis {
    width: 100%;
  }
}
form .select_wrapper::after {
  content: "";
  position: absolute;
  top: 1.5vw;
  right: 1.042vw;
  width: 1.51vw;
  height: 0.885vw;
  background: url(../images/icon_arrow.svg) no-repeat center top/contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  form .select_wrapper::after {
    top: 5.5vw;
    right: 4.673vw;
    width: 5.841vw;
    height: 3.271vw;
  }
}
form .select_wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  border: 1px solid #c6c6c6;
  padding: 1.042vw;
  background-clip: padding-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  form .select_wrapper select {
    border: 1px solid #c6c6c6;
    padding: 3.972vw;
  }
}
form .input_area {
  position: relative;
}
form .char-counter {
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-size: 1.094vw;
  color: #c6c6c6;
  position: absolute;
  bottom: 0.26vw;
  right: 0.781vw;
}
@media screen and (max-width: 767px) {
  form .char-counter {
    font-size: 3.271vw;
    bottom: 1.168vw;
    right: 2.336vw;
  }
}
form .char-counter.over {
  color: red;
  font-weight: bold;
}
form .error-field {
  background-color: #fcdfdf; /* 背景色を薄い赤に */
  border-color: #cc7f7f !important; /* 枠線を赤に */
}
form .error-check-label .form_check {
  /* 例: チェックボックスのUI部分（span）の背景色と枠線を変更 */
  background-color: #fcdfdf;
  border: 1px solid #cc7f7f;
}
form .error_txt {
  font-size: 1.094vw;
  color: #ed4d1c;
  padding-top: 2.083vw;
  text-align: center;
  display: none;
}
@media screen and (max-width: 767px) {
  form .error_txt {
    font-size: 4vw;
    padding-top: 0;
    margin-bottom: 5vw;
  }
}
form input.form_field:-moz-read-only, form textarea.form_field:-moz-read-only {
  border: 1px solid #fff;
  background: #fff;
  color: #000000;
  pointer-events: none;
}
form input.form_field:read-only,
form textarea.form_field:read-only {
  border: 1px solid #fff;
  background: #fff;
  color: #000000;
  pointer-events: none;
}
form input:read-only:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ffffff inset;
  text-fill-color: #656565;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  -webkit-text-fill-color: #656565;
}
form .select_wrapper.readonly-style {
  opacity: 1;
}
form .select_wrapper.readonly-style::after {
  content: none;
}
form select.readonly-style {
  opacity: 1;
  color: #000;
}
form .form_check {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 1.198vw;
  height: 1.198vw;
  border-radius: 0.104vw;
  border: 1px solid transparent;
  background-color: #eae1d6;
  cursor: pointer;
}
form .form_check:checked {
  background-color: #ed4d1c;
}
form .form_check:checked::after {
  content: "";
  position: absolute;
  top: 0.208vw;
  left: 0.05vw;
  width: 0.99vw;
  height: 0.573vw;
  border-bottom: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  form .form_check {
    width: 4.673vw;
    height: 4.673vw;
  }
  form .form_check:checked::after {
    top: 0.818vw;
    left: 0.467vw;
    width: 3.505vw;
    height: 2.103vw;
  }
}
form .form_radio-wrapper {
  display: grid;
  gap: 1.042vw 0;
  width: 98%;
  margin: 0 auto;
  margin-top: 1.042vw;
}
form .form_radio-wrapper.--consent {
  text-align: center;
  gap: 0.521vw 0;
  margin-top: 2.604vw;
}
@media screen and (max-width: 767px) {
  form .form_radio-wrapper {
    gap: 4.673vw 0;
    margin-top: 4.673vw;
  }
  form .form_radio-wrapper.--consent {
    gap: 2.336vw 0;
    margin-top: 9.346vw;
  }
}
form .checkbox_span {
  margin-left: 0.469vw;
  font-size: 16px;
  color: #000000;
}
@media screen and (max-width: 767px) {
  form .checkbox_span {
    margin-left: 2.103vw;
    font-size: 3.738vw;
  }
}
form .readonly-style {
  pointer-events: none; /* ユーザー操作無効 */
  opacity: 0.6; /* 薄く表示して選択済み感を出す */
  cursor: default; /* カーソル変化 */
}
form .readonly-style.form_radio:checked {
  border: 1px solid #eae1d6;
}
form .readonly-style.form_radio:checked::after {
  background-color: #eae1d6;
}
form .readonly-style.form_check:checked {
  background-color: #ed4d1c;
}
form .diagnosis_link {
  text-align: center;
}
form .diagnosis_link p {
  margin-bottom: 0.9vw;
}
@media screen and (max-width: 767px) {
  form .diagnosis_link {
    width: 100%;
    text-align: center;
    margin-top: 7.5vw;
    margin-bottom: 5vw;
  }
  form .diagnosis_link p {
    margin-bottom: 3.505vw;
  }
}
form .consent_block {
  width: 85%;
  margin: 0 auto;
  padding: 2.083vw 0 3.125vw;
}
form .consent_block h2 {
  color: #ed4d1c;
  font-size: 1.042vw;
  text-align: center;
  margin-bottom: 0.781vw;
}
@media screen and (max-width: 767px) {
  form .consent_block {
    width: 100%;
    padding: 10.514vw 0 7.009vw;
  }
  form .consent_block h2 {
    font-size: 4.206vw;
    margin-bottom: 5.841vw;
  }
}
form .btn_area {
  display: flex;
  justify-content: center;
  gap: 0 6.5vw;
}
@media screen and (max-width: 767px) {
  form .btn_area {
    flex-direction: column;
    align-items: center;
    gap: 0 2.336vw;
  }
}

/* form */
footer {
  background: #f2f2f2;
  height: 11.094vw;
  font-size: 0.625vw;
  color: #656565;
  text-align: center;
  margin-top: 5.469vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer a {
  width: 9.896vw;
  margin: 0 auto;
  margin-bottom: 0.938vw;
  display: block;
  transition: all 0.4s;
}
@media screen and (min-width: 767px) {
  footer a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 767px) and (max-width: 767px) {
  footer a:hover {
    line-height: 1.57;
  }
}
@media screen and (max-width: 767px) {
  footer {
    height: 31.308vw;
    font-size: 2.336vw;
    margin-top: 18.692vw;
  }
  footer a {
    width: 25.701vw;
    margin-bottom: 3.037vw;
  }
}/*# sourceMappingURL=style.css.map */