@charset "UTF-8";
.contact-form {
  position: relative;
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .contact-form {
    padding: 2.7777777778vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form {
    padding: 40px 0;
  }
}
.contact-form::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.6666666667vw;
  background-image: linear-gradient(90deg, #e34b44, #3e6aad);
}
@media screen and (min-width: 768px) {
  .contact-form::after {
    height: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form::after {
    height: 5px;
  }
}

.container {
  margin: 0 auto;
  padding: 0 2vw;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 66.6666666667vw;
    padding: 0 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 960px;
    padding: 0 15px;
  }
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 5.3333333333vw;
  color: #3c3c3c;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 2.8rem;
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  h2 {
    margin-bottom: 40px;
  }
}

h3 {
  font-size: 1.6rem;
  margin: 0 0 1.3333333333vw 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 1.6rem;
    margin: 0 0 0.6944444444vw 0;
  }
}
@media screen and (min-width: 1440px) {
  h3 {
    margin: 0 0 10px 0;
  }
}

.lead-text {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .lead-text {
    font-size: 1.3rem;
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .lead-text {
    margin-bottom: 30px;
  }
}

/* カードグリッド (資料一覧) */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(37.3333333333vw, 1fr));
  gap: 4vw;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .doc-grid {
    grid-template-columns: repeat(auto-fit, minmax(19.4444444444vw, 1fr));
    gap: 2.0833333333vw;
    margin-bottom: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .doc-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }
}

