@charset "UTF-8";
html {
  width: 100%;
  height: 100%;
}

/* --------------------------------- *
 * 	select2
 * --------------------------------- */
.select2-search__field {
  line-height: 1.2;
}

/* --------------------------------- *
 * 	material-icons
 * --------------------------------- */
.material-icons,
.material-symbols-outlined {
  vertical-align: middle;
}

.radio_tab {
  width: 88%;
  margin: 8px auto 24px;
  display: flex;
  justify-content: center;
}
.radio_tab .tab_btn {
  width: 50%;
  color: #FF8F1C;
  border: 2px solid #FF8F1C;
  cursor: pointer;
  font-size: 1.1rem;
  text-align: center;
  padding: 1rem;
}
.radio_tab .tab_btn:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.radio_tab .tab_btn:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.radio_tab .active {
  background-color: #FF8F1C;
  color: white;
}

.table_section {
  display: grid;
  grid-gap: 16px 2%;
  align-items: center;
  overflow-wrap: break-word;
}
.table_section.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.table_section.col2.name {
  font-size: 0.9rem;
  margin: 0;
}
.table_section.col2.name input {
  font-size: 1rem;
}
.table_section.col2 .button {
  width: 56%;
  margin: auto;
}
@media screen and (max-width: 980px) {
  .table_section.col2 .button {
    width: 100%;
  }
}
.table_section.col2_240 {
  grid-template-columns: 240px 1fr;
  grid-auto-rows: 1fr;
}
.table_section.col2_240 dt,
.table_section.col2_240 dd {
  width: 100%;
}
.table_section.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.table_section.col3.birthday {
  grid-template-columns: 3fr 2fr 2fr;
  grid-gap: 0;
  font-size: 0.9rem;
  margin: 0;
}
.table_section.col3.birthday input {
  width: 72%;
  font-size: 1rem;
}
.table_section.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.table_section.col5 {
  grid-template-columns: repeat(5, 1fr);
}
.table_section.col6 {
  grid-template-columns: repeat(6, 1fr);
}
.table_section.col7 {
  grid-template-columns: repeat(7, 1fr);
}
.table_section.col8 {
  grid-template-columns: repeat(8, 1fr);
}
.table_section .cell {
  display: block;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .table_section .cell {
    display: block;
    margin-bottom: 12px;
  }
}
.table_section img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.table_section .imgcaption {
  height: 270px;
}
@media screen and (max-width: 980px) {
  .table_section .imgcaption {
    height: inherit;
  }
}
.table_section .caption {
  margin: 24px;
}

#Mypage_index #study_news article img,
#mypage_index #study_news article img,
#Study_list #study_news article img,
#study_list #study_news article img {
  width: 100%;
  height: 100%;
}
#Mypage_index #study_news figure,
#mypage_index #study_news figure,
#Study_list #study_news figure,
#study_list #study_news figure {
  margin: 0;
}
#Mypage_index #study_news ul,
#mypage_index #study_news ul,
#Study_list #study_news ul,
#study_list #study_news ul {
  margin: 0;
}
#Mypage_index #study_news li,
#mypage_index #study_news li,
#Study_list #study_news li,
#study_list #study_news li {
  list-style: none;
}

/* --------------------------------- *
 *  card
 * --------------------------------- */
.card_history {
  background: url("../images/card_history.png") center center no-repeat;
  background-size: 486px 306px;
}
@media screen and (max-width: 980px) {
  .card_history {
    background-size: 320px 201px;
  }
}

