@charset "UTF-8";
/*--------------------------------------

variables

--------------------------------------*/
.dlWrap {
  border-top: 1px solid #ddd;
  padding-top: 10px;
}
.dlWrap > dl {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  padding: 0 10px 10px;
}
.dlWrap > dl > dt {
  font-size: 1.6rem;
  color: rgb(65, 149, 233);
  font-weight: 900;
  margin-bottom: 7px;
}
.dlWrap > dl > dd {
  font-size: 1.6rem;
  line-height: 1.7;
}

.volunteerPhotoList {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.volunteerPhotoItem {
  width: 50%;
}

.attention {
  color: #B20000;
  margin-bottom: 15px;
}

.endInfo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #e40000;
  margin-bottom: 50px;
  text-align: center;
  background: #fff0f0;
  border: 1px solid #e40000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* フォーム部分
==================================*/
.error {
  background: #f4d4d4 !important;
  color: #dd3636;
  font-weight: 600;
}

.errMessage {
  font-size: 1.5rem;
  font-weight: 900;
  color: #dd3636;
  margin-top: 5px;
}

.errBox {
  border: 3px double #dd3636;
  background-color: #f4d4d4;
  padding: 10px;
  margin: 0 0 40px;
}

.errBox p {
  color: #dd3636;
  font-weight: 600;
}

.entryform {
  margin-bottom: 80px;
}

.entryformBox {
  border: 1px solid #ddd;
  margin-bottom: -1px;
}

.inputItems,
.inputArea {
  padding: 15px;
  width: 100%;
}

.inputItems {
  width: 100%;
  background: #EEEEEE;
}

.radiobtnWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 20px;
}

.radioLabelItem {
  display: flex;
  align-items: center;
  height: 45px;
  background: #eee;
  border-radius: 10px;
  padding: 0 15px;
  cursor: pointer;
  transition: 0.2s;
}
.radioLabelItem span {
  margin-left: 10px;
}
.radioLabelItem input {
  display: none;
}

input[type=radio] {
  display: inline-block;
}

/* 選択されたとき */
.radioLabelItem:has(input:checked) {
  background: #4195E9;
  color: #fff;
}

.TshirtSizeWrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 20px;
}

.TshirtSizelItem {
  display: flex;
  align-items: center;
  height: 45px;
  background: #eee;
  border-radius: 10px;
  padding: 0 15px;
  cursor: pointer;
  transition: 0.2s;
}
.TshirtSizelItem span {
  margin-left: 10px;
}
.TshirtSizelItem input {
  display: none;
}

input[type=radio] {
  display: inline-block;
}

/* 選択されたとき */
.TshirtSizelItem:has(input:checked) {
  background: #4195E9;
  color: #fff;
}
[type=text],
[type=tel],
[type=email] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #ddd;
}

[type=number] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #ddd;
}

.required {
  width: 50px;
  height: 20px;
  background-color: #B20000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  margin: 0 10px 0 0;
}

.any {
  width: 50px;
  height: 20px;
  background-color: #888888;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  padding: 1px 5px;
  margin: 0 10px 0 0;
}

.inputArea textarea {
  width: 100%;
  min-height: 200px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
}

.checkBox {
  display: block;
  cursor: pointer;
}

.checkBoxMargin {
  margin-right: 20px;
}
[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
  width: 20px !important;
}

.btnConfirm input {
  display: block;
  padding: 20px;
  text-align: center;
  background: #4195E9;
  color: #fff;
  cursor: pointer;
  width: 100%;
  font-size: 1.6rem;
  transition: all 0.2s;
  margin: 0 auto;
  max-width: 300px;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btnConfirm input:hover {
  background: #1f6dbb;
}

.formBtnWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 20px;
}

.formBtnWrapper input {
  border-radius: 5px;
  margin-bottom: 10px;
  display: block;
  padding: 20px;
  text-align: center;
  background: #4195E9;
  color: #fff;
  cursor: pointer;
  width: 100%;
  font-size: 1.6rem;
  transition: all 0.2s;
}
.formBtnWrapper input:hover {
  background: #1f6dbb;
}

textarea::placeholder,
input::placeholder {
  color: #b1b1b1;
}

@media print, screen and (min-width: 768px){
  .dlWrap {
    padding-top: 20px;
  }
  .dlWrap > dl {
    padding: 0 10px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
  }
  .dlWrap > dl > dt {
    flex-basis: 140px;
    margin-bottom: 0;
  }
  .dlWrap > dl > dd {
    flex-basis: calc(100% - 180px);
  }
  .volunteerPhotoItem {
    width: 33%;
  }
  .inputItems,
  .inputArea {
    padding: 15px;
  }
  .inputItems {
    flex-basis: 220px;
    display: flex;
    align-items: center;
  }
  .radiobtnWrap {
    grid-template-columns: 200px 200px;
  }
  .inputArea {
    flex-basis: calc(100% - 230px);
  }
  [type=text],
  [type=tel],
  [type=email] {
    width: 60%;
  }
  [type=number] {
    width: 100px;
  }
  .checkBox {
    margin-right: 20px;
  }
  .checkBoxWrap {
    display: flex;
  }
  .formBtnWrapper {
    width: 620px;
    margin: 40px auto 0;
  }
  .formBtnWrapper input {
    width: 300px;
  }
}

/*# sourceMappingURL=volunteer.css.map*/