body {
  font-size: 16px;
  line-height: 1.7;
  font-family: "Noto Serif JP", sans-serif;
}

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

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

.heading {
  text-align: center;
  margin-bottom: 74px;
}
@media screen and (min-width: 768px) {
  .heading {
    margin-bottom: 88px;
  }
}

.contact__heading {
  margin-bottom: 0;
}

.heading__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .heading__title {
    font-size: 40px;
  }
}
.heading__title::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -28px;
  width: 60px;
  height: 1px;
  background: #3EA1D1;
}
@media screen and (min-width: 768px) {
  .heading__title::after {
    bottom: -24px;
  }
}

.contact__title {
  color: #3EA1D1;
}

.btn {
  display: block;
  margin: 0 auto;
  margin-top: 42px;
  color: #3EA1D1;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02px;
  border: 1px solid #3EA1D1;
  padding: 11px 56.5px;
}
@media screen and (min-width: 768px) {
  .btn {
    margin-top: 44px;
    -webkit-transition: background-color 0.5s, color 0.5s;
    transition: background-color 0.5s, color 0.5s;
  }
  .btn:hover {
    background-color: #3EA1D1;
    color: #FEFEFE;
  }
}

.news_button {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .news_button {
    margin-top: 67px;
  }
}

.hover-zoom {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.hover-zoom.zoomed {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
}

header {
  padding-top: 14px;
  padding-bottom: 19px;
  width: 100%;
  top: 0;
  z-index: 20;
  background: #FFFFFF;
  position: sticky;
}
@media screen and (min-width: 768px) {
  header {
    padding-top: 18px;
    padding-bottom: 22px;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .fixed {
    position: fixed;
  }
}

.header__inner {
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 768px) {
  .header__logo {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo:hover {
    opacity: 0.6;
  }
}
.header__logo a img {
  width: 120px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 46.5px;
    padding-top: 3px;
  }
}

.header__link {
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .header__link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:hover {
    color: #3EA1D1;
  }
}

.drawer-icon {
  position: relative;
  width: 30px;
  height: 18px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(390deg);
          transform: rotate(390deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-390deg);
          transform: rotate(-390deg);
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  left: 0px;
  width: 30px;
  height: 2px;
  background: #3EA1D1;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}

.drawer-icon__bar:nth-of-type(1) {
  top: 2px;
}

.drawer-icon__bar:nth-of-type(2) {
  top: 10px;
}

.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  width: 270px;
  height: 100%;
  background: #3EA1D1;
  position: fixed;
  top: 60px;
  right: 0;
  padding: 40px 15px 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .drawer-content {
    display: none;
  }
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.drawer-content__link {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: #FFFFFF;
}

.mv {
  margin-bottom: 95px;
}
@media screen and (min-width: 768px) {
  .mv {
    margin-bottom: 160px;
  }
}

.mv__inner {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding-right: 40px;
    padding-left: 250px;
    position: relative;
  }
}

.mv__image {
  max-width: 990px;
}
.mv__image img {
  width: 100%;
  height: auto;
}

.mv__content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .mv__content {
    display: inline-block;
    padding: 80px 40px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: 0;
    background: #FFF;
  }
}

.mv__lead {
  font-size: 26px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .mv__lead .sp-hidden {
    display: block;
  }
}

.mv__description {
  margin-top: 15px;
  font-weight: 300;
}

.concept {
  margin-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .concept {
    margin-bottom: 160px;
  }
}

.concept__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 768px) {
  .concept__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.6666666667%;
    max-width: 1200px;
    max-height: 400px;
    margin: 0 auto;
  }
}

.concept__image {
  display: block;
  margin-bottom: 34px;
}
@media screen and (min-width: 768px) {
  .concept__image {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.concept__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .concept__image img {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .concept__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    width: 43.3333333333%;
  }
}

.concept__lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 22px;
}
@media screen and (min-width: 768px) and (max-width: 934px) {
  .concept__lead {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .concept__lead {
    margin-bottom: 0;
  }
}

.concept__description {
  font-weight: 300;
  line-height: 1.7;
  color: #333333;
}

.concept2__box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.concept2__image {
  margin-bottom: 32px;
}

.concept2__contents {
  gap: 36px;
}

@media screen and (min-width: 768px) and (max-width: 934px) {
  .concept2__lead {
    font-size: 22px !important;
  }
}
@media screen and (min-width: 768px) {
  .concept2__lead {
    font-size: 28px;
    font-weight: 600;
  }
}

.concept2__description {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .concept2__description {
    font-size: 16px;
  }
}

.feature {
  margin-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .feature {
    margin-bottom: 160px;
  }
}

.feature__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .feature__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.feature__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .feature__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7.5%;
  }
}

.feature__content {
  background: #FFF;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
}
@media screen and (min-width: 768px) {
  .feature__content {
    overflow: hidden;
  }
  .feature__content img {
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .feature__content:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.content-text {
  padding-top: 25px;
  padding-bottom: 26px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .content-text {
    padding-top: 26px;
  }
}

.bg {
  background: url(../img/sp-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 98px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .bg {
    background: url(../img/pc-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 160px;
  }
}
.bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
}

.bg__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding-top: 180px;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .bg__box {
    padding-top: 123px;
    padding-bottom: 122px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.bg__title-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 170%;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .bg__title-text {
    font-size: 22px;
  }
}

.bg__sub-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 170%;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .bg__sub-text {
    font-size: 16px;
  }
}

.products {
  margin-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .products {
    margin-bottom: 160px;
  }
}

.products__inner {
  padding-left: 56px;
  padding-right: 56px;
}
.products__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 940px;
}
@media screen and (min-width: 768px) {
  .products__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8.085106383%;
    margin: 0 auto;
  }
}

