@charset "utf-8";
/* ---------------------------
カレンダー
-------------------------------*/
.calendar{
  background-image: none;
  background: #fff;
}
.calendar .ifram-wrap,
.calendar .ifram-wrap iframe {
  width: 100%;
}
.calendar .ifram-wrap{
  margin-bottom:2%;
}
.calendar .month-ttl{
  background: #00BCBC;
  padding:2% 4%;
  position: relative;
}
.calendar .month-ttl h3{
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.calendar .month-ttl h3 span{
  display: inline-block;
  font-weight: bold;
  font-size: 24px;
  padding-left: 3px;
}
.calendar .month-ttl .arrow{
  display: block;
  width: 6px;
  height: 6px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  position: absolute;
}
.calendar .month-ttl .arrow.pre{
  transform: rotate(225deg);
  top:0;
  bottom:0;
  margin:auto;
  left:4%;
}
.calendar .month-ttl .arrow.next{
  transform: rotate(45deg);
  top:0;
  bottom:0;
  margin:auto;
  right:4%;
}
.calendar article {
  margin-bottom: 15px;
}
.calendar table{
  width:100%;
  height: 100%;
  border-collapse: collapse;
}
.calendar table tr{
  border: 1px solid #dedede;
}
.calendar table tr th,
.calendar table tr td{
  padding: 2% 1%;
  text-align: center;
}
.calendar table tr th:not(:last-of-type),
.calendar table tr td:not(:last-of-type){
  border-right:1px solid #dedede;
}
.calendar table tr th:first-of-type .day,
.calendar table tr td:first-of-type .day{
  color: #FF40FF;
}
.calendar table tr th:nth-of-type(7) .day,
.calendar table tr td:nth-of-type(7) .day{
  color: #00A6A6;
}
.calendar table tr th{
  background: #f5f5f5;
  text-align: center;
}
.calendar table tr td{
  background: #fff;
  height: 150px;
}
.calendar table tr td.no-month{
  opacity: 0.25;
}
.calendar table tr td.high-season{
  background: #FFECFF;
}
.calendar table tr td span{
  font-size: 1.0rem;
  display: block;
  margin: 0.5em 0 1em;
}
.calendar p {
  line-height: 1.5;
}
@media screen and (max-width:600px) {
  .calendar .month-ttl {
    padding: 10px;
  }
  .calendar .month-ttl h3 {
    font-size: 16px;
  }
  .calendar .month-ttl h3 span {
    font-size: 20px;
  }
  .calendar table tr th,
  .calendar table tr td{
    font-size: 10px;
  }
  .calendar table tr td{
    height:60px;
  }

  .calendar table tr td span {
    font-size: 10px;
  }
  .calendar p {
    font-size: 14px;
  }
}