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

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

.head__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 15px;
  -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: 26px;
}
@media screen and (min-width: 768px) {
  .head__content {
    gap: 24px;
  }
}
.head__content::after {
  content: "";
  border: solid 1px #3ea1d1;
  width: 60px;
}

.head__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%; /* 30px */
}
.head__title.type2 {
  color: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .head__title {
    font-size: 40px;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 158px;
  padding: 12px 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--3-ea-1-d-1, #3ea1d1);
  background: #fff;
  margin: 0 auto;
  color: var(--3-ea-1-d-1, #3ea1d1);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02px;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  font-size: 14px;
}
.button:hover {
  color: #fff;
  background: #3ea1d1;
}

.header {
  padding-top: 19px;
  padding-bottom: 19px;
  position: relative;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .header {
    padding-top: 22px;
    padding-bottom: 21px;
    height: 70px;
  }
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__logo:hover {
  opacity: 0.6;
}
.header__logo a img {
  width: 120px;
  display: block;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    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-icon {
  width: 30px;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  top: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 30px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  content: "";
  border: 1px solid #3ea1d1;
  right: 15px;
  top: 21px;
  width: 30px;
  -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-child(2) {
  top: 29px;
}
.drawer-icon__bar:nth-child(3) {
  top: 37px;
}

.menu-open {
  padding: 40px 15px;
  position: fixed;
  width: 270px;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #3ea1d1;
  right: 0;
  z-index: 3;
  top: 60px;
  -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;
}
.menu-open.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .menu-open {
    display: none;
  }
}

.menu-open__nav {
  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;
}

.menu-open__link {
  text-align: right;
  font-size: 18px;
  color: #fff;
}

.fv {
  position: relative;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .fv {
    margin-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .fv__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;
  }
}

.fv__img {
  margin-top: 100px;
}
.fv__img img {
  max-width: 345px;
}

.fv__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: 16px;
}
@media screen and (min-width: 768px) {
  .fv__box {
    position: absolute;
    content: "";
    left: 0;
    top: 171px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 366px;
    padding: 80px 40px;
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background: #fff;
  }
}

.fv__title {
  margin-top: 30px;
  font-size: 26px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .fv__title {
    margin-top: 0;
  }
}
.fv__title br {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__title br {
    display: block;
  }
}

.fv__text {
  white-space: nowrap;
}

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

.concept__head {
  margin-bottom: 44px;
}
@media screen and (min-width: 768px) {
  .concept__head {
    margin-bottom: 64px;
  }
}

@media screen and (min-width: 900px) {
  .concept__body {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.concept__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__image img {
    width: 600px;
  }
}

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

.concept__titile {
  margin-top: 34px;
  font-size: 20px;
  font-weight: 600;
  line-height: 170%; /* 34px */
}
@media screen and (min-width: 768px) {
  .concept__titile {
    margin-top: 32px;
  }
}

.concept__p {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .concept__p {
    max-width: 520px;
  }
}

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

.feature__head {
  margin-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .feature__head {
    margin-bottom: 60px;
  }
}

.feature__boxes {
  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: 768px) {
  .feature__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 90px;
  }
}

.feature-box__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);
}

.feature-box__text {
  text-align: center;
  padding-top: 26px;
  padding-bottom: 26px;
}

.question {
  margin-top: 96px;
  padding-top: 180px;
  padding-bottom: 50px;
  background: url(../img/bg-sp.png) no-repeat top center/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .question {
    margin-top: 160px;
    padding-top: 123px;
    padding-bottom: 122px;
    background: url(../img/bg-pc.png) no-repeat top center/cover;
  }
}
.question::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.12);
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.question__text {
  position: relative;
  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;
  z-index: 2;
}

.question__title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .question__title {
    font-size: 22px;
  }
}

