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

/* 共通 */
.inner {
  padding: 95px 15px 0;
}
@media screen and (min-width: 768px) {
  .inner {
    padding: 160px 40px 0;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
  }
}

.heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 29px;
  margin-bottom: 45px;
}
.heading::after {
  position: absolute;
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #3ea1d1;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
    padding-bottom: 24px;
    margin-bottom: 64px;
  }
}

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

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

.button {
  padding: 11px 4px;
  border: 1px solid #3ea1d1;
  background: #fff;
  color: #3ea1d1;
  font-size: 14px;
  letter-spacing: 0.02px;
  width: 158px;
  text-align: center;
  margin: 0 auto;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}
.button:hover {
  background-color: #3ea1d1;
  color: #fff;
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 19px 15px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 22px 40px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__nav-logo {
  width: 120px;
  height: 22px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.header__nav-logo img {
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .header__nav-logo:hover {
    opacity: 0.5;
  }
}

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

.header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 46px;
}

.header__nav-list {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media screen and (min-width: 768px) {
  .header__nav-list:hover {
    color: #3ea1d1;
  }
}

.drawer-icon {
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar {
  background: transparent;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
  background: #3ea1d1;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
  background: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon__bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: #3ea1d1;
  -webkit-transition: top 0.3s, ease 0.5s, -webkit-transform 0.3s;
  transition: top 0.3s, ease 0.5s, -webkit-transform 0.3s;
  transition: transform 0.3s, top 0.3s, ease 0.5s;
  transition: transform 0.3s, top 0.3s, ease 0.5s, -webkit-transform 0.3s;
}
.drawer-icon__bar:nth-child(1) {
  top: 2px;
}
.drawer-icon__bar:nth-child(2) {
  top: 10px;
}
.drawer-icon__bar:nth-child(3) {
  top: 18px;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar {
    display: none;
  }
}

.drawer-icon__bar--1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}

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

.nav_drawer__lists {
  text-align: right;
  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;
  padding-right: 15px;
}

.nav_drawer__list {
  font-size: 18px;
  color: #fff;
}

/* fv */
@media screen and (min-width: 768px) {
  .fv {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.fv__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding: 0 40px;
  }
}

@media screen and (min-width: 768px) {
  .fv__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .fv__img img {
    max-width: 990px;
    width: 100%;
    height: auto;
  }
}

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

.fv__lead {
  display: inline-block;
  font-size: 26px;
  font-weight: 600;
}

.fv__description {
  display: inline-block;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .fv__description {
    white-space: nowrap;
  }
}

/* concept */
.concept__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .concept__content {
    -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__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .concept__img {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 600px;
  }
}
.concept__img img {
  width: 100%;
}

.concept__body {
  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: 21px;
}
@media screen and (min-width: 768px) {
  .concept__body {
    gap: 40px;
    margin-top: 0;
  }
}

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

.concept__text {
  font-weight: 300;
}

/* feature */
.feature__items {
  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;
}
@media screen and (min-width: 768px) {
  .feature__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 90px;
  }
}

.feature__item {
  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);
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__item:hover .feature__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media screen and (min-width: 768px) {
  .feature__image {
    overflow: hidden;
  }
  .feature__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;
  }
}
.feature__image img {
  max-width: 345px;
  width: 100%;
}

.feature__text {
  font-weight: 600;
  padding: 26px 0;
}

/* cta */
.cta {
  margin-top: 95px;
}
@media screen and (min-width: 768px) {
  .cta {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    margin-top: 160px;
  }
}

.cta__content {
  max-width: 375px;
  height: 490px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.12)), to(rgba(0, 0, 0, 0.12))), url(../img/sp/cta-bg.png) no-repeat top/375px 490px;
  background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), url(../img/sp/cta-bg.png) no-repeat top/375px 490px;
  padding: 180px 15px 50px;
  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;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cta__content {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.12)), to(rgba(0, 0, 0, 0.12))), url(../img/cta-bg.png) no-repeat top/1280px 478px;
    background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), url(../img/cta-bg.png) no-repeat top/1280px 478px;
    max-width: 1280px;
    height: 478px;
    padding: 122px 40px 0;
  }
}

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

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

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

.products__items {
  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) {
  .products__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px;
  }
}

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

