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

.title__wrapper {
  overflow: hidden;
}

.title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1; /* 30px */
  margin-bottom: 74px;
  position: relative;
}
.title.--isblue {
  color: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 40px;
    margin-bottom: 89px;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }
}
.title::after {
  content: "";
  width: 60px;
  background: #3ea1d1;
  height: 1px;
  position: absolute;
  bottom: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .title::after {
    bottom: -24px;
  }
}

.button {
  color: #3ea1d1;
  font-size: 14px;
  font-weight: 300;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.02px;
  padding: 12px 4px;
  text-align: center;
  border: 1px solid #3ea1d1;
  background: #fff;
  width: 158px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .button {
    padding: 11px 4px;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
  }
  .button:hover {
    background: #3ea1d1;
    color: #fff;
  }
}
.button:focus {
  outline: auto 1px #3ea1d1;
  -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);
}

.inline-block {
  display: inline-block;
}

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

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

body {
  font-family: "Noto Serif JP", serif;
  color: #333333;
}
body.is-fixed {
  overflow: hidden;
}

a:focus {
  outline: auto 1px #3ea1d1;
  -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);
}

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

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

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

.header__logo img {
  width: 120px;
  vertical-align: text-top;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .header__logo img:hover {
    opacity: 0.6;
  }
}

.header__navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  position: relative;
  right: 0;
  top: 0;
  width: 30px;
  height: auto;
}
.header__navbar.is-checked .nav-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  right: 0;
}
.header__navbar.is-checked .nav-bar:nth-of-type(2) {
  display: none;
}
.header__navbar.is-checked .nav-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .header__navbar {
    display: none;
  }
}

.nav-bar {
  width: 30px;
  height: 2px;
  background: #3ea1d1;
  position: absolute;
  top: 0;
  right: 0;
  -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;
}
.nav-bar:nth-of-type(2) {
  top: 8px;
}
.nav-bar:nth-of-type(3) {
  top: 16px;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 47px;
  }
}

.header__nav-link {
  font-size: 16px;
  font-weight: 300;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__nav-link:hover {
  color: #3ea1d1;
}

.drawer {
  position: fixed;
  top: 60px;
  right: 0;
  width: 270px;
  height: calc(100vh - 60px);
  background: #3ea1d1;
  padding: 40px 15px;
  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: end;
  z-index: 80;
  -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.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer__link {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 170%; /* 30.6px */
  height: 31px;
}

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

.fv__img {
  text-align: right;
}
.fv__img img {
  width: 345px;
  height: 414px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right -72px bottom 0;
     object-position: right -72px bottom 0;
}
@media screen and (min-width: 768px) {
  .fv__img img {
    width: 990px;
    height: 660px;
    -o-object-position: inherit;
       object-position: inherit;
  }
}

.fv__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: 17px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .fv__contents {
    position: absolute;
    margin-top: 0;
    padding: 80px 40px;
    background: #fff;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.fv-contents-title {
  margin-left: -1px;
  margin-top: -1px;
  font-size: 26px;
  font-weight: 600;
  line-height: 170%; /* 44.2px */
}

.fv-contents-text {
  margin-top: -1px;
  font-size: 16px;
  font-weight: 300;
  line-height: 170%; /* 27.2px */
}

.concept__inner {
  padding-top: 95px;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    padding-top: 160px;
  }
}

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

.concept__img {
  text-align: center;
}
.concept__img img {
  width: 345px;
  height: 230px;
}
@media screen and (min-width: 768px) {
  .concept__img img {
    width: 600px;
    height: 100%;
  }
}

.concept__contents {
  margin-top: 35px;
  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__contents {
    margin-top: 0;
    gap: 36px;
    width: 520px;
  }
}

.concept__contents-head {
  font-size: 20px;
  font-weight: 600;
  line-height: 170%; /* 34px */
}
@media screen and (min-width: 768px) {
  .concept__contents-head {
    margin-top: 1px;
  }
  .concept__contents-head.--concept2 {
    font-size: 28px;
    margin-top: 2px;
    margin-left: -1px;
  }
}

.concept__contents-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 170%; /* 27.2px */
}
.feature__inner {
  padding-top: 95px;
  padding-bottom: 95px;
}
@media screen and (min-width: 768px) {
  .feature__inner {
    padding-bottom: 160px;
    padding-top: 160px;
  }
}

.feature__container {
  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: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .feature__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 90px;
  }
}

.feature__card {
  max-width: 345px;
  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__card img {
  width: 100%;
}

.feature__card-text {
  padding: 25px 0 26px;
  font-size: 16px;
  font-weight: 600;
  line-height: 170%; /* 27.2px */
}

.question {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.12)), to(rgba(0, 0, 0, 0.12))), url(../img/bg.png);
  background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), url(../img/bg.png);
  background-position: center;
  background-size: cover;
  padding-top: 182px;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .question {
    padding-top: 123px;
    padding-bottom: 122px;
    padding-left: 40px;
    padding-right: 40px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.12)), to(rgba(0, 0, 0, 0.12))), url(../img/bg-pc.png);
    background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), url(../img/bg-pc.png);
    background-size: cover;
  }
}

.question__head {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 170%; /* 34px */
}
@media screen and (min-width: 768px) {
  .question__head {
    font-size: 22px;
  }
}

.question__body {
  margin-top: 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 170%; /* 23.8px */
}
@media screen and (min-width: 768px) {
  .question__body {
    margin-top: 23px;
    font-size: 16px;
    width: 600px;
  }
}

