@charset "UTF-8";
/*--------------------------------------------------------------------------
main
--------------------------------------------------------------------------*/
main section {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.mainimgBuy {
  margin-bottom: 30px;
}

.firstText {
  text-align: center;
  font-size: 1.1em;
  color: red;
  border-top: double red;
  border-bottom: double red;
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  .firstText {
    font-size: 1em;
  }
}

.scheduleList {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 50px;
}
.scheduleList > div.month {
  width: calc(25% - 18px);
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .scheduleList > div.month {
    width: calc(25% - 6px);
  }
}
@media screen and (max-width: 640px) {
  .scheduleList > div.month {
    width: calc(50% - 10px);
  }
}
.scheduleList > div.month:not(:nth-child(4n+1)) {
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .scheduleList > div.month:not(:nth-child(4n+1)) {
    margin-left: 8px;
  }
}
@media screen and (max-width: 640px) {
  .scheduleList > div.month:not(:nth-child(4n+1)) {
    margin-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .scheduleList > div.month:not(:nth-child(2n+1)) {
    margin-left: 20px;
  }
}
.scheduleList > div.month .monthTit {
  text-align: center;
  margin-bottom: 7px;
  letter-spacing: 2px;
}
.scheduleList > div.month table {
  border-collapse: collapse;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  width: 100%;
}
.scheduleList > div.month table th,
.scheduleList > div.month table td {
  font-weight: normal;
  border: solid 1px #eee;
  text-align: center;
  padding: 5px 0;
}
.scheduleList > div.month table th {
  background-color: #20aee5;
  color: #fff;
}
.scheduleList > div.month table td {
  background-color: #fff;
}
.scheduleList > div.month table td:last-child {
  color: #00c;
}
.scheduleList > div.month table td:first-child, .scheduleList > div.month table td.red {
  color: #c00;
}
.scheduleList > div.month table td a {
  text-decoration: underline;
  display: block;
  transition: 0.3s;
}
.scheduleList > div.month table td a:hover {
  opacity: 0.5;
}

.detailArea .firstText {
  margin-bottom: 60px;
}
.detailArea > section:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #ccc;
}
@media screen and (max-width: 768px) {
  .detailArea > section:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.detailArea > section h3 {
  cursor: pointer;
  padding: 15px 30px 15px 15px;
  border-radius: 15px;
  background-color: #20aee5;
  color: #fff;
  line-height: 120%;
  position: relative;
}
.detailArea > section h3::after {
  content: "▼";
  font-size: 0.8em;
  position: absolute;
  right: 15px;
  top: calc(50% - 0.4em);
  line-height: 100%;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .detailArea > section h3::after {
    font-size: 0.75em;
  }
}
.detailArea > section h3.on::after {
  transform: rotateX(-180deg);
}
.detailArea > section h3 strong {
  font-size: 1.1em;
  font-weight: 600;
}
.detailArea > section h3 strong span {
  display: inline-block;
  line-height: 100%;
  width: 0.9em;
  height: 0.9em;
  vertical-align: middle;
  margin-right: 5px;
}
.detailArea > section h3 small {
  font-size: 0.9em;
  margin: 0 5px;
}
.detailArea > section .none {
  display: none;
  margin-top: 20px;
}
.detailArea .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .detailArea .box {
    position: relative;
    padding-bottom: 55px;
  }
}
.detailArea .box > div.tit {
  width: 350px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 950px) {
  .detailArea .box > div.tit {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .detailArea .box > div.tit {
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 15px 0;
  }
}
.detailArea .box > div.tit h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .detailArea .box > div.tit h4 {
    margin-bottom: 5px;
  }
}
.detailArea .box > div.tit.aaa h4 {
  margin-bottom: 0px;
}
.detailArea .box > div.tit.aaa h4:not(:first-child) {
  margin-top: 5px;
}
.detailArea .box > div.tit .btn a {
  width: 230px;
  background-color: #20aee5;
  color: #fff;
  text-align: center;
  margin: 15px auto 0;
  display: block;
  padding: 5px;
  border-radius: 10px;
  transition: 0.3s;
}
.detailArea .box > div.tit .btn a:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .detailArea .box > div.tit .btn {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .detailArea .box > div.tit .btn a {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .detailArea .box > div.table-wrap {
    width: 100%;
  }
}
.detailArea .box table {
  border-collapse: collapse;
  width: calc(100% - 380px);
}
@media screen and (max-width: 950px) {
  .detailArea .box table {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 768px) {
  .detailArea .box table {
    width: 100%;
  }
}
.detailArea .box table tr th, .detailArea .box table tr td {
  border: 1px solid #eee;
  padding: 8px 0;
  background: #fff;
  text-align: center;
}
.detailArea .box table tr th {
  background-color: #20aee5;
  color: #fff;
  width: 33.33%;
}
.detailArea .box table tr td:last-child {
  color: red;
  font-weight: 600;
  font-size: 1.05em;
}
.detailArea .box table tr td.color {
  font-weight: 600;
  vertical-align: middle;
  text-align: center;
}

.aa {
  background-color: #d3e7f9 !important;
}

.a {
  background-color: #f7f7bc !important;
}

.aaa {
  background: linear-gradient(-45deg, #f7f7bc 0%, #f7f7bc 50%, #d3e7f9 50%, #d3e7f9 100%) !important;
}

.b {
  background-color: #efdfe3 !important;
}

.c {
  background-color: #d7e8d9 !important;
}

.hanrei {
  position: fixed;
  left: 0;
  bottom: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 0 20px 20px 0;
  z-index: 100;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .hanrei {
    bottom: 65px;
    padding: 10px 15px;
    border-radius: 0 10px 10px 0;
  }
}
.hanrei p {
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .hanrei p {
    line-height: 110%;
  }
}
.hanrei p span {
  display: inline-block;
  width: 25px;
  height: 1em;
}
@media screen and (max-width: 768px) {
  .hanrei p span {
    height: 0.8em;
  }
}
.hanrei p strong {
  display: inline-block;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .hanrei p strong {
    font-size: 0.8em;
  }
}

footer {
  margin-top: 0;
}

/* SP縦向き */
/*========================================================================*/
@media screen and (max-width: 768px) {
  /*--------------------------------------------------------------------------
  main
  --------------------------------------------------------------------------*/
  main .inner {
    width: 100%;
  }
}
