@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 160px;
  }
}

/*ーーーーーーーーーー
common
ーーーーーーーーーー*/
body {
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.7;
  position: relative;
}
body.no-move {
  overflow: hidden;
}
body.fixed {
  overflow: hidden;
}

.title {
  padding-bottom: 28px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .title {
    padding-bottom: 25px;
  }
}
.title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 60px;
  height: 2px;
  background-color: #3ea1d1;
}

.title__text {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
.title__text-blue {
  color: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .title__text {
    font-size: 40px;
  }
}

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

.button {
  border: 1px solid #3ea1d1;
  background-color: #fff;
  margin: 0 auto;
  text-align: center;
  width: 158px;
  height: 48px;
  display: block;
}
.button:hover {
  background-color: #3ea1d1;
  -webkit-transition: background-color linear 0.5s, color linear 0.5s;
  transition: background-color linear 0.5s, color linear 0.5s;
}
.button:hover .button__text {
  color: #fefefe;
}

.button__text {
  color: #3ea1d1;
  font-size: 14px;
  letter-spacing: 0.02px;
}

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

/*ーーーーーーーーーー
header
ーーーーーーーーーー*/
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-block: 19px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    width: 100%;
    padding-block: 22px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__logo {
    margin-top: 2px;
  }
}
.header__logo a img {
  display: block;
  width: 120px;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    -webkit-transition: opacity linear 0.3s;
    transition: opacity linear 0.3s;
  }
  .header__logo a: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__item {
  -webkit-transition: color linear 0.3s;
  transition: color linear 0.3s;
}
.header__nav__item:hover {
  color: #3ea1d1;
}

.header__open {
  position: relative;
  width: 30px;
  height: 18px;
  margin-top: 2px;
}
.header__open.is-checked .drawer-icon:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}
.header__open.is-checked .drawer-icon:nth-child(2) {
  display: none;
  top: 8px;
}
.header__open.is-checked .drawer-icon:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}
@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #3ea1d1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.drawer-icon:nth-child(2) {
  top: 8px;
}
.drawer-icon:nth-child(3) {
  top: 16px;
}

/*ーーーーーーーーーー
drawer
ーーーーーーーーーー*/
.drawer-content {
  z-index: 50;
  background: #3ea1d1;
  width: 270px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 60px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s linear;
  transition: all 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__nav {
  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: 16px;
  padding: 32px 15px;
}

.drawer-content__item {
  display: inline-block;
  padding-block: 8px;
  color: #fff;
  font-size: 18px;
}

/*ーーーーーーーーーー
first view
ーーーーーーーーーー*/
.fv__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__picture {
    width: 82.5%;
    min-width: 600px;
    margin-left: auto;
    display: block;
  }
}
.fv__picture img {
  width: 100%;
}

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

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

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

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

.concept__container {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .concept__container {
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.6666666667%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

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

.concept__text__main {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept__text__main {
    font-size: 18px;
  }
}
@media screen and (min-width: 960px) {
  .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: 95px;
}
@media screen and (min-width: 768px) {
  .feature {
    margin-top: 160px;
  }
}

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

.feature__items__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);
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .feature__items__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.feature__items__item__img {
  text-align: center;
}
.feature__items__item__img img {
  width: 100%;
}

.feature__items__item__text-box {
  margin-block: 26px;
  text-align: center;
}

.feature__items__item__text {
  font-weight: 600;
}

/*ーーーーーーーーーー
mein view
ーーーーーーーーーー*/
.mv {
  background: url("../img/mvbg-sp.png") no-repeat top center/cover;
  margin-top: 96px;
}
@media screen and (min-width: 768px) {
  .mv {
    background-image: url("../img/mvbg-pc.png");
    margin-top: 160px;
  }
}

.mv__inner {
  background-color: rgba(0, 0, 0, 0.12);
}
.mv__text-box {
  padding-block: 180px 50px;
}
@media screen and (min-width: 768px) {
  .mv__text-box {
    width: 50%;
    padding-block: 123px 122px;
  }
}

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

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

/*ーーーーーーーーーー
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 {
    margin: 0px auto;
    max-width: 1020px;
    padding-inline: 40px;
  }
}

.products__items {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .products__items {
    margin-top: 63px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 960px) {
  .products__items {
    gap: 80px;
  }
}

.products__item {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .products__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .products__item:hover .products__item__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.products__item__img {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .products__item__img {
    overflow: hidden;
  }
  .products__item__img img {
    -webkit-transition: -webkit-transform linear 1s;
    transition: -webkit-transform linear 1s;
    transition: transform linear 1s;
    transition: transform linear 1s, -webkit-transform linear 1s;
  }
}
.products__item__text {
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .products__item__text {
    margin-top: 19px;
  }
}

.products__item__price {
  color: #989898;
  font-size: 14px;
  margin-top: 11px;
}

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

/*ーーーーーーーーーー
news
ーーーーーーーーーー*/
.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: 0px auto;
  }
}

