@charset "UTF-8";
/*--------------------------
// 変数
--------------------------*/
/*--------------------------
// ブレークポイント
--------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

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

/*--------------------------
// 共通パーツ
--------------------------*/
.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 40px;
  }
}

.heading {
  font-size: 30px;
  font-weight: 600;
  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;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
    gap: 24px;
  }
}
.heading::after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #3ea1d1;
}

.button {
  display: inline-block;
  min-width: 158px;
  padding: 11px 3px;
  text-align: center;
  border: 1px solid #3ea1d1;
  color: #3ea1d1;
  font-size: 14px;
  letter-spacing: 0.02px;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.button:hover {
  color: #fff;
  background-color: #3ea1d1;
}

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

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
}

.header__logo a img {
  width: 120px;
  height: 22px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .header__logo a:hover img {
    opacity: 0.6;
  }
}

.header__nav {
  background-color: #3ea1d1;
  display: block;
  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;
  width: 270px;
  height: calc(100% - 60px);
  position: fixed;
  right: 0;
  top: 60px;
  gap: 32px;
  padding-top: 40px;
  padding-right: 15px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    background-color: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: -webkit-transform 0s;
    transition: -webkit-transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 46px;
    font-weight: 300;
  }
  .header__nav .header__link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__nav .header__link:hover {
    color: #3ea1d1;
  }
}

.header__link {
  color: #fff;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .header__link {
    color: #333333;
    font-size: 16px;
  }
}

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

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 9px;
  -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: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #3ea1d1;
  left: 0;
  -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;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 16px;
}

/*--------------------------
// fv
--------------------------*/
.fv__content {
  position: relative;
}

@media screen and (min-width: 768px) {
  .fv__img {
    max-width: 990px;
    margin-left: auto;
    display: block;
  }
}
.fv__description {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .fv__description {
    position: absolute;
    margin-top: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    padding: 80px 40px;
    background-color: #fff;
  }
}

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

.fv__text {
  margin-top: 16px;
  font-weight: 300;
}

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

.concept_content {
  margin-top: 46px;
}
@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;
}
@media screen and (min-width: 768px) {
  .concept__img {
    width: 50%;
  }
}
.concept__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .concept__img img {
    width: 600px;
  }
}

@media screen and (min-width: 768px) {
  .concept__text {
    width: 43.3333333333%;
  }
}

.concept__text--main {
  margin-top: 34px;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept__text--main {
    margin-top: 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .concept__text--main {
    font-size: 20px;
  }
}

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

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

@media screen and (min-width: 768px) {
  .feature__title {
    font-size: 40px;
  }
}

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

.feature__content {
  background: #fff;
  -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);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .feature__content {
    margin-top: 64px;
  }
}

.feature__img {
  text-align: center;
}
.feature__img img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .feature__img img {
    width: 340px;
  }
}
.feature__img:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.feature__text {
  padding: 26px 0;
  text-align: center;
}

.feature__description {
  font-weight: 600;
}

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

.about__content {
  position: relative;
}

.about__img {
  text-align: center;
  width: 100%;
}
.about__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
}

.about__text-container {
  color: #fff;
  padding-inline: 15px;
  text-align: left;
  position: absolute;
  top: 180px;
}
@media screen and (min-width: 768px) {
  .about__text-container {
    padding-left: 40px;
    padding-right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 50%;
  }
}

.about__text-title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 600px) {
  .about__text-title {
    font-size: 23px;
  }
}
@media screen and (min-width: 768px) {
  .about__text-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .about__text-title {
    font-size: 22px;
  }
}

.about__text-description {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 600px) {
  .about__text-description {
    font-size: 17px;
  }
}
@media screen and (min-width: 768px) {
  .about__text-description {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .about__text-description {
    font-size: 16px;
  }
}

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

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

.products__inner {
  padding-inline: 56px;
}
@media screen and (min-width: 768px) {
  .products__inner {
    padding-inline: 170px;
  }
}

.products__box {
  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: 40px;
}
@media screen and (min-width: 768px) {
  .products__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    margin-top: 64px;
  }
}
@media screen and (min-width: 900px) {
  .products__box {
    gap: 80px;
  }
}

.products__content {
  overflow: hidden;
}

.products__img {
  text-align: center;
}
.products__img img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .products__img img {
    width: 260px;
  }
}
.products__img:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.products__text-container {
  margin-top: 20px;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .products__text-container {
    margin-top: 18px;
  }
}

.products__text-description {
  font-size: 14px;
}

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

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

