@charset "UTF-8";
/*===========================================
  共通設定
===========================================*/
html {
  scroll-behavior: smooth;
}

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

/*===========================================
  共通クラス
===========================================*/
.inner {
  padding-left: clamp(0.9375rem, -0.561rem + 6.38vw, 2.5rem); /* Min:15px(376px), Max:40px(768px) */
  padding-right: clamp(0.9375rem, -0.561rem + 6.38vw, 2.5rem); /* Min:15px(376px), Max:40px(768px) */
}
@media screen and (min-width: 769px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

.section-title {
  margin-bottom: 74px;
  font-size: clamp(1.75rem, 1.023rem + 3.64vw, 1.875rem); /* Min:28px(320px), Max:30px(375px) */
  font-weight: 600;
  line-height: 1;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .section-title {
    margin-bottom: 88px;
    font-size: clamp(2.25rem, 1.874rem + 0.785vw, 2.5rem); /* Min:36px(769px), Max:40px(1280px) */
  }
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #3EA1D1;
}
@media screen and (min-width: 769px) {
  .section-title::after {
    bottom: -24px;
  }
}

.section-title-l {
  color: #3EA1D1;
}

.button {
  display: inline-block;
  padding: 12px 4px;
  text-align: center;
  width: 158px;
  border: 1px solid #3EA1D1;
  color: #3EA1D1;
  background: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02px;
}
@media screen and (min-width: 769px) {
  .button {
    -webkit-transition: color 0.3s, background 0.3s;
    transition: color 0.3s, background 0.3s;
  }
  .button:hover {
    background: #3EA1D1;
    color: #fff;
  }
}

/*===========================================
  header
===========================================*/
.header {
  padding-top: 19px;
  padding-bottom: 19px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 769px) {
  .header {
    padding-top: 22px;
    padding-bottom: 21px;
  }
}
.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;
}
@media screen and (min-width: 769px) {
  .header__logo-link:hover {
    opacity: 0.6;
  }
}
.header__logo img {
  display: block;
  width: 120px;
}
.header__nav-list {
  display: none;
}
@media screen and (min-width: 769px) {
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(1.875rem, 0.37rem + 3.13vw, 2.875rem); /* Min:30px(769px), Max:46px(1280px) */
  }
}
@media screen and (min-width: 769px) {
  .header__nav-item {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__nav-item:hover {
    color: #3EA1D1;
  }
}
.header__nav-link {
  display: block;
  font-weight: 300;
}

/*===========================================
  drawer
===========================================*/
.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
  z-index: 51;
}
@media screen and (min-width: 769px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar {
  background: #3EA1D1;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 8px;
  -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;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #3EA1D1;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 16px;
}

.drawer-content {
  width: 72%;
  height: 100%;
  position: fixed;
  top: 60px;
  right: 0;
  background: #3EA1D1;
  z-index: 50;
  padding-top: 40px;
  padding-right: 15px;
  -webkit-transform: translateX(100vh);
          transform: translateX(100vh);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, visibility 0s linear 0.7s, -webkit-transform 0.7s ease;
  transition: opacity 0.6s ease, visibility 0s linear 0.7s, -webkit-transform 0.7s ease;
  transition: transform 0.7s ease, opacity 0.6s ease, visibility 0s linear 0.7s;
  transition: transform 0.7s ease, opacity 0.6s ease, visibility 0s linear 0.7s, -webkit-transform 0.7s ease;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.6s ease, visibility 0s linear 0s, -webkit-transform 0.7s ease;
  transition: opacity 0.6s ease, visibility 0s linear 0s, -webkit-transform 0.7s ease;
  transition: transform 0.7s ease, opacity 0.6s ease, visibility 0s linear 0s;
  transition: transform 0.7s ease, opacity 0.6s ease, visibility 0s linear 0s, -webkit-transform 0.7s ease;
}
.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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.drawer-content__link {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}

/*===========================================
  fv
===========================================*/
.fv {
  padding-top: 60px;
  margin-bottom: 95px;
}
@media screen and (min-width: 769px) {
  .fv {
    padding-top: 70px;
    margin-bottom: 160px;
  }
}
.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  .fv__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: relative;
  }
}
.fv__picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.fv__picture img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 769px) {
  .fv__picture img {
    width: 82.5%;
  }
}
.fv__copy {
  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;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .fv__copy {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 80px 40px;
  }
}
.fv__copy-main {
  font-size: clamp(1.375rem, -0.08rem + 7.27vw, 1.625rem); /* Min:22px(320px), Max:26px(375px) */
  font-weight: 600;
  line-height: 1.6925;
}
.fv__copy-sub {
  font-size: clamp(0.875rem, 0.148rem + 3.64vw, 1rem); /* Min:14px(320px), Max:16px(375px) */
  font-weight: 300;
  line-height: 1.688;
}