.news__items {
  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;
}
@media screen and (min-width: 768px) {
  .news__items {
    margin-top: 62px;
    gap: 23px;
    max-width: 1300px;
  }
}

.news__item {
  display: block;
  padding-bottom: 28px;
  border-bottom: solid 1px #e0e0e0;
  max-width: 400px;
  margin: 0px auto;
}
@media screen and (min-width: 768px) {
  .news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
    padding-bottom: 24px;
    min-height: 184px;
    margin: 0;
    max-width: none;
  }
  .news__item:hover .news__item__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.news__item__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__item__img {
    width: 260px;
    overflow: hidden;
  }
  .news__item__img img {
    -webkit-transition: -webkit-transform linear 0.5s;
    transition: -webkit-transform linear 0.5s;
    transition: transform linear 0.5s;
    transition: transform linear 0.5s, -webkit-transform linear 0.5s;
  }
}
.news__item__text__area {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .news__item__text__area {
    margin-top: 0;
    margin-right: 4px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.news__item__day {
  display: block;
  font-size: 14px;
}

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

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

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

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

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

.cta__container {
  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) {
  .cta__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 960px) {
  .cta__container {
    gap: 80px;
  }
}

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

@media screen and (min-width: 768px) {
  .cta__text__area {
    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;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.cta__text__main {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .cta__text__main {
    font-size: 22px;
  }
}
@media screen and (min-width: 960px) {
  .cta__text__main {
    font-size: 28px;
  }
}

.cta__text__sub {
  font-size: 14px;
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .cta__text__sub {
    font-size: 16px;
    margin-top: 36px;
    line-height: 1.7;
  }
}

/*ーーーーーーーーーー
contact
ーーーーーーーーーー*/
.contact {
  background: url(../img/contact_bg-sp.png) no-repeat center center/cover;
  margin-top: 96px;
}
@media screen and (min-width: 768px) {
  .contact {
    background: url(../img/contact_bg-pc.png) no-repeat center center/cover;
    margin-top: 160px;
  }
}

.contact__inner {
  padding-top: 57px;
  padding-bottom: 56px;
  max-width: 400px;
  margin: 0px auto;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding-block: 78px;
    max-width: 590px;
    margin: 0 auto;
  }
}

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

.field__guide {
  text-align: center;
  margin-left: 3px;
}

.field__guide__text {
  font-size: 14px;
  font-weight: 600;
}
.field__guide__text span {
  color: #e7728e;
}

.field__forms {
  margin-top: 27px;
  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) {
  .field__forms {
    margin-top: 19px;
  }
}

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

.form__label {
  background: rgba(62, 161, 209, 0.7);
  padding: 3px 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .form__label {
    display: block;
    width: 180px;
    height: 40px;
    -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%);
    opacity: 1;
    text-align: center;
    padding: 5px 0px 4px;
  }
}

.form__label-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form__label-text {
    font-size: 18px;
  }
}
.form__label-text span {
  color: #e7728e;
  font-size: 10px;
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  .form__label-text span {
    font-size: 12px;
  }
}

.form__item-text {
  width: 100%;
  height: 39px;
  border: 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__item-text:focus {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.5);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.5);
}
@media screen and (min-width: 768px) {
  .form__item-text {
    width: 320px;
    height: 40px;
  }
}

.form__item__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;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text {
  background-color: #3ea1d1;
  color: #fff;
}
.form-radio__input:focus + .form-radio__text {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.5);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.5);
}

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

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

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

.form__checkbox {
  position: relative;
}

.form__checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(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;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.5);
          box-shadow: 5px 6px 16px 0px rgba(62, 161, 209, 0.5);
}

.form__checkbox-text {
  padding-left: 30px;
}
.form__checkbox-text a {
  color: #3ea1d1;
  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;
  border-radius: 1px;
  border: 1px solid #3ea1d1;
  background: #fff;
}
.form__checkbox-text::after {
  opacity: 0;
  background: url(../img/check-icon.png) no-repeat center center/contain;
  width: 19.414px;
  height: 14.621px;
  left: 1.29px;
}

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

/*ーーーーーーーーーー
footer
ーーーーーーーーーー*/
.footer {
  padding-block: 40px 7px;
  background: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 14px;
  }
}

.footer__logo a img {
  width: 120px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo a img {
    -webkit-transition: opacity linear 0.3s;
    transition: opacity linear 0.3s;
  }
  .footer__logo a img:hover {
    opacity: 0.6;
  }
}

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

.footer__menu-item {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .footer__menu-link {
    -webkit-transition: opacity linear 0.3s;
    transition: opacity linear 0.3s;
  }
  .footer__menu-link:hover {
    opacity: 0.6;
  }
}

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

@media screen and (min-width: 768px) {
  .footer__sns-link {
    -webkit-transition: opacity linear 0.3s;
    transition: opacity linear 0.3s;
  }
  .footer__sns-link:hover {
    opacity: 0.6;
  }
}

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