@charset "utf-8";
/* CSS Document */




/*====================================================================
　フォーム
====================================================================*/
#formWrap {
  margin: 0 auto;
  width: 92%;
}
.textTop {
    padding-bottom: 40px;
}
.formTable {
  border-top: 1px solid #ebebeb;
}

.formTable dt {
  text-align:left;
  vertical-align: top;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  padding: 20px 0 10px;
}

.formTable dd {
    padding: 20px 10px 30px;
  border-bottom: 1px solid #ebebeb;
}
.must {
  margin-left: 10px;
  color: #fff;
  background: #81b7ec;
  padding: 3px 5px;
  font-size: 14px;
  border-radius: 4px;
  position: absolute;
  top: 30px;
  right: 0;
}
.dateSelect label {
  position: relative;
  display: inline-block;
  height: calc(38px + 2px);
  border: 1px solid #9e9e9e;
  border-radius: 8px;
  background: #ffffff;
}
.dateSelect label::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 0;
  right: calc(-38px - 10px);
  background-color: #708090;
  border-radius: 5px;
  color: #fff;
  font-size: 23px;
  width: 38px;
  height: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
input[type="date"] {
  position: relative;
  padding-left: 10px;
  width: calc(100% + 38px + 10px);
  height: 100%;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  font-size: 16px;
  outline: none;
}
input[type="date"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button {
  -webkit-appearance: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 0;
  width: 100%;
  height: 38px;
  background: rgba(255, 0, 0, 0.0);
  color: transparent;
  cursor: pointer;
  outline: none;
}
.textarea {
  border: 1px solid #9e9e9e;
}
textarea {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  font-size: 16px;
}
.select {
  border: 1px solid #9e9e9e;
  display: inline-block;
  position: relative;
  width: 60%;
  background: #fff;
}
.select::after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  pointer-events: none;
}
.select select {
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0 20px 0 10px;
  width: 100%;
  height: 38px;
  color: #333;
}
.timeBox ,.timeText {
  display: inline-block;
}
.timeSelect {
  border: 1px solid #9e9e9e;
  display: inline-block;
  position: relative;
}
.timeSelect::after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  pointer-events: none;
}
.timeSelect select {
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0 20px 0 10px;
  width: 100%;
  height: 38px;
  color: #333;
}
.menuTitle {
  border-bottom: 2px dotted #ccc;
  padding: 5px 5px 10px 30px;
  margin-bottom: 20px;
  position: relative;
  color: #708090;
}
.menuTitle::before {
  content: "■";
  color: #708090;
  font-size: 25px;
  vertical-align: middle;
  position: absolute;
  top: 6px;
  left: 0;
}
.menuTitle2 {
  border-bottom: 2px dotted #ccc;
  padding: 5px 5px 10px 0;
  margin-bottom: 20px;
  position: relative;
  color: #708090;
  font-size: 22px;
}
.menuBox + .menuTitle2 {
    margin-top: 20px;
}
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
  left: 0;
  top: 0;
  margin: 3px 0;
}
.checkBox label {
  position: relative;
  display: inline-block;
}
.checkBox label span {
  display: inline-block;
  margin-left: 35px;
  text-indent: -35px;
  position: relative;
}
.checkBox label span::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 1px solid #9e9e9e;
  background: #ffffff;
  border-radius: 3px;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 10px;
}
input[type="checkbox"]:checked + span::before {
  background: #81b7ec;
}
input[type="checkbox"]:checked + span::after {
  content: "";
  display: block;
  width: 15px;
  height: 9px;
  box-sizing: border-box;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 12px;
  left: -26px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg) translateY(-50%);
}
.date li:not(:last-child) {
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.dateTitle {
  font-weight: bold;
  padding-bottom: 20px;
}
.dateBox {
  padding: 0 10px;
}
.dateSelect {
  margin-bottom: 20px;
}
.dateSelect label {
  width: calc(100% - 38px - 10px);
}
input[type="date"] {
  padding: 5px;
}
.timeBox {
  width: 100%;
}
.timeSelect {
    width: calc(100% - 76px);
}
.menuTitle {
  font-size: 18px;
}
.menuBox p {
  font-size: 16px;
}
.menuList:not(:last-child) {
  margin-bottom: 30px;
}
.other {
 margin-top: 20px;
}
.other:not(:last-child) {
    margin-bottom: 20px;
}
.other p {
 margin-bottom: 10px;
}
::placeholder {
    color: #bebebe;
}
.textType {
  border: 1px solid #9e9e9e;
}
input[type="text"] {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  min-height: 38px;
  font-size: 16px;
  padding: 0 10px;
}

.select + .textType,
.textType + .textType {
margin-top: 20px;
}

.textType_Box:not(:first-child) .text_h,
.textType_Box:not(:first-child) .textType {
    margin-top: 20px;
}
.btnBottom {
  margin: 40px auto;
}
.btnBottom .btn {
  width: 240px;
  border: 1px solid #707070;
  background: #ffffff;
  text-align: center;
  margin: 0 auto;
}
.btnBottom .btn a :hover{
  background: #81b7ec;
}
input[type="submit"], input[type="reset"], input[type="button"] {
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  padding: 15px;
  color: #000000;
  cursor: pointer;
  font-size: 16px;
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  background: #222222;
  color: #ffffff;
}
.menuBox.radioBox {
    margin-left: 0;
}
.menuBox.radioBox p {
    width: calc(100% / 2 - 10px);
  margin-left: 10px;
}
.radioBox label {
    align-items: center;
    cursor: pointer;
    display: flex;
}
.radioBox input[type="radio"]::before {
  background-color: #81b7ec;
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 14px;
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 14px;
}
.radioBox input[type="radio"]:checked::before {
  opacity: 1;
}
.radioBox input[type="radio"] {
  appearance: none;
  border: 1px solid #9e9e9e;
  border-radius: 50%;
  height: 20px;
  left: -10px;
  margin: 0;
  position: relative;
  min-width: 20px;
}

.btn + .btn {
  margin-top: 20px;
}
.privacy {
    margin: 20px 10px;
}
.policy {
    margin-bottom: 10px;
}
.textBottom {
  text-align: center;
}
.text_tel {
    max-width: 500px;
    text-align: center;
    background: #7080901c;
    padding: 11px;
    margin: 0 auto 40px;
}
.text_tel p {
    display: block;
    line-height: 1.6rem;
}
.text_tel p:last-child {
  margin-bottom: 0;
}
.text_tel .tel_ttl {
    font-size: 18px;
    font-weight: bold;
    text-decoration: underline;
}

.text_tel .tel {
    font-size: 38px;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  position: relative;
}
.text_tel .tel::before {
  content: "\f098";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  left: 20px;
  color: #222222;
  font-weight: bold;
  transform: translate(0, -50%) rotate(90deg);
}
.text_tel .tel a {
  margin-left: 30px;
}
.text_tel .tel::before {
    left: 86px;
}
.keiyaku {
  border: 1px solid #cccccc;
  padding: 10px;
  text-align: justify;
  margin-bottom: 16px;
}
.keiyaku p {
  margin-bottom: 0;
}
.red_un {
  color: red;
  text-decoration: underline;
}
.bg_gray {
  background: #dddddd;
  padding: 2px 10px;
  display: block;
}
.title_op {
    font-weight: bold;
    background-color: #B41D23;
    padding: 18px;
    color: #FFFFFF;
    letter-spacing: 1.5px;
}

@media print, screen and (min-width:600px) {
.keiyaku p.flex_kaihi {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin: 5px 0 5px;
  max-width: 720px;
  }
}
@media print, screen and (min-width:768px) {
.formTable dl {
  display: flex;
  flex-wrap: wrap;
}
.formTable dt {
  width: 30%;
  padding: 30px 50px 30px 20px;
  border-bottom: 1px solid #ebebeb;
  font-size: 16px;
}
.formTable dd {
  width: 70%;
  padding: 30px 20px;
}
.dateList li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.dateList li:not(:last-child) {
  margin-bottom: 30px;
}
.dateTitle {
  width: 15%;
}
.dateBox{
  width: 85%;
  display: flex;
  flex-wrap: wrap;
}
.dateSelect  {
  width: 50%;
}
.dateSelect label {
  width: 70%;
}
.timeBox {
  width: 50%;
}
.timeSelect {
  width: 65%;
}
.menuBox {
  display: flex;
  flex-wrap: wrap;
}
.menuBox p {
  width: calc(100% / 2);
  margin-bottom: 15px;
}
.menuBox p.col2 {
  width: calc(100% / 3 * 2);
}
.menuBox p.col3 {
  width: 100%;
}
.menuList:not(:last-child) {
  margin-bottom: 15px;
}
.menuBox.radioBox p {
    width: auto;
}
.textType_Box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.textType_Box .text_h {
    width: 25%;
}
.textType_Box .textType {
    width: 75%;
}
.btnBottom{
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn + .btn {
  margin-top: 0;
}
.btnBottom .btn {
    margin: 0;
}
.text_tel {
    padding: 20px;
}
.menuBox.radioBox {
    gap: 40px;
}
}



/*-　確認画面-----------------------------------*/
.kakunin {
  padding-top: 40px;
}
.error_messe {
  color: red;
}
.kakunin h4 {
    font-size: 1rem;
  line-height: 1.6;
}
@media print, screen and (min-width:768px) {
.kakunin {
  padding-top: 60px;
  max-width: 700px;
}

}

/*-　サンクスページ-----------------------------------*/

.thanksBox {
  margin: 0;
  width: 100%;
  height: 300px;
  background: url("../img/bg.png") no-repeat;
  background-size: cover;
  padding-top: 60px;
}
.thanksImg .thanksText {
  text-align: center;
}
.btnBottom.totop {
  margin: 60px auto;
}
.btnBottom.totop .btn {
  margin: 0 auto;
}
.btnBottom.totop .btn a {
  display: block;
  height: 60px;
  padding-top: 20px;
}

@media print, screen and (min-width:600px) {
.thanksBox {
    height: 500px;
}
}
@media print, screen and (min-width:768px) {
.thanksBox {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: end;
}
    .thanksImg, .btnBottom.totop {
        width: 300px;
        margin: 0 0 60px;
    }
}