/*===========================================
  concept
===========================================*/
.concept {
  margin-bottom: 95px;
  scroll-margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .concept {
    margin-bottom: 160px;
    scroll-margin-top: 70px;
  }
}
.concept__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
}
@media screen and (min-width: 769px) {
  .concept__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1.25rem, -4.393rem + 11.74vw, 5rem); /* Min:20px(769px), Max:80px(1280px) */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.concept__img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .concept__img {
    margin: 0;
    width: 50%;
  }
}
.concept__img img {
  display: block;
  width: 100%;
}
.concept__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 769px) {
  .concept__copy {
    width: calc(50% - clamp(1.25rem, -4.393rem + 11.74vw, 5rem)); /* 100% - 50%(img) - gap */
    gap: clamp(1.25rem, -0.631rem + 3.91vw, 2.5rem); /* Min:20px(769px), Max:40px(1280px) */
  }
}
.concept__copy-main {
  font-size: clamp(1.125rem, 0.398rem + 3.64vw, 1.25rem); /* Min:18px(320px), Max:20px(375px) */
  font-weight: 600;
}
.concept__copy-sub {
  font-size: clamp(0.875rem, 0.148rem + 3.64vw, 1rem); /* Min:14px(320px), Max:16px(375px) */
  font-weight: 300;
  line-height: 1.688;
}

/*===========================================
  feature
===========================================*/
.feature {
  margin-bottom: 95px;
  scroll-margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .feature {
    margin-bottom: 160px;
    scroll-margin-top: 70px;
  }
}
.feature__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: 50px;
}
@media screen and (min-width: 769px) {
  .feature__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1.25rem, -5.334rem + 13.7vw, 5.625rem); /* Min:20px(769px), Max:90px(1280px) */
  }
}
.feature__item {
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  -webkit-box-shadow: 3px 3px 15px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0 rgba(96, 96, 96, 0.16);
}
.feature-item__img img {
  display: block;
  width: 100%;
}
.feature-item__text {
  text-align: center;
  padding-top: 26px;
  padding-bottom: 26px;
  font-size: clamp(0.875rem, 0.148rem + 3.64vw, 1rem); /* Min:14px(320px), Max:16px(375px) */
  font-weight: 600;
  line-height: 1.688;
}

/*===========================================
  question
===========================================*/
.question {
  background: url(../img/sp/question-bg-sp.png) no-repeat center 10%/cover;
  padding-top: 180px;
  padding-bottom: 50px;
  margin-bottom: 96px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .question {
    background: url(../img/question-bg-pc.png) no-repeat center center/cover;
    padding-top: 123px;
    padding-bottom: 122px;
    margin-bottom: 160px;
  }
}
.question::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
}
.question__inner {
  position: relative;
  z-index: 1;
}
.question__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  color: #fff;
}
.question__copy-main {
  font-size: clamp(1.0625rem, -0.028rem + 5.45vw, 1.25rem); /* Min:17px(320px), Max:20px(375px) */
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .question__copy-main {
    font-size: 22px;
    line-height: 1.682;
  }
}
.question__copy-sub {
  font-size: clamp(0.8125rem, 0.4485rem + 1.82vw, 0.875rem); /* Min:13px(320px), Max:14px(375px) */
  font-weight: 600;
  line-height: 1.71429;
}
@media screen and (min-width: 769px) {
  .question__copy-sub {
    font-size: 16px;
    line-height: 1.688;
  }
}

