@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding-top: 100px;
}

@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

th,
tr td,
tr td span {
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

@media (min-width: 1200px) {
  .hidden-pc {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1247px) {
  .hidden-tab {
    display: none;
  }
}

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

.section {
  padding-top: 100px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .section {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.section-title {
  font-size: 48px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  padding: 0 0 28px;
  margin: 0;
  position: relative;
  text-align: center;
  line-height: 1;
}

.section-title::after {
  content: "";
  background: #3f51b5;
  width: 60px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .section-title::after {
    width: 48px;
  }
}

@media (max-width: 1247px) {
  .section-title {
    font-size: 50px;
    padding-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 42px;
    padding-bottom: 16px;
  }
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: inherit;
}

@media (max-width: 1247px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.header {
  width: 100%;
  height: 100px;
  background: #3f51b5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 30px 0;
}

@media (max-width: 1247px) {
  .header__inner {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .header__inner {
    padding: 14px 0;
    padding: 0 16px;
  }
}

.header__logo {
  margin: 0;
  line-height: 1;
}

.header__logo img {
  width: 205px;
  vertical-align: top;
}

@media (max-width: 1247px) {
  .header__logo {
    width: 185px;
  }
}

@media (max-width: 767px) {
  .header__logo {
    width: 150px;
  }
}

.header__nav {
  margin-left: auto;
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav ul {
  display: flex;
  align-items: center;
}

.header__nav ul li {
  margin-left: 40px;
}

.header__nav ul li:first-child {
  margin-left: 0;
}

.header__nav ul li a {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  display: block;
  position: relative;
}

.header__nav ul li a::after {
  position: absolute;
  content: "";
  background: #e81919;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -10px;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.header__nav ul li a.is-active::after {
  opacity: 1;
}

.card {
  background: #efefef;
}

.card__items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 55px;
}

@media (max-width: 767px) {
  .card__items {
    margin-top: 30px;
  }
}

.card__item {
  width: calc(33.33333333% - 24px * 2 / 3);
  margin-right: 24px;
  margin-top: 24px;
  transition: all 0.3s ease 0s;
}

.card__item:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 1247px) {
  .card__item {
    width: calc(50% - 24px / 2);
    margin-right: 24px;
  }
  .card__item:nth-child(3n) {
    margin-right: 24px;
  }
  .card__item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .card__item {
    width: 100%;
    margin-right: 0;
  }
  .card__item:nth-child(3n) {
    margin-right: 0;
  }
}

.card__item:hover {
  opacity: 0.6;
}

.media {
  background: #fff;
  display: block;
  padding: 16px;
  border-radius: 4px;
  text-decoration: none;
}

.media__img img {
  vertical-align: bottom;
}

.media__body {
  margin-top: 12px;
  color: #6F7579;
}

.media__title {
  font-size: 20px;
  font-weight: bold;
}

.media__content {
  font-weight: bold;
  margin-top: 4px;
  line-height: 1.5;
}

.news__items {
  margin: 60px auto 0;
  width: 100%;
  max-width: 800px;
}

@media (max-width: 767px) {
  .news__items {
    margin-top: 38px;
  }
}

.news__item {
  border-bottom: 1px solid #707070;
}

.news__item:last-child {
  border-bottom: none;
}

.info {
  display: flex;
  padding: 20px 0 10px;
}

@media (max-width: 767px) {
  .info {
    display: block;
    padding: 12px 0;
  }
}

.info__meta {
  display: flex;
  width: 185px;
  padding-top: 2px;
}

@media (max-width: 767px) {
  .info__meta {
    width: 100%;
    padding-top: 0px;
  }
}

.info__published {
  width: 105px;
  display: inline-block;
  padding-top: 3px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

@media (max-width: 767px) {
  .info__published {
    width: auto;
  }
}

.info__label {
  width: 80px;
}

@media (max-width: 767px) {
  .info__label {
    width: auto;
    margin-left: auto;
    margin-top: 3px;
  }
}

.info__label a {
  color: #fff;
  font-weight: bold;
  background: #666666;
  padding: 8px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .info__label a {
    padding: 4px 8px;
  }
}

.info__label a:hover {
  opacity: 0.6;
}

.info__label.info__label--type01 a {
  background: #3F51B5;
}

.info__label.info__label--type02 a {
  background: #E81919;
}

.info__title {
  line-height: 1.25;
  width: calc(100% - 105px - 80px);
  padding: 5px 0 0 20px;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .info__title {
    width: 100%;
    margin-top: 6px;
    padding: 0;
  }
}

.info__title a {
  text-decoration: none;
  color: #333333;
}

.info__title:hover {
  opacity: 0.6;
}

.news__link {
  padding-top: 44px;
  text-align: center;
}

.news__link a {
  color: #E81919;
  text-decoration: none;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  position: relative;
}

.news__link a::after {
  position: absolute;
  content: "";
  background: url(../img/news-arrow.png) no-repeat center center/contain;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 7px;
  height: 11px;
  margin-top: 1px;
}

.table {
  background: #EFEFEF;
}

.table__content {
  margin-top: 80px;
  display: flex;
}

@media (max-width: 767px) {
  .table__content {
    margin-top: 52px;
    display: block;
  }
}

.table__img {
  width: 454px;
  margin-right: 40px;
  text-align: center;
}

@media (max-width: 1247px) {
  .table__img {
    margin-right: 62px;
  }
}

@media (max-width: 767px) {
  .table__img {
    width: 100%;
    margin-top: 0;
    margin-bottom: 32px;
  }
}

.table__price {
  width: 706px;
}

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

.table__default {
  border: 1px solid #707070;
  border-collapse: collapse;
  background: #fff;
  width: 100%;
  table-layout: fixed;
}

.table__default th, .table__default td {
  border: 1px solid #707070;
  padding: 18px 24px;
  line-height: 1.2;
  vertical-align: middle;
  font-weight: bold;
}

@media (max-width: 767px) {
  .table__default th, .table__default td {
    padding: 16px;
  }
}

.table__default th {
  text-align: center;
  background: #999;
  color: #fff;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

.table__default th:first-child {
  width: 170px;
}

@media (max-width: 1247px) {
  .table__default th:first-child {
    width: 100px;
  }
}

@media (max-width: 767px) {
  .table__default th:first-child {
    width: 80px;
  }
}

.table__default td {
  text-align: right;
}

.table__default td.table-default__multi-line {
  padding-top: 10px;
  padding-bottom: 8px;
}

@media (max-width: 767px) {
  .table__default td.table-default__multi-line {
    padding-top: 6px;
    padding-bottom: 4px;
  }
}

.table__default td span.m-active {
  color: #e81919;
}

.table__default td span.m-small {
  font-size: 0.8em;
}

.table__attention {
  font-size: 14px;
  margin-top: 5px;
}

.table__attention a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease 0s;
}

.table__attention a:hover {
  opacity: 0.6;
}

.map__iframe {
  width: 100%;
  max-width: 800px;
  margin: 80px auto 0;
}

@media (max-width: 767px) {
  .map__iframe {
    margin-top: 60px;
  }
}

.map__iframe-wrap {
  width: 100%;
  padding-top: 50%;
  position: relative;
}

.map__iframe-wrap > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.map__info {
  width: 100%;
  max-width: 800px;
  margin: 8px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .map__info {
    padding-left: 0;
    padding-right: 0;
    margin-top: 20px;
  }
}

.map__info dt, .map__info dd {
  padding: 3px 0;
  margin: 0;
}

@media (max-width: 767px) {
  .map__info dt, .map__info dd {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

.map__info dt {
  width: 104px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .map__info dt {
    width: 92px;
  }
}

.map__info dd {
  width: calc(100% - 104px);
}

@media (max-width: 767px) {
  .map__info dd {
    width: calc(100% - 92px);
  }
}

.map__link {
  text-align: center;
  margin-top: 22px;
}

.button-arrow-right {
  -webkit-appearance: none;
  background: #3f51b5 url(../img/icon-arrow-right.png) no-repeat center right 12px/17px 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 14px 60px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 700;
  width: 304px;
  max-width: 100%;
  line-height: 1.6;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .button-arrow-right {
    padding: 14px 32px;
    width: 100%;
  }
}

.button-arrow-right:hover {
  opacity: 0.6;
}

.uq {
  background: #EEEEEE;
}

.qa__items {
  width: 100%;
  max-width: 900px;
  margin: 80px auto 0;
}

.qa__item {
  margin-bottom: 24px;
}

.qa__item:last-child {
  margin-bottom: 0;
}

.accordion__head {
  cursor: pointer;
  display: block;
  padding: 12px 56px;
  background: #3F51B5;
  color: #ffffff;
  font-weight: 700;
  position: relative;
}

@media (max-width: 767px) {
  .accordion__head {
    padding: 12px 22px 12px 56px;
  }
}

.accordion__head::before {
  position: absolute;
  content: "Q";
  left: 20px;
}

.accordion-body {
  display: none;
  border: 1px solid #3F51B5;
  position: relative;
}

.accordion__body-in {
  color: #3F51B5;
  font-weight: 700;
  padding: 12px 56px;
  position: relative;
}

@media (max-width: 767px) {
  .accordion__body-in {
    padding: 12px 22px 12px 56px;
  }
}

.accordion__body-in::before {
  position: absolute;
  content: "A";
  left: 20px;
}

.accordion-icon {
  position: absolute;
  content: "";
  background: url(../img/icon-plus.png) no-repeat center center/contain;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  transition: all 0.3s ease 0s;
}

.accordion-icon.is-open {
  background: url(../img/icon-minus.png) no-repeat center center/contain;
}

.contact {
  background: #EFEFEF;
}

.contact__item {
  width: 100%;
  max-width: 800px;
  background: #fff;
  margin: 80px auto 0;
  padding: 60px;
}

@media (max-width: 767px) {
  .contact__item {
    padding: 20px;
    margin-top: 26px;
  }
}

.contact__controls {
  margin: 0;
}

.contact__control {
  margin-bottom: 60px;
  display: flex;
}

@media (max-width: 767px) {
  .contact__control {
    display: block;
    margin-bottom: 24px;
  }
}

.contact__control:last-child {
  margin-bottom: 0;
}

.contact__control dt {
  width: 160px;
  padding: 6px 0 0;
  margin: 0;
}

@media (max-width: 767px) {
  .contact__control dt {
    width: 100%;
    padding-top: 0;
  }
}

.contact__control dd {
  flex-grow: 1;
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .contact__control dd {
    width: 100%;
    margin-top: 8px;
  }
}

.contact__label {
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .contact__label {
    font-size: 16px;
    display: inline-block;
  }
}

.contact__label-required {
  position: relative;
}

@media (max-width: 767px) {
  .contact__label-required {
    padding-right: 54px;
  }
}

.contact__label-required::after {
  position: absolute;
  content: "必須";
  background: #e81919;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  width: 44px;
  padding: 4px 8px;
  top: calc(100% + 8px);
  left: 0;
  display: block;
}

@media (max-width: 767px) {
  .contact__label-required::after {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: auto;
  }
}

.form-input {
  width: 100%;
  border: 1px solid #707070;
  font-size: 14px;
  padding: 4px 16px;
  height: 38px;
  color: inherit;
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 767px) {
  .form-input {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

.form-select {
  width: 100%;
  border: 1px solid #707070;
  padding: 3px 16px;
  height: 38px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent url(../img/select-arrow.png) no-repeat center right 12px/17px 14px;
}

@media (max-width: 767px) {
  .form-select {
    padding-top: 3px;
    padding-bottom: 3px;
    background-position: center right 10px;
  }
}

.form-select::-ms-expand {
  display: none;
}

.form-textarea {
  width: 100%;
  height: 240px;
  padding: 10px 16px;
  background-color: transparent;
  border: 1px solid #707070;
  font-family: inherit;
  color: inherit;
  font-size: 14px;
  line-height: 1.625;
  border-radius: 0;
  background-image: none;
  vertical-align: bottom;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

@media (max-width: 767px) {
  .form-textarea {
    height: 180px;
  }
}

.contact__radio {
  margin-top: 26px;
  padding: 0;
}

@media (max-width: 767px) {
  .contact__radio {
    margin-top: 26px;
  }
}

.contact__radio-item {
  margin-right: 32px;
}

.contact__radio-item:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .contact__radio-item {
    display: block;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.form-radio {
  display: none;
}

.form-radio + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 28px;
  position: relative;
}

.form-radio + span::before, .form-radio + span::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.form-radio + span::before {
  background: #fff;
  border: 1px solid #707070;
  display: block;
  left: 0;
  width: 20px;
  height: 20px;
}

.form-radio + span::after {
  background: #3f51b5;
  border: 1px solid transparent;
  left: 5px;
  width: 10px;
  height: 10px;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}

.form-radio:checked + span::after {
  opacity: 1;
}

.contact__check {
  margin-top: 58px;
  text-align: center;
}

@media (max-width: 767px) {
  .contact__check {
    margin-top: 24px;
  }
}

.contact__check a {
  color: #333;
  font-weight: 700;
}

.form-checkbox {
  display: none;
}

.form-checkbox + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 50px;
  position: relative;
}

@media (max-width: 767px) {
  .form-checkbox + span {
    padding-left: 46px;
  }
}

.form-checkbox + span::before, .form-checkbox + span::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}

.form-checkbox + span::before {
  background: #fff;
  border: 1px solid #707070;
  display: block;
  left: 0;
  width: 25px;
  height: 25px;
}

.form-checkbox + span::after {
  border: 1px solid transparent;
  left: 0;
  width: 25px;
  height: 25px;
  background: transparent url(../img/icon-check.png) no-repeat center center/contain;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}

.form-checkbox:checked + span::after {
  opacity: 1;
}

.contact__submit {
  margin-top: 30px;
  text-align: center;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: none;
  z-index: 15;
}

.modal__bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 20;
}

.modal__contents {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 1200px;
  padding: 60px;
  background: #fff;
  z-index: 30;
}

.modal__contents a {
  color: #ffffff;
}

@media (max-width: 767px) {
  .modal__contents {
    width: 90%;
    height: 90%;
    padding: 60px 20px;
  }
}

.modal__cross {
  position: absolute;
  content: "";
  background: url(../img/icon-modal-close.png) no-repeat center center/contain;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 40;
}

.policy_title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  font-family: "Lato", sans-serif;
  padding: 0 0 28px;
  margin: 0;
  position: relative;
}

.policy_title::after {
  position: absolute;
  content: "";
  background: #3f51b5;
  width: 100px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.modal_content {
  width: 100%;
  height: 250px;
  overflow: scroll;
  margin-top: 40px;
  color: #707070;
}

@media (max-width: 1247px) {
  .modal_content {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .modal_content {
    height: 70%;
  }
}

.policy_subtitle {
  text-align: left;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
  top: -2px;
}

.policy_subtitle::before {
  position: absolute;
  content: "";
  background: #3F51B5;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
}

.policy_p {
  padding-left: 20px;
  text-align: left;
}

.policy_p:nth-child(2), .policy_p:nth-child(4), .policy_p:nth-child(6) {
  margin-bottom: 40px;
}

.modal-button {
  padding: 16px 64px;
  background: #3F51B5;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  margin-top: 60px;
  z-index: 40;
}

.footer {
  padding: 48px 0 24px;
  background: linear-gradient(to bottom, #666, #333);
}

@media (max-width: 767px) {
  .footer {
    padding-top: 62px;
    padding-bottom: 24px;
  }
}

.footer__contents {
  display: flex;
}

@media (max-width: 767px) {
  .footer__contents {
    display: block;
  }
}

.footer__left {
  width: 35%;
  padding: 12px 0 0;
}

@media (max-width: 767px) {
  .footer__left {
    width: 100%;
    padding: 0;
  }
}

.footer__center {
  width: 50%;
  padding: 8px 10px 0;
}

@media (max-width: 767px) {
  .footer__center {
    width: 100%;
    margin-top: 52px;
    padding: 0;
  }
}

.footer__right {
  width: 20%;
  padding: 12px 0;
}

@media (max-width: 1247px) {
  .footer__right {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  .footer__right {
    width: 100%;
    margin-top: 24px;
    padding: 0;
  }
}

.footer__logo a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.footer__logo a:hover {
  opacity: 0.6;
}

.footer__logo img {
  width: 205px;
}

.footer__info {
  margin-top: 22px;
  color: #ffffff;
  font-size: 14px;
}

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

.footer__info p {
  margin-top: 0;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .footer__info p {
    margin-bottom: 6px;
  }
}

.footer__info p:last-child {
  margin-bottom: 0;
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav li {
  margin-right: 40px;
  margin-bottom: 12px;
}

@media (max-width: 1247px) {
  .footer__nav li {
    margin-right: 12px;
  }
}

@media (max-width: 767px) {
  .footer__nav li {
    margin-right: 16px;
  }
}

.footer__nav li:last-child {
  margin-right: 0;
}

.footer__nav li a {
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.footer__nav li a:hover {
  opacity: 0.6;
}

.footer__sns ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .footer__sns ul {
    justify-content: center;
  }
}

.footer__sns ul li {
  margin-right: 16px;
}

.footer__sns ul li:last-child {
  margin-right: 0;
}

.footer__sns ul li a {
  transition: all 0.3s ease 0s;
}

.footer__sns ul li a:hover {
  opacity: 0.6;
}

.footer__sns ul li img {
  width: 30px;
  vertical-align: bottom;
}

.footer__copy {
  margin-top: 36px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

@media (max-width: 767px) {
  .footer__copy {
    margin-top: 40px;
  }
}

.footer__copy a {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease 0s;
}

.footer__copy a:hover {
  opacity: 0.6;
}

.floating {
  position: fixed;
  right: 8px;
  bottom: 8px;
  display: none;
}

.floating a {
  display: block;
  color: #fff;
  background: #000;
  padding: 8px;
  text-decoration: none;
  opacity: 0.6;
}

.floating a:hover {
  opacity: 1;
}
