@charset "UTF-8";
/* 定数
******s******************************/
/* フォントファミリー */
/* フォント */
/* カラー */
/* コンテンツ幅 */
/* メディアクエリ
************************************/
/* 共通設定
************************************/
body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  font-weight: 300;
}

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

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

.section-heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  position: relative;
}
.section-heading--contact {
  color: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .section-heading {
    font-size: 40px;
  }
}
.section-heading::after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #3ea1d1;
  position: absolute;
  top: 57px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .section-heading::after {
    top: 63px;
  }
}

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

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

.text-inline {
  display: inline-block;
}

/* header
************************************/
.header {
  position: fixed;
  width: 100%; /* fixedで要素が浮いたので明示的に幅指定 */
  z-index: 1;
}

.header__inner {
  height: 60px;
  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: 768px) {
  .header__inner {
    height: 70px;
  }
}

.header__logo {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__logo:hover {
  opacity: 0.6;
}
.header__logo a img {
  width: 120px;
  display: block;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 46px;
  }
}

.header__nav__link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__nav__link:hover {
  color: #3ea1d1;
}

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

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
  /* ドロワーアイコンがクリックされたら✕印にする */
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 8px;
  -webkit-transform: rotate(44.89deg);
          transform: rotate(44.89deg);
}
.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(-44.89deg);
          transform: rotate(-44.89deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #3ea1d1;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 16px;
}

/* ドロワー
************************************/
/* ドロワー */
.drawer-content {
  position: fixed;
  top: 60px;
  right: 0;
  background: #3ea1d1;
  z-index: 50;
  width: 270px;
  height: 100vh;
  height: 100dvh; /* アドレスバーを除いた実際の表示領域の高さ */
  padding: 40px 15px;
  -webkit-transform: translateX(100%);
          transform: translateX(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;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0); /* ドロワー表示 */
}

.drawer-content__menu {
  text-align: right;
}

.drawer-content__link {
  display: block;
  color: #fff;
  font-size: 18px;
}
.drawer-content__link:nth-child(n+2) {
  margin-top: 32px;
}

/* main
************************************/
.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 95px;
}
@media screen and (min-width: 768px) {
  .main {
    gap: 160px;
  }
}

/* mv
************************************/
.fv {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-top: 70px;
  }
}

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

.fv__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__image {
    /* 1280px以降：最大サイズ固定 */
    max-width: 990px;
    margin-left: auto; /* 右寄せ */
  }
}
@media screen and (min-width: 768px) {
  .fv__image picture img {
    width: 990px;
    height: auto;
  }
}

.fv__text {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .fv__text {
    margin-top: 0;
    padding: 80px 40px 80px 0px;
    background: #fff;
    width: 327px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
}

.fv__text-main {
  font-size: 26px;
  font-weight: 600;
}

.fv__text-sub {
  margin-top: 16px;
}

/* Concept
************************************/
.concept__content {
  margin-top: 74px;
  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: 768px) {
  .concept__content {
    margin-top: 90px;
    -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: 80px;
  }
}

.concept__img {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 600px;
            flex: 1 1 600px; /* 基本600pxで拡縮あり */
  }
}
@media screen and (min-width: 768px) {
  .concept__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 520px;
            flex: 1 1 520px; /* 基本520pxで拡縮あり */
  }
}

.concept__text-main {
  font-size: 20px;
  font-weight: 600;
}

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

/* Feature
************************************/
.feature__content {
  margin-top: 74px;
}
@media screen and (min-width: 768px) {
  .feature__content {
    margin-top: 88px;
  }
}

.feature__cards {
  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: 768px) {
  .feature__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(40px, 40px + 50 * (100dvw - 768px) / 512, 90px);
  }
}

.feature__card {
  -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-card__img {
  text-align: center;
}
.feature-card__textarea {
  text-align: center;
  padding-top: 26px;
  padding-bottom: 26px;
}

.feature-card__text {
  font-weight: 600;
}

/* question
************************************/
.question {
  background: url(../img/question_bg_sp.jpg) no-repeat center top/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .question {
    background: url(../img/question_bg_pc.jpg) no-repeat center top/cover;
  }
}

.question__mask-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.12);
  inset: 0; /* 上下左右0 -> 親要素のサイズに追従 */
  z-index: 1;
}

.question__inner {
  padding-top: 180px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .question__inner {
    padding-top: 123px;
    padding-bottom: 122px;
  }
}

.question__content {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  color: #fff;
}

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

.question__text-sub {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .question__text-sub {
    font-size: 16px;
    margin-top: 22px;
  }
}

/* Products
************************************/
.products {
  margin-top: 2px;
}

.products__inner {
  padding-left: 56px;
  padding-right: 56px;
}
@media screen and (min-width: 768px) {
  .products__inner {
    padding-left: 170px;
    padding-right: 170px;
    padding-left: 13.28125%;
    padding-right: 13.28125%;
    /* 画面幅が大きいときに端にいきすぎないように最大幅を定義 */
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.products__content {
  padding-top: 74px;
}
@media screen and (min-width: 768px) {
  .products__content {
    padding-top: 88px;
  }
}

.products__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .products__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    gap: clamp(40px, 40px + 40 * (100dvw - 768px) / 512, 80px);
  }
}

.products__card {
  display: block;
}
@media screen and (min-width: 768px) {
  .products__card {
    max-width: 260px;
  }
}

