@charset "UTF-8";
.fRight {
	float: right;
	width: 15vw;
	margin-left: 1.5vw;
}

.fLeft {
	float: left;
	width: 13.5vw;
	margin-right: 1vw;
	font-size: var(--f-smaller);
	text-align: center;
	line-height: var(--l-narrow);
}

.fRight img,
.fLeft img {
	width: 100%;
	height: auto;
}

.fLeft img {
	margin: .5vw 0;
}

h4 + .fRight {
	margin-top: -2vw;
	width: 14.5vw;
	margin-left: 0;
}

section ol {
	padding-left: 1.3em;
	list-style: outside decimal;
}

.timeStamp {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.timeStamp li {
  display: table-cell;
  text-align: center;
}

.timeSchedule {
  padding: 1em 3%;
  background: #eee;
  position: relative;
}

.timeSample {
  line-height: 1;
  margin-left: 10%;
  margin-bottom: 0.4em;
  width: 85%;
  border: 1px solid #000;
  border-top: 0;
  border-bottom: 0;
  position: relative;
  text-align: center;
}

.timeSample::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1em;
	border-top: 1px solid #000;
	top: 50%;
	left: 0;
}

.timeSample span {
	margin-left: 30%;
  padding: 0 .5em;
  background:  #eee;
	position: relative;
	width: fit-content;
	letter-spacing: .5em;
}

.timeSchedule::before {
	content: "休憩時間";
	display: block;
	position: absolute;
	width: 10%;
	height: 100%;
	background: rgba(255, 255, 255, 0.6);
	top: 0;
	left: 40%;
	text-align: center;
	border-left: 1px solid var(--border-dark);
	border-right: 1px solid var(--border-dark);
	z-index: 20;
	writing-mode: vertical-lr;
	padding-left: 1.4em;
	letter-spacing: 1em;
}

.timeSchedule li:not(.timeSample) {
  line-height: 1.6;
  color: #fff;
  background: var(--accent1-normal);
  width: 70%;
  padding: 0 .5em;
  position: relative;
}

.timeSchedule li:not(.timeSample) + li {
  margin-top: 2px;
}

.timeSchedule li:not(.timeSample) span {
  position: absolute;
  right: 0.5em;
}

.timeSchedule li:not(.timeSample):nth-child(n+1):nth-child(-n+4) {
  width: 60%;
}

.timeSchedule li:nth-child(n+8) {
  width: 80%;
}

.timeSchedule li:nth-child(3n) {
  margin-left: 10%;
}

.timeSchedule li:not(.timeSample):nth-child(3n+1) {
  margin-left: 20%;
}

.timeSchedule + p {
  text-align: right;
  margin-bottom: 2vw;
}

.strong {
  margin-top: 4vw;
  padding: 2vw;
  border: 2px solid var(--border-dark);
  border-radius: 1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.strong > p strong {
  font-size: var(--f-larger);
  color: var(--accent1-normal);
}

.strong div {
	padding: 1vw 0 1vw 2vw;
  display: flex;
  width: fit-content;
  align-items: center;
  border-left: 2px solid var(--border);
}

.strong div img {
	width: 6vw;
	height: auto;
	border-radius: .5vw;
}

.strong div p {
  padding-left: 1em;
}

.strong a {
  padding-left: 1em;
  position: relative;
}
.strong a::before {
  content: "";
  width: .5em;
  height: .5em;
  border-top: 2px solid var(--arrow);
  border-right: 2px solid var(--arrow);
  display: block;
  position: absolute;
  left: 0;
  top: .35em;
  transform: rotate(45deg)
}

p + table {
  margin-top: 5vw;
}


/* スマートフォン表示 */
@media screen and (max-width: 768px) {
  section {
    padding-left: 0;
    padding-right: 0;
  }

  section > p,
  section > div {
    padding-left: 4vw;
    padding-right: 4vw;
  }

	.fRight,
	h4 + .fRight {
		width: 35vw;
		margin-left: .5em;
	}

	.fLeft {
		width: 40vw;
		margin-right: .5em;
	}

	.fLeft + p {
		padding-top: 1em;
	}

	.cf {
		clear: both;
		padding-top: 1em;
	}

  .timeStamp {
	  margin: 0;
 	  padding: 1em 2em 0;
  }

  .timeStamp li:nth-child(1),
  .timeStamp li:nth-child(n+3):nth-child(-n+10) {
    display: none;
  }

  .timeStamp li {
    text-align: left;
  }

  .timeStamp li:last-child {
    text-align: right;
  }

  .timeSchedule {
	  margin: 0 1em 1em;
    padding: 1em 1em .75em;
  }

	.timeSample span {
		margin-left: 40%;
		letter-spacing: .0;
	}

	.timeSchedule::before {
		padding-left: 0;
	}

	.timeSchedule li:not(.timeSample) {
	  margin-bottom: .5em;
	}

	.timeSchedule li:not(.timeSample) span {
	  position: relative;
	  right: auto;
	  display: block;
	}

	.timeSchedule li:not(.timeSample):nth-child(3n+1) {
	  text-align: right;
	}

	.timeSchedule + p {
    margin-bottom: 2rem;
	}

  .strong {
    margin: 1em auto 0;
    padding: 1em;
    flex-direction: column;
    width: fit-content;
  }

	.strong > p {
	  margin-bottom: 1em;
	}

	.strong div {
		padding: 1em 0 0 0;
	  border-left: 0;
	  border-top: 2px solid #ddd;
	}

	.strong div img {
		width: 5rem;
		border-radius: .3rem;
	}

  .strong a {
    display: block;
    text-align: left;
    line-height: 1.4;
  }

}
