html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
}

.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}

.heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
    gap: 24px;
    margin-bottom: 64px;
  }
}
.heading::after {
  content: "";
  width: 60px;
  height: 1px;
  background: #3EA1D1;
}

.button {
  display: inline-block;
  min-width: 158px;
  padding: 11px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.02px;
  line-height: 1.7;
  border: 1px solid currentColor;
  background: #FFF;
  color: #3EA1D1;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #3EA1D1;
  color: #fff;
}

.header {
  height: 60px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  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;
  height: inherit;
}

.header__logo a img {
  width: 120px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:hover {
    opacity: 0.6;
  }
}

.header__nav {
  background: #3EA1D1;
  width: 270px;
  height: calc(100% - 60px);
  position: fixed;
  right: 0;
  top: 60px;
  padding: 32px 15px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 47px;
  }
}

.header__link {
  display: inline-block;
  padding-block: 8px;
  font-size: 18px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header__link {
    font-size: 16px;
    color: #333;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:hover {
    color: #3EA1D1;
  }
}

@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 9px;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #3EA1D1;
  -webkit-transition: top 0.4s linear, -webkit-transform 0.4s linear;
  transition: top 0.4s linear, -webkit-transform 0.4s linear;
  transition: transform 0.4s linear, top 0.4s linear;
  transition: transform 0.4s linear, top 0.4s linear, -webkit-transform 0.4s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 16px;
}

.main {
  display: grid;
  gap: 96px;
}
@media screen and (min-width: 768px) {
  .main {
    gap: 160px;
  }
}

.fv__inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .fv__image {
    max-width: 990px;
    margin-left: auto;
    display: block;
  }
}
.fv__message {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .fv__message {
    position: absolute;
    inset-block: 0;
    margin-block: auto;
    left: 0;
    padding: 80px 40px;
    background: #fff;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.fv__title {
  font-size: 26px;
  font-weight: 600;
}
.fv__title br {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__title br {
    display: inline;
  }
}

.fv__text {
  margin-top: 16px;
}

.concept__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: 34px;
}
@media screen and (min-width: 768px) {
  .concept__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.6666666667%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.concept__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.concept__image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .concept__message {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.concept__title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .concept__title {
    font-size: 20px;
  }
}

.concept__text {
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .concept__text {
    margin-top: 40px;
  }
}

.feature__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: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .feature__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 900px) {
  .feature__content {
    gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .feature__content {
    gap: 90px;
  }
}

.feature__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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);
}

.feature__image {
  text-align: center;
}
.feature__image img {
  width: 100%;
}

.feature__text {
  font-weight: 600;
  text-align: center;
  padding: 26px;
}

.about {
  background: url(../img/page-sobolon/bg-sp.jpg) no-repeat top center/cover;
  position: relative;
  padding-block: 180px 50px;
}
@media screen and (min-width: 768px) {
  .about {
    background-image: url(../img/page-sobolon/bg-pc.jpg);
    padding-block: 123px 119px;
  }
}
.about::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.about__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .about__content {
    width: 50%;
  }
}

.about__title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 22px;
  }
}

.about__text {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 16px;
  }
}

.products__inner {
  padding-inline: 56px;
}
@media screen and (min-width: 768px) {
  .products__inner {
    max-width: 1020px;
    padding-inline: 40px;
  }
}

.products__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 41px;
}
@media screen and (min-width: 768px) {
  .products__cards {
    margin-top: 64px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 900px) {
  .products__cards {
    gap: 80px;
  }
}

.products__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (min-width: 768px) {
  .products-card:hover .products-card__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.products-card__image {
  text-align: center;
}
.products-card__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .products-card__image {
    overflow: hidden;
  }
  .products-card__image img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
}

.products-card__body {
  font-size: 14px;
}

.products-card__title {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .products-card__title {
    margin-top: 18px;
  }
}

.products-card__price {
  margin-top: 11px;
  color: #989898;
}

.products__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .products__button {
    margin-top: 44px;
  }
}

@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 1120px;
    padding-inline: 40px;
  }
}