.question__p {
  color: var(--ffffff, #fff);
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .question__p .sp-br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .question__p {
    max-width: 600px;
    font-size: 16px;
  }
}

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

.products__inner {
  padding-left: 56px;
  padding-right: 56px;
}

.products__head {
  margin-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .products__head {
    margin-bottom: 64px;
  }
}

.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;
}
@media screen and (min-width: 768px) {
  .products__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
    gap: 50px;
  }
}
@media screen and (min-width: 900px) {
  .products__contents {
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .products-content__box {
    width: 260px;
  }
  .products-content__box:hover .products-content__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.products-content__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .products-content__image {
    overflow: hidden;
  }
  .products-content__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-content__text {
  margin-top: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .products-content__text {
    margin-top: 18px;
  }
}

.products-content__price {
  margin-top: 10px;
  color: #989898;
  font-size: 14px;
  font-weight: 300;
}

.products__button {
  margin-top: 43px;
}
@media screen and (min-width: 768px) {
  .products__button {
    margin-top: 40px;
  }
}

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

.news__head {
  margin-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .news__head {
    margin-bottom: 64px;
  }
}

.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 {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    gap: 48px;
  }
}

.news-box__content {
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-box__content:hover .news-box__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.news-box__content::after {
  position: absolute;
  content: "";
  border-bottom: solid 1px #e0e0e0;
  width: 100%;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .news-box__content::after {
    height: 184px;
  }
}
@media screen and (min-width: 768px) {
  .news-box__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;
  }
}

@media screen and (min-width: 768px) {
  .news-box__image {
    overflow: hidden;
    max-width: 260px;
  }
}
@media screen and (min-width: 768px) {
  .news-box__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-box__body {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .news-box__body {
    margin-top: -2px;
  }
}

.news-box__date {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
}

.news-box__title {
  margin-top: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .news-box__title {
    font-size: 15px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 900px) {
  .news-box__title {
    font-size: 18px;
  }
}

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

.news__button {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 18px;
  }
}

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

.about__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-left: 0;
    padding-right: 0;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .about__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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.about__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__image img {
    max-width: 100%;
  }
}

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

.about__title {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .about__title {
    margin-top: 0;
    font-size: 28px;
  }
}

.about__p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .about__p {
    font-size: 16px;
    max-width: 520px;
  }
}

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

.contact__inner {
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding-left: 0;
    padding-right: 0;
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact__head {
  margin-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .contact__head {
    margin-bottom: 64px;
  }
}

.contact__text {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.contact__text span {
  color: #e7728e;
}

.contact__form {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 17px;
  }
}

.form__field {
  margin-top: 31px;
  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) {
  .form__field {
    margin-top: 32px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
  .form__field:nth-child(1) {
    margin-top: 0;
  }
}

.form__field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #3ea1d1;
  opacity: 0.7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .form__field__head {
    width: 180px;
    height: 40px;
    padding: 4px 9px;
    -webkit-clip-path: polygon(0% 0%, 97% 6%, 100% 50%, 97% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 97% 6%, 100% 50%, 97% 100%, 0% 100%);
  }
}

.form__field__label {
  color: var(--ffffff, #fff);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form__field__label {
    white-space: nowrap;
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
  }
}
.form__field__label span {
  font-size: 10px;
  margin-left: 4px;
  color: #e7728e;
}

.form-text {
  width: 100%;
  height: 40px;
  -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);
  border: none;
}
@media screen and (min-width: 768px) {
  .form-text {
    width: 320px;
  }
}
.form-text.type2 {
  height: 122px;
}
.form-text:focus {
  outline: #3ea1d1 1px solid;
  -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-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: #3ea1d1;
  color: #fff;
}
.form-radio__input:focus + .form-radio__text {
  outline: #3ea1d1 1px solid;
  -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 {
  color: #3ea1d1;
  text-align: center;
  letter-spacing: 0.026px;
  background: #fff;
  border: 1px solid #fff;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.contact__privacy {
  margin-top: -2px;
  margin: 0 auto;
}

.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__input-text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__input-text::before {
  outline: #3ea1d1 1px solid;
  -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__input-text {
  padding-left: 30px;
}
.form-checkbox__input-text a {
  color: #3ea1d1;
  text-decoration-line: underline;
}
.form-checkbox__input-text::before, .form-checkbox__input-text::after {
  position: absolute;
  content: "";
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.form-checkbox__input-text::before {
  border: solid 1px #3ea1d1;
  background: #fff;
  width: 22px;
  height: 22px;
}
.form-checkbox__input-text::after {
  opacity: 0;
  width: 19.414px;
  height: 14.621px;
  left: 1.29px;
  background: url(../img/check.png) no-repeat center center/contain;
}

.contact__button {
  margin-top: 22px;
  color: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 44px;
  }
}

.footer {
  margin-top: 33px;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-bottom: 14px;
  }
}

.footer__logo {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__logo:hover {
  opacity: 0.6;
}
.footer__logo a img {
  width: 120px;
}

.footer__link {
  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;
  font-size: 12px;
}
.footer__link a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__link a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .footer__link {
    -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__sns {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin-top: 13px;
  }
}
.footer__sns img {
  width: 18.01px;
  height: 19.431px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__sns img:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .footer__sns img {
    width: 18px;
  }
}

.footer__copyright {
  margin-top: 19px;
}
.footer__copyright small {
  margin-top: 22px;
  color: #888;
  font-size: 12px;
}