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

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

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

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

.zoom-img {
  -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;
}
.zoom-img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

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

.heading-title {
  position: relative;
  padding-bottom: 28px;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .heading-title {
    padding-bottom: 24px;
  }
}
.heading-title span {
  font-size: 30px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .heading-title span {
    font-size: 40px;
  }
}
.heading-title::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #3ea1d1;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.button {
  border: 1px solid currentColor;
  background: #ffffff;
  width: 158px;
  padding: 11px 3px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3ea1d1;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02px;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.button:hover {
  background: #3ea1d1;
  color: #ffffff;
}

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

.header_inner {
  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 a img {
  width: 120px;
  display: block;
}
.header_logo:hover {
  opacity: 0.6;
}

.header_nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 46px;
    margin-top: -2px;
  }
}

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

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

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.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(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon_bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon_bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #3ea1d1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.drawer-icon_bar:nth-of-type(1) {
  top: 2px;
}
.drawer-icon_bar:nth-of-type(2) {
  top: 10px;
}
.drawer-icon_bar:nth-of-type(3) {
  top: 18px;
}

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

.drawer-content__menu {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 32px;
}

.drawer-content__link {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  padding: 0.2px 0;
}

.main {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 96px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .main {
    margin-top: 72px;
    gap: 160px;
  }
}

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

.fv_inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .fv_img img {
    margin-left: auto;
    display: block;
  }
}

.fv_message {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .fv_message {
    position: absolute;
    inset-block: 0;
    margin-block: auto;
    left: 0;
    padding: 80px 40px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #ffffff;
  }
}

.fv__message-lead {
  font-size: 26px;
  font-weight: 600;
}
.fv__message-lead br {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__message-lead br {
    display: inline;
  }
}

.fv__message-sub {
  font-weight: 300;
}

.concept_title {
  margin-top: 1px;
}

.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;
  gap: 34px;
}
@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 img {
  width: 345px;
}
@media screen and (min-width: 768px) {
  .concept_img img {
    max-width: 600px;
  }
}

.concept_text {
  margin-top: 1px;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .concept_text {
    gap: 40px;
  }
}

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

.concept_text-sub {
  font-weight: 300;
}

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

@media screen and (min-width: 768px) {
  .feature_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 90px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.feature_item {
  -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_item + .feature_item {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .feature_item + .feature_item {
    margin-top: 0;
  }
}

.feature_img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature_img img {
    width: 340px;
  }
}

.feature_content {
  padding-top: 26px;
  padding-bottom: 26px;
}

.feature_text {
  text-align: center;
}

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

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

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

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

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

.products_title {
  margin-top: -1px;
}

.products_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: 40px;
}
@media screen and (min-width: 768px) {
  .products_lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.products_item-img img {
  width: 263px;
}
@media screen and (min-width: 768px) {
  .products_item-img img {
    width: 260px;
  }
}

.products_item-content {
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .products_item-content {
    margin-top: 20px;
  }
}

.products_item-text {
  font-size: 14px;
  font-weight: 300;
}

.products_item-price {
  margin-top: 10px;
  color: #989898;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .products_item-price {
    margin-top: 10px;
  }
}

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

@media screen and (min-width: 768px) {
  .news_inner {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }
}

.news_title {
  margin-bottom: 65px;
}

.news_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: 27px;
}
@media screen and (min-width: 768px) {
  .news_lists {
    gap: 24px;
  }
}

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

.news_item-img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news_item-img img {
    width: 260px;
  }
}

.news_item-content {
  margin-top: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news-item-date {
  font-size: 14px;
  font-weight: 300;
}

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

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

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

.concept-2 {
  margin-top: 1px;
}

.concept-2_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) {
  .concept-2_content {
    -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;
  }
}

.concept-2_img img {
  width: 345px;
}
@media screen and (min-width: 768px) {
  .concept-2_img img {
    max-width: 600px;
  }
}

.concept-2_text {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .concept-2_text {
    gap: 36px;
  }
}

.concept-2_text-main {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept-2_text-main {
    font-size: 28px;
  }
}

.concept-2_text-sub {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .concept-2_text-sub {
    font-size: 16px;
  }
}

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

.contact_title {
  color: #3ea1d1;
}

.contact_form {
  margin-top: 47px;
  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) {
  .contact_form {
    margin-top: 65px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact_attention {
  font-size: 14px;
  font-weight: 600;
}
.contact_attention span {
  margin-left: 3px;
  color: #e7728e;
}
@media screen and (min-width: 768px) {
  .contact_attention span {
    margin-left: 0px;
  }
}

.contact_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) {
  .contact_fields {
    margin-top: 18px;
  }
}

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

.form-field__label {
  display: inline-block;
  padding: 4px 16px;
  opacity: 0.7;
  background: #3ea1d1;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    width: 180px;
    padding: 5px 10px 4px;
    font-size: 18px;
    -webkit-clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  }
}
.form-field__label span {
  margin-left: 4px;
  color: #e7728e;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .form-field__label span {
    font-size: 12px;
  }
}

.form-field__item {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form-text {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0);
  -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 {
  border-color: #3ea1d1;
  outline: none;
}
@media screen and (min-width: 768px) {
  .form-text {
    width: 320px;
  }
}

.form-textarea {
  width: 100%;
  height: 122px;
  border: 1px solid rgba(0, 0, 0, 0);
  -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-textarea:focus {
  border-color: #3ea1d1;
  outline: none;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    width: 320px;
  }
}

.form-field-radios {
  margin-top: 6px;
  margin-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .form-field-radios {
    margin-top: 7px;
    margin-bottom: 5px;
  }
}

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

.form-radio__text {
  border: 1px solid #fff;
  background: #fff;
  padding: 7px 23px 6px 23px;
  color: #3ea1d1;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.026px;
}
@media screen and (min-width: 768px) {
  .form-radio__text {
    padding: 7px 24px 6px 22px;
    letter-spacing: 0;
  }
}

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

.form-checkbox {
  margin-right: 13px;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::before {
  opacity: 0;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 300;
}
.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: 21.7px;
  height: 21.7px;
  background-color: #fff;
  border-radius: 1px;
  border: 1px solid #3ea1d1;
}
.form-checkbox__text::after {
  width: 22px;
  height: 22px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  font-weight: inherit;
  color: #3ea1d1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.contact__button {
  margin-top: 23px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 44px;
  }
}

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

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

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

.footer_link {
  font-size: 12px;
  font-weight: 300;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer_link:hover {
  opacity: 0.6;
}

.footer_sns-list {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 41px;
}
@media screen and (min-width: 768px) {
  .footer_sns-list {
    margin-top: 17px;
  }
}

.footer_sns-item img {
  width: 19px;
}

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