@charset "UTF-8";
/* CSS Document */

html {
	scroll-padding-top: 180px;
}

.camList {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 95%;
}
.camList li {
	border: 3px solid #ec6c00;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 15px 20px 20px;
	width: calc((100% - 20px) / 2);
}
.camList li.entry {
	position: relative;
}
.camList li.entry::before {
	content: "";
	background-image: url("../img/ico_entry.png");
	background-size: contain;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.camList strong {
	color: #ec6c00;
}
.camList li h4 {
	color: #ec6c00;
	font-weight: bold;
	text-align: center;
	border-bottom: 2px dotted #ec6c00;
	padding-bottom: 10px;
	margin-bottom: 15px;
	font-size: 125%;
}
.camList li h4.nolimit::after {
	content: "";
	background-image: url("../img/img_camlist01.png");
	background-size: cover;
	width: 125px;
	height: 58px;
	position: absolute;
	top: -20px;
	right: 50px;
}
#contact_box {
	line-height: 1.8;
}
.box.vaC {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.ico_message::before {
	content: "";
  background: url("../img/ico_message.svg") no-repeat left center;
    background-size: auto;
  background-size: contain;
  display: inline-block;
  width: 35px;
  height: 35px;
  vertical-align: -5px;
  margin-right: 10px;
}
@media screen and (max-width: 780px) {
	.camList li {
		padding: 15px 20px 20px;
		width: 100%;
	}
}

.flow-container {
  width: 100%;
  position: relative;
}
.flow-step {
  position: relative;
  padding-bottom: 40px;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 0;
  width: 3px;
  background-color: #cbd5e1;
  z-index: 1;
}

.flow-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background-color: #0068b7;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
  z-index: 2;
  white-space: pre-line;
}

.flow-content {
  margin-left: 80px;
  background-color: #fff;
  border: 2px solid #231815;
  padding: 25px 30px;
  display: flex;
	flex-direction: row-reverse;
  align-items: flex-start;
  gap: 25px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.flow-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-text {
  flex-grow: 1;
}

.flow-title {
  font-size: 130%;
	line-height: 1.0;
  font-weight: bold;
  color: #0068b7;
  margin-bottom: 15px;
	display: flex;
	gap: 10px;
}

.flow-title .tag {
	background: #0068b7;
	display: inline-block;
	line-height: 1.4;
	padding: 3px 10px;
	border-radius: 30px;
	font-size: 13px;
	color: #FFF;
}

.flow-last {
	background: #666464;
	color: #FFF;
	padding: 20px 25px;
	border-radius: 15px;
	display: flex;
	gap: 5px 20px;
}
.flow-last h3 {
	font-size: 120%;
	margin-bottom: 5px;
}

@media (max-width: 900px) {
.camList li h4.nolimit::after {
		right: 10px;
	}
}

@media (max-width: 780px) {
  .flow-content {
		margin-left: 70px;
    flex-direction: column;
		align-items: center;
		padding: 15px;
  }
	.flow-title {
		flex-direction: column;
  	align-items: flex-start;
	}
	.flow-last {
		flex-direction: column;
	}
}

@media (max-width: 568px) {
.camList li h4.nolimit::after {
		right: -5px;
	}
}