@charset "UTF-8";
/* CSS Document */
.single_col h2 {
  line-height: 2;
}
.single_col .inner.contact {
  position: relative;
}
.single_col .inner .list {
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  margin: 10px 0 0px;
  padding: 10px;
  border-radius: 8px;
}
.single_col .inner .list .tbl_dl, .single_col .inner .list .contact_dl {
  border: 1px solid #ddd;
  margin: 0 0 30px;
}
.single_col .inner .list h3 {
  font-size: 2.4rem;
}

.flextitle {
  display: block;
}

.title_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.title_flex .datechange {
  display: flex;
  margin: 5px 0;
}
.title_flex .datechange button {
  font-size: 1.2rem;
  padding: 5px;
  margin: 5px;
}

@media (min-width: 768px) {
  .single_col .inner .list {
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    margin: 10px 10px 50px;
    padding: 30px;
  }
  .single_col .inner .list .tbl_dl, .single_col .inner .list .contact_dl {
    border: 1px solid #ddd;
    margin: 0 0 30px;
  }
  .single_col .inner .list h3 {
    font-size: 2.4rem;
  }

  .flextitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
#blockList {
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  #blockList {
    flex-direction: row;
  }
}
#blockList li {
  padding: 5px;
  border: 1px solid #4B9000;
  border-radius: 4px;
  color: #4B9000;
  cursor: pointer;
  min-width: 5em;
  text-align: center;
  margin: 5px 10px;
}
#blockList li.slct {
  background: #4B9000;
  color: #fff;
}
#blockList li:hover {
  background: #4B9000;
  color: #fff;
}

.calender_week {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .calender_week {
    flex-direction: row;
  }
}
.calender_week dl {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .calender_week dl {
    width: calc(100% / 7);
  }
}
.calender_week dl dt {
  padding: 5px;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 768px) {
  .calender_week dl dt {
    text-align: center;
  }
}
.calender_week dl + dl {
  border-left: 0 none;
}
.calender_week dl dd {
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  min-height: 30px;
}
.calender_week dl dd p {
  width: calc((100% - 20px) / 2);
  margin: 5px;
  text-align: center;
  background: #fff;
  padding: 5px;
  border: 1px solid #4B9000;
  border-radius: 4px;
  margin-bottom: 5px;
  color: #4B9000;
  cursor: pointer;
}
@media (min-width: 768px) {
  .calender_week dl dd p {
    width: calc(100%);
  }
}
.calender_week dl dd p:hover {
  background: #4B9000;
  color: #fff;
}

.option1, .option2, .option3, .new {
  font-size: 1.2rem;
  text-align: center;
  display: block;
  width: 80px;
  line-height: 30px;
  position: absolute;
  right: 40px;
  top: 0px;
}

.new {
  color: #FFF;
  background: #F00;
}

.input_area ul {
  list-style-type: none;
}

.btn_block {
  padding: 10px;
  display: flex;
  justify-content: space-around;
}

a.btn, button.btn {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  /*文字色*/
  font-size: 1.4rem;
  /*文字サイズ*/
  text-align: center;
  /*文字をセンタリング*/
  padding: 10px;
  /*ボタン内の余白*/
  border-radius: 8px;
  /*角丸のサイズ*/
  letter-spacing: 0.2em;
  /*文字間隔を広くとる設定*/
  border: 1px solid #4B9000;
  max-width: 300px;
  margin: 0 auto;
  background: linear-gradient(#4B9000, rgba(75, 144, 0, 0.9));
}
@media (min-width: 768px) {
  a.btn, button.btn {
    font-size: 2rem;
    /*文字サイズ*/
  }
}
a.btn::before, button.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transition: 0.3s ease-in-out;
  background: #4B9000;
  /*グラデーション*/
  border-radius: 4px;
  /*角丸のサイズ*/
}
a.btn::after, button.btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  background: #fff;
  border-radius: 7px;
  /*角丸のサイズ*/
}
a.btn:hover, button.btn:hover {
  color: #4B9000;
}
a.btn:hover::before, button.btn:hover::before {
  background: rgba(75, 144, 0, 0.1);
}
a.btn:disabled, button.btn:disabled {
  color: #fff;
  border: 1px solid #ddd;
}
a.btn:disabled::before, button.btn:disabled::before {
  background: #ddd;
}

.er {
  font-size: 1.3rem;
  color: #f00;
}

#contact_box .text_box {
  margin-bottom: 30px;
  font-size: 1.6rem;
}
#contact_box .text_box ul {
  padding-left: 2em;
}
#contact_box label input[type="text"] {
  width: 18em;
  margin-left: 10px;
}
#contact_box input[type="text"].zip {
  width: 10em;
}
#contact_box input[readonly] {
  background: #eee;
}
#contact_box input[type="text"].age {
  width: 10em;
}
#contact_box textarea {
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  padding: 0.5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #999;
  border-radius: 4px;
  font-size: 1.6rem;
}
#contact_box input[type="text"],
#contact_box input[type="email"],
#contact_box input[type="tel"] {
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #999;
  border-radius: 4px;
  margin: 5px 0;
  font-size: 1.6rem;
}
#contact_box select {
  height: 3em;
  padding: 0.5em;
  margin-right: 0.5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #999;
  border-radius: 4px;
}