.products__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .products__content {
    gap: 18px;
    max-width: 260px;
    height: auto;
    overflow: hidden;
  }
  .products__content img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .products__content:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media screen and (min-width: 768px) {
  .products__content-image {
    max-width: 260px;
  }
}
.products__content-image img {
  width: 100%;
  height: auto;
}
.products__content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.products__content-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 170%;
}

.products__content-price {
  color: #989898;
  font-size: 14px;
  font-weight: 300;
  line-height: 170%;
}

.news {
  margin-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .news {
    margin-bottom: 160px;
  }
}

.news__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .news__inner {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.news__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
@media screen and (min-width: 768px) {
  .news__contents {
    gap: 48px;
  }
}

.news__content {
  position: relative;
}
.news__content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -28.5px;
  left: 0;
  background: #E0E0E0;
}
@media screen and (min-width: 768px) {
  .news__content::after {
    bottom: -24.5px;
  }
}
@media screen and (min-width: 768px) {
  .news__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    overflow: hidden;
  }
  .news__content img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .news__content:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media screen and (min-width: 768px) {
  .news__content-image {
    width: 25.0965250965%;
  }
}
@media screen and (min-width: 768px) {
  .news__content-image img {
    width: 260px;
  }
}

@media screen and (min-width: 768px) {
  .news__content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: 71.0424710425%;
  }
}

.news__data {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 300;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .news__data {
    margin-top: 0;
  }
}

.news__title {
  margin-top: 10px;
  font-weight: 600;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .news__title {
    margin-top: 16px;
    font-size: 18px;
  }
}

.news__text {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 300;
  color: #888888;
}
@media screen and (min-width: 768px) {
  .news__text {
    margin-top: 12px;
  }
}

.contact {
  background: url(../img/contact_bg2.png) no-repeat center center/cover;
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.contact__inner {
  padding-left: 15px;
  padding-right: 15px;
}

.attention {
  margin-top: 76px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .attention {
    margin-top: 91px;
    margin-bottom: 17px;
  }
}

.red-mark {
  color: #E7728E;
}
@media screen and (min-width: 768px) {
  .red-mark {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .contact__form {
    max-width: 510px;
    margin: 0 auto;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

.form-field__head {
  padding: 4px 16px;
  background: #3EA1D1;
  display: inline-block;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    width: 180px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    padding: 4px 0;
    -webkit-clip-path: polygon(0% 0%, 97% 4%, 100% 50%, 97% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 97% 4%, 100% 50%, 97% 100%, 0% 100%);
  }
}

.form-field__item [type=text],
.form-field__item [type=email] {
  border: none;
  width: 100%;
  margin-top: 3px;
  height: 40px;
  border: 1px solid #FFF;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-field__item [type=text]:hover, .form-field__item [type=text]:focus,
.form-field__item [type=email]:hover,
.form-field__item [type=email]:focus {
  border-color: #3EA1D1;
  outline: none;
}
@media screen and (min-width: 768px) {
  .form-field__item [type=text],
  .form-field__item [type=email] {
    width: 320px;
    margin-top: 0;
  }
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-radio {
  position: relative;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text {
  background-color: #3EA1D1;
  color: #FFF;
}
.form-radio__input:focus + .form-radio__text {
  outline: #3EA1D1 1px;
  -webkit-box-shadow: 5px 6px 16px 0px #3EA1D1;
          box-shadow: 5px 6px 16px 0px #3EA1D1;
}

.form-radio__text {
  font-size: 16px;
  letter-spacing: 0.026px;
  color: #3EA1D1;
  border: 1px solid #FFF;
  background: #FFF;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.form-textarea {
  width: 100%;
  height: 122px;
  margin-top: 3px;
  margin-bottom: 26px;
  border: 1px solid #FFF;
  -webkit-transform: border-color 0.3s;
          transform: border-color 0.3s;
}
.form-textarea:hover, .form-textarea:focus {
  border-color: #3EA1D1;
  outline: none;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    width: 320px;
    margin-top: 0;
    margin-bottom: 27px;
  }
}

@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-left: 82px;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:hover + .form-checkbox__text::before {
  outline: #3EA1D1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
}

.form-checkbox__text {
  position: relative;
  font-weight: 300;
  padding-left: 53px;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text {
    top: 5px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  border: 1px solid #3EA1D1;
}
.form-checkbox__text::after {
  background: url(../img/icon.png) no-repeat center center/contain;
  width: 19.414px;
  height: 14.621px;
  left: 25px;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration: underline;
  color: #3EA1D1;
  font-weight: inherit;
}

.contact__button {
  text-align: center;
  margin-top: 24px;
  color: #3EA1D1;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 51px;
  }
}

.contact-btn {
  padding: 10px 64.5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02px;
  border: 1px solid #3EA1D1;
  background: #FFF;
}

.footer {
  padding-top: 36px;
  padding-bottom: 10px;
}

.tooter__inner {
  text-align: center;
}

.footer__title {
  margin-bottom: 17px;
}
@media screen and (min-width: 768px) {
  .footer__title {
    display: inline-block;
  }
  .footer__title:hover {
    opacity: 0.6;
  }
}
.footer__title img {
  width: 120px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .footer__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .footer__content:hover {
    opacity: 0.6;
  }
}
.footer__content a {
  font-size: 12px;
  font-weight: 300;
  color: #333333;
}

.footer__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__icon:hover {
    opacity: 0.6;
  }
}

.fa-brands {
  width: 21px;
  height: 21px;
  font-size: 21px;
}

.footer__copy-right {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .footer__copy-right {
    margin-top: 19px;
  }
}

.copy-right {
  font-size: 12px;
  font-weight: 300;
  color: #888888;
}