@media screen and (min-width: 768px) {
  .products__image {
    overflow: hidden;
  }
  .products__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__image img {
  width: 263px;
}

.products__item-title {
  padding-top: 20px;
  font-size: 14px;
  font-weight: 300;
}

.products__item-price {
  display: inline-block;
  padding-top: 10px;
  color: #989898;
  font-size: 14px;
  font-weight: 300;
}

.products .button {
  margin-top: 43px;
}

/* news */
.news .inner {
  margin-top: 1px;
}
@media screen and (min-width: 768px) {
  .news .inner {
    margin-top: 2px;
  }
}

.news__items {
  max-width: 345px;
  width: 100%;
  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;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .news__items {
    max-width: 1040px;
    gap: 24px;
  }
}

@media screen and (min-width: 768px) {
  .news__item:hover .news__item-image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.news__item-link {
  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;
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (min-width: 768px) {
  .news__item-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    padding-bottom: 23px;
  }
}

.news__item-image {
  max-width: 345px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__item-image {
    max-width: 260px;
    overflow: hidden;
  }
  .news__item-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__item-image img {
  width: 100%;
}

.news__date {
  display: block;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .news__date {
    padding-bottom: 16px;
  }
}

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

.news__contents-text {
  color: #888;
  font-size: 14px;
  font-weight: 300;
  padding-top: 14px;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media screen and (min-width: 768px) {
  .news__contents-text {
    padding-top: 12px;
  }
}

.news .button {
  margin-top: 43px;
}

/* word */
.word__flex {
  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) {
  .word__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;
  }
}

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

.word__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: 22px;
}
@media screen and (min-width: 768px) {
  .word__contents {
    gap: 36px;
  }
}

.word__contents-title {
  font-size: 20px;
  font-weight: 600;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media screen and (min-width: 768px) {
  .word__contents-title {
    font-size: 28px;
  }
}

.word__contents-text {
  font-size: 14px;
  font-weight: 300;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media screen and (min-width: 768px) {
  .word__contents-text {
    font-size: 16px;
  }
}

/* contact */
.contact {
  background: url(../img/contact_bg.png) no-repeat top center/cover;
}

.contact__inner {
  padding: 56px 15px;
  margin-top: 95px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding: 80px 15px;
    margin-top: 160px;
  }
}

.heading__blue {
  color: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .heading__blue {
    margin-bottom: 66px;
  }
}

.contact__note {
  text-align: center;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .contact__note {
    margin-bottom: 20px;
  }
}

.contact__text-red {
  color: #e7728e;
  font-size: 14px;
  font-weight: 600;
}

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

.contact__items-flex {
  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__item {
  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) {
  .contact__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 510px;
    gap: 10px;
  }
}

.contact__label {
  background: #3ea1d1;
  padding: 4px 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.7;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .contact__label {
    font-size: 18px;
    width: 180px;
    height: 40px;
    text-align: center;
    padding: 4px 10px;
    clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  }
}

@media screen and (min-width: 768px) {
  .contact__input {
    width: 320px;
  }
}

.contact__input-text {
  border: none;
  height: 40px;
  width: 100%;
  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);
}
.contact__input-text:focus {
  -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);
  outline: #3ea1d1 auto 1px;
}

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

.contact__radio {
  position: relative;
}

.contact__radio-input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.contact__radio-input:checked + .contact__radio-text {
  background: #3ea1d1;
  color: #fff;
}
.contact__radio-input:focus + .contact__radio-text {
  -webkit-box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.32);
          box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.32);
  outline: #3ea1d1 auto 1px;
}

.contact__radio-text {
  display: grid;
  place-items: center;
  background: #fff;
  letter-spacing: 0.026px;
  font-weight: 300;
  border: 1px solid #fff;
  width: 80px;
  height: 40px;
  color: #3ea1d1;
}

.contact__textarea {
  border: none;
  width: 100%;
  height: 122px;
  resize: vertical;
  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);
}
.contact__textarea:focus {
  -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);
  outline: #3ea1d1 auto 1px;
}
@media screen and (min-width: 768px) {
  .contact__textarea {
    width: 320px;
  }
}

.contact__item-checkbox {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.contact__checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.contact__checkbox-input:checked + .contact__checkbox-text::after {
  opacity: 1;
}
.contact__checkbox-input:focus + .contact__checkbox-text::before {
  -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);
  outline: #3ea1d1 auto 1px;
}

.contact__checkbox-text {
  position: relative;
  padding-left: 30px;
}
.contact__checkbox-text::before, .contact__checkbox-text::after {
  position: absolute;
  content: "";
  left: 0;
}
.contact__checkbox-text::before {
  background: #fff;
  vertical-align: middle;
  border: 1px solid #3ea1d1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
}
.contact__checkbox-text::after {
  background: url(../img/icon.png) no-repeat center/contain;
  top: 0;
  opacity: 0;
  width: 21px;
  height: 21px;
}

.contact__checkbox-link {
  color: #3ea1d1;
  border-bottom: 1px solid #3ea1d1;
}

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

/* footer */
.footer {
  padding: 37px 15px 7px;
  background: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 35px;
  }
}

.footer__logo {
  text-align: center;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.footer__logo img {
  width: 120px;
}
@media screen and (min-width: 768px) {
  .footer__logo:hover {
    opacity: 0.5;
  }
}

.footer__content {
  margin-top: 21px;
  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: 12px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (min-width: 768px) {
  .footer__content {
    -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__link {
  font-size: 12px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .footer__link:hover {
    opacity: 0.7;
  }
}

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

.footer_sns-link img {
  vertical-align: middle;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (min-width: 768px) {
  .footer_sns-link img:hover {
    opacity: 0.7;
  }
}

.footer__copyright {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: #888;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 28px;
  }
}