/*--------------------------
// news
--------------------------*/
.news {
  margin-top: 96px;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .news {
    margin-top: 160px;
  }
}

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

.news__box {
  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;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news__box {
    margin-top: 64px;
    gap: 24px;
  }
}

.news__content {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 28px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .news__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    padding-bottom: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .news__content:hover .news__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.news__img {
  text-align: center;
}
.news__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__img img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    max-width: 260px;
  }
}

.news__text-container {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__text-container {
    margin-top: 0;
    max-width: 736px;
  }
}

.news__text-time {
  font-size: 14px;
}

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

.news__text-description {
  margin-top: 14px;
  font-size: 14px;
  color: #888888;
}
@media screen and (min-width: 768px) {
  .news__text-description {
    margin-top: 10px;
  }
}

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

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

.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 {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept-2__img {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.concept-2__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .concept-2__img img {
    width: 600px;
  }
}

@media screen and (min-width: 768px) {
  .concept-2__text-container {
    width: 43.3333333333%;
  }
}

.concept-2__text-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept-2__text-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .concept-2__text-title {
    font-size: 28px;
  }
}

.concept-2__text-description {
  margin-top: 22px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .concept-2__text-description {
    margin-top: 36px;
    font-size: 16px;
  }
}

/*--------------------------
// contact
--------------------------*/
.contact {
  margin-top: 96px;
  background: url(../img/contact_pc.png) no-repeat center center/cover;
  padding-block: 56px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 160px;
    padding-block: 80px;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 590px;
    width: 100%;
  }
}

.contact__title {
  color: #3ea1d1;
}

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

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

.logo-color {
  color: #e7728e;
}

.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;
  }
}

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

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

.form-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #3ea1d1;
  opacity: 0.7;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px;
}
@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-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-label__logo-color {
  color: #e7728e;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-label__logo-color {
    font-size: 12px;
  }
}

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

.form-text {
  width: 100%;
  height: 40px;
  border: 0;
  font-size: 16px;
  background: #fff;
  -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: 2px solid #3ea1d1;
  -webkit-box-shadow: 0 0 0 3px rgba(62, 161, 209, 0.5);
          box-shadow: 0 0 0 3px rgba(62, 161, 209, 0.5);
}

.item-field__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: #fff;
}

.form-radio__text {
  font-size: 16px;
  color: #3ea1d1;
  letter-spacing: 0.026px;
  border: 1px solid #fff;
  background: #fff;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}
.form-radio__text:focus {
  outline: 2px solid #3ea1d1;
  -webkit-box-shadow: 0 0 0 3px rgba(62, 161, 209, 0.5);
          box-shadow: 0 0 0 3px rgba(62, 161, 209, 0.5);
}

.form-textarea {
  width: 100%;
  height: 40px;
  border: 0;
  font-size: 16px;
  background: #fff;
  -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);
  resize: vertical;
}
.form-textarea:focus {
  outline: 2px solid #3ea1d1;
  -webkit-box-shadow: 0 0 0 3px rgba(62, 161, 209, 0.5);
          box-shadow: 0 0 0 3px rgba(62, 161, 209, 0.5);
}

.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: 2px solid #3ea1d1;
  -webkit-box-shadow: 0 0 0 3px rgba(62, 161, 209, 0.5);
          box-shadow: 0 0 0 3px rgba(62, 161, 209, 0.5);
}

.form-checkbox__text {
  font-size: 16px;
  padding-left: 30px;
  position: relative;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #3ea1d1;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background: #fff;
  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;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-top: 44px;
  }
}

.button {
  background-color: #fff;
}

/*--------------------------
// footer
--------------------------*/
.footer {
  padding-top: 40px;
  background: #f7f7f7;
}

.footer__inner {
  text-align: center;
}

.footer__logo img {
  max-width: 120px;
}
@media screen and (min-width: 768px) {
  .footer__logo img:hover {
    opacity: 0.6;
  }
}

.footer__text-container {
  padding-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__text-container {
    -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__text-privacy {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer__text-privacy:hover {
    opacity: 0.6;
  }
}

.footer__text-description {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer__text-description:hover {
    opacity: 0.6;
  }
}

.footer__sns-box {
  margin-top: 18px;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .footer__sns-box {
    margin-top: 20px;
    margin-bottom: 28px;
  }
}

.footer__sns-link img {
  width: 21px;
  height: 21px;
}
@media screen and (min-width: 768px) {
  .footer__sns-link img:hover {
    opacity: 0.6;
  }
}

.footer__copyright {
  color: #888;
  font-size: 12px;
  padding-bottom: 7px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-bottom: 14px;
  }
}