.card_back_wrap {
  position: relative;
  width: 486px;
  height: 306px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .card_back_wrap {
    width: 320px;
    height: 201px;
  }
}
.card_back_wrap dl {
  position: absolute;
  top: 80px;
  left: 16px;
  display: grid;
  width: 456px;
  font-size: 0.8rem;
}
@media screen and (max-width: 980px) {
  .card_back_wrap dl {
    width: 304px;
    top: 50px;
    left: 8px;
    font-size: 0.65rem;
  }
}
.card_back_wrap dl dt,
.card_back_wrap dl dd {
  display: block;
  line-height: 1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.card_back_wrap dl dd {
  margin-bottom: 4px;
}

/* --------------------------------- *
 *  table内table
 * --------------------------------- */
dl.table dd > dl.table {
  margin: 8px 0 8px;
}
dl.table dd > dl.table dt {
  background-color: skyblue;
  border-right: 1px solid gray;
  border-bottom: 1px solid gray;
  border-left: 1px solid gray;
}
dl.table dd > dl.table dt:first-of-type {
  border-top: 1px solid gray;
}
@media screen and (max-width: 980px) {
  dl.table dd > dl.table dt:first-of-type {
    border: none;
  }
}
@media screen and (max-width: 980px) {
  dl.table dd > dl.table dt {
    border: none;
  }
}
dl.table dd > dl.table dd {
  border-right: 1px solid skyblue;
  border-bottom: 1px solid skyblue;
  border-left: 1px solid skyblue;
}
dl.table dd > dl.table dd:first-of-type {
  border-top: 1px solid skyblue;
  border-left: 1px solid skyblue;
}
@media screen and (max-width: 980px) {
  dl.table dd > dl.table dd {
    padding: 0.4rem 1rem;
  }
}

/* --------------------------------- *
 *  料金表table
 * --------------------------------- */
table.price_table {
  text-align: center;
}
table.price_table .pick_icon {
  font-size: 1.6rem;
  font-weight: bold;
}
table.price_table .pick_number {
  font-size: 1.2rem;
  font-weight: bold;
}
table.price_table th {
  background-color: #0BB2D9;
  border: 1px solid lightgray;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 0.8rem 0.4rem;
  text-align: center;
  width: 35%;
}
table.price_table th.none {
  background-color: inherit;
  border: none;
  width: initial;
}
@media screen and (max-width: 980px) {
  table.price_table th {
    padding: 0.4rem;
  }
}
table.price_table td {
  border: 1px solid lightgray;
  background-color: #fff;
}
table.price_table td.tr_name {
  background-color: #C3F9FF;
}

.highlight_yellow {
  text-decoration: underline;
  text-decoration-thickness: 0.5rem;
  text-decoration-color: rgba(255, 228, 0, 0.4);
  text-underline-offset: -0.2rem;
  text-decoration-skip-ink: none;
}

/* --------------------------------- *
 *  配信設定
 * --------------------------------- */
.delivery_label {
  border: 2px solid;
  border-radius: 4px;
}
.delivery_label.status_label {
  color: #fff;
  padding: 4px;
}
.delivery_label.top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: #fff;
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
}
.delivery_label.top:not(:first-child) {
  margin-top: 8px;
}
.delivery_label.area {
  border-top-left-radius: 0;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-width: 4px;
  font-size: 0.8rem;
  padding: 0;
  position: relative;
  top: -4px;
}
.delivery_label.area .date_label {
  border-bottom: 2px solid;
  display: block;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 4px 8px;
  color: white;
  text-align: center;
}
.delivery_label.area .main {
  padding: 8px;
}
.delivery_label.zoom {
  border-color: #2d8cff;
}
.delivery_label.zoom.status_label {
  background-color: rgba(45, 140, 255, 0.8);
}
.delivery_label.zoom.disabled {
  background-color: rgba(45, 140, 255, 0.2);
  color: #2d8cff;
}
.delivery_label.zoom.top {
  background-color: #2d8cff;
}
.delivery_label.zoom .date_label {
  background-color: rgba(45, 140, 255, 0.8);
  border-color: #2d8cff;
}
.delivery_label.youtube {
  border-color: #DA1725;
}
.delivery_label.youtube.status_label {
  background-color: rgba(218, 23, 37, 0.8);
}
.delivery_label.youtube.disabled {
  background-color: rgba(218, 23, 37, 0.2);
  color: #DA1725;
}
.delivery_label.youtube.top {
  background-color: #DA1725;
}
.delivery_label.youtube .date_label {
  background-color: rgba(218, 23, 37, 0.8);
  border-color: #DA1725;
}
.delivery_label.material {
  border-color: rgb(94, 64, 157);
}
.delivery_label.material.status_label {
  background-color: rgba(94, 64, 157, 0.8);
}
.delivery_label.material.disabled {
  background-color: rgba(94, 64, 157, 0.8);
  color: rgb(94, 64, 157);
}
.delivery_label.material.top {
  background-color: rgb(94, 64, 157);
}