html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 90px;
  }
}

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

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

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

.heading {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}

.heading-text {
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.heading-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #3EA1D1;
}

.button {
  display: block;
  margin-top: 42px;
  margin-left: auto;
  margin-right: auto;
  width: 158px;
  height: 48px;
  color: #3EA1D1;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 0.02px;
  border: 1px solid #3EA1D1;
  background: #fff;
  display: inline-block;
  text-align: center;
}
.button:hover {
  -webkit-transition: color 0.4s, background-color 0.4s;
  transition: color 0.4s, background-color 0.4s;
  color: #FFFFFF;
  background-color: #3EA1D1;
}
@media screen and (min-width: 768px) {
  .button {
    margin-top: 44px;
  }
}

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

.header__inner {
  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;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.header__logo:hover {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0.6;
}

.header__img {
  display: block;
  width: 120px;
}

.header__button {
  width: 30px;
  height: 18px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__button {
    display: none;
  }
}

.header__button-line {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #3EA1D1;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.header__button-line:nth-child(1) {
  top: 0;
  left: 0;
}
.header__button-line:nth-child(2) {
  top: 8px;
  left: 0;
}
.header__button-line:nth-child(3) {
  top: 16px;
  left: 0;
}

.js-open:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.js-open:nth-child(2) {
  display: none;
}
.js-open:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header__nav {
  padding: 32px 15px 95px 78px;
  background-color: #3EA1D1;
  width: 270px;
  height: 618px;
  color: #FFFFFF;
  position: fixed;
  top: 60px;
  right: 0;
  z-index: 1500;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}
@media screen and (min-width: 768px) {
  .header__nav {
    width: 100%;
    height: 100%;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    position: static;
    background-color: #FFFFFF;
  }
}

.js-header__nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}

.header__nav-list {
  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__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 46px;
  }
}

.header__nav-item {
  color: #FFFFFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}
.header__nav-item:hover {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #3EA1D1;
}
@media screen and (min-width: 768px) {
  .header__nav-item {
    color: #333;
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 170%;
  }
}

.header__nav-link {
  display: inline-block;
  padding: 8px 0;
}

.fv {
  margin-top: 60px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .fv__inner {
    position: relative;
  }
}

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

.fv__texts {
  margin-top: 30px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .fv__texts {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #FFFFFF;
    margin-top: 0;
    padding: 80px 40px;
    position: absolute;
    inset-block: 0;
    margin-block: auto;
    left: 0;
  }
}

.fv__texts-heading {
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

.fv__texts-text {
  margin-top: 16px;
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}

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

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

.concept__img {
  text-align: center;
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .concept__img {
    margin-top: 0px;
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.concept__img img {
  width: 100%;
}

.concept__texts {
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .concept__texts {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.concept__texts-heading {
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

.concept__texts-text {
  margin-top: 22px;
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .concept__texts-text {
    margin-top: 40px;
  }
}

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

.feature__content {
  margin-top: 64px;
  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: 50px;
}
@media screen and (min-width: 768px) {
  .feature__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 90px;
  }
}

.feature__link:hover .feature__box-img img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.feature__box {
  background: #FFFFFF;
}

.feature__box-img img {
  width: 100%;
}

.feature__box-text {
  padding: 26px 0;
  color: #333;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

.about {
  margin-top: 96px;
  background: url(../img/bg-sp.png) no-repeat top center/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 160px;
  }
}
.about::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .about {
    background: url(../img/bg-pc.png) no-repeat top center/cover;
  }
}

.about__inner {
  padding-block: 180px 50px;
}

.about__texts {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .about__texts {
    width: 50%;
  }
}

.about__texts-heading {
  color: #FFFFFF;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

.about__texts-text {
  margin-top: 24px;
  color: #FFFFFF;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

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

.products__inner {
  padding: 0 56px;
}

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

.products__link:hover .products__box-img img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.products__box-img img {
  width: 100%;
}

.products__box-texts {
  margin-top: 20px;
}

.products__box-texts_heading {
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  -moz-text-align-last: left;
       text-align-last: left;
}

.products__box-texts_text {
  margin-top: 10px;
  color: #989898;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  -moz-text-align-last: left;
       text-align-last: left;
}

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

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

.news__content {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .news__content {
    margin-top: 64px;
    gap: 24px;
  }
}

.news__link:hover .news__box-img img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.news__box {
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (min-width: 768px) {
  .news__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
    padding-bottom: 24px;
  }
}

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

.news__box-texts {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .news__box-texts {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.news__box-texts_day {
  text-align: left;
  color: #333;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}

.news__box-texts_heading {
  margin-top: 10px;
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .news__box-texts_heading {
    margin-top: 16px;
  }
}

.news__box-texts_text {
  margin-top: 14px;
  color: #888;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .news__box-texts_text {
    margin-top: 10px;
  }
}

.news__button {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .concept-2__img {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.concept-2__texts {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .concept-2__texts {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.concept-2__texts-heading {
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

.concept-2__texts-text {
  margin-top: 22px;
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .concept-2__texts-text {
    margin-top: 36px;
  }
}

.contact {
  padding: 56px 0;
  background: url(../img/contact_bg.png) no-repeat center center/cover;
  margin-top: 96px;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 160px;
    padding: 80px 0;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 590px;
    padding: 0 40px;
  }
}

.form__heading-text {
  color: #3EA1D1;
  font-family: "Noto Serif JP";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

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

.contact__text {
  text-align: center;
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

.is-contact__text {
  color: #e7728e;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

.contact__items {
  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__items {
    margin-top: 19px;
  }
}

.contact-control {
  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-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

@media screen and (min-width: 768px) {
  .contact-control-heading {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.form-label {
  color: #FFFFFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  padding: 4px 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.7;
  background: #3EA1D1;
}
@media screen and (min-width: 768px) {
  .form-label {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 4px;
    padding-inline: 4px;
    clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  }
}

.is-form-label {
  color: #e7728e;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .is-form-label {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .contact-control-input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.form-text {
  width: 100%;
  height: 40px;
  border: 0;
  font-size: 16px;
  background: #FFFFFF;
  -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: #3EA1D1 auto 1px;
}

.contact-control__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.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-color: #3EA1D1;
  color: #FFFFFF;
}
.form-radio__input:focus .form-radio__text {
  outline: #3EA1D1 auto 1px;
}

.form-radio__text {
  color: #3EA1D1;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 0.026px;
  border: 1px solid #fff;
  background: #FFFFFF;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.form-textarea {
  width: 100%;
  height: 122px;
  border: 0;
  font-size: 16px;
  fill: #FFFFFF;
  -webkit-box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
  resize: vertical;
}
.form-textarea:focus {
  outline: #3EA1D1 auto 1px;
}

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

.contact__privacy {
  text-align: center;
}

.form-checkbox {
  position: relative;
}

.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: #3EA1D1 auto 1px;
}

.form-checkbox__text {
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  padding-left: 30px;
}
.form-checkbox__text a {
  color: #3EA1D1;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  text-decoration-line: underline;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background-color: #FFFFFF;
  border: 1px solid #3EA1D1;
}
.form-checkbox__text::after {
  opacity: 0;
  width: 19.414px;
  height: 14.621px;
  left: 1.29px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
}

.contact__submit {
  margin-top: 23px;
  text-align: center;
}

.form__submit-button {
  margin-top: 0;
}

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

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

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

.footer__texts-text1 {
  color: #333;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}

.footer__texts-text2 {
  color: #333;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}

.footer__texts-icons {
  margin-top: 18px;
  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;
}
.footer__texts-icons a:hover {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0.6;
}

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

.footer__copy-text {
  color: #888;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}