.product {
  padding-top: 96px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .product {
    padding-top: 160px;
  }
}

.product__container {
  max-width: 263px;
  margin: 0 auto;
  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) {
  .product__container {
    max-width: 940px;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    margin: 0 auto;
  }
}

.product__cotents {
  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) {
  .product__cotents {
    gap: 18px;
    width: 260px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .product__cotents:hover .product__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.product__img {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .product__img img {
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
  }
}

.product__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: 10px;
}

.product__text-main {
  font-size: 14px;
  font-weight: 300;
  line-height: 170%; /* 23.8px */
  padding-right: 1px;
}

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

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

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

.news__container {
  max-width: 345px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .news__container {
    max-width: 1040px;
    width: 100%;
  }
}

.news__contents {
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
  display: inline-block;
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .news__contents {
    padding-bottom: 24px;
    margin-top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .news__contents:hover .news__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.news__contents + .news__contents {
  margin-top: 27px;
}
@media screen and (min-width: 768px) {
  .news__contents + .news__contents {
    margin-top: 23px;
  }
}

.news__img {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news__img img {
    width: 260px;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }
}

.news__textbox {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .news__textbox {
    margin-top: 0;
    max-width: 740px;
  }
}

.news__textbox-time {
  font-size: 14px;
  font-weight: 300;
  line-height: 170%; /* 23.8px */
}

.news__textbox-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 170%; /* 27.2px */
  margin-top: 9px;
}
@media screen and (min-width: 768px) {
  .news__textbox-title {
    margin-top: 16px;
    font-size: 18px;
  }
}

.news__textbox-text {
  color: #888;
  font-size: 14px;
  font-weight: 300;
  line-height: 170%; /* 23.8px */
  margin-top: 14px;
  padding-right: 3px;
}
@media screen and (min-width: 768px) {
  .news__textbox-text {
    margin-top: 10px;
    margin-left: -1px;
  }
}

.news__button {
  margin-top: 41px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 44px;
  }
}

.contact {
  padding: 57px 0;
  background: url(../img/contact_bg-pc.png);
  background-size: cover;
  margin-top: 94px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
    background: url(../img/contact_bg.png);
    background-size: cover;
    margin-top: 160px;
  }
}

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

.contact__text {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .contact__text {
    padding-top: 1px;
  }
}

.asterisk {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 170%;
  color: #e7728e;
  margin-left: 2px;
}
@media screen and (min-width: 768px) {
  .asterisk {
    margin-left: 0;
  }
}
.asterisk.--issmall {
  font-size: 10px;
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  .asterisk.--issmall {
    font-size: 12px;
  }
}

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

.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;
}

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

.contact__button {
  margin-top: 22px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 46px;
  }
}

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

.form-field__label {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 170%; /* 23.8px */
  opacity: 0.7;
  background: #3ea1d1;
  padding: 4px 16px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    background: none;
    width: 180px;
    height: 40px;
    font-size: 18px;
    position: relative;
    z-index: 3;
    opacity: 1;
    padding: 4px 0;
  }
  .form-field__label::before {
    content: "";
    background: url(../img/label-pc-bg.png);
    background-size: contain;
    display: inline-block;
    width: 180px;
    height: 40px;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

.form-field__item {
  padding-top: 3px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    padding-top: 0;
  }
}

.input-text {
  width: 100%;
  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);
  padding: 3px 10px;
  height: 40px;
  border: none;
}
.input-text:hover, .input-text:focus {
  outline: auto 1px #3ea1d1;
  -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;
}
.form-radio {
  background: #fff;
  padding: 1px;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
}
.form-radio__input:focus + .form-radio__text {
  background: #3ea1d1;
  color: #fff;
}
.form-radio__input:checked + .form-radio__text {
  background: #3ea1d1;
  color: #fff;
}

.form-radio__text {
  color: #3ea1d1;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.026px;
  padding: 6px 23px 5px;
  display: inline-block;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}

.form-textarea {
  width: 100%;
  height: 122px;
  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);
  padding: 3px 10px;
  -webkit-transition: outline 0.3s;
  transition: outline 0.3s;
  border: none;
  resize: vertical;
}
.form-textarea:hover, .form-textarea:focus {
  outline: auto 1px #3ea1d1;
  -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__input {
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: #3ea1d1;
}

.form-checkbox__text {
  padding-left: 31px;
  position: relative;
  font-size: 16px;
  font-weight: 300;
  line-height: 170%;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #3ea1d1;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-checkbox__text::after {
  width: 19.414px;
  height: 14.621px;
  left: 2px;
  background: url(../img/icon.png) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  color: #3ea1d1;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer {
  padding-top: 36px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
  background: #f7f7f7;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 35px;
    padding-bottom: 10px;
  }
}

.footer__logo img {
  width: 120px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .footer__logo img:hover {
    opacity: 0.6;
  }
}

.footer__link {
  padding-top: 20px;
  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;
}
@media screen and (min-width: 768px) {
  .footer__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    padding-top: 22px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__link-item {
  font-size: 12px;
  font-weight: 300;
  line-height: 170%; /* 20.4px */
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .footer__link-item:hover {
    opacity: 0.6;
  }
}

.footer__sns {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin-top: 22px;
  }
}

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

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

.footer__copylight {
  color: #888;
  font-size: 12px;
  font-weight: 300;
  line-height: 170%; /* 20.4px */
}