@charset "UTF-8";
.tab-container {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
.tab-container {
  width: 100%;
}
}

.tab-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tab-menu li {
width: 25%;
text-align: center;
padding: 5px 15px;
cursor: pointer;
font-weight: bold;
background-color: #51b2ff;
color: #fff;
transition: 0.3s;
border-radius: 15px 15px 0 0;
margin-right: 10px;
font-size: 22px;
letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
.tab-menu li {
width: 40%;
}
}

.tab-menu li.active {
  background-color: #FAC0C6;
  color: #fff;
}
/* tab-menu02 */
.tab-menu02 {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tab-menu02 li {
width: 25%;
text-align: center;
padding: 5px 15px;
cursor: pointer;
font-weight: bold;
background-color: #51b2ff;
color: #fff;
transition: 0.3s;
border-radius: 15px 15px 0 0;
margin-right: 10px;
font-size: 22px;
letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
.tab-menu02 li {
width: 40%;
}
}

.tab-menu02 li.active {
  background-color: #FAC0C6;
  color: #fff;
}

.tab-content {
padding: 70px 50px;
  border: 3px solid #FAC0C6;
  border-radius: 0 15px 15px 15px;
  background: #fff;
margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
.tab-content {
padding: 50px 30px;
}
}
@media screen and (max-width: 767px) {
.tab-content {
padding: 40px 20px;
}
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* tab-panel02 */
.tab-panel02 {
  display: none;
}

.tab-panel02.active {
  display: block;
}


.schedule-item {
  margin-bottom: 30px;
}

.schedule_flow_flex{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
margin-bottom: 60px;
}
@media screen and (max-width: 1180px) {
.schedule_flow_flex{
margin-bottom: 60px;
}
}
@media screen and (max-width: 1024px) {
.schedule_flow_flex{
margin-bottom: 50px;
}
}
@media screen and (max-width: 820px) {
.schedule_flow_flex{
margin-bottom: 70px;
}
}

.schedule_flow_flex li:nth-child(1){
width: 25%;
margin-right: 5%;
}
.schedule_flow_flex li:nth-child(2){
width: 70%;
}
@media screen and (max-width: 820px) {
.schedule_flow_flex li:nth-child(1){
width: 400px;
max-width: 100%;
margin-right: 0%;
margin: 0 auto 20px;
}
.schedule_flow_flex li:nth-child(2){
width: 100%;
margin-top: 20px;
}
}

.schedule_flow_flex .img_area{
    position: relative;
}
.schedule_flow_flex .img_area .time{
position: absolute;
display: block;
top: -12px;
left: -12px;
border: 1px solid #FAC0C6;
padding: 5px 15px 7px 20px;
font-size: 16px;
text-align: center;
color: #ff7584;
line-height: 1;
background: #fffaf6;
font-weight: bold;
letter-spacing: 1px;
}
.schedule_flow_flex .img_area img{
  box-shadow: 7px 7px 0px #FAC0C6;
  border-radius: 15px;
  border: 1px solid #FAC0C6;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
.schedule_flow_flex .img_area img{
  aspect-ratio: 5 / 3;
}
}

.schedule_flow_flex .desc{
  margin-bottom: 10px;
}


.entry_list{
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
}
.entry_list .list{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: flex-start;
align-items: center;
border-bottom: 1px dashed #753700;
}
.entry_list .list dt{
width: 150px;
padding: 10px;
/* padding: 20px 10px 0px; */
letter-spacing: 1px;
text-align: center;
font-weight: 600;
}
.entry_list .list dd{
    width: calc(100% - 150px);
    padding: 10px;
    /* padding: 20px 10px 0px; */
}
@media screen and (max-width: 767px) {
.entry_list .list dt{
width: 100%;
padding: 20px 10px 0px;
text-align: left;
}
.entry_list .list dd{
width: 100%;
padding: 5px 10px;
}
}