.contents__head h1 {
  color: var(--c-blue);
}

.main-explanation {
  margin-bottom: 60px;
  font-size: var(--fs-16);
  text-align: center;
  letter-spacing: 0;
}
.main-explanation .annotation {
  display: block;
  font-size: var(--fs-14);
}

.page-contents {
  padding-top: 80px;
  background: #e5ebef;
}
.page-contents.complete {
  background: #fff;
}

.page-contents .contents-wrapper {
  width: 100%;
  padding: 60px 0 160px 0;
  background: #fff;
}

.page-contents .contents-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .page-contents .contents-wrapper {
    padding: 40px 5% 160px;
  }
}
.page-contents .content-container {
  max-width: 760px;
  margin: 0 auto;
}

/* ====================================================
contact
==================================================== */

.contact.complete .contents-wrapper {
  padding: 0 0 120px 0;
}

.wpcf7 dl {
  width: 100%;
  margin-bottom: 25px;
}
.wpcf7 dl dt {
  margin-bottom: 10px;
  font-size: var(--fs-16);
  font-weight: 700;
  font-style: Bold;
  line-height: 30px;
}
.wpcf7-text,
.wpcf7-textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid;
  border-radius: 10px;
  font-size: var(--fs-16);
  line-height: 28px;
}
.input-area {
  margin-bottom: 96px;
}

@media screen and (max-width: 767px) {
  .input-area {
    margin-bottom: 34px;
  }
}
.submit-button {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.external-link {
  /* アイコンとテキストの位置を微調整 */
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-16);
  text-decoration: none; /* 下線を消したい場合 */
  text-decoration: underline;

  gap: 0.3em; /* テキストとアイコンの間隔 */
}

.external-link:hover {
  text-decoration: underline; /* ホバー時に下線を表示 */
}

/* リンクの右側にアイコンを追加 */
.external-link::after {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_link.svg) no-repeat;
  background-size: contain;
  content: "";
}

/* Contact Form 7 ラジオボタンを縦並びにする */
.wpcf7-radio .wpcf7-list-item {
  display: block; /* 各項目をブロック要素にして改行させる */
  margin: 0 0 8px; /* 各項目の下に少し余白をとる */
}

.wpcf7-radio .wpcf7-list-item label {
  margin: 0; /* ラベルの不要な余白をリセット */
}

input[type="radio"] {
  width: 16px;
  height: 16px;
  margin-top: -2px;
}
