html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 900px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
}

.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-inline: 40px;
    max-width: 1280px;
    margin-inline: auto;
  }
}

.br-sp {
  display: block;
}
@media screen and (min-width: 900px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .br-pc {
    display: block;
  }
}

.button {
  min-width: 158px;
  border: 1px solid #3EA1D1;
  background: #FFF;
  padding: 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #3EA1D1;
  font-size: 14px;
  letter-spacing: 0.02px;
  display: inline-block;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.button:hover {
  color: #fff;
  background-color: #3EA1D1;
}

.section-heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%; /* 30px */
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
@media screen and (min-width: 900px) {
  .section-heading {
    font-size: 40px;
    gap: 24px;
  }
}
.section-heading::after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #3EA1D1;
}

.header {
  height: 60px;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 20;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  height: inherit;
  padding: 19px 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: 900px) {
  .header__inner {
    padding: 22px 40px;
  }
}

.header__logo a img {
  width: 120px;
  display: block;
}
@media screen and (min-width: 900px) {
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:hover {
    opacity: 0.6;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .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: 47px;
  }
}

.header__link {
  -webkit-transition: color, 0.3s;
  transition: color, 0.3s;
}
.header__link:hover {
  color: #3EA1D1;
}

.drawer-content {
  width: 270px;
  height: calc(100% - 60px);
  position: fixed;
  top: 60px;
  right: 0;
  background: #3EA1D1;
  z-index: 50;
  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;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}

.drawer-content__link {
  display: inline-block;
  padding-block: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}

@media screen and (min-width: 900px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
  z-index: 51;
}
.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;
  border-radius: 6px;
  background: #3EA1D1;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, top 0.4s;
  transition: transform 0.4s, top 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.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: 900px) {
  .main {
    gap: 160px;
  }
}

@media screen and (min-width: 900px) {
  .mv__inner {
    padding-left: 0;
    position: relative;
  }
}