.products__card-img {
  text-align: center;
  overflow: hidden;
}
.products__card-img img {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.products__card-img img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.products__card-text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .products__card-text {
    margin-top: 18px;
  }
}

.card-text__title {
  font-size: 14px;
}

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

.products__button {
  margin-top: 42px;
  text-align: center;
}

/* News
************************************/
.news {
  margin-top: 2px;
}

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

.news__content {
  margin-top: 73px;
}
@media screen and (min-width: 768px) {
  .news__content {
    margin-top: 86px;
  }
}

.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: 26px;
}
@media screen and (min-width: 768px) {
  .news__list {
    gap: 22px;
  }
}

.news-link {
  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: 13px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (min-width: 768px) {
  .news-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 40px;
    padding-bottom: 24px;
  }
}

.news-link__img {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news-link__img {
    width: 260px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.news-link__img img {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.news-link__img img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-link__time {
  font-size: 14px;
}

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

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

@media screen and (min-width: 768px) {
  .line-clamp-2 {
    display: -webkit-box; /* ボックス表示に */
    -webkit-box-orient: vertical; /* 垂直方向にレイアウト */
    -webkit-line-clamp: 2; /* 最大2行に制限 */
    overflow: hidden; /* はみ出した部分は非表示 */
    text-overflow: ellipsis; /* 省略記号「…」を付ける（任意） */
  }
}

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

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

.motto__img {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .motto__img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 600px;
            flex: 1 1 600px;
  }
}
@media screen and (min-width: 768px) {
  .motto__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 520px;
            flex: 1 1 520px;
  }
}

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

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

/* Contact
************************************/
.contact {
  background: url(../img/contact_bg_sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .contact {
    background: url(../img/contact_bg_pc.jpg) no-repeat center center/cover;
  }
}

.contact__inner {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 590px;
  }
}

.contact__content {
  margin-top: 75px;
}
@media screen and (min-width: 768px) {
  .contact__content {
    margin-top: 88px;
  }
}

.contact__text {
  text-align: center;
}

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

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

.form-field__head {
  background-color: #3ea1d1;
  opacity: 0.7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 180px;
            flex: 1 1 180px;
    max-width: 180px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 40px;
    clip-path: polygon(0 0, calc(100% - 5.5px) 0, 100% 50%, calc(100% - 5.5px) 100%, 0 100%);
  }
}

.form-field__label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    font-size: 18px;
  }
}

.form-field__tag {
  font-size: 10px;
  font-weight: 600;
  color: #e7728e;
}
@media screen and (min-width: 768px) {
  .form-field__tag {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .form-field__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 320px;
            flex: 1 1 320px;
    max-width: 320px;
  }
}

/* フォーム：テキスト
************************************/
.form-field__text {
  width: 100%;
  height: 40px;
  -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);
  border: none;
  outline: none;
}
.form-field__text:focus {
  border: 1px solid #3ea1d1;
}

/*フォーム：ラジオ
************************************/
.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-radio {
  cursor: pointer;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked {
  /* ラジオボタン（テキスト）が選択されているとき */
}
.form-radio__input:checked + .form-radio__text {
  /* チェックされたラジオボタンの直後にあるラジオテキスト表示を変更 */
  background-color: #3ea1d1;
  color: #fff;
}

.form-radio__text {
  display: inline-block;
  padding: 6px 24px;
  letter-spacing: 0.026px;
  color: #3ea1d1;
  background-color: #fff;
  position: relative;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

/* フォーム：お問い合わせ内容
************************************/
.form-textarea {
  width: 100%;
  height: 122px;
  -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);
  border: none;
  outline: none;
}
.form-textarea:focus {
  border: 1px solid #3ea1d1;
}

/* フォーム：チェックボックス
************************************/
.contact__privacy {
  margin-top: 28px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-top: 32px;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked {
  /* チェックボックスが選択されているとき */
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  /* チェックされたチェックボックスの直後にあるテキストの疑似要素after（＝チェック）を表示させる */
  opacity: 1;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
}
.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;
  border: 1px solid #3ea1d1;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text::before {
    margin-top: -1px;
  }
}
.form-checkbox__text::after {
  /* チェックボックスのチェック */
  width: 19.414px;
  height: 14.621px;
  left: 1.29px;
  background: url(../img/contact_check.png) no-repeat center center/contain;
  opacity: 0; /* 初期状態は非表示 */
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #3ea1d1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form-checkbox__text a:hover {
  opacity: 0.6;
}

/* フォーム：送信
************************************/
.contact__button {
  margin-top: 23px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 42px;
  }
}

/* footer
************************************/
.footer__inner {
  padding-top: 34px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-bottom: 14px;
  }
}

.footer__logo {
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__logo:hover {
  opacity: 0.6;
}
.footer__logo img {
  width: 120px;
}

.footer__content {
  margin-top: 22px;
}

.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .footer__policy {
    -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__policy-text {
  font-size: 12px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer__policy-text:hover {
  color: #3ea1d1;
}

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

.sns__twitter {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sns__twitter:hover {
  opacity: 0.6;
}
.sns__twitter img {
  width: 21px;
}

.sns__instagram {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sns__instagram:hover {
  opacity: 0.7;
}
.sns__instagram img {
  width: 18px;
}

.sns__line {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sns__line:hover {
  opacity: 0.6;
}
.sns__line img {
  width: 18px;
}

.footer__copyright {
  margin-top: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 22px;
  }
}

.footer__copyright-text {
  font-size: 12px;
  color: #888888;
}