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

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

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

.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 {
  font-size: 30px;
  line-height: 1;
  position: relative;
  text-align: center;
  letter-spacing: 0.6px;
}
.heading.is-main-color {
  color: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
  }
}
.heading::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .heading::after {
    bottom: -24px;
  }
}

.button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button-wrapper .button {
  color: #3ea1d1;
  background: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02px;
  line-height: 24px;
  width: 158px;
  padding: 11px 3px;
  border: 1px solid currentColor;
  -webkit-transition: color 0.3s linear, background-color 0.3s linear;
  transition: color 0.3s linear, background-color 0.3s linear;
}
.button-wrapper .button:hover {
  color: #fefefe;
  background: #3ea1d1;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 51;
  background: #fff;
}
.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;
}
.header__logo {
  padding-top: 19px;
  padding-bottom: 19px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.header__logo-link img {
  display: block;
  width: 120px;
}
@media screen and (min-width: 768px) {
  .header__logo-link {
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
  }
  .header__logo-link:hover {
    opacity: 0.6;
  }
}
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 46px;
  }
}
.header__nav-link {
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 0.04px;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.header__nav-link:hover {
  color: #3ea1d1;
}
.drawer-icon {
  position: relative;
  width: 30px;
  height: 18px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 8px;
  right: 0;
  -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;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #3ea1d1;
  -webkit-transition: display 0.3s linear, -webkit-transform 0.3s linear;
  transition: display 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, display 0.3s linear;
  transition: transform 0.3s linear, display 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
  right: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
  right: 0;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 16px;
  right: 0;
}

.drawer-content {
  padding-top: 100px;
  width: 72%;
  background: #3ea1d1;
  height: 200dvh;
  position: fixed;
  right: -100vw;
  top: 0;
  z-index: 50;
  padding-right: 15px;
  text-align: right;
  -webkit-transition: right 0.3s linear;
  transition: right 0.3s linear;
  -webkit-transform: translate3d(0, 0, -1px);
          transform: translate3d(0, 0, -1px);
}
.drawer-content.is-checked {
  right: 0;
}
.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;
  gap: 32px;
}
.drawer-content__link {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}

.fv {
  margin-top: 60px;
  padding-bottom: 94px;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-bottom: 160px;
    margin-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;
}
@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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}
.fv__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__image {
    max-width: 990px;
    z-index: 1;
  }
}
.fv__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__image img {
    width: 990px;
  }
}
.fv__dummy {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__dummy {
    display: block;
    width: 210px;
  }
}
.fv__body {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .fv__body {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    z-index: 2;
    background: #fff;
    margin-top: 0;
    padding-top: 6.6666666667%;
    padding-bottom: 6.6666666667%;
    padding-right: 3.3333333333%;
  }
}
.fv__head {
  font-size: 26px;
}
.fv__text {
  margin-top: 16px;
  font-weight: 300;
  color: #333;
}