/*===========================================
  products
===========================================*/
.products {
  margin-bottom: 96px;
  scroll-margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .products {
    margin-bottom: 160px;
    scroll-margin-top: 70px;
  }
}
@media screen and (min-width: 769px) {
  .products__inner {
    max-width: 1020px;
  }
}
.products__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: 40px;
}
@media screen and (min-width: 769px) {
  .products__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1.25rem, -4.393rem + 11.745vw, 5rem); /* Min:20px(769px), Max:80px(1280px) */
  }
}
.products__item {
  max-width: 263px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.products__button {
  margin-top: 42px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .products__button {
    margin-top: 44px;
  }
}

.products-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .products-item__link {
    gap: 18px;
    max-width: 260px;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  }
  .products-item__link:hover .products-item__img img {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
}
.products-item__img img {
  display: block;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.products-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.products-item__title {
  font-size: 14px;
  font-weight: 300;
}
.products-item__price {
  color: #989898;
  font-size: 14px;
  font-weight: 300;
}

/*===========================================
  news
===========================================*/
.news {
  margin-bottom: 95px;
  scroll-margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .news {
    margin-bottom: 160px;
    scroll-margin-top: 70px;
  }
}
@media screen and (min-width: 769px) {
  .news__inner {
    max-width: 1120px;
  }
}
.news__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: 28px;
}
@media screen and (min-width: 769px) {
  .news__list {
    gap: 24px;
  }
}
.news__item {
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .news__item {
    max-width: none;
    width: 100%;
  }
}
.news__button {
  margin-top: 42px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .news__button {
    margin-top: 44px;
  }
}

.news-item {
  padding-bottom: 28px;
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (min-width: 769px) {
  .news-item {
    padding-bottom: 24px;
  }
}
.news-item__link {
  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;
}
@media screen and (min-width: 769px) {
  .news-item__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1.25rem, -0.631rem + 3.915vw, 2.5rem); /* Min:20px(769px), Max:40px(1280px) */
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  }
  .news-item__link:hover .news-item__img img {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 769px) {
  .news-item__img {
    width: 260px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.news-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.news-item__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .news-item__contents {
    gap: 16px;
  }
}
.news-item__date {
  font-size: 14px;
  font-weight: 300;
}
.news-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 769px) {
  .news-item__text {
    gap: 10px;
  }
}
.news-item__title {
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .news-item__title {
    font-size: 18px;
  }
}
.news-item__description {
  color: #888;
  font-size: 14px;
  font-weight: 300;
}

/*===========================================
  motto
===========================================*/
.motto {
  margin-bottom: 96px;
}
@media screen and (min-width: 769px) {
  .motto {
    margin-bottom: 160px;
  }
}
.motto__inner {
  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: 769px) {
  .motto__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: clamp(1.25rem, -4.393rem + 11.745vw, 5rem); /* Min:20px(769px), Max:80px(1280px) */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 769px) {
  .motto__img {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.motto__img img {
  display: block;
  width: 100%;
}
.motto__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 769px) {
  .motto__copy {
    gap: 36px;
    width: calc(50% - clamp(1.25rem, -4.393rem + 11.745vw, 5rem)); /* 100% - 50% - gap */
  }
}
.motto__copy-main {
  font-size: clamp(1.125rem, 0.398rem + 3.64vw, 1.25rem); /* Min:18px(320px), Max:20px(375px) */
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .motto__copy-main {
    font-size: clamp(1.5rem, 1.124rem + 0.785vw, 1.75rem); /* Min:24px(769px), Max:28px(1280px) */
  }
}
.motto__copy-sub {
  font-size: clamp(0.813rem, 0.449rem + 1.82vw, 0.875rem); /* Min:13px(320px), Max:14px(375px) */
  font-weight: 300;
}
@media screen and (min-width: 769px) {
  .motto__copy-sub {
    font-size: clamp(0.875rem, 0.687rem + 0.395vw, 1rem); /* Min:14px(769px), Max:16px(1280px) */
  }
}

/*===========================================
  contact
===========================================*/
.contact {
  padding-block: 56px;
  background: url(../img/contact_bg.jpg) no-repeat center center/cover;
  scroll-margin-top: 4px;
}
@media screen and (min-width: 769px) {
  .contact {
    padding-block: 80px;
    scroll-margin-top: -10px;
  }
}
@media screen and (min-width: 769px) {
  .contact__inner {
    max-width: 590px;
  }
}
.contact__text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.contact__text .is-required {
  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: 769px) {
  .contact__items {
    margin-top: 19px;
  }
}
.contact__footer {
  margin-top: 28px;
}
@media screen and (min-width: 769px) {
  .contact__footer {
    margin-top: 32px;
  }
}
.contact__privacy {
  text-align: center;
}
.contact__submit {
  margin-top: 23px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contact__submit {
    margin-top: 44px;
  }
}

.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: 769px) {
  .contact-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
@media screen and (min-width: 769px) {
  .contact-control__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 769px) {
  .contact-control__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.contact-control__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: rgba(62, 161, 209, 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: 769px) {
  .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%);
  }
}
.form-label__required {
  color: #E7728E;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .form-label__required {
    font-size: 12px;
  }
}

