@charset "UTF-8";
/*----- 1. tabs -----*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  margin: 0 auto;
}
.tabs .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.tabs .top p {
  font-weight: bold;
  text-align: center;
}
.tabs .top .one {
  width: 33%;
}
.tabs .top .half {
  width: 66%;
}

.itemWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/*タブのスタイル*/
.tab_item {
  width: 33%;
  border-top: 3px solid #ffaa00;
  background-color: #f4f2ed;
  text-align: center;
  color: #5c5c5c;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.1s ease;
  cursor: pointer;
  position: relative;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  width: 100%;
  display: none;
  padding: 20px 0;
  clear: both;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  color: #000;
}
.tab_content .title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 2rem;
}
.tab_content dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.tab_content dl:not(:last-child):before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 19%;
  height: calc(100% + 20px);
  width: 5px;
  background-color: #18b26b;
  z-index: -1;
}
.tab_content dt {
  width: 37%;
}
.tab_content dt img {
  border-bottom: 5px solid #18b26b;
}
.tab_content dd {
  width: 58%;
}
.tab_content dd .time {
  color: #18b26b;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/*選択されているタブのコンテンツのみを表示*/
#course1:checked ~ #course1_content,
#course2:checked ~ #course2_content,
#course3:checked ~ #course3_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #ffaa00;
  color: #fff;
}

.subText {
  margin-bottom: 20px;
}

/*---------- sp ----------*/
/*---------- モバイル縦長 ----------*/
/*---------- モバイル横長 ----------*/
/*---------- pc ----------*/
@media screen and (min-width: 813px) {
  .subText {
    text-align: center;
  }

  .tabs {
    width: 1000px;
    margin: 0 auto;
  }
  .tabs .top .one {
    width: 50%;
  }
  .tabs .top .half {
    width: 50%;
  }

  .itemWrap .tab_item {
    border-top-width: 7px;
    padding: 10px 0 15px;
  }
  .itemWrap .tab_item:first-of-type {
    width: calc(50% - 2px);
  }
  .itemWrap .tab_item:not(:first-of-type) {
    width: calc(25% - 3px);
  }

  .tabs input:checked + .tab_item {
    position: relative;
  }
  .tabs input:checked + .tab_item:before {
    position: absolute;
    top: -12px;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: #ffaa00;
  }
  .tabs input:checked + .tab_item:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 36px 15px 0 15px;
    border-color: #ffaa00 transparent transparent transparent;
  }

  .tab_content {
    padding: 50px;
  }
  .tab_content .title {
    margin-bottom: 40px;
  }
  .tab_content dl {
    margin-bottom: 40px;
  }
  .tab_content dl:not(:last-child):before {
    z-index: 1;
    left: 13%;
    height: calc(100% + 40px);
  }
  .tab_content dt {
    width: 28%;
    position: relative;
    z-index: 2;
  }
  .tab_content dd {
    width: 67%;
  }
}
/*---------- タブレット ----------*/
@media screen and (min-width: 812px) and (max-width: 1540px) {
  .acd-label img {
    width: 90%;
    margin: 0 auto;
  }
}

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