body {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-family: "Noto Serif JP", serif;
  background: #fff;
  font-weight: 300;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body.is-fixed {
  height: 100%;
  overflow: hidden;
}

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

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

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

.title {
  text-align: center;
}

.main-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%; /* 30px */
}
@media screen and (min-width: 768px) {
  .main-title {
    font-size: 40px;
  }
}
.main-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #3ea1d1;
  margin-top: 28px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .main-title::after {
    margin-top: 24px;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 158px;
  margin-right: auto;
  margin-left: auto;
  padding: 11px 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;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
.button:hover {
  background: #3ea1d1;
}
.button:hover button {
  color: #fff;
}
.button button {
  color: #3ea1d1;
  font-size: 14px;
  letter-spacing: 0.02px;
}

.header {
  width: 100%;
  height: 60px;
  z-index: 100;
  position: sticky;
  top: 0;
  background: #fff;
}
.header__inner {
  height: 60px;
  padding-top: 21px;
  padding-bottom: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .header__inner {
    width: 100%;
    padding-top: 23px;
    padding-bottom: 23px;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .header__logo:hover {
    opacity: 0.6;
  }
}
.header__logo img {
  width: 120px;
  height: 22px;
}

.drawer-icon {
  width: 30px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar {
  margin: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  width: 30px;
  height: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #3ea1d1;
  position: absolute;
  top: 0;
  right: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 16px;
}

@media screen and (min-width: 768px) {
  .header__menu-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 46px;
  }
}

.header__menu-list {
  color: #333;
  font-weight: 300;
}
.header__menu-list:hover {
  color: #3ea1d1;
}

.menu__open {
  background: #3ea1d1;
  padding-top: 40px;
  padding-right: 15px;
  padding-bottom: 295px;
  width: 72%;
  height: 100%;
  margin-left: auto;
  z-index: 50;
  position: fixed;
  top: 60px;
  right: 0;
  -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);
}

.menu__open__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;
  text-align: right;
  color: #fff;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .mv__inner {
    max-width: 1280px;
    height: 660px;
    position: relative;
  }
}

.mv__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .mv__img img {
    max-width: 990px;
    margin-left: auto;
    -webkit-box-flex: inherit;
        -ms-flex-positive: inherit;
            flex-grow: inherit;
  }
}

.mv__content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .mv__content {
    padding: 80px 40px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: #fff;
    position: absolute;
    top: 171px;
    left: 0;
    margin-top: auto;
    margin-bottom: auto;
  }
}

.mv__main-text {
  color: #333;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.7;
}

.mv__sub-text {
  color: #333;
  margin-top: 16px;
}

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

