
/* CSS Document */

/* 余白 */
.mb20 {
  margin-bottom: 20px;
}

/* タイトル */
.main__title {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 30px;
}

/* プライマリーボタン */
.button__primary {
  border: none;
  background: #0D0D0D;
  border-radius: 100px;
  width: 100%;
  max-width: 280px;
  color: #fff;
  font-weight: 700;
  padding: 13px;
  font-size: 14px;
  transition: all .2s ease;
  cursor: pointer;
}
.button__primary:hover {
  transition: all .2s ease;
  opacity: .8;
}
.button__primary-large {
  border: none;
  background: #0D0D0D;
  border-radius: 100px;
  width: 100%;
  color: #fff;
  font-weight: 700;
  transition: all .2s ease;
  font-size: 18px;
  padding: 18px;
  max-width: 410px;
  cursor: pointer;
  display: inline-block;
}
.button__primary-large:hover {
  transition: all .2s ease;
  opacity: .8;
}
.button__line-large {
  border: none;
  background: #fff;
  border-radius: 100px;
  width: 100%;
  color: #0D0D0D;
  font-weight: 700;
  transition: all .2s ease;
  font-size: 18px;
  padding: 16px;
  max-width: 410px;
  border: 1px solid #0D0D0D;
  cursor: pointer;
}
.button__line-large:hover {
  transition: all .2s ease;
  opacity: .6;
}
/* アイコンボタン */
.button_icon {
    background: #E8E8E8;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  .button_icon:hover {
    opacity: .8;
  }
  .button_icon .material-symbols-outlined {
    color: #9F9F9F;
  }

/* テキストリンク */
.text__link {
  font-size: 13px;
  color: #888888;
  text-decoration: underline;
  display: inline-block;
}
.text__link:hover {
  text-decoration: none;
}

/* フォーム */
.form {
  padding: 80px 0 100px;
  width: 280px;
  margin: 0 auto;
}
.form__item {
  margin-bottom: 18px;
}

/* テキストボックス */
.textbox-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.textbox {
  border: 1px solid #D1D1D1;
  font-size: 14px;
  padding: 10px;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
  border-radius: 6px;
  background: #f9f9f9;
  width: 280px;
}

/* チェックボックス */
.checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 2em;
  border: none;
  font-size: 13px;
}
.checkbox label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  cursor: pointer;
}
.checkbox label::before,
.checkbox label:has(:checked)::after {
  content: '';
}
.checkbox label::before {
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background: #f9f9f9;
  border: 1px solid #D1D1D1;
}
.checkbox label:has(:checked)::before {
  background-color: #1C689B;
}
.checkbox label:has(:checked)::after {
  position: absolute;
  top: 3px;
  left: 6px;
  transform: rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}
.checkbox input {
  display: none;
}

/* フォントサイズ */
.text_big {
    font-size: 17px;
  }

/* ライン */
.form-line {
  background: #E6E6E6;
  height: 1px;
  width: 100%;
  margin: 30px 0;
}


/* //////////////////////////////////////////
  TABLET / SP
  ////////////////////////////////////////// */

  @media screen and (max-width: 767px) {
    .button__line-large,
    .button__primary-large {
      font-size: 16px;
      padding: 16px;
      max-width: 300px;
    }

  }
  /*media screen_end*/

  @media screen and (max-width: 667px) {
  }
  /*media screen_end*/

  @media screen and (max-width: 568px) {
  }
  /*media screen_end*/

  @media screen and (max-width: 480px) {
  }
  /*media screen_end*/

  @media screen and (max-width: 375px) {
  }
  /*media screen_end*/

  @media screen and (max-width: 320px) {
  }
  /*media screen_end*/

/*# sourceMappingURL=common.css-d1b6641f533fe16e27b53a41af9092e14af7ab811a82f9f9b39fbe44b1e9efde.map */