.doc-card {
  background: #ffffff;
  border: 0.2666666667vw solid #CCCCCC;
  border-radius: 1.0666666667vw;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .doc-card {
    border: 0.0694444444vw solid #CCCCCC;
    border-radius: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .doc-card {
    border: 1px solid #CCCCCC;
    border-radius: 8px;
  }
}

.doc-card:hover {
  transform: translateY(-0.6666666667vw);
  box-shadow: 0 1.3333333333vw 2.6666666667vw rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .doc-card:hover {
    transform: translateY(-0.3472222222vw);
    box-shadow: 0 0.6944444444vw 1.3888888889vw rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 1440px) {
  .doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
}

.doc-img {
  width: 100%;
  height: 26.6666666667vw;
  object-fit: cover;
  background: #E0E0E0;
  border-bottom: 0.2666666667vw solid #E0E0E0;
}
@media screen and (min-width: 768px) {
  .doc-img {
    height: 13.8888888889vw;
    border-bottom: 0.0694444444vw solid #E0E0E0;
  }
}
@media screen and (min-width: 1440px) {
  .doc-img {
    height: 200px;
    border-bottom: 1px solid #E0E0E0;
  }
}

.doc-content {
  padding: 2.6666666667vw;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .doc-content {
    padding: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .doc-content {
    padding: 20px;
  }
}

.doc-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1.3333333333vw;
  color: #DB1845;
}
@media screen and (min-width: 768px) {
  .doc-title {
    font-size: 1.8rem;
    margin: 0 0 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .doc-title {
    margin: 0 0 10px;
  }
}

.doc-desc {
  font-size: 1.1rem;
  color: #707070;
  margin-bottom: 2.6666666667vw;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .doc-desc {
    font-size: 1.4rem;
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .doc-desc {
    margin-bottom: 20px;
  }
}

/* ダウンロードボタンのスタイル変更 */
.doc-btn {
  display: block;
  width: 100%;
  padding: 1.6vw;
  background: #DB1845;
  /* 指定色 */
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5333333333vw;
  font-weight: 700;
  transition: all 0.3s;
  border: 0.2666666667vw solid #DB1845;
  font-size: 1.3rem;
  /* 初期ボーダー */
}
@media screen and (min-width: 768px) {
  .doc-btn {
    padding: 0.8333333333vw;
    border-radius: 0.2777777778vw;
    border: 0.0694444444vw solid #DB1845;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1440px) {
  .doc-btn {
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #DB1845;
  }
}

.doc-btn:hover {
  background: #ffffff;
  color: #DB1845;
  border: 0.2666666667vw solid #DB1845;
}
@media screen and (min-width: 768px) {
  .doc-btn:hover {
    border: 0.0694444444vw solid #DB1845;
  }
}
@media screen and (min-width: 1440px) {
  .doc-btn:hover {
    border: 1px solid #DB1845;
  }
}

/* フォームレイアウト用CSS */
.form-box {
  margin: 0 auto;
  background: #ffffff;
  padding: 5.3333333333vw;
  border-radius: 1.0666666667vw;
  box-shadow: 0 0.5333333333vw 1.3333333333vw rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .form-box {
    max-width: 55.5555555556vw;
    padding: 2.7777777778vw;
    border-radius: 0.5555555556vw;
    box-shadow: 0 0.1388888889vw 0.6944444444vw rgba(0, 0, 0, 0.05);
  }
}
@media screen and (min-width: 1440px) {
  .form-box {
    max-width: 800px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
}

.form-box-thanks {
  text-align: center;
}

.thanks-title {
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .thanks-title {
    font-size: 1.6rem;
  }
}

.confirm-title {
  font-weight: 700;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  border-bottom: 0.5333333333vw solid #DB1845;
  padding-bottom: 1.3333333333vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .confirm-title {
    font-size: 1.6rem;
    border-bottom: 0.1388888889vw solid #DB1845;
    padding-bottom: 0.6944444444vw;
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .confirm-title {
    border-bottom: 2px solid #DB1845;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}

.contact-form-subtitle {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .contact-form-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form-subtitle {
    margin-bottom: 20px;
  }
}

.fonfirm-accent {
  color: #DB1845;
}

.selected-doc-info {
  background: #f0f0f0;
  padding: 2vw;
  border-bottom: 0.6666666667vw solid #DB1845;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .selected-doc-info {
    padding: 1.0416666667vw;
    border-bottom: 0.3472222222vw solid #DB1845;
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .selected-doc-info {
    padding: 15px;
    border-bottom: 5px solid #DB1845;
    margin-bottom: 30px;
  }
}

.selected-doc-title {
  font-weight: 700;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .selected-doc-title {
    font-size: 1.3rem;
  }
}

.selected-doc-return {
  text-align: right;
  font-size: 1.2rem;
  margin-top: 0.6666666667vw;
}
@media screen and (min-width: 768px) {
  .selected-doc-return {
    font-size: 1.2rem;
    margin-top: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .selected-doc-return {
    margin-top: 5px;
  }
}

.selected-doc-return a {
  color: #707070;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .selected-doc-return a {
    font-size: 1.3rem;
  }
}

.selected-doc-text {
  font-size: 1.3rem;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .selected-doc-text {
    font-size: 1.3rem;
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .selected-doc-text {
    margin-bottom: 20px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  table {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  table {
    margin-bottom: 30px;
  }
}

table tr {
  border-bottom: 0.2666666667vw solid #E0E0E0;
}
@media screen and (min-width: 768px) {
  table tr {
    border-bottom: 0.0694444444vw solid #E0E0E0;
  }
}
@media screen and (min-width: 1440px) {
  table tr {
    border-bottom: 1px solid #E0E0E0;
  }
}

table th,
table td {
  display: block;
  width: 100%;
  padding: 1.3333333333vw 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  table th,
  table td {
    padding: 0.6944444444vw 0;
  }
}
@media screen and (min-width: 1440px) {
  table th,
  table td {
    padding: 10px 0;
  }
}

table h3 {
  padding-top: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  table h3 {
    padding-top: 0;
  }
}
@media screen and (min-width: 1440px) {
  table h3 {
    padding-top: 0;
  }
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form-wrapper-row {
  display: flex;
  gap: 2.6666666667vw;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .contact-form-wrapper-row {
    gap: 1.3888888889vw;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form-wrapper-row {
    gap: 20px;
  }
}

.contact-form-container {
  min-width: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .contact-form-container {
    min-width: 13.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form-container {
    min-width: 200px;
  }
}

.contact-form-container-harf {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-form-container-harf {
    width: auto;
    flex: 1;
    margin-right: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form-container-harf {
    margin-right: 20px;
  }
}

@media screen and (min-width: 768px) {
  .contact-form-container-harf:last-child {
    margin-right: 0;
  }
}

label {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  label {
    font-size: 1.3rem;
  }
}

.contact-form-margin {
  margin-bottom: 2vw;
}
@media screen and (min-width: 768px) {
  .contact-form-margin {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form-margin {
    margin-bottom: 15px;
  }
}

.contact-form-unit {
  margin-bottom: 2vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-form-unit {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form-unit {
    margin-bottom: 15px;
  }
}

/* 入力要素 */
input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  padding: 2.6666666667vw 1.3333333333vw;
  border: 0.2666666667vw solid #CCCCCC;
  border-radius: 0.5333333333vw;
  font-size: 1.6rem;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    padding: 0.6944444444vw;
    border: 0.0694444444vw solid #CCCCCC;
    border-radius: 0.2777777778vw;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
  }
}

textarea {
  resize: vertical;
  min-height: 16vw;
}
@media screen and (min-width: 768px) {
  textarea {
    min-height: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  textarea {
    min-height: 120px;
  }
}

select {
  -webkit-appearance: none;
}
@media screen and (min-width: 768px) {
  select {
    -webkit-appearance: auto;
  }
}

.input-wide {
  width: 100%;
}

.input-max {
  width: 100%;
}

/* 受取方法選択タブ風ラジオボタン */
.delivery-selection {
  display: flex;
  flex-direction: column;
  gap: 1.3333333333vw;
  margin-bottom: 2.6666666667vw;
  padding: 1.3333333333vw;
  background: #F4F4F4;
  border: 0.2666666667vw solid #E0E0E0;
  border-radius: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .delivery-selection {
    gap: 0.6944444444vw;
    margin-bottom: 1.3888888889vw;
    padding: 0.6944444444vw;
    border: 0.0694444444vw solid #E0E0E0;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .delivery-selection {
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
  }
}

.delivery-option {
  flex: 1;
}

.delivery-option label {
  display: block;
  font-size: 1.3rem;
  padding: 2vw;
  text-align: center;
  cursor: pointer;
  border: 0.5333333333vw solid #CCCCCC;
  border-radius: 0.5333333333vw;
  background: #ffffff;
  font-weight: 700;
  color: #707070;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .delivery-option label {
    font-size: 1.3rem;
    padding: 1.0416666667vw;
    border: 0.1388888889vw solid #CCCCCC;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .delivery-option label {
    padding: 15px;
    border: 2px solid #CCCCCC;
    border-radius: 4px;
  }
}

.delivery-option label span {
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .delivery-option label span {
    font-size: 1.2rem;
  }
}

.delivery-option input[type=radio] {
  display: none;
}

.delivery-option input[type=radio]:checked + label {
  border-color: #DB1845;
  background: #FDF1F1;
  color: #DB1845;
}

/* アドレスブロックの表示制御 */
#address-block {
  transition: opacity 0.3s;
}

/* バッジ */
.required {
  background: #DB1845;
  color: #ffffff;
  font-size: 1.1rem;
  padding: 0.5333333333vw 0.8vw;
  border-radius: 0.4vw;
  margin-left: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .required {
    font-size: 1.1rem;
    padding: 0.1388888889vw 0.4166666667vw;
    border-radius: 0.2083333333vw;
    margin-left: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .required {
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
  }
}

.non-required {
  background: #707070;
  color: #ffffff;
  font-size: 1.1rem;
  padding: 0.5333333333vw 0.8vw;
  border-radius: 0.4vw;
  margin-left: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .non-required {
    font-size: 1.1rem;
    padding: 0.1388888889vw 0.4166666667vw;
    border-radius: 0.2083333333vw;
    margin-left: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .non-required {
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
  }
}

/* エラー表示 */
.error-summary {
  background: #FDF1F1;
  border: 0.2666666667vw solid #DB1845;
  color: #DB1845;
  padding: 2vw;
  margin-bottom: 2.6666666667vw;
  border-radius: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .error-summary {
    border: 0.0694444444vw solid #DB1845;
    padding: 1.0416666667vw;
    margin-bottom: 1.3888888889vw;
    border-radius: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .error-summary {
    border: 1px solid #DB1845;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
  }
}

.error-summary ul {
  margin: 0;
  padding-left: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .error-summary ul {
    padding-left: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .error-summary ul {
    padding-left: 20px;
  }
}

/* ボタン */
.form-action {
  text-align: center;
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .form-action {
    margin-top: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-action {
    margin-top: 30px;
  }
}
.form-action-confirm {
  display: flex;
  justify-content: center;
}

.form-btn-red {
  width: 70%;
  background-color: #DB1845;
  color: #ffffff;
  border: none;
  padding: 2vw 5.3333333333vw;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 6.6666666667vw;
  cursor: pointer;
  transition: background 0.3s;
  line-height: 1.4;
  display: inline-block;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .form-btn-red {
    font-size: 1.8rem;
    padding: 1.0416666667vw 2.7777777778vw;
    border-radius: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-btn-red {
    padding: 15px 40px;
    border-radius: 50px;
  }
}

.form-btn-red:hover {
  background-color: #E34B44;
}

.form-btn-red span {
  font-size: 1rem;
  font-weight: 400;
  display: block;
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .form-btn-red span {
    font-size: 1.2rem;
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-btn-red span {
    margin-bottom: 10px;
  }
}

.form-btn-gray {
  background-color: #707070;
  color: #ffffff;
  border: none;
  padding: 1.6vw 4vw;
  font-size: 1.6rem;
  border-radius: 0.5333333333vw;
  cursor: pointer;
  margin-right: 2vw;
}
@media screen and (min-width: 768px) {
  .form-btn-gray {
    font-size: 1.6rem;
    padding: 0.8333333333vw 2.0833333333vw;
    border-radius: 0.2777777778vw;
    margin-right: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-btn-gray {
    padding: 12px 30px;
    border-radius: 4px;
    margin-right: 15px;
  }
}

/* 利用規約 */
.contact-form-policy-title {
  font-size: 1.6rem;
  margin: 0 0 1.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .contact-form-policy-title {
    font-size: 1.6rem;
    margin: 0 0 0.6944444444vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form-policy-title {
    margin: 0 0 10px 0;
  }
}

.contact-form-policy {
  height: 53.3333333333vw;
  overflow-y: scroll;
  border: 0.2666666667vw solid #CCCCCC;
  padding: 2vw;
  background: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .contact-form-policy {
    height: 13.8888888889vw;
    border: 0.0694444444vw solid #CCCCCC;
    padding: 1.0416666667vw;
    font-size: 1.3rem;
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form-policy {
    height: 200px;
    border: 1px solid #CCCCCC;
    padding: 15px;
    margin-bottom: 20px;
  }
}

.contact-form-policy p {
  font-size: 1.6rem;
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .contact-form-policy p {
    font-size: 1.6rem;
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form-policy p {
    margin-bottom: 10px;
  }
}

.policy-title-red {
  color: #DB1845;
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .policy-title-red {
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .policy-title-red {
    margin-bottom: 10px;
  }
}

/* 確認画面テーブル (PC向け調整) */
.confirm-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 0.5333333333vw solid #DB1845;
}
@media screen and (min-width: 768px) {
  .confirm-table {
    border-top: 0.1388888889vw solid #DB1845;
  }
}
@media screen and (min-width: 1440px) {
  .confirm-table {
    border-top: 2px solid #DB1845;
  }
}

.confirm-table tr {
  border-bottom: 0.2666666667vw solid #e0e0e0;
}
@media screen and (min-width: 768px) {
  .confirm-table tr {
    display: table-row;
    border-bottom: 0.0694444444vw solid #e0e0e0;
  }
}
@media screen and (min-width: 1440px) {
  .confirm-table tr {
    border-bottom: 1px solid #e0e0e0;
  }
}

.confirm-table th {
  background: transparent;
  border: none;
  color: #707070;
  font-weight: 400;
  padding: 1.3333333333vw;
  width: 100%;
  display: block;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .confirm-table th {
    display: table-cell;
    width: 30%;
    padding: 1.7361111111vw 1.3888888889vw;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  .confirm-table th {
    padding: 25px 20px;
  }
}

.confirm-table td {
  background: transparent;
  border: none;
  color: #3c3c3c;
  padding: 0.6666666667vw 1.3333333333vw 2.6666666667vw;
  width: 100%;
  display: block;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .confirm-table td {
    display: table-cell;
    width: 70%;
    padding: 1.7361111111vw 1.3888888889vw;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  .confirm-table td {
    padding: 25px 20px;
  }
}

/* サンクス画面 */
.download-area {
  text-align: center;
  padding: 5.3333333333vw;
  background: #F6F6F4;
  border: 0.5333333333vw solid #DB1845;
  border-radius: 1.3333333333vw;
  margin: 4vw 0;
}
@media screen and (min-width: 768px) {
  .download-area {
    padding: 2.7777777778vw;
    border: 0.1388888889vw solid #DB1845;
    border-radius: 0.6944444444vw;
    margin: 2.0833333333vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .download-area {
    padding: 40px;
    border: 2px solid #DB1845;
    border-radius: 10px;
    margin: 30px 0;
  }
}

.download-area-gray {
  background: #ffffff;
  border-color: #CCCCCC;
  box-shadow: none;
  animation: none;
}

.download-title {
  font-size: 1.3rem;
  margin-bottom: 2vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .download-title {
    font-size: 1.3rem;
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .download-title {
    margin-bottom: 15px;
  }
}

.dl-btn-large {
  display: inline-block;
  background: #DB1845;
  color: #ffffff;
  padding: 2.6666666667vw 6.6666666667vw;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6.6666666667vw;
  box-shadow: 0 0.6666666667vw 2vw rgba(211, 47, 47, 0.4);
  animation: pulse 2s infinite;
}
@media screen and (min-width: 768px) {
  .dl-btn-large {
    padding: 1.3888888889vw 3.4722222222vw;
    font-size: 1.2rem;
    border-radius: 3.4722222222vw;
    box-shadow: 0 0.3472222222vw 1.0416666667vw rgba(211, 47, 47, 0.4);
  }
}
@media screen and (min-width: 1440px) {
  .dl-btn-large {
    padding: 20px 50px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
  }
}

.dl-btn-large:hover {
  background: #DB1845;
  transform: translateY(-0.5333333333vw);
}
@media screen and (min-width: 768px) {
  .dl-btn-large:hover {
    transform: translateY(-0.1388888889vw);
  }
}
@media screen and (min-width: 1440px) {
  .dl-btn-large:hover {
    transform: translateY(-2px);
  }
}

.dl-note {
  margin-top: 2vw;
  font-size: 1.4rem;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .dl-note {
    margin-top: 1.0416666667vw;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1440px) {
  .dl-note {
    margin-top: 15px;
  }
}

.thanks-message {
  font-size: 1.3rem;
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .thanks-message {
    font-size: 1.3rem;
    margin-top: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .thanks-message {
    margin-top: 30px;
  }
}

.thanks-message a {
  font-size: 1.3rem;
  margin-top: 2.6666666667vw;
  color: #DB1845;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .thanks-message a {
    font-size: 1.3rem;
    margin-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .thanks-message a {
    margin-top: 20px;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4);
  }
  70% {
    box-shadow: 0 0 0 5.3333333333vw rgba(211, 47, 47, 0);
    @media screen and (min-width: 768px) {
      box-shadow: 0 0 0 1.3888888889vw rgba(211, 47, 47, 0);
    }
    @media screen and (min-width: 1440px) {
      box-shadow: 0 0 0 20px rgba(211, 47, 47, 0);
    }
  }
  100% {
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
  }
}