@charset "utf-8";
/* page_menu */
.page_menu_wrap,
.page_menu_contents {
  margin: 0;
	padding: 0;
}
.page_menu_link {
  display: flex;
  justify-content: space-between;
}
.page_menu_arw {
  width: 18px;
}
.page_menu_link_item a.current_01 {
	background: #F39600;
	border: 3px solid #F39600;
	color: #FFF;
}
.page_menu_link_item a.current_02 {
	background: #88C805;
	border: 3px solid #88C805;
	color: #FFF;
}
.page_menu_link_item a.current_03 {
	background: #E87466;
	border: 3px solid #E87466;
	color: #FFF;
}
.page_menu_link_item a.current_01 .page_menu_arw,
.page_menu_link_item a.current_02 .page_menu_arw,
.page_menu_link_item a.current_03 .page_menu_arw {
	display: none;
}
/* コンテンツ */
.oneday_contents {
	margin: 40px 0 0;
}
.oneday_ttl {
  font-size: 18px;
}
.oneday_schedule_wrap {
  border-top: 1px solid #bfbfbe;
  border-bottom: 1px solid #bfbfbe;
  margin: 20px 0 0;
  padding: 50px 0;
}
.oneday_schedule {
  display: flex;
	flex-direction: column-reverse;
	gap: 20px 0;
  border-left: 1px solid #bfbfbe;
	position: relative;
}
.oneday_schedule::before {
	content: "";
	display: block;
	width: 1px;
	height: 50px;
	background: #BFBFBE;
	position: absolute;
	top: -50px;
	left: -1px;
}
.oneday_schedule:last-child:after {
	content: "";
	display: block;
	width: 1px;
	height: 50px;
	background: #BFBFBE;
	position: absolute;
	bottom: -50px;
	left: -1px;
}
.oneday_schedule + .oneday_schedule {
	margin: 50px 0 0;
}
.oneday_schedule_img {
	margin: 0 0 0 25px;
	max-width: 370px;
}
.oneday_schedule_time_wrap {
  padding: 0 0 0 25px;
	position: relative;
}
.oneday_schedule_time_wrap::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #F39600;
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: -5px;
}
.oneday_schedule_time {
	color: #F39600;
	font-size: 18px;
	line-height: 1.2;
	position: relative;
}
.oneday_schedule_time::before {
	content: "";
	display: block;
	width: 17px;
	height: 1px;
	background: #8D8D89;
	position: absolute;
	left: -25px;
	top: 10px;
}
.one_day_contents {
  margin: 16px 0 0;
}
.one_day_contents_ttl {
  font-size: 18px;
}
.one_day_txt_wrap {
  margin: 10px 0 0;
}
.one_day_txt_wrap p + p {
	margin: 3px 0 0;
}
.one_day_about_txt {
	position: relative;
  line-height: 2;
	padding: 0 0 0 21px;
}
.one_day_about_txt svg {
	width: 14px;
	height: 14px;
	position: absolute;
	left: 0;
	top: 7.5px;
}
.one_day_detail_wrap {
  margin: 10px 0 0 0;
}
.one_day_ttl {
  font-weight: 700;
}
.one_day_txt {
  position: relative;
  padding: 0 0 0 14px;
  line-height: 2;
}
.one_day_txt::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 7px;
  height: 7px;
  background: #f39600;
  top: 11px;
  left: 0;
}
.one_day_img {
  margin: 20px 0 0 0;
}
.one_day_sparetxt {
	margin: 20px 0 0;
}
@media only screen and (min-width: 768px) {
	.oneday_contents {
		margin: 60px 0 0;
	}
  .oneday_ttl {
    font-size: clamp(18px, 2.34vw, 30px);
  }
  .oneday_schedule_wrap {
    margin: 30px 0 0;
    padding: 75px 0 0;
  }
	.oneday_schedule {
		flex-direction: row;
		justify-content: flex-end;
		gap: 0 40px;
		border-left: none;
		position: unset;
	}
	.oneday_schedule::before,
	.oneday_schedule:last-child:after {
		display: none;
	}
	.oneday_schedule + .oneday_schedule {
		margin: 75px 0 0;
	}
	.oneday_schedule_img {
		margin: 35px 0 0;
		width: 40%;
		max-width: unset;
	}
	.oneday_schedule:last-child .oneday_schedule_img {
		margin: 35px 0;
	}
  .oneday_schedule_time_wrap {
    padding: 0 0 0 40px;
		width: calc(100% - (40% + 40px));
		border-left: 1px solid #bfbfbe;
  }
	.oneday_schedule:last-child .oneday_schedule_time_wrap {
		padding: 0 0 75px 40px;
	}
	.oneday_schedule_time_wrap::before {
		content: "";
		display: block;
		width: 1px;
		height: 75px;
		background: #BFBFBE;
		position: absolute;
		top: -75px;
		left: -1px;
	}
	.oneday_schedule_time_wrap::after {
		width: 15px;
		height: 15px;
		top: 3px;
		left: -8px;
	}
	.oneday_schedule_time {
    font-size: clamp(18px, 2.34vw, 30px);
	}
	.oneday_schedule_time::before {
		width: 30px;
		left: -40px;
		top: 10px;
	}
	.one_day_contents {
		margin: 20px 0 0;
	}
	.one_day_contents_ttl {
    font-size: clamp(18px, 2.34vw, 30px);
  }
	.one_day_txt_wrap {
		margin: 20px 0 0;
	}
	.one_day_txt_wrap p + p {
		margin: 6px 0 0;
	}
  .one_day_about_txt {
    padding: 0 0 0 25px;
  }
	.one_day_about_txt  svg {
		width: 16px;
		height: 16px;
	}
  .one_day_detail_wrap {
    margin: 20px 0 0;
		padding: 0 0 0 30px;
  }
	.one_day_txt_wrap_02 {
		padding: 0;
	}
  .one_day_txt {
    padding: 0 0 0 20px;
  }
  .one_day_txt::before {
    width: 10px;
    height: 10px;
    top: 17px;
    left: 0;
  }
  .one_day_img {
    margin: 20px 0 0 0;
  }
  .one_day_txt {
    position: relative;
    padding: 0 0 0 14px;
    line-height: 2;
  }
  .one_day_txt::before {
    width: 8px;
    height: 8px;
    top: 11px;
    left: 0;
  }
}
@media only screen and (min-width: 1280px) {
	.oneday_contents {
		margin: 80px 0 0;
	}
  .oneday_ttl {
    font-size: 30px;
  }
	.page_menu_arw {
		width: 24px;
	}
  .oneday_schedule_wrap {
    margin: 40px 0 0;
    padding: 100px 0 0;
  }
	.oneday_schedule {
		gap: 0 70px;
	}
	.oneday_schedule + .oneday_schedule {
		margin: 100px 0 0;
	}
	.oneday_schedule_img {
		margin: 50px 0 0;
		width: 460px;
	}
	.oneday_schedule:last-child .oneday_schedule_img {
		margin: 50px 0;
	}
  .oneday_schedule_time_wrap {
    padding: 0 0 0 70px;
		width: calc(100% - 530px);
  }
	.oneday_schedule:last-child .oneday_schedule_time_wrap {
		padding: 0 0 100px 100px;
	}
	.oneday_schedule_time_wrap::before {
		height: 100px;
		top: -100px;
	}
	.oneday_schedule_time_wrap::after {
		width: 20px;
		height: 20px;
		top: 6px;
		left: -10px;
	}
	.oneday_schedule_time {
    font-size: 30px;
	}
	.oneday_schedule_time::before {
		width: 60px;
		left: -80px;
		top: 16px;
	}
  .one_day_contents_ttl {
    font-size: 30px;
  }
	.one_day_txt_wrap_01 {
		padding: 0 0 0 19px;
		margin: 30px 0 0;
	}
  .one_day_txt_wrap p + p {
    margin: 8px 0 0 0;
  }
  .one_day_about_txt {
    position: relative;
    line-height: 2;
		padding: 0 0 0 30px;
  }
	.one_day_about_txt svg {
		width: 20px;
		height: 20px;
		position: absolute;
		left: 0;
		top: 10.5px;
}
  .one_day_detail_wrap {
		padding: 0 0 0 49px;
  }
  .one_day_txt {
    padding: 0 0 0 20px;
  }
  .one_day_txt {
    padding: 0 0 0 20px;
  }
  .one_day_txt::before {
    width: 10px;
    height: 10px;
    top: 17px;
    left: 0;
  }
  .one_day_img {
    margin: 20px 0 0 0;
  }
	.one_day_sparetxt {
		margin: 30px 0 0;
	}
}
@media only screen and (min-width: 1440px) {
  .oneday_schedule_time_wrap {
    padding: 0 0 0 100px;
		width: calc(100% - 580px);
		max-width: 879px;
  }
	.oneday_schedule {
		gap: 0 120px;
	}
	.oneday_schedule_time::before {
		width: 80px;
		left: -100px;
		top: 16px;
	}
}
@media only screen and (min-width: 1800px) {
  .oneday_schedule_wrap {
    margin: 40px auto 0;
    width: 1760px;
  }
}

/* 黄緑 */
.oneday_color_02 .one_day_txt::before,
.oneday_color_02 .oneday_schedule_time_wrap::after {
	background: #88C805;
}
.oneday_color_02 .oneday_schedule_time {
	color: #88C805;
}

/* ピンク */
.oneday_color_03 .one_day_txt::before,
.oneday_color_03 .oneday_schedule_time_wrap::after {
	background: #E87466;
}
.oneday_color_03 .oneday_schedule_time {
	color: #E87466;
}