@media screen and (min-width: 600px) {
  .mv__content {
    text-align: center;
  }
}
@media screen and (min-width: 900px) {
  .mv__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.sp img {
  width: 345px;
}
@media screen and (min-width: 900px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .pc {
    display: block;
    max-width: 990px;
    margin-left: auto;
  }
}

.mv__texts {
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .mv__texts {
    position: absolute;
    margin-top: 0;
    inset-block: 0;
    left: 0;
    margin-block: auto;
    background: #FFF;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 80px 40px;
  }
}

.mv__lead {
  font-size: 26px;
  font-weight: 600;
}

.mv__description {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .mv__description {
    margin-top: 15px;
  }
}

@media screen and (min-width: 900px) {
  .concept__content {
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.concept__image {
  margin-top: 46px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .concept__image {
    margin-top: 0;
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.concept__image img {
  width: 100%;
}

.concept__texts {
  margin-top: 34px;
}
@media screen and (min-width: 900px) {
  .concept__texts {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
}

.concept__lead {
  font-size: 20px;
  font-weight: 600;
}

.concept__text {
  margin-top: 21px;
}
@media screen and (min-width: 900px) {
  .concept__text {
    margin-top: 40px;
  }
}

.feature__cards {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 49px;
}
@media screen and (min-width: 600px) {
  .feature__cards {
    margin-top: 64px;
    gap: 45px;
  }
}
@media screen and (min-width: 900px) {
  .feature__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .feature__cards {
    gap: 90px;
  }
}

.feature__card {
  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: 900px) {
  .feature__card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.feature__image {
  text-align: center;
}
.feature__image img {
  width: 100%;
}

.feature__text-text {
  padding-top: 25px;
  padding-bottom: 27px;
  text-align: center;
  font-weight: 600;
}

.question {
  background: url("../img/bg_sp.png") no-repeat top center/cover;
  padding-block: 180px 50px;
}
@media screen and (min-width: 900px) {
  .question {
    background-image: url("../img/bg_pc.png");
    padding-block: 120px 122px;
  }
}

.question__texts {
  color: #fff;
}
@media screen and (min-width: 900px) {
  .question__texts {
    width: 50%;
  }
}

.question__q {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 900px) {
  .question__q {
    font-size: 22px;
  }
}

.question__a {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 900px) {
  .question__a {
    font-size: 16px;
    width: 600px;
  }
}

.products__inner {
  padding-inline: 56px;
}
@media screen and (min-width: 600px) {
  .products__inner {
    padding-inline: 50px;
  }
}
@media screen and (min-width: 900px) {
  .products__inner {
    max-width: 1020px;
    padding-inline: 40px;
  }
}

.products__cards {
  margin-top: 46px;
  text-align: center;
  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;
}
@media screen and (min-width: 600px) {
  .products__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
@media screen and (min-width: 900px) {
  .products__cards {
    margin-top: 64px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
  }
}

@media screen and (min-width: 900px) {
  .product__card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .product__card:hover .product__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.product__image {
  text-align: center;
}
.product__image img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .product__image {
    overflow: hidden;
  }
  .product__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;
  }
}

.product__introduce {
  margin-top: 20px;
  text-align: left;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .product__introduce {
    margin-top: 18px;
  }
}

.product__introduce-price {
  margin-top: 10px;
  color: #989898;
}
@media screen and (min-width: 900px) {
  .product__introduce-price {
    margin-top: 12px;
  }
}

.product__button {
  margin-top: 42px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .product__button {
    margin-top: 43px;
  }
}

@media screen and (min-width: 900px) {
  .news__inner {
    max-width: 1120px;
    padding-inline: 40px;
  }
}

.news__lists {
  margin-top: 46px;
  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;
}
@media screen and (min-width: 900px) {
  .news__lists {
    margin-top: 63px;
    gap: 23px;
  }
}

.news__list {
  padding-bottom: 28px;
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (min-width: 600px) {
  .news__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 900px) {
  .news__list {
    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;
    padding-bottom: 23px;
  }
  .news__list:hover .news-link__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.news-link-meta {
  margin-top: 13px;
}
@media screen and (min-width: 900px) {
  .news-link-meta {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

@media screen and (min-width: 900px) {
  .news-link__image {
    width: 260px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    overflow: hidden;
  }
  .news-link__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-link__date {
  font-size: 14px;
}

.news-link__title {
  margin-top: 9px;
  font-weight: 600;
}
@media screen and (min-width: 900px) {
  .news-link__title {
    margin-top: 14px;
    font-size: 18px;
  }
}

.news-link__text {
  margin-top: 14px;
  color: #888;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .news-link__text {
    margin-top: 10px;
  }
}

.news__link {
  margin-top: 72px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .news__link {
    margin-top: 46px;
  }
}

@media screen and (min-width: 900px) {
  .concept-2__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.concept-2__image {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .concept-2__image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.concept-2__image img {
  width: 100%;
}

.concept-2__texts {
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .concept-2__texts {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.concept-2__lead {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 900px) {
  .concept-2__lead {
    font-size: 28px;
  }
}

.concept-2__text {
  margin-top: 22px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .concept-2__text {
    margin-top: 36px;
    font-size: 16px;
  }
}

.contact {
  padding-block: 56px;
  background: url("../img/contact-bg-sp.png") no-repeat center center/cover;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-block: 80px;
    background: url("../img/contact-bg-pc.png") no-repeat center center/cover;
  }
}
.contact .section-heading {
  color: #3EA1D1;
}

@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 590px;
    padding-right: 40px;
    padding-left: 40px;
  }
}

.contact__important {
  margin-top: 46px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__important {
    margin-top: 64px;
  }
}
.contact__important span {
  color: #E7728E;
}

.contact__fields {
  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: 30px;
}
@media screen and (min-width: 900px) {
  .contact__fields {
    margin-top: 19px;
    max-width: 510px;
    margin-right: auto;
    margin-left: auto;
    gap: 31px;
  }
}

.form-field {
  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;
}
@media screen and (min-width: 900px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

.form-field__label {
  background: rgba(62, 161, 209, 0.7);
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .form-field__label {
    width: 180px;
    -webkit-clip-path: polygon(0% 0%, 97% 2%, 100% 50%, 97% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 97% 2%, 100% 50%, 97% 100%, 0% 100%);
    font-size: 18px;
    padding: 5px 10px;
  }
}

.form-field__tag {
  color: #E7728E;
  font-size: 10px;
  font-weight: 600;
}

.form-text {
  width: 100%;
  height: 40px;
  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);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: inherit;
  color: inherit;
  vertical-align: top;
  border: none;
}
.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);
}
@media screen and (min-width: 900px) {
  .form-text {
    width: 320px;
  }
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.form-radio {
  border: 1px solid #FFF;
  background: #fff;
  padding: 6px 23px 5px 23px;
  color: #3EA1D1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.form-radio:focus-within {
  outline: 2px solid #3EA1D1;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + label {
  opacity: 1;
  background: #3EA1D1;
  padding: 7px 24px 6px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.form-radio__input:focus + label {
  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-textarea {
  height: 122px;
  width: 100%;
  resize: vertical;
  border: none;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
  font-size: 16px;
}
.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);
}
@media screen and (min-width: 900px) {
  .form-textarea {
    width: 320px;
  }
}

.contact__privacy {
  margin-top: 28px;
}
@media screen and (min-width: 900px) {
  .contact__privacy {
    margin-top: 34px;
    text-align: center;
  }
}

.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.16);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
}

.form-checkbox__text {
  position: relative;
  padding-left: 53px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    padding-left: 30px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 23px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text::before, .form-checkbox__text::after {
    margin-left: 0;
  }
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  border-radius: 1px;
  border: 1px solid #3EA1D1;
  background: #fff;
}
.form-checkbox__text::after {
  width: 19.414px;
  height: 14.621px;
  left: 2px;
  top: 12px;
  background: url(../img/check.png) no-repeat center center/contain;
  opacity: 0;
}

.form-checkbox__text a {
  color: #3EA1D1;
  text-decoration-line: underline;
}

.contact__submit {
  text-align: center;
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .contact__submit {
    margin-top: 44px;
  }
}
.contact__submit .button {
  padding-left: 64px;
  padding-right: 64px;
}

.footer {
  padding-block: 40px 7px;
  background: #F7F7F7;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-bottom: 14px;
  }
}

.footer__logo a img {
  width: 120px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .footer__logo a img {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__logo a img: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: 900px) {
  .footer__menu-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
  }
}

.footer__menu-item {
  font-size: 12px;
}

@media screen and (min-width: 900px) {
  .footer__menu-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__menu-link:hover {
    opacity: 0.6;
  }
}

.footer__sns-items {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .footer__sns-items {
    margin-top: 14px;
  }
}

@media screen and (min-width: 900px) {
  .footer__sns-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__sns-link:hover {
    opacity: 0.6;
  }
}

.is-twitter {
  width: 21px;
}

.is-instagram {
  width: 18px;
}

.is-line {
  width: 18px;
}

.footer__copyright {
  margin-top: 24px;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    margin-top: 28px;
  }
}
.footer__copyright small {
  color: #888;
  font-size: inherit;
}