@charset "UTF-8";
/* 共通カラー */
/* テンプレート共通カラー */
/* タグ */
/* ブレイクポイント */
/* メディアクエリ */
.section {
  width: 100%;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 780px) {
  .section {
    margin-bottom: 80px;
  }
}
.section__title {
  font-size: 2.4rem;
  font-weight: bold;
  border-left: 8px solid #000;
  padding: 5px 20px;
  line-height: 1;
}

.confirm {
  padding-top: 20px;
}
.confirm__message {
  line-height: 2;
}
.confirm__body {
  margin-top: 30px;
}
.confirm__required {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.3rem;
  padding: 2px 6px;
  color: #f0536b;
  border: 1px solid #f0536b;
  background: #fff;
  line-height: 1.5;
}
.confirm__table {
  width: 100%;
  border-right: 1px solid #D8DEE2;
  border-bottom: 1px solid #D8DEE2;
}
.confirm__table tr {
  display: flex;
  flex-wrap: wrap;
}
.confirm__table th, .confirm__table td {
  font-size: 1.4rem;
  text-align: left;
  padding: 10px 20px;
  border-left: 1px solid #D8DEE2;
  border-top: 1px solid #D8DEE2;
  display: block;
}
@media screen and (min-width: 780px) {
  .confirm__table th, .confirm__table td {
    display: table-cell;
  }
}
.confirm__table th {
  vertical-align: top;
  background: #eff2f5;
  width: 100%;
  font-size: 1.2rem;
}
@media screen and (min-width: 780px) {
  .confirm__table th {
    width: 260px;
  }
}
.confirm__table td {
  width: 100%;
}
@media screen and (min-width: 780px) {
  .confirm__table td {
    width: auto;
    flex: 1;
  }
}
.confirm__table input[type=text], .confirm__table input[type=email], .confirm__table input[type=tel], .confirm__table textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
}
.confirm__table input[type=checkbox] {
  margin-right: 10px;
}
.confirm__table label {
  font-weight: bold;
  font-size: 1.8rem;
  cursor: pointer;
}
.confirm__description {
  font-weight: bold;
  padding-bottom: 10px;
}
.confirm__description a {
  display: inline-block;
  -webkit-text-decoration: underline 1px #000;
          text-decoration: underline 1px #000;
  padding: 0 10px;
}
.confirm__submit {
  display: inline-block;
  width: 200px;
  height: auto !important;
  padding: 15px 0;
  color: #fff !important;
  background-color: #00773a;
  border: none;
  cursor: pointer;
  margin: 10px;
  border-radius: 5px;
}
.confirm__group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
}
.confirm__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.confirm__item {
  width: 100%;
  display: flex;
  flex-flow: column;
}
.confirm__item .date {
  position: relative;
}
.confirm__item .date figure {
  display: none;
}
.confirm__item .date _:lang(x) + _:-webkit-full-screen-document, .confirm__item .date figure {
  display: block;
  position: absolute;
  top: 7px;
  right: 10px;
  width: 20px;
  height: 20px;
}
.confirm__item .date _:lang(x) + _:-webkit-full-screen-document img, .confirm__item .date figure img {
  width: 100%;
}