.concept {
  padding-bottom: 95px;
}
@media screen and (min-width: 768px) {
  .concept {
    padding-bottom: 160px;
  }
}
.concept__content {
  margin-top: 74px;
}
@media screen and (min-width: 768px) {
  .concept__content {
    margin-top: 89px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.6666666667%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.concept__image {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__image {
    width: 50%;
  }
}
.concept__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .concept__image img {
    width: 600px;
  }
}
.concept__body {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .concept__body {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.concept__head {
  font-size: 20px;
}
.concept__text {
  margin-top: 22px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .concept__text {
    margin-top: 39px;
  }
}

.feature {
  padding-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .feature {
    padding-bottom: 160px;
  }
}
.feature__content {
  margin-top: 74px;
  display: grid;
  grid-template-columns: min(100%, 345px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px 90px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature__content {
    margin-top: 88px;
    grid-template-columns: repeat(3, minmax(28.3333333333%, 1fr));
    gap: clamp(1.406rem, -15.551rem + 26.47vw, 5.625rem);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature__content {
    grid-template-columns: min(100%, 345px);
    gap: 50px;
  }
}
.feature__card {
  text-align: center;
  -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__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature__image img {
    width: 100%;
  }
}
.feature__text {
  padding-top: 25px;
  padding-bottom: 26px;
}
@media screen and (min-width: 768px) {
  .feature__text {
    padding-top: 27px;
  }
}

.question {
  padding-top: 48.5333333333%;
  padding-bottom: 50px;
  background: url(../img/question-bg-sp.png) no-repeat top center/cover;
  background-color: rgba(0, 0, 0, 0.12);
  background-blend-mode: darken;
}
@media screen and (min-width: 768px) {
  .question {
    padding-top: 122px;
    padding-bottom: 122px;
    background: url(../img/pc/question-bg-pc.png) no-repeat center center/cover;
    background-color: rgba(0, 0, 0, 0.12);
    background-blend-mode: darken;
  }
}
.question__content {
  color: #fff;
}
.question__head {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .question__head {
    display: inline-block;
    width: 50%;
    font-size: 22px;
  }
}
.question__text {
  margin-top: 24px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .question__text {
    display: inline-block;
    width: 50%;
    font-size: 16px;
  }
}

.products {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .products {
    padding-top: 158px;
    padding-bottom: 161px;
  }
}
.products__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 293px;
}
@media screen and (min-width: 768px) {
  .products__inner {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
  }
}
.products__content {
  margin-top: 73px;
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .products__content {
    margin-top: 88px;
    grid-template-columns: repeat(3, minmax(27.6595744681%, 1fr));
    gap: clamp(2.75rem, -0.625rem + 7.03vw, 5rem);
  }
}
.products__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .products__image {
    overflow: hidden;
  }
}
.products__image img {
  width: 263px;
}
@media screen and (min-width: 768px) {
  .products__image img {
    width: 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;
  }
  .products__image img:hover {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
  }
}
.products__text {
  margin-top: 21px;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .products__text {
    margin-top: 20px;
  }
}
.products__label {
  margin-top: 10px;
  color: #989898;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .products__label {
    margin-top: 11px;
  }
}
.products__button {
  margin-top: 41px;
}
@media screen and (min-width: 768px) {
  .products__button {
    margin-top: 42px;
  }
}

.news {
  padding-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .news {
    padding-bottom: 158px;
  }
}
.news__inner {
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 1120px;
  }
}
.news__content {
  margin-top: 73px;
  display: grid;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .news__content {
    margin-top: 88px;
    grid-template-rows: auto auto auto;
    gap: 23px;
  }
}
.news__card {
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (min-width: 768px) {
  .news__card {
    padding-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .news__image {
    overflow: hidden;
  }
}
.news__image img {
  width: 345px;
}
@media screen and (min-width: 768px) {
  .news__image img {
    width: 260px;
    -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;
  }
  .news__image img:hover {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
  }
}
.news__body {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .news__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}
.news__date {
  font-size: 14px;
  font-weight: 300;
}
.news__head {
  margin-top: 9px;
}
@media screen and (min-width: 768px) {
  .news__head {
    font-size: 18px;
    margin-top: 14px;
  }
}
.news__text {
  margin-top: 14px;
  color: #888;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .news__text {
    margin-top: 10px;
  }
}
.news .news__button {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .news .news__button {
    margin-top: 44px;
  }
}

.motto {
  padding-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .motto {
    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;
    gap: 6.6666666667%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.motto__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .motto__image {
    width: 50%;
  }
}
.motto__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .motto__image img {
    width: 600px;
  }
}
.motto__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.motto__head {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .motto__head {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .motto__head {
    font-size: 20px;
  }
}
.motto__text {
  margin-top: 23px;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .motto__text {
    margin-top: 35px;
    font-size: 16px;
  }
}

.contact {
  padding-top: 56px;
  padding-bottom: 56px;
  background: url(../img/contact_bg.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
    background: url(../img/pc/contact_bg-pc.png) no-repeat center center/cover;
  }
}
.contact__inner {
  max-width: 540px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.contact__notion {
  margin-top: 74px;
  text-align: center;
  font-size: 14px;
}
.contact__notion .is-highlight {
  color: #e7728e;
}
@media screen and (min-width: 768px) {
  .contact__notion {
    margin-top: 90px;
  }
}
.contact__form {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 19px;
  }
}
.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact__privacy {
  margin-top: 28px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-top: 32px;
  }
}
.contact__button {
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 44px;
  }
}

.form-field + .form-field {
  margin-top: 32px;
}

.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: 10px;
  }
}
@media screen and (min-width: 768px) {
  .form-field__head {
    width: 180px;
    height: 40px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.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;
  background: rgba(62, 161, 209, 0.7);
  color: #fff;
  font-size: 14px;
  padding: 4px 16px;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    width: 100%;
    height: 40px;
    font-size: 18px;
    padding-top: 6px;
    padding-bottom: 5px;
    padding-inline: 4px;
    -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 .is-highlight {
  color: #e7728e;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .form-field__label .is-highlight {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .form-field__item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .form-field__radios {
    margin-top: 0;
  }
}
.form-text {
  width: 100%;
  height: 40px;
  font-size: 16px;
  -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);
  border: none;
}
.form-text:focus {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
}
@media screen and (min-width: 768px) {
  .form-text {
    margin-top: 0;
  }
}

.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:checked:focus + .form-radio__text {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.32);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.32);
}
.form-radio__text {
  border: 1px solid #fff;
  background: #fff;
  color: #3ea1d1;
  letter-spacing: 0.026px;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.form-textarea {
  width: 100%;
  height: 122px;
  font-size: 16px;
  -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);
  border: none;
  resize: vertical;
}
.form-textarea:focus {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.16);
}
@media screen and (min-width: 768px) {
  .form-textarea {
    margin-top: 0;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.32);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.32);
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__text {
  font-weight: 300;
  position: relative;
  padding-left: 30px;
}
.form-checkbox__text span {
  display: inline-block;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  left: 0;
  border: 1px solid #3ea1d1;
}
.form-checkbox__text::after {
  width: 19.414px;
  height: 14.621px;
  left: 1.29px;
  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;
}

.footer {
  padding-top: 35px;
  padding-bottom: 10px;
  text-align: center;
  background: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 14px;
  }
}
.footer__logo img {
  width: 120px;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
  }
  .footer__logo img:hover {
    opacity: 0.6;
  }
}
.footer__policy-list {
  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__policy-list {
    -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__policy-item {
  font-size: 12px;
  font-weight: 300;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.footer__policy-item:hover {
  color: #3ea1d1;
}
.footer__sns-list {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__sns-list {
    margin-top: 20px;
  }
}
.footer__sns-item {
  color: #3ea1d1;
}
.footer__sns-item:nth-of-type(1) {
  width: 21px;
  height: 21px;
}
.footer__sns-item:nth-of-type(2) {
  width: 18.01px;
  height: 22.2px;
}
.footer__sns-item:nth-of-type(3) {
  width: 18px;
  height: 19.2px;
}
.footer__copyright {
  margin-top: 24px;
  display: inline-block;
  color: #888;
  font-size: 12px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 28px;
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}