.form-text {
  width: 100%;
  height: 40px;
  border: 0;
  font-size: 16px;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
}
@media screen and (min-width: 769px) {
  .form-text:hover, .form-text:focus {
    border: 2px solid #3EA1D1;
    outline: none;
  }
}

.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__text {
  color: #3EA1D1;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.026px;
  border: 1px solid #fff;
  background: #fff;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.form-textarea {
  width: 100%;
  height: 122px;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
  resize: vertical;
  font-size: 16px;
  border: 0;
}
@media screen and (min-width: 769px) {
  .form-textarea:hover, .form-textarea:focus {
    border: 2px solid #3EA1D1;
    outline: none;
  }
}

.form-checkbox {
  position: relative;
  cursor: pointer;
}
.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__text {
  font-size: clamp(0.938rem, 0.574rem + 1.82vw, 1rem); /* Min:15px(320px), Max:16px(375px) */
  padding-left: 30px;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #3EA1D1;
}
.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: #fff;
  border: 1px solid #3EA1D1;
}
.form-checkbox__text::after {
  opacity: 0;
  width: 19.414px;
  height: 14.621px;
  left: 1.29px;
  background: url(../img/checkbox-icon.png) no-repeat center center/contain;
}

/*===========================================
  footer
===========================================*/
.footer {
  padding-block: 40px 10px;
}
@media screen and (min-width: 769px) {
  .footer {
    padding-bottom: 14px;
  }
}
.footer__contents {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .footer__logo-link:hover {
    opacity: 0.6;
  }
}
.footer__logo {
  margin-inline: auto;
  width: 120px;
}
.footer__logo img {
  display: block;
  width: 100%;
}
.footer__text-box {
  margin-top: 22px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  .footer__text-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
.footer__text {
  font-size: 12px;
  font-weight: 300;
}
.footer__sns {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 769px) {
  .footer__sns {
    margin-top: 20px;
  }
}
.footer__sns a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__sns a:hover {
  opacity: 0.6;
}
.footer__copyright {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 300;
  color: #888;
}
@media screen and (min-width: 769px) {
  .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);
}