.news__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  .news__cards {
    margin-top: 64px;
    gap: 24px;
  }
}

.news__card {
  padding-bottom: 28px;
  border-bottom: 1px #E0E0E0 solid;
}
@media screen and (min-width: 768px) {
  .news__card {
    padding-bottom: 24px;
  }
}

@media screen and (min-width: 768px) {
  .news-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
  .news-card:hover .news-card__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media screen and (min-width: 768px) {
  .news-card__image {
    width: 260px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    overflow: hidden;
  }
  .news-card__image img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
}

.news-card__body {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .news-card__body {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.news-card__time {
  font-size: 14px;
  display: block;
}

.news-card__title {
  margin-top: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .news-card__title {
    margin-top: 16px;
    font-size: 18px;
  }
}

.news-card__text {
  margin-top: 14px;
  color: #888;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .news-card__text {
    margin-top: 10px;
  }
}

.news__button {
  margin-top: 42px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 44px;
  }
}

.concept2__inner {
  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) {
  .concept2__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 900px) {
  .concept2__inner {
    gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .concept2__inner {
    gap: 80px;
  }
}

.concept2__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept2__image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.concept2__image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .concept2__message {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.concept2__title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept2__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 900px) {
  .concept2__title {
    font-size: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .concept2__title {
    font-size: 28px;
  }
}

.concept2__text {
  margin-top: 22px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .concept2__text {
    margin-top: 36px;
    font-size: 16px;
  }
}

.contact {
  padding-block: 59px;
  background: url(../img/page-sobolon/contact_bg.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 80px;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 590px;
    padding-inline: 40px;
  }
}

.contact__title {
  color: #3EA1D1;
}

.contact__text {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.contact__text .is-required {
  color: #E7728E;
}

.contact__items {
  margin-top: 28px;
  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) {
  .contact__items {
    margin-top: 19px;
  }
}

.contact__privacy {
  margin-top: 28px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-top: 32px;
  }
}

.contact__submit {
  margin-top: 23px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-top: 44px;
  }
}

.contact-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .contact-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.contact-control__input {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-control__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.contact-control__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  color: #FFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px;
  background: rgba(62, 161, 209, 0.7);
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .form__label {
    font-size: 18px;
    width: 100%;
    padding: 5px 10px 4px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  }
}

.form-label__required {
  color: #E7728E;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-label__required {
    font-size: 12px;
  }
}

.form-text {
  width: 100%;
  height: 40px;
  border: 0;
  font-size: 16px;
  background: #FFF;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
}
.form-text:focus {
  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-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:hover + .form-radio__text {
  outline: #3EA1D1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.32);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.32);
}

.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;
  border: 0;
  font-size: 16px;
  background: #FFF;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
  resize: vertical;
}
.form-textarea:focus {
  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 {
  position: relative;
}

.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:focus + .form-checkbox__text::before {
  outline: #3EA1D1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.32);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.32);
}

.form-checkbox__text {
  font-size: 16px;
  padding-left: 30px;
}
.form-checkbox__text a {
  color: #3EA1D1;
  text-decoration-line: underline;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #3EA1D1;
}
.form-checkbox__text::after {
  opacity: 0;
  width: 19.414px;
  height: 14.621px;
  left: 1.29px;
  background: url(../img/page-sobolon/check-icon.jpg) no-repeat center center/contain;
}

.footer {
  padding-block: 38px 7px;
  background: #F7F7F7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 39px 14px;
  }
}

.footer__logo a img {
  width: 120px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__logo a:hover {
    opacity: 0.6;
  }
}

.footer__menu-items {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__menu-items {
    -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;
  }
}

.footer__menu-item {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .footer__menu-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__menu-link:hover {
    opacity: 0.6;
  }
}

.footer__sns-items {
  margin-top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__sns-items {
    margin-top: 17px;
  }
}

@media screen and (min-width: 768px) {
  .footer__sns-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__sns-link:hover {
    opacity: 0.6;
  }
}

.footer__copyright {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
}
.footer__copyright small {
  color: #888;
  font-size: inherit;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 28px;
  }
}