.concept__box {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .concept__box {
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 6.6666666667%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.concept__img {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__img img {
    width: 600px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.concept__text {
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .concept__text {
    width: 520px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.concept__main-text {
  color: #333;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept__main-text {
    font-size: 18px;
  }
}

.concept__sub-text {
  margin-top: 20px;
  color: #333;
}
@media screen and (min-width: 768px) {
  .concept__sub-text {
    margin-top: 40px;
  }
}

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

.feature__lists {
  margin-top: 44px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__lists {
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 7.5%;
  }
}

.feature__list {
  padding-bottom: 26px;
  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__list:nth-child(2) {
  margin-top: 52px;
}
.feature__list:nth-child(3) {
  margin-top: 52px;
}
@media screen and (min-width: 768px) {
  .feature__list:nth-child(2), .feature__list:nth-child(3) {
    margin-top: 0;
  }
}

.feature__list-text {
  margin-top: 25px;
  text-align: center;
  font-weight: 600;
}
.feature__list-text:nth-child(3) {
  margin-top: 16px;
}

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

.mask__inner {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-size: cover;
}
.mask__contents {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .mask__contents {
    width: 50%;
  }
}

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

.mask__sub-text {
  margin-top: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .mask__sub-text {
    font-size: 16px;
  }
}

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

.products__inner {
  padding-right: 56px;
  padding-left: 56px;
}
@media screen and (min-width: 768px) {
  .products__inner {
    max-width: 1020px;
    padding-inline: 40px;
  }
}

.products__lists {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .products__lists {
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 6.6666666667%;
  }
}

.products__list {
  display: block;
}
.products__list:nth-child(2), .products__list:nth-child(3) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .products__list {
    width: 260px;
  }
  .products__list:nth-child(2), .products__list:nth-child(3) {
    margin-top: 0;
  }
  .products__list:hover .products__list-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}

.products__list-img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .products__list-img {
    overflow: hidden;
  }
}

.products__list-text {
  margin-top: 20px;
  font-size: 14px;
}

.products__price {
  color: #989898;
  font-size: 14px;
  margin-top: 10px;
}

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

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

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

.news__lists {
  margin-top: 44px;
}
@media screen and (min-width: 768px) {
  .news__lists {
    margin-top: 66px;
  }
}

.news__list {
  display: block;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 27px;
  margin-top: 28px;
}

@media screen and (min-width: 768px) {
  .news__list-box:hover .news__list-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}
.news__list-box:nth-child(2), .news__list-box:nth-child(3) {
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .news__list-box:nth-child(2), .news__list-box:nth-child(3) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .news__list-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 40px;
    margin-top: 24px;
  }
}

.news__list-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news__list-img img {
    width: 260px;
  }
}

.news__list-contents {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .news__list-contents {
    margin-top: 0;
  }
}

.news__list-time {
  font-size: 14px;
}

.news__list-title {
  font-weight: 600;
  margin-top: 9px;
}
@media screen and (min-width: 768px) {
  .news__list-title {
    font-size: 18px;
    margin-top: 13px;
  }
}

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

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

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

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

.concept-2__img {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept-2__img {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) {
  .concept-2__contents {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: auto;
    margin-bottom: auto;
  }
}

.concept-2__title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .concept-2__title {
    font-size: 23px;
    margin-top: 0;
  }
}

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

.contact {
  margin-top: 99px;
  background: url(../img/contact_bg.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 159px;
  }
}

.contact__inner {
  padding: 55px 15px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 543px;
    margin-right: auto;
    margin-left: auto;
  }
}

.contact__title h2 {
  color: #3ea1d1;
}

.contact__comment {
  margin-top: 46px;
  margin-bottom: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.contact__comment a {
  color: #e7728e;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .contact__comment {
    margin-top: 64px;
    margin-bottom: 19px;
  }
}

.form__box:nth-child(3), .form__box:nth-child(4), .form__box:nth-child(5) {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .form__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.form__label {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 16px;
  align-items: center;
  opacity: 0.7;
  background: var(--3-ea-1-d-1, #3ea1d1);
  margin-bottom: 3px;
}
.form__label a {
  display: block;
  margin-left: 4px;
  color: #e7728e;
  font-size: 10px;
  font-weight: 600;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (min-width: 768px) {
  .form__label {
    font-size: 18px;
    margin-bottom: 0;
    padding: 0;
    width: 180px;
    height: 40px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    opacity: 1;
    background: url(../img/form_pc-bg.png) no-repeat center center/cover;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    align-items: center;
    margin-right: 10px;
  }
  .form__label a {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .form-field__item {
    width: 100%;
  }
}

.form-text {
  width: 100%;
  height: 40px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: inherit;
  color: inherit;
  padding: 0;
  border: none;
  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-color: #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__select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select-box {
  color: var(--3-ea-1-d-1, #3ea1d1);
  text-align: center;
  letter-spacing: 0.026px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7px 21px 3px 24px;
  -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 #fff;
  background: #fff;
}
.select-box.is-checked {
  background: var(--3-ea-1-d-1, #3ea1d1);
  color: #fff;
}
.select-box:focus {
  outline-color: #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: 768px) {
  .select-box {
    font-size: 16px;
    padding: 5px 22px 6px 24px;
  }
}

.form-textarea {
  width: 100%;
  height: 122px;
  border: none;
  font-size: 16px;
  resize: vertical;
}
.form-textarea:focus {
  outline-color: #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: 768px) {
  .form-textarea {
    height: 122px;
  }
}

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

.form-checkbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.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__text {
  position: relative;
  padding-left: 30px;
}
.form-checkbox__text a {
  color: #3ea1d1;
  text-decoration: underline;
}

.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;
  border-radius: 1px;
  border: 1px solid #3ea1d1;
  background: #fff;
}

.form-checkbox__text::after {
  width: 19.414px;
  height: 14.621px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  left: 1.29px;
  top: 13px;
  margin-top: -1.2px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}

.contact__button {
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 44px;
  }
}

.footer {
  padding-top: 40px;
  padding-bottom: 10px;
  background: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 33px;
    padding-bottom: 14px;
  }
}

.footer__inner {
  text-align: center;
}

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

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

.footer__list {
  font-size: 12px;
}
.footer__list:nth-child(2) {
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .footer__list:hover {
    opacity: 0.6;
  }
  .footer__list:nth-child(2) {
    margin-top: 0;
  }
}

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

.footer__icon:hover {
  opacity: 0.6;
}

.twitter__icon img {
  width: 21px;
  height: 21px;
}

.instagram__icon img {
  width: 18px;
  height: 22.2px;
}
@media screen and (min-width: 768px) {
  .instagram__icon img {
    width: 18px;
    height: 22.2px;
  }
}

.line__icon img {
  width: 18px;
  height: 19.2px;
}

.copy-right {
  color: #888;
  font-size: 12px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .copy-right {
    margin-top: 29px;
  }
}