@charset "UTF-8";
body {
  font-family: "Noto Serif JP", serif;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
  background-color: #fff;
  font-weight: 300;
}
body.is-fixed {
  overflow-y: hidden;
}

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

.heading {
  text-align: center;
  position: relative;
}
.heading::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  background: #3ea1d1;
  bottom: -29px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .heading::after {
    bottom: -26px;
  }
}

.heading__text {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .heading__text {
    font-size: 40px;
  }
}

.button {
  color: #3ea1d1;
  font-size: 14px;
  letter-spacing: 0.02px;
  border: 1px solid #3ea1d1;
  background: #fff;
  padding: 12px 56px;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
.button:hover {
  background: #3ea1d1;
  color: #fff;
}

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

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

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

.header__inner {
  height: inherit;
}

.header__content {
  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: 100%;
}

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

.header__nav {
  background: #3ea1d1;
  width: 270px;
  height: calc(100% - 60px);
  position: fixed;
  top: 60px;
  right: 0;
  padding: 32px 15px;
  -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;
  z-index: 51;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: auto;
    height: auto;
    background: transparent;
    position: static;
    padding: 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: 46px;
  }
}

.header__nav-link {
  display: inline-block;
  padding-block: 8px;
  color: #fff;
  font-size: 18px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .header__nav-link {
    color: #333;
    font-size: 16px;
  }
  .header__nav-link:hover {
    color: #3ea1d1;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
  top: 2px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  background: #3ea1d1;
  -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-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;
}

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

.fv__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: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .fv__image img {
    width: 990px;
  }
}

@media screen and (min-width: 768px) {
  .fv__text {
    padding-top: 80px;
    padding-right: 40px;
    padding-bottom: 80px;
    position: absolute;
    background: #fff;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.fv__text-main {
  font-size: 26px;
  font-weight: 600;
  -moz-text-align-last: left;
       text-align-last: left;
}
.fv__text-sub {
  margin-top: 16px;
  -moz-text-align-last: left;
       text-align-last: left;
}

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

.concept__content {
  margin-top: 74px;
  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 {
    margin-top: 89px;
    -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: 40px;
  }
}
@media screen and (min-width: 900px) {
  .concept__content {
    gap: 80px;
  }
}

.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__text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

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

.concept__text-sub {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .concept__text-sub {
    margin-top: 40px;
  }
}

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

.feature__inner {
  text-align: center;
}

.feature__content {
  margin-top: 74px;
  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__content {
    margin-top: 89px;
    -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__link-box {
  background: #fff;
  -webkit-box-shadow: 3px 3px 15px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0 rgba(96, 96, 96, 0.16);
}
.feature__link-box-image img {
  width: 100%;
}

.feature__link-box-text {
  font-weight: 600;
  padding-top: 26px;
  padding-bottom: 26px;
  text-align: center;
}

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

.question__content {
  background: url("../img/question-bg-sp.png") no-repeat center center/cover;
}
@media screen and (min-width: 600px) {
  .question__content {
    background: url("../img/question-bg.png") no-repeat center center/cover;
  }
}

.question__content-layer {
  background: rgba(0, 0, 0, 0.12);
  padding: 181px 15px 50px 15px;
}
@media screen and (min-width: 768px) {
  .question__content-layer {
    padding-top: 123px;
    padding-bottom: 122px;
  }
}

.question__text {
  color: #fff;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .question__text {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}

.question__text-main {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .question__text-main {
    font-size: 22px;
  }
}

.question__text-sub {
  margin-top: 25px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .question__text-sub {
    font-size: 16px;
  }
}

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

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

.products__content {
  margin-top: 74px;
  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;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .products__content {
    margin-top: 89px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .products__content {
    gap: 80px;
  }
}

.products__link-box:hover .products__link-box-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.products__link-box-image img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 900px) {
  .products__link-box-image img {
    width: 260px;
    height: 260px;
  }
}

.products__link-box-body {
  margin-top: 20px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .products__link-box-body {
    margin-top: 18px;
  }
}

.products__link-box-title {
  font-size: 14px;
}

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

.products__button {
  text-align: center;
  margin-top: 51px;
}
@media screen and (min-width: 768px) {
  .products__button {
    margin-top: 55px;
  }
}

.news {
  padding-top: 106px;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 170px;
  }
}

.news__content {
  margin-top: 74px;
}
@media screen and (min-width: 768px) {
  .news__content {
    margin-top: 88px;
  }
}

.news__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: 27px;
}
@media screen and (min-width: 768px) {
  .news__boxes {
    gap: 23px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }
}

.news__box {
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news__box:hover .news__box-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .news__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 900px) {
  .news__box {
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .news__box-image {
    width: 25%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.news__box-image img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

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

.news__box-date {
  font-size: 14px;
}

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

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

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

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

.motto__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: 32px;
}
@media screen and (min-width: 768px) {
  .motto__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) {
  .motto__content {
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .motto__content {
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .motto__image {
    width: 41.6666666667%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 900px) {
  .motto__image {
    width: 50%;
  }
}
.motto__image img {
  width: 100%;
}

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

.motto__body-title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .motto__body-title {
    font-size: 28px;
  }
}

.motto__body-text {
  margin-top: 22px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .motto__body-text {
    margin-top: 35px;
    font-size: 16px;
  }
}

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

.contact__heading .heading__text {
  color: #3ea1d1;
}

.contact__content {
  margin-top: 75px;
}
@media screen and (min-width: 768px) {
  .contact__content {
    max-width: 510px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 89px;
  }
}

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

.form-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: 32px;
}
@media screen and (min-width: 768px) {
  .form-fields {
    margin-top: 20px;
  }
}

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

.form-field__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px;
  opacity: 0.7;
  background: #3ea1d1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    position: relative;
    width: 175px;
    height: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
  .form-field__label::after {
    content: "";
    position: absolute;
    top: 0;
    right: -5px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent; /* 上半分 */
    border-bottom: 20px solid transparent; /* 下半分 */
    border-left: 5px solid #3ea1d1; /* 三角の色 */
  }
}

.form-field__label-name {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-field__label-name {
    font-size: 18px;
  }
}

.form-field__label-mark {
  color: #e7728e;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-field__label-mark {
    font-size: 12px;
  }
}

.form-text {
  border: none;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
  width: 100%;
  height: 40px;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
@media screen and (min-width: 768px) {
  .form-text {
    width: 320px;
  }
}
.form-text:focus {
  outline: 1px auto #3ea1d1;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.form-radio__text {
  padding: 6px 21px 5px 22px;
  border: 1px solid #fff;
  background: #fff;
  color: #3ea1d1;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  letter-spacing: 0.026px;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.form-textarea {
  border: none;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
  width: 100%;
  height: 122px;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    width: 320px;
  }
}
.form-textarea:focus {
  outline: 1px auto #3ea1d1;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
}

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

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

.form-checkbox__text {
  padding-left: 30px;
  position: relative;
}
.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: 1px solid #3ea1d1;
}
.form-checkbox__text::after {
  width: 19px;
  height: 14px;
  left: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/privacy-icon.png") no-repeat center center/contain;
  opacity: 0;
}

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

.button--contact {
  padding: 12px 64px;
}

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

.footer__content {
  text-align: center;
}

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

.footer__link {
  margin-top: 22px;
  font-size: 12px;
  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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__link-item {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer__link-item:hover {
  color: #3ea1d1;
}

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

.footer__sns-item:hover img {
  opacity: 0.6;
}
.footer__sns-item img {
  width: 21px;
  height: 21px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.footer__copyright {
  margin-top: 24px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